Class: Google::Apis::ComputeBeta::InterconnectAttachmentPartnerMetadata
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ComputeBeta::InterconnectAttachmentPartnerMetadata
 
 
- Defined in:
 - generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb 
Overview
Informational metadata about Partner attachments from Partners to display to customers. These fields are propagated from PARTNER_PROVIDER attachments to their corresponding PARTNER attachments.
Instance Attribute Summary collapse
- 
  
    
      #interconnect_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Plain text name of the Interconnect this attachment is connected to, as displayed in the Partner?s portal.
 - 
  
    
      #partner_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Plain text name of the Partner providing this attachment.
 - 
  
    
      #portal_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
URL of the Partner?s portal for this Attachment.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ InterconnectAttachmentPartnerMetadata 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of InterconnectAttachmentPartnerMetadata.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ InterconnectAttachmentPartnerMetadata
Returns a new instance of InterconnectAttachmentPartnerMetadata
      11030 11031 11032  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 11030 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#interconnect_name ⇒ String
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
      11015 11016 11017  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 11015 def interconnect_name @interconnect_name end  | 
  
#partner_name ⇒ 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
      11021 11022 11023  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 11021 def partner_name @partner_name end  | 
  
#portal_url ⇒ 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
      11028 11029 11030  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 11028 def portal_url @portal_url end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      11035 11036 11037 11038 11039  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 11035 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  |