Class: Google::Apis::RunV1::Execution

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

Execution represents the configuration of a single execution. An execution is an immutable resource that references a container image which is run to completion.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Execution

Returns a new instance of Execution.



952
953
954
# File 'lib/google/apis/run_v1/classes.rb', line 952

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

Instance Attribute Details

#api_versionString

Optional. APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/ contributors/devel/sig-architecture/api-conventions.md#resources Corresponds to the JSON property apiVersion

Returns:

  • (String)


926
927
928
# File 'lib/google/apis/run_v1/classes.rb', line 926

def api_version
  @api_version
end

#kindString

Optional. Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/ community/contributors/devel/sig-architecture/api-conventions.md#types-kinds Corresponds to the JSON property kind

Returns:

  • (String)


934
935
936
# File 'lib/google/apis/run_v1/classes.rb', line 934

def kind
  @kind
end

#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



940
941
942
# File 'lib/google/apis/run_v1/classes.rb', line 940

def 
  @metadata
end

#specGoogle::Apis::RunV1::ExecutionSpec

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



945
946
947
# File 'lib/google/apis/run_v1/classes.rb', line 945

def spec
  @spec
end

#statusGoogle::Apis::RunV1::ExecutionStatus

ExecutionStatus represents the current state of an Execution. Corresponds to the JSON property status



950
951
952
# File 'lib/google/apis/run_v1/classes.rb', line 950

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



957
958
959
960
961
962
963
# File 'lib/google/apis/run_v1/classes.rb', line 957

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