associations = $associations; } /** * @return InterceptEndpointGroupAssociationDetails[] */ public function getAssociations() { return $this->associations; } /** * Output only. Details about the connected deployment group to this endpoint * group. * * @param InterceptEndpointGroupConnectedDeploymentGroup $connectedDeploymentGroup */ public function setConnectedDeploymentGroup(InterceptEndpointGroupConnectedDeploymentGroup $connectedDeploymentGroup) { $this->connectedDeploymentGroup = $connectedDeploymentGroup; } /** * @return InterceptEndpointGroupConnectedDeploymentGroup */ public function getConnectedDeploymentGroup() { return $this->connectedDeploymentGroup; } /** * 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; } /** * Required. Immutable. The deployment group that this endpoint group is * connected to, for example: * `projects/123456789/locations/global/interceptDeploymentGroups/my-dg`. See * https://google.aip.dev/124. * * @param string $interceptDeploymentGroup */ public function setInterceptDeploymentGroup($interceptDeploymentGroup) { $this->interceptDeploymentGroup = $interceptDeploymentGroup; } /** * @return string */ public function getInterceptDeploymentGroup() { return $this->interceptDeploymentGroup; } /** * 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. Identifier. The resource name of this endpoint group, for * example: `projects/123456789/locations/global/interceptEndpointGroups/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; } /** * 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(InterceptEndpointGroup::class, 'Google_Service_NetworkSecurity_InterceptEndpointGroup');