Class: Google::Apis::ContaineranalysisV1beta1::Command
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1beta1::Command
- Defined in:
- generated/google/apis/containeranalysis_v1beta1/classes.rb,
generated/google/apis/containeranalysis_v1beta1/representations.rb,
generated/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.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ Command
Returns a new instance of Command
660 661 662 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 660 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
630 631 632 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 630 def args @args end |
#dir ⇒ String
Working directory (relative to project source root) used when running this
command.
Corresponds to the JSON property dir
636 637 638 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 636 def dir @dir end |
#env ⇒ Array<String>
Environment variables set before running this command.
Corresponds to the JSON property env
641 642 643 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 641 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
647 648 649 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 647 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
653 654 655 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 653 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
658 659 660 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 658 def wait_for @wait_for end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
665 666 667 668 669 670 671 672 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 665 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 |