Class: Google::Apis::ContaineranalysisV1alpha1::GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaInvocation
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1alpha1::GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaInvocation
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/containeranalysis_v1alpha1/classes.rb,
lib/google/apis/containeranalysis_v1alpha1/representations.rb,
lib/google/apis/containeranalysis_v1alpha1/representations.rb
Overview
Identifies the event that kicked off the build.
Instance Attribute Summary collapse
-
#config_source ⇒ Google::Apis::ContaineranalysisV1alpha1::GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaConfigSource
Describes where the config file that kicked off the build came from.
-
#environment ⇒ Hash<String,Object>
Any other builder-controlled inputs necessary for correctly evaluating the build.
-
#parameters ⇒ Hash<String,Object>
Collection of all external inputs that influenced the build on top of invocation.configSource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaInvocation
constructor
A new instance of GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaInvocation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaInvocation
Returns a new instance of GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaInvocation.
3815 3816 3817 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3815 def initialize(**args) update!(**args) end |
Instance Attribute Details
#config_source ⇒ Google::Apis::ContaineranalysisV1alpha1::GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaConfigSource
Describes where the config file that kicked off the build came from. This is
effectively a pointer to the source where buildConfig came from.
Corresponds to the JSON property configSource
3801 3802 3803 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3801 def config_source @config_source end |
#environment ⇒ Hash<String,Object>
Any other builder-controlled inputs necessary for correctly evaluating the
build.
Corresponds to the JSON property environment
3807 3808 3809 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3807 def environment @environment end |
#parameters ⇒ Hash<String,Object>
Collection of all external inputs that influenced the build on top of
invocation.configSource.
Corresponds to the JSON property parameters
3813 3814 3815 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3813 def parameters @parameters end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3820 3821 3822 3823 3824 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3820 def update!(**args) @config_source = args[:config_source] if args.key?(:config_source) @environment = args[:environment] if args.key?(:environment) @parameters = args[:parameters] if args.key?(:parameters) end |