Class: Google::Apis::ContaineranalysisV1beta1::Command
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1beta1::Command
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/containeranalysis_v1beta1/classes.rb,
lib/google/apis/containeranalysis_v1beta1/representations.rb,
lib/google/apis/containeranalysis_v1beta1/representations.rb
Overview
Command describes a step performed as part of the build pipeline.
Instance Attribute Summary collapse
-
#args ⇒ Array<String>
Command-line arguments used when executing this command.
-
#dir ⇒ String
Working directory (relative to project source root) used when running this command.
-
#env ⇒ Array<String>
Environment variables set before running this command.
-
#id ⇒ String
Optional unique identifier for this command, used in wait_for to reference this command as a dependency.
-
#name ⇒ String
Required.
-
#wait_for ⇒ Array<String>
The ID(s) of the command(s) that this command depends on.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Command
constructor
A new instance of Command.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Command
Returns a new instance of Command.
1162 1163 1164 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 1162 def initialize(**args) update!(**args) end |
Instance Attribute Details
#args ⇒ Array<String>
Command-line arguments used when executing this command.
Corresponds to the JSON property args
1132 1133 1134 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 1132 def args @args end |
#dir ⇒ String
Working directory (relative to project source root) used when running this
command.
Corresponds to the JSON property dir
1138 1139 1140 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 1138 def dir @dir end |
#env ⇒ Array<String>
Environment variables set before running this command.
Corresponds to the JSON property env
1143 1144 1145 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 1143 def env @env end |
#id ⇒ String
Optional unique identifier for this command, used in wait_for to reference
this command as a dependency.
Corresponds to the JSON property id
1149 1150 1151 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 1149 def id @id end |
#name ⇒ String
Required. Name of the command, as presented on the command line, or if the
command is packaged as a Docker container, as presented to docker pull
.
Corresponds to the JSON property name
1155 1156 1157 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 1155 def name @name end |
#wait_for ⇒ Array<String>
The ID(s) of the command(s) that this command depends on.
Corresponds to the JSON property waitFor
1160 1161 1162 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 1160 def wait_for @wait_for end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1167 1168 1169 1170 1171 1172 1173 1174 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 1167 def update!(**args) @args = args[:args] if args.key?(:args) @dir = args[:dir] if args.key?(:dir) @env = args[:env] if args.key?(:env) @id = args[:id] if args.key?(:id) @name = args[:name] if args.key?(:name) @wait_for = args[:wait_for] if args.key?(:wait_for) end |