Class: Google::Apis::ContaineranalysisV1alpha1::Resource
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1alpha1::Resource
- Defined in:
- generated/google/apis/containeranalysis_v1alpha1/classes.rb,
generated/google/apis/containeranalysis_v1alpha1/representations.rb,
generated/google/apis/containeranalysis_v1alpha1/representations.rb
Overview
Resource is an entity that can have metadata. E.g., a Docker image.
Instance Attribute Summary collapse
-
#content_hash ⇒ Google::Apis::ContaineranalysisV1alpha1::HashProp
Container message for hash values.
-
#name ⇒ String
The name of the resource.
-
#uri ⇒ String
The unique URI of the resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Resource
constructor
A new instance of Resource.
-
#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) ⇒ Resource
Returns a new instance of Resource
2243 2244 2245 |
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 2243 def initialize(**args) update!(**args) end |
Instance Attribute Details
#content_hash ⇒ Google::Apis::ContaineranalysisV1alpha1::HashProp
Container message for hash values.
Corresponds to the JSON property contentHash
2230 2231 2232 |
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 2230 def content_hash @content_hash end |
#name ⇒ String
The name of the resource. E.g., the name of a Docker image - "Debian".
Corresponds to the JSON property name
2235 2236 2237 |
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 2235 def name @name end |
#uri ⇒ String
The unique URI of the resource. E.g.,
"https://gcr.io/project/image@sha256:foo" for a Docker image.
Corresponds to the JSON property uri
2241 2242 2243 |
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 2241 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2248 2249 2250 2251 2252 |
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 2248 def update!(**args) @content_hash = args[:content_hash] if args.key?(:content_hash) @name = args[:name] if args.key?(:name) @uri = args[:uri] if args.key?(:uri) end |