google-apis-containeranalysis_v1alpha1 0.42.0 → 0.44.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8731ef86a30e3c8a7d97003bfe1a19472b18a4376719f58fce8d93cabadcf5b4
4
- data.tar.gz: 3bb63c78e8c74b9b71f41817766fa7fc779d3968b0098d3487cfdc4c2eefd44d
3
+ metadata.gz: 44acba6644f7c7435f01f0237f8e4c76cea0895af5aa057ceac05e22302235ff
4
+ data.tar.gz: a98d9cf8c8fbd65b30d08c7464495e922fd618350ba2e7324f8481bbb8d35b94
5
5
  SHA512:
6
- metadata.gz: e66550f3a8eb89218115a8bec2df2d398a0f47b286978ecae039ee862c59efb9b6f65f9d30905f2f8d806223249b7f9232eb41ba5ecf630a20ffcdd5b3d903e9
7
- data.tar.gz: d528f983cc27ae33e52d09a01359f34137b545d51daa6931d8e8cd610bace3f2e846705a30cdfaf91169ffb248847a106022020f31009cec61ebefc18824ae3b
6
+ metadata.gz: 7f9fd7bfe6c3f279ea1f45749f51d70d3331492560962d7e1659be4f3023cc66fe4dcab53eb0e395accf8354fbbd032671cf8416f639f338ea6fe3528c256ae3
7
+ data.tar.gz: 30fbb2f552af2f079c672def2caf8bd8417859f80cea76cf4f1e9b8da5db0ea057db222ab52148970e290d9daa7d9fcb8cc44c065627cd5660c054fdaf64b415
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-containeranalysis_v1alpha1
2
2
 
3
+ ### v0.44.0 (2023-02-26)
4
+
5
+ * Regenerated from discovery document revision 20230221
6
+
7
+ ### v0.43.0 (2023-02-15)
8
+
9
+ * Regenerated using generator version 0.12.0
10
+
3
11
  ### v0.42.0 (2023-02-12)
4
12
 
5
13
  * Regenerated from discovery document revision 20230203
@@ -3963,6 +3963,35 @@ module Google
3963
3963
  end
3964
3964
  end
3965
3965
 
3966
+ # Helps in identifying the underlying product. This should be treated like a one-
3967
+ # of field. Only one field should be set in this proto. This is a workaround
3968
+ # because spanner indexes on one-of fields restrict addition and deletion of
3969
+ # fields.
3970
+ class IdentifierHelper
3971
+ include Google::Apis::Core::Hashable
3972
+
3973
+ # The field that is set in the API proto.
3974
+ # Corresponds to the JSON property `field`
3975
+ # @return [String]
3976
+ attr_accessor :field
3977
+
3978
+ # Contains a URI which is vendor-specific. Example: The artifact repository URL
3979
+ # of an image.
3980
+ # Corresponds to the JSON property `genericUri`
3981
+ # @return [String]
3982
+ attr_accessor :generic_uri
3983
+
3984
+ def initialize(**args)
3985
+ update!(**args)
3986
+ end
3987
+
3988
+ # Update properties of this object
3989
+ def update!(**args)
3990
+ @field = args[:field] if args.key?(:field)
3991
+ @generic_uri = args[:generic_uri] if args.key?(:generic_uri)
3992
+ end
3993
+ end
3994
+
3966
3995
  #
3967
3996
  class InTotoProvenance
3968
3997
  include Google::Apis::Core::Hashable
@@ -5326,12 +5355,6 @@ module Google
5326
5355
  class Product
5327
5356
  include Google::Apis::Core::Hashable
5328
5357
 
5329
- # Contains a URI which is vendor-specific. Example: The artifact repository URL
5330
- # of an image.
5331
- # Corresponds to the JSON property `genericUri`
5332
- # @return [String]
5333
- attr_accessor :generic_uri
5334
-
5335
5358
  # Token that identifies a product so that it can be referred to from other parts
5336
5359
  # in the document. There is no predefined format as long as it uniquely
5337
5360
  # identifies a group in the context of the current document.
@@ -5339,6 +5362,14 @@ module Google
5339
5362
  # @return [String]
5340
5363
  attr_accessor :id
5341
5364
 
5365
+ # Helps in identifying the underlying product. This should be treated like a one-
5366
+ # of field. Only one field should be set in this proto. This is a workaround
5367
+ # because spanner indexes on one-of fields restrict addition and deletion of
5368
+ # fields.
5369
+ # Corresponds to the JSON property `identifierHelper`
5370
+ # @return [Google::Apis::ContaineranalysisV1alpha1::IdentifierHelper]
5371
+ attr_accessor :identifier_helper
5372
+
5342
5373
  # Name of the product.
5343
5374
  # Corresponds to the JSON property `name`
5344
5375
  # @return [String]
@@ -5350,8 +5381,8 @@ module Google
5350
5381
 
5351
5382
  # Update properties of this object
5352
5383
  def update!(**args)
5353
- @generic_uri = args[:generic_uri] if args.key?(:generic_uri)
5354
5384
  @id = args[:id] if args.key?(:id)
5385
+ @identifier_helper = args[:identifier_helper] if args.key?(:identifier_helper)
5355
5386
  @name = args[:name] if args.key?(:name)
5356
5387
  end
5357
5388
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContaineranalysisV1alpha1
18
18
  # Version of the google-apis-containeranalysis_v1alpha1 gem
19
- GEM_VERSION = "0.42.0"
19
+ GEM_VERSION = "0.44.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.1"
22
+ GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230203"
25
+ REVISION = "20230221"
26
26
  end
27
27
  end
28
28
  end
@@ -580,6 +580,12 @@ module Google
580
580
  include Google::Apis::Core::JsonObjectSupport
581
581
  end
582
582
 
583
+ class IdentifierHelper
584
+ class Representation < Google::Apis::Core::JsonRepresentation; end
585
+
586
+ include Google::Apis::Core::JsonObjectSupport
587
+ end
588
+
583
589
  class InTotoProvenance
584
590
  class Representation < Google::Apis::Core::JsonRepresentation; end
585
591
 
@@ -1954,6 +1960,14 @@ module Google
1954
1960
  end
1955
1961
  end
1956
1962
 
1963
+ class IdentifierHelper
1964
+ # @private
1965
+ class Representation < Google::Apis::Core::JsonRepresentation
1966
+ property :field, as: 'field'
1967
+ property :generic_uri, as: 'genericUri'
1968
+ end
1969
+ end
1970
+
1957
1971
  class InTotoProvenance
1958
1972
  # @private
1959
1973
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2290,8 +2304,9 @@ module Google
2290
2304
  class Product
2291
2305
  # @private
2292
2306
  class Representation < Google::Apis::Core::JsonRepresentation
2293
- property :generic_uri, as: 'genericUri'
2294
2307
  property :id, as: 'id'
2308
+ property :identifier_helper, as: 'identifierHelper', class: Google::Apis::ContaineranalysisV1alpha1::IdentifierHelper, decorator: Google::Apis::ContaineranalysisV1alpha1::IdentifierHelper::Representation
2309
+
2295
2310
  property :name, as: 'name'
2296
2311
  end
2297
2312
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-containeranalysis_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.42.0
4
+ version: 0.44.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-12 00:00:00.000000000 Z
11
+ date: 2023-02-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.1
19
+ version: 0.11.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.9.1
29
+ version: 0.11.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.42.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.44.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1alpha1
63
63
  post_install_message:
64
64
  rdoc_options: []