Class: Google::Apis::ComputeV1::BulkInsertInstanceResourcePerInstanceProperties
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::BulkInsertInstanceResourcePerInstanceProperties
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_v1/classes.rb,
lib/google/apis/compute_v1/representations.rb,
lib/google/apis/compute_v1/representations.rb
Overview
Per-instance properties to be set on individual instances. To be extended in the future.
Instance Attribute Summary collapse
-
#hostname ⇒ String
Specifies the hostname of the instance.
-
#name ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BulkInsertInstanceResourcePerInstanceProperties
constructor
A new instance of BulkInsertInstanceResourcePerInstanceProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BulkInsertInstanceResourcePerInstanceProperties
Returns a new instance of BulkInsertInstanceResourcePerInstanceProperties.
6653 6654 6655 |
# File 'lib/google/apis/compute_v1/classes.rb', line 6653 def initialize(**args) update!(**args) end |
Instance Attribute Details
#hostname ⇒ String
Specifies the hostname of the instance. More details in:
https://cloud.google.com/compute/docs/instances/custom-hostname-vm#
naming_convention
Corresponds to the JSON property hostname
6646 6647 6648 |
# File 'lib/google/apis/compute_v1/classes.rb', line 6646 def hostname @hostname end |
#name ⇒ String
Output only. This field is only temporary. It will be removed. Do not use it.
Corresponds to the JSON property name
6651 6652 6653 |
# File 'lib/google/apis/compute_v1/classes.rb', line 6651 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6658 6659 6660 6661 |
# File 'lib/google/apis/compute_v1/classes.rb', line 6658 def update!(**args) @hostname = args[:hostname] if args.key?(:hostname) @name = args[:name] if args.key?(:name) end |