google-apis-containeranalysis_v1beta1 0.42.0 → 0.43.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: 7a07b9f2933c45d6c3794a1245a901d305c295f3119b28a1a18ea17674f73b6f
4
- data.tar.gz: 51afb1e08e76fb4271630c78b7560ecc4215b2a34e9948b32a936a10b0e3ed57
3
+ metadata.gz: 12b2735e005d101516f2a7c5cea833c3ca81ebfe2082a80e343487d77e7ba5b6
4
+ data.tar.gz: 18f0362131f4c37abe38ffa0b02d039278d5c92029a7004d68decf66742a7f69
5
5
  SHA512:
6
- metadata.gz: add45b53fac612d1aef1d073ac40e9249128a4ebc2b0ef7787c1dff865836f5b913d276081741b264442de6764bd11e16ec01a3c1d16140725d22dac8ac5edae
7
- data.tar.gz: 3b4e24bd8bd596c71712c7fb756aeb531e59a9914b69579d1d62d469db4c47203a8bc44ed14d2d8ac0ffb1699008a13ecf405bd0be2ab691a4a5c25ac2b322b7
6
+ metadata.gz: 7c68c0350d01efe7cd74a3ea7c128fdc44c2cb87f86360e4a08fcc8343de94d7ff404aaf1fe32173f20df8c5fd68ab755a319433badd70ce5410542dc70a684e
7
+ data.tar.gz: 59fa76699e92385cb86ebb599d3c52f6c28da1731283f581cb973ad1eecfe208f8a39ac881c5da8cae3787a1fac33659787a5811c6341a4a2aa9c53e56b93ff6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-containeranalysis_v1beta1
2
2
 
3
+ ### v0.43.0 (2023-07-23)
4
+
5
+ * Regenerated from discovery document revision 20230717
6
+
3
7
  ### v0.42.0 (2023-07-16)
4
8
 
5
9
  * Regenerated from discovery document revision 20230707
@@ -148,7 +148,8 @@ module Google
148
148
  include Google::Apis::Core::Hashable
149
149
 
150
150
  # Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking
151
- # number for the vulnerability.
151
+ # number for the vulnerability. Deprecated: Use vulnerability_id instead to
152
+ # denote CVEs.
152
153
  # Corresponds to the JSON property `cve`
153
154
  # @return [String]
154
155
  attr_accessor :cve
@@ -193,6 +194,12 @@ module Google
193
194
  # @return [String]
194
195
  attr_accessor :state
195
196
 
197
+ # The vulnerability identifier for this Assessment. Will hold one of common
198
+ # identifiers e.g. CVE, GHSA etc.
199
+ # Corresponds to the JSON property `vulnerabilityId`
200
+ # @return [String]
201
+ attr_accessor :vulnerability_id
202
+
196
203
  def initialize(**args)
197
204
  update!(**args)
198
205
  end
@@ -207,6 +214,7 @@ module Google
207
214
  @remediations = args[:remediations] if args.key?(:remediations)
208
215
  @short_description = args[:short_description] if args.key?(:short_description)
209
216
  @state = args[:state] if args.key?(:state)
217
+ @vulnerability_id = args[:vulnerability_id] if args.key?(:vulnerability_id)
210
218
  end
211
219
  end
212
220
 
@@ -6446,7 +6454,8 @@ module Google
6446
6454
  include Google::Apis::Core::Hashable
6447
6455
 
6448
6456
  # Holds the MITRE standard Common Vulnerabilities and Exposures (CVE) tracking
6449
- # number for the vulnerability.
6457
+ # number for the vulnerability. Deprecated: Use vulnerability_id instead to
6458
+ # denote CVEs.
6450
6459
  # Corresponds to the JSON property `cve`
6451
6460
  # @return [String]
6452
6461
  attr_accessor :cve
@@ -6485,6 +6494,12 @@ module Google
6485
6494
  # @return [String]
6486
6495
  attr_accessor :state
6487
6496
 
6497
+ # The vulnerability identifier for this Assessment. Will hold one of common
6498
+ # identifiers e.g. CVE, GHSA etc.
6499
+ # Corresponds to the JSON property `vulnerabilityId`
6500
+ # @return [String]
6501
+ attr_accessor :vulnerability_id
6502
+
6488
6503
  def initialize(**args)
6489
6504
  update!(**args)
6490
6505
  end
@@ -6498,6 +6513,7 @@ module Google
6498
6513
  @related_uris = args[:related_uris] if args.key?(:related_uris)
6499
6514
  @remediations = args[:remediations] if args.key?(:remediations)
6500
6515
  @state = args[:state] if args.key?(:state)
6516
+ @vulnerability_id = args[:vulnerability_id] if args.key?(:vulnerability_id)
6501
6517
  end
6502
6518
  end
6503
6519
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContaineranalysisV1beta1
18
18
  # Version of the google-apis-containeranalysis_v1beta1 gem
19
- GEM_VERSION = "0.42.0"
19
+ GEM_VERSION = "0.43.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 = "20230707"
25
+ REVISION = "20230717"
26
26
  end
27
27
  end
28
28
  end
@@ -1022,6 +1022,7 @@ module Google
1022
1022
 
1023
1023
  property :short_description, as: 'shortDescription'
1024
1024
  property :state, as: 'state'
1025
+ property :vulnerability_id, as: 'vulnerabilityId'
1025
1026
  end
1026
1027
  end
1027
1028
 
@@ -2668,6 +2669,7 @@ module Google
2668
2669
  collection :remediations, as: 'remediations', class: Google::Apis::ContaineranalysisV1beta1::Remediation, decorator: Google::Apis::ContaineranalysisV1beta1::Remediation::Representation
2669
2670
 
2670
2671
  property :state, as: 'state'
2672
+ property :vulnerability_id, as: 'vulnerabilityId'
2671
2673
  end
2672
2674
  end
2673
2675
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-containeranalysis_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.42.0
4
+ version: 0.43.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-07-16 00:00:00.000000000 Z
11
+ date: 2023-07-23 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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.42.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1beta1/v0.43.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []