google-apis-containeranalysis_v1alpha1 0.43.0 → 0.45.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: 1d6549f45e987cba6f60b108015c97dd1145670e1af7590e048a4c5c56f99eed
4
- data.tar.gz: 77c038394fe0a015a6c5fd4d59273b400a76d1706174f12e09b7689d81c621e0
3
+ metadata.gz: 9c979af17b73b82c7689b55828e7056c53767cc64930692306d3026cd4c72809
4
+ data.tar.gz: 1b2468b7722550249ad02c2f81b9ac3ef69333744ef6371666cfb8c2320e49c5
5
5
  SHA512:
6
- metadata.gz: e7d8c1f89f927bb9a6e725cf7feb805ba134bcbcc55726d42cfa63d24ba4503778cc6caa261d2030df135d5fc53a78bc4665e6a13824180c33f07fd929b188c5
7
- data.tar.gz: 60697adf0948b74e66cfa57f6e6259f5029645a4dad3582a3ab313ca830a73272c914c146b61c4e5c91e091b6ad395b73b92935630a1d93b2ffdfa14d3142443
6
+ metadata.gz: acd5c05bf52f03e69d262603f9feba3ad18041781f730f55bb54161401310f90c2b5722d9ebe749bd9fa0d586f2e8431ca4daf43353d2c3a35b52152959dbb98
7
+ data.tar.gz: 7dc643861422302f23034d2c6f61b75dbb88c3b15dd32b1625ff5c299acbea28fe89bfb85ce7befd6d6dc08ee3686d84eaec5dcc4bd6ff0b20666a68cb0a5b6c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-containeranalysis_v1alpha1
2
2
 
3
+ ### v0.45.0 (2023-03-19)
4
+
5
+ * Regenerated from discovery document revision 20230310
6
+
7
+ ### v0.44.0 (2023-02-26)
8
+
9
+ * Regenerated from discovery document revision 20230221
10
+
3
11
  ### v0.43.0 (2023-02-15)
4
12
 
5
13
  * Regenerated using generator version 0.12.0
@@ -102,6 +102,18 @@ module Google
102
102
  # @return [String]
103
103
  attr_accessor :cve
104
104
 
105
+ # Contains information about the impact of this vulnerability, this will change
106
+ # with time.
107
+ # Corresponds to the JSON property `impacts`
108
+ # @return [Array<String>]
109
+ attr_accessor :impacts
110
+
111
+ # Justification provides the justification when the state of the assessment if
112
+ # NOT_AFFECTED.
113
+ # Corresponds to the JSON property `justification`
114
+ # @return [Google::Apis::ContaineranalysisV1alpha1::Justification]
115
+ attr_accessor :justification
116
+
105
117
  # A detailed description of this Vex.
106
118
  # Corresponds to the JSON property `longDescription`
107
119
  # @return [String]
@@ -130,11 +142,6 @@ module Google
130
142
  # @return [String]
131
143
  attr_accessor :state
132
144
 
133
- # Contains information about this vulnerability, this will change with time.
134
- # Corresponds to the JSON property `threats`
135
- # @return [Array<Google::Apis::ContaineranalysisV1alpha1::Threat>]
136
- attr_accessor :threats
137
-
138
145
  def initialize(**args)
139
146
  update!(**args)
140
147
  end
@@ -142,12 +149,13 @@ module Google
142
149
  # Update properties of this object
143
150
  def update!(**args)
144
151
  @cve = args[:cve] if args.key?(:cve)
152
+ @impacts = args[:impacts] if args.key?(:impacts)
153
+ @justification = args[:justification] if args.key?(:justification)
145
154
  @long_description = args[:long_description] if args.key?(:long_description)
146
155
  @related_uris = args[:related_uris] if args.key?(:related_uris)
147
156
  @remediations = args[:remediations] if args.key?(:remediations)
148
157
  @short_description = args[:short_description] if args.key?(:short_description)
149
158
  @state = args[:state] if args.key?(:state)
150
- @threats = args[:threats] if args.key?(:threats)
151
159
  end
152
160
  end
153
161
 
@@ -1577,6 +1585,11 @@ module Google
1577
1585
  class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions
1578
1586
  include Google::Apis::Core::Hashable
1579
1587
 
1588
+ # Optional. Option to specify how default logs buckets are setup.
1589
+ # Corresponds to the JSON property `defaultLogsBucketBehavior`
1590
+ # @return [String]
1591
+ attr_accessor :default_logs_bucket_behavior
1592
+
1580
1593
  # Requested disk size for the VM that runs the build. Note that this is *NOT* "
1581
1594
  # disk free"; some of the space will be used by the operating system and build
1582
1595
  # utilities. Also note that this is the minimum disk size that will be allocated
@@ -1672,6 +1685,7 @@ module Google
1672
1685
 
1673
1686
  # Update properties of this object
1674
1687
  def update!(**args)
1688
+ @default_logs_bucket_behavior = args[:default_logs_bucket_behavior] if args.key?(:default_logs_bucket_behavior)
1675
1689
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
1676
1690
  @dynamic_substitutions = args[:dynamic_substitutions] if args.key?(:dynamic_substitutions)
1677
1691
  @env = args[:env] if args.key?(:env)
@@ -3963,6 +3977,35 @@ module Google
3963
3977
  end
3964
3978
  end
3965
3979
 
3980
+ # Helps in identifying the underlying product. This should be treated like a one-
3981
+ # of field. Only one field should be set in this proto. This is a workaround
3982
+ # because spanner indexes on one-of fields restrict addition and deletion of
3983
+ # fields.
3984
+ class IdentifierHelper
3985
+ include Google::Apis::Core::Hashable
3986
+
3987
+ # The field that is set in the API proto.
3988
+ # Corresponds to the JSON property `field`
3989
+ # @return [String]
3990
+ attr_accessor :field
3991
+
3992
+ # Contains a URI which is vendor-specific. Example: The artifact repository URL
3993
+ # of an image.
3994
+ # Corresponds to the JSON property `genericUri`
3995
+ # @return [String]
3996
+ attr_accessor :generic_uri
3997
+
3998
+ def initialize(**args)
3999
+ update!(**args)
4000
+ end
4001
+
4002
+ # Update properties of this object
4003
+ def update!(**args)
4004
+ @field = args[:field] if args.key?(:field)
4005
+ @generic_uri = args[:generic_uri] if args.key?(:generic_uri)
4006
+ end
4007
+ end
4008
+
3966
4009
  #
3967
4010
  class InTotoProvenance
3968
4011
  include Google::Apis::Core::Hashable
@@ -4119,6 +4162,32 @@ module Google
4119
4162
  end
4120
4163
  end
4121
4164
 
4165
+ # Justification provides the justification when the state of the assessment if
4166
+ # NOT_AFFECTED.
4167
+ class Justification
4168
+ include Google::Apis::Core::Hashable
4169
+
4170
+ # Additional details on why this justification was chosen.
4171
+ # Corresponds to the JSON property `details`
4172
+ # @return [String]
4173
+ attr_accessor :details
4174
+
4175
+ # The justification type for this vulnerability.
4176
+ # Corresponds to the JSON property `justificationType`
4177
+ # @return [String]
4178
+ attr_accessor :justification_type
4179
+
4180
+ def initialize(**args)
4181
+ update!(**args)
4182
+ end
4183
+
4184
+ # Update properties of this object
4185
+ def update!(**args)
4186
+ @details = args[:details] if args.key?(:details)
4187
+ @justification_type = args[:justification_type] if args.key?(:justification_type)
4188
+ end
4189
+ end
4190
+
4122
4191
  # Layer holds metadata specific to a layer of a Docker image.
4123
4192
  class Layer
4124
4193
  include Google::Apis::Core::Hashable
@@ -5326,12 +5395,6 @@ module Google
5326
5395
  class Product
5327
5396
  include Google::Apis::Core::Hashable
5328
5397
 
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
5398
  # Token that identifies a product so that it can be referred to from other parts
5336
5399
  # in the document. There is no predefined format as long as it uniquely
5337
5400
  # identifies a group in the context of the current document.
@@ -5339,6 +5402,14 @@ module Google
5339
5402
  # @return [String]
5340
5403
  attr_accessor :id
5341
5404
 
5405
+ # Helps in identifying the underlying product. This should be treated like a one-
5406
+ # of field. Only one field should be set in this proto. This is a workaround
5407
+ # because spanner indexes on one-of fields restrict addition and deletion of
5408
+ # fields.
5409
+ # Corresponds to the JSON property `identifierHelper`
5410
+ # @return [Google::Apis::ContaineranalysisV1alpha1::IdentifierHelper]
5411
+ attr_accessor :identifier_helper
5412
+
5342
5413
  # Name of the product.
5343
5414
  # Corresponds to the JSON property `name`
5344
5415
  # @return [String]
@@ -5350,8 +5421,8 @@ module Google
5350
5421
 
5351
5422
  # Update properties of this object
5352
5423
  def update!(**args)
5353
- @generic_uri = args[:generic_uri] if args.key?(:generic_uri)
5354
5424
  @id = args[:id] if args.key?(:id)
5425
+ @identifier_helper = args[:identifier_helper] if args.key?(:identifier_helper)
5355
5426
  @name = args[:name] if args.key?(:name)
5356
5427
  end
5357
5428
  end
@@ -5360,13 +5431,6 @@ module Google
5360
5431
  class Publisher
5361
5432
  include Google::Apis::Core::Hashable
5362
5433
 
5363
- # The context or namespace. Contains a URL which is under control of the issuing
5364
- # party and can be used as a globally unique identifier for that issuing party.
5365
- # Example: https://csaf.io
5366
- # Corresponds to the JSON property `context`
5367
- # @return [String]
5368
- attr_accessor :context
5369
-
5370
5434
  # Provides information about the authority of the issuing party to release the
5371
5435
  # document, in particular, the party's constituency and responsibilities or
5372
5436
  # other obligations.
@@ -5379,15 +5443,22 @@ module Google
5379
5443
  # @return [String]
5380
5444
  attr_accessor :name
5381
5445
 
5446
+ # The context or namespace. Contains a URL which is under control of the issuing
5447
+ # party and can be used as a globally unique identifier for that issuing party.
5448
+ # Example: https://csaf.io
5449
+ # Corresponds to the JSON property `publisherNamespace`
5450
+ # @return [String]
5451
+ attr_accessor :publisher_namespace
5452
+
5382
5453
  def initialize(**args)
5383
5454
  update!(**args)
5384
5455
  end
5385
5456
 
5386
5457
  # Update properties of this object
5387
5458
  def update!(**args)
5388
- @context = args[:context] if args.key?(:context)
5389
5459
  @issuing_authority = args[:issuing_authority] if args.key?(:issuing_authority)
5390
5460
  @name = args[:name] if args.key?(:name)
5461
+ @publisher_namespace = args[:publisher_namespace] if args.key?(:publisher_namespace)
5391
5462
  end
5392
5463
  end
5393
5464
 
@@ -5547,11 +5618,6 @@ module Google
5547
5618
  # @return [String]
5548
5619
  attr_accessor :details
5549
5620
 
5550
- # Contains the date from which the remediation is available.
5551
- # Corresponds to the JSON property `remediationTime`
5552
- # @return [String]
5553
- attr_accessor :remediation_time
5554
-
5555
5621
  # The type of remediation that can be applied.
5556
5622
  # Corresponds to the JSON property `remediationType`
5557
5623
  # @return [String]
@@ -5569,7 +5635,6 @@ module Google
5569
5635
  # Update properties of this object
5570
5636
  def update!(**args)
5571
5637
  @details = args[:details] if args.key?(:details)
5572
- @remediation_time = args[:remediation_time] if args.key?(:remediation_time)
5573
5638
  @remediation_type = args[:remediation_type] if args.key?(:remediation_type)
5574
5639
  @remediation_uri = args[:remediation_uri] if args.key?(:remediation_uri)
5575
5640
  end
@@ -6220,32 +6285,6 @@ module Google
6220
6285
  end
6221
6286
  end
6222
6287
 
6223
- # Contains the vulnerability kinetic information. This information can change as
6224
- # the vulnerability ages and new information becomes available.
6225
- class Threat
6226
- include Google::Apis::Core::Hashable
6227
-
6228
- # Represents a thorough human-readable discussion of the threat.
6229
- # Corresponds to the JSON property `details`
6230
- # @return [String]
6231
- attr_accessor :details
6232
-
6233
- # The type of threat.
6234
- # Corresponds to the JSON property `threatType`
6235
- # @return [String]
6236
- attr_accessor :threat_type
6237
-
6238
- def initialize(**args)
6239
- update!(**args)
6240
- end
6241
-
6242
- # Update properties of this object
6243
- def update!(**args)
6244
- @details = args[:details] if args.key?(:details)
6245
- @threat_type = args[:threat_type] if args.key?(:threat_type)
6246
- end
6247
- end
6248
-
6249
6288
  # Start and end times for a build execution phase. Next ID: 3
6250
6289
  class TimeSpan
6251
6290
  include Google::Apis::Core::Hashable
@@ -6498,6 +6537,18 @@ module Google
6498
6537
  # @return [String]
6499
6538
  attr_accessor :cve
6500
6539
 
6540
+ # Contains information about the impact of this vulnerability, this will change
6541
+ # with time.
6542
+ # Corresponds to the JSON property `impacts`
6543
+ # @return [Array<String>]
6544
+ attr_accessor :impacts
6545
+
6546
+ # Justification provides the justification when the state of the assessment if
6547
+ # NOT_AFFECTED.
6548
+ # Corresponds to the JSON property `justification`
6549
+ # @return [Google::Apis::ContaineranalysisV1alpha1::Justification]
6550
+ attr_accessor :justification
6551
+
6501
6552
  # The VulnerabilityAssessment note from which this VexAssessment was generated.
6502
6553
  # This will be of the form: `projects/[PROJECT_ID]/notes/[NOTE_ID]`.
6503
6554
  # Corresponds to the JSON property `noteName`
@@ -6522,11 +6573,6 @@ module Google
6522
6573
  # @return [String]
6523
6574
  attr_accessor :state
6524
6575
 
6525
- # Contains information about this vulnerability, this will change with time.
6526
- # Corresponds to the JSON property `threats`
6527
- # @return [Array<Google::Apis::ContaineranalysisV1alpha1::Threat>]
6528
- attr_accessor :threats
6529
-
6530
6576
  def initialize(**args)
6531
6577
  update!(**args)
6532
6578
  end
@@ -6534,11 +6580,12 @@ module Google
6534
6580
  # Update properties of this object
6535
6581
  def update!(**args)
6536
6582
  @cve = args[:cve] if args.key?(:cve)
6583
+ @impacts = args[:impacts] if args.key?(:impacts)
6584
+ @justification = args[:justification] if args.key?(:justification)
6537
6585
  @note_name = args[:note_name] if args.key?(:note_name)
6538
6586
  @related_uris = args[:related_uris] if args.key?(:related_uris)
6539
6587
  @remediations = args[:remediations] if args.key?(:remediations)
6540
6588
  @state = args[:state] if args.key?(:state)
6541
- @threats = args[:threats] if args.key?(:threats)
6542
6589
  end
6543
6590
  end
6544
6591
 
@@ -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.43.0"
19
+ GEM_VERSION = "0.45.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
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 = "20230310"
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
 
@@ -598,6 +604,12 @@ module Google
598
604
  include Google::Apis::Core::JsonObjectSupport
599
605
  end
600
606
 
607
+ class Justification
608
+ class Representation < Google::Apis::Core::JsonRepresentation; end
609
+
610
+ include Google::Apis::Core::JsonObjectSupport
611
+ end
612
+
601
613
  class Layer
602
614
  class Representation < Google::Apis::Core::JsonRepresentation; end
603
615
 
@@ -856,12 +868,6 @@ module Google
856
868
  include Google::Apis::Core::JsonObjectSupport
857
869
  end
858
870
 
859
- class Threat
860
- class Representation < Google::Apis::Core::JsonRepresentation; end
861
-
862
- include Google::Apis::Core::JsonObjectSupport
863
- end
864
-
865
871
  class TimeSpan
866
872
  class Representation < Google::Apis::Core::JsonRepresentation; end
867
873
 
@@ -961,6 +967,9 @@ module Google
961
967
  # @private
962
968
  class Representation < Google::Apis::Core::JsonRepresentation
963
969
  property :cve, as: 'cve'
970
+ collection :impacts, as: 'impacts'
971
+ property :justification, as: 'justification', class: Google::Apis::ContaineranalysisV1alpha1::Justification, decorator: Google::Apis::ContaineranalysisV1alpha1::Justification::Representation
972
+
964
973
  property :long_description, as: 'longDescription'
965
974
  collection :related_uris, as: 'relatedUris', class: Google::Apis::ContaineranalysisV1alpha1::Uri, decorator: Google::Apis::ContaineranalysisV1alpha1::Uri::Representation
966
975
 
@@ -968,8 +977,6 @@ module Google
968
977
 
969
978
  property :short_description, as: 'shortDescription'
970
979
  property :state, as: 'state'
971
- collection :threats, as: 'threats', class: Google::Apis::ContaineranalysisV1alpha1::Threat, decorator: Google::Apis::ContaineranalysisV1alpha1::Threat::Representation
972
-
973
980
  end
974
981
  end
975
982
 
@@ -1311,6 +1318,7 @@ module Google
1311
1318
  class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions
1312
1319
  # @private
1313
1320
  class Representation < Google::Apis::Core::JsonRepresentation
1321
+ property :default_logs_bucket_behavior, as: 'defaultLogsBucketBehavior'
1314
1322
  property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
1315
1323
  property :dynamic_substitutions, as: 'dynamicSubstitutions'
1316
1324
  collection :env, as: 'env'
@@ -1954,6 +1962,14 @@ module Google
1954
1962
  end
1955
1963
  end
1956
1964
 
1965
+ class IdentifierHelper
1966
+ # @private
1967
+ class Representation < Google::Apis::Core::JsonRepresentation
1968
+ property :field, as: 'field'
1969
+ property :generic_uri, as: 'genericUri'
1970
+ end
1971
+ end
1972
+
1957
1973
  class InTotoProvenance
1958
1974
  # @private
1959
1975
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1999,6 +2015,14 @@ module Google
1999
2015
  end
2000
2016
  end
2001
2017
 
2018
+ class Justification
2019
+ # @private
2020
+ class Representation < Google::Apis::Core::JsonRepresentation
2021
+ property :details, as: 'details'
2022
+ property :justification_type, as: 'justificationType'
2023
+ end
2024
+ end
2025
+
2002
2026
  class Layer
2003
2027
  # @private
2004
2028
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2290,8 +2314,9 @@ module Google
2290
2314
  class Product
2291
2315
  # @private
2292
2316
  class Representation < Google::Apis::Core::JsonRepresentation
2293
- property :generic_uri, as: 'genericUri'
2294
2317
  property :id, as: 'id'
2318
+ property :identifier_helper, as: 'identifierHelper', class: Google::Apis::ContaineranalysisV1alpha1::IdentifierHelper, decorator: Google::Apis::ContaineranalysisV1alpha1::IdentifierHelper::Representation
2319
+
2295
2320
  property :name, as: 'name'
2296
2321
  end
2297
2322
  end
@@ -2299,9 +2324,9 @@ module Google
2299
2324
  class Publisher
2300
2325
  # @private
2301
2326
  class Representation < Google::Apis::Core::JsonRepresentation
2302
- property :context, as: 'context'
2303
2327
  property :issuing_authority, as: 'issuingAuthority'
2304
2328
  property :name, as: 'name'
2329
+ property :publisher_namespace, as: 'publisherNamespace'
2305
2330
  end
2306
2331
  end
2307
2332
 
@@ -2345,7 +2370,6 @@ module Google
2345
2370
  # @private
2346
2371
  class Representation < Google::Apis::Core::JsonRepresentation
2347
2372
  property :details, as: 'details'
2348
- property :remediation_time, as: 'remediationTime'
2349
2373
  property :remediation_type, as: 'remediationType'
2350
2374
  property :remediation_uri, as: 'remediationUri', class: Google::Apis::ContaineranalysisV1alpha1::Uri, decorator: Google::Apis::ContaineranalysisV1alpha1::Uri::Representation
2351
2375
 
@@ -2527,14 +2551,6 @@ module Google
2527
2551
  end
2528
2552
  end
2529
2553
 
2530
- class Threat
2531
- # @private
2532
- class Representation < Google::Apis::Core::JsonRepresentation
2533
- property :details, as: 'details'
2534
- property :threat_type, as: 'threatType'
2535
- end
2536
- end
2537
-
2538
2554
  class TimeSpan
2539
2555
  # @private
2540
2556
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2607,14 +2623,15 @@ module Google
2607
2623
  # @private
2608
2624
  class Representation < Google::Apis::Core::JsonRepresentation
2609
2625
  property :cve, as: 'cve'
2626
+ collection :impacts, as: 'impacts'
2627
+ property :justification, as: 'justification', class: Google::Apis::ContaineranalysisV1alpha1::Justification, decorator: Google::Apis::ContaineranalysisV1alpha1::Justification::Representation
2628
+
2610
2629
  property :note_name, as: 'noteName'
2611
2630
  collection :related_uris, as: 'relatedUris', class: Google::Apis::ContaineranalysisV1alpha1::Uri, decorator: Google::Apis::ContaineranalysisV1alpha1::Uri::Representation
2612
2631
 
2613
2632
  collection :remediations, as: 'remediations', class: Google::Apis::ContaineranalysisV1alpha1::Remediation, decorator: Google::Apis::ContaineranalysisV1alpha1::Remediation::Representation
2614
2633
 
2615
2634
  property :state, as: 'state'
2616
- collection :threats, as: 'threats', class: Google::Apis::ContaineranalysisV1alpha1::Threat, decorator: Google::Apis::ContaineranalysisV1alpha1::Threat::Representation
2617
-
2618
2635
  end
2619
2636
  end
2620
2637
 
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.43.0
4
+ version: 0.45.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-19 00:00:00.000000000 Z
11
+ date: 2023-03-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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.43.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.45.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: []