lib/google/apis/securitycenter_v1beta2/classes.rb in google-apis-securitycenter_v1beta2-0.51.0 vs lib/google/apis/securitycenter_v1beta2/classes.rb in google-apis-securitycenter_v1beta2-0.52.0

- old
+ new

@@ -397,10 +397,15 @@ # Container associated with the finding. class Container include Google::Apis::Core::Hashable + # The time that the container was created. + # Corresponds to the JSON property `createTime` + # @return [String] + attr_accessor :create_time + # 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` # @return [String] attr_accessor :image_id @@ -425,9 +430,10 @@ update!(**args) end # Update properties of this object 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