adminEnabled = $adminEnabled; } /** * @return bool */ public function getAdminEnabled() { return $this->adminEnabled; } /** * Customer name, to put in the Letter of Authorization as the party * authorized to request a crossconnect. * * @param string $customerName */ public function setCustomerName($customerName) { $this->customerName = $customerName; } /** * @return string */ public function getCustomerName() { return $this->customerName; } /** * An optional description of this resource. Provide this property when you * create the resource. * * @param string $description */ public function setDescription($description) { $this->description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * A zone-free location to use for all Interconnects created in this call, * like "iad-1234". * * @param string $facility */ public function setFacility($facility) { $this->facility = $facility; } /** * @return string */ public function getFacility() { return $this->facility; } /** * Type of interconnect, which can take one of the following values: - * PARTNER: A partner-managed interconnection shared between customers * though a partner. - DEDICATED: A dedicated physical interconnection * with the customer. * * Note that a value IT_PRIVATE has been deprecated in favor of DEDICATED. * * Accepted values: DEDICATED, IT_PRIVATE, PARTNER * * @param self::INTERCONNECT_TYPE_* $interconnectType */ public function setInterconnectType($interconnectType) { $this->interconnectType = $interconnectType; } /** * @return self::INTERCONNECT_TYPE_* */ public function getInterconnectType() { return $this->interconnectType; } /** * Type of link requested, which can take one of the following values: * - LINK_TYPE_ETHERNET_10G_LR: A 10G Ethernet with LR optics - * LINK_TYPE_ETHERNET_100G_LR: A 100G Ethernet with LR optics. - * LINK_TYPE_ETHERNET_400G_LR4: A 400G Ethernet with LR4 optics. * * Note that this field indicates the speed of each of the links in the * bundle, not the speed of the entire bundle. * * Accepted values: LINK_TYPE_ETHERNET_100G_LR, LINK_TYPE_ETHERNET_10G_LR, * LINK_TYPE_ETHERNET_400G_LR4 * * @param self::LINK_TYPE_* $linkType */ public function setLinkType($linkType) { $this->linkType = $linkType; } /** * @return self::LINK_TYPE_* */ public function getLinkType() { return $this->linkType; } /** * Name of the Interconnects to be created. This must be specified on the * template and/or on each individual interconnect. The name, if not empty, * must be 1-63 characters long, and comply with RFC1035. Specifically, any * nonempty name must be 1-63 characters long and match the regular expression * `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a * lowercase letter, and all following characters must be a dash, lowercase * letter, or digit, except the last character, which cannot be a dash. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Email address to contact the customer NOC for operations and maintenance * notifications regarding this Interconnect. If specified, this will be used * for notifications in addition to all other forms described, such as Cloud * Monitoring logs alerting and Cloud Notifications. This field is required * for users who sign up for Cloud Interconnect using workforce identity * federation. * * @param string $nocContactEmail */ public function setNocContactEmail($nocContactEmail) { $this->nocContactEmail = $nocContactEmail; } /** * @return string */ public function getNocContactEmail() { return $this->nocContactEmail; } /** * Indicates that this is a Cross-Cloud Interconnect. This field specifies the * location outside of Google's network that the interconnect is connected to. * * @param string $remoteLocation */ public function setRemoteLocation($remoteLocation) { $this->remoteLocation = $remoteLocation; } /** * @return string */ public function getRemoteLocation() { return $this->remoteLocation; } /** * Optional. List of features requested for this Interconnect connection, * which can take one of the following values: - IF_MACSEC: If * specified, then the connection is created on MACsec capable hardware * ports. If not specified, non-MACsec capable ports will also be * considered. - IF_CROSS_SITE_NETWORK: If specified, then the connection * is created exclusively for Cross-Site Networking. The connection can not * be used for Cross-Site Networking unless this feature is specified. * * @param string[] $requestedFeatures */ public function setRequestedFeatures($requestedFeatures) { $this->requestedFeatures = $requestedFeatures; } /** * @return string[] */ public function getRequestedFeatures() { return $this->requestedFeatures; } /** * Target number of physical links in the link bundle, as requested by the * customer. * * @param int $requestedLinkCount */ public function setRequestedLinkCount($requestedLinkCount) { $this->requestedLinkCount = $requestedLinkCount; } /** * @return int */ public function getRequestedLinkCount() { return $this->requestedLinkCount; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(InterconnectGroupsCreateMembersInterconnectInput::class, 'Google_Service_Compute_InterconnectGroupsCreateMembersInterconnectInput');