class Google::Apis::ComputeV1::InterconnectCircuitInfo

Describes a single physical circuit between the Customer and Google. CircuitInfo objects are created by Google, so all fields are output only.

Attributes

customer_demarc_id[RW]

Customer-side demarc ID for this circuit. Corresponds to the JSON property `customerDemarcId` @return [String]

google_circuit_id[RW]

Google-assigned unique ID for this circuit. Assigned at circuit turn-up. Corresponds to the JSON property `googleCircuitId` @return [String]

google_demarc_id[RW]

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` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/compute_v1/classes.rb, line 16961
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/compute_v1/classes.rb, line 16966
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