Class: Google::Apis::ContaineranalysisV1::BuildDefinition
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1::BuildDefinition
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/containeranalysis_v1/classes.rb,
lib/google/apis/containeranalysis_v1/representations.rb,
lib/google/apis/containeranalysis_v1/representations.rb
Instance Attribute Summary collapse
-
#build_type ⇒ String
Corresponds to the JSON property
buildType. -
#external_parameters ⇒ Hash<String,Object>
Corresponds to the JSON property
externalParameters. -
#internal_parameters ⇒ Hash<String,Object>
Corresponds to the JSON property
internalParameters. -
#resolved_dependencies ⇒ Array<Google::Apis::ContaineranalysisV1::ResourceDescriptor>
Corresponds to the JSON property
resolvedDependencies.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BuildDefinition
constructor
A new instance of BuildDefinition.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BuildDefinition
Returns a new instance of BuildDefinition.
437 438 439 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 437 def initialize(**args) update!(**args) end |
Instance Attribute Details
#build_type ⇒ String
Corresponds to the JSON property buildType
420 421 422 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 420 def build_type @build_type end |
#external_parameters ⇒ Hash<String,Object>
Corresponds to the JSON property externalParameters
425 426 427 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 425 def external_parameters @external_parameters end |
#internal_parameters ⇒ Hash<String,Object>
Corresponds to the JSON property internalParameters
430 431 432 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 430 def internal_parameters @internal_parameters end |
#resolved_dependencies ⇒ Array<Google::Apis::ContaineranalysisV1::ResourceDescriptor>
Corresponds to the JSON property resolvedDependencies
435 436 437 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 435 def resolved_dependencies @resolved_dependencies end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
442 443 444 445 446 447 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 442 def update!(**args) @build_type = args[:build_type] if args.key?(:build_type) @external_parameters = args[:external_parameters] if args.key?(:external_parameters) @internal_parameters = args[:internal_parameters] if args.key?(:internal_parameters) @resolved_dependencies = args[:resolved_dependencies] if args.key?(:resolved_dependencies) end |