Class: Google::Apis::RunV1alpha1::Initializer

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

Overview

Initializer is information about an initializer that has not yet completed.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Initializer

Returns a new instance of Initializer



1380
1381
1382
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1380

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

Instance Attribute Details

#nameString

name of the process that is responsible for initializing this object. Corresponds to the JSON property name

Returns:

  • (String)


1378
1379
1380
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1378

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1385
1386
1387
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1385

def update!(**args)
  @name = args[:name] if args.key?(:name)
end