Class: Google::Apis::DataprocV1::InstanceReference

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dataproc_v1/classes.rb,
lib/google/apis/dataproc_v1/representations.rb,
lib/google/apis/dataproc_v1/representations.rb

Overview

A reference to a Compute Engine instance.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InstanceReference

Returns a new instance of InstanceReference.



2427
2428
2429
# File 'lib/google/apis/dataproc_v1/classes.rb', line 2427

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#instance_idString

The unique identifier of the Compute Engine instance. Corresponds to the JSON property instanceId

Returns:

  • (String)


2410
2411
2412
# File 'lib/google/apis/dataproc_v1/classes.rb', line 2410

def instance_id
  @instance_id
end

#instance_nameString

The user-friendly name of the Compute Engine instance. Corresponds to the JSON property instanceName

Returns:

  • (String)


2415
2416
2417
# File 'lib/google/apis/dataproc_v1/classes.rb', line 2415

def instance_name
  @instance_name
end

#public_ecies_keyString

The public ECIES key used for sharing data with this instance. Corresponds to the JSON property publicEciesKey

Returns:

  • (String)


2420
2421
2422
# File 'lib/google/apis/dataproc_v1/classes.rb', line 2420

def public_ecies_key
  @public_ecies_key
end

#public_keyString

The public RSA key used for sharing data with this instance. Corresponds to the JSON property publicKey

Returns:

  • (String)


2425
2426
2427
# File 'lib/google/apis/dataproc_v1/classes.rb', line 2425

def public_key
  @public_key
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2432
2433
2434
2435
2436
2437
# File 'lib/google/apis/dataproc_v1/classes.rb', line 2432

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