Class: Google::Apis::OndemandscanningV1::BuildDefinition
- Inherits:
-
Object
- Object
- Google::Apis::OndemandscanningV1::BuildDefinition
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/ondemandscanning_v1/classes.rb,
lib/google/apis/ondemandscanning_v1/representations.rb,
lib/google/apis/ondemandscanning_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::OndemandscanningV1::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.
372 373 374 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 372 def initialize(**args) update!(**args) end |
Instance Attribute Details
#build_type ⇒ String
Corresponds to the JSON property buildType
355 356 357 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 355 def build_type @build_type end |
#external_parameters ⇒ Hash<String,Object>
Corresponds to the JSON property externalParameters
360 361 362 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 360 def external_parameters @external_parameters end |
#internal_parameters ⇒ Hash<String,Object>
Corresponds to the JSON property internalParameters
365 366 367 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 365 def internal_parameters @internal_parameters end |
#resolved_dependencies ⇒ Array<Google::Apis::OndemandscanningV1::ResourceDescriptor>
Corresponds to the JSON property resolvedDependencies
370 371 372 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 370 def resolved_dependencies @resolved_dependencies end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
377 378 379 380 381 382 |
# File 'lib/google/apis/ondemandscanning_v1/classes.rb', line 377 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 |