Class: Google::Apis::ComputeBeta::InstanceGroupManagerResizeRequest
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::InstanceGroupManagerResizeRequest
- 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
InstanceGroupManagerResizeRequest represents a request to create a number of VMs: either immediately or by queuing the request for the specified time. This resize request is nested under InstanceGroupManager and the VMs created by this request are added to the owning InstanceGroupManager.
Instance Attribute Summary collapse
-
#count ⇒ Fixnum
The count of instances to create as part of this resize request.
-
#creation_timestamp ⇒ String
[Output Only] The creation timestamp for this resize request in RFC3339 text format.
-
#description ⇒ String
An optional description of this resource.
-
#id ⇒ Fixnum
[Output Only] A unique identifier for this resource type.
-
#kind ⇒ String
[Output Only] The resource type, which is always compute# instanceGroupManagerResizeRequest for resize requests.
-
#name ⇒ String
The name of this resize request.
-
#self_link ⇒ String
[Output Only] The URL for this resize request.
-
#self_link_with_id ⇒ String
[Output Only] Server-defined URL for this resource with the resource id.
-
#state ⇒ String
[Output only] Current state of the request.
-
#status ⇒ Google::Apis::ComputeBeta::InstanceGroupManagerResizeRequestStatus
[Output only] Status of the request.
-
#zone ⇒ String
[Output Only] The URL of a zone where the resize request is located.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstanceGroupManagerResizeRequest
constructor
A new instance of InstanceGroupManagerResizeRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InstanceGroupManagerResizeRequest
Returns a new instance of InstanceGroupManagerResizeRequest.
16087 16088 16089 |
# File 'lib/google/apis/compute_beta/classes.rb', line 16087 def initialize(**args) update!(**args) end |
Instance Attribute Details
#count ⇒ Fixnum
The count of instances to create as part of this resize request.
Corresponds to the JSON property count
16026 16027 16028 |
# File 'lib/google/apis/compute_beta/classes.rb', line 16026 def count @count end |
#creation_timestamp ⇒ String
[Output Only] The creation timestamp for this resize request in RFC3339 text
format.
Corresponds to the JSON property creationTimestamp
16032 16033 16034 |
# File 'lib/google/apis/compute_beta/classes.rb', line 16032 def @creation_timestamp end |
#description ⇒ String
An optional description of this resource.
Corresponds to the JSON property description
16037 16038 16039 |
# File 'lib/google/apis/compute_beta/classes.rb', line 16037 def description @description end |
#id ⇒ Fixnum
[Output Only] A unique identifier for this resource type. The server generates
this identifier.
Corresponds to the JSON property id
16043 16044 16045 |
# File 'lib/google/apis/compute_beta/classes.rb', line 16043 def id @id end |
#kind ⇒ String
[Output Only] The resource type, which is always compute#
instanceGroupManagerResizeRequest for resize requests.
Corresponds to the JSON property kind
16049 16050 16051 |
# File 'lib/google/apis/compute_beta/classes.rb', line 16049 def kind @kind end |
#name ⇒ String
The name of this resize request. The name must be 1-63 characters long, and
comply with RFC1035.
Corresponds to the JSON property name
16055 16056 16057 |
# File 'lib/google/apis/compute_beta/classes.rb', line 16055 def name @name end |
#self_link ⇒ String
[Output Only] The URL for this resize request. The server defines this URL.
Corresponds to the JSON property selfLink
16060 16061 16062 |
# File 'lib/google/apis/compute_beta/classes.rb', line 16060 def self_link @self_link end |
#self_link_with_id ⇒ String
[Output Only] Server-defined URL for this resource with the resource id.
Corresponds to the JSON property selfLinkWithId
16065 16066 16067 |
# File 'lib/google/apis/compute_beta/classes.rb', line 16065 def self_link_with_id @self_link_with_id end |
#state ⇒ String
[Output only] Current state of the request.
Corresponds to the JSON property state
16070 16071 16072 |
# File 'lib/google/apis/compute_beta/classes.rb', line 16070 def state @state end |
#status ⇒ Google::Apis::ComputeBeta::InstanceGroupManagerResizeRequestStatus
[Output only] Status of the request. The Status message is aligned with
QueuedResource.status. ResizeRequest.queuing_policy contains the queuing
policy as provided by the user; it could have either valid_until_time or
valid_until_duration. ResizeRequest.status.queuing_policy always contains
absolute time as calculated by the server when the request is queued.
Corresponds to the JSON property status
16079 16080 16081 |
# File 'lib/google/apis/compute_beta/classes.rb', line 16079 def status @status end |
#zone ⇒ String
[Output Only] The URL of a zone where the resize request is located. Populated
only for zonal resize requests.
Corresponds to the JSON property zone
16085 16086 16087 |
# File 'lib/google/apis/compute_beta/classes.rb', line 16085 def zone @zone end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16092 16093 16094 16095 16096 16097 16098 16099 16100 16101 16102 16103 16104 |
# File 'lib/google/apis/compute_beta/classes.rb', line 16092 def update!(**args) @count = args[:count] if args.key?(:count) @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp) @description = args[:description] if args.key?(:description) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @self_link = args[:self_link] if args.key?(:self_link) @self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id) @state = args[:state] if args.key?(:state) @status = args[:status] if args.key?(:status) @zone = args[:zone] if args.key?(:zone) end |