class Google::Apis::ComputeV1::InterconnectAttachmentPartnerMetadata
Informational metadata about Partner attachments from Partners to display to customers. These fields are propagated from PARTNER_PROVIDER attachments to their corresponding PARTNER attachments.
Attributes
Plain text name of the Interconnect
this attachment is connected to, as displayed in the Partner's portal. For instance “Chicago 1”. This value may be validated to match approved Partner values. Corresponds to the JSON property `interconnectName` @return [String]
Plain text name of the Partner providing this attachment. This value may be validated to match approved Partner values. Corresponds to the JSON property `partnerName` @return [String]
URL of the Partner's portal for this Attachment. Partners may customise this to be a deep link to the specific resource on the Partner portal. This value may be validated to match approved Partner values. Corresponds to the JSON property `portalUrl` @return [String]
Public Class Methods
# File lib/google/apis/compute_v1/classes.rb, line 16816 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/compute_v1/classes.rb, line 16821 def update!(**args) @interconnect_name = args[:interconnect_name] if args.key?(:interconnect_name) @partner_name = args[:partner_name] if args.key?(:partner_name) @portal_url = args[:portal_url] if args.key?(:portal_url) end