Class: Google::Apis::ComputeAlpha::InterconnectGroupsOperationalStatusInterconnectStatus
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::InterconnectGroupsOperationalStatusInterconnectStatus
- 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
The status of one Interconnect in the group. The order is arbitrary.
Instance Attribute Summary collapse
-
#admin_enabled ⇒ Boolean
(also: #admin_enabled?)
Whether the Interconnect is enabled.
-
#diagnostics ⇒ Google::Apis::ComputeAlpha::InterconnectDiagnostics
Diagnostics information about the Interconnect connection, which contains detailed and current technical information about Google's side of the connection.
-
#interconnect ⇒ String
The URL of the Interconnect being described.
-
#is_active ⇒ String
Whether this interconnect is participating in the redundant configuration.
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.
31257 31258 31259 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 31257 def initialize(**args) update!(**args) end |
Instance Attribute Details
#admin_enabled ⇒ Boolean Also known as: admin_enabled?
Whether the Interconnect is enabled.
Corresponds to the JSON property adminEnabled
31237 31238 31239 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 31237 def admin_enabled @admin_enabled end |
#diagnostics ⇒ Google::Apis::ComputeAlpha::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
31245 31246 31247 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 31245 def diagnostics @diagnostics end |
#interconnect ⇒ String
The URL of the Interconnect being described.
Corresponds to the JSON property interconnect
31250 31251 31252 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 31250 def interconnect @interconnect end |
#is_active ⇒ String
Whether this interconnect is participating in the redundant configuration.
Corresponds to the JSON property isActive
31255 31256 31257 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 31255 def is_active @is_active end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
31262 31263 31264 31265 31266 31267 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 31262 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 |