Class: Google::Apis::ContaineranalysisV1alpha1::Material
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1alpha1::Material
- 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
Material is a material used in the generation of the provenance
Instance Attribute Summary collapse
-
#digest ⇒ Hash<String,String>
digest is a map from a hash algorithm (e.g. sha256) to the value in the material Corresponds to the JSON property
digest
. -
#uri ⇒ String
uri is the uri of the material Corresponds to the JSON property
uri
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Material
constructor
A new instance of Material.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Material
Returns a new instance of Material.
4860 4861 4862 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4860 def initialize(**args) update!(**args) end |
Instance Attribute Details
#digest ⇒ Hash<String,String>
digest is a map from a hash algorithm (e.g. sha256) to the value in the
material
Corresponds to the JSON property digest
4853 4854 4855 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4853 def digest @digest end |
#uri ⇒ String
uri is the uri of the material
Corresponds to the JSON property uri
4858 4859 4860 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4858 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4865 4866 4867 4868 |
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4865 def update!(**args) @digest = args[:digest] if args.key?(:digest) @uri = args[:uri] if args.key?(:uri) end |