Class: Google::Apis::ComputeBeta::Reservation
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::Reservation
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb
Overview
Represents a reservation resource. A reservation ensures that capacity is held
in a specific zone even if the reserved VMs are not running. For more
information, read Reserving zonal resources. (== resource_for $api_version
.
reservations ==)
Instance Attribute Summary collapse
-
#commitment ⇒ String
[Output Only] Full or partial URL to a parent commitment.
-
#creation_timestamp ⇒ String
[Output Only] Creation timestamp in RFC3339 text format.
-
#description ⇒ String
An optional description of this resource.
-
#id ⇒ Fixnum
[Output Only] The unique identifier for the resource.
-
#kind ⇒ String
[Output Only] Type of the resource.
-
#name ⇒ String
The name of the resource, provided by the client when initially creating the resource.
-
#self_link ⇒ String
[Output Only] Server-defined fully-qualified URL for this resource.
-
#specific_reservation ⇒ Google::Apis::ComputeBeta::AllocationSpecificSkuReservation
This reservation type allows to pre allocate specific instance configuration.
-
#specific_reservation_required ⇒ Boolean
(also: #specific_reservation_required?)
Indicates whether the reservation can be consumed by VMs with affinity for " any" reservation.
-
#status ⇒ String
[Output Only] The status of the reservation.
-
#zone ⇒ String
Zone in which the reservation resides.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Reservation
constructor
A new instance of Reservation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Reservation
Returns a new instance of Reservation.
25984 25985 25986 |
# File 'generated/google/apis/compute_beta/classes.rb', line 25984 def initialize(**args) update!(**args) end |
Instance Attribute Details
#commitment ⇒ String
[Output Only] Full or partial URL to a parent commitment. This field displays
for reservations that are tied to a commitment.
Corresponds to the JSON property commitment
25919 25920 25921 |
# File 'generated/google/apis/compute_beta/classes.rb', line 25919 def commitment @commitment end |
#creation_timestamp ⇒ String
[Output Only] Creation timestamp in RFC3339 text format.
Corresponds to the JSON property creationTimestamp
25924 25925 25926 |
# File 'generated/google/apis/compute_beta/classes.rb', line 25924 def @creation_timestamp end |
#description ⇒ String
An optional description of this resource. Provide this property when you
create the resource.
Corresponds to the JSON property description
25930 25931 25932 |
# File 'generated/google/apis/compute_beta/classes.rb', line 25930 def description @description end |
#id ⇒ Fixnum
[Output Only] The unique identifier for the resource. This identifier is
defined by the server.
Corresponds to the JSON property id
25936 25937 25938 |
# File 'generated/google/apis/compute_beta/classes.rb', line 25936 def id @id end |
#kind ⇒ String
[Output Only] Type of the resource. Always compute#reservations for
reservations.
Corresponds to the JSON property kind
25942 25943 25944 |
# File 'generated/google/apis/compute_beta/classes.rb', line 25942 def kind @kind end |
#name ⇒ String
The name of the resource, provided by the client when initially creating the
resource. The resource name must be 1-63 characters long, and comply with
RFC1035. Specifically, the name must be 1-63 characters long and match the
regular expression [a-z]([-a-z0-9]*[a-z0-9])?
which means the first
character must be a lowercase letter, and all following characters must be a
dash, lowercase letter, or digit, except the last character, which cannot be a
dash.
Corresponds to the JSON property name
25953 25954 25955 |
# File 'generated/google/apis/compute_beta/classes.rb', line 25953 def name @name end |
#self_link ⇒ String
[Output Only] Server-defined fully-qualified URL for this resource.
Corresponds to the JSON property selfLink
25958 25959 25960 |
# File 'generated/google/apis/compute_beta/classes.rb', line 25958 def self_link @self_link end |
#specific_reservation ⇒ Google::Apis::ComputeBeta::AllocationSpecificSkuReservation
This reservation type allows to pre allocate specific instance configuration.
Corresponds to the JSON property specificReservation
25963 25964 25965 |
# File 'generated/google/apis/compute_beta/classes.rb', line 25963 def specific_reservation @specific_reservation end |
#specific_reservation_required ⇒ Boolean Also known as: specific_reservation_required?
Indicates whether the reservation can be consumed by VMs with affinity for "
any" reservation. If the field is set, then only VMs that target the
reservation by name can consume from this reservation.
Corresponds to the JSON property specificReservationRequired
25970 25971 25972 |
# File 'generated/google/apis/compute_beta/classes.rb', line 25970 def specific_reservation_required @specific_reservation_required end |
#status ⇒ String
[Output Only] The status of the reservation.
Corresponds to the JSON property status
25976 25977 25978 |
# File 'generated/google/apis/compute_beta/classes.rb', line 25976 def status @status end |
#zone ⇒ String
Zone in which the reservation resides. A zone must be provided if the
reservation is created within a commitment.
Corresponds to the JSON property zone
25982 25983 25984 |
# File 'generated/google/apis/compute_beta/classes.rb', line 25982 def zone @zone end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
25989 25990 25991 25992 25993 25994 25995 25996 25997 25998 25999 26000 26001 |
# File 'generated/google/apis/compute_beta/classes.rb', line 25989 def update!(**args) @commitment = args[:commitment] if args.key?(:commitment) @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) @specific_reservation = args[:specific_reservation] if args.key?(:specific_reservation) @specific_reservation_required = args[:specific_reservation_required] if args.key?(:specific_reservation_required) @status = args[:status] if args.key?(:status) @zone = args[:zone] if args.key?(:zone) end |