google-apis-containeranalysis_v1 0.35.0 → 0.36.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: c753e42e9b579043f02b00e063add5cf7936b2dc63e0a56d69871e74a349a869
4
- data.tar.gz: 38a7b999643c29974cfbf841fda0b5e9fe134bcf172f91a5cc937fbe25603ca0
3
+ metadata.gz: efa76aa563e14153f4bbef1084dca980c5d9db761dfe60b39655f2ffdda9c197
4
+ data.tar.gz: 31190ed35feb53d2643da79d084d5115ac349e265d9ffafafa80987ce285cf39
5
5
  SHA512:
6
- metadata.gz: a6204ab938774d57dc0a18ce2a8054491f4f79bd11fb4532862a3e61895708a1fce5c361cd2356619dd93fd30fe2ff2f452e0494a52df798f4d29492763266c2
7
- data.tar.gz: 6eb6bf5644541f858d49486650bf15446d8cd1ec704ada6661a07fe767185304ef3a1b5892d94e3054b75c96b4e3630c5389aee72d8bfbd6ae65c3c837999561
6
+ metadata.gz: 3e578890c7f4168df4060c208805c543a6af84ad9fa9c6eedd6213dec28996c6e734478a5ee0ee60ff88c9e450b158144591c79562942b0f45c694270888ba59
7
+ data.tar.gz: df4dd53ee079f741c98765c980c7a521fcfb1ab249acf6378c0ea5aa138653eb73c5960bbb91546b66907b8562b04200d5e5ef25a3c5fcd33a1b20d91768643f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-containeranalysis_v1
2
2
 
3
+ ### v0.36.0 (2023-07-16)
4
+
5
+ * Regenerated from discovery document revision 20230707
6
+
3
7
  ### v0.35.0 (2023-05-28)
4
8
 
5
9
  * Regenerated from discovery document revision 20230519
@@ -3123,6 +3123,11 @@ module Google
3123
3123
  # @return [String]
3124
3124
  attr_accessor :last_scan_time
3125
3125
 
3126
+ # The status of an SBOM generation.
3127
+ # Corresponds to the JSON property `sbomStatus`
3128
+ # @return [Google::Apis::ContaineranalysisV1::SbomStatus]
3129
+ attr_accessor :sbom_status
3130
+
3126
3131
  def initialize(**args)
3127
3132
  update!(**args)
3128
3133
  end
@@ -3137,6 +3142,7 @@ module Google
3137
3142
  @continuous_analysis = args[:continuous_analysis] if args.key?(:continuous_analysis)
3138
3143
  @cpe = args[:cpe] if args.key?(:cpe)
3139
3144
  @last_scan_time = args[:last_scan_time] if args.key?(:last_scan_time)
3145
+ @sbom_status = args[:sbom_status] if args.key?(:sbom_status)
3140
3146
  end
3141
3147
  end
3142
3148
 
@@ -5261,6 +5267,32 @@ module Google
5261
5267
  end
5262
5268
  end
5263
5269
 
5270
+ # The status of an SBOM generation.
5271
+ class SbomStatus
5272
+ include Google::Apis::Core::Hashable
5273
+
5274
+ # If there was an error generating an SBOM, this will indicate what that error
5275
+ # was.
5276
+ # Corresponds to the JSON property `error`
5277
+ # @return [String]
5278
+ attr_accessor :error
5279
+
5280
+ # The progress of the SBOM generation.
5281
+ # Corresponds to the JSON property `sbomState`
5282
+ # @return [String]
5283
+ attr_accessor :sbom_state
5284
+
5285
+ def initialize(**args)
5286
+ update!(**args)
5287
+ end
5288
+
5289
+ # Update properties of this object
5290
+ def update!(**args)
5291
+ @error = args[:error] if args.key?(:error)
5292
+ @sbom_state = args[:sbom_state] if args.key?(:sbom_state)
5293
+ end
5294
+ end
5295
+
5264
5296
  # The actual payload that contains the SBOM Reference data. The payload follows
5265
5297
  # the intoto statement specification. See https://github.com/in-toto/attestation/
5266
5298
  # blob/main/spec/v1.0/statement.md for more details.
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContaineranalysisV1
18
18
  # Version of the google-apis-containeranalysis_v1 gem
19
- GEM_VERSION = "0.35.0"
19
+ GEM_VERSION = "0.36.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 = "20230519"
25
+ REVISION = "20230707"
26
26
  end
27
27
  end
28
28
  end
@@ -754,6 +754,12 @@ module Google
754
754
  include Google::Apis::Core::JsonObjectSupport
755
755
  end
756
756
 
757
+ class SbomStatus
758
+ class Representation < Google::Apis::Core::JsonRepresentation; end
759
+
760
+ include Google::Apis::Core::JsonObjectSupport
761
+ end
762
+
757
763
  class SbomReferenceIntotoPayload
758
764
  class Representation < Google::Apis::Core::JsonRepresentation; end
759
765
 
@@ -1715,6 +1721,8 @@ module Google
1715
1721
  property :continuous_analysis, as: 'continuousAnalysis'
1716
1722
  property :cpe, as: 'cpe'
1717
1723
  property :last_scan_time, as: 'lastScanTime'
1724
+ property :sbom_status, as: 'sbomStatus', class: Google::Apis::ContaineranalysisV1::SbomStatus, decorator: Google::Apis::ContaineranalysisV1::SbomStatus::Representation
1725
+
1718
1726
  end
1719
1727
  end
1720
1728
 
@@ -2300,6 +2308,14 @@ module Google
2300
2308
  end
2301
2309
  end
2302
2310
 
2311
+ class SbomStatus
2312
+ # @private
2313
+ class Representation < Google::Apis::Core::JsonRepresentation
2314
+ property :error, as: 'error'
2315
+ property :sbom_state, as: 'sbomState'
2316
+ end
2317
+ end
2318
+
2303
2319
  class SbomReferenceIntotoPayload
2304
2320
  # @private
2305
2321
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-containeranalysis_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.35.0
4
+ version: 0.36.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-05-28 00:00:00.000000000 Z
11
+ date: 2023-07-16 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.35.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.36.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1
63
63
  post_install_message:
64
64
  rdoc_options: []