@maxim_mazurok/gapi.client.cloudkms-v1 0.1.20251023 → 0.1.20251201
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.
- package/index.d.ts +9 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://cloudkms.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20251201
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -81,7 +81,7 @@ declare namespace gapi.client {
|
|
|
81
81
|
etag?: string;
|
|
82
82
|
/** Optional. Name of the key project, e.g. `projects/{PROJECT_ID}` or `projects/{PROJECT_NUMBER}`, where Cloud KMS Autokey will provision a new CryptoKey when a KeyHandle is created. On UpdateAutokeyConfig, the caller will require `cloudkms.cryptoKeys.setIamPolicy` permission on this key project. Once configured, for Cloud KMS Autokey to function properly, this key project must have the Cloud KMS API activated and the Cloud KMS Service Agent for this key project must be granted the `cloudkms.admin` role (or pertinent permissions). A request with an empty key project field will clear the configuration. */
|
|
83
83
|
keyProject?: string;
|
|
84
|
-
/** Identifier. Name of the AutokeyConfig resource, e.g. `folders/{FOLDER_NUMBER}/autokeyConfig`
|
|
84
|
+
/** Identifier. Name of the AutokeyConfig resource, e.g. `folders/{FOLDER_NUMBER}/autokeyConfig` */
|
|
85
85
|
name?: string;
|
|
86
86
|
/** Output only. The state for the AutokeyConfig. */
|
|
87
87
|
state?: string;
|
|
@@ -131,7 +131,7 @@ declare namespace gapi.client {
|
|
|
131
131
|
interface CryptoKey {
|
|
132
132
|
/** Output only. The time at which this CryptoKey was created. */
|
|
133
133
|
createTime?: string;
|
|
134
|
-
/** Immutable. The resource name of the backend environment where the key material for all CryptoKeyVersions associated with this CryptoKey reside and where all related cryptographic operations are performed. Only applicable if CryptoKeyVersions have a ProtectionLevel of EXTERNAL_VPC, with the resource name in the format `projects/*/locations/*/ekmConnections/*`. Note, this list is non-exhaustive and may apply to additional ProtectionLevels in the future. */
|
|
134
|
+
/** Immutable. The resource name of the backend environment where the key material for all CryptoKeyVersions associated with this CryptoKey reside and where all related cryptographic operations are performed. Only applicable if CryptoKeyVersions have a ProtectionLevel of EXTERNAL_VPC, with the resource name in the format `projects/*/locations/*/ekmConnections/*`. Only applicable if CryptoKeyVersions have a ProtectionLevel of HSM_SINGLE_TENANT, with the resource name in the format `projects/*/locations/*/singleTenantHsmInstances/*`. Note, this list is non-exhaustive and may apply to additional ProtectionLevels in the future. */
|
|
135
135
|
cryptoKeyBackend?: string;
|
|
136
136
|
/** Immutable. The period of time that versions of this key spend in the DESTROY_SCHEDULED state before transitioning to DESTROYED. If not specified at creation time, the default duration is 30 days. */
|
|
137
137
|
destroyScheduledDuration?: string;
|
|
@@ -330,6 +330,8 @@ declare namespace gapi.client {
|
|
|
330
330
|
attestation?: KeyOperationAttestation;
|
|
331
331
|
/** Output only. The time at which this ImportJob was created. */
|
|
332
332
|
createTime?: string;
|
|
333
|
+
/** Immutable. The resource name of the backend environment where the key material for the wrapping key resides and where all related cryptographic operations are performed. Currently, this field is only populated for keys stored in HSM_SINGLE_TENANT. Note, this list is non-exhaustive and may apply to additional ProtectionLevels in the future. */
|
|
334
|
+
cryptoKeyBackend?: string;
|
|
333
335
|
/** Output only. The time this ImportJob expired. Only present if state is EXPIRED. */
|
|
334
336
|
expireEventTime?: string;
|
|
335
337
|
/** Output only. The time at which this ImportJob is scheduled for expiration and can no longer be used to import key material. */
|
|
@@ -454,6 +456,8 @@ declare namespace gapi.client {
|
|
|
454
456
|
ekmAvailable?: boolean;
|
|
455
457
|
/** Indicates whether CryptoKeys with protection_level HSM can be created in this location. */
|
|
456
458
|
hsmAvailable?: boolean;
|
|
459
|
+
/** Indicates whether CryptoKeys with protection_level HSM_SINGLE_TENANT can be created in this location. */
|
|
460
|
+
hsmSingleTenantAvailable?: boolean;
|
|
457
461
|
}
|
|
458
462
|
interface MacSignRequest {
|
|
459
463
|
/** Required. The data to sign. The MAC tag is computed over this data field based on the specific algorithm. */
|
|
@@ -728,7 +732,7 @@ declare namespace gapi.client {
|
|
|
728
732
|
fields?: string;
|
|
729
733
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
730
734
|
key?: string;
|
|
731
|
-
/** Identifier. Name of the AutokeyConfig resource, e.g. `folders/{FOLDER_NUMBER}/autokeyConfig`
|
|
735
|
+
/** Identifier. Name of the AutokeyConfig resource, e.g. `folders/{FOLDER_NUMBER}/autokeyConfig` */
|
|
732
736
|
name: string;
|
|
733
737
|
/** OAuth 2.0 token for the current user. */
|
|
734
738
|
oauth_token?: string;
|
|
@@ -759,7 +763,7 @@ declare namespace gapi.client {
|
|
|
759
763
|
fields?: string;
|
|
760
764
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
761
765
|
key?: string;
|
|
762
|
-
/** Identifier. Name of the AutokeyConfig resource, e.g. `folders/{FOLDER_NUMBER}/autokeyConfig`
|
|
766
|
+
/** Identifier. Name of the AutokeyConfig resource, e.g. `folders/{FOLDER_NUMBER}/autokeyConfig` */
|
|
763
767
|
name: string;
|
|
764
768
|
/** OAuth 2.0 token for the current user. */
|
|
765
769
|
oauth_token?: string;
|