class Google::Apis::DataprocV1::InstanceReference
A reference to a Compute Engine instance.
Attributes
instance_id[RW]
The unique identifier of the Compute Engine instance. Corresponds to the JSON property `instanceId` @return [String]
instance_name[RW]
The user-friendly name of the Compute Engine instance. Corresponds to the JSON property `instanceName` @return [String]
public_ecies_key[RW]
The public ECIES key used for sharing data with this instance. Corresponds to the JSON property `publicEciesKey` @return [String]
public_key[RW]
The public RSA key used for sharing data with this instance. Corresponds to the JSON property `publicKey` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataproc_v1/classes.rb, line 1568 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dataproc_v1/classes.rb, line 1573 def update!(**args) @instance_id = args[:instance_id] if args.key?(:instance_id) @instance_name = args[:instance_name] if args.key?(:instance_name) @public_ecies_key = args[:public_ecies_key] if args.key?(:public_ecies_key) @public_key = args[:public_key] if args.key?(:public_key) end