Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -136901,6 +136901,7 @@
"/containeranalysis:v1alpha1/LayerDetails": layer_details
"/containeranalysis:v1alpha1/LayerDetails/baseImages": base_images
"/containeranalysis:v1alpha1/LayerDetails/baseImages/base_image": base_image
"/containeranalysis:v1alpha1/LayerDetails/chainId": chain_id
"/containeranalysis:v1alpha1/LayerDetails/command": command
"/containeranalysis:v1alpha1/LayerDetails/diffId": diff_id
"/containeranalysis:v1alpha1/LayerDetails/index": index
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-containeranalysis_v1alpha1

### v0.76.0 (2025-10-05)

* Regenerated from discovery document revision 20250928

### v0.75.0 (2025-09-07)

* Regenerated from discovery document revision 20250829
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5041,6 +5041,11 @@ class LayerDetails
# @return [Array<Google::Apis::ContaineranalysisV1alpha1::BaseImage>]
attr_accessor :base_images

# The chain ID of the layer in the container image.
# Corresponds to the JSON property `chainId`
# @return [String]
attr_accessor :chain_id

# The layer build command that was used to build the layer. This may not be
# found in all layers depending on how the container image is built.
# Corresponds to the JSON property `command`
Expand All @@ -5064,6 +5069,7 @@ def initialize(**args)
# Update properties of this object
def update!(**args)
@base_images = args[:base_images] if args.key?(:base_images)
@chain_id = args[:chain_id] if args.key?(:chain_id)
@command = args[:command] if args.key?(:command)
@diff_id = args[:diff_id] if args.key?(:diff_id)
@index = args[:index] if args.key?(:index)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module ContaineranalysisV1alpha1
# Version of the google-apis-containeranalysis_v1alpha1 gem
GEM_VERSION = "0.75.0"
GEM_VERSION = "0.76.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.18.0"

# Revision of the discovery document this client was generated from
REVISION = "20250829"
REVISION = "20250928"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -2474,6 +2474,7 @@ class LayerDetails
class Representation < Google::Apis::Core::JsonRepresentation
collection :base_images, as: 'baseImages', class: Google::Apis::ContaineranalysisV1alpha1::BaseImage, decorator: Google::Apis::ContaineranalysisV1alpha1::BaseImage::Representation

property :chain_id, as: 'chainId'
property :command, as: 'command'
property :diff_id, as: 'diffId'
property :index, as: 'index'
Expand Down