Class: Google::Apis::WorkloadmanagerV1::ShellCommand

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

Overview

  • A ShellCommand is invoked via the agent's command line executor

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ShellCommand

Returns a new instance of ShellCommand.



1691
1692
1693
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1691

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

Instance Attribute Details

#argsString

args is a string of arguments to be passed to the command. Corresponds to the JSON property args

Returns:

  • (String)


1679
1680
1681
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1679

def args
  @args
end

#commandString

command is the name of the command to be executed. Corresponds to the JSON property command

Returns:

  • (String)


1684
1685
1686
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1684

def command
  @command
end

#timeout_secondsFixnum

Optional. If not specified, the default timeout is 60 seconds. Corresponds to the JSON property timeoutSeconds

Returns:

  • (Fixnum)


1689
1690
1691
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1689

def timeout_seconds
  @timeout_seconds
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1696
1697
1698
1699
1700
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 1696

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