google-apis-cloudkms_v1 0.14.0 → 0.18.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 +18 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/cloudkms_v1/classes.rb +230 -14
- data/lib/google/apis/cloudkms_v1/gem_version.rb +3 -3
- data/lib/google/apis/cloudkms_v1/representations.rb +73 -0
- data/lib/google/apis/cloudkms_v1/service.rb +275 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f9e7a9bf628a433836ffe99b2de43f8496acf463f64fd5673bb50000c4c4289d
|
4
|
+
data.tar.gz: c0638848dd8f3d12809d0371089f2f1dce15f637df007a6e97bb833805fa9083
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3675f97c439089f350e4aec9781406718a04ee2c4c824d1428846b170f7920a13f5ff1792a2bef6fd5541862ad7aed042fdd1065de915935884b98d9bee925c4
|
7
|
+
data.tar.gz: dd18ff0ef0d7259b5f95564e45a3afc6e100156f027dfc2232034ab937c35e798abdfa7a93ade6d4305051514c15b55ca234af297b4763cc5f87e3d34d941e01
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,23 @@
|
|
1
1
|
# Release history for google-apis-cloudkms_v1
|
2
2
|
|
3
|
+
### v0.18.0 (2022-02-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220208
|
6
|
+
|
7
|
+
### v0.17.0 (2022-01-28)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220122
|
10
|
+
* Regenerated using generator version 0.4.1
|
11
|
+
|
12
|
+
### v0.16.0 (2022-01-08)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20220104
|
15
|
+
* Unspecified changes
|
16
|
+
|
17
|
+
### v0.15.0 (2021-12-08)
|
18
|
+
|
19
|
+
* Regenerated from discovery document revision 20211130
|
20
|
+
|
3
21
|
### v0.14.0 (2021-11-13)
|
4
22
|
|
5
23
|
* Regenerated from discovery document revision 20211105
|
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/cloudkms_v1"
|
|
51
51
|
client = Google::Apis::CloudkmsV1::CloudKMSService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -119,9 +119,8 @@ module Google
|
|
119
119
|
class AsymmetricSignRequest
|
120
120
|
include Google::Apis::Core::Hashable
|
121
121
|
|
122
|
-
# Optional.
|
123
|
-
#
|
124
|
-
# applied to the digest directly and then encrypted.
|
122
|
+
# Optional. The data to sign. It can't be supplied if AsymmetricSignRequest.
|
123
|
+
# digest is supplied.
|
125
124
|
# Corresponds to the JSON property `data`
|
126
125
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
127
126
|
# @return [String]
|
@@ -391,6 +390,82 @@ module Google
|
|
391
390
|
end
|
392
391
|
end
|
393
392
|
|
393
|
+
# A Certificate represents an X.509 certificate used to authenticate HTTPS
|
394
|
+
# connections to EKM replicas.
|
395
|
+
class Certificate
|
396
|
+
include Google::Apis::Core::Hashable
|
397
|
+
|
398
|
+
# Output only. The issuer distinguished name in RFC 2253 format. Only present if
|
399
|
+
# parsed is true.
|
400
|
+
# Corresponds to the JSON property `issuer`
|
401
|
+
# @return [String]
|
402
|
+
attr_accessor :issuer
|
403
|
+
|
404
|
+
# Output only. The certificate is not valid after this time. Only present if
|
405
|
+
# parsed is true.
|
406
|
+
# Corresponds to the JSON property `notAfterTime`
|
407
|
+
# @return [String]
|
408
|
+
attr_accessor :not_after_time
|
409
|
+
|
410
|
+
# Output only. The certificate is not valid before this time. Only present if
|
411
|
+
# parsed is true.
|
412
|
+
# Corresponds to the JSON property `notBeforeTime`
|
413
|
+
# @return [String]
|
414
|
+
attr_accessor :not_before_time
|
415
|
+
|
416
|
+
# Output only. True if the certificate was parsed successfully.
|
417
|
+
# Corresponds to the JSON property `parsed`
|
418
|
+
# @return [Boolean]
|
419
|
+
attr_accessor :parsed
|
420
|
+
alias_method :parsed?, :parsed
|
421
|
+
|
422
|
+
# Required. The raw certificate bytes in DER format.
|
423
|
+
# Corresponds to the JSON property `rawDer`
|
424
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
425
|
+
# @return [String]
|
426
|
+
attr_accessor :raw_der
|
427
|
+
|
428
|
+
# Output only. The certificate serial number as a hex string. Only present if
|
429
|
+
# parsed is true.
|
430
|
+
# Corresponds to the JSON property `serialNumber`
|
431
|
+
# @return [String]
|
432
|
+
attr_accessor :serial_number
|
433
|
+
|
434
|
+
# Output only. The SHA-256 certificate fingerprint as a hex string. Only present
|
435
|
+
# if parsed is true.
|
436
|
+
# Corresponds to the JSON property `sha256Fingerprint`
|
437
|
+
# @return [String]
|
438
|
+
attr_accessor :sha256_fingerprint
|
439
|
+
|
440
|
+
# Output only. The subject distinguished name in RFC 2253 format. Only present
|
441
|
+
# if parsed is true.
|
442
|
+
# Corresponds to the JSON property `subject`
|
443
|
+
# @return [String]
|
444
|
+
attr_accessor :subject
|
445
|
+
|
446
|
+
# Output only. The subject Alternative DNS names. Only present if parsed is true.
|
447
|
+
# Corresponds to the JSON property `subjectAlternativeDnsNames`
|
448
|
+
# @return [Array<String>]
|
449
|
+
attr_accessor :subject_alternative_dns_names
|
450
|
+
|
451
|
+
def initialize(**args)
|
452
|
+
update!(**args)
|
453
|
+
end
|
454
|
+
|
455
|
+
# Update properties of this object
|
456
|
+
def update!(**args)
|
457
|
+
@issuer = args[:issuer] if args.key?(:issuer)
|
458
|
+
@not_after_time = args[:not_after_time] if args.key?(:not_after_time)
|
459
|
+
@not_before_time = args[:not_before_time] if args.key?(:not_before_time)
|
460
|
+
@parsed = args[:parsed] if args.key?(:parsed)
|
461
|
+
@raw_der = args[:raw_der] if args.key?(:raw_der)
|
462
|
+
@serial_number = args[:serial_number] if args.key?(:serial_number)
|
463
|
+
@sha256_fingerprint = args[:sha256_fingerprint] if args.key?(:sha256_fingerprint)
|
464
|
+
@subject = args[:subject] if args.key?(:subject)
|
465
|
+
@subject_alternative_dns_names = args[:subject_alternative_dns_names] if args.key?(:subject_alternative_dns_names)
|
466
|
+
end
|
467
|
+
end
|
468
|
+
|
394
469
|
# Certificate chains needed to verify the attestation. Certificates in chains
|
395
470
|
# are PEM-encoded and are ordered based on https://tools.ietf.org/html/rfc5246#
|
396
471
|
# section-7.4.2.
|
@@ -435,6 +510,16 @@ module Google
|
|
435
510
|
# @return [String]
|
436
511
|
attr_accessor :create_time
|
437
512
|
|
513
|
+
# Immutable. The resource name of the backend environment where the key material
|
514
|
+
# for all CryptoKeyVersions associated with this CryptoKey reside and where all
|
515
|
+
# related cryptographic operations are performed. Only applicable if
|
516
|
+
# CryptoKeyVersions have a ProtectionLevel of EXTERNAL_VPC, with the resource
|
517
|
+
# name in the format `projects/*/locations/*/ekmConnections/*`. Note, this list
|
518
|
+
# is non-exhaustive and may apply to additional ProtectionLevels in the future.
|
519
|
+
# Corresponds to the JSON property `cryptoKeyBackend`
|
520
|
+
# @return [String]
|
521
|
+
attr_accessor :crypto_key_backend
|
522
|
+
|
438
523
|
# Immutable. The period of time that versions of this key spend in the
|
439
524
|
# DESTROY_SCHEDULED state before transitioning to DESTROYED. If not specified at
|
440
525
|
# creation time, the default duration is 24 hours.
|
@@ -508,6 +593,7 @@ module Google
|
|
508
593
|
# Update properties of this object
|
509
594
|
def update!(**args)
|
510
595
|
@create_time = args[:create_time] if args.key?(:create_time)
|
596
|
+
@crypto_key_backend = args[:crypto_key_backend] if args.key?(:crypto_key_backend)
|
511
597
|
@destroy_scheduled_duration = args[:destroy_scheduled_duration] if args.key?(:destroy_scheduled_duration)
|
512
598
|
@import_only = args[:import_only] if args.key?(:import_only)
|
513
599
|
@labels = args[:labels] if args.key?(:labels)
|
@@ -560,7 +646,7 @@ module Google
|
|
560
646
|
|
561
647
|
# ExternalProtectionLevelOptions stores a group of additional fields for
|
562
648
|
# configuring a CryptoKeyVersion that are specific to the EXTERNAL protection
|
563
|
-
# level.
|
649
|
+
# level and EXTERNAL_VPC protection levels.
|
564
650
|
# Corresponds to the JSON property `externalProtectionLevelOptions`
|
565
651
|
# @return [Google::Apis::CloudkmsV1::ExternalProtectionLevelOptions]
|
566
652
|
attr_accessor :external_protection_level_options
|
@@ -824,6 +910,51 @@ module Google
|
|
824
910
|
end
|
825
911
|
end
|
826
912
|
|
913
|
+
# An EkmConnection represents an individual EKM connection. It can be used for
|
914
|
+
# creating CryptoKeys and CryptoKeyVersions with a ProtectionLevel of
|
915
|
+
# EXTERNAL_VPC, as well as performing cryptographic operations using keys
|
916
|
+
# created within the EkmConnection.
|
917
|
+
class EkmConnection
|
918
|
+
include Google::Apis::Core::Hashable
|
919
|
+
|
920
|
+
# Output only. The time at which the EkmConnection was created.
|
921
|
+
# Corresponds to the JSON property `createTime`
|
922
|
+
# @return [String]
|
923
|
+
attr_accessor :create_time
|
924
|
+
|
925
|
+
# This checksum is computed by the server based on the value of other fields,
|
926
|
+
# and may be sent on update requests to ensure the client has an up-to-date
|
927
|
+
# value before proceeding.
|
928
|
+
# Corresponds to the JSON property `etag`
|
929
|
+
# @return [String]
|
930
|
+
attr_accessor :etag
|
931
|
+
|
932
|
+
# Output only. The resource name for the EkmConnection in the format `projects/*/
|
933
|
+
# locations/*/ekmConnections/*`.
|
934
|
+
# Corresponds to the JSON property `name`
|
935
|
+
# @return [String]
|
936
|
+
attr_accessor :name
|
937
|
+
|
938
|
+
# A list of ServiceResolvers where the EKM can be reached. There should be one
|
939
|
+
# ServiceResolver per EKM replica. Currently, only a single ServiceResolver is
|
940
|
+
# supported.
|
941
|
+
# Corresponds to the JSON property `serviceResolvers`
|
942
|
+
# @return [Array<Google::Apis::CloudkmsV1::ServiceResolver>]
|
943
|
+
attr_accessor :service_resolvers
|
944
|
+
|
945
|
+
def initialize(**args)
|
946
|
+
update!(**args)
|
947
|
+
end
|
948
|
+
|
949
|
+
# Update properties of this object
|
950
|
+
def update!(**args)
|
951
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
952
|
+
@etag = args[:etag] if args.key?(:etag)
|
953
|
+
@name = args[:name] if args.key?(:name)
|
954
|
+
@service_resolvers = args[:service_resolvers] if args.key?(:service_resolvers)
|
955
|
+
end
|
956
|
+
end
|
957
|
+
|
827
958
|
# Request message for KeyManagementService.Encrypt.
|
828
959
|
class EncryptRequest
|
829
960
|
include Google::Apis::Core::Hashable
|
@@ -1022,10 +1153,17 @@ module Google
|
|
1022
1153
|
|
1023
1154
|
# ExternalProtectionLevelOptions stores a group of additional fields for
|
1024
1155
|
# configuring a CryptoKeyVersion that are specific to the EXTERNAL protection
|
1025
|
-
# level.
|
1156
|
+
# level and EXTERNAL_VPC protection levels.
|
1026
1157
|
class ExternalProtectionLevelOptions
|
1027
1158
|
include Google::Apis::Core::Hashable
|
1028
1159
|
|
1160
|
+
# The path to the external key material on the EKM when using EkmConnection e.g.,
|
1161
|
+
# "v0/my/key". Set this field instead of external_key_uri when using an
|
1162
|
+
# EkmConnection.
|
1163
|
+
# Corresponds to the JSON property `ekmConnectionKeyPath`
|
1164
|
+
# @return [String]
|
1165
|
+
attr_accessor :ekm_connection_key_path
|
1166
|
+
|
1029
1167
|
# The URI for an external resource that this CryptoKeyVersion represents.
|
1030
1168
|
# Corresponds to the JSON property `externalKeyUri`
|
1031
1169
|
# @return [String]
|
@@ -1037,6 +1175,7 @@ module Google
|
|
1037
1175
|
|
1038
1176
|
# Update properties of this object
|
1039
1177
|
def update!(**args)
|
1178
|
+
@ekm_connection_key_path = args[:ekm_connection_key_path] if args.key?(:ekm_connection_key_path)
|
1040
1179
|
@external_key_uri = args[:external_key_uri] if args.key?(:external_key_uri)
|
1041
1180
|
end
|
1042
1181
|
end
|
@@ -1051,8 +1190,8 @@ module Google
|
|
1051
1190
|
# @return [Fixnum]
|
1052
1191
|
attr_accessor :length_bytes
|
1053
1192
|
|
1054
|
-
# The ProtectionLevel to use when generating the random data.
|
1055
|
-
#
|
1193
|
+
# The ProtectionLevel to use when generating the random data. Currently, only
|
1194
|
+
# HSM protection level is supported.
|
1056
1195
|
# Corresponds to the JSON property `protectionLevel`
|
1057
1196
|
# @return [String]
|
1058
1197
|
attr_accessor :protection_level
|
@@ -1134,13 +1273,13 @@ module Google
|
|
1134
1273
|
# Wrapped key material produced with RSA_OAEP_3072_SHA1_AES_256 or
|
1135
1274
|
# RSA_OAEP_4096_SHA1_AES_256. This field contains the concatenation of two
|
1136
1275
|
# wrapped keys: 1. An ephemeral AES-256 wrapping key wrapped with the public_key
|
1137
|
-
# using RSAES-OAEP with SHA-1, MGF1 with SHA-1, and an empty
|
1138
|
-
# to be imported, wrapped with the ephemeral AES-256 key using
|
1139
|
-
# . If importing symmetric key material, it is expected that
|
1140
|
-
# contains plain bytes. If importing asymmetric key material,
|
1141
|
-
# that the unwrapped key is in PKCS#8-encoded DER format (the
|
1142
|
-
# structure from RFC 5208). This format is the same as the format
|
1143
|
-
# PKCS#11 mechanism CKM_RSA_AES_KEY_WRAP.
|
1276
|
+
# using RSAES-OAEP with SHA-1/SHA-256, MGF1 with SHA-1/SHA-256, and an empty
|
1277
|
+
# label. 2. The key to be imported, wrapped with the ephemeral AES-256 key using
|
1278
|
+
# AES-KWP (RFC 5649). If importing symmetric key material, it is expected that
|
1279
|
+
# the unwrapped key contains plain bytes. If importing asymmetric key material,
|
1280
|
+
# it is expected that the unwrapped key is in PKCS#8-encoded DER format (the
|
1281
|
+
# PrivateKeyInfo structure from RFC 5208). This format is the same as the format
|
1282
|
+
# produced by PKCS#11 mechanism CKM_RSA_AES_KEY_WRAP.
|
1144
1283
|
# Corresponds to the JSON property `rsaAesWrappedKey`
|
1145
1284
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
1146
1285
|
# @return [String]
|
@@ -1382,6 +1521,38 @@ module Google
|
|
1382
1521
|
end
|
1383
1522
|
end
|
1384
1523
|
|
1524
|
+
# Response message for KeyManagementService.ListEkmConnections.
|
1525
|
+
class ListEkmConnectionsResponse
|
1526
|
+
include Google::Apis::Core::Hashable
|
1527
|
+
|
1528
|
+
# The list of EkmConnections.
|
1529
|
+
# Corresponds to the JSON property `ekmConnections`
|
1530
|
+
# @return [Array<Google::Apis::CloudkmsV1::EkmConnection>]
|
1531
|
+
attr_accessor :ekm_connections
|
1532
|
+
|
1533
|
+
# A token to retrieve next page of results. Pass this value in
|
1534
|
+
# ListEkmConnectionsRequest.page_token to retrieve the next page of results.
|
1535
|
+
# Corresponds to the JSON property `nextPageToken`
|
1536
|
+
# @return [String]
|
1537
|
+
attr_accessor :next_page_token
|
1538
|
+
|
1539
|
+
# The total number of EkmConnections that matched the query.
|
1540
|
+
# Corresponds to the JSON property `totalSize`
|
1541
|
+
# @return [Fixnum]
|
1542
|
+
attr_accessor :total_size
|
1543
|
+
|
1544
|
+
def initialize(**args)
|
1545
|
+
update!(**args)
|
1546
|
+
end
|
1547
|
+
|
1548
|
+
# Update properties of this object
|
1549
|
+
def update!(**args)
|
1550
|
+
@ekm_connections = args[:ekm_connections] if args.key?(:ekm_connections)
|
1551
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1552
|
+
@total_size = args[:total_size] if args.key?(:total_size)
|
1553
|
+
end
|
1554
|
+
end
|
1555
|
+
|
1385
1556
|
# Response message for KeyManagementService.ListImportJobs.
|
1386
1557
|
class ListImportJobsResponse
|
1387
1558
|
include Google::Apis::Core::Hashable
|
@@ -1937,6 +2108,51 @@ module Google
|
|
1937
2108
|
end
|
1938
2109
|
end
|
1939
2110
|
|
2111
|
+
# A ServiceResolver represents an EKM replica that can be reached within an
|
2112
|
+
# EkmConnection.
|
2113
|
+
class ServiceResolver
|
2114
|
+
include Google::Apis::Core::Hashable
|
2115
|
+
|
2116
|
+
# Optional. The filter applied to the endpoints of the resolved service. If no
|
2117
|
+
# filter is specified, all endpoints will be considered. An endpoint will be
|
2118
|
+
# chosen arbitrarily from the filtered list for each request. For endpoint
|
2119
|
+
# filter syntax and examples, see https://cloud.google.com/service-directory/
|
2120
|
+
# docs/reference/rpc/google.cloud.servicedirectory.v1#resolveservicerequest.
|
2121
|
+
# Corresponds to the JSON property `endpointFilter`
|
2122
|
+
# @return [String]
|
2123
|
+
attr_accessor :endpoint_filter
|
2124
|
+
|
2125
|
+
# Required. The hostname of the EKM replica used at TLS and HTTP layers.
|
2126
|
+
# Corresponds to the JSON property `hostname`
|
2127
|
+
# @return [String]
|
2128
|
+
attr_accessor :hostname
|
2129
|
+
|
2130
|
+
# Required. A list of leaf server certificates used to authenticate HTTPS
|
2131
|
+
# connections to the EKM replica. Currently, a maximum of 10 Certificate is
|
2132
|
+
# supported.
|
2133
|
+
# Corresponds to the JSON property `serverCertificates`
|
2134
|
+
# @return [Array<Google::Apis::CloudkmsV1::Certificate>]
|
2135
|
+
attr_accessor :server_certificates
|
2136
|
+
|
2137
|
+
# Required. The resource name of the Service Directory service pointing to an
|
2138
|
+
# EKM replica, in the format `projects/*/locations/*/namespaces/*/services/*`.
|
2139
|
+
# Corresponds to the JSON property `serviceDirectoryService`
|
2140
|
+
# @return [String]
|
2141
|
+
attr_accessor :service_directory_service
|
2142
|
+
|
2143
|
+
def initialize(**args)
|
2144
|
+
update!(**args)
|
2145
|
+
end
|
2146
|
+
|
2147
|
+
# Update properties of this object
|
2148
|
+
def update!(**args)
|
2149
|
+
@endpoint_filter = args[:endpoint_filter] if args.key?(:endpoint_filter)
|
2150
|
+
@hostname = args[:hostname] if args.key?(:hostname)
|
2151
|
+
@server_certificates = args[:server_certificates] if args.key?(:server_certificates)
|
2152
|
+
@service_directory_service = args[:service_directory_service] if args.key?(:service_directory_service)
|
2153
|
+
end
|
2154
|
+
end
|
2155
|
+
|
1940
2156
|
# Request message for `SetIamPolicy` method.
|
1941
2157
|
class SetIamPolicyRequest
|
1942
2158
|
include Google::Apis::Core::Hashable
|
@@ -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.18.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.4.
|
22
|
+
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220208"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -64,6 +64,12 @@ module Google
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
65
65
|
end
|
66
66
|
|
67
|
+
class Certificate
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
|
+
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
71
|
+
end
|
72
|
+
|
67
73
|
class CertificateChains
|
68
74
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
69
75
|
|
@@ -112,6 +118,12 @@ module Google
|
|
112
118
|
include Google::Apis::Core::JsonObjectSupport
|
113
119
|
end
|
114
120
|
|
121
|
+
class EkmConnection
|
122
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
|
+
|
124
|
+
include Google::Apis::Core::JsonObjectSupport
|
125
|
+
end
|
126
|
+
|
115
127
|
class EncryptRequest
|
116
128
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
129
|
|
@@ -184,6 +196,12 @@ module Google
|
|
184
196
|
include Google::Apis::Core::JsonObjectSupport
|
185
197
|
end
|
186
198
|
|
199
|
+
class ListEkmConnectionsResponse
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
|
+
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
203
|
+
end
|
204
|
+
|
187
205
|
class ListImportJobsResponse
|
188
206
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
207
|
|
@@ -256,6 +274,12 @@ module Google
|
|
256
274
|
include Google::Apis::Core::JsonObjectSupport
|
257
275
|
end
|
258
276
|
|
277
|
+
class ServiceResolver
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
|
+
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
281
|
+
end
|
282
|
+
|
259
283
|
class SetIamPolicyRequest
|
260
284
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
285
|
|
@@ -354,6 +378,21 @@ module Google
|
|
354
378
|
end
|
355
379
|
end
|
356
380
|
|
381
|
+
class Certificate
|
382
|
+
# @private
|
383
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
384
|
+
property :issuer, as: 'issuer'
|
385
|
+
property :not_after_time, as: 'notAfterTime'
|
386
|
+
property :not_before_time, as: 'notBeforeTime'
|
387
|
+
property :parsed, as: 'parsed'
|
388
|
+
property :raw_der, :base64 => true, as: 'rawDer'
|
389
|
+
property :serial_number, as: 'serialNumber'
|
390
|
+
property :sha256_fingerprint, as: 'sha256Fingerprint'
|
391
|
+
property :subject, as: 'subject'
|
392
|
+
collection :subject_alternative_dns_names, as: 'subjectAlternativeDnsNames'
|
393
|
+
end
|
394
|
+
end
|
395
|
+
|
357
396
|
class CertificateChains
|
358
397
|
# @private
|
359
398
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -367,6 +406,7 @@ module Google
|
|
367
406
|
# @private
|
368
407
|
class Representation < Google::Apis::Core::JsonRepresentation
|
369
408
|
property :create_time, as: 'createTime'
|
409
|
+
property :crypto_key_backend, as: 'cryptoKeyBackend'
|
370
410
|
property :destroy_scheduled_duration, as: 'destroyScheduledDuration'
|
371
411
|
property :import_only, as: 'importOnly'
|
372
412
|
hash :labels, as: 'labels'
|
@@ -446,6 +486,17 @@ module Google
|
|
446
486
|
end
|
447
487
|
end
|
448
488
|
|
489
|
+
class EkmConnection
|
490
|
+
# @private
|
491
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
492
|
+
property :create_time, as: 'createTime'
|
493
|
+
property :etag, as: 'etag'
|
494
|
+
property :name, as: 'name'
|
495
|
+
collection :service_resolvers, as: 'serviceResolvers', class: Google::Apis::CloudkmsV1::ServiceResolver, decorator: Google::Apis::CloudkmsV1::ServiceResolver::Representation
|
496
|
+
|
497
|
+
end
|
498
|
+
end
|
499
|
+
|
449
500
|
class EncryptRequest
|
450
501
|
# @private
|
451
502
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -481,6 +532,7 @@ module Google
|
|
481
532
|
class ExternalProtectionLevelOptions
|
482
533
|
# @private
|
483
534
|
class Representation < Google::Apis::Core::JsonRepresentation
|
535
|
+
property :ekm_connection_key_path, as: 'ekmConnectionKeyPath'
|
484
536
|
property :external_key_uri, as: 'externalKeyUri'
|
485
537
|
end
|
486
538
|
end
|
@@ -567,6 +619,16 @@ module Google
|
|
567
619
|
end
|
568
620
|
end
|
569
621
|
|
622
|
+
class ListEkmConnectionsResponse
|
623
|
+
# @private
|
624
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
625
|
+
collection :ekm_connections, as: 'ekmConnections', class: Google::Apis::CloudkmsV1::EkmConnection, decorator: Google::Apis::CloudkmsV1::EkmConnection::Representation
|
626
|
+
|
627
|
+
property :next_page_token, as: 'nextPageToken'
|
628
|
+
property :total_size, as: 'totalSize'
|
629
|
+
end
|
630
|
+
end
|
631
|
+
|
570
632
|
class ListImportJobsResponse
|
571
633
|
# @private
|
572
634
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -685,6 +747,17 @@ module Google
|
|
685
747
|
end
|
686
748
|
end
|
687
749
|
|
750
|
+
class ServiceResolver
|
751
|
+
# @private
|
752
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
753
|
+
property :endpoint_filter, as: 'endpointFilter'
|
754
|
+
property :hostname, as: 'hostname'
|
755
|
+
collection :server_certificates, as: 'serverCertificates', class: Google::Apis::CloudkmsV1::Certificate, decorator: Google::Apis::CloudkmsV1::Certificate::Representation
|
756
|
+
|
757
|
+
property :service_directory_service, as: 'serviceDirectoryService'
|
758
|
+
end
|
759
|
+
end
|
760
|
+
|
688
761
|
class SetIamPolicyRequest
|
689
762
|
# @private
|
690
763
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -158,6 +158,281 @@ module Google
|
|
158
158
|
execute_or_queue_command(command, &block)
|
159
159
|
end
|
160
160
|
|
161
|
+
# Creates a new EkmConnection in a given Project and Location.
|
162
|
+
# @param [String] parent
|
163
|
+
# Required. The resource name of the location associated with the EkmConnection,
|
164
|
+
# in the format `projects/*/locations/*`.
|
165
|
+
# @param [Google::Apis::CloudkmsV1::EkmConnection] ekm_connection_object
|
166
|
+
# @param [String] ekm_connection_id
|
167
|
+
# Required. It must be unique within a location and match the regular expression
|
168
|
+
# `[a-zA-Z0-9_-]`1,63``.
|
169
|
+
# @param [String] fields
|
170
|
+
# Selector specifying which fields to include in a partial response.
|
171
|
+
# @param [String] quota_user
|
172
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
173
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
174
|
+
# @param [Google::Apis::RequestOptions] options
|
175
|
+
# Request-specific options
|
176
|
+
#
|
177
|
+
# @yield [result, err] Result & error if block supplied
|
178
|
+
# @yieldparam result [Google::Apis::CloudkmsV1::EkmConnection] parsed result object
|
179
|
+
# @yieldparam err [StandardError] error object if request failed
|
180
|
+
#
|
181
|
+
# @return [Google::Apis::CloudkmsV1::EkmConnection]
|
182
|
+
#
|
183
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
184
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
185
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
186
|
+
def create_project_location_ekm_connection(parent, ekm_connection_object = nil, ekm_connection_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
187
|
+
command = make_simple_command(:post, 'v1/{+parent}/ekmConnections', options)
|
188
|
+
command.request_representation = Google::Apis::CloudkmsV1::EkmConnection::Representation
|
189
|
+
command.request_object = ekm_connection_object
|
190
|
+
command.response_representation = Google::Apis::CloudkmsV1::EkmConnection::Representation
|
191
|
+
command.response_class = Google::Apis::CloudkmsV1::EkmConnection
|
192
|
+
command.params['parent'] = parent unless parent.nil?
|
193
|
+
command.query['ekmConnectionId'] = ekm_connection_id unless ekm_connection_id.nil?
|
194
|
+
command.query['fields'] = fields unless fields.nil?
|
195
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
196
|
+
execute_or_queue_command(command, &block)
|
197
|
+
end
|
198
|
+
|
199
|
+
# Returns metadata for a given EkmConnection.
|
200
|
+
# @param [String] name
|
201
|
+
# Required. The name of the EkmConnection to get.
|
202
|
+
# @param [String] fields
|
203
|
+
# Selector specifying which fields to include in a partial response.
|
204
|
+
# @param [String] quota_user
|
205
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
206
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
207
|
+
# @param [Google::Apis::RequestOptions] options
|
208
|
+
# Request-specific options
|
209
|
+
#
|
210
|
+
# @yield [result, err] Result & error if block supplied
|
211
|
+
# @yieldparam result [Google::Apis::CloudkmsV1::EkmConnection] parsed result object
|
212
|
+
# @yieldparam err [StandardError] error object if request failed
|
213
|
+
#
|
214
|
+
# @return [Google::Apis::CloudkmsV1::EkmConnection]
|
215
|
+
#
|
216
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
217
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
218
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
219
|
+
def get_project_location_ekm_connection(name, fields: nil, quota_user: nil, options: nil, &block)
|
220
|
+
command = make_simple_command(:get, 'v1/{+name}', options)
|
221
|
+
command.response_representation = Google::Apis::CloudkmsV1::EkmConnection::Representation
|
222
|
+
command.response_class = Google::Apis::CloudkmsV1::EkmConnection
|
223
|
+
command.params['name'] = name unless name.nil?
|
224
|
+
command.query['fields'] = fields unless fields.nil?
|
225
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
226
|
+
execute_or_queue_command(command, &block)
|
227
|
+
end
|
228
|
+
|
229
|
+
# Gets the access control policy for a resource. Returns an empty policy if the
|
230
|
+
# resource exists and does not have a policy set.
|
231
|
+
# @param [String] resource
|
232
|
+
# REQUIRED: The resource for which the policy is being requested. See the
|
233
|
+
# operation documentation for the appropriate value for this field.
|
234
|
+
# @param [Fixnum] options_requested_policy_version
|
235
|
+
# Optional. The maximum policy version that will be used to format the policy.
|
236
|
+
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
237
|
+
# rejected. Requests for policies with any conditional role bindings must
|
238
|
+
# specify version 3. Policies with no conditional role bindings may specify any
|
239
|
+
# valid value or leave the field unset. The policy in the response might use the
|
240
|
+
# policy version that you specified, or it might use a lower policy version. For
|
241
|
+
# example, if you specify version 3, but the policy has no conditional role
|
242
|
+
# bindings, the response uses version 1. To learn which resources support
|
243
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
244
|
+
# google.com/iam/help/conditions/resource-policies).
|
245
|
+
# @param [String] fields
|
246
|
+
# Selector specifying which fields to include in a partial response.
|
247
|
+
# @param [String] quota_user
|
248
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
249
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
250
|
+
# @param [Google::Apis::RequestOptions] options
|
251
|
+
# Request-specific options
|
252
|
+
#
|
253
|
+
# @yield [result, err] Result & error if block supplied
|
254
|
+
# @yieldparam result [Google::Apis::CloudkmsV1::Policy] parsed result object
|
255
|
+
# @yieldparam err [StandardError] error object if request failed
|
256
|
+
#
|
257
|
+
# @return [Google::Apis::CloudkmsV1::Policy]
|
258
|
+
#
|
259
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
260
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
261
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
262
|
+
def get_project_location_ekm_connection_iam_policy(resource, options_requested_policy_version: nil, fields: nil, quota_user: nil, options: nil, &block)
|
263
|
+
command = make_simple_command(:get, 'v1/{+resource}:getIamPolicy', options)
|
264
|
+
command.response_representation = Google::Apis::CloudkmsV1::Policy::Representation
|
265
|
+
command.response_class = Google::Apis::CloudkmsV1::Policy
|
266
|
+
command.params['resource'] = resource unless resource.nil?
|
267
|
+
command.query['options.requestedPolicyVersion'] = options_requested_policy_version unless options_requested_policy_version.nil?
|
268
|
+
command.query['fields'] = fields unless fields.nil?
|
269
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
270
|
+
execute_or_queue_command(command, &block)
|
271
|
+
end
|
272
|
+
|
273
|
+
# Lists EkmConnections.
|
274
|
+
# @param [String] parent
|
275
|
+
# Required. The resource name of the location associated with the EkmConnections
|
276
|
+
# to list, in the format `projects/*/locations/*`.
|
277
|
+
# @param [String] filter
|
278
|
+
# Optional. Only include resources that match the filter in the response. For
|
279
|
+
# more information, see [Sorting and filtering list results](https://cloud.
|
280
|
+
# google.com/kms/docs/sorting-and-filtering).
|
281
|
+
# @param [String] order_by
|
282
|
+
# Optional. Specify how the results should be sorted. If not specified, the
|
283
|
+
# results will be sorted in the default order. For more information, see [
|
284
|
+
# Sorting and filtering list results](https://cloud.google.com/kms/docs/sorting-
|
285
|
+
# and-filtering).
|
286
|
+
# @param [Fixnum] page_size
|
287
|
+
# Optional. Optional limit on the number of EkmConnections to include in the
|
288
|
+
# response. Further EkmConnections can subsequently be obtained by including the
|
289
|
+
# ListEkmConnectionsResponse.next_page_token in a subsequent request. If
|
290
|
+
# unspecified, the server will pick an appropriate default.
|
291
|
+
# @param [String] page_token
|
292
|
+
# Optional. Optional pagination token, returned earlier via
|
293
|
+
# ListEkmConnectionsResponse.next_page_token.
|
294
|
+
# @param [String] fields
|
295
|
+
# Selector specifying which fields to include in a partial response.
|
296
|
+
# @param [String] quota_user
|
297
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
298
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
299
|
+
# @param [Google::Apis::RequestOptions] options
|
300
|
+
# Request-specific options
|
301
|
+
#
|
302
|
+
# @yield [result, err] Result & error if block supplied
|
303
|
+
# @yieldparam result [Google::Apis::CloudkmsV1::ListEkmConnectionsResponse] parsed result object
|
304
|
+
# @yieldparam err [StandardError] error object if request failed
|
305
|
+
#
|
306
|
+
# @return [Google::Apis::CloudkmsV1::ListEkmConnectionsResponse]
|
307
|
+
#
|
308
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
309
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
310
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
311
|
+
def list_project_location_ekm_connections(parent, filter: nil, order_by: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
312
|
+
command = make_simple_command(:get, 'v1/{+parent}/ekmConnections', options)
|
313
|
+
command.response_representation = Google::Apis::CloudkmsV1::ListEkmConnectionsResponse::Representation
|
314
|
+
command.response_class = Google::Apis::CloudkmsV1::ListEkmConnectionsResponse
|
315
|
+
command.params['parent'] = parent unless parent.nil?
|
316
|
+
command.query['filter'] = filter unless filter.nil?
|
317
|
+
command.query['orderBy'] = order_by unless order_by.nil?
|
318
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
319
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
320
|
+
command.query['fields'] = fields unless fields.nil?
|
321
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
322
|
+
execute_or_queue_command(command, &block)
|
323
|
+
end
|
324
|
+
|
325
|
+
# Updates an EkmConnection's metadata.
|
326
|
+
# @param [String] name
|
327
|
+
# Output only. The resource name for the EkmConnection in the format `projects/*/
|
328
|
+
# locations/*/ekmConnections/*`.
|
329
|
+
# @param [Google::Apis::CloudkmsV1::EkmConnection] ekm_connection_object
|
330
|
+
# @param [String] update_mask
|
331
|
+
# Required. List of fields to be updated in this request.
|
332
|
+
# @param [String] fields
|
333
|
+
# Selector specifying which fields to include in a partial response.
|
334
|
+
# @param [String] quota_user
|
335
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
336
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
337
|
+
# @param [Google::Apis::RequestOptions] options
|
338
|
+
# Request-specific options
|
339
|
+
#
|
340
|
+
# @yield [result, err] Result & error if block supplied
|
341
|
+
# @yieldparam result [Google::Apis::CloudkmsV1::EkmConnection] parsed result object
|
342
|
+
# @yieldparam err [StandardError] error object if request failed
|
343
|
+
#
|
344
|
+
# @return [Google::Apis::CloudkmsV1::EkmConnection]
|
345
|
+
#
|
346
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
347
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
348
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
349
|
+
def patch_project_location_ekm_connection(name, ekm_connection_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
350
|
+
command = make_simple_command(:patch, 'v1/{+name}', options)
|
351
|
+
command.request_representation = Google::Apis::CloudkmsV1::EkmConnection::Representation
|
352
|
+
command.request_object = ekm_connection_object
|
353
|
+
command.response_representation = Google::Apis::CloudkmsV1::EkmConnection::Representation
|
354
|
+
command.response_class = Google::Apis::CloudkmsV1::EkmConnection
|
355
|
+
command.params['name'] = name unless name.nil?
|
356
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
357
|
+
command.query['fields'] = fields unless fields.nil?
|
358
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
359
|
+
execute_or_queue_command(command, &block)
|
360
|
+
end
|
361
|
+
|
362
|
+
# Sets the access control policy on the specified resource. Replaces any
|
363
|
+
# existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
|
364
|
+
# PERMISSION_DENIED` errors.
|
365
|
+
# @param [String] resource
|
366
|
+
# REQUIRED: The resource for which the policy is being specified. See the
|
367
|
+
# operation documentation for the appropriate value for this field.
|
368
|
+
# @param [Google::Apis::CloudkmsV1::SetIamPolicyRequest] set_iam_policy_request_object
|
369
|
+
# @param [String] fields
|
370
|
+
# Selector specifying which fields to include in a partial response.
|
371
|
+
# @param [String] quota_user
|
372
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
373
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
374
|
+
# @param [Google::Apis::RequestOptions] options
|
375
|
+
# Request-specific options
|
376
|
+
#
|
377
|
+
# @yield [result, err] Result & error if block supplied
|
378
|
+
# @yieldparam result [Google::Apis::CloudkmsV1::Policy] parsed result object
|
379
|
+
# @yieldparam err [StandardError] error object if request failed
|
380
|
+
#
|
381
|
+
# @return [Google::Apis::CloudkmsV1::Policy]
|
382
|
+
#
|
383
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
384
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
385
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
386
|
+
def set_ekm_connection_iam_policy(resource, set_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
387
|
+
command = make_simple_command(:post, 'v1/{+resource}:setIamPolicy', options)
|
388
|
+
command.request_representation = Google::Apis::CloudkmsV1::SetIamPolicyRequest::Representation
|
389
|
+
command.request_object = set_iam_policy_request_object
|
390
|
+
command.response_representation = Google::Apis::CloudkmsV1::Policy::Representation
|
391
|
+
command.response_class = Google::Apis::CloudkmsV1::Policy
|
392
|
+
command.params['resource'] = resource unless resource.nil?
|
393
|
+
command.query['fields'] = fields unless fields.nil?
|
394
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
395
|
+
execute_or_queue_command(command, &block)
|
396
|
+
end
|
397
|
+
|
398
|
+
# Returns permissions that a caller has on the specified resource. If the
|
399
|
+
# resource does not exist, this will return an empty set of permissions, not a `
|
400
|
+
# NOT_FOUND` error. Note: This operation is designed to be used for building
|
401
|
+
# permission-aware UIs and command-line tools, not for authorization checking.
|
402
|
+
# This operation may "fail open" without warning.
|
403
|
+
# @param [String] resource
|
404
|
+
# REQUIRED: The resource for which the policy detail is being requested. See the
|
405
|
+
# operation documentation for the appropriate value for this field.
|
406
|
+
# @param [Google::Apis::CloudkmsV1::TestIamPermissionsRequest] test_iam_permissions_request_object
|
407
|
+
# @param [String] fields
|
408
|
+
# Selector specifying which fields to include in a partial response.
|
409
|
+
# @param [String] quota_user
|
410
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
411
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
412
|
+
# @param [Google::Apis::RequestOptions] options
|
413
|
+
# Request-specific options
|
414
|
+
#
|
415
|
+
# @yield [result, err] Result & error if block supplied
|
416
|
+
# @yieldparam result [Google::Apis::CloudkmsV1::TestIamPermissionsResponse] parsed result object
|
417
|
+
# @yieldparam err [StandardError] error object if request failed
|
418
|
+
#
|
419
|
+
# @return [Google::Apis::CloudkmsV1::TestIamPermissionsResponse]
|
420
|
+
#
|
421
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
422
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
423
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
424
|
+
def test_ekm_connection_iam_permissions(resource, test_iam_permissions_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
425
|
+
command = make_simple_command(:post, 'v1/{+resource}:testIamPermissions', options)
|
426
|
+
command.request_representation = Google::Apis::CloudkmsV1::TestIamPermissionsRequest::Representation
|
427
|
+
command.request_object = test_iam_permissions_request_object
|
428
|
+
command.response_representation = Google::Apis::CloudkmsV1::TestIamPermissionsResponse::Representation
|
429
|
+
command.response_class = Google::Apis::CloudkmsV1::TestIamPermissionsResponse
|
430
|
+
command.params['resource'] = resource unless resource.nil?
|
431
|
+
command.query['fields'] = fields unless fields.nil?
|
432
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
433
|
+
execute_or_queue_command(command, &block)
|
434
|
+
end
|
435
|
+
|
161
436
|
# Create a new KeyRing in a given Project and Location.
|
162
437
|
# @param [String] parent
|
163
438
|
# Required. The resource name of the location associated with the KeyRings, in
|
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.18.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:
|
11
|
+
date: 2022-02-14 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.18.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.
|
78
|
+
rubygems_version: 3.3.5
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Key Management Service (KMS) API V1
|