name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Output only. The associated network, for example: * projects/123456789/global/networks/my-network. See * https://google.aip.dev/124. * * @param string $network */ public function setNetwork($network) { $this->network = $network; } /** * @return string */ public function getNetwork() { return $this->network; } /** * Output only. Most recent known state of the association. * * Accepted values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, CLOSED, * 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; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(MirroringEndpointGroupAssociationDetails::class, 'Google_Service_NetworkSecurity_MirroringEndpointGroupAssociationDetails');