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.



1851
1852
1853
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1851

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)


1849
1850
1851
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1849

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1856
1857
1858
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1856

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