google-apis-cloudkms_v1 0.28.0 → 0.29.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/google/apis/cloudkms_v1/classes.rb +19 -26
- data/lib/google/apis/cloudkms_v1/gem_version.rb +3 -3
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 65bb4b40b92a926b47f1c621348e61dc6e31c09267424e96aafabc3918a9e705
|
|
4
|
+
data.tar.gz: dd1d1984cd7ae009f07516a4f8046e16fc3d31d0df96b0b4636edcfc331c3491
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ea37d992d6c615dd360671fd75d7982ddf6008ba2c7c52ea8d7cc2be527c44f5545a49dd6bdfdbf0d8c97ccb4d54c940d3fcc87950d082d95af855d5715545aa
|
|
7
|
+
data.tar.gz: bf6e18668c1c5d61f1c1bd6c1baab608c29e5824ab6493c97c31ca00769c49d4efd4a42624e23ef2bb57ce495bd63555813ae7eb803cf0d7287739b34517d0af
|
data/CHANGELOG.md
CHANGED
|
@@ -1271,36 +1271,29 @@ module Google
|
|
|
1271
1271
|
# @return [String]
|
|
1272
1272
|
attr_accessor :import_job
|
|
1273
1273
|
|
|
1274
|
-
# Optional.
|
|
1275
|
-
#
|
|
1276
|
-
#
|
|
1277
|
-
# wrapped keys: 1. An ephemeral AES-256 wrapping key wrapped with the public_key
|
|
1278
|
-
# using RSAES-OAEP with SHA-1/SHA-256, MGF1 with SHA-1/SHA-256, and an empty
|
|
1279
|
-
# label. 2. The key to be imported, wrapped with the ephemeral AES-256 key using
|
|
1280
|
-
# AES-KWP (RFC 5649). If importing symmetric key material, it is expected that
|
|
1281
|
-
# the unwrapped key contains plain bytes. If importing asymmetric key material,
|
|
1282
|
-
# it is expected that the unwrapped key is in PKCS#8-encoded DER format (the
|
|
1283
|
-
# PrivateKeyInfo structure from RFC 5208). This format is the same as the format
|
|
1284
|
-
# produced by PKCS#11 mechanism CKM_RSA_AES_KEY_WRAP.
|
|
1274
|
+
# Optional. This field has the same meaning as wrapped_key. Prefer to use that
|
|
1275
|
+
# field in new work. Either that field or this field (but not both) must be
|
|
1276
|
+
# specified.
|
|
1285
1277
|
# Corresponds to the JSON property `rsaAesWrappedKey`
|
|
1286
1278
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
|
1287
1279
|
# @return [String]
|
|
1288
1280
|
attr_accessor :rsa_aes_wrapped_key
|
|
1289
1281
|
|
|
1290
|
-
# Optional.
|
|
1291
|
-
#
|
|
1292
|
-
#
|
|
1293
|
-
#
|
|
1294
|
-
#
|
|
1295
|
-
#
|
|
1296
|
-
#
|
|
1297
|
-
#
|
|
1298
|
-
# OAEP with SHA-256, MGF1 with SHA-
|
|
1299
|
-
#
|
|
1300
|
-
#
|
|
1301
|
-
#
|
|
1302
|
-
#
|
|
1303
|
-
#
|
|
1282
|
+
# Optional. The wrapped key material to import. Before wrapping, key material
|
|
1283
|
+
# must be formatted. If importing symmetric key material, the expected key
|
|
1284
|
+
# material format is plain bytes. If importing asymmetric key material, the
|
|
1285
|
+
# expected key material format is PKCS#8-encoded DER (the PrivateKeyInfo
|
|
1286
|
+
# structure from RFC 5208). When wrapping with import methods (
|
|
1287
|
+
# RSA_OAEP_3072_SHA1_AES_256 or RSA_OAEP_4096_SHA1_AES_256 or
|
|
1288
|
+
# RSA_OAEP_3072_SHA256_AES_256 or RSA_OAEP_4096_SHA256_AES_256), this field must
|
|
1289
|
+
# contain the concatenation of: 1. An ephemeral AES-256 wrapping key wrapped
|
|
1290
|
+
# with the public_key using RSAES-OAEP with SHA-1/SHA-256, MGF1 with SHA-1/SHA-
|
|
1291
|
+
# 256, and an empty label. 2. The formatted key to be imported, wrapped with the
|
|
1292
|
+
# ephemeral AES-256 key using AES-KWP (RFC 5649). This format is the same as the
|
|
1293
|
+
# format produced by PKCS#11 mechanism CKM_RSA_AES_KEY_WRAP. When wrapping with
|
|
1294
|
+
# import methods (RSA_OAEP_3072_SHA256 or RSA_OAEP_4096_SHA256), this field must
|
|
1295
|
+
# contain the formatted key to be imported, wrapped with the public_key using
|
|
1296
|
+
# RSAES-OAEP with SHA-256, MGF1 with SHA-256, and an empty label.
|
|
1304
1297
|
# Corresponds to the JSON property `wrappedKey`
|
|
1305
1298
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
|
1306
1299
|
# @return [String]
|
|
@@ -1543,7 +1536,7 @@ module Google
|
|
|
1543
1536
|
end
|
|
1544
1537
|
end
|
|
1545
1538
|
|
|
1546
|
-
# Response message for
|
|
1539
|
+
# Response message for EkmService.ListEkmConnections.
|
|
1547
1540
|
class ListEkmConnectionsResponse
|
|
1548
1541
|
include Google::Apis::Core::Hashable
|
|
1549
1542
|
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.29.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.9.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220701"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
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.
|
|
4
|
+
version: 0.29.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-07-
|
|
11
|
+
date: 2022-07-11 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-cloudkms_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudkms_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudkms_v1/v0.29.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: []
|