Class: Google::Apis::RunV1alpha1::ExecAction

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

ExecAction describes a "run in container" action.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ExecAction

Returns a new instance of ExecAction.



1834
1835
1836
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1834

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

Instance Attribute Details

#commandArray<String>

Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non- zero is unhealthy. +optional Corresponds to the JSON property command

Returns:

  • (Array<String>)


1832
1833
1834
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1832

def command
  @command
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1839
1840
1841
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 1839

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