google-apis-kmsinventory_v1 0.3.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2d383e569e472d64dd80bf76a10de5600b6776300fb4fce290f46c317f345131
4
- data.tar.gz: 4d9edca3a8b9aa6a997cb0c6f3966778f0f14c58921607b6bdf4288004c083fb
3
+ metadata.gz: 6819aed9369a703eed0fe449022f13d559e7d7cc1a8fec82a867ce0832b03f04
4
+ data.tar.gz: 6aefbe358f979654767550745dd09294dfe7e5c98e7d3564be18739bb58b69c5
5
5
  SHA512:
6
- metadata.gz: e2d4c1c72ad4c11fb8bdad3f8daba51ddd1e2867f512e632fdab64ef5b05057bb99e8b729c4139e888d7eab343a178f0aaa19abe733c2036e10e56c62989fa82
7
- data.tar.gz: c8c85f5068386994147ea2a538dd00c31cdd2f4fe62103182672f137f3fe964fa6ae1674091d23a051ecb3ba916521848a5dfbe22c626ed4b5cd3fe2de9ad0b3
6
+ metadata.gz: 666ad7216679914ef8fd1e00154868927ef4064faf001cc1eb3e3c88bca94f00d7a2dbe1eafda568e14cf6f2b1ef4e4689b2905419716372ec994c39208b861c
7
+ data.tar.gz: 12f12712ca91326333a93e8369432830465d5a68807924247d7e3efb6d7e71f81c9299b98b3485e844fc3e68062998a60629b2a93e0d2f936bac81451f0831aa
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-kmsinventory_v1
2
2
 
3
+ ### v0.4.0 (2023-03-19)
4
+
5
+ * Regenerated from discovery document revision 20230312
6
+
3
7
  ### v0.3.0 (2023-02-15)
4
8
 
5
9
  * Regenerated using generator version 0.12.0
@@ -357,6 +357,12 @@ module Google
357
357
  # @return [String]
358
358
  attr_accessor :destroy_time
359
359
 
360
+ # Output only. The root cause of the most recent external destruction failure.
361
+ # Only present if state is EXTERNAL_DESTRUCTION_FAILED.
362
+ # Corresponds to the JSON property `externalDestructionFailureReason`
363
+ # @return [String]
364
+ attr_accessor :external_destruction_failure_reason
365
+
360
366
  # ExternalProtectionLevelOptions stores a group of additional fields for
361
367
  # configuring a CryptoKeyVersion that are specific to the EXTERNAL protection
362
368
  # level and EXTERNAL_VPC protection levels.
@@ -369,6 +375,12 @@ module Google
369
375
  # @return [String]
370
376
  attr_accessor :generate_time
371
377
 
378
+ # Output only. The root cause of the most recent generation failure. Only
379
+ # present if state is GENERATION_FAILED.
380
+ # Corresponds to the JSON property `generationFailureReason`
381
+ # @return [String]
382
+ attr_accessor :generation_failure_reason
383
+
372
384
  # Output only. The root cause of the most recent import failure. Only present if
373
385
  # state is IMPORT_FAILED.
374
386
  # Corresponds to the JSON property `importFailureReason`
@@ -423,8 +435,10 @@ module Google
423
435
  @create_time = args[:create_time] if args.key?(:create_time)
424
436
  @destroy_event_time = args[:destroy_event_time] if args.key?(:destroy_event_time)
425
437
  @destroy_time = args[:destroy_time] if args.key?(:destroy_time)
438
+ @external_destruction_failure_reason = args[:external_destruction_failure_reason] if args.key?(:external_destruction_failure_reason)
426
439
  @external_protection_level_options = args[:external_protection_level_options] if args.key?(:external_protection_level_options)
427
440
  @generate_time = args[:generate_time] if args.key?(:generate_time)
441
+ @generation_failure_reason = args[:generation_failure_reason] if args.key?(:generation_failure_reason)
428
442
  @import_failure_reason = args[:import_failure_reason] if args.key?(:import_failure_reason)
429
443
  @import_job = args[:import_job] if args.key?(:import_job)
430
444
  @import_time = args[:import_time] if args.key?(:import_time)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module KmsinventoryV1
18
18
  # Version of the google-apis-kmsinventory_v1 gem
19
- GEM_VERSION = "0.3.0"
19
+ GEM_VERSION = "0.4.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 = "20230122"
25
+ REVISION = "20230312"
26
26
  end
27
27
  end
28
28
  end
@@ -156,9 +156,11 @@ module Google
156
156
  property :create_time, as: 'createTime'
157
157
  property :destroy_event_time, as: 'destroyEventTime'
158
158
  property :destroy_time, as: 'destroyTime'
159
+ property :external_destruction_failure_reason, as: 'externalDestructionFailureReason'
159
160
  property :external_protection_level_options, as: 'externalProtectionLevelOptions', class: Google::Apis::KmsinventoryV1::GoogleCloudKmsV1ExternalProtectionLevelOptions, decorator: Google::Apis::KmsinventoryV1::GoogleCloudKmsV1ExternalProtectionLevelOptions::Representation
160
161
 
161
162
  property :generate_time, as: 'generateTime'
163
+ property :generation_failure_reason, as: 'generationFailureReason'
162
164
  property :import_failure_reason, as: 'importFailureReason'
163
165
  property :import_job, as: 'importJob'
164
166
  property :import_time, as: 'importTime'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-kmsinventory_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.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-kmsinventory_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-kmsinventory_v1/v0.3.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-kmsinventory_v1/v0.4.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-kmsinventory_v1
63
63
  post_install_message:
64
64
  rdoc_options: []