google-apis-cloudkms_v1 0.24.0 → 0.27.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: ee86aa2a4701a8e8131f2478b65b434e22fb004ccea5cbb1fb109e247f951b11
4
- data.tar.gz: da6d5285b3f3f2b698c118c248e4a8ba0db47fa1c9437b967dc7c4fc349f706e
3
+ metadata.gz: 1fc4823a7298034d62e8f4554ceed8198643d3c5b34d32aa0ce5b3bb6fe2fdc3
4
+ data.tar.gz: 8ff5b49d0b83a090b1037ff0dc29acb43ac67596f932f84e23a97f5331b8f856
5
5
  SHA512:
6
- metadata.gz: 69e37d81f5a902ab342282feb816cbb6c479d93b63122239998dfeaa72c97901f4996375defa96fed091cb6da855a2e5b40aee38abb05b409ad66bfd45d2480e
7
- data.tar.gz: 9016e6225d3f85868b4ef469a47afccaec7e1160494347c2c825e4e862e03d23712b7d0dec80df27119dac6dcb14a1a10fb6c5152b06fff0e67858f32666fdc8
6
+ metadata.gz: 7d64c3543f10b84b8483b9adf0b734e1d138078bfd2e6a6002a69c63e6c24e771d8a6adff1d1207ea5269608881c9c24ef9e3de3c9c47b53171d061d747a8f96
7
+ data.tar.gz: 792ae8109be1002cb293d1c47cfd07921df59673b6b799c4c8605b2109414ec22862bf3b87d03c3691a89bf715ed66219ddbeb469dcbb7c04f5e64f1fba5f81b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-cloudkms_v1
2
2
 
3
+ ### v0.27.0 (2022-06-24)
4
+
5
+ * Regenerated from discovery document revision 20220617
6
+ * Regenerated using generator version 0.7.0
7
+
8
+ ### v0.26.0 (2022-06-17)
9
+
10
+ * Regenerated using generator version 0.6.0
11
+
12
+ ### v0.25.0 (2022-06-04)
13
+
14
+ * Regenerated using generator version 0.5.0
15
+
3
16
  ### v0.24.0 (2022-05-20)
4
17
 
5
18
  * Regenerated from discovery document revision 20220513
@@ -1271,8 +1271,9 @@ module Google
1271
1271
  # @return [String]
1272
1272
  attr_accessor :import_job
1273
1273
 
1274
- # Wrapped key material produced with RSA_OAEP_3072_SHA1_AES_256 or
1275
- # RSA_OAEP_4096_SHA1_AES_256. This field contains the concatenation of two
1274
+ # Optional. Wrapped key material produced with RSA_OAEP_3072_SHA1_AES_256 or
1275
+ # RSA_OAEP_4096_SHA1_AES_256 or RSA_OAEP_3072_SHA256_AES_256 or
1276
+ # RSA_OAEP_4096_SHA256_AES_256. This field contains the concatenation of two
1276
1277
  # wrapped keys: 1. An ephemeral AES-256 wrapping key wrapped with the public_key
1277
1278
  # using RSAES-OAEP with SHA-1/SHA-256, MGF1 with SHA-1/SHA-256, and an empty
1278
1279
  # label. 2. The key to be imported, wrapped with the ephemeral AES-256 key using
@@ -1286,6 +1287,25 @@ module Google
1286
1287
  # @return [String]
1287
1288
  attr_accessor :rsa_aes_wrapped_key
1288
1289
 
1290
+ # Optional. Wrapped key material produced with (RSA_OAEP_3072_SHA1_AES_256 or
1291
+ # RSA_OAEP_4096_SHA1_AES_256 or RSA_OAEP_3072_SHA256_AES_256 or
1292
+ # RSA_OAEP_4096_SHA256_AES_256) for which, this field contains the concatenation
1293
+ # of: 1. An ephemeral AES-256 wrapping key wrapped with the public_key using
1294
+ # RSAES-OAEP with SHA-1/SHA-256, MGF1 with SHA-1/SHA-256, and an empty label. 2.
1295
+ # The key to be imported, wrapped with the ephemeral AES-256 key using AES-KWP (
1296
+ # RFC 5649), or (RSA_OAEP_3072_SHA256 or RSA_OAEP_4096_SHA256) for which, this
1297
+ # field contains the key to be imported, wrapped with the public_key using RSAES-
1298
+ # OAEP with SHA-256, MGF1 with SHA-256, and an empty label. If importing
1299
+ # symmetric key material, it is expected that the unwrapped key contains plain
1300
+ # bytes. If importing asymmetric key material, it is expected that the unwrapped
1301
+ # key is in PKCS#8-encoded DER format (the PrivateKeyInfo structure from RFC
1302
+ # 5208). This format is the same as the format produced by PKCS#11 mechanism
1303
+ # CKM_RSA_AES_KEY_WRAP.
1304
+ # Corresponds to the JSON property `wrappedKey`
1305
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
1306
+ # @return [String]
1307
+ attr_accessor :wrapped_key
1308
+
1289
1309
  def initialize(**args)
1290
1310
  update!(**args)
1291
1311
  end
@@ -1296,6 +1316,7 @@ module Google
1296
1316
  @crypto_key_version = args[:crypto_key_version] if args.key?(:crypto_key_version)
1297
1317
  @import_job = args[:import_job] if args.key?(:import_job)
1298
1318
  @rsa_aes_wrapped_key = args[:rsa_aes_wrapped_key] if args.key?(:rsa_aes_wrapped_key)
1319
+ @wrapped_key = args[:wrapped_key] if args.key?(:wrapped_key)
1299
1320
  end
1300
1321
  end
1301
1322
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudkmsV1
18
18
  # Version of the google-apis-cloudkms_v1 gem
19
- GEM_VERSION = "0.24.0"
19
+ GEM_VERSION = "0.27.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.1"
22
+ GENERATOR_VERSION = "0.7.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220513"
25
+ REVISION = "20220617"
26
26
  end
27
27
  end
28
28
  end
@@ -560,6 +560,7 @@ module Google
560
560
  property :crypto_key_version, as: 'cryptoKeyVersion'
561
561
  property :import_job, as: 'importJob'
562
562
  property :rsa_aes_wrapped_key, :base64 => true, as: 'rsaAesWrappedKey'
563
+ property :wrapped_key, :base64 => true, as: 'wrappedKey'
563
564
  end
564
565
  end
565
566
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudkms_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.0
4
+ version: 0.27.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: 2022-05-23 00:00:00.000000000 Z
11
+ date: 2022-06-27 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.4'
19
+ version: '0.6'
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.4'
29
+ version: '0.6'
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-cloudkms_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudkms_v1/v0.24.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudkms_v1/v0.27.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudkms_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.5
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Key Management Service (KMS) API V1