Class: Google::Apis::ComputeAlpha::InterconnectCircuitInfo

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/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.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InterconnectCircuitInfo

Returns a new instance of InterconnectCircuitInfo.



21222
21223
21224
# File 'lib/google/apis/compute_alpha/classes.rb', line 21222

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#customer_demarc_idString

Customer-side demarc ID for this circuit. Corresponds to the JSON property customerDemarcId

Returns:

  • (String)


21209
21210
21211
# File 'lib/google/apis/compute_alpha/classes.rb', line 21209

def customer_demarc_id
  @customer_demarc_id
end

#google_circuit_idString

Google-assigned unique ID for this circuit. Assigned at circuit turn-up. Corresponds to the JSON property googleCircuitId

Returns:

  • (String)


21214
21215
21216
# File 'lib/google/apis/compute_alpha/classes.rb', line 21214

def google_circuit_id
  @google_circuit_id
end

#google_demarc_idString

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

Returns:

  • (String)


21220
21221
21222
# File 'lib/google/apis/compute_alpha/classes.rb', line 21220

def google_demarc_id
  @google_demarc_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



21227
21228
21229
21230
21231
# File 'lib/google/apis/compute_alpha/classes.rb', line 21227

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