google-cloud-kms-v1 1.9.1 → 1.10.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/lib/google/cloud/kms/v1/hsm_management/client.rb +1477 -0
- data/lib/google/cloud/kms/v1/hsm_management/credentials.rb +52 -0
- data/lib/google/cloud/kms/v1/hsm_management/operations.rb +841 -0
- data/lib/google/cloud/kms/v1/hsm_management/paths.rb +90 -0
- data/lib/google/cloud/kms/v1/hsm_management/rest/client.rb +1380 -0
- data/lib/google/cloud/kms/v1/hsm_management/rest/operations.rb +925 -0
- data/lib/google/cloud/kms/v1/hsm_management/rest/service_stub.rb +634 -0
- data/lib/google/cloud/kms/v1/hsm_management/rest.rb +60 -0
- data/lib/google/cloud/kms/v1/hsm_management.rb +62 -0
- data/lib/google/cloud/kms/v1/hsm_management_pb.rb +86 -0
- data/lib/google/cloud/kms/v1/hsm_management_services_pb.rb +91 -0
- data/lib/google/cloud/kms/v1/resources_pb.rb +1 -1
- data/lib/google/cloud/kms/v1/rest.rb +1 -0
- data/lib/google/cloud/kms/v1/service_pb.rb +1 -1
- data/lib/google/cloud/kms/v1/version.rb +1 -1
- data/lib/google/cloud/kms/v1.rb +1 -0
- data/proto_docs/google/cloud/kms/v1/hsm_management.rb +877 -0
- data/proto_docs/google/cloud/kms/v1/resources.rb +31 -1
- data/proto_docs/google/cloud/kms/v1/service.rb +6 -0
- metadata +13 -1
|
@@ -134,7 +134,12 @@ module Google
|
|
|
134
134
|
# if {::Google::Cloud::Kms::V1::CryptoKeyVersion CryptoKeyVersions} have a
|
|
135
135
|
# {::Google::Cloud::Kms::V1::ProtectionLevel ProtectionLevel} of
|
|
136
136
|
# {::Google::Cloud::Kms::V1::ProtectionLevel::EXTERNAL_VPC EXTERNAL_VPC}, with the
|
|
137
|
-
# resource name in the format `projects/*/locations/*/ekmConnections/*`.
|
|
137
|
+
# resource name in the format `projects/*/locations/*/ekmConnections/*`. Only
|
|
138
|
+
# applicable if {::Google::Cloud::Kms::V1::CryptoKeyVersion CryptoKeyVersions}
|
|
139
|
+
# have a {::Google::Cloud::Kms::V1::ProtectionLevel ProtectionLevel} of
|
|
140
|
+
# {::Google::Cloud::Kms::V1::ProtectionLevel::HSM_SINGLE_TENANT HSM_SINGLE_TENANT},
|
|
141
|
+
# with the resource name in the format
|
|
142
|
+
# `projects/*/locations/*/singleTenantHsmInstances/*`.
|
|
138
143
|
# Note, this list is non-exhaustive and may apply to additional
|
|
139
144
|
# {::Google::Cloud::Kms::V1::ProtectionLevel ProtectionLevels} in the future.
|
|
140
145
|
# @!attribute [rw] key_access_justifications_policy
|
|
@@ -867,6 +872,16 @@ module Google
|
|
|
867
872
|
# Only present if the chosen
|
|
868
873
|
# {::Google::Cloud::Kms::V1::ImportJob::ImportMethod ImportMethod} is one with a
|
|
869
874
|
# protection level of {::Google::Cloud::Kms::V1::ProtectionLevel::HSM HSM}.
|
|
875
|
+
# @!attribute [rw] crypto_key_backend
|
|
876
|
+
# @return [::String]
|
|
877
|
+
# Immutable. The resource name of the backend environment where the key
|
|
878
|
+
# material for the wrapping key resides and where all related cryptographic
|
|
879
|
+
# operations are performed. Currently, this field is only populated for keys
|
|
880
|
+
# stored in HSM_SINGLE_TENANT. Note, this list is non-exhaustive and may
|
|
881
|
+
# apply to additional {::Google::Cloud::Kms::V1::ProtectionLevel ProtectionLevels}
|
|
882
|
+
# in the future.
|
|
883
|
+
# Supported resources:
|
|
884
|
+
# * `"projects/*/locations/*/singleTenantHsmInstances/*"`
|
|
870
885
|
class ImportJob
|
|
871
886
|
include ::Google::Protobuf::MessageExts
|
|
872
887
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -1018,6 +1033,9 @@ module Google
|
|
|
1018
1033
|
|
|
1019
1034
|
# Crypto operations are performed in an EKM-over-VPC backend.
|
|
1020
1035
|
EXTERNAL_VPC = 4
|
|
1036
|
+
|
|
1037
|
+
# Crypto operations are performed in a single-tenant HSM.
|
|
1038
|
+
HSM_SINGLE_TENANT = 5
|
|
1021
1039
|
end
|
|
1022
1040
|
|
|
1023
1041
|
# Describes the reason for a data access. Please refer to
|
|
@@ -1050,6 +1068,12 @@ module Google
|
|
|
1050
1068
|
# No reason is expected for this key request.
|
|
1051
1069
|
REASON_NOT_EXPECTED = 7
|
|
1052
1070
|
|
|
1071
|
+
# Deprecated: This code is no longer generated by
|
|
1072
|
+
# Google Cloud. The GOOGLE_RESPONSE_TO_PRODUCTION_ALERT justification codes
|
|
1073
|
+
# available in both Key Access Justifications and Access Transparency logs
|
|
1074
|
+
# provide customer-visible signals of emergency access in more precise
|
|
1075
|
+
# contexts.
|
|
1076
|
+
#
|
|
1053
1077
|
# Customer uses their account to perform any access to their own data which
|
|
1054
1078
|
# their IAM policy authorizes, and one of the following is true:
|
|
1055
1079
|
#
|
|
@@ -1060,6 +1084,12 @@ module Google
|
|
|
1060
1084
|
# within the past 7 days.
|
|
1061
1085
|
MODIFIED_CUSTOMER_INITIATED_ACCESS = 8
|
|
1062
1086
|
|
|
1087
|
+
# Deprecated: This code is no longer generated by
|
|
1088
|
+
# Google Cloud. The GOOGLE_RESPONSE_TO_PRODUCTION_ALERT justification codes
|
|
1089
|
+
# available in both Key Access Justifications and Access Transparency logs
|
|
1090
|
+
# provide customer-visible signals of emergency access in more precise
|
|
1091
|
+
# contexts.
|
|
1092
|
+
#
|
|
1063
1093
|
# Google systems access customer data to help optimize the structure of the
|
|
1064
1094
|
# data or quality for future uses by the customer, and one of the following
|
|
1065
1095
|
# is true:
|
|
@@ -1791,6 +1791,12 @@ module Google
|
|
|
1791
1791
|
# {::Google::Cloud::Kms::V1::CryptoKeyVersionTemplate#protection_level protection_level}
|
|
1792
1792
|
# {::Google::Cloud::Kms::V1::ProtectionLevel::EXTERNAL EXTERNAL} can be created in
|
|
1793
1793
|
# this location.
|
|
1794
|
+
# @!attribute [rw] hsm_single_tenant_available
|
|
1795
|
+
# @return [::Boolean]
|
|
1796
|
+
# Indicates whether {::Google::Cloud::Kms::V1::CryptoKey CryptoKeys} with
|
|
1797
|
+
# {::Google::Cloud::Kms::V1::CryptoKeyVersionTemplate#protection_level protection_level}
|
|
1798
|
+
# {::Google::Cloud::Kms::V1::ProtectionLevel::HSM_SINGLE_TENANT HSM_SINGLE_TENANT}
|
|
1799
|
+
# can be created in this location.
|
|
1794
1800
|
class LocationMetadata
|
|
1795
1801
|
include ::Google::Protobuf::MessageExts
|
|
1796
1802
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-kms-v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.10.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -111,6 +111,17 @@ files:
|
|
|
111
111
|
- lib/google/cloud/kms/v1/ekm_service/rest/service_stub.rb
|
|
112
112
|
- lib/google/cloud/kms/v1/ekm_service_pb.rb
|
|
113
113
|
- lib/google/cloud/kms/v1/ekm_service_services_pb.rb
|
|
114
|
+
- lib/google/cloud/kms/v1/hsm_management.rb
|
|
115
|
+
- lib/google/cloud/kms/v1/hsm_management/client.rb
|
|
116
|
+
- lib/google/cloud/kms/v1/hsm_management/credentials.rb
|
|
117
|
+
- lib/google/cloud/kms/v1/hsm_management/operations.rb
|
|
118
|
+
- lib/google/cloud/kms/v1/hsm_management/paths.rb
|
|
119
|
+
- lib/google/cloud/kms/v1/hsm_management/rest.rb
|
|
120
|
+
- lib/google/cloud/kms/v1/hsm_management/rest/client.rb
|
|
121
|
+
- lib/google/cloud/kms/v1/hsm_management/rest/operations.rb
|
|
122
|
+
- lib/google/cloud/kms/v1/hsm_management/rest/service_stub.rb
|
|
123
|
+
- lib/google/cloud/kms/v1/hsm_management_pb.rb
|
|
124
|
+
- lib/google/cloud/kms/v1/hsm_management_services_pb.rb
|
|
114
125
|
- lib/google/cloud/kms/v1/iam_policy.rb
|
|
115
126
|
- lib/google/cloud/kms/v1/iam_policy/client.rb
|
|
116
127
|
- lib/google/cloud/kms/v1/iam_policy/credentials.rb
|
|
@@ -134,6 +145,7 @@ files:
|
|
|
134
145
|
- proto_docs/google/cloud/kms/v1/autokey.rb
|
|
135
146
|
- proto_docs/google/cloud/kms/v1/autokey_admin.rb
|
|
136
147
|
- proto_docs/google/cloud/kms/v1/ekm_service.rb
|
|
148
|
+
- proto_docs/google/cloud/kms/v1/hsm_management.rb
|
|
137
149
|
- proto_docs/google/cloud/kms/v1/resources.rb
|
|
138
150
|
- proto_docs/google/cloud/kms/v1/service.rb
|
|
139
151
|
- proto_docs/google/longrunning/operations.rb
|