Class: Google::Apis::RunV1::ExecutionTemplateSpec

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

Overview

ExecutionTemplateSpec describes the metadata and spec an Execution should have when created from a job. Based on: https://github.com/kubernetes/api/blob/ e771f807/core/v1/types.go#L3179-L3190

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ExecutionTemplateSpec

Returns a new instance of ExecutionTemplateSpec.



1139
1140
1141
# File 'lib/google/apis/run_v1/classes.rb', line 1139

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

Instance Attribute Details

#metadataGoogle::Apis::RunV1::ObjectMeta

k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create. Corresponds to the JSON property metadata



1132
1133
1134
# File 'lib/google/apis/run_v1/classes.rb', line 1132

def 
  @metadata
end

#specGoogle::Apis::RunV1::ExecutionSpec

ExecutionSpec describes how the execution will look. Corresponds to the JSON property spec



1137
1138
1139
# File 'lib/google/apis/run_v1/classes.rb', line 1137

def spec
  @spec
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1144
1145
1146
1147
# File 'lib/google/apis/run_v1/classes.rb', line 1144

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