Class: Google::Apis::SecuritycenterV1beta1::Container
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1beta1::Container
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/securitycenter_v1beta1/classes.rb,
lib/google/apis/securitycenter_v1beta1/representations.rb,
lib/google/apis/securitycenter_v1beta1/representations.rb
Overview
Container associated with the finding.
Instance Attribute Summary collapse
-
#create_time ⇒ String
The time that the container was created.
-
#image_id ⇒ String
Optional container image ID, if provided by the container runtime.
-
#labels ⇒ Array<Google::Apis::SecuritycenterV1beta1::Label>
Container labels, as provided by the container runtime.
-
#name ⇒ String
Name of the container.
-
#uri ⇒ String
Container image URI provided when configuring a pod or container.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Container
constructor
A new instance of Container.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Container
Returns a new instance of Container.
942 943 944 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 942 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
The time that the container was created.
Corresponds to the JSON property createTime
918 919 920 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 918 def create_time @create_time end |
#image_id ⇒ String
Optional container image ID, if provided by the container runtime. Uniquely
identifies the container image launched using a container image digest.
Corresponds to the JSON property imageId
924 925 926 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 924 def image_id @image_id end |
#labels ⇒ Array<Google::Apis::SecuritycenterV1beta1::Label>
Container labels, as provided by the container runtime.
Corresponds to the JSON property labels
929 930 931 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 929 def labels @labels end |
#name ⇒ String
Name of the container.
Corresponds to the JSON property name
934 935 936 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 934 def name @name end |
#uri ⇒ String
Container image URI provided when configuring a pod or container. This string
can identify a container image version using mutable tags.
Corresponds to the JSON property uri
940 941 942 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 940 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
947 948 949 950 951 952 953 |
# File 'lib/google/apis/securitycenter_v1beta1/classes.rb', line 947 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @image_id = args[:image_id] if args.key?(:image_id) @labels = args[:labels] if args.key?(:labels) @name = args[:name] if args.key?(:name) @uri = args[:uri] if args.key?(:uri) end |