google-apis-cloudkms_v1 0.71.0 → 0.72.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 +4 -0
- data/lib/google/apis/cloudkms_v1/classes.rb +26 -18
- data/lib/google/apis/cloudkms_v1/gem_version.rb +2 -2
- data/lib/google/apis/cloudkms_v1/service.rb +17 -14
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b45a589ce5b54d9a2454dd8931bd0e29447b7977cabcd14257f6cedefff44af2
|
|
4
|
+
data.tar.gz: a3c3e543ec7e5b9e3356567cf31a20f84cad3941e95c5c1db965d529a31415ac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 841bf4891d81d3ac349f965b7bce9d13e411f5abd747ad1f35dc1ea2f7a9cb78a57b4ef6c5eb9546112447cbabe3d3d0a9f2f2f82d18c72bee2aa6e68931c740
|
|
7
|
+
data.tar.gz: e29f35e300dacf7696879ea53a078e00729f88e4c2f61c51e975ed23a19aca687782f584145d8968cdaed667576299a4bd7993d16d96dcb8ca0a967db2439e64
|
data/CHANGELOG.md
CHANGED
|
@@ -772,7 +772,9 @@ module Google
|
|
|
772
772
|
alias_method :import_only?, :import_only
|
|
773
773
|
|
|
774
774
|
# A KeyAccessJustificationsPolicy specifies zero or more allowed AccessReason
|
|
775
|
-
# values for encrypt, decrypt, and sign operations on a CryptoKey
|
|
775
|
+
# values for encrypt, decrypt, and sign operations on a CryptoKey or
|
|
776
|
+
# KeyAccessJustificationsPolicyConfig (the default Key Access Justifications
|
|
777
|
+
# policy).
|
|
776
778
|
# Corresponds to the JSON property `keyAccessJustificationsPolicy`
|
|
777
779
|
# @return [Google::Apis::CloudkmsV1::KeyAccessJustificationsPolicy]
|
|
778
780
|
attr_accessor :key_access_justifications_policy
|
|
@@ -1903,18 +1905,18 @@ module Google
|
|
|
1903
1905
|
end
|
|
1904
1906
|
end
|
|
1905
1907
|
|
|
1906
|
-
#
|
|
1908
|
+
# Represents the configuration of a protection level for a project's Key Access
|
|
1907
1909
|
# Justifications enrollment.
|
|
1908
1910
|
class KeyAccessJustificationsEnrollmentConfig
|
|
1909
1911
|
include Google::Apis::Core::Hashable
|
|
1910
1912
|
|
|
1911
|
-
#
|
|
1913
|
+
# Indicates whether the project has KAJ logging enabled.
|
|
1912
1914
|
# Corresponds to the JSON property `auditLogging`
|
|
1913
1915
|
# @return [Boolean]
|
|
1914
1916
|
attr_accessor :audit_logging
|
|
1915
1917
|
alias_method :audit_logging?, :audit_logging
|
|
1916
1918
|
|
|
1917
|
-
#
|
|
1919
|
+
# Indicates whether the project is enrolled in KAJ policy enforcement.
|
|
1918
1920
|
# Corresponds to the JSON property `policyEnforcement`
|
|
1919
1921
|
# @return [Boolean]
|
|
1920
1922
|
attr_accessor :policy_enforcement
|
|
@@ -1932,13 +1934,16 @@ module Google
|
|
|
1932
1934
|
end
|
|
1933
1935
|
|
|
1934
1936
|
# A KeyAccessJustificationsPolicy specifies zero or more allowed AccessReason
|
|
1935
|
-
# values for encrypt, decrypt, and sign operations on a CryptoKey
|
|
1937
|
+
# values for encrypt, decrypt, and sign operations on a CryptoKey or
|
|
1938
|
+
# KeyAccessJustificationsPolicyConfig (the default Key Access Justifications
|
|
1939
|
+
# policy).
|
|
1936
1940
|
class KeyAccessJustificationsPolicy
|
|
1937
1941
|
include Google::Apis::Core::Hashable
|
|
1938
1942
|
|
|
1939
|
-
# The list of allowed reasons for access to a CryptoKey.
|
|
1940
|
-
#
|
|
1941
|
-
#
|
|
1943
|
+
# The list of allowed reasons for access to a CryptoKey. Note that empty
|
|
1944
|
+
# allowed_access_reasons has a different meaning depending on where this message
|
|
1945
|
+
# appears. If this is under KeyAccessJustificationsPolicyConfig, it means allow-
|
|
1946
|
+
# all. If this is under CryptoKey, it means deny-all.
|
|
1942
1947
|
# Corresponds to the JSON property `allowedAccessReasons`
|
|
1943
1948
|
# @return [Array<String>]
|
|
1944
1949
|
attr_accessor :allowed_access_reasons
|
|
@@ -1953,18 +1958,21 @@ module Google
|
|
|
1953
1958
|
end
|
|
1954
1959
|
end
|
|
1955
1960
|
|
|
1956
|
-
#
|
|
1961
|
+
# Represents a singleton configuration for Key Access Justifications policies.
|
|
1957
1962
|
class KeyAccessJustificationsPolicyConfig
|
|
1958
1963
|
include Google::Apis::Core::Hashable
|
|
1959
1964
|
|
|
1960
1965
|
# A KeyAccessJustificationsPolicy specifies zero or more allowed AccessReason
|
|
1961
|
-
# values for encrypt, decrypt, and sign operations on a CryptoKey
|
|
1966
|
+
# values for encrypt, decrypt, and sign operations on a CryptoKey or
|
|
1967
|
+
# KeyAccessJustificationsPolicyConfig (the default Key Access Justifications
|
|
1968
|
+
# policy).
|
|
1962
1969
|
# Corresponds to the JSON property `defaultKeyAccessJustificationPolicy`
|
|
1963
1970
|
# @return [Google::Apis::CloudkmsV1::KeyAccessJustificationsPolicy]
|
|
1964
1971
|
attr_accessor :default_key_access_justification_policy
|
|
1965
1972
|
|
|
1966
|
-
# Identifier.
|
|
1967
|
-
# the format of "`organizations|folders|
|
|
1973
|
+
# Identifier. Represents the resource name for this
|
|
1974
|
+
# KeyAccessJustificationsPolicyConfig in the format of "`organizations|folders|
|
|
1975
|
+
# projects`/*/kajPolicyConfig".
|
|
1968
1976
|
# Corresponds to the JSON property `name`
|
|
1969
1977
|
# @return [String]
|
|
1970
1978
|
attr_accessor :name
|
|
@@ -3726,24 +3734,24 @@ module Google
|
|
|
3726
3734
|
end
|
|
3727
3735
|
end
|
|
3728
3736
|
|
|
3729
|
-
#
|
|
3737
|
+
# Represents a response message for KeyAccessJustificationsConfig.
|
|
3730
3738
|
# ShowEffectiveKeyAccessJustificationsEnrollmentConfig
|
|
3731
3739
|
class ShowEffectiveKeyAccessJustificationsEnrollmentConfigResponse
|
|
3732
3740
|
include Google::Apis::Core::Hashable
|
|
3733
3741
|
|
|
3734
|
-
#
|
|
3742
|
+
# Represents the configuration of a protection level for a project's Key Access
|
|
3735
3743
|
# Justifications enrollment.
|
|
3736
3744
|
# Corresponds to the JSON property `externalConfig`
|
|
3737
3745
|
# @return [Google::Apis::CloudkmsV1::KeyAccessJustificationsEnrollmentConfig]
|
|
3738
3746
|
attr_accessor :external_config
|
|
3739
3747
|
|
|
3740
|
-
#
|
|
3748
|
+
# Represents the configuration of a protection level for a project's Key Access
|
|
3741
3749
|
# Justifications enrollment.
|
|
3742
3750
|
# Corresponds to the JSON property `hardwareConfig`
|
|
3743
3751
|
# @return [Google::Apis::CloudkmsV1::KeyAccessJustificationsEnrollmentConfig]
|
|
3744
3752
|
attr_accessor :hardware_config
|
|
3745
3753
|
|
|
3746
|
-
#
|
|
3754
|
+
# Represents the configuration of a protection level for a project's Key Access
|
|
3747
3755
|
# Justifications enrollment.
|
|
3748
3756
|
# Corresponds to the JSON property `softwareConfig`
|
|
3749
3757
|
# @return [Google::Apis::CloudkmsV1::KeyAccessJustificationsEnrollmentConfig]
|
|
@@ -3761,12 +3769,12 @@ module Google
|
|
|
3761
3769
|
end
|
|
3762
3770
|
end
|
|
3763
3771
|
|
|
3764
|
-
#
|
|
3772
|
+
# Represents a response message for KeyAccessJustificationsConfig.
|
|
3765
3773
|
# ShowEffectiveKeyAccessJustificationsPolicyConfig.
|
|
3766
3774
|
class ShowEffectiveKeyAccessJustificationsPolicyConfigResponse
|
|
3767
3775
|
include Google::Apis::Core::Hashable
|
|
3768
3776
|
|
|
3769
|
-
#
|
|
3777
|
+
# Represents a singleton configuration for Key Access Justifications policies.
|
|
3770
3778
|
# Corresponds to the JSON property `effectiveKajPolicy`
|
|
3771
3779
|
# @return [Google::Apis::CloudkmsV1::KeyAccessJustificationsPolicyConfig]
|
|
3772
3780
|
attr_accessor :effective_kaj_policy
|
|
@@ -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.72.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260312"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -86,7 +86,7 @@ module Google
|
|
|
86
86
|
# Gets the KeyAccessJustificationsPolicyConfig for a given organization, folder,
|
|
87
87
|
# or project.
|
|
88
88
|
# @param [String] name
|
|
89
|
-
# Required.
|
|
89
|
+
# Required. Specifies the name of the KeyAccessJustificationsPolicyConfig to get.
|
|
90
90
|
# @param [String] fields
|
|
91
91
|
# Selector specifying which fields to include in a partial response.
|
|
92
92
|
# @param [String] quota_user
|
|
@@ -158,11 +158,12 @@ module Google
|
|
|
158
158
|
# Updates the KeyAccessJustificationsPolicyConfig for a given organization,
|
|
159
159
|
# folder, or project.
|
|
160
160
|
# @param [String] name
|
|
161
|
-
# Identifier.
|
|
162
|
-
# the format of "`organizations|folders|
|
|
161
|
+
# Identifier. Represents the resource name for this
|
|
162
|
+
# KeyAccessJustificationsPolicyConfig in the format of "`organizations|folders|
|
|
163
|
+
# projects`/*/kajPolicyConfig".
|
|
163
164
|
# @param [Google::Apis::CloudkmsV1::KeyAccessJustificationsPolicyConfig] key_access_justifications_policy_config_object
|
|
164
165
|
# @param [String] update_mask
|
|
165
|
-
# Optional.
|
|
166
|
+
# Optional. Specifies the list of fields to update.
|
|
166
167
|
# @param [String] fields
|
|
167
168
|
# Selector specifying which fields to include in a partial response.
|
|
168
169
|
# @param [String] quota_user
|
|
@@ -196,7 +197,7 @@ module Google
|
|
|
196
197
|
# Gets the KeyAccessJustificationsPolicyConfig for a given organization, folder,
|
|
197
198
|
# or project.
|
|
198
199
|
# @param [String] name
|
|
199
|
-
# Required.
|
|
200
|
+
# Required. Specifies the name of the KeyAccessJustificationsPolicyConfig to get.
|
|
200
201
|
# @param [String] fields
|
|
201
202
|
# Selector specifying which fields to include in a partial response.
|
|
202
203
|
# @param [String] quota_user
|
|
@@ -227,11 +228,12 @@ module Google
|
|
|
227
228
|
# Updates the KeyAccessJustificationsPolicyConfig for a given organization,
|
|
228
229
|
# folder, or project.
|
|
229
230
|
# @param [String] name
|
|
230
|
-
# Identifier.
|
|
231
|
-
# the format of "`organizations|folders|
|
|
231
|
+
# Identifier. Represents the resource name for this
|
|
232
|
+
# KeyAccessJustificationsPolicyConfig in the format of "`organizations|folders|
|
|
233
|
+
# projects`/*/kajPolicyConfig".
|
|
232
234
|
# @param [Google::Apis::CloudkmsV1::KeyAccessJustificationsPolicyConfig] key_access_justifications_policy_config_object
|
|
233
235
|
# @param [String] update_mask
|
|
234
|
-
# Optional.
|
|
236
|
+
# Optional. Specifies the list of fields to update.
|
|
235
237
|
# @param [String] fields
|
|
236
238
|
# Selector specifying which fields to include in a partial response.
|
|
237
239
|
# @param [String] quota_user
|
|
@@ -296,7 +298,7 @@ module Google
|
|
|
296
298
|
# Gets the KeyAccessJustificationsPolicyConfig for a given organization, folder,
|
|
297
299
|
# or project.
|
|
298
300
|
# @param [String] name
|
|
299
|
-
# Required.
|
|
301
|
+
# Required. Specifies the name of the KeyAccessJustificationsPolicyConfig to get.
|
|
300
302
|
# @param [String] fields
|
|
301
303
|
# Selector specifying which fields to include in a partial response.
|
|
302
304
|
# @param [String] quota_user
|
|
@@ -359,7 +361,7 @@ module Google
|
|
|
359
361
|
# Returns the KeyAccessJustificationsEnrollmentConfig of the resource closest to
|
|
360
362
|
# the given project in hierarchy.
|
|
361
363
|
# @param [String] project
|
|
362
|
-
# Required.
|
|
364
|
+
# Required. Specifies the number or id of the project to get the effective
|
|
363
365
|
# KeyAccessJustificationsEnrollmentConfig for.
|
|
364
366
|
# @param [String] fields
|
|
365
367
|
# Selector specifying which fields to include in a partial response.
|
|
@@ -391,7 +393,7 @@ module Google
|
|
|
391
393
|
# Returns the KeyAccessJustificationsPolicyConfig of the resource closest to the
|
|
392
394
|
# given project in hierarchy.
|
|
393
395
|
# @param [String] project
|
|
394
|
-
# Required.
|
|
396
|
+
# Required. Specifies the number or id of the project to get the effective
|
|
395
397
|
# KeyAccessJustificationsPolicyConfig. In the format of "projects/`|`"
|
|
396
398
|
# @param [String] fields
|
|
397
399
|
# Selector specifying which fields to include in a partial response.
|
|
@@ -464,11 +466,12 @@ module Google
|
|
|
464
466
|
# Updates the KeyAccessJustificationsPolicyConfig for a given organization,
|
|
465
467
|
# folder, or project.
|
|
466
468
|
# @param [String] name
|
|
467
|
-
# Identifier.
|
|
468
|
-
# the format of "`organizations|folders|
|
|
469
|
+
# Identifier. Represents the resource name for this
|
|
470
|
+
# KeyAccessJustificationsPolicyConfig in the format of "`organizations|folders|
|
|
471
|
+
# projects`/*/kajPolicyConfig".
|
|
469
472
|
# @param [Google::Apis::CloudkmsV1::KeyAccessJustificationsPolicyConfig] key_access_justifications_policy_config_object
|
|
470
473
|
# @param [String] update_mask
|
|
471
|
-
# Optional.
|
|
474
|
+
# Optional. Specifies the list of fields to update.
|
|
472
475
|
# @param [String] fields
|
|
473
476
|
# Selector specifying which fields to include in a partial response.
|
|
474
477
|
# @param [String] quota_user
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.72.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudkms_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudkms_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudkms_v1/v0.72.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudkms_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|