associations = $associations; } /** * @return MirroringEndpointGroupAssociationDetails[] */ public function getAssociations() { return $this->associations; } /** * Output only. List of details about the connected deployment groups to this * endpoint group. * * @param MirroringEndpointGroupConnectedDeploymentGroup[] $connectedDeploymentGroups */ public function setConnectedDeploymentGroups($connectedDeploymentGroups) { $this->connectedDeploymentGroups = $connectedDeploymentGroups; } /** * @return MirroringEndpointGroupConnectedDeploymentGroup[] */ public function getConnectedDeploymentGroups() { return $this->connectedDeploymentGroups; } /** * Output only. The timestamp when the resource was created. See * https://google.aip.dev/148#timestamps. * * @param string $createTime */ public function setCreateTime($createTime) { $this->createTime = $createTime; } /** * @return string */ public function getCreateTime() { return $this->createTime; } /** * Optional. User-provided description of the endpoint group. Used as * additional context for the endpoint group. * * @param string $description */ public function setDescription($description) { $this->description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * Optional. Labels are key/value pairs that help to organize and filter * resources. * * @param string[] $labels */ public function setLabels($labels) { $this->labels = $labels; } /** * @return string[] */ public function getLabels() { return $this->labels; } /** * Immutable. The deployment group that this DIRECT endpoint group is * connected to, for example: * `projects/123456789/locations/global/mirroringDeploymentGroups/my-dg`. See * https://google.aip.dev/124. * * @param string $mirroringDeploymentGroup */ public function setMirroringDeploymentGroup($mirroringDeploymentGroup) { $this->mirroringDeploymentGroup = $mirroringDeploymentGroup; } /** * @return string */ public function getMirroringDeploymentGroup() { return $this->mirroringDeploymentGroup; } /** * Immutable. Identifier. The resource name of this endpoint group, for * example: `projects/123456789/locations/global/mirroringEndpointGroups/my- * eg`. See https://google.aip.dev/122 for more details. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Output only. The current state of the resource does not match the user's * intended state, and the system is working to reconcile them. This is part * of the normal operation (e.g. adding a new association to the group). See * https://google.aip.dev/128. * * @param bool $reconciling */ public function setReconciling($reconciling) { $this->reconciling = $reconciling; } /** * @return bool */ public function getReconciling() { return $this->reconciling; } /** * Output only. The current state of the endpoint group. See * https://google.aip.dev/216. * * Accepted values: STATE_UNSPECIFIED, ACTIVE, CLOSED, CREATING, DELETING, * OUT_OF_SYNC, DELETE_FAILED * * @param self::STATE_* $state */ public function setState($state) { $this->state = $state; } /** * @return self::STATE_* */ public function getState() { return $this->state; } /** * Immutable. The type of the endpoint group. If left unspecified, defaults to * DIRECT. * * Accepted values: TYPE_UNSPECIFIED, DIRECT * * @param self::TYPE_* $type */ public function setType($type) { $this->type = $type; } /** * @return self::TYPE_* */ public function getType() { return $this->type; } /** * Output only. The timestamp when the resource was most recently updated. See * https://google.aip.dev/148#timestamps. * * @param string $updateTime */ public function setUpdateTime($updateTime) { $this->updateTime = $updateTime; } /** * @return string */ public function getUpdateTime() { return $this->updateTime; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(MirroringEndpointGroup::class, 'Google_Service_NetworkSecurity_MirroringEndpointGroup');