Class: Google::Apis::DataprocV1beta2::InstanceReference
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1beta2::InstanceReference
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataproc_v1beta2/classes.rb,
lib/google/apis/dataproc_v1beta2/representations.rb,
lib/google/apis/dataproc_v1beta2/representations.rb
Overview
A reference to a Compute Engine instance.
Instance Attribute Summary collapse
-
#instance_id ⇒ String
The unique identifier of the Compute Engine instance.
-
#instance_name ⇒ String
The user-friendly name of the Compute Engine instance.
-
#public_key ⇒ String
The public key used for sharing data with this instance.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstanceReference
constructor
A new instance of InstanceReference.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InstanceReference
Returns a new instance of InstanceReference.
1445 1446 1447 |
# File 'lib/google/apis/dataproc_v1beta2/classes.rb', line 1445 def initialize(**args) update!(**args) end |
Instance Attribute Details
#instance_id ⇒ String
The unique identifier of the Compute Engine instance.
Corresponds to the JSON property instanceId
1433 1434 1435 |
# File 'lib/google/apis/dataproc_v1beta2/classes.rb', line 1433 def instance_id @instance_id end |
#instance_name ⇒ String
The user-friendly name of the Compute Engine instance.
Corresponds to the JSON property instanceName
1438 1439 1440 |
# File 'lib/google/apis/dataproc_v1beta2/classes.rb', line 1438 def instance_name @instance_name end |
#public_key ⇒ String
The public key used for sharing data with this instance.
Corresponds to the JSON property publicKey
1443 1444 1445 |
# File 'lib/google/apis/dataproc_v1beta2/classes.rb', line 1443 def public_key @public_key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1450 1451 1452 1453 1454 |
# File 'lib/google/apis/dataproc_v1beta2/classes.rb', line 1450 def update!(**args) @instance_id = args[:instance_id] if args.key?(:instance_id) @instance_name = args[:instance_name] if args.key?(:instance_name) @public_key = args[:public_key] if args.key?(:public_key) end |