Class: Google::Apis::ComputeV1::InterconnectGroupsOperationalStatusInterconnectStatus
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::InterconnectGroupsOperationalStatusInterconnectStatus
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_v1/classes.rb,
lib/google/apis/compute_v1/representations.rb,
lib/google/apis/compute_v1/representations.rb
Overview
The status of one Interconnect in the group. The order is arbitrary.
Instance Attribute Summary collapse
-
#admin_enabled ⇒ Boolean
(also: #admin_enabled?)
Output only.
-
#diagnostics ⇒ Google::Apis::ComputeV1::InterconnectDiagnostics
Diagnostics information about the Interconnect connection, which contains detailed and current technical information about Google's side of the connection.
-
#interconnect ⇒ String
Output only.
-
#is_active ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InterconnectGroupsOperationalStatusInterconnectStatus
constructor
A new instance of InterconnectGroupsOperationalStatusInterconnectStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InterconnectGroupsOperationalStatusInterconnectStatus
Returns a new instance of InterconnectGroupsOperationalStatusInterconnectStatus.
27289 27290 27291 |
# File 'lib/google/apis/compute_v1/classes.rb', line 27289 def initialize(**args) update!(**args) end |
Instance Attribute Details
#admin_enabled ⇒ Boolean Also known as: admin_enabled?
Output only. Whether the Interconnect is enabled.
Corresponds to the JSON property adminEnabled
27268 27269 27270 |
# File 'lib/google/apis/compute_v1/classes.rb', line 27268 def admin_enabled @admin_enabled end |
#diagnostics ⇒ Google::Apis::ComputeV1::InterconnectDiagnostics
Diagnostics information about the Interconnect connection, which contains
detailed and current technical information about Google's side of the
connection.
Corresponds to the JSON property diagnostics
27276 27277 27278 |
# File 'lib/google/apis/compute_v1/classes.rb', line 27276 def diagnostics @diagnostics end |
#interconnect ⇒ String
Output only. The URL of the Interconnect being described.
Corresponds to the JSON property interconnect
27281 27282 27283 |
# File 'lib/google/apis/compute_v1/classes.rb', line 27281 def interconnect @interconnect end |
#is_active ⇒ String
Output only. Whether this interconnect is participating in the redundant
configuration.
Corresponds to the JSON property isActive
27287 27288 27289 |
# File 'lib/google/apis/compute_v1/classes.rb', line 27287 def is_active @is_active end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
27294 27295 27296 27297 27298 27299 |
# File 'lib/google/apis/compute_v1/classes.rb', line 27294 def update!(**args) @admin_enabled = args[:admin_enabled] if args.key?(:admin_enabled) @diagnostics = args[:diagnostics] if args.key?(:diagnostics) @interconnect = args[:interconnect] if args.key?(:interconnect) @is_active = args[:is_active] if args.key?(:is_active) end |