Class: Google::Apis::ComputeBeta::ReservationBlock
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::ReservationBlock
- 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 reservation block resource.
Instance Attribute Summary collapse
-
#count ⇒ Fixnum
[Output Only] The number of resources that are allocated in this reservation block.
-
#creation_timestamp ⇒ String
[Output Only] Creation timestamp in RFC3339 text format.
-
#id ⇒ Fixnum
[Output Only] The unique identifier for the resource.
-
#in_use_count ⇒ Fixnum
[Output Only] The number of instances that are currently in use on this reservation block.
-
#kind ⇒ String
[Output Only] Type of the resource.
-
#name ⇒ String
[Output Only] The name of this reservation block generated by Google Compute Engine.
-
#physical_topology ⇒ Google::Apis::ComputeBeta::ReservationBlockPhysicalTopology
[Output Only] The physical topology of the reservation block.
-
#reservation_maintenance ⇒ Google::Apis::ComputeBeta::GroupMaintenanceInfo
Maintenance Info for ReservationBlocks.
-
#self_link ⇒ String
[Output Only] Server-defined fully-qualified URL for this resource.
-
#self_link_with_id ⇒ String
[Output Only] Server-defined URL for this resource with the resource id.
-
#status ⇒ String
[Output Only] Status of the reservation block.
-
#zone ⇒ String
[Output Only] Zone in which the reservation block resides.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReservationBlock
constructor
A new instance of ReservationBlock.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ReservationBlock
Returns a new instance of ReservationBlock.
36733 36734 36735 |
# File 'lib/google/apis/compute_beta/classes.rb', line 36733 def initialize(**args) update!(**args) end |
Instance Attribute Details
#count ⇒ Fixnum
[Output Only] The number of resources that are allocated in this reservation
block.
Corresponds to the JSON property count
36671 36672 36673 |
# File 'lib/google/apis/compute_beta/classes.rb', line 36671 def count @count end |
#creation_timestamp ⇒ String
[Output Only] Creation timestamp in RFC3339 text format.
Corresponds to the JSON property creationTimestamp
36676 36677 36678 |
# File 'lib/google/apis/compute_beta/classes.rb', line 36676 def @creation_timestamp end |
#id ⇒ Fixnum
[Output Only] The unique identifier for the resource. This identifier is
defined by the server.
Corresponds to the JSON property id
36682 36683 36684 |
# File 'lib/google/apis/compute_beta/classes.rb', line 36682 def id @id end |
#in_use_count ⇒ Fixnum
[Output Only] The number of instances that are currently in use on this
reservation block.
Corresponds to the JSON property inUseCount
36688 36689 36690 |
# File 'lib/google/apis/compute_beta/classes.rb', line 36688 def in_use_count @in_use_count end |
#kind ⇒ String
[Output Only] Type of the resource. Always compute#reservationBlock for
reservation blocks.
Corresponds to the JSON property kind
36694 36695 36696 |
# File 'lib/google/apis/compute_beta/classes.rb', line 36694 def kind @kind end |
#name ⇒ String
[Output Only] The name of this reservation block generated by Google Compute
Engine. The name must be 1-63 characters long, and comply with RFC1035 @
pattern a-z?
Corresponds to the JSON property name
36701 36702 36703 |
# File 'lib/google/apis/compute_beta/classes.rb', line 36701 def name @name end |
#physical_topology ⇒ Google::Apis::ComputeBeta::ReservationBlockPhysicalTopology
[Output Only] The physical topology of the reservation block.
Corresponds to the JSON property physicalTopology
36706 36707 36708 |
# File 'lib/google/apis/compute_beta/classes.rb', line 36706 def physical_topology @physical_topology end |
#reservation_maintenance ⇒ Google::Apis::ComputeBeta::GroupMaintenanceInfo
Maintenance Info for ReservationBlocks.
Corresponds to the JSON property reservationMaintenance
36711 36712 36713 |
# File 'lib/google/apis/compute_beta/classes.rb', line 36711 def reservation_maintenance @reservation_maintenance end |
#self_link ⇒ String
[Output Only] Server-defined fully-qualified URL for this resource.
Corresponds to the JSON property selfLink
36716 36717 36718 |
# File 'lib/google/apis/compute_beta/classes.rb', line 36716 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
36721 36722 36723 |
# File 'lib/google/apis/compute_beta/classes.rb', line 36721 def self_link_with_id @self_link_with_id end |
#status ⇒ String
[Output Only] Status of the reservation block.
Corresponds to the JSON property status
36726 36727 36728 |
# File 'lib/google/apis/compute_beta/classes.rb', line 36726 def status @status end |
#zone ⇒ String
[Output Only] Zone in which the reservation block resides.
Corresponds to the JSON property zone
36731 36732 36733 |
# File 'lib/google/apis/compute_beta/classes.rb', line 36731 def zone @zone end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
36738 36739 36740 36741 36742 36743 36744 36745 36746 36747 36748 36749 36750 36751 |
# File 'lib/google/apis/compute_beta/classes.rb', line 36738 def update!(**args) @count = args[:count] if args.key?(:count) @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp) @id = args[:id] if args.key?(:id) @in_use_count = args[:in_use_count] if args.key?(:in_use_count) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @physical_topology = args[:physical_topology] if args.key?(:physical_topology) @reservation_maintenance = args[:reservation_maintenance] if args.key?(:reservation_maintenance) @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) @status = args[:status] if args.key?(:status) @zone = args[:zone] if args.key?(:zone) end |