Class: Google::Apis::ComputeBeta::MultiMigMember
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::MultiMigMember
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb
Overview
Represents a Multi-MIG member resource.
Instance Attribute Summary collapse
-
#creation_timestamp ⇒ String
Output only.
-
#id ⇒ Fixnum
Output only.
-
#kind ⇒ String
Output only.
-
#name ⇒ String
Output only.
-
#region ⇒ String
Output only.
-
#self_link ⇒ String
Output only.
-
#status ⇒ Google::Apis::ComputeBeta::MultiMigMemberStatus
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MultiMigMember
constructor
A new instance of MultiMigMember.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MultiMigMember
Returns a new instance of MultiMigMember.
37182 37183 37184 |
# File 'lib/google/apis/compute_beta/classes.rb', line 37182 def initialize(**args) update!(**args) end |
Instance Attribute Details
#creation_timestamp ⇒ String
Output only. [Output Only] Creation timestamp of this multi-MIG member
inRFC3339 text format.
Corresponds to the JSON property creationTimestamp
37146 37147 37148 |
# File 'lib/google/apis/compute_beta/classes.rb', line 37146 def @creation_timestamp end |
#id ⇒ Fixnum
Output only. [Output only] The unique identifier for this resource type. The
server
generates this identifier.
Corresponds to the JSON property id
37153 37154 37155 |
# File 'lib/google/apis/compute_beta/classes.rb', line 37153 def id @id end |
#kind ⇒ String
Output only. Type of the resource. Alwayscompute#multiMigMember for a list of
multi-MIG members.
Corresponds to the JSON property kind
37159 37160 37161 |
# File 'lib/google/apis/compute_beta/classes.rb', line 37159 def kind @kind end |
#name ⇒ String
Output only. [Output Only] Server-defined name for the multi-MIG member.
Corresponds to the JSON property name
37164 37165 37166 |
# File 'lib/google/apis/compute_beta/classes.rb', line 37164 def name @name end |
#region ⇒ String
Output only. [Output Only] The URL of the region where the multi-MIG resides.
Corresponds to the JSON property region
37169 37170 37171 |
# File 'lib/google/apis/compute_beta/classes.rb', line 37169 def region @region end |
#self_link ⇒ String
Output only. [Output Only] Server-defined fully-qualified URL for this
resource.
Corresponds to the JSON property selfLink
37175 37176 37177 |
# File 'lib/google/apis/compute_beta/classes.rb', line 37175 def self_link @self_link end |
#status ⇒ Google::Apis::ComputeBeta::MultiMigMemberStatus
Output only. [Output Only] The status of this multi-MIG member
Corresponds to the JSON property status
37180 37181 37182 |
# File 'lib/google/apis/compute_beta/classes.rb', line 37180 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
37187 37188 37189 37190 37191 37192 37193 37194 37195 |
# File 'lib/google/apis/compute_beta/classes.rb', line 37187 def update!(**args) @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @region = args[:region] if args.key?(:region) @self_link = args[:self_link] if args.key?(:self_link) @status = args[:status] if args.key?(:status) end |