File tree Expand file tree Collapse file tree 5 files changed +14
-2
lines changed
generated/google-apis-containeranalysis_v1
lib/google/apis/containeranalysis_v1 Expand file tree Collapse file tree 5 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -145622,6 +145622,7 @@
145622145622"/containeranalysis:v1/BaseImage": base_image
145623145623"/containeranalysis:v1/BaseImage/layerCount": layer_count
145624145624"/containeranalysis:v1/BaseImage/name": name
145625+ "/containeranalysis:v1/BaseImage/registry": registry
145625145626"/containeranalysis:v1/BaseImage/repository": repository
145626145627"/containeranalysis:v1/BatchCreateNotesRequest": batch_create_notes_request
145627145628"/containeranalysis:v1/BatchCreateNotesRequest/notes": notes
Original file line number Diff line number Diff line change 11# Release history for google-apis-containeranalysis_v1
22
3+ ### v0.69.0 (2026-02-22)
4+
5+ * Regenerated from discovery document revision 20260213
6+
37### v0.68.0 (2026-02-08)
48
59* Regenerated from discovery document revision 20260130
Original file line number Diff line number Diff line change @@ -272,6 +272,11 @@ class BaseImage
272272 # @return [String]
273273 attr_accessor :name
274274
275+ # The registry in which the base image is from.
276+ # Corresponds to the JSON property `registry`
277+ # @return [String]
278+ attr_accessor :registry
279+
275280 # The repository name in which the base image is from.
276281 # Corresponds to the JSON property `repository`
277282 # @return [String]
@@ -285,6 +290,7 @@ def initialize(**args)
285290 def update! ( **args )
286291 @layer_count = args [ :layer_count ] if args . key? ( :layer_count )
287292 @name = args [ :name ] if args . key? ( :name )
293+ @registry = args [ :registry ] if args . key? ( :registry )
288294 @repository = args [ :repository ] if args . key? ( :repository )
289295 end
290296 end
Original file line number Diff line number Diff line change @@ -16,13 +16,13 @@ module Google
1616 module Apis
1717 module ContaineranalysisV1
1818 # Version of the google-apis-containeranalysis_v1 gem
19- GEM_VERSION = "0.68 .0"
19+ GEM_VERSION = "0.69 .0"
2020
2121 # Version of the code generator used to generate this client
2222 GENERATOR_VERSION = "0.18.0"
2323
2424 # Revision of the discovery document this client was generated from
25- REVISION = "20260130 "
25+ REVISION = "20260213 "
2626 end
2727 end
2828end
Original file line number Diff line number Diff line change @@ -1180,6 +1180,7 @@ class BaseImage
11801180 class Representation < Google ::Apis ::Core ::JsonRepresentation
11811181 property :layer_count , as : 'layerCount'
11821182 property :name , as : 'name'
1183+ property :registry , as : 'registry'
11831184 property :repository , as : 'repository'
11841185 end
11851186 end
You can’t perform that action at this time.
0 commit comments