Class: Google::Apis::ComputeBeta::InterconnectCircuitInfo
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ComputeBeta::InterconnectCircuitInfo
 
 
- Defined in:
 - generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb 
Overview
Describes a single physical circuit between the Customer and Google. CircuitInfo objects are created by Google, so all fields are output only. Next id: 4
Instance Attribute Summary collapse
- 
  
    
      #customer_demarc_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Customer-side demarc ID for this circuit.
 - 
  
    
      #google_circuit_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Google-assigned unique ID for this circuit.
 - 
  
    
      #google_demarc_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Google-side demarc ID for this circuit.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ InterconnectCircuitInfo 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of InterconnectCircuitInfo.
 - 
  
    
      #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) ⇒ InterconnectCircuitInfo
Returns a new instance of InterconnectCircuitInfo
      11176 11177 11178  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 11176 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#customer_demarc_id ⇒ String
Customer-side demarc ID for this circuit.
Corresponds to the JSON property customerDemarcId
      11163 11164 11165  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 11163 def customer_demarc_id @customer_demarc_id end  | 
  
#google_circuit_id ⇒ String
Google-assigned unique ID for this circuit. Assigned at circuit turn-up.
Corresponds to the JSON property googleCircuitId
      11168 11169 11170  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 11168 def google_circuit_id @google_circuit_id end  | 
  
#google_demarc_id ⇒ String
Google-side demarc ID for this circuit. Assigned at circuit turn-up and
provided by Google to the customer in the LOA.
Corresponds to the JSON property googleDemarcId
      11174 11175 11176  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 11174 def google_demarc_id @google_demarc_id end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      11181 11182 11183 11184 11185  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 11181 def update!(**args) @customer_demarc_id = args[:customer_demarc_id] if args.key?(:customer_demarc_id) @google_circuit_id = args[:google_circuit_id] if args.key?(:google_circuit_id) @google_demarc_id = args[:google_demarc_id] if args.key?(:google_demarc_id) end  |