{
  "discoveryVersion": "v1",
  "parameters": {
    "prettyPrint": {
      "type": "boolean",
      "location": "query",
      "default": "true",
      "description": "Returns response with indentations and line breaks."
    },
    "alt": {
      "description": "Data format for response.",
      "enumDescriptions": [
        "Responses with Content-Type of application/json",
        "Media download with context-dependent Content-Type",
        "Responses with Content-Type of application/x-protobuf"
      ],
      "default": "json",
      "type": "string",
      "enum": [
        "json",
        "media",
        "proto"
      ],
      "location": "query"
    },
    "access_token": {
      "type": "string",
      "location": "query",
      "description": "OAuth access token."
    },
    "callback": {
      "type": "string",
      "location": "query",
      "description": "JSONP"
    },
    "upload_protocol": {
      "description": "Upload protocol for media (e.g. \"raw\", \"multipart\").",
      "type": "string",
      "location": "query"
    },
    "key": {
      "description": "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.",
      "type": "string",
      "location": "query"
    },
    "$.xgafv": {
      "description": "V1 error format.",
      "enumDescriptions": [
        "v1 error format",
        "v2 error format"
      ],
      "type": "string",
      "enum": [
        "1",
        "2"
      ],
      "location": "query"
    },
    "quotaUser": {
      "type": "string",
      "location": "query",
      "description": "Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters."
    },
    "fields": {
      "description": "Selector specifying which fields to include in a partial response.",
      "type": "string",
      "location": "query"
    },
    "uploadType": {
      "description": "Legacy upload protocol for media (e.g. \"media\", \"multipart\").",
      "type": "string",
      "location": "query"
    },
    "oauth_token": {
      "type": "string",
      "location": "query",
      "description": "OAuth 2.0 token for the current user."
    }
  },
  "rootUrl": "https://cloudkms.s3nsapis.fr/",
  "schemas": {
    "RestoreCryptoKeyVersionRequest": {
      "description": "Request message for KeyManagementService.RestoreCryptoKeyVersion.",
      "properties": {},
      "id": "RestoreCryptoKeyVersionRequest",
      "type": "object"
    },
    "CryptoKey": {
      "id": "CryptoKey",
      "type": "object",
      "description": "A CryptoKey represents a logical key that can be used for cryptographic operations. A CryptoKey is made up of zero or more versions, which represent the actual key material used in cryptographic operations.",
      "properties": {
        "rotationPeriod": {
          "description": "next_rotation_time will be advanced by this period when the service automatically rotates a key. Must be at least 24 hours and at most 876,000 hours. If rotation_period is set, next_rotation_time must also be set. Keys with purpose ENCRYPT_DECRYPT support automatic rotation. For other keys, this field must be omitted.",
          "format": "google-duration",
          "type": "string"
        },
        "purpose": {
          "type": "string",
          "enum": [
            "CRYPTO_KEY_PURPOSE_UNSPECIFIED",
            "ENCRYPT_DECRYPT",
            "ASYMMETRIC_SIGN",
            "ASYMMETRIC_DECRYPT",
            "RAW_ENCRYPT_DECRYPT",
            "MAC",
            "KEY_ENCAPSULATION"
          ],
          "description": "Immutable. The immutable purpose of this CryptoKey.",
          "enumDescriptions": [
            "Not specified.",
            "CryptoKeys with this purpose may be used with Encrypt and Decrypt.",
            "CryptoKeys with this purpose may be used with AsymmetricSign and GetPublicKey.",
            "CryptoKeys with this purpose may be used with AsymmetricDecrypt and GetPublicKey.",
            "CryptoKeys with this purpose may be used with RawEncrypt and RawDecrypt. This purpose is meant to be used for interoperable symmetric encryption and does not support automatic CryptoKey rotation.",
            "CryptoKeys with this purpose may be used with MacSign.",
            "CryptoKeys with this purpose may be used with GetPublicKey and Decapsulate."
          ]
        },
        "nextRotationTime": {
          "description": "At next_rotation_time, the Key Management Service will automatically: 1. Create a new version of this CryptoKey. 2. Mark the new version as primary. Key rotations performed manually via CreateCryptoKeyVersion and UpdateCryptoKeyPrimaryVersion do not affect next_rotation_time. Keys with purpose ENCRYPT_DECRYPT support automatic rotation. For other keys, this field must be omitted.",
          "format": "google-datetime",
          "type": "string"
        },
        "importOnly": {
          "type": "boolean",
          "description": "Immutable. Whether this key may contain imported versions only."
        },
        "cryptoKeyBackend": {
          "type": "string",
          "description": "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."
        },
        "destroyScheduledDuration": {
          "description": "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.",
          "format": "google-duration",
          "type": "string"
        },
        "versionTemplate": {
          "$ref": "CryptoKeyVersionTemplate",
          "description": "A template describing settings for new CryptoKeyVersion instances. The properties of new CryptoKeyVersion instances created by either CreateCryptoKeyVersion or auto-rotation are controlled by this template."
        },
        "createTime": {
          "type": "string",
          "description": "Output only. The time at which this CryptoKey was created.",
          "format": "google-datetime",
          "readOnly": true
        },
        "labels": {
          "description": "Labels with user-defined metadata. For more information, see [Labeling Keys](https://documentation.s3ns.fr/kms/docs/labeling-keys).",
          "additionalProperties": {
            "type": "string"
          },
          "type": "object"
        },
        "primary": {
          "description": "Output only. A copy of the \"primary\" CryptoKeyVersion that will be used by Encrypt when this CryptoKey is given in EncryptRequest.name. The CryptoKey's primary version can be updated via UpdateCryptoKeyPrimaryVersion. Keys with purpose ENCRYPT_DECRYPT may have a primary. For other keys, this field will be omitted.",
          "readOnly": true,
          "$ref": "CryptoKeyVersion"
        },
        "name": {
          "type": "string",
          "readOnly": true,
          "description": "Output only. The resource name for this CryptoKey in the format `projects/*/locations/*/keyRings/*/cryptoKeys/*`."
        },
        "keyAccessJustificationsPolicy": {
          "$ref": "KeyAccessJustificationsPolicy",
          "description": "Optional. The policy used for Key Access Justifications Policy Enforcement. If this field is present and this key is enrolled in Key Access Justifications Policy Enforcement, the policy will be evaluated in encrypt, decrypt, and sign operations, and the operation will fail if rejected by the policy. The policy is defined by specifying zero or more allowed justification codes. https://documentation.s3ns.fr/assured-workloads/key-access-justifications/docs/justification-codes By default, this field is absent, and all justification codes are allowed."
        }
      }
    },
    "ExecuteSingleTenantHsmInstanceProposalRequest": {
      "type": "object",
      "id": "ExecuteSingleTenantHsmInstanceProposalRequest",
      "properties": {},
      "description": "Request message for HsmManagement.ExecuteSingleTenantHsmInstanceProposal."
    },
    "CryptoKeyVersionTemplate": {
      "id": "CryptoKeyVersionTemplate",
      "type": "object",
      "description": "A CryptoKeyVersionTemplate specifies the properties to use when creating a new CryptoKeyVersion, either manually with CreateCryptoKeyVersion or automatically as a result of auto-rotation.",
      "properties": {
        "algorithm": {
          "description": "Required. Algorithm to use when creating a CryptoKeyVersion based on this template. For backwards compatibility, GOOGLE_SYMMETRIC_ENCRYPTION is implied if both this field is omitted and CryptoKey.purpose is ENCRYPT_DECRYPT.",
          "enumDescriptions": [
            "Not specified.",
            "Creates symmetric encryption keys.",
            "AES-GCM (Galois Counter Mode) using 128-bit keys.",
            "AES-GCM (Galois Counter Mode) using 256-bit keys.",
            "AES-CBC (Cipher Block Chaining Mode) using 128-bit keys.",
            "AES-CBC (Cipher Block Chaining Mode) using 256-bit keys.",
            "AES-CTR (Counter Mode) using 128-bit keys.",
            "AES-CTR (Counter Mode) using 256-bit keys.",
            "RSASSA-PSS 2048 bit key with a SHA256 digest.",
            "RSASSA-PSS 3072 bit key with a SHA256 digest.",
            "RSASSA-PSS 4096 bit key with a SHA256 digest.",
            "RSASSA-PSS 4096 bit key with a SHA512 digest.",
            "RSASSA-PKCS1-v1_5 with a 2048 bit key and a SHA256 digest.",
            "RSASSA-PKCS1-v1_5 with a 3072 bit key and a SHA256 digest.",
            "RSASSA-PKCS1-v1_5 with a 4096 bit key and a SHA256 digest.",
            "RSASSA-PKCS1-v1_5 with a 4096 bit key and a SHA512 digest.",
            "RSASSA-PKCS1-v1_5 signing without encoding, with a 2048 bit key.",
            "RSASSA-PKCS1-v1_5 signing without encoding, with a 3072 bit key.",
            "RSASSA-PKCS1-v1_5 signing without encoding, with a 4096 bit key.",
            "RSAES-OAEP 2048 bit key with a SHA256 digest.",
            "RSAES-OAEP 3072 bit key with a SHA256 digest.",
            "RSAES-OAEP 4096 bit key with a SHA256 digest.",
            "RSAES-OAEP 4096 bit key with a SHA512 digest.",
            "RSAES-OAEP 2048 bit key with a SHA1 digest.",
            "RSAES-OAEP 3072 bit key with a SHA1 digest.",
            "RSAES-OAEP 4096 bit key with a SHA1 digest.",
            "ECDSA on the NIST P-256 curve with a SHA256 digest. Other hash functions can also be used: https://documentation.s3ns.fr/kms/docs/create-validate-signatures#ecdsa_support_for_other_hash_algorithms",
            "ECDSA on the NIST P-384 curve with a SHA384 digest. Other hash functions can also be used: https://documentation.s3ns.fr/kms/docs/create-validate-signatures#ecdsa_support_for_other_hash_algorithms",
            "ECDSA on the non-NIST secp256k1 curve. This curve is only supported for HSM protection level. Other hash functions can also be used: https://documentation.s3ns.fr/kms/docs/create-validate-signatures#ecdsa_support_for_other_hash_algorithms",
            "EdDSA on the Curve25519 in pure mode (taking data as input).",
            "HMAC-SHA256 signing with a 256 bit key.",
            "HMAC-SHA1 signing with a 160 bit key.",
            "HMAC-SHA384 signing with a 384 bit key.",
            "HMAC-SHA512 signing with a 512 bit key.",
            "HMAC-SHA224 signing with a 224 bit key.",
            "Algorithm representing symmetric encryption by an external key manager.",
            "ML-KEM-768 (FIPS 203)",
            "ML-KEM-1024 (FIPS 203)",
            "X-Wing hybrid KEM combining ML-KEM-768 with X25519 following datatracker.ietf.org/doc/draft-connolly-cfrg-xwing-kem/.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 1. Randomized version.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 3. Randomized version.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 5. Randomized version.",
            "The post-quantum stateless hash-based digital signature algorithm, at security level 1. Randomized version.",
            "The post-quantum stateless hash-based digital signature algorithm, at security level 1. Randomized pre-hash version supporting SHA256 digests.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 1. Randomized version supporting externally-computed message representatives.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 3. Randomized version supporting externally-computed message representatives.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 5. Randomized version supporting externally-computed message representatives."
          ],
          "type": "string",
          "enum": [
            "CRYPTO_KEY_VERSION_ALGORITHM_UNSPECIFIED",
            "GOOGLE_SYMMETRIC_ENCRYPTION",
            "AES_128_GCM",
            "AES_256_GCM",
            "AES_128_CBC",
            "AES_256_CBC",
            "AES_128_CTR",
            "AES_256_CTR",
            "RSA_SIGN_PSS_2048_SHA256",
            "RSA_SIGN_PSS_3072_SHA256",
            "RSA_SIGN_PSS_4096_SHA256",
            "RSA_SIGN_PSS_4096_SHA512",
            "RSA_SIGN_PKCS1_2048_SHA256",
            "RSA_SIGN_PKCS1_3072_SHA256",
            "RSA_SIGN_PKCS1_4096_SHA256",
            "RSA_SIGN_PKCS1_4096_SHA512",
            "RSA_SIGN_RAW_PKCS1_2048",
            "RSA_SIGN_RAW_PKCS1_3072",
            "RSA_SIGN_RAW_PKCS1_4096",
            "RSA_DECRYPT_OAEP_2048_SHA256",
            "RSA_DECRYPT_OAEP_3072_SHA256",
            "RSA_DECRYPT_OAEP_4096_SHA256",
            "RSA_DECRYPT_OAEP_4096_SHA512",
            "RSA_DECRYPT_OAEP_2048_SHA1",
            "RSA_DECRYPT_OAEP_3072_SHA1",
            "RSA_DECRYPT_OAEP_4096_SHA1",
            "EC_SIGN_P256_SHA256",
            "EC_SIGN_P384_SHA384",
            "EC_SIGN_SECP256K1_SHA256",
            "EC_SIGN_ED25519",
            "HMAC_SHA256",
            "HMAC_SHA1",
            "HMAC_SHA384",
            "HMAC_SHA512",
            "HMAC_SHA224",
            "EXTERNAL_SYMMETRIC_ENCRYPTION",
            "ML_KEM_768",
            "ML_KEM_1024",
            "KEM_XWING",
            "PQ_SIGN_ML_DSA_44",
            "PQ_SIGN_ML_DSA_65",
            "PQ_SIGN_ML_DSA_87",
            "PQ_SIGN_SLH_DSA_SHA2_128S",
            "PQ_SIGN_HASH_SLH_DSA_SHA2_128S_SHA256",
            "PQ_SIGN_ML_DSA_44_EXTERNAL_MU",
            "PQ_SIGN_ML_DSA_65_EXTERNAL_MU",
            "PQ_SIGN_ML_DSA_87_EXTERNAL_MU"
          ]
        },
        "protectionLevel": {
          "type": "string",
          "enum": [
            "PROTECTION_LEVEL_UNSPECIFIED",
            "SOFTWARE",
            "HSM",
            "EXTERNAL",
            "EXTERNAL_VPC",
            "HSM_SINGLE_TENANT"
          ],
          "description": "ProtectionLevel to use when creating a CryptoKeyVersion based on this template. Immutable. Defaults to SOFTWARE.",
          "enumDescriptions": [
            "Not specified.",
            "Crypto operations are performed in software.",
            "Crypto operations are performed in a Hardware Security Module.",
            "Crypto operations are performed by an external key manager.",
            "Crypto operations are performed in an EKM-over-VPC backend.",
            "Crypto operations are performed in a single-tenant HSM."
          ]
        }
      }
    },
    "ListKeyRingsResponse": {
      "type": "object",
      "id": "ListKeyRingsResponse",
      "properties": {
        "totalSize": {
          "description": "The total number of KeyRings that matched the query. This field is not populated if ListKeyRingsRequest.filter is applied.",
          "format": "int32",
          "type": "integer"
        },
        "keyRings": {
          "items": {
            "$ref": "KeyRing"
          },
          "description": "The list of KeyRings.",
          "type": "array"
        },
        "nextPageToken": {
          "type": "string",
          "description": "A token to retrieve next page of results. Pass this value in ListKeyRingsRequest.page_token to retrieve the next page of results."
        }
      },
      "description": "Response message for KeyManagementService.ListKeyRings."
    },
    "AddQuorumMember": {
      "id": "AddQuorumMember",
      "type": "object",
      "description": "Add a quorum member to the SingleTenantHsmInstance. This will increase the total_approver_count by 1. The SingleTenantHsmInstance must be in the ACTIVE state to perform this operation.",
      "properties": {
        "twoFactorPublicKeyPem": {
          "type": "string",
          "description": "Required. The public key associated with the 2FA key for the new quorum member to add. Public keys must be associated with RSA 2048 keys."
        }
      }
    },
    "ListSingleTenantHsmInstanceProposalsResponse": {
      "type": "object",
      "id": "ListSingleTenantHsmInstanceProposalsResponse",
      "properties": {
        "nextPageToken": {
          "type": "string",
          "description": "A token to retrieve next page of results. Pass this value in ListSingleTenantHsmInstanceProposalsRequest.page_token to retrieve the next page of results."
        },
        "singleTenantHsmInstanceProposals": {
          "items": {
            "$ref": "SingleTenantHsmInstanceProposal"
          },
          "description": "The list of SingleTenantHsmInstanceProposals.",
          "type": "array"
        },
        "totalSize": {
          "type": "integer",
          "description": "The total number of SingleTenantHsmInstanceProposals that matched the query. This field is not populated if ListSingleTenantHsmInstanceProposalsRequest.filter is applied.",
          "format": "int32"
        }
      },
      "description": "Response message for HsmManagement.ListSingleTenantHsmInstanceProposals."
    },
    "ListCryptoKeyVersionsResponse": {
      "properties": {
        "totalSize": {
          "type": "integer",
          "description": "The total number of CryptoKeyVersions that matched the query. This field is not populated if ListCryptoKeyVersionsRequest.filter is applied.",
          "format": "int32"
        },
        "nextPageToken": {
          "description": "A token to retrieve next page of results. Pass this value in ListCryptoKeyVersionsRequest.page_token to retrieve the next page of results.",
          "type": "string"
        },
        "cryptoKeyVersions": {
          "type": "array",
          "items": {
            "$ref": "CryptoKeyVersion"
          },
          "description": "The list of CryptoKeyVersions."
        }
      },
      "description": "Response message for KeyManagementService.ListCryptoKeyVersions.",
      "type": "object",
      "id": "ListCryptoKeyVersionsResponse"
    },
    "RawEncryptRequest": {
      "id": "RawEncryptRequest",
      "type": "object",
      "description": "Request message for KeyManagementService.RawEncrypt.",
      "properties": {
        "additionalAuthenticatedData": {
          "type": "string",
          "description": "Optional. Optional data that, if specified, must also be provided during decryption through RawDecryptRequest.additional_authenticated_data. This field may only be used in conjunction with an algorithm that accepts additional authenticated data (for example, AES-GCM). The maximum size depends on the key version's protection_level. For SOFTWARE keys, the plaintext must be no larger than 64KiB. For HSM keys, the combined length of the plaintext and additional_authenticated_data fields must be no larger than 8KiB.",
          "format": "byte"
        },
        "plaintextCrc32c": {
          "type": "string",
          "description": "Optional. An optional CRC32C checksum of the RawEncryptRequest.plaintext. If specified, KeyManagementService will verify the integrity of the received plaintext using this checksum. KeyManagementService will report an error if the checksum verification fails. If you receive a checksum error, your client should verify that CRC32C(plaintext) is equal to plaintext_crc32c, and if so, perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64"
        },
        "additionalAuthenticatedDataCrc32c": {
          "description": "Optional. An optional CRC32C checksum of the RawEncryptRequest.additional_authenticated_data. If specified, KeyManagementService will verify the integrity of the received additional_authenticated_data using this checksum. KeyManagementService will report an error if the checksum verification fails. If you receive a checksum error, your client should verify that CRC32C(additional_authenticated_data) is equal to additional_authenticated_data_crc32c, and if so, perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64",
          "type": "string"
        },
        "initializationVector": {
          "description": "Optional. A customer-supplied initialization vector that will be used for encryption. If it is not provided for AES-CBC and AES-CTR, one will be generated. It will be returned in RawEncryptResponse.initialization_vector.",
          "format": "byte",
          "type": "string"
        },
        "plaintext": {
          "description": "Required. The data to encrypt. Must be no larger than 64KiB. The maximum size depends on the key version's protection_level. For SOFTWARE keys, the plaintext must be no larger than 64KiB. For HSM keys, the combined length of the plaintext and additional_authenticated_data fields must be no larger than 8KiB.",
          "format": "byte",
          "type": "string"
        },
        "initializationVectorCrc32c": {
          "description": "Optional. An optional CRC32C checksum of the RawEncryptRequest.initialization_vector. If specified, KeyManagementService will verify the integrity of the received initialization_vector using this checksum. KeyManagementService will report an error if the checksum verification fails. If you receive a checksum error, your client should verify that CRC32C(initialization_vector) is equal to initialization_vector_crc32c, and if so, perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64",
          "type": "string"
        }
      }
    },
    "DeleteSingleTenantHsmInstance": {
      "description": "Delete the SingleTenantHsmInstance. Deleting a SingleTenantHsmInstance will make all CryptoKeys attached to the SingleTenantHsmInstance unusable. The SingleTenantHsmInstance must not be in the DELETING or DELETED state to perform this operation.",
      "properties": {},
      "id": "DeleteSingleTenantHsmInstance",
      "type": "object"
    },
    "RawEncryptResponse": {
      "id": "RawEncryptResponse",
      "type": "object",
      "description": "Response message for KeyManagementService.RawEncrypt.",
      "properties": {
        "ciphertextCrc32c": {
          "type": "string",
          "description": "Integrity verification field. A CRC32C checksum of the returned RawEncryptResponse.ciphertext. An integrity check of ciphertext can be performed by computing the CRC32C checksum of ciphertext and comparing your results to this field. Discard the response in case of non-matching checksum values, and perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64"
        },
        "initializationVectorCrc32c": {
          "description": "Integrity verification field. A CRC32C checksum of the returned RawEncryptResponse.initialization_vector. An integrity check of initialization_vector can be performed by computing the CRC32C checksum of initialization_vector and comparing your results to this field. Discard the response in case of non-matching checksum values, and perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64",
          "type": "string"
        },
        "verifiedAdditionalAuthenticatedDataCrc32c": {
          "description": "Integrity verification field. A flag indicating whether RawEncryptRequest.additional_authenticated_data_crc32c was received by KeyManagementService and used for the integrity verification of additional_authenticated_data. A false value of this field indicates either that // RawEncryptRequest.additional_authenticated_data_crc32c was left unset or that it was not delivered to KeyManagementService. If you've set RawEncryptRequest.additional_authenticated_data_crc32c but this field is still false, discard the response and perform a limited number of retries.",
          "type": "boolean"
        },
        "name": {
          "type": "string",
          "description": "The resource name of the CryptoKeyVersion used in encryption. Check this field to verify that the intended resource was used for encryption."
        },
        "verifiedPlaintextCrc32c": {
          "type": "boolean",
          "description": "Integrity verification field. A flag indicating whether RawEncryptRequest.plaintext_crc32c was received by KeyManagementService and used for the integrity verification of the plaintext. A false value of this field indicates either that RawEncryptRequest.plaintext_crc32c was left unset or that it was not delivered to KeyManagementService. If you've set RawEncryptRequest.plaintext_crc32c but this field is still false, discard the response and perform a limited number of retries."
        },
        "initializationVector": {
          "description": "The initialization vector (IV) generated by the service during encryption. This value must be stored and provided in RawDecryptRequest.initialization_vector at decryption time.",
          "format": "byte",
          "type": "string"
        },
        "tagLength": {
          "description": "The length of the authentication tag that is appended to the end of the ciphertext.",
          "format": "int32",
          "type": "integer"
        },
        "ciphertext": {
          "description": "The encrypted data. In the case of AES-GCM, the authentication tag is the tag_length bytes at the end of this field.",
          "format": "byte",
          "type": "string"
        },
        "verifiedInitializationVectorCrc32c": {
          "description": "Integrity verification field. A flag indicating whether RawEncryptRequest.initialization_vector_crc32c was received by KeyManagementService and used for the integrity verification of initialization_vector. A false value of this field indicates either that RawEncryptRequest.initialization_vector_crc32c was left unset or that it was not delivered to KeyManagementService. If you've set RawEncryptRequest.initialization_vector_crc32c but this field is still false, discard the response and perform a limited number of retries.",
          "type": "boolean"
        },
        "protectionLevel": {
          "description": "The ProtectionLevel of the CryptoKeyVersion used in encryption.",
          "enumDescriptions": [
            "Not specified.",
            "Crypto operations are performed in software.",
            "Crypto operations are performed in a Hardware Security Module.",
            "Crypto operations are performed by an external key manager.",
            "Crypto operations are performed in an EKM-over-VPC backend.",
            "Crypto operations are performed in a single-tenant HSM."
          ],
          "type": "string",
          "enum": [
            "PROTECTION_LEVEL_UNSPECIFIED",
            "SOFTWARE",
            "HSM",
            "EXTERNAL",
            "EXTERNAL_VPC",
            "HSM_SINGLE_TENANT"
          ]
        }
      }
    },
    "DecryptResponse": {
      "properties": {
        "plaintextCrc32c": {
          "type": "string",
          "description": "Integrity verification field. A CRC32C checksum of the returned DecryptResponse.plaintext. An integrity check of DecryptResponse.plaintext can be performed by computing the CRC32C checksum of DecryptResponse.plaintext and comparing your results to this field. Discard the response in case of non-matching checksum values, and perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: receiving this response message indicates that KeyManagementService is able to successfully decrypt the ciphertext. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64"
        },
        "usedPrimary": {
          "description": "Whether the Decryption was performed using the primary key version.",
          "type": "boolean"
        },
        "protectionLevel": {
          "description": "The ProtectionLevel of the CryptoKeyVersion used in decryption.",
          "enumDescriptions": [
            "Not specified.",
            "Crypto operations are performed in software.",
            "Crypto operations are performed in a Hardware Security Module.",
            "Crypto operations are performed by an external key manager.",
            "Crypto operations are performed in an EKM-over-VPC backend.",
            "Crypto operations are performed in a single-tenant HSM."
          ],
          "type": "string",
          "enum": [
            "PROTECTION_LEVEL_UNSPECIFIED",
            "SOFTWARE",
            "HSM",
            "EXTERNAL",
            "EXTERNAL_VPC",
            "HSM_SINGLE_TENANT"
          ]
        },
        "plaintext": {
          "type": "string",
          "description": "The decrypted data originally supplied in EncryptRequest.plaintext.",
          "format": "byte"
        }
      },
      "description": "Response message for KeyManagementService.Decrypt.",
      "type": "object",
      "id": "DecryptResponse"
    },
    "RawDecryptResponse": {
      "properties": {
        "verifiedAdditionalAuthenticatedDataCrc32c": {
          "type": "boolean",
          "description": "Integrity verification field. A flag indicating whether RawDecryptRequest.additional_authenticated_data_crc32c was received by KeyManagementService and used for the integrity verification of additional_authenticated_data. A false value of this field indicates either that // RawDecryptRequest.additional_authenticated_data_crc32c was left unset or that it was not delivered to KeyManagementService. If you've set RawDecryptRequest.additional_authenticated_data_crc32c but this field is still false, discard the response and perform a limited number of retries."
        },
        "plaintext": {
          "description": "The decrypted data.",
          "format": "byte",
          "type": "string"
        },
        "verifiedCiphertextCrc32c": {
          "description": "Integrity verification field. A flag indicating whether RawDecryptRequest.ciphertext_crc32c was received by KeyManagementService and used for the integrity verification of the ciphertext. A false value of this field indicates either that RawDecryptRequest.ciphertext_crc32c was left unset or that it was not delivered to KeyManagementService. If you've set RawDecryptRequest.ciphertext_crc32c but this field is still false, discard the response and perform a limited number of retries.",
          "type": "boolean"
        },
        "plaintextCrc32c": {
          "description": "Integrity verification field. A CRC32C checksum of the returned RawDecryptResponse.plaintext. An integrity check of plaintext can be performed by computing the CRC32C checksum of plaintext and comparing your results to this field. Discard the response in case of non-matching checksum values, and perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: receiving this response message indicates that KeyManagementService is able to successfully decrypt the ciphertext. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64",
          "type": "string"
        },
        "protectionLevel": {
          "type": "string",
          "enum": [
            "PROTECTION_LEVEL_UNSPECIFIED",
            "SOFTWARE",
            "HSM",
            "EXTERNAL",
            "EXTERNAL_VPC",
            "HSM_SINGLE_TENANT"
          ],
          "description": "The ProtectionLevel of the CryptoKeyVersion used in decryption.",
          "enumDescriptions": [
            "Not specified.",
            "Crypto operations are performed in software.",
            "Crypto operations are performed in a Hardware Security Module.",
            "Crypto operations are performed by an external key manager.",
            "Crypto operations are performed in an EKM-over-VPC backend.",
            "Crypto operations are performed in a single-tenant HSM."
          ]
        },
        "verifiedInitializationVectorCrc32c": {
          "type": "boolean",
          "description": "Integrity verification field. A flag indicating whether RawDecryptRequest.initialization_vector_crc32c was received by KeyManagementService and used for the integrity verification of initialization_vector. A false value of this field indicates either that RawDecryptRequest.initialization_vector_crc32c was left unset or that it was not delivered to KeyManagementService. If you've set RawDecryptRequest.initialization_vector_crc32c but this field is still false, discard the response and perform a limited number of retries."
        }
      },
      "description": "Response message for KeyManagementService.RawDecrypt.",
      "type": "object",
      "id": "RawDecryptResponse"
    },
    "GenerateRandomBytesRequest": {
      "properties": {
        "lengthBytes": {
          "type": "integer",
          "description": "The length in bytes of the amount of randomness to retrieve. Minimum 8 bytes, maximum 1024 bytes.",
          "format": "int32"
        },
        "protectionLevel": {
          "description": "The ProtectionLevel to use when generating the random data. Currently, only HSM protection level is supported.",
          "enumDescriptions": [
            "Not specified.",
            "Crypto operations are performed in software.",
            "Crypto operations are performed in a Hardware Security Module.",
            "Crypto operations are performed by an external key manager.",
            "Crypto operations are performed in an EKM-over-VPC backend.",
            "Crypto operations are performed in a single-tenant HSM."
          ],
          "type": "string",
          "enum": [
            "PROTECTION_LEVEL_UNSPECIFIED",
            "SOFTWARE",
            "HSM",
            "EXTERNAL",
            "EXTERNAL_VPC",
            "HSM_SINGLE_TENANT"
          ]
        }
      },
      "description": "Request message for KeyManagementService.GenerateRandomBytes.",
      "type": "object",
      "id": "GenerateRandomBytesRequest"
    },
    "TestIamPermissionsResponse": {
      "type": "object",
      "id": "TestIamPermissionsResponse",
      "properties": {
        "permissions": {
          "items": {
            "type": "string"
          },
          "description": "A subset of `TestPermissionsRequest.permissions` that the caller is allowed.",
          "type": "array"
        }
      },
      "description": "Response message for `TestIamPermissions` method."
    },
    "ChallengeReply": {
      "type": "object",
      "id": "ChallengeReply",
      "properties": {
        "signedChallenge": {
          "description": "Required. The signed challenge associated with the 2FA key. The signature must be RSASSA-PKCS1 v1.5 with a SHA256 digest.",
          "format": "byte",
          "type": "string"
        },
        "publicKeyPem": {
          "type": "string",
          "description": "Required. The public key associated with the 2FA key."
        }
      },
      "description": "A reply to a challenge signed by a 2FA key."
    },
    "KeyAccessJustificationsPolicy": {
      "id": "KeyAccessJustificationsPolicy",
      "type": "object",
      "description": "A KeyAccessJustificationsPolicy specifies zero or more allowed AccessReason values for encrypt, decrypt, and sign operations on a CryptoKey or KeyAccessJustificationsPolicyConfig (the default Key Access Justifications policy).",
      "properties": {
        "allowedAccessReasons": {
          "description": "The list of allowed reasons for access to a CryptoKey. Note that empty allowed_access_reasons has a different meaning depending on where this message appears. If this is under KeyAccessJustificationsPolicyConfig, it means allow-all. If this is under CryptoKey, it means deny-all.",
          "items": {
            "type": "string",
            "enumDeprecated": [
              false,
              false,
              false,
              false,
              false,
              false,
              false,
              false,
              true,
              true,
              false,
              false
            ],
            "enum": [
              "REASON_UNSPECIFIED",
              "CUSTOMER_INITIATED_SUPPORT",
              "GOOGLE_INITIATED_SERVICE",
              "THIRD_PARTY_DATA_REQUEST",
              "GOOGLE_INITIATED_REVIEW",
              "CUSTOMER_INITIATED_ACCESS",
              "GOOGLE_INITIATED_SYSTEM_OPERATION",
              "REASON_NOT_EXPECTED",
              "MODIFIED_CUSTOMER_INITIATED_ACCESS",
              "MODIFIED_GOOGLE_INITIATED_SYSTEM_OPERATION",
              "GOOGLE_RESPONSE_TO_PRODUCTION_ALERT",
              "CUSTOMER_AUTHORIZED_WORKFLOW_SERVICING"
            ],
            "enumDescriptions": [
              "Unspecified access reason.",
              "Customer-initiated support.",
              "Cloud de Confiance initiated access for system management and troubleshooting.",
              "Cloud de Confiance initiated access in response to a legal request or legal process.",
              "Cloud de Confiance initiated access for security, fraud, abuse, or compliance purposes.",
              "Customer uses their account to perform any access to their own data which their IAM policy authorizes.",
              "Cloud de Confiance systems access customer data to help optimize the structure of the data or quality for future uses by the customer.",
              "No reason is expected for this key request.",
              "Customer uses their account to perform any access to their own data which their IAM policy authorizes, and one of the following is true: * A Cloud de Confiance administrator has reset the root-access account associated with the user's organization within the past 7 days. * A Cloud de Confiance initiated emergency access operation has interacted with a resource in the same project or folder as the currently accessed resource within the past 7 days.",
              "Cloud de Confiance systems access customer data to help optimize the structure of the data or quality for future uses by the customer, and one of the following is true: * A Cloud de Confiance administrator has reset the root-access account associated with the user's organization within the past 7 days. * A Cloud de Confiance initiated emergency access operation has interacted with a resource in the same project or folder as the currently accessed resource within the past 7 days.",
              "Cloud de Confiance initiated access to maintain system reliability.",
              "One of the following operations is being executed while simultaneously encountering an internal technical issue which prevented a more precise justification code from being generated: * Your account has been used to perform any access to your own data which your IAM policy authorizes. * An automated Cloud de Confiance system operates on encrypted customer data which your IAM policy authorizes. * Customer-initiated Cloud de Confiance support access. * Cloud de Confiance initiated support access to protect system reliability."
            ]
          },
          "type": "array"
        }
      }
    },
    "ImportCryptoKeyVersionRequest": {
      "description": "Request message for KeyManagementService.ImportCryptoKeyVersion.",
      "properties": {
        "cryptoKeyVersion": {
          "description": "Optional. The optional name of an existing CryptoKeyVersion to target for an import operation. If this field is not present, a new CryptoKeyVersion containing the supplied key material is created. If this field is present, the supplied key material is imported into the existing CryptoKeyVersion. To import into an existing CryptoKeyVersion, the CryptoKeyVersion must be a child of ImportCryptoKeyVersionRequest.parent, have been previously created via ImportCryptoKeyVersion, and be in DESTROYED or IMPORT_FAILED state. The key material and algorithm must match the previous CryptoKeyVersion exactly if the CryptoKeyVersion has ever contained key material.",
          "type": "string"
        },
        "wrappedKey": {
          "type": "string",
          "description": "Optional. The wrapped key material to import. Before wrapping, key material must be formatted. If importing symmetric key material, the expected key material format is plain bytes. If importing asymmetric key material, the expected key material format is PKCS#8-encoded DER (the PrivateKeyInfo structure from RFC 5208). When wrapping with import methods (RSA_OAEP_3072_SHA1_AES_256 or RSA_OAEP_4096_SHA1_AES_256 or RSA_OAEP_3072_SHA256_AES_256 or RSA_OAEP_4096_SHA256_AES_256), this field must contain the concatenation of: 1. An ephemeral AES-256 wrapping key wrapped with the public_key using RSAES-OAEP with SHA-1/SHA-256, MGF1 with SHA-1/SHA-256, and an empty label. 2. The formatted key to be imported, wrapped with the ephemeral AES-256 key using AES-KWP (RFC 5649). This format is the same as the format produced by PKCS#11 mechanism CKM_RSA_AES_KEY_WRAP. When wrapping with import methods (RSA_OAEP_3072_SHA256 or RSA_OAEP_4096_SHA256), this field must contain the formatted key to be imported, wrapped with the public_key using RSAES-OAEP with SHA-256, MGF1 with SHA-256, and an empty label.",
          "format": "byte"
        },
        "algorithm": {
          "type": "string",
          "enum": [
            "CRYPTO_KEY_VERSION_ALGORITHM_UNSPECIFIED",
            "GOOGLE_SYMMETRIC_ENCRYPTION",
            "AES_128_GCM",
            "AES_256_GCM",
            "AES_128_CBC",
            "AES_256_CBC",
            "AES_128_CTR",
            "AES_256_CTR",
            "RSA_SIGN_PSS_2048_SHA256",
            "RSA_SIGN_PSS_3072_SHA256",
            "RSA_SIGN_PSS_4096_SHA256",
            "RSA_SIGN_PSS_4096_SHA512",
            "RSA_SIGN_PKCS1_2048_SHA256",
            "RSA_SIGN_PKCS1_3072_SHA256",
            "RSA_SIGN_PKCS1_4096_SHA256",
            "RSA_SIGN_PKCS1_4096_SHA512",
            "RSA_SIGN_RAW_PKCS1_2048",
            "RSA_SIGN_RAW_PKCS1_3072",
            "RSA_SIGN_RAW_PKCS1_4096",
            "RSA_DECRYPT_OAEP_2048_SHA256",
            "RSA_DECRYPT_OAEP_3072_SHA256",
            "RSA_DECRYPT_OAEP_4096_SHA256",
            "RSA_DECRYPT_OAEP_4096_SHA512",
            "RSA_DECRYPT_OAEP_2048_SHA1",
            "RSA_DECRYPT_OAEP_3072_SHA1",
            "RSA_DECRYPT_OAEP_4096_SHA1",
            "EC_SIGN_P256_SHA256",
            "EC_SIGN_P384_SHA384",
            "EC_SIGN_SECP256K1_SHA256",
            "EC_SIGN_ED25519",
            "HMAC_SHA256",
            "HMAC_SHA1",
            "HMAC_SHA384",
            "HMAC_SHA512",
            "HMAC_SHA224",
            "EXTERNAL_SYMMETRIC_ENCRYPTION",
            "ML_KEM_768",
            "ML_KEM_1024",
            "KEM_XWING",
            "PQ_SIGN_ML_DSA_44",
            "PQ_SIGN_ML_DSA_65",
            "PQ_SIGN_ML_DSA_87",
            "PQ_SIGN_SLH_DSA_SHA2_128S",
            "PQ_SIGN_HASH_SLH_DSA_SHA2_128S_SHA256",
            "PQ_SIGN_ML_DSA_44_EXTERNAL_MU",
            "PQ_SIGN_ML_DSA_65_EXTERNAL_MU",
            "PQ_SIGN_ML_DSA_87_EXTERNAL_MU"
          ],
          "description": "Required. The algorithm of the key being imported. This does not need to match the version_template of the CryptoKey this version imports into.",
          "enumDescriptions": [
            "Not specified.",
            "Creates symmetric encryption keys.",
            "AES-GCM (Galois Counter Mode) using 128-bit keys.",
            "AES-GCM (Galois Counter Mode) using 256-bit keys.",
            "AES-CBC (Cipher Block Chaining Mode) using 128-bit keys.",
            "AES-CBC (Cipher Block Chaining Mode) using 256-bit keys.",
            "AES-CTR (Counter Mode) using 128-bit keys.",
            "AES-CTR (Counter Mode) using 256-bit keys.",
            "RSASSA-PSS 2048 bit key with a SHA256 digest.",
            "RSASSA-PSS 3072 bit key with a SHA256 digest.",
            "RSASSA-PSS 4096 bit key with a SHA256 digest.",
            "RSASSA-PSS 4096 bit key with a SHA512 digest.",
            "RSASSA-PKCS1-v1_5 with a 2048 bit key and a SHA256 digest.",
            "RSASSA-PKCS1-v1_5 with a 3072 bit key and a SHA256 digest.",
            "RSASSA-PKCS1-v1_5 with a 4096 bit key and a SHA256 digest.",
            "RSASSA-PKCS1-v1_5 with a 4096 bit key and a SHA512 digest.",
            "RSASSA-PKCS1-v1_5 signing without encoding, with a 2048 bit key.",
            "RSASSA-PKCS1-v1_5 signing without encoding, with a 3072 bit key.",
            "RSASSA-PKCS1-v1_5 signing without encoding, with a 4096 bit key.",
            "RSAES-OAEP 2048 bit key with a SHA256 digest.",
            "RSAES-OAEP 3072 bit key with a SHA256 digest.",
            "RSAES-OAEP 4096 bit key with a SHA256 digest.",
            "RSAES-OAEP 4096 bit key with a SHA512 digest.",
            "RSAES-OAEP 2048 bit key with a SHA1 digest.",
            "RSAES-OAEP 3072 bit key with a SHA1 digest.",
            "RSAES-OAEP 4096 bit key with a SHA1 digest.",
            "ECDSA on the NIST P-256 curve with a SHA256 digest. Other hash functions can also be used: https://documentation.s3ns.fr/kms/docs/create-validate-signatures#ecdsa_support_for_other_hash_algorithms",
            "ECDSA on the NIST P-384 curve with a SHA384 digest. Other hash functions can also be used: https://documentation.s3ns.fr/kms/docs/create-validate-signatures#ecdsa_support_for_other_hash_algorithms",
            "ECDSA on the non-NIST secp256k1 curve. This curve is only supported for HSM protection level. Other hash functions can also be used: https://documentation.s3ns.fr/kms/docs/create-validate-signatures#ecdsa_support_for_other_hash_algorithms",
            "EdDSA on the Curve25519 in pure mode (taking data as input).",
            "HMAC-SHA256 signing with a 256 bit key.",
            "HMAC-SHA1 signing with a 160 bit key.",
            "HMAC-SHA384 signing with a 384 bit key.",
            "HMAC-SHA512 signing with a 512 bit key.",
            "HMAC-SHA224 signing with a 224 bit key.",
            "Algorithm representing symmetric encryption by an external key manager.",
            "ML-KEM-768 (FIPS 203)",
            "ML-KEM-1024 (FIPS 203)",
            "X-Wing hybrid KEM combining ML-KEM-768 with X25519 following datatracker.ietf.org/doc/draft-connolly-cfrg-xwing-kem/.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 1. Randomized version.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 3. Randomized version.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 5. Randomized version.",
            "The post-quantum stateless hash-based digital signature algorithm, at security level 1. Randomized version.",
            "The post-quantum stateless hash-based digital signature algorithm, at security level 1. Randomized pre-hash version supporting SHA256 digests.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 1. Randomized version supporting externally-computed message representatives.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 3. Randomized version supporting externally-computed message representatives.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 5. Randomized version supporting externally-computed message representatives."
          ]
        },
        "rsaAesWrappedKey": {
          "description": "Optional. This field has the same meaning as wrapped_key. Prefer to use that field in new work. Either that field or this field (but not both) must be specified.",
          "format": "byte",
          "type": "string"
        },
        "importJob": {
          "description": "Required. The name of the ImportJob that was used to wrap this key material.",
          "type": "string"
        }
      },
      "id": "ImportCryptoKeyVersionRequest",
      "type": "object"
    },
    "KeyAccessJustificationsPolicyConfig": {
      "properties": {
        "name": {
          "description": "Identifier. Represents the resource name for this KeyAccessJustificationsPolicyConfig in the format of \"{organizations|folders|projects}/*/kajPolicyConfig\".",
          "type": "string"
        },
        "defaultKeyAccessJustificationPolicy": {
          "$ref": "KeyAccessJustificationsPolicy",
          "description": "Optional. Specifies the default key access justifications (KAJ) policy used when a CryptoKey is created in this folder. This is only used when a Key Access Justifications policy is not provided in the CreateCryptoKeyRequest. This overrides any default policies in its ancestry. If this field is unset, or is set but contains an empty allowed_access_reasons list, no default Key Access Justifications (KAJ) policy configuration is active. In this scenario, all newly created keys will default to an \"allow-all\" policy."
        },
        "defaultPolicyAvailable": {
          "readOnly": true,
          "description": "Output only. Indicates whether this parent resource is available to default policy feature. Please consult [the prerequisite of default policy feature](https://documentation.s3ns.fr/assured-workloads/key-access-justifications/docs/set-default-policy#before) for more details.",
          "type": "boolean"
        }
      },
      "description": "Represents a singleton configuration for Key Access Justifications policies.",
      "type": "object",
      "id": "KeyAccessJustificationsPolicyConfig"
    },
    "KeyOperationAttestation": {
      "description": "Contains an HSM-generated attestation about a key operation. For more information, see [Verifying attestations] (https://documentation.s3ns.fr/kms/docs/attest-key).",
      "properties": {
        "content": {
          "readOnly": true,
          "description": "Output only. The attestation data provided by the HSM when the key operation was performed.",
          "format": "byte",
          "type": "string"
        },
        "format": {
          "readOnly": true,
          "enum": [
            "ATTESTATION_FORMAT_UNSPECIFIED",
            "CAVIUM_V1_COMPRESSED",
            "CAVIUM_V2_COMPRESSED"
          ],
          "description": "Output only. The format of the attestation data.",
          "enumDescriptions": [
            "Not specified.",
            "Cavium HSM attestation compressed with gzip. Note that this format is defined by Cavium and subject to change at any time. See https://www.marvell.com/products/security-solutions/nitrox-hs-adapters/software-key-attestation.html.",
            "Cavium HSM attestation V2 compressed with gzip. This is a new format introduced in Cavium's version 3.2-08."
          ],
          "type": "string"
        },
        "certChains": {
          "$ref": "CertificateChains",
          "description": "Output only. The certificate chains needed to validate the attestation",
          "readOnly": true
        }
      },
      "id": "KeyOperationAttestation",
      "type": "object"
    },
    "ChecksummedData": {
      "id": "ChecksummedData",
      "type": "object",
      "description": "Data with integrity verification field.",
      "properties": {
        "data": {
          "type": "string",
          "description": "Raw Data.",
          "format": "byte"
        },
        "crc32cChecksum": {
          "description": "Integrity verification field. A CRC32C checksum of the returned ChecksummedData.data. An integrity check of ChecksummedData.data can be performed by computing the CRC32C checksum of ChecksummedData.data and comparing your results to this field. Discard the response in case of non-matching checksum values, and perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed `2^32-1`, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64",
          "type": "string"
        }
      }
    },
    "EkmConnection": {
      "id": "EkmConnection",
      "type": "object",
      "description": "An EkmConnection represents an individual EKM connection. It can be used for creating CryptoKeys and CryptoKeyVersions with a ProtectionLevel of EXTERNAL_VPC, as well as performing cryptographic operations using keys created within the EkmConnection.",
      "properties": {
        "etag": {
          "description": "Optional. Etag of the currently stored EkmConnection.",
          "type": "string"
        },
        "keyManagementMode": {
          "type": "string",
          "enum": [
            "KEY_MANAGEMENT_MODE_UNSPECIFIED",
            "MANUAL",
            "CLOUD_KMS"
          ],
          "description": "Optional. Describes who can perform control plane operations on the EKM. If unset, this defaults to MANUAL.",
          "enumDescriptions": [
            "Not specified.",
            "EKM-side key management operations on CryptoKeys created with this EkmConnection must be initiated from the EKM directly and cannot be performed from Cloud KMS. This means that: * When creating a CryptoKeyVersion associated with this EkmConnection, the caller must supply the key path of pre-existing external key material that will be linked to the CryptoKeyVersion. * Destruction of external key material cannot be requested via the Cloud KMS API and must be performed directly in the EKM. * Automatic rotation of key material is not supported.",
            "All CryptoKeys created with this EkmConnection use EKM-side key management operations initiated from Cloud KMS. This means that: * When a CryptoKeyVersion associated with this EkmConnection is created, the EKM automatically generates new key material and a new key path. The caller cannot supply the key path of pre-existing external key material. * Destruction of external key material associated with this EkmConnection can be requested by calling DestroyCryptoKeyVersion. * Automatic rotation of key material is supported."
          ]
        },
        "name": {
          "type": "string",
          "readOnly": true,
          "description": "Output only. The resource name for the EkmConnection in the format `projects/*/locations/*/ekmConnections/*`."
        },
        "createTime": {
          "description": "Output only. The time at which the EkmConnection was created.",
          "format": "google-datetime",
          "readOnly": true,
          "type": "string"
        },
        "cryptoSpacePath": {
          "type": "string",
          "description": "Optional. Identifies the EKM Crypto Space that this EkmConnection maps to. Note: This field is required if KeyManagementMode is CLOUD_KMS."
        },
        "serviceResolvers": {
          "items": {
            "$ref": "ServiceResolver"
          },
          "description": "Optional. A list of ServiceResolvers where the EKM can be reached. There should be one ServiceResolver per EKM replica. Currently, only a single ServiceResolver is supported.",
          "type": "array"
        }
      }
    },
    "AsymmetricDecryptRequest": {
      "properties": {
        "ciphertext": {
          "type": "string",
          "description": "Required. The data encrypted with the named CryptoKeyVersion's public key using OAEP.",
          "format": "byte"
        },
        "ciphertextCrc32c": {
          "description": "Optional. An optional CRC32C checksum of the AsymmetricDecryptRequest.ciphertext. If specified, KeyManagementService will verify the integrity of the received AsymmetricDecryptRequest.ciphertext using this checksum. KeyManagementService will report an error if the checksum verification fails. If you receive a checksum error, your client should verify that CRC32C(AsymmetricDecryptRequest.ciphertext) is equal to AsymmetricDecryptRequest.ciphertext_crc32c, and if so, perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64",
          "type": "string"
        }
      },
      "description": "Request message for KeyManagementService.AsymmetricDecrypt.",
      "type": "object",
      "id": "AsymmetricDecryptRequest"
    },
    "ShowEffectiveKeyAccessJustificationsEnrollmentConfigResponse": {
      "id": "ShowEffectiveKeyAccessJustificationsEnrollmentConfigResponse",
      "type": "object",
      "description": "Represents a response message for KeyAccessJustificationsConfig.ShowEffectiveKeyAccessJustificationsEnrollmentConfig",
      "properties": {
        "softwareConfig": {
          "description": "Contains the effective KeyAccessJustificationsEnrollmentConfig for software keys.",
          "$ref": "KeyAccessJustificationsEnrollmentConfig"
        },
        "hardwareConfig": {
          "description": "Contains the effective KeyAccessJustificationsEnrollmentConfig for hardware keys.",
          "$ref": "KeyAccessJustificationsEnrollmentConfig"
        },
        "externalConfig": {
          "description": "Contains the effective KeyAccessJustificationsEnrollmentConfig for external keys.",
          "$ref": "KeyAccessJustificationsEnrollmentConfig"
        }
      }
    },
    "QuorumAuth": {
      "properties": {
        "requiredApproverCount": {
          "readOnly": true,
          "description": "Output only. The required numbers of approvers. The M value used for M of N quorum auth. Must be greater than or equal to 2 and less than or equal to total_approver_count - 1.",
          "format": "int32",
          "type": "integer"
        },
        "twoFactorPublicKeyPems": {
          "description": "Output only. The public keys associated with the 2FA keys for M of N quorum auth.",
          "readOnly": true,
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        "totalApproverCount": {
          "type": "integer",
          "description": "Required. The total number of approvers. This is the N value used for M of N quorum auth. Must be greater than or equal to 3 and less than or equal to 16.",
          "format": "int32"
        }
      },
      "description": "Configuration for M of N quorum auth.",
      "type": "object",
      "id": "QuorumAuth"
    },
    "AsymmetricDecryptResponse": {
      "id": "AsymmetricDecryptResponse",
      "type": "object",
      "description": "Response message for KeyManagementService.AsymmetricDecrypt.",
      "properties": {
        "plaintextCrc32c": {
          "description": "Integrity verification field. A CRC32C checksum of the returned AsymmetricDecryptResponse.plaintext. An integrity check of AsymmetricDecryptResponse.plaintext can be performed by computing the CRC32C checksum of AsymmetricDecryptResponse.plaintext and comparing your results to this field. Discard the response in case of non-matching checksum values, and perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64",
          "type": "string"
        },
        "protectionLevel": {
          "type": "string",
          "enum": [
            "PROTECTION_LEVEL_UNSPECIFIED",
            "SOFTWARE",
            "HSM",
            "EXTERNAL",
            "EXTERNAL_VPC",
            "HSM_SINGLE_TENANT"
          ],
          "description": "The ProtectionLevel of the CryptoKeyVersion used in decryption.",
          "enumDescriptions": [
            "Not specified.",
            "Crypto operations are performed in software.",
            "Crypto operations are performed in a Hardware Security Module.",
            "Crypto operations are performed by an external key manager.",
            "Crypto operations are performed in an EKM-over-VPC backend.",
            "Crypto operations are performed in a single-tenant HSM."
          ]
        },
        "plaintext": {
          "description": "The decrypted data originally encrypted with the matching public key.",
          "format": "byte",
          "type": "string"
        },
        "verifiedCiphertextCrc32c": {
          "description": "Integrity verification field. A flag indicating whether AsymmetricDecryptRequest.ciphertext_crc32c was received by KeyManagementService and used for the integrity verification of the ciphertext. A false value of this field indicates either that AsymmetricDecryptRequest.ciphertext_crc32c was left unset or that it was not delivered to KeyManagementService. If you've set AsymmetricDecryptRequest.ciphertext_crc32c but this field is still false, discard the response and perform a limited number of retries.",
          "type": "boolean"
        }
      }
    },
    "ListKeyHandlesResponse": {
      "properties": {
        "keyHandles": {
          "type": "array",
          "items": {
            "$ref": "KeyHandle"
          },
          "description": "Resulting KeyHandles."
        },
        "nextPageToken": {
          "description": "A token to retrieve next page of results. Pass this value in ListKeyHandlesRequest.page_token to retrieve the next page of results.",
          "type": "string"
        }
      },
      "description": "Response message for Autokey.ListKeyHandles.",
      "type": "object",
      "id": "ListKeyHandlesResponse"
    },
    "QuorumReply": {
      "id": "QuorumReply",
      "type": "object",
      "description": "The reply to QuorumParameters for approving the proposal.",
      "properties": {
        "challengeReplies": {
          "type": "array",
          "items": {
            "$ref": "ChallengeReply"
          },
          "description": "Required. The challenge replies to approve the proposal. Challenge replies can be sent across multiple requests. The proposal will be approved when required_approver_count challenge replies are provided."
        }
      }
    },
    "ExternalProtectionLevelOptions": {
      "description": "ExternalProtectionLevelOptions stores a group of additional fields for configuring a CryptoKeyVersion that are specific to the EXTERNAL protection level and EXTERNAL_VPC protection levels.",
      "properties": {
        "ekmConnectionKeyPath": {
          "description": "The path to the external key material on the EKM when using EkmConnection e.g., \"v0/my/key\". Set this field instead of external_key_uri when using an EkmConnection.",
          "type": "string"
        },
        "externalKeyUri": {
          "type": "string",
          "description": "The URI for an external resource that this CryptoKeyVersion represents."
        }
      },
      "id": "ExternalProtectionLevelOptions",
      "type": "object"
    },
    "RegisterTwoFactorAuthKeys": {
      "id": "RegisterTwoFactorAuthKeys",
      "type": "object",
      "description": "Register 2FA keys for the SingleTenantHsmInstance. This operation requires all Challenges to be signed by 2FA keys. The SingleTenantHsmInstance must be in the PENDING_TWO_FACTOR_AUTH_REGISTRATION state to perform this operation.",
      "properties": {
        "requiredApproverCount": {
          "type": "integer",
          "description": "Required. The required numbers of approvers to set for the SingleTenantHsmInstance. This is the M value used for M of N quorum auth. Must be greater than or equal to 2 and less than or equal to total_approver_count - 1.",
          "format": "int32"
        },
        "twoFactorPublicKeyPems": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Required. The public keys associated with the 2FA keys for M of N quorum auth. Public keys must be associated with RSA 2048 keys."
        }
      }
    },
    "WrappingPublicKey": {
      "properties": {
        "pem": {
          "type": "string",
          "description": "The public key, encoded in PEM format. For more information, see the [RFC 7468](https://tools.ietf.org/html/rfc7468) sections for [General Considerations](https://tools.ietf.org/html/rfc7468#section-2) and [Textual Encoding of Subject Public Key Info] (https://tools.ietf.org/html/rfc7468#section-13)."
        }
      },
      "description": "The public key component of the wrapping key. For details of the type of key this public key corresponds to, see the ImportMethod.",
      "type": "object",
      "id": "WrappingPublicKey"
    },
    "SetIamPolicyRequest": {
      "description": "Request message for `SetIamPolicy` method.",
      "properties": {
        "policy": {
          "$ref": "Policy",
          "description": "REQUIRED: The complete policy to be applied to the `resource`. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Cloud de Confiance services (such as Projects) might reject them."
        },
        "updateMask": {
          "description": "OPTIONAL: A FieldMask specifying which fields of the policy to modify. Only the fields in the mask will be modified. If no mask is provided, the following default mask is used: `paths: \"bindings, etag\"`",
          "format": "google-fieldmask",
          "type": "string"
        }
      },
      "id": "SetIamPolicyRequest",
      "type": "object"
    },
    "Empty": {
      "id": "Empty",
      "type": "object",
      "description": "A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }",
      "properties": {}
    },
    "ShowEffectiveAutokeyConfigResponse": {
      "properties": {
        "keyProject": {
          "description": "Name of the key project configured in the resource project's folder ancestry.",
          "type": "string"
        }
      },
      "description": "Response message for ShowEffectiveAutokeyConfig.",
      "type": "object",
      "id": "ShowEffectiveAutokeyConfigResponse"
    },
    "ServiceResolver": {
      "description": "A ServiceResolver represents an EKM replica that can be reached within an EkmConnection.",
      "properties": {
        "serverCertificates": {
          "type": "array",
          "items": {
            "$ref": "Certificate"
          },
          "description": "Required. A list of leaf server certificates used to authenticate HTTPS connections to the EKM replica. Currently, a maximum of 10 Certificate is supported."
        },
        "serviceDirectoryService": {
          "description": "Required. The resource name of the Service Directory service pointing to an EKM replica, in the format `projects/*/locations/*/namespaces/*/services/*`.",
          "type": "string"
        },
        "hostname": {
          "type": "string",
          "description": "Required. The hostname of the EKM replica used at TLS and HTTP layers."
        },
        "endpointFilter": {
          "type": "string",
          "description": "Optional. The filter applied to the endpoints of the resolved service. If no filter is specified, all endpoints will be considered. An endpoint will be chosen arbitrarily from the filtered list for each request. For endpoint filter syntax and examples, see https://documentation.s3ns.fr/service-directory/docs/reference/rpc/google.cloud.servicedirectory.v1#resolveservicerequest."
        }
      },
      "id": "ServiceResolver",
      "type": "object"
    },
    "EncryptResponse": {
      "type": "object",
      "id": "EncryptResponse",
      "properties": {
        "verifiedPlaintextCrc32c": {
          "description": "Integrity verification field. A flag indicating whether EncryptRequest.plaintext_crc32c was received by KeyManagementService and used for the integrity verification of the plaintext. A false value of this field indicates either that EncryptRequest.plaintext_crc32c was left unset or that it was not delivered to KeyManagementService. If you've set EncryptRequest.plaintext_crc32c but this field is still false, discard the response and perform a limited number of retries.",
          "type": "boolean"
        },
        "protectionLevel": {
          "description": "The ProtectionLevel of the CryptoKeyVersion used in encryption.",
          "enumDescriptions": [
            "Not specified.",
            "Crypto operations are performed in software.",
            "Crypto operations are performed in a Hardware Security Module.",
            "Crypto operations are performed by an external key manager.",
            "Crypto operations are performed in an EKM-over-VPC backend.",
            "Crypto operations are performed in a single-tenant HSM."
          ],
          "type": "string",
          "enum": [
            "PROTECTION_LEVEL_UNSPECIFIED",
            "SOFTWARE",
            "HSM",
            "EXTERNAL",
            "EXTERNAL_VPC",
            "HSM_SINGLE_TENANT"
          ]
        },
        "name": {
          "description": "The resource name of the CryptoKeyVersion used in encryption. Check this field to verify that the intended resource was used for encryption.",
          "type": "string"
        },
        "ciphertext": {
          "description": "The encrypted data.",
          "format": "byte",
          "type": "string"
        },
        "ciphertextCrc32c": {
          "description": "Integrity verification field. A CRC32C checksum of the returned EncryptResponse.ciphertext. An integrity check of EncryptResponse.ciphertext can be performed by computing the CRC32C checksum of EncryptResponse.ciphertext and comparing your results to this field. Discard the response in case of non-matching checksum values, and perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64",
          "type": "string"
        },
        "verifiedAdditionalAuthenticatedDataCrc32c": {
          "description": "Integrity verification field. A flag indicating whether EncryptRequest.additional_authenticated_data_crc32c was received by KeyManagementService and used for the integrity verification of the AAD. A false value of this field indicates either that EncryptRequest.additional_authenticated_data_crc32c was left unset or that it was not delivered to KeyManagementService. If you've set EncryptRequest.additional_authenticated_data_crc32c but this field is still false, discard the response and perform a limited number of retries.",
          "type": "boolean"
        }
      },
      "description": "Response message for KeyManagementService.Encrypt."
    },
    "Expr": {
      "properties": {
        "expression": {
          "type": "string",
          "description": "Textual representation of an expression in Common Expression Language syntax."
        },
        "description": {
          "description": "Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI.",
          "type": "string"
        },
        "title": {
          "description": "Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression.",
          "type": "string"
        },
        "location": {
          "type": "string",
          "description": "Optional. String indicating the location of the expression for error reporting, e.g. a file name and a position in the file."
        }
      },
      "description": "Represents a textual expression in the Common Expression Language (CEL) syntax. CEL is a C-like expression language. The syntax and semantics of CEL are documented at https://github.com/google/cel-spec. Example (Comparison): title: \"Summary size limit\" description: \"Determines if a summary is less than 100 chars\" expression: \"document.summary.size() \u003c 100\" Example (Equality): title: \"Requestor is owner\" description: \"Determines if requestor is the document owner\" expression: \"document.owner == request.auth.claims.email\" Example (Logic): title: \"Public documents\" description: \"Determine whether the document should be publicly visible\" expression: \"document.type != 'private' && document.type != 'internal'\" Example (Data Manipulation): title: \"Notification string\" description: \"Create a notification string with a timestamp.\" expression: \"'New message received at ' + string(document.create_time)\" The exact variables and functions that may be referenced within an expression are determined by the service that evaluates it. See the service documentation for additional information.",
      "type": "object",
      "id": "Expr"
    },
    "ListLocationsResponse": {
      "type": "object",
      "id": "ListLocationsResponse",
      "properties": {
        "nextPageToken": {
          "type": "string",
          "description": "The standard List next-page token."
        },
        "locations": {
          "type": "array",
          "description": "A list of locations that matches the specified filter in the request.",
          "items": {
            "$ref": "Location"
          }
        }
      },
      "description": "The response message for Locations.ListLocations."
    },
    "AuditConfig": {
      "properties": {
        "service": {
          "description": "Specifies a service that will be enabled for audit logging. For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that covers all services.",
          "type": "string"
        },
        "auditLogConfigs": {
          "description": "The configuration for logging of each type of permission.",
          "items": {
            "$ref": "AuditLogConfig"
          },
          "type": "array"
        }
      },
      "description": "Specifies the audit configuration for a service. The configuration determines which permission types are logged, and what identities, if any, are exempted from logging. An AuditConfig must have one or more AuditLogConfigs. If there are AuditConfigs for both `allServices` and a specific service, the union of the two AuditConfigs is used for that service: the log_types specified in each AuditConfig are enabled, and the exempted_members in each AuditLogConfig are exempted. Example Policy with multiple AuditConfigs: { \"audit_configs\": [ { \"service\": \"allServices\", \"audit_log_configs\": [ { \"log_type\": \"DATA_READ\", \"exempted_members\": [ \"user:jose@example.com\" ] }, { \"log_type\": \"DATA_WRITE\" }, { \"log_type\": \"ADMIN_READ\" } ] }, { \"service\": \"sampleservice.googleapis.com\", \"audit_log_configs\": [ { \"log_type\": \"DATA_READ\" }, { \"log_type\": \"DATA_WRITE\", \"exempted_members\": [ \"user:aliya@example.com\" ] } ] } ] } For sampleservice, this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also exempts `jose@example.com` from DATA_READ logging, and `aliya@example.com` from DATA_WRITE logging.",
      "type": "object",
      "id": "AuditConfig"
    },
    "Status": {
      "type": "object",
      "id": "Status",
      "properties": {
        "code": {
          "type": "integer",
          "description": "The status code, which should be an enum value of google.rpc.Code.",
          "format": "int32"
        },
        "details": {
          "type": "array",
          "items": {
            "additionalProperties": {
              "type": "any",
              "description": "Properties of the object. Contains field @type with type URL."
            },
            "type": "object"
          },
          "description": "A list of messages that carry the error details. There is a common set of message types for APIs to use."
        },
        "message": {
          "type": "string",
          "description": "A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client."
        }
      },
      "description": "The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://documentation.s3ns.fr/apis/design/errors)."
    },
    "KeyHandle": {
      "properties": {
        "name": {
          "description": "Identifier. Name of the KeyHandle resource, e.g. `projects/{PROJECT_ID}/locations/{LOCATION}/keyHandles/{KEY_HANDLE_ID}`.",
          "type": "string"
        },
        "kmsKey": {
          "readOnly": true,
          "description": "Output only. Name of a CryptoKey that has been provisioned for Customer Managed Encryption Key (CMEK) use in the KeyHandle project and location for the requested resource type. The CryptoKey project will reflect the value configured in the AutokeyConfig on the resource project's ancestor folder at the time of the KeyHandle creation. If more than one ancestor folder has a configured AutokeyConfig, the nearest of these configurations is used.",
          "type": "string"
        },
        "resourceTypeSelector": {
          "type": "string",
          "description": "Required. Indicates the resource type that the resulting CryptoKey is meant to protect, e.g. `{SERVICE}.googleapis.com/{TYPE}`. See documentation for supported resource types."
        }
      },
      "description": "Resource-oriented representation of a request to Cloud KMS Autokey and the resulting provisioning of a CryptoKey.",
      "type": "object",
      "id": "KeyHandle"
    },
    "ListSingleTenantHsmInstancesResponse": {
      "properties": {
        "nextPageToken": {
          "type": "string",
          "description": "A token to retrieve next page of results. Pass this value in ListSingleTenantHsmInstancesRequest.page_token to retrieve the next page of results."
        },
        "totalSize": {
          "description": "The total number of SingleTenantHsmInstances that matched the query. This field is not populated if ListSingleTenantHsmInstancesRequest.filter is applied.",
          "format": "int32",
          "type": "integer"
        },
        "singleTenantHsmInstances": {
          "type": "array",
          "items": {
            "$ref": "SingleTenantHsmInstance"
          },
          "description": "The list of SingleTenantHsmInstances."
        }
      },
      "description": "Response message for HsmManagement.ListSingleTenantHsmInstances.",
      "type": "object",
      "id": "ListSingleTenantHsmInstancesResponse"
    },
    "RemoveQuorumMember": {
      "properties": {
        "twoFactorPublicKeyPem": {
          "description": "Required. The public key associated with the 2FA key for the quorum member to remove. Public keys must be associated with RSA 2048 keys.",
          "type": "string"
        }
      },
      "description": "Remove a quorum member from the SingleTenantHsmInstance. This will reduce total_approver_count by 1. The SingleTenantHsmInstance must be in the ACTIVE state to perform this operation.",
      "type": "object",
      "id": "RemoveQuorumMember"
    },
    "Certificate": {
      "id": "Certificate",
      "type": "object",
      "description": "A Certificate represents an X.509 certificate used to authenticate HTTPS connections to EKM replicas.",
      "properties": {
        "issuer": {
          "type": "string",
          "description": "Output only. The issuer distinguished name in RFC 2253 format. Only present if parsed is true.",
          "readOnly": true
        },
        "notAfterTime": {
          "type": "string",
          "readOnly": true,
          "description": "Output only. The certificate is not valid after this time. Only present if parsed is true.",
          "format": "google-datetime"
        },
        "serialNumber": {
          "type": "string",
          "readOnly": true,
          "description": "Output only. The certificate serial number as a hex string. Only present if parsed is true."
        },
        "subjectAlternativeDnsNames": {
          "type": "array",
          "readOnly": true,
          "items": {
            "type": "string"
          },
          "description": "Output only. The subject Alternative DNS names. Only present if parsed is true."
        },
        "notBeforeTime": {
          "description": "Output only. The certificate is not valid before this time. Only present if parsed is true.",
          "format": "google-datetime",
          "readOnly": true,
          "type": "string"
        },
        "rawDer": {
          "type": "string",
          "description": "Required. The raw certificate bytes in DER format.",
          "format": "byte"
        },
        "sha256Fingerprint": {
          "readOnly": true,
          "description": "Output only. The SHA-256 certificate fingerprint as a hex string. Only present if parsed is true.",
          "type": "string"
        },
        "parsed": {
          "description": "Output only. True if the certificate was parsed successfully.",
          "readOnly": true,
          "type": "boolean"
        },
        "subject": {
          "type": "string",
          "readOnly": true,
          "description": "Output only. The subject distinguished name in RFC 2253 format. Only present if parsed is true."
        }
      }
    },
    "Challenge": {
      "properties": {
        "publicKeyPem": {
          "readOnly": true,
          "description": "Output only. The public key associated with the 2FA key that should sign the challenge.",
          "type": "string"
        },
        "challenge": {
          "description": "Output only. The challenge to be signed by the 2FA key indicated by the public key.",
          "format": "byte",
          "readOnly": true,
          "type": "string"
        }
      },
      "description": "A challenge to be signed by a 2FA key.",
      "type": "object",
      "id": "Challenge"
    },
    "ListImportJobsResponse": {
      "description": "Response message for KeyManagementService.ListImportJobs.",
      "properties": {
        "totalSize": {
          "type": "integer",
          "description": "The total number of ImportJobs that matched the query. This field is not populated if ListImportJobsRequest.filter is applied.",
          "format": "int32"
        },
        "importJobs": {
          "type": "array",
          "description": "The list of ImportJobs.",
          "items": {
            "$ref": "ImportJob"
          }
        },
        "nextPageToken": {
          "type": "string",
          "description": "A token to retrieve next page of results. Pass this value in ListImportJobsRequest.page_token to retrieve the next page of results."
        }
      },
      "id": "ListImportJobsResponse",
      "type": "object"
    },
    "QuorumParameters": {
      "id": "QuorumParameters",
      "type": "object",
      "description": "Parameters of quorum approval for the SingleTenantHsmInstanceProposal.",
      "properties": {
        "requiredApproverCount": {
          "type": "integer",
          "description": "Output only. The required numbers of approvers. This is the M value used for M of N quorum auth. It is less than the number of public keys.",
          "format": "int32",
          "readOnly": true
        },
        "approvedTwoFactorPublicKeyPems": {
          "type": "array",
          "description": "Output only. The public keys associated with the 2FA keys that have already approved the SingleTenantHsmInstanceProposal by signing the challenge.",
          "readOnly": true,
          "items": {
            "type": "string"
          }
        },
        "challenges": {
          "type": "array",
          "readOnly": true,
          "items": {
            "$ref": "Challenge"
          },
          "description": "Output only. The challenges to be signed by 2FA keys for quorum auth. M of N of these challenges are required to be signed to approve the operation."
        }
      }
    },
    "PublicKey": {
      "description": "The public keys for a given CryptoKeyVersion. Obtained via GetPublicKey.",
      "properties": {
        "pemCrc32c": {
          "type": "string",
          "description": "Integrity verification field. A CRC32C checksum of the returned PublicKey.pem. An integrity check of PublicKey.pem can be performed by computing the CRC32C checksum of PublicKey.pem and comparing your results to this field. Discard the response in case of non-matching checksum values, and perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed `2^32-1`, and can be safely downconverted to uint32 in languages that support this type. NOTE: This field is in Beta.",
          "format": "int64"
        },
        "publicKey": {
          "$ref": "ChecksummedData",
          "description": "This field contains the public key (with integrity verification), formatted according to the public_key_format field."
        },
        "pem": {
          "description": "The public key, encoded in PEM format. For more information, see the [RFC 7468](https://tools.ietf.org/html/rfc7468) sections for [General Considerations](https://tools.ietf.org/html/rfc7468#section-2) and [Textual Encoding of Subject Public Key Info] (https://tools.ietf.org/html/rfc7468#section-13).",
          "type": "string"
        },
        "algorithm": {
          "description": "The Algorithm associated with this key.",
          "enumDescriptions": [
            "Not specified.",
            "Creates symmetric encryption keys.",
            "AES-GCM (Galois Counter Mode) using 128-bit keys.",
            "AES-GCM (Galois Counter Mode) using 256-bit keys.",
            "AES-CBC (Cipher Block Chaining Mode) using 128-bit keys.",
            "AES-CBC (Cipher Block Chaining Mode) using 256-bit keys.",
            "AES-CTR (Counter Mode) using 128-bit keys.",
            "AES-CTR (Counter Mode) using 256-bit keys.",
            "RSASSA-PSS 2048 bit key with a SHA256 digest.",
            "RSASSA-PSS 3072 bit key with a SHA256 digest.",
            "RSASSA-PSS 4096 bit key with a SHA256 digest.",
            "RSASSA-PSS 4096 bit key with a SHA512 digest.",
            "RSASSA-PKCS1-v1_5 with a 2048 bit key and a SHA256 digest.",
            "RSASSA-PKCS1-v1_5 with a 3072 bit key and a SHA256 digest.",
            "RSASSA-PKCS1-v1_5 with a 4096 bit key and a SHA256 digest.",
            "RSASSA-PKCS1-v1_5 with a 4096 bit key and a SHA512 digest.",
            "RSASSA-PKCS1-v1_5 signing without encoding, with a 2048 bit key.",
            "RSASSA-PKCS1-v1_5 signing without encoding, with a 3072 bit key.",
            "RSASSA-PKCS1-v1_5 signing without encoding, with a 4096 bit key.",
            "RSAES-OAEP 2048 bit key with a SHA256 digest.",
            "RSAES-OAEP 3072 bit key with a SHA256 digest.",
            "RSAES-OAEP 4096 bit key with a SHA256 digest.",
            "RSAES-OAEP 4096 bit key with a SHA512 digest.",
            "RSAES-OAEP 2048 bit key with a SHA1 digest.",
            "RSAES-OAEP 3072 bit key with a SHA1 digest.",
            "RSAES-OAEP 4096 bit key with a SHA1 digest.",
            "ECDSA on the NIST P-256 curve with a SHA256 digest. Other hash functions can also be used: https://documentation.s3ns.fr/kms/docs/create-validate-signatures#ecdsa_support_for_other_hash_algorithms",
            "ECDSA on the NIST P-384 curve with a SHA384 digest. Other hash functions can also be used: https://documentation.s3ns.fr/kms/docs/create-validate-signatures#ecdsa_support_for_other_hash_algorithms",
            "ECDSA on the non-NIST secp256k1 curve. This curve is only supported for HSM protection level. Other hash functions can also be used: https://documentation.s3ns.fr/kms/docs/create-validate-signatures#ecdsa_support_for_other_hash_algorithms",
            "EdDSA on the Curve25519 in pure mode (taking data as input).",
            "HMAC-SHA256 signing with a 256 bit key.",
            "HMAC-SHA1 signing with a 160 bit key.",
            "HMAC-SHA384 signing with a 384 bit key.",
            "HMAC-SHA512 signing with a 512 bit key.",
            "HMAC-SHA224 signing with a 224 bit key.",
            "Algorithm representing symmetric encryption by an external key manager.",
            "ML-KEM-768 (FIPS 203)",
            "ML-KEM-1024 (FIPS 203)",
            "X-Wing hybrid KEM combining ML-KEM-768 with X25519 following datatracker.ietf.org/doc/draft-connolly-cfrg-xwing-kem/.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 1. Randomized version.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 3. Randomized version.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 5. Randomized version.",
            "The post-quantum stateless hash-based digital signature algorithm, at security level 1. Randomized version.",
            "The post-quantum stateless hash-based digital signature algorithm, at security level 1. Randomized pre-hash version supporting SHA256 digests.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 1. Randomized version supporting externally-computed message representatives.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 3. Randomized version supporting externally-computed message representatives.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 5. Randomized version supporting externally-computed message representatives."
          ],
          "type": "string",
          "enum": [
            "CRYPTO_KEY_VERSION_ALGORITHM_UNSPECIFIED",
            "GOOGLE_SYMMETRIC_ENCRYPTION",
            "AES_128_GCM",
            "AES_256_GCM",
            "AES_128_CBC",
            "AES_256_CBC",
            "AES_128_CTR",
            "AES_256_CTR",
            "RSA_SIGN_PSS_2048_SHA256",
            "RSA_SIGN_PSS_3072_SHA256",
            "RSA_SIGN_PSS_4096_SHA256",
            "RSA_SIGN_PSS_4096_SHA512",
            "RSA_SIGN_PKCS1_2048_SHA256",
            "RSA_SIGN_PKCS1_3072_SHA256",
            "RSA_SIGN_PKCS1_4096_SHA256",
            "RSA_SIGN_PKCS1_4096_SHA512",
            "RSA_SIGN_RAW_PKCS1_2048",
            "RSA_SIGN_RAW_PKCS1_3072",
            "RSA_SIGN_RAW_PKCS1_4096",
            "RSA_DECRYPT_OAEP_2048_SHA256",
            "RSA_DECRYPT_OAEP_3072_SHA256",
            "RSA_DECRYPT_OAEP_4096_SHA256",
            "RSA_DECRYPT_OAEP_4096_SHA512",
            "RSA_DECRYPT_OAEP_2048_SHA1",
            "RSA_DECRYPT_OAEP_3072_SHA1",
            "RSA_DECRYPT_OAEP_4096_SHA1",
            "EC_SIGN_P256_SHA256",
            "EC_SIGN_P384_SHA384",
            "EC_SIGN_SECP256K1_SHA256",
            "EC_SIGN_ED25519",
            "HMAC_SHA256",
            "HMAC_SHA1",
            "HMAC_SHA384",
            "HMAC_SHA512",
            "HMAC_SHA224",
            "EXTERNAL_SYMMETRIC_ENCRYPTION",
            "ML_KEM_768",
            "ML_KEM_1024",
            "KEM_XWING",
            "PQ_SIGN_ML_DSA_44",
            "PQ_SIGN_ML_DSA_65",
            "PQ_SIGN_ML_DSA_87",
            "PQ_SIGN_SLH_DSA_SHA2_128S",
            "PQ_SIGN_HASH_SLH_DSA_SHA2_128S_SHA256",
            "PQ_SIGN_ML_DSA_44_EXTERNAL_MU",
            "PQ_SIGN_ML_DSA_65_EXTERNAL_MU",
            "PQ_SIGN_ML_DSA_87_EXTERNAL_MU"
          ]
        },
        "name": {
          "type": "string",
          "description": "The name of the CryptoKeyVersion public key. Provided here for verification. NOTE: This field is in Beta."
        },
        "protectionLevel": {
          "type": "string",
          "enum": [
            "PROTECTION_LEVEL_UNSPECIFIED",
            "SOFTWARE",
            "HSM",
            "EXTERNAL",
            "EXTERNAL_VPC",
            "HSM_SINGLE_TENANT"
          ],
          "description": "The ProtectionLevel of the CryptoKeyVersion public key.",
          "enumDescriptions": [
            "Not specified.",
            "Crypto operations are performed in software.",
            "Crypto operations are performed in a Hardware Security Module.",
            "Crypto operations are performed by an external key manager.",
            "Crypto operations are performed in an EKM-over-VPC backend.",
            "Crypto operations are performed in a single-tenant HSM."
          ]
        },
        "publicKeyFormat": {
          "type": "string",
          "enum": [
            "PUBLIC_KEY_FORMAT_UNSPECIFIED",
            "PEM",
            "DER",
            "NIST_PQC",
            "XWING_RAW_BYTES"
          ],
          "description": "The PublicKey format specified by the customer through the public_key_format field.",
          "enumDescriptions": [
            "If the public_key_format field is not specified: - For PQC algorithms, an error will be returned. - For non-PQC algorithms, the default format is PEM, and the field pem will be populated. Otherwise, the public key will be exported through the public_key field in the requested format.",
            "The returned public key will be encoded in PEM format. See the [RFC7468](https://tools.ietf.org/html/rfc7468) sections for [General Considerations](https://tools.ietf.org/html/rfc7468#section-2) and [Textual Encoding of Subject Public Key Info] (https://tools.ietf.org/html/rfc7468#section-13) for more information.",
            "The returned public key will be encoded in DER format (the PrivateKeyInfo structure from RFC 5208).",
            "This is supported only for PQC algorithms. The key material is returned in the format defined by NIST PQC standards (FIPS 203, FIPS 204, and FIPS 205).",
            "The returned public key is in raw bytes format defined in its standard https://datatracker.ietf.org/doc/draft-connolly-cfrg-xwing-kem."
          ]
        }
      },
      "id": "PublicKey",
      "type": "object"
    },
    "RequiredActionQuorumParameters": {
      "type": "object",
      "id": "RequiredActionQuorumParameters",
      "properties": {
        "requiredChallenges": {
          "type": "array",
          "description": "Output only. A list of specific challenges that must be signed. For some operations, this will contain a single challenge.",
          "readOnly": true,
          "items": {
            "$ref": "Challenge"
          }
        },
        "requiredApproverCount": {
          "type": "integer",
          "description": "Output only. The required number of quorum approvers. This is the M value used for M of N quorum auth. It is less than the number of public keys.",
          "format": "int32",
          "readOnly": true
        },
        "quorumChallenges": {
          "readOnly": true,
          "items": {
            "$ref": "Challenge"
          },
          "description": "Output only. The challenges to be signed by 2FA keys for quorum auth. M of N of these challenges are required to be signed to approve the operation.",
          "type": "array"
        },
        "approvedTwoFactorPublicKeyPems": {
          "description": "Output only. The public keys associated with the 2FA keys that have already approved the SingleTenantHsmInstanceProposal by signing the challenge.",
          "readOnly": true,
          "items": {
            "type": "string"
          },
          "type": "array"
        }
      },
      "description": "Parameters for an approval that has both required challenges and a quorum."
    },
    "GenerateRandomBytesResponse": {
      "description": "Response message for KeyManagementService.GenerateRandomBytes.",
      "properties": {
        "data": {
          "description": "The generated data.",
          "format": "byte",
          "type": "string"
        },
        "dataCrc32c": {
          "description": "Integrity verification field. A CRC32C checksum of the returned GenerateRandomBytesResponse.data. An integrity check of GenerateRandomBytesResponse.data can be performed by computing the CRC32C checksum of GenerateRandomBytesResponse.data and comparing your results to this field. Discard the response in case of non-matching checksum values, and perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64",
          "type": "string"
        }
      },
      "id": "GenerateRandomBytesResponse",
      "type": "object"
    },
    "CryptoKeyVersion": {
      "type": "object",
      "id": "CryptoKeyVersion",
      "properties": {
        "destroyTime": {
          "type": "string",
          "description": "Output only. The time this CryptoKeyVersion's key material is scheduled for destruction. Only present if state is DESTROY_SCHEDULED.",
          "format": "google-datetime",
          "readOnly": true
        },
        "generationFailureReason": {
          "type": "string",
          "description": "Output only. The root cause of the most recent generation failure. Only present if state is GENERATION_FAILED.",
          "readOnly": true
        },
        "name": {
          "type": "string",
          "description": "Output only. The resource name for this CryptoKeyVersion in the format `projects/*/locations/*/keyRings/*/cryptoKeys/*/cryptoKeyVersions/*`.",
          "readOnly": true
        },
        "createTime": {
          "description": "Output only. The time at which this CryptoKeyVersion was created.",
          "format": "google-datetime",
          "readOnly": true,
          "type": "string"
        },
        "importTime": {
          "description": "Output only. The time at which this CryptoKeyVersion's key material was most recently imported.",
          "format": "google-datetime",
          "readOnly": true,
          "type": "string"
        },
        "generateTime": {
          "type": "string",
          "description": "Output only. The time this CryptoKeyVersion's key material was generated.",
          "format": "google-datetime",
          "readOnly": true
        },
        "destroyEventTime": {
          "description": "Output only. The time this CryptoKeyVersion's key material was destroyed. Only present if state is DESTROYED.",
          "format": "google-datetime",
          "readOnly": true,
          "type": "string"
        },
        "importFailureReason": {
          "type": "string",
          "description": "Output only. The root cause of the most recent import failure. Only present if state is IMPORT_FAILED.",
          "readOnly": true
        },
        "externalDestructionFailureReason": {
          "readOnly": true,
          "description": "Output only. The root cause of the most recent external destruction failure. Only present if state is EXTERNAL_DESTRUCTION_FAILED.",
          "type": "string"
        },
        "state": {
          "description": "The current state of the CryptoKeyVersion.",
          "enumDescriptions": [
            "Not specified.",
            "This version is still being generated. It may not be used, enabled, disabled, or destroyed yet. Cloud KMS will automatically mark this version ENABLED as soon as the version is ready.",
            "This version may be used for cryptographic operations.",
            "This version may not be used, but the key material is still available, and the version can be placed back into the ENABLED state.",
            "The key material of this version is destroyed and no longer stored. This version may only become ENABLED again if this version is reimport_eligible and the original key material is reimported with a call to KeyManagementService.ImportCryptoKeyVersion.",
            "This version is scheduled for destruction, and will be destroyed soon. Call RestoreCryptoKeyVersion to put it back into the DISABLED state.",
            "This version is still being imported. It may not be used, enabled, disabled, or destroyed yet. Cloud KMS will automatically mark this version ENABLED as soon as the version is ready.",
            "This version was not imported successfully. It may not be used, enabled, disabled, or destroyed. The submitted key material has been discarded. Additional details can be found in CryptoKeyVersion.import_failure_reason.",
            "This version was not generated successfully. It may not be used, enabled, disabled, or destroyed. Additional details can be found in CryptoKeyVersion.generation_failure_reason.",
            "This version was destroyed, and it may not be used or enabled again. Cloud KMS is waiting for the corresponding key material residing in an external key manager to be destroyed.",
            "This version was destroyed, and it may not be used or enabled again. However, Cloud KMS could not confirm that the corresponding key material residing in an external key manager was destroyed. Additional details can be found in CryptoKeyVersion.external_destruction_failure_reason."
          ],
          "type": "string",
          "enum": [
            "CRYPTO_KEY_VERSION_STATE_UNSPECIFIED",
            "PENDING_GENERATION",
            "ENABLED",
            "DISABLED",
            "DESTROYED",
            "DESTROY_SCHEDULED",
            "PENDING_IMPORT",
            "IMPORT_FAILED",
            "GENERATION_FAILED",
            "PENDING_EXTERNAL_DESTRUCTION",
            "EXTERNAL_DESTRUCTION_FAILED"
          ]
        },
        "protectionLevel": {
          "enum": [
            "PROTECTION_LEVEL_UNSPECIFIED",
            "SOFTWARE",
            "HSM",
            "EXTERNAL",
            "EXTERNAL_VPC",
            "HSM_SINGLE_TENANT"
          ],
          "readOnly": true,
          "type": "string",
          "description": "Output only. The ProtectionLevel describing how crypto operations are performed with this CryptoKeyVersion.",
          "enumDescriptions": [
            "Not specified.",
            "Crypto operations are performed in software.",
            "Crypto operations are performed in a Hardware Security Module.",
            "Crypto operations are performed by an external key manager.",
            "Crypto operations are performed in an EKM-over-VPC backend.",
            "Crypto operations are performed in a single-tenant HSM."
          ]
        },
        "externalProtectionLevelOptions": {
          "description": "ExternalProtectionLevelOptions stores a group of additional fields for configuring a CryptoKeyVersion that are specific to the EXTERNAL protection level and EXTERNAL_VPC protection levels.",
          "$ref": "ExternalProtectionLevelOptions"
        },
        "importJob": {
          "type": "string",
          "description": "Output only. The name of the ImportJob used in the most recent import of this CryptoKeyVersion. Only present if the underlying key material was imported.",
          "readOnly": true
        },
        "algorithm": {
          "enum": [
            "CRYPTO_KEY_VERSION_ALGORITHM_UNSPECIFIED",
            "GOOGLE_SYMMETRIC_ENCRYPTION",
            "AES_128_GCM",
            "AES_256_GCM",
            "AES_128_CBC",
            "AES_256_CBC",
            "AES_128_CTR",
            "AES_256_CTR",
            "RSA_SIGN_PSS_2048_SHA256",
            "RSA_SIGN_PSS_3072_SHA256",
            "RSA_SIGN_PSS_4096_SHA256",
            "RSA_SIGN_PSS_4096_SHA512",
            "RSA_SIGN_PKCS1_2048_SHA256",
            "RSA_SIGN_PKCS1_3072_SHA256",
            "RSA_SIGN_PKCS1_4096_SHA256",
            "RSA_SIGN_PKCS1_4096_SHA512",
            "RSA_SIGN_RAW_PKCS1_2048",
            "RSA_SIGN_RAW_PKCS1_3072",
            "RSA_SIGN_RAW_PKCS1_4096",
            "RSA_DECRYPT_OAEP_2048_SHA256",
            "RSA_DECRYPT_OAEP_3072_SHA256",
            "RSA_DECRYPT_OAEP_4096_SHA256",
            "RSA_DECRYPT_OAEP_4096_SHA512",
            "RSA_DECRYPT_OAEP_2048_SHA1",
            "RSA_DECRYPT_OAEP_3072_SHA1",
            "RSA_DECRYPT_OAEP_4096_SHA1",
            "EC_SIGN_P256_SHA256",
            "EC_SIGN_P384_SHA384",
            "EC_SIGN_SECP256K1_SHA256",
            "EC_SIGN_ED25519",
            "HMAC_SHA256",
            "HMAC_SHA1",
            "HMAC_SHA384",
            "HMAC_SHA512",
            "HMAC_SHA224",
            "EXTERNAL_SYMMETRIC_ENCRYPTION",
            "ML_KEM_768",
            "ML_KEM_1024",
            "KEM_XWING",
            "PQ_SIGN_ML_DSA_44",
            "PQ_SIGN_ML_DSA_65",
            "PQ_SIGN_ML_DSA_87",
            "PQ_SIGN_SLH_DSA_SHA2_128S",
            "PQ_SIGN_HASH_SLH_DSA_SHA2_128S_SHA256",
            "PQ_SIGN_ML_DSA_44_EXTERNAL_MU",
            "PQ_SIGN_ML_DSA_65_EXTERNAL_MU",
            "PQ_SIGN_ML_DSA_87_EXTERNAL_MU"
          ],
          "readOnly": true,
          "type": "string",
          "description": "Output only. The CryptoKeyVersionAlgorithm that this CryptoKeyVersion supports.",
          "enumDescriptions": [
            "Not specified.",
            "Creates symmetric encryption keys.",
            "AES-GCM (Galois Counter Mode) using 128-bit keys.",
            "AES-GCM (Galois Counter Mode) using 256-bit keys.",
            "AES-CBC (Cipher Block Chaining Mode) using 128-bit keys.",
            "AES-CBC (Cipher Block Chaining Mode) using 256-bit keys.",
            "AES-CTR (Counter Mode) using 128-bit keys.",
            "AES-CTR (Counter Mode) using 256-bit keys.",
            "RSASSA-PSS 2048 bit key with a SHA256 digest.",
            "RSASSA-PSS 3072 bit key with a SHA256 digest.",
            "RSASSA-PSS 4096 bit key with a SHA256 digest.",
            "RSASSA-PSS 4096 bit key with a SHA512 digest.",
            "RSASSA-PKCS1-v1_5 with a 2048 bit key and a SHA256 digest.",
            "RSASSA-PKCS1-v1_5 with a 3072 bit key and a SHA256 digest.",
            "RSASSA-PKCS1-v1_5 with a 4096 bit key and a SHA256 digest.",
            "RSASSA-PKCS1-v1_5 with a 4096 bit key and a SHA512 digest.",
            "RSASSA-PKCS1-v1_5 signing without encoding, with a 2048 bit key.",
            "RSASSA-PKCS1-v1_5 signing without encoding, with a 3072 bit key.",
            "RSASSA-PKCS1-v1_5 signing without encoding, with a 4096 bit key.",
            "RSAES-OAEP 2048 bit key with a SHA256 digest.",
            "RSAES-OAEP 3072 bit key with a SHA256 digest.",
            "RSAES-OAEP 4096 bit key with a SHA256 digest.",
            "RSAES-OAEP 4096 bit key with a SHA512 digest.",
            "RSAES-OAEP 2048 bit key with a SHA1 digest.",
            "RSAES-OAEP 3072 bit key with a SHA1 digest.",
            "RSAES-OAEP 4096 bit key with a SHA1 digest.",
            "ECDSA on the NIST P-256 curve with a SHA256 digest. Other hash functions can also be used: https://documentation.s3ns.fr/kms/docs/create-validate-signatures#ecdsa_support_for_other_hash_algorithms",
            "ECDSA on the NIST P-384 curve with a SHA384 digest. Other hash functions can also be used: https://documentation.s3ns.fr/kms/docs/create-validate-signatures#ecdsa_support_for_other_hash_algorithms",
            "ECDSA on the non-NIST secp256k1 curve. This curve is only supported for HSM protection level. Other hash functions can also be used: https://documentation.s3ns.fr/kms/docs/create-validate-signatures#ecdsa_support_for_other_hash_algorithms",
            "EdDSA on the Curve25519 in pure mode (taking data as input).",
            "HMAC-SHA256 signing with a 256 bit key.",
            "HMAC-SHA1 signing with a 160 bit key.",
            "HMAC-SHA384 signing with a 384 bit key.",
            "HMAC-SHA512 signing with a 512 bit key.",
            "HMAC-SHA224 signing with a 224 bit key.",
            "Algorithm representing symmetric encryption by an external key manager.",
            "ML-KEM-768 (FIPS 203)",
            "ML-KEM-1024 (FIPS 203)",
            "X-Wing hybrid KEM combining ML-KEM-768 with X25519 following datatracker.ietf.org/doc/draft-connolly-cfrg-xwing-kem/.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 1. Randomized version.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 3. Randomized version.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 5. Randomized version.",
            "The post-quantum stateless hash-based digital signature algorithm, at security level 1. Randomized version.",
            "The post-quantum stateless hash-based digital signature algorithm, at security level 1. Randomized pre-hash version supporting SHA256 digests.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 1. Randomized version supporting externally-computed message representatives.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 3. Randomized version supporting externally-computed message representatives.",
            "The post-quantum Module-Lattice-Based Digital Signature Algorithm, at security level 5. Randomized version supporting externally-computed message representatives."
          ]
        },
        "attestation": {
          "description": "Output only. Statement that was generated and signed by the HSM at key creation time. Use this statement to verify attributes of the key as stored on the HSM, independently of Cloud de Confiance. Only provided for key versions with protection_level HSM.",
          "readOnly": true,
          "$ref": "KeyOperationAttestation"
        },
        "reimportEligible": {
          "type": "boolean",
          "readOnly": true,
          "description": "Output only. Whether or not this key version is eligible for reimport, by being specified as a target in ImportCryptoKeyVersionRequest.crypto_key_version."
        }
      },
      "description": "A CryptoKeyVersion represents an individual cryptographic key, and the associated key material. An ENABLED version can be used for cryptographic operations. For security reasons, the raw cryptographic key material represented by a CryptoKeyVersion can never be viewed or exported. It can only be used to encrypt, decrypt, or sign data when an authorized user or application invokes Cloud KMS."
    },
    "Location": {
      "type": "object",
      "id": "Location",
      "properties": {
        "metadata": {
          "type": "object",
          "description": "Service-specific metadata. For example the available capacity at the given location.",
          "additionalProperties": {
            "description": "Properties of the object. Contains field @type with type URL.",
            "type": "any"
          }
        },
        "displayName": {
          "type": "string",
          "description": "The friendly name for this location, typically a nearby city name. For example, \"Tokyo\"."
        },
        "labels": {
          "type": "object",
          "description": "Cross-service attributes for the location. For example {\"cloud.googleapis.com/region\": \"us-east1\"}",
          "additionalProperties": {
            "type": "string"
          }
        },
        "name": {
          "description": "Resource name for the location, which may vary between implementations. For example: `\"projects/example-project/locations/us-east1\"`",
          "type": "string"
        },
        "locationId": {
          "description": "The canonical id for this location. For example: `\"us-east1\"`.",
          "type": "string"
        }
      },
      "description": "A resource that represents a Cloud de Confiance location."
    },
    "Digest": {
      "type": "object",
      "id": "Digest",
      "properties": {
        "sha256": {
          "type": "string",
          "description": "A message digest produced with the SHA-256 algorithm.",
          "format": "byte"
        },
        "sha512": {
          "description": "A message digest produced with the SHA-512 algorithm.",
          "format": "byte",
          "type": "string"
        },
        "sha384": {
          "description": "A message digest produced with the SHA-384 algorithm.",
          "format": "byte",
          "type": "string"
        },
        "externalMu": {
          "type": "string",
          "description": "A message digest produced with SHAKE-256, to be used with ML-DSA external-μ algorithms only. See \"message representative\" note in section 6.2, algorithm 7 of the FIPS-204 standard: https://doi.org/10.6028/nist.fips.204",
          "format": "byte"
        }
      },
      "description": "A Digest holds a cryptographic message digest."
    },
    "MacSignResponse": {
      "description": "Response message for KeyManagementService.MacSign.",
      "properties": {
        "protectionLevel": {
          "type": "string",
          "enum": [
            "PROTECTION_LEVEL_UNSPECIFIED",
            "SOFTWARE",
            "HSM",
            "EXTERNAL",
            "EXTERNAL_VPC",
            "HSM_SINGLE_TENANT"
          ],
          "description": "The ProtectionLevel of the CryptoKeyVersion used for signing.",
          "enumDescriptions": [
            "Not specified.",
            "Crypto operations are performed in software.",
            "Crypto operations are performed in a Hardware Security Module.",
            "Crypto operations are performed by an external key manager.",
            "Crypto operations are performed in an EKM-over-VPC backend.",
            "Crypto operations are performed in a single-tenant HSM."
          ]
        },
        "name": {
          "description": "The resource name of the CryptoKeyVersion used for signing. Check this field to verify that the intended resource was used for signing.",
          "type": "string"
        },
        "macCrc32c": {
          "type": "string",
          "description": "Integrity verification field. A CRC32C checksum of the returned MacSignResponse.mac. An integrity check of MacSignResponse.mac can be performed by computing the CRC32C checksum of MacSignResponse.mac and comparing your results to this field. Discard the response in case of non-matching checksum values, and perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64"
        },
        "mac": {
          "type": "string",
          "description": "The created signature.",
          "format": "byte"
        },
        "verifiedDataCrc32c": {
          "description": "Integrity verification field. A flag indicating whether MacSignRequest.data_crc32c was received by KeyManagementService and used for the integrity verification of the data. A false value of this field indicates either that MacSignRequest.data_crc32c was left unset or that it was not delivered to KeyManagementService. If you've set MacSignRequest.data_crc32c but this field is still false, discard the response and perform a limited number of retries.",
          "type": "boolean"
        }
      },
      "id": "MacSignResponse",
      "type": "object"
    },
    "DecryptRequest": {
      "properties": {
        "additionalAuthenticatedDataCrc32c": {
          "description": "Optional. An optional CRC32C checksum of the DecryptRequest.additional_authenticated_data. If specified, KeyManagementService will verify the integrity of the received DecryptRequest.additional_authenticated_data using this checksum. KeyManagementService will report an error if the checksum verification fails. If you receive a checksum error, your client should verify that CRC32C(DecryptRequest.additional_authenticated_data) is equal to DecryptRequest.additional_authenticated_data_crc32c, and if so, perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64",
          "type": "string"
        },
        "ciphertext": {
          "type": "string",
          "description": "Required. The encrypted data originally returned in EncryptResponse.ciphertext.",
          "format": "byte"
        },
        "ciphertextCrc32c": {
          "description": "Optional. An optional CRC32C checksum of the DecryptRequest.ciphertext. If specified, KeyManagementService will verify the integrity of the received DecryptRequest.ciphertext using this checksum. KeyManagementService will report an error if the checksum verification fails. If you receive a checksum error, your client should verify that CRC32C(DecryptRequest.ciphertext) is equal to DecryptRequest.ciphertext_crc32c, and if so, perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64",
          "type": "string"
        },
        "additionalAuthenticatedData": {
          "description": "Optional. Optional data that must match the data originally supplied in EncryptRequest.additional_authenticated_data.",
          "format": "byte",
          "type": "string"
        }
      },
      "description": "Request message for KeyManagementService.Decrypt.",
      "type": "object",
      "id": "DecryptRequest"
    },
    "RawDecryptRequest": {
      "type": "object",
      "id": "RawDecryptRequest",
      "properties": {
        "initializationVector": {
          "description": "Required. The initialization vector (IV) used during encryption, which must match the data originally provided in RawEncryptResponse.initialization_vector.",
          "format": "byte",
          "type": "string"
        },
        "additionalAuthenticatedDataCrc32c": {
          "description": "Optional. An optional CRC32C checksum of the RawDecryptRequest.additional_authenticated_data. If specified, KeyManagementService will verify the integrity of the received additional_authenticated_data using this checksum. KeyManagementService will report an error if the checksum verification fails. If you receive a checksum error, your client should verify that CRC32C(additional_authenticated_data) is equal to additional_authenticated_data_crc32c, and if so, perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64",
          "type": "string"
        },
        "additionalAuthenticatedData": {
          "type": "string",
          "description": "Optional. Optional data that must match the data originally supplied in RawEncryptRequest.additional_authenticated_data.",
          "format": "byte"
        },
        "ciphertext": {
          "description": "Required. The encrypted data originally returned in RawEncryptResponse.ciphertext.",
          "format": "byte",
          "type": "string"
        },
        "ciphertextCrc32c": {
          "description": "Optional. An optional CRC32C checksum of the RawDecryptRequest.ciphertext. If specified, KeyManagementService will verify the integrity of the received ciphertext using this checksum. KeyManagementService will report an error if the checksum verification fails. If you receive a checksum error, your client should verify that CRC32C(ciphertext) is equal to ciphertext_crc32c, and if so, perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64",
          "type": "string"
        },
        "initializationVectorCrc32c": {
          "type": "string",
          "description": "Optional. An optional CRC32C checksum of the RawDecryptRequest.initialization_vector. If specified, KeyManagementService will verify the integrity of the received initialization_vector using this checksum. KeyManagementService will report an error if the checksum verification fails. If you receive a checksum error, your client should verify that CRC32C(initialization_vector) is equal to initialization_vector_crc32c, and if so, perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64"
        },
        "tagLength": {
          "description": "The length of the authentication tag that is appended to the end of the ciphertext. If unspecified (0), the default value for the key's algorithm will be used (for AES-GCM, the default value is 16).",
          "format": "int32",
          "type": "integer"
        }
      },
      "description": "Request message for KeyManagementService.RawDecrypt."
    },
    "MacVerifyRequest": {
      "description": "Request message for KeyManagementService.MacVerify.",
      "properties": {
        "macCrc32c": {
          "type": "string",
          "description": "Optional. An optional CRC32C checksum of the MacVerifyRequest.mac. If specified, KeyManagementService will verify the integrity of the received MacVerifyRequest.mac using this checksum. KeyManagementService will report an error if the checksum verification fails. If you receive a checksum error, your client should verify that CRC32C(MacVerifyRequest.mac) is equal to MacVerifyRequest.mac_crc32c, and if so, perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64"
        },
        "mac": {
          "description": "Required. The signature to verify.",
          "format": "byte",
          "type": "string"
        },
        "data": {
          "type": "string",
          "description": "Required. The data used previously as a MacSignRequest.data to generate the MAC tag.",
          "format": "byte"
        },
        "dataCrc32c": {
          "description": "Optional. An optional CRC32C checksum of the MacVerifyRequest.data. If specified, KeyManagementService will verify the integrity of the received MacVerifyRequest.data using this checksum. KeyManagementService will report an error if the checksum verification fails. If you receive a checksum error, your client should verify that CRC32C(MacVerifyRequest.data) is equal to MacVerifyRequest.data_crc32c, and if so, perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64",
          "type": "string"
        }
      },
      "id": "MacVerifyRequest",
      "type": "object"
    },
    "SingleTenantHsmInstanceProposal": {
      "id": "SingleTenantHsmInstanceProposal",
      "type": "object",
      "description": "A SingleTenantHsmInstanceProposal represents a proposal to perform an operation on a SingleTenantHsmInstance.",
      "properties": {
        "removeQuorumMember": {
          "description": "Remove a quorum member from the SingleTenantHsmInstance. This will reduce total_approver_count by 1. The SingleTenantHsmInstance must be in the ACTIVE state to perform this operation.",
          "$ref": "RemoveQuorumMember"
        },
        "quorumParameters": {
          "readOnly": true,
          "description": "Output only. The quorum approval parameters for the SingleTenantHsmInstanceProposal.",
          "$ref": "QuorumParameters"
        },
        "enableSingleTenantHsmInstance": {
          "description": "Enable the SingleTenantHsmInstance. The SingleTenantHsmInstance must be in the DISABLED state to perform this operation.",
          "$ref": "EnableSingleTenantHsmInstance"
        },
        "requiredActionQuorumParameters": {
          "$ref": "RequiredActionQuorumParameters",
          "description": "Output only. Parameters for an approval of a SingleTenantHsmInstanceProposal that has both required challenges and a quorum.",
          "readOnly": true
        },
        "purgeTime": {
          "type": "string",
          "readOnly": true,
          "description": "Output only. The time at which the soft-deleted SingleTenantHsmInstanceProposal will be permanently purged. This field is only populated when the state is DELETED and will be set a time after expiration of the proposal, i.e. \u003e= expire_time or (create_time + ttl).",
          "format": "google-datetime"
        },
        "deleteTime": {
          "type": "string",
          "description": "Output only. The time at which the SingleTenantHsmInstanceProposal was deleted.",
          "format": "google-datetime",
          "readOnly": true
        },
        "registerTwoFactorAuthKeys": {
          "$ref": "RegisterTwoFactorAuthKeys",
          "description": "Register 2FA keys for the SingleTenantHsmInstance. This operation requires all N Challenges to be signed by 2FA keys. The SingleTenantHsmInstance must be in the PENDING_TWO_FACTOR_AUTH_REGISTRATION state to perform this operation."
        },
        "expireTime": {
          "description": "The time at which the SingleTenantHsmInstanceProposal will expire if not approved and executed.",
          "format": "google-datetime",
          "type": "string"
        },
        "createTime": {
          "readOnly": true,
          "description": "Output only. The time at which the SingleTenantHsmInstanceProposal was created.",
          "format": "google-datetime",
          "type": "string"
        },
        "state": {
          "readOnly": true,
          "enum": [
            "STATE_UNSPECIFIED",
            "CREATING",
            "PENDING",
            "APPROVED",
            "RUNNING",
            "SUCCEEDED",
            "FAILED",
            "DELETED"
          ],
          "description": "Output only. The state of the SingleTenantHsmInstanceProposal.",
          "enumDescriptions": [
            "Not specified.",
            "The SingleTenantHsmInstanceProposal is being created.",
            "The SingleTenantHsmInstanceProposal is pending approval.",
            "The SingleTenantHsmInstanceProposal has been approved.",
            "The SingleTenantHsmInstanceProposal is being executed.",
            "The SingleTenantHsmInstanceProposal has been executed successfully.",
            "The SingleTenantHsmInstanceProposal has failed.",
            "The SingleTenantHsmInstanceProposal has been deleted and will be purged after the purge_time."
          ],
          "type": "string"
        },
        "refreshSingleTenantHsmInstance": {
          "$ref": "RefreshSingleTenantHsmInstance",
          "description": "Refreshes the SingleTenantHsmInstance. This operation must be performed periodically to keep the SingleTenantHsmInstance active. This operation must be performed before unrefreshed_duration_until_disable has passed. The SingleTenantHsmInstance must be in the ACTIVE state to perform this operation."
        },
        "ttl": {
          "description": "Input only. The TTL for the SingleTenantHsmInstanceProposal. Proposals will expire after this duration.",
          "format": "google-duration",
          "type": "string"
        },
        "addQuorumMember": {
          "description": "Add a quorum member to the SingleTenantHsmInstance. This will increase the total_approver_count by 1. The SingleTenantHsmInstance must be in the ACTIVE state to perform this operation.",
          "$ref": "AddQuorumMember"
        },
        "name": {
          "description": "Identifier. The resource name for this SingleTenantHsmInstance in the format `projects/*/locations/*/singleTenantHsmInstances/*/proposals/*`.",
          "type": "string"
        },
        "failureReason": {
          "readOnly": true,
          "description": "Output only. The root cause of the most recent failure. Only present if state is FAILED.",
          "type": "string"
        },
        "disableSingleTenantHsmInstance": {
          "$ref": "DisableSingleTenantHsmInstance",
          "description": "Disable the SingleTenantHsmInstance. The SingleTenantHsmInstance must be in the ACTIVE state to perform this operation."
        },
        "deleteSingleTenantHsmInstance": {
          "$ref": "DeleteSingleTenantHsmInstance",
          "description": "Delete the SingleTenantHsmInstance. Deleting a SingleTenantHsmInstance will make all CryptoKeys attached to the SingleTenantHsmInstance unusable. The SingleTenantHsmInstance must be in the DISABLED or PENDING_TWO_FACTOR_AUTH_REGISTRATION state to perform this operation."
        }
      }
    },
    "AuditLogConfig": {
      "properties": {
        "logType": {
          "description": "The log type that this config enables.",
          "enumDescriptions": [
            "Default case. Should never be this.",
            "Admin reads. Example: CloudIAM getIamPolicy",
            "Data writes. Example: CloudSQL Users create",
            "Data reads. Example: CloudSQL Users list"
          ],
          "type": "string",
          "enum": [
            "LOG_TYPE_UNSPECIFIED",
            "ADMIN_READ",
            "DATA_WRITE",
            "DATA_READ"
          ]
        },
        "exemptedMembers": {
          "description": "Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members.",
          "items": {
            "type": "string"
          },
          "type": "array"
        }
      },
      "description": "Provides the configuration for logging a type of permissions. Example: { \"audit_log_configs\": [ { \"log_type\": \"DATA_READ\", \"exempted_members\": [ \"user:jose@example.com\" ] }, { \"log_type\": \"DATA_WRITE\" } ] } This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting jose@example.com from DATA_READ logging.",
      "type": "object",
      "id": "AuditLogConfig"
    },
    "Policy": {
      "properties": {
        "auditConfigs": {
          "items": {
            "$ref": "AuditConfig"
          },
          "description": "Specifies cloud audit logging configuration for this policy.",
          "type": "array"
        },
        "version": {
          "type": "integer",
          "description": "Specifies the format of the policy. Valid values are `0`, `1`, and `3`. Requests that specify an invalid value are rejected. Any operation that affects conditional role bindings must specify version `3`. This requirement applies to the following operations: * Getting a policy that includes a conditional role binding * Adding a conditional role binding to a policy * Changing a conditional role binding in a policy * Removing any role binding, with or without a condition, from a policy that includes conditions **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost. If a policy does not include any conditions, operations on that policy may specify any valid version or leave the field unset. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://documentation.s3ns.fr/iam/help/conditions/resource-policies).",
          "format": "int32"
        },
        "bindings": {
          "items": {
            "$ref": "Binding"
          },
          "description": "Associates a list of `members`, or principals, with a `role`. Optionally, may specify a `condition` that determines how and when the `bindings` are applied. Each of the `bindings` must contain at least one principal. The `bindings` in a `Policy` can refer to up to 1,500 principals; up to 250 of these principals can be Cloud de Confiance group. Each occurrence of a principal counts towards these limits. For example, if the `bindings` grant 50 different roles to `user:alice@example.com`, and not to any other principal, then you can add another 1,450 principals to the `bindings` in the `Policy`.",
          "type": "array"
        },
        "etag": {
          "description": "`etag` is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. It is strongly suggested that systems make use of the `etag` in the read-modify-write cycle to perform policy updates in order to avoid race conditions: An `etag` is returned in the response to `getIamPolicy`, and systems are expected to put that etag in the request to `setIamPolicy` to ensure that their change will be applied to the same version of the policy. **Important:** If you use IAM Conditions, you must include the `etag` field whenever you call `setIamPolicy`. If you omit this field, then IAM allows you to overwrite a version `3` policy with a version `1` policy, and all of the conditions in the version `3` policy are lost.",
          "format": "byte",
          "type": "string"
        }
      },
      "description": "An Identity and Access Management (IAM) policy, which specifies access controls for Cloud de Confiance resources. A `Policy` is a collection of `bindings`. A `binding` binds one or more `members`, or principals, to a single `role`. Principals can be user accounts, service accounts, Cloud de Confiance group, and domains. A `role` is a named list of permissions; each `role` can be an IAM predefined role or a user-created custom role. For some types of Cloud de Confiance resources, a `binding` can also specify a `condition`, which is a logical expression that allows access to a resource only if the expression evaluates to `true`. A condition can add constraints based on attributes of the request, the resource, or both. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://documentation.s3ns.fr/iam/help/conditions/resource-policies). **JSON example:** ``` { \"bindings\": [ { \"role\": \"roles/resourcemanager.organizationAdmin\", \"members\": [ \"user:mike@example.com\", \"group:admins@example.com\", \"domain:s3nsapis.fr\", \"serviceAccount:my-project-id@appspot.gserviceaccount.com\" ] }, { \"role\": \"roles/resourcemanager.organizationViewer\", \"members\": [ \"user:eve@example.com\" ], \"condition\": { \"title\": \"expirable access\", \"description\": \"Does not grant access after Sep 2020\", \"expression\": \"request.time \u003c timestamp('2020-10-01T00:00:00.000Z')\", } } ], \"etag\": \"BwWWja0YfJA=\", \"version\": 3 } ``` **YAML example:** ``` bindings: - members: - user:mike@example.com - group:admins@example.com - domain:s3nsapis.fr - serviceAccount:my-project-id@appspot.gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.com role: roles/resourcemanager.organizationViewer condition: title: expirable access description: Does not grant access after Sep 2020 expression: request.time \u003c timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the [IAM documentation](https://documentation.s3ns.fr/iam/docs/).",
      "type": "object",
      "id": "Policy"
    },
    "AsymmetricSignRequest": {
      "type": "object",
      "id": "AsymmetricSignRequest",
      "properties": {
        "digestCrc32c": {
          "type": "string",
          "description": "Optional. An optional CRC32C checksum of the AsymmetricSignRequest.digest. If specified, KeyManagementService will verify the integrity of the received AsymmetricSignRequest.digest using this checksum. KeyManagementService will report an error if the checksum verification fails. If you receive a checksum error, your client should verify that CRC32C(AsymmetricSignRequest.digest) is equal to AsymmetricSignRequest.digest_crc32c, and if so, perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64"
        },
        "data": {
          "type": "string",
          "description": "Optional. The data to sign. It can't be supplied if AsymmetricSignRequest.digest is supplied.",
          "format": "byte"
        },
        "dataCrc32c": {
          "description": "Optional. An optional CRC32C checksum of the AsymmetricSignRequest.data. If specified, KeyManagementService will verify the integrity of the received AsymmetricSignRequest.data using this checksum. KeyManagementService will report an error if the checksum verification fails. If you receive a checksum error, your client should verify that CRC32C(AsymmetricSignRequest.data) is equal to AsymmetricSignRequest.data_crc32c, and if so, perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64",
          "type": "string"
        },
        "digest": {
          "description": "Optional. The digest of the data to sign. The digest must be produced with the same digest algorithm as specified by the key version's algorithm. This field may not be supplied if AsymmetricSignRequest.data is supplied.",
          "$ref": "Digest"
        }
      },
      "description": "Request message for KeyManagementService.AsymmetricSign."
    },
    "MacVerifyResponse": {
      "type": "object",
      "id": "MacVerifyResponse",
      "properties": {
        "verifiedMacCrc32c": {
          "description": "Integrity verification field. A flag indicating whether MacVerifyRequest.mac_crc32c was received by KeyManagementService and used for the integrity verification of the data. A false value of this field indicates either that MacVerifyRequest.mac_crc32c was left unset or that it was not delivered to KeyManagementService. If you've set MacVerifyRequest.mac_crc32c but this field is still false, discard the response and perform a limited number of retries.",
          "type": "boolean"
        },
        "verifiedDataCrc32c": {
          "type": "boolean",
          "description": "Integrity verification field. A flag indicating whether MacVerifyRequest.data_crc32c was received by KeyManagementService and used for the integrity verification of the data. A false value of this field indicates either that MacVerifyRequest.data_crc32c was left unset or that it was not delivered to KeyManagementService. If you've set MacVerifyRequest.data_crc32c but this field is still false, discard the response and perform a limited number of retries."
        },
        "verifiedSuccessIntegrity": {
          "type": "boolean",
          "description": "Integrity verification field. This value is used for the integrity verification of [MacVerifyResponse.success]. If the value of this field contradicts the value of [MacVerifyResponse.success], discard the response and perform a limited number of retries."
        },
        "protectionLevel": {
          "type": "string",
          "enum": [
            "PROTECTION_LEVEL_UNSPECIFIED",
            "SOFTWARE",
            "HSM",
            "EXTERNAL",
            "EXTERNAL_VPC",
            "HSM_SINGLE_TENANT"
          ],
          "description": "The ProtectionLevel of the CryptoKeyVersion used for verification.",
          "enumDescriptions": [
            "Not specified.",
            "Crypto operations are performed in software.",
            "Crypto operations are performed in a Hardware Security Module.",
            "Crypto operations are performed by an external key manager.",
            "Crypto operations are performed in an EKM-over-VPC backend.",
            "Crypto operations are performed in a single-tenant HSM."
          ]
        },
        "name": {
          "description": "The resource name of the CryptoKeyVersion used for verification. Check this field to verify that the intended resource was used for verification.",
          "type": "string"
        },
        "success": {
          "type": "boolean",
          "description": "This field indicates whether or not the verification operation for MacVerifyRequest.mac over MacVerifyRequest.data was successful."
        }
      },
      "description": "Response message for KeyManagementService.MacVerify."
    },
    "VerifyConnectivityResponse": {
      "properties": {},
      "description": "Response message for EkmService.VerifyConnectivity.",
      "type": "object",
      "id": "VerifyConnectivityResponse"
    },
    "ImportJob": {
      "properties": {
        "cryptoKeyBackend": {
          "type": "string",
          "description": "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. Supported resources: * `\"projects/*/locations/*/singleTenantHsmInstances/*\"`"
        },
        "expireTime": {
          "type": "string",
          "readOnly": true,
          "description": "Output only. The time at which this ImportJob is scheduled for expiration and can no longer be used to import key material.",
          "format": "google-datetime"
        },
        "protectionLevel": {
          "type": "string",
          "enum": [
            "PROTECTION_LEVEL_UNSPECIFIED",
            "SOFTWARE",
            "HSM",
            "EXTERNAL",
            "EXTERNAL_VPC",
            "HSM_SINGLE_TENANT"
          ],
          "description": "Required. Immutable. The protection level of the ImportJob. This must match the protection_level of the version_template on the CryptoKey you attempt to import into.",
          "enumDescriptions": [
            "Not specified.",
            "Crypto operations are performed in software.",
            "Crypto operations are performed in a Hardware Security Module.",
            "Crypto operations are performed by an external key manager.",
            "Crypto operations are performed in an EKM-over-VPC backend.",
            "Crypto operations are performed in a single-tenant HSM."
          ]
        },
        "importMethod": {
          "description": "Required. Immutable. The wrapping method to be used for incoming key material.",
          "enumDescriptions": [
            "Not specified.",
            "This ImportMethod represents the CKM_RSA_AES_KEY_WRAP key wrapping scheme defined in the PKCS #11 standard. In summary, this involves wrapping the raw key with an ephemeral AES key, and wrapping the ephemeral AES key with a 3072 bit RSA key. For more details, see [RSA AES key wrap mechanism](http://docs.oasis-open.org/pkcs11/pkcs11-curr/v2.40/cos01/pkcs11-curr-v2.40-cos01.html#_Toc408226908).",
            "This ImportMethod represents the CKM_RSA_AES_KEY_WRAP key wrapping scheme defined in the PKCS #11 standard. In summary, this involves wrapping the raw key with an ephemeral AES key, and wrapping the ephemeral AES key with a 4096 bit RSA key. For more details, see [RSA AES key wrap mechanism](http://docs.oasis-open.org/pkcs11/pkcs11-curr/v2.40/cos01/pkcs11-curr-v2.40-cos01.html#_Toc408226908).",
            "This ImportMethod represents the CKM_RSA_AES_KEY_WRAP key wrapping scheme defined in the PKCS #11 standard. In summary, this involves wrapping the raw key with an ephemeral AES key, and wrapping the ephemeral AES key with a 3072 bit RSA key. For more details, see [RSA AES key wrap mechanism](http://docs.oasis-open.org/pkcs11/pkcs11-curr/v2.40/cos01/pkcs11-curr-v2.40-cos01.html#_Toc408226908).",
            "This ImportMethod represents the CKM_RSA_AES_KEY_WRAP key wrapping scheme defined in the PKCS #11 standard. In summary, this involves wrapping the raw key with an ephemeral AES key, and wrapping the ephemeral AES key with a 4096 bit RSA key. For more details, see [RSA AES key wrap mechanism](http://docs.oasis-open.org/pkcs11/pkcs11-curr/v2.40/cos01/pkcs11-curr-v2.40-cos01.html#_Toc408226908).",
            "This ImportMethod represents RSAES-OAEP with a 3072 bit RSA key. The key material to be imported is wrapped directly with the RSA key. Due to technical limitations of RSA wrapping, this method cannot be used to wrap RSA keys for import.",
            "This ImportMethod represents RSAES-OAEP with a 4096 bit RSA key. The key material to be imported is wrapped directly with the RSA key. Due to technical limitations of RSA wrapping, this method cannot be used to wrap RSA keys for import."
          ],
          "type": "string",
          "enum": [
            "IMPORT_METHOD_UNSPECIFIED",
            "RSA_OAEP_3072_SHA1_AES_256",
            "RSA_OAEP_4096_SHA1_AES_256",
            "RSA_OAEP_3072_SHA256_AES_256",
            "RSA_OAEP_4096_SHA256_AES_256",
            "RSA_OAEP_3072_SHA256",
            "RSA_OAEP_4096_SHA256"
          ]
        },
        "generateTime": {
          "type": "string",
          "description": "Output only. The time this ImportJob's key material was generated.",
          "format": "google-datetime",
          "readOnly": true
        },
        "publicKey": {
          "readOnly": true,
          "description": "Output only. The public key with which to wrap key material prior to import. Only returned if state is ACTIVE.",
          "$ref": "WrappingPublicKey"
        },
        "attestation": {
          "description": "Output only. Statement that was generated and signed by the key creator (for example, an HSM) at key creation time. Use this statement to verify attributes of the key as stored on the HSM, independently of Cloud de Confiance. Only present if the chosen ImportMethod is one with a protection level of HSM.",
          "readOnly": true,
          "$ref": "KeyOperationAttestation"
        },
        "createTime": {
          "type": "string",
          "readOnly": true,
          "description": "Output only. The time at which this ImportJob was created.",
          "format": "google-datetime"
        },
        "state": {
          "enum": [
            "IMPORT_JOB_STATE_UNSPECIFIED",
            "PENDING_GENERATION",
            "ACTIVE",
            "EXPIRED"
          ],
          "readOnly": true,
          "type": "string",
          "description": "Output only. The current state of the ImportJob, indicating if it can be used.",
          "enumDescriptions": [
            "Not specified.",
            "The wrapping key for this job is still being generated. It may not be used. Cloud KMS will automatically mark this job as ACTIVE as soon as the wrapping key is generated.",
            "This job may be used in CreateCryptoKey and CreateCryptoKeyVersion requests.",
            "This job can no longer be used and may not leave this state once entered."
          ]
        },
        "name": {
          "readOnly": true,
          "description": "Output only. The resource name for this ImportJob in the format `projects/*/locations/*/keyRings/*/importJobs/*`.",
          "type": "string"
        },
        "expireEventTime": {
          "type": "string",
          "description": "Output only. The time this ImportJob expired. Only present if state is EXPIRED.",
          "format": "google-datetime",
          "readOnly": true
        }
      },
      "description": "An ImportJob can be used to create CryptoKeys and CryptoKeyVersions using pre-existing key material, generated outside of Cloud KMS. When an ImportJob is created, Cloud KMS will generate a \"wrapping key\", which is a public/private key pair. You use the wrapping key to encrypt (also known as wrap) the pre-existing key material to protect it during the import process. The nature of the wrapping key depends on the choice of import_method. When the wrapping key generation is complete, the state will be set to ACTIVE and the public_key can be fetched. The fetched public key can then be used to wrap your pre-existing key material. Once the key material is wrapped, it can be imported into a new CryptoKeyVersion in an existing CryptoKey by calling ImportCryptoKeyVersion. Multiple CryptoKeyVersions can be imported with a single ImportJob. Cloud KMS uses the private key portion of the wrapping key to unwrap the key material. Only Cloud KMS has access to the private key. An ImportJob expires 3 days after it is created. Once expired, Cloud KMS will no longer be able to import or unwrap any key material that was wrapped with the ImportJob's public key. For more information, see [Importing a key](https://documentation.s3ns.fr/kms/docs/importing-a-key).",
      "type": "object",
      "id": "ImportJob"
    },
    "ListOperationsResponse": {
      "description": "The response message for Operations.ListOperations.",
      "properties": {
        "operations": {
          "type": "array",
          "items": {
            "$ref": "Operation"
          },
          "description": "A list of operations that matches the specified filter in the request."
        },
        "nextPageToken": {
          "type": "string",
          "description": "The standard List next-page token."
        },
        "unreachable": {
          "items": {
            "type": "string"
          },
          "description": "Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections. For example, when attempting to list all resources across all supported locations.",
          "type": "array"
        }
      },
      "id": "ListOperationsResponse",
      "type": "object"
    },
    "RequiredActionQuorumReply": {
      "properties": {
        "requiredChallengeReplies": {
          "type": "array",
          "description": "Required. All required challenges must be signed for the proposal to be approved. These can be sent across multiple requests.",
          "items": {
            "$ref": "ChallengeReply"
          }
        },
        "quorumChallengeReplies": {
          "description": "Required. Quorum members' signed challenge replies. These can be provided across multiple requests. The proposal will be approved when required_approver_count quorum_challenge_replies are provided and when all required_challenge_replies are provided.",
          "items": {
            "$ref": "ChallengeReply"
          },
          "type": "array"
        }
      },
      "description": "The reply to RequiredActionQuorumParameters for approving the proposal.",
      "type": "object",
      "id": "RequiredActionQuorumReply"
    },
    "UpdateCryptoKeyPrimaryVersionRequest": {
      "description": "Request message for KeyManagementService.UpdateCryptoKeyPrimaryVersion.",
      "properties": {
        "cryptoKeyVersionId": {
          "description": "Required. The id of the child CryptoKeyVersion to use as primary.",
          "type": "string"
        }
      },
      "id": "UpdateCryptoKeyPrimaryVersionRequest",
      "type": "object"
    },
    "KeyAccessJustificationsEnrollmentConfig": {
      "properties": {
        "policyEnforcement": {
          "type": "boolean",
          "description": "Indicates whether the project is enrolled in KAJ policy enforcement."
        },
        "auditLogging": {
          "description": "Indicates whether the project has KAJ logging enabled.",
          "type": "boolean"
        }
      },
      "description": "Represents the configuration of a protection level for a project's Key Access Justifications enrollment.",
      "type": "object",
      "id": "KeyAccessJustificationsEnrollmentConfig"
    },
    "DisableSingleTenantHsmInstance": {
      "properties": {},
      "description": "Disable the SingleTenantHsmInstance. The SingleTenantHsmInstance must be in the ACTIVE state to perform this operation.",
      "type": "object",
      "id": "DisableSingleTenantHsmInstance"
    },
    "EnableSingleTenantHsmInstance": {
      "type": "object",
      "id": "EnableSingleTenantHsmInstance",
      "properties": {},
      "description": "Enable the SingleTenantHsmInstance. The SingleTenantHsmInstance must be in the DISABLED state to perform this operation."
    },
    "EkmConfig": {
      "description": "An EkmConfig is a singleton resource that represents configuration parameters that apply to all CryptoKeys and CryptoKeyVersions with a ProtectionLevel of EXTERNAL_VPC in a given project and location.",
      "properties": {
        "defaultEkmConnection": {
          "description": "Optional. Resource name of the default EkmConnection. Setting this field to the empty string removes the default.",
          "type": "string"
        },
        "name": {
          "readOnly": true,
          "description": "Output only. The resource name for the EkmConfig in the format `projects/*/locations/*/ekmConfig`.",
          "type": "string"
        }
      },
      "id": "EkmConfig",
      "type": "object"
    },
    "CertificateChains": {
      "description": "Certificate chains needed to verify the attestation. Certificates in chains are PEM-encoded and are ordered based on https://tools.ietf.org/html/rfc5246#section-7.4.2.",
      "properties": {
        "caviumCerts": {
          "type": "array",
          "description": "Cavium certificate chain corresponding to the attestation.",
          "items": {
            "type": "string"
          }
        },
        "googleCardCerts": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Cloud de Confiance card certificate chain corresponding to the attestation."
        },
        "googlePartitionCerts": {
          "items": {
            "type": "string"
          },
          "description": "Cloud de Confiance partition certificate chain corresponding to the attestation.",
          "type": "array"
        }
      },
      "id": "CertificateChains",
      "type": "object"
    },
    "Binding": {
      "type": "object",
      "id": "Binding",
      "properties": {
        "members": {
          "items": {
            "type": "string"
          },
          "description": "Specifies the principals requesting access for a Cloud de Confiance resource. `members` can have the following values: * `allUsers`: A special identifier that represents anyone who is on the internet; with or without a Cloud de Confiance account. * `allAuthenticatedUsers`: A special identifier that represents anyone who is authenticated with a Cloud de Confiance account or a service account. Does not include identities that come from external identity providers (IdPs) through identity federation. * `user:{emailid}`: An email address that represents a specific Cloud de Confiance account. For example, `alice@example.com`. * `serviceAccount:{emailid}`: An email address that represents a Service Account. For example, `my-other-app@appspot.gserviceaccount.com`. * `serviceAccount:{projectid}.svc.id.goog[{namespace}/{kubernetes-sa}]`: An identifier for a [Kubernetes service account](https://documentation.s3ns.fr/kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:{emailid}`: An email address that represents a Cloud de Confiance group. For example, `admins@example.com`. * `domain:{domain}`: The G Suite domain (primary) that represents all the users of that domain. For example, `example.com`. * `principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/subject/{subject_attribute_value}`: A single identity in a workforce identity pool. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/group/{group_id}`: All workforce identities in a group. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/attribute.{attribute_name}/{attribute_value}`: All workforce identities with a specific attribute value. * `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool_id}/*`: All identities in a workforce identity pool. * `principal://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/subject/{subject_attribute_value}`: A single identity in a workload identity pool. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/group/{group_id}`: A workload identity pool group. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/attribute.{attribute_name}/{attribute_value}`: All identities in a workload identity pool with a certain attribute. * `principalSet://iam.googleapis.com/projects/{project_number}/locations/global/workloadIdentityPools/{pool_id}/*`: All identities in a workload identity pool. * `deleted:user:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a user that has been recently deleted. For example, `alice@example.com?uid=123456789012345678901`. If the user is recovered, this value reverts to `user:{emailid}` and the recovered user retains the role in the binding. * `deleted:serviceAccount:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a service account that has been recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=123456789012345678901`. If the service account is undeleted, this value reverts to `serviceAccount:{emailid}` and the undeleted service account retains the role in the binding. * `deleted:group:{emailid}?uid={uniqueid}`: An email address (plus unique identifier) representing a Cloud de Confiance group that has been recently deleted. For example, `admins@example.com?uid=123456789012345678901`. If the group is recovered, this value reverts to `group:{emailid}` and the recovered group retains the role in the binding. * `deleted:principal://iam.googleapis.com/locations/global/workforcePools/{pool_id}/subject/{subject_attribute_value}`: Deleted single identity in a workforce identity pool. For example, `deleted:principal://iam.googleapis.com/locations/global/workforcePools/my-pool-id/subject/my-subject-attribute-value`.",
          "type": "array"
        },
        "condition": {
          "description": "The condition that is associated with this binding. If the condition evaluates to `true`, then this binding applies to the current request. If the condition evaluates to `false`, then this binding does not apply to the current request. However, a different role binding might grant the same role to one or more of the principals in this binding. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://documentation.s3ns.fr/iam/help/conditions/resource-policies).",
          "$ref": "Expr"
        },
        "role": {
          "description": "Role that is assigned to the list of `members`, or principals. For example, `roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM roles and permissions, see the [IAM documentation](https://documentation.s3ns.fr/iam/docs/roles-overview). For a list of the available pre-defined roles, see [here](https://documentation.s3ns.fr/iam/docs/understanding-roles).",
          "type": "string"
        }
      },
      "description": "Associates `members`, or principals, with a `role`."
    },
    "ListCryptoKeysResponse": {
      "type": "object",
      "id": "ListCryptoKeysResponse",
      "properties": {
        "totalSize": {
          "description": "The total number of CryptoKeys that matched the query. This field is not populated if ListCryptoKeysRequest.filter is applied.",
          "format": "int32",
          "type": "integer"
        },
        "cryptoKeys": {
          "items": {
            "$ref": "CryptoKey"
          },
          "description": "The list of CryptoKeys.",
          "type": "array"
        },
        "nextPageToken": {
          "type": "string",
          "description": "A token to retrieve next page of results. Pass this value in ListCryptoKeysRequest.page_token to retrieve the next page of results."
        }
      },
      "description": "Response message for KeyManagementService.ListCryptoKeys."
    },
    "Operation": {
      "type": "object",
      "id": "Operation",
      "properties": {
        "name": {
          "type": "string",
          "description": "The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`."
        },
        "error": {
          "description": "The error result of the operation in case of failure or cancellation.",
          "$ref": "Status"
        },
        "response": {
          "type": "object",
          "description": "The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.",
          "additionalProperties": {
            "description": "Properties of the object. Contains field @type with type URL.",
            "type": "any"
          }
        },
        "metadata": {
          "type": "object",
          "description": "Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.",
          "additionalProperties": {
            "description": "Properties of the object. Contains field @type with type URL.",
            "type": "any"
          }
        },
        "done": {
          "description": "If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.",
          "type": "boolean"
        }
      },
      "description": "This resource represents a long-running operation that is the result of a network API call."
    },
    "CancelOperationRequest": {
      "properties": {},
      "description": "The request message for Operations.CancelOperation.",
      "type": "object",
      "id": "CancelOperationRequest"
    },
    "RefreshSingleTenantHsmInstance": {
      "id": "RefreshSingleTenantHsmInstance",
      "type": "object",
      "description": "Refreshes the SingleTenantHsmInstance. This operation must be performed periodically to keep the SingleTenantHsmInstance active. This operation must be performed before unrefreshed_duration_until_disable has passed. The SingleTenantHsmInstance must be in the ACTIVE state to perform this operation.",
      "properties": {}
    },
    "LocationMetadata": {
      "description": "Cloud KMS metadata for the given google.cloud.location.Location.",
      "properties": {
        "hsmAvailable": {
          "description": "Indicates whether CryptoKeys with protection_level HSM can be created in this location.",
          "type": "boolean"
        },
        "ekmAvailable": {
          "type": "boolean",
          "description": "Indicates whether CryptoKeys with protection_level EXTERNAL can be created in this location."
        },
        "hsmSingleTenantAvailable": {
          "type": "boolean",
          "description": "Indicates whether CryptoKeys with protection_level HSM_SINGLE_TENANT can be created in this location."
        }
      },
      "id": "LocationMetadata",
      "type": "object"
    },
    "KeyRing": {
      "properties": {
        "name": {
          "type": "string",
          "description": "Output only. The resource name for the KeyRing in the format `projects/*/locations/*/keyRings/*`.",
          "readOnly": true
        },
        "createTime": {
          "type": "string",
          "description": "Output only. The time at which this KeyRing was created.",
          "format": "google-datetime",
          "readOnly": true
        }
      },
      "description": "A KeyRing is a toplevel logical grouping of CryptoKeys.",
      "type": "object",
      "id": "KeyRing"
    },
    "MacSignRequest": {
      "properties": {
        "data": {
          "type": "string",
          "description": "Required. The data to sign. The MAC tag is computed over this data field based on the specific algorithm.",
          "format": "byte"
        },
        "dataCrc32c": {
          "description": "Optional. An optional CRC32C checksum of the MacSignRequest.data. If specified, KeyManagementService will verify the integrity of the received MacSignRequest.data using this checksum. KeyManagementService will report an error if the checksum verification fails. If you receive a checksum error, your client should verify that CRC32C(MacSignRequest.data) is equal to MacSignRequest.data_crc32c, and if so, perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64",
          "type": "string"
        }
      },
      "description": "Request message for KeyManagementService.MacSign.",
      "type": "object",
      "id": "MacSignRequest"
    },
    "AsymmetricSignResponse": {
      "description": "Response message for KeyManagementService.AsymmetricSign.",
      "properties": {
        "protectionLevel": {
          "type": "string",
          "enum": [
            "PROTECTION_LEVEL_UNSPECIFIED",
            "SOFTWARE",
            "HSM",
            "EXTERNAL",
            "EXTERNAL_VPC",
            "HSM_SINGLE_TENANT"
          ],
          "description": "The ProtectionLevel of the CryptoKeyVersion used for signing.",
          "enumDescriptions": [
            "Not specified.",
            "Crypto operations are performed in software.",
            "Crypto operations are performed in a Hardware Security Module.",
            "Crypto operations are performed by an external key manager.",
            "Crypto operations are performed in an EKM-over-VPC backend.",
            "Crypto operations are performed in a single-tenant HSM."
          ]
        },
        "name": {
          "description": "The resource name of the CryptoKeyVersion used for signing. Check this field to verify that the intended resource was used for signing.",
          "type": "string"
        },
        "signatureCrc32c": {
          "description": "Integrity verification field. A CRC32C checksum of the returned AsymmetricSignResponse.signature. An integrity check of AsymmetricSignResponse.signature can be performed by computing the CRC32C checksum of AsymmetricSignResponse.signature and comparing your results to this field. Discard the response in case of non-matching checksum values, and perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64",
          "type": "string"
        },
        "verifiedDigestCrc32c": {
          "type": "boolean",
          "description": "Integrity verification field. A flag indicating whether AsymmetricSignRequest.digest_crc32c was received by KeyManagementService and used for the integrity verification of the digest. A false value of this field indicates either that AsymmetricSignRequest.digest_crc32c was left unset or that it was not delivered to KeyManagementService. If you've set AsymmetricSignRequest.digest_crc32c but this field is still false, discard the response and perform a limited number of retries."
        },
        "signature": {
          "type": "string",
          "description": "The created signature.",
          "format": "byte"
        },
        "verifiedDataCrc32c": {
          "type": "boolean",
          "description": "Integrity verification field. A flag indicating whether AsymmetricSignRequest.data_crc32c was received by KeyManagementService and used for the integrity verification of the data. A false value of this field indicates either that AsymmetricSignRequest.data_crc32c was left unset or that it was not delivered to KeyManagementService. If you've set AsymmetricSignRequest.data_crc32c but this field is still false, discard the response and perform a limited number of retries."
        }
      },
      "id": "AsymmetricSignResponse",
      "type": "object"
    },
    "AutokeyConfig": {
      "properties": {
        "name": {
          "description": "Identifier. Name of the AutokeyConfig resource, e.g. `folders/{FOLDER_NUMBER}/autokeyConfig` or `projects/{PROJECT_NUMBER}/autokeyConfig`.",
          "type": "string"
        },
        "etag": {
          "type": "string",
          "description": "Optional. A checksum computed by the server based on the value of other fields. This may be sent on update requests to ensure that the client has an up-to-date value before proceeding. The request will be rejected with an ABORTED error on a mismatched etag."
        },
        "state": {
          "enum": [
            "STATE_UNSPECIFIED",
            "ACTIVE",
            "KEY_PROJECT_DELETED",
            "UNINITIALIZED"
          ],
          "readOnly": true,
          "type": "string",
          "description": "Output only. The state for the AutokeyConfig.",
          "enumDescriptions": [
            "The state of the AutokeyConfig is unspecified.",
            "The AutokeyConfig is currently active.",
            "A previously configured key project has been deleted and the current AutokeyConfig is unusable.",
            "The AutokeyConfig is not yet initialized or has been reset to its default uninitialized state."
          ]
        },
        "keyProject": {
          "description": "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.",
          "type": "string"
        },
        "keyProjectResolutionMode": {
          "type": "string",
          "enum": [
            "KEY_PROJECT_RESOLUTION_MODE_UNSPECIFIED",
            "DEDICATED_KEY_PROJECT",
            "RESOURCE_PROJECT",
            "DISABLED"
          ],
          "description": "Optional. KeyProjectResolutionMode for the AutokeyConfig. Valid values are `DEDICATED_KEY_PROJECT`, `RESOURCE_PROJECT`, or `DISABLED`.",
          "enumDescriptions": [
            "Default value. KeyProjectResolutionMode when not specified will act as `DEDICATED_KEY_PROJECT`.",
            "Keys are created in a dedicated project specified by `key_project`.",
            "Keys are created in the same project as the resource requesting the key. The `key_project` must not be set when this mode is used.",
            "Disables the AutokeyConfig. When this mode is set, any AutokeyConfig from higher levels in the resource hierarchy are ignored for this resource and its descendants. This setting can be overridden by a more specific configuration at a lower level. For example, if Autokey is disabled on a folder, it can be re-enabled on a sub-folder or project within that folder by setting a different mode (e.g., DEDICATED_KEY_PROJECT or RESOURCE_PROJECT)."
          ]
        }
      },
      "description": "Cloud KMS Autokey configuration for a folder.",
      "type": "object",
      "id": "AutokeyConfig"
    },
    "ApproveSingleTenantHsmInstanceProposalRequest": {
      "type": "object",
      "id": "ApproveSingleTenantHsmInstanceProposalRequest",
      "properties": {
        "quorumReply": {
          "$ref": "QuorumReply",
          "description": "Required. The reply to QuorumParameters for approving the proposal."
        },
        "requiredActionQuorumReply": {
          "$ref": "RequiredActionQuorumReply",
          "description": "Required. The reply to RequiredActionQuorumParameters for approving the proposal."
        }
      },
      "description": "Request message for HsmManagement.ApproveSingleTenantHsmInstanceProposal."
    },
    "SingleTenantHsmInstance": {
      "id": "SingleTenantHsmInstance",
      "type": "object",
      "description": "A SingleTenantHsmInstance represents a single-tenant HSM instance. It can be used for creating CryptoKeys with a ProtectionLevel of HSM_SINGLE_TENANT, as well as performing cryptographic operations using keys created within the SingleTenantHsmInstance.",
      "properties": {
        "name": {
          "description": "Identifier. The resource name for this SingleTenantHsmInstance in the format `projects/*/locations/*/singleTenantHsmInstances/*`.",
          "type": "string"
        },
        "deleteTime": {
          "readOnly": true,
          "description": "Output only. The time at which the SingleTenantHsmInstance was deleted.",
          "format": "google-datetime",
          "type": "string"
        },
        "disableTime": {
          "type": "string",
          "description": "Output only. The time at which the instance will be automatically disabled if not refreshed. This field is updated upon creation and after each successful refresh operation and enable. A RefreshSingleTenantHsmInstance operation must be made via a SingleTenantHsmInstanceProposal before this time otherwise the SingleTenantHsmInstance will become disabled.",
          "format": "google-datetime",
          "readOnly": true
        },
        "quorumAuth": {
          "description": "Required. The quorum auth configuration for the SingleTenantHsmInstance.",
          "$ref": "QuorumAuth"
        },
        "keyPortabilityEnabled": {
          "description": "Optional. Immutable. Indicates whether key portability is enabled for the SingleTenantHsmInstance. This can only be set at creation time. Key portability features are disabled by default and not yet available in GA.",
          "type": "boolean"
        },
        "unrefreshedDurationUntilDisable": {
          "type": "string",
          "description": "Output only. The system-defined duration that an instance can remain unrefreshed until it is automatically disabled. This will have a value of 730 days.",
          "format": "google-duration",
          "readOnly": true
        },
        "state": {
          "type": "string",
          "description": "Output only. The state of the SingleTenantHsmInstance.",
          "enumDescriptions": [
            "Not specified.",
            "The SingleTenantHsmInstance is being created.",
            "The SingleTenantHsmInstance is waiting for 2FA keys to be registered. This can be done by calling CreateSingleTenantHsmInstanceProposal with the RegisterTwoFactorAuthKeys operation.",
            "The SingleTenantHsmInstance is ready to use. A SingleTenantHsmInstance must be in the ACTIVE state for all CryptoKeys created within the SingleTenantHsmInstance to be usable.",
            "The SingleTenantHsmInstance is being disabled.",
            "The SingleTenantHsmInstance is disabled.",
            "The SingleTenantHsmInstance is being deleted. Requests to the instance will be rejected in this state.",
            "The SingleTenantHsmInstance has been deleted.",
            "The SingleTenantHsmInstance has failed and can not be recovered or used."
          ],
          "enum": [
            "STATE_UNSPECIFIED",
            "CREATING",
            "PENDING_TWO_FACTOR_AUTH_REGISTRATION",
            "ACTIVE",
            "DISABLING",
            "DISABLED",
            "DELETING",
            "DELETED",
            "FAILED"
          ],
          "readOnly": true
        },
        "createTime": {
          "type": "string",
          "readOnly": true,
          "description": "Output only. The time at which the SingleTenantHsmInstance was created.",
          "format": "google-datetime"
        }
      }
    },
    "TestIamPermissionsRequest": {
      "type": "object",
      "id": "TestIamPermissionsRequest",
      "properties": {
        "permissions": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "The set of permissions to check for the `resource`. Permissions with wildcards (such as `*` or `storage.*`) are not allowed. For more information see [IAM Overview](https://documentation.s3ns.fr/iam/docs/overview#permissions)."
        }
      },
      "description": "Request message for `TestIamPermissions` method."
    },
    "ListEkmConnectionsResponse": {
      "id": "ListEkmConnectionsResponse",
      "type": "object",
      "description": "Response message for EkmService.ListEkmConnections.",
      "properties": {
        "totalSize": {
          "type": "integer",
          "description": "The total number of EkmConnections that matched the query. This field is not populated if ListEkmConnectionsRequest.filter is applied.",
          "format": "int32"
        },
        "ekmConnections": {
          "type": "array",
          "description": "The list of EkmConnections.",
          "items": {
            "$ref": "EkmConnection"
          }
        },
        "nextPageToken": {
          "type": "string",
          "description": "A token to retrieve next page of results. Pass this value in ListEkmConnectionsRequest.page_token to retrieve the next page of results."
        }
      }
    },
    "DestroyCryptoKeyVersionRequest": {
      "id": "DestroyCryptoKeyVersionRequest",
      "type": "object",
      "description": "Request message for KeyManagementService.DestroyCryptoKeyVersion.",
      "properties": {}
    },
    "EncryptRequest": {
      "type": "object",
      "id": "EncryptRequest",
      "properties": {
        "additionalAuthenticatedDataCrc32c": {
          "type": "string",
          "description": "Optional. An optional CRC32C checksum of the EncryptRequest.additional_authenticated_data. If specified, KeyManagementService will verify the integrity of the received EncryptRequest.additional_authenticated_data using this checksum. KeyManagementService will report an error if the checksum verification fails. If you receive a checksum error, your client should verify that CRC32C(EncryptRequest.additional_authenticated_data) is equal to EncryptRequest.additional_authenticated_data_crc32c, and if so, perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64"
        },
        "additionalAuthenticatedData": {
          "type": "string",
          "description": "Optional. Optional data that, if specified, must also be provided during decryption through DecryptRequest.additional_authenticated_data. The maximum size depends on the key version's protection_level. For SOFTWARE, EXTERNAL, and EXTERNAL_VPC keys the AAD must be no larger than 64KiB. For HSM keys, the combined length of the plaintext and additional_authenticated_data fields must be no larger than 8KiB.",
          "format": "byte"
        },
        "plaintextCrc32c": {
          "type": "string",
          "description": "Optional. An optional CRC32C checksum of the EncryptRequest.plaintext. If specified, KeyManagementService will verify the integrity of the received EncryptRequest.plaintext using this checksum. KeyManagementService will report an error if the checksum verification fails. If you receive a checksum error, your client should verify that CRC32C(EncryptRequest.plaintext) is equal to EncryptRequest.plaintext_crc32c, and if so, perform a limited number of retries. A persistent mismatch may indicate an issue in your computation of the CRC32C checksum. Note: This field is defined as int64 for reasons of compatibility across different languages. However, it is a non-negative integer, which will never exceed 2^32-1, and can be safely downconverted to uint32 in languages that support this type.",
          "format": "int64"
        },
        "plaintext": {
          "description": "Required. The data to encrypt. Must be no larger than 64KiB. The maximum size depends on the key version's protection_level. For SOFTWARE, EXTERNAL, and EXTERNAL_VPC keys, the plaintext must be no larger than 64KiB. For HSM keys, the combined length of the plaintext and additional_authenticated_data fields must be no larger than 8KiB.",
          "format": "byte",
          "type": "string"
        }
      },
      "description": "Request message for KeyManagementService.Encrypt."
    },
    "ApproveSingleTenantHsmInstanceProposalResponse": {
      "type": "object",
      "id": "ApproveSingleTenantHsmInstanceProposalResponse",
      "properties": {},
      "description": "Response message for HsmManagement.ApproveSingleTenantHsmInstanceProposal."
    },
    "ShowEffectiveKeyAccessJustificationsPolicyConfigResponse": {
      "id": "ShowEffectiveKeyAccessJustificationsPolicyConfigResponse",
      "type": "object",
      "description": "Represents a response message for KeyAccessJustificationsConfig.ShowEffectiveKeyAccessJustificationsPolicyConfig.",
      "properties": {
        "effectiveKajPolicy": {
          "description": "Contains the effective KeyAccessJustificationsPolicyConfig.",
          "$ref": "KeyAccessJustificationsPolicyConfig"
        }
      }
    }
  },
  "version_module": true,
  "name": "cloudkms",
  "auth": {
    "oauth2": {
      "scopes": {
        "https://www.googleapis.com/auth/cloud-platform": {
          "description": "See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account."
        },
        "https://www.googleapis.com/auth/cloudkms": {
          "description": "View and manage your keys and secrets stored in Cloud Key Management Service"
        }
      }
    }
  },
  "kind": "discovery#restDescription",
  "documentationLink": "https://documentation.s3ns.fr/kms",
  "protocol": "rest",
  "revision": "20260423",
  "resources": {
    "folders": {
      "methods": {
        "updateAutokeyConfig": {
          "parameters": {
            "name": {
              "description": "Identifier. Name of the AutokeyConfig resource, e.g. `folders/{FOLDER_NUMBER}/autokeyConfig` or `projects/{PROJECT_NUMBER}/autokeyConfig`.",
              "pattern": "^folders/[^/]+/autokeyConfig$",
              "type": "string",
              "location": "path",
              "required": true
            },
            "updateMask": {
              "location": "query",
              "type": "string",
              "description": "Required. Masks which fields of the AutokeyConfig to update, e.g. `keyProject`.",
              "format": "google-fieldmask"
            }
          },
          "scopes": [
            "https://www.googleapis.com/auth/cloud-platform",
            "https://www.googleapis.com/auth/cloudkms"
          ],
          "parameterOrder": [
            "name"
          ],
          "description": "The google.cloud.kms.v1.AutokeyAdmin.UpdateAutokeyConfig method is not available in this (s3nsapis.fr) universe.",
          "flatPath": "v1/folders/{foldersId}/autokeyConfig",
          "request": {
            "$ref": "AutokeyConfig"
          },
          "id": "cloudkms.folders.updateAutokeyConfig",
          "httpMethod": "PATCH",
          "response": {
            "$ref": "AutokeyConfig"
          },
          "path": "v1/{+name}"
        },
        "getAutokeyConfig": {
          "path": "v1/{+name}",
          "id": "cloudkms.folders.getAutokeyConfig",
          "httpMethod": "GET",
          "response": {
            "$ref": "AutokeyConfig"
          },
          "flatPath": "v1/folders/{foldersId}/autokeyConfig",
          "parameterOrder": [
            "name"
          ],
          "description": "The google.cloud.kms.v1.AutokeyAdmin.GetAutokeyConfig method is not available in this (s3nsapis.fr) universe.",
          "parameters": {
            "name": {
              "pattern": "^folders/[^/]+/autokeyConfig$",
              "type": "string",
              "description": "Required. Name of the AutokeyConfig resource, e.g. `folders/{FOLDER_NUMBER}/autokeyConfig` or `projects/{PROJECT_NUMBER}/autokeyConfig`.",
              "required": true,
              "location": "path"
            }
          },
          "scopes": [
            "https://www.googleapis.com/auth/cloud-platform",
            "https://www.googleapis.com/auth/cloudkms"
          ]
        },
        "updateKajPolicyConfig": {
          "request": {
            "$ref": "KeyAccessJustificationsPolicyConfig"
          },
          "flatPath": "v1/folders/{foldersId}/kajPolicyConfig",
          "path": "v1/{+name}",
          "id": "cloudkms.folders.updateKajPolicyConfig",
          "httpMethod": "PATCH",
          "response": {
            "$ref": "KeyAccessJustificationsPolicyConfig"
          },
          "parameters": {
            "name": {
              "location": "path",
              "required": true,
              "description": "Identifier. Represents the resource name for this KeyAccessJustificationsPolicyConfig in the format of \"{organizations|folders|projects}/*/kajPolicyConfig\".",
              "pattern": "^folders/[^/]+/kajPolicyConfig$",
              "type": "string"
            },
            "updateMask": {
              "description": "Optional. Specifies the list of fields to update.",
              "format": "google-fieldmask",
              "location": "query",
              "type": "string"
            }
          },
          "scopes": [
            "https://www.googleapis.com/auth/cloud-platform",
            "https://www.googleapis.com/auth/cloudkms"
          ],
          "parameterOrder": [
            "name"
          ],
          "description": "The google.cloud.kms.v1.KeyAccessJustificationsConfig.UpdateKeyAccessJustificationsPolicyConfig method is not available in this (s3nsapis.fr) universe."
        },
        "getKajPolicyConfig": {
          "parameterOrder": [
            "name"
          ],
          "description": "The google.cloud.kms.v1.KeyAccessJustificationsConfig.GetKeyAccessJustificationsPolicyConfig method is not available in this (s3nsapis.fr) universe.",
          "parameters": {
            "name": {
              "description": "Required. Specifies the name of the KeyAccessJustificationsPolicyConfig to get.",
              "pattern": "^folders/[^/]+/kajPolicyConfig$",
              "type": "string",
              "location": "path",
              "required": true
            }
          },
          "scopes": [
            "https://www.googleapis.com/auth/cloud-platform",
            "https://www.googleapis.com/auth/cloudkms"
          ],
          "id": "cloudkms.folders.getKajPolicyConfig",
          "httpMethod": "GET",
          "response": {
            "$ref": "KeyAccessJustificationsPolicyConfig"
          },
          "path": "v1/{+name}",
          "flatPath": "v1/folders/{foldersId}/kajPolicyConfig"
        }
      }
    },
    "projects": {
      "methods": {
        "showEffectiveAutokeyConfig": {
          "flatPath": "v1/projects/{projectsId}:showEffectiveAutokeyConfig",
          "path": "v1/{+parent}:showEffectiveAutokeyConfig",
          "id": "cloudkms.projects.showEffectiveAutokeyConfig",
          "httpMethod": "GET",
          "response": {
            "$ref": "ShowEffectiveAutokeyConfigResponse"
          },
          "parameters": {
            "parent": {
              "description": "Required. Name of the resource project to the show effective Cloud KMS Autokey configuration for. This may be helpful for interrogating the effect of nested folder configurations on a given resource project.",
              "pattern": "^projects/[^/]+$",
              "type": "string",
              "location": "path",
              "required": true
            }
          },
          "scopes": [
            "https://www.googleapis.com/auth/cloud-platform",
            "https://www.googleapis.com/auth/cloudkms"
          ],
          "parameterOrder": [
            "parent"
          ],
          "description": "The google.cloud.kms.v1.AutokeyAdmin.ShowEffectiveAutokeyConfig method is not available in this (s3nsapis.fr) universe."
        },
        "updateAutokeyConfig": {
          "id": "cloudkms.projects.updateAutokeyConfig",
          "httpMethod": "PATCH",
          "response": {
            "$ref": "AutokeyConfig"
          },
          "path": "v1/{+name}",
          "flatPath": "v1/projects/{projectsId}/autokeyConfig",
          "request": {
            "$ref": "AutokeyConfig"
          },
          "parameterOrder": [
            "name"
          ],
          "description": "The google.cloud.kms.v1.AutokeyAdmin.UpdateAutokeyConfig method is not available in this (s3nsapis.fr) universe.",
          "parameters": {
            "name": {
              "pattern": "^projects/[^/]+/autokeyConfig$",
              "type": "string",
              "description": "Identifier. Name of the AutokeyConfig resource, e.g. `folders/{FOLDER_NUMBER}/autokeyConfig` or `projects/{PROJECT_NUMBER}/autokeyConfig`.",
              "location": "path",
              "required": true
            },
            "updateMask": {
              "location": "query",
              "type": "string",
              "description": "Required. Masks which fields of the AutokeyConfig to update, e.g. `keyProject`.",
              "format": "google-fieldmask"
            }
          },
          "scopes": [
            "https://www.googleapis.com/auth/cloud-platform",
            "https://www.googleapis.com/auth/cloudkms"
          ]
        },
        "getAutokeyConfig": {
          "parameterOrder": [
            "name"
          ],
          "description": "The google.cloud.kms.v1.AutokeyAdmin.GetAutokeyConfig method is not available in this (s3nsapis.fr) universe.",
          "parameters": {
            "name": {
              "pattern": "^projects/[^/]+/autokeyConfig$",
              "type": "string",
              "description": "Required. Name of the AutokeyConfig resource, e.g. `folders/{FOLDER_NUMBER}/autokeyConfig` or `projects/{PROJECT_NUMBER}/autokeyConfig`.",
              "location": "path",
              "required": true
            }
          },
          "scopes": [
            "https://www.googleapis.com/auth/cloud-platform",
            "https://www.googleapis.com/auth/cloudkms"
          ],
          "id": "cloudkms.projects.getAutokeyConfig",
          "httpMethod": "GET",
          "response": {
            "$ref": "AutokeyConfig"
          },
          "path": "v1/{+name}",
          "flatPath": "v1/projects/{projectsId}/autokeyConfig"
        },
        "updateKajPolicyConfig": {
          "parameters": {
            "name": {
              "pattern": "^projects/[^/]+/kajPolicyConfig$",
              "type": "string",
              "description": "Identifier. Represents the resource name for this KeyAccessJustificationsPolicyConfig in the format of \"{organizations|folders|projects}/*/kajPolicyConfig\".",
              "location": "path",
              "required": true
            },
            "updateMask": {
              "location": "query",
              "type": "string",
              "description": "Optional. Specifies the list of fields to update.",
              "format": "google-fieldmask"
            }
          },
          "scopes": [
            "https://www.googleapis.com/auth/cloud-platform",
            "https://www.googleapis.com/auth/cloudkms"
          ],
          "parameterOrder": [
            "name"
          ],
          "description": "The google.cloud.kms.v1.KeyAccessJustificationsConfig.UpdateKeyAccessJustificationsPolicyConfig method is not available in this (s3nsapis.fr) universe.",
          "flatPath": "v1/projects/{projectsId}/kajPolicyConfig",
          "request": {
            "$ref": "KeyAccessJustificationsPolicyConfig"
          },
          "id": "cloudkms.projects.updateKajPolicyConfig",
          "httpMethod": "PATCH",
          "response": {
            "$ref": "KeyAccessJustificationsPolicyConfig"
          },
          "path": "v1/{+name}"
        },
        "showEffectiveKeyAccessJustificationsEnrollmentConfig": {
          "parameters": {
            "project": {
              "description": "Required. Specifies the number or id of the project to get the effective KeyAccessJustificationsEnrollmentConfig for.",
              "pattern": "^projects/[^/]+$",
              "type": "string",
              "required": true,
              "location": "path"
            }
          },
          "scopes": [
            "https://www.googleapis.com/auth/cloud-platform",
            "https://www.googleapis.com/auth/cloudkms"
          ],
          "parameterOrder": [
            "project"
          ],
          "description": "The google.cloud.kms.v1.KeyAccessJustificationsConfig.ShowEffectiveKeyAccessJustificationsEnrollmentConfig method is not available in this (s3nsapis.fr) universe.",
          "flatPath": "v1/projects/{projectsId}:showEffectiveKeyAccessJustificationsEnrollmentConfig",
          "id": "cloudkms.projects.showEffectiveKeyAccessJustificationsEnrollmentConfig",
          "httpMethod": "GET",
          "response": {
            "$ref": "ShowEffectiveKeyAccessJustificationsEnrollmentConfigResponse"
          },
          "path": "v1/{+project}:showEffectiveKeyAccessJustificationsEnrollmentConfig"
        },
        "getKajPolicyConfig": {
          "flatPath": "v1/projects/{projectsId}/kajPolicyConfig",
          "id": "cloudkms.projects.getKajPolicyConfig",
          "httpMethod": "GET",
          "response": {
            "$ref": "KeyAccessJustificationsPolicyConfig"
          },
          "path": "v1/{+name}",
          "parameters": {
            "name": {
              "required": true,
              "location": "path",
              "pattern": "^projects/[^/]+/kajPolicyConfig$",
              "type": "string",
              "description": "Required. Specifies the name of the KeyAccessJustificationsPolicyConfig to get."
            }
          },
          "scopes": [
            "https://www.googleapis.com/auth/cloud-platform",
            "https://www.googleapis.com/auth/cloudkms"
          ],
          "parameterOrder": [
            "name"
          ],
          "description": "The google.cloud.kms.v1.KeyAccessJustificationsConfig.GetKeyAccessJustificationsPolicyConfig method is not available in this (s3nsapis.fr) universe."
        },
        "showEffectiveKeyAccessJustificationsPolicyConfig": {
          "parameterOrder": [
            "project"
          ],
          "description": "The google.cloud.kms.v1.KeyAccessJustificationsConfig.ShowEffectiveKeyAccessJustificationsPolicyConfig method is not available in this (s3nsapis.fr) universe.",
          "parameters": {
            "project": {
              "location": "path",
              "required": true,
              "pattern": "^projects/[^/]+$",
              "type": "string",
              "description": "Required. Specifies the number or id of the project to get the effective KeyAccessJustificationsPolicyConfig. In the format of \"projects/{|}\""
            }
          },
          "scopes": [
            "https://www.googleapis.com/auth/cloud-platform",
            "https://www.googleapis.com/auth/cloudkms"
          ],
          "path": "v1/{+project}:showEffectiveKeyAccessJustificationsPolicyConfig",
          "id": "cloudkms.projects.showEffectiveKeyAccessJustificationsPolicyConfig",
          "httpMethod": "GET",
          "response": {
            "$ref": "ShowEffectiveKeyAccessJustificationsPolicyConfigResponse"
          },
          "flatPath": "v1/projects/{projectsId}:showEffectiveKeyAccessJustificationsPolicyConfig"
        }
      },
      "resources": {
        "locations": {
          "resources": {
            "ekmConnections": {
              "methods": {
                "list": {
                  "path": "v1/{+parent}/ekmConnections",
                  "id": "cloudkms.projects.locations.ekmConnections.list",
                  "httpMethod": "GET",
                  "response": {
                    "$ref": "ListEkmConnectionsResponse"
                  },
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/ekmConnections",
                  "parameterOrder": [
                    "parent"
                  ],
                  "description": "Only EXTERNAL_VPC connections are supported. Lists EkmConnections.",
                  "parameters": {
                    "parent": {
                      "description": "Required. The resource name of the location associated with the EkmConnections to list, in the format `projects/*/locations/*`.",
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "type": "string",
                      "required": true,
                      "location": "path"
                    },
                    "pageSize": {
                      "description": "Optional. Optional limit on the number of EkmConnections to include in the response. Further EkmConnections can subsequently be obtained by including the ListEkmConnectionsResponse.next_page_token in a subsequent request. If unspecified, the server will pick an appropriate default.",
                      "format": "int32",
                      "location": "query",
                      "type": "integer"
                    },
                    "orderBy": {
                      "location": "query",
                      "type": "string",
                      "description": "Optional. Specify how the results should be sorted. If not specified, the results will be sorted in the default order. For more information, see [Sorting and filtering list results](https://documentation.s3ns.fr/kms/docs/sorting-and-filtering)."
                    },
                    "pageToken": {
                      "location": "query",
                      "type": "string",
                      "description": "Optional. Optional pagination token, returned earlier via ListEkmConnectionsResponse.next_page_token."
                    },
                    "filter": {
                      "location": "query",
                      "type": "string",
                      "description": "Optional. Only include resources that match the filter in the response. For more information, see [Sorting and filtering list results](https://documentation.s3ns.fr/kms/docs/sorting-and-filtering)."
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ]
                },
                "get": {
                  "parameterOrder": [
                    "name"
                  ],
                  "description": "Only EXTERNAL_VPC connections are supported. Returns metadata for a given EkmConnection.",
                  "parameters": {
                    "name": {
                      "description": "Required. The name of the EkmConnection to get.",
                      "pattern": "^projects/[^/]+/locations/[^/]+/ekmConnections/[^/]+$",
                      "type": "string",
                      "required": true,
                      "location": "path"
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ],
                  "path": "v1/{+name}",
                  "id": "cloudkms.projects.locations.ekmConnections.get",
                  "httpMethod": "GET",
                  "response": {
                    "$ref": "EkmConnection"
                  },
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/ekmConnections/{ekmConnectionsId}"
                },
                "verifyConnectivity": {
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/ekmConnections/{ekmConnectionsId}:verifyConnectivity",
                  "path": "v1/{+name}:verifyConnectivity",
                  "id": "cloudkms.projects.locations.ekmConnections.verifyConnectivity",
                  "httpMethod": "GET",
                  "response": {
                    "$ref": "VerifyConnectivityResponse"
                  },
                  "parameters": {
                    "name": {
                      "pattern": "^projects/[^/]+/locations/[^/]+/ekmConnections/[^/]+$",
                      "type": "string",
                      "description": "Required. The name of the EkmConnection to verify.",
                      "required": true,
                      "location": "path"
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ],
                  "parameterOrder": [
                    "name"
                  ],
                  "description": "Only EXTERNAL_VPC connections are supported. Verifies that Cloud KMS can successfully connect to the external key manager specified by an EkmConnection. If there is an error connecting to the EKM, this method returns a FAILED_PRECONDITION status containing structured information as described at https://documentation.s3ns.fr/kms/docs/reference/ekm_errors."
                },
                "setIamPolicy": {
                  "path": "v1/{+resource}:setIamPolicy",
                  "id": "cloudkms.projects.locations.ekmConnections.setIamPolicy",
                  "httpMethod": "POST",
                  "response": {
                    "$ref": "Policy"
                  },
                  "request": {
                    "$ref": "SetIamPolicyRequest"
                  },
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/ekmConnections/{ekmConnectionsId}:setIamPolicy",
                  "parameterOrder": [
                    "resource"
                  ],
                  "description": "The google.iam.v1.IAMPolicy.SetIamPolicy method is not available in this (s3nsapis.fr) universe.",
                  "parameters": {
                    "resource": {
                      "required": true,
                      "location": "path",
                      "pattern": "^projects/[^/]+/locations/[^/]+/ekmConnections/[^/]+$",
                      "type": "string",
                      "description": "REQUIRED: The resource for which the policy is being specified. See [Resource names](https://documentation.s3ns.fr/apis/design/resource_names) for the appropriate value for this field."
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ]
                },
                "getIamPolicy": {
                  "parameterOrder": [
                    "resource"
                  ],
                  "description": "The google.iam.v1.IAMPolicy.GetIamPolicy method is not available in this (s3nsapis.fr) universe.",
                  "parameters": {
                    "resource": {
                      "required": true,
                      "location": "path",
                      "description": "REQUIRED: The resource for which the policy is being requested. See [Resource names](https://documentation.s3ns.fr/apis/design/resource_names) for the appropriate value for this field.",
                      "pattern": "^projects/[^/]+/locations/[^/]+/ekmConnections/[^/]+$",
                      "type": "string"
                    },
                    "options.requestedPolicyVersion": {
                      "location": "query",
                      "type": "integer",
                      "description": "Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy in the response might use the policy version that you specified, or it might use a lower policy version. For example, if you specify version 3, but the policy has no conditional role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://documentation.s3ns.fr/iam/help/conditions/resource-policies).",
                      "format": "int32"
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ],
                  "path": "v1/{+resource}:getIamPolicy",
                  "id": "cloudkms.projects.locations.ekmConnections.getIamPolicy",
                  "httpMethod": "GET",
                  "response": {
                    "$ref": "Policy"
                  },
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/ekmConnections/{ekmConnectionsId}:getIamPolicy"
                },
                "testIamPermissions": {
                  "request": {
                    "$ref": "TestIamPermissionsRequest"
                  },
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/ekmConnections/{ekmConnectionsId}:testIamPermissions",
                  "path": "v1/{+resource}:testIamPermissions",
                  "id": "cloudkms.projects.locations.ekmConnections.testIamPermissions",
                  "httpMethod": "POST",
                  "response": {
                    "$ref": "TestIamPermissionsResponse"
                  },
                  "parameters": {
                    "resource": {
                      "required": true,
                      "location": "path",
                      "pattern": "^projects/[^/]+/locations/[^/]+/ekmConnections/[^/]+$",
                      "type": "string",
                      "description": "REQUIRED: The resource for which the policy detail is being requested. See [Resource names](https://documentation.s3ns.fr/apis/design/resource_names) for the appropriate value for this field."
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ],
                  "parameterOrder": [
                    "resource"
                  ],
                  "description": "The google.iam.v1.IAMPolicy.TestIamPermissions method is not available in this (s3nsapis.fr) universe."
                },
                "create": {
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/ekmConnections",
                  "request": {
                    "$ref": "EkmConnection"
                  },
                  "id": "cloudkms.projects.locations.ekmConnections.create",
                  "httpMethod": "POST",
                  "response": {
                    "$ref": "EkmConnection"
                  },
                  "path": "v1/{+parent}/ekmConnections",
                  "parameters": {
                    "parent": {
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "type": "string",
                      "description": "Required. The resource name of the location associated with the EkmConnection, in the format `projects/*/locations/*`.",
                      "required": true,
                      "location": "path"
                    },
                    "ekmConnectionId": {
                      "location": "query",
                      "type": "string",
                      "description": "Required. It must be unique within a location and match the regular expression `[a-zA-Z0-9_-]{1,63}`."
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ],
                  "parameterOrder": [
                    "parent"
                  ],
                  "description": "Only EXTERNAL_VPC connections are supported. Creates a new EkmConnection in a given Project and Location."
                },
                "patch": {
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/ekmConnections/{ekmConnectionsId}",
                  "request": {
                    "$ref": "EkmConnection"
                  },
                  "id": "cloudkms.projects.locations.ekmConnections.patch",
                  "httpMethod": "PATCH",
                  "response": {
                    "$ref": "EkmConnection"
                  },
                  "path": "v1/{+name}",
                  "parameters": {
                    "name": {
                      "required": true,
                      "location": "path",
                      "description": "Output only. The resource name for the EkmConnection in the format `projects/*/locations/*/ekmConnections/*`.",
                      "pattern": "^projects/[^/]+/locations/[^/]+/ekmConnections/[^/]+$",
                      "type": "string"
                    },
                    "updateMask": {
                      "location": "query",
                      "type": "string",
                      "description": "Required. List of fields to be updated in this request.",
                      "format": "google-fieldmask"
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ],
                  "parameterOrder": [
                    "name"
                  ],
                  "description": "Only EXTERNAL_VPC connections are supported. Updates an EkmConnection's metadata."
                }
              }
            },
            "keyRings": {
              "resources": {
                "cryptoKeys": {
                  "resources": {
                    "cryptoKeyVersions": {
                      "methods": {
                        "restore": {
                          "parameterOrder": [
                            "name"
                          ],
                          "description": "Restore a CryptoKeyVersion in the DESTROY_SCHEDULED state. Upon restoration of the CryptoKeyVersion, state will be set to DISABLED, and destroy_time will be cleared.",
                          "parameters": {
                            "name": {
                              "location": "path",
                              "required": true,
                              "description": "Required. The resource name of the CryptoKeyVersion to restore.",
                              "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+/cryptoKeyVersions/[^/]+$",
                              "type": "string"
                            }
                          },
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform",
                            "https://www.googleapis.com/auth/cloudkms"
                          ],
                          "id": "cloudkms.projects.locations.keyRings.cryptoKeys.cryptoKeyVersions.restore",
                          "httpMethod": "POST",
                          "response": {
                            "$ref": "CryptoKeyVersion"
                          },
                          "path": "v1/{+name}:restore",
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}/cryptoKeyVersions/{cryptoKeyVersionsId}:restore",
                          "request": {
                            "$ref": "RestoreCryptoKeyVersionRequest"
                          }
                        },
                        "macVerify": {
                          "parameterOrder": [
                            "name"
                          ],
                          "description": "Verifies MAC tag using a CryptoKeyVersion with CryptoKey.purpose MAC, and returns a response that indicates whether or not the verification was successful.",
                          "parameters": {
                            "name": {
                              "required": true,
                              "location": "path",
                              "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+/cryptoKeyVersions/[^/]+$",
                              "type": "string",
                              "description": "Required. The resource name of the CryptoKeyVersion to use for verification."
                            }
                          },
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform",
                            "https://www.googleapis.com/auth/cloudkms"
                          ],
                          "id": "cloudkms.projects.locations.keyRings.cryptoKeys.cryptoKeyVersions.macVerify",
                          "httpMethod": "POST",
                          "response": {
                            "$ref": "MacVerifyResponse"
                          },
                          "path": "v1/{+name}:macVerify",
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}/cryptoKeyVersions/{cryptoKeyVersionsId}:macVerify",
                          "request": {
                            "$ref": "MacVerifyRequest"
                          }
                        },
                        "rawDecrypt": {
                          "parameters": {
                            "name": {
                              "location": "path",
                              "required": true,
                              "description": "Required. The resource name of the CryptoKeyVersion to use for decryption.",
                              "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+/cryptoKeyVersions/[^/]+$",
                              "type": "string"
                            }
                          },
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform",
                            "https://www.googleapis.com/auth/cloudkms"
                          ],
                          "parameterOrder": [
                            "name"
                          ],
                          "description": "Decrypts data that was originally encrypted using a raw cryptographic mechanism. The CryptoKey.purpose must be RAW_ENCRYPT_DECRYPT.",
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}/cryptoKeyVersions/{cryptoKeyVersionsId}:rawDecrypt",
                          "request": {
                            "$ref": "RawDecryptRequest"
                          },
                          "id": "cloudkms.projects.locations.keyRings.cryptoKeys.cryptoKeyVersions.rawDecrypt",
                          "httpMethod": "POST",
                          "response": {
                            "$ref": "RawDecryptResponse"
                          },
                          "path": "v1/{+name}:rawDecrypt"
                        },
                        "asymmetricDecrypt": {
                          "parameterOrder": [
                            "name"
                          ],
                          "description": "Decrypts data that was encrypted with a public key retrieved from GetPublicKey corresponding to a CryptoKeyVersion with CryptoKey.purpose ASYMMETRIC_DECRYPT.",
                          "parameters": {
                            "name": {
                              "required": true,
                              "location": "path",
                              "description": "Required. The resource name of the CryptoKeyVersion to use for decryption.",
                              "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+/cryptoKeyVersions/[^/]+$",
                              "type": "string"
                            }
                          },
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform",
                            "https://www.googleapis.com/auth/cloudkms"
                          ],
                          "id": "cloudkms.projects.locations.keyRings.cryptoKeys.cryptoKeyVersions.asymmetricDecrypt",
                          "httpMethod": "POST",
                          "response": {
                            "$ref": "AsymmetricDecryptResponse"
                          },
                          "path": "v1/{+name}:asymmetricDecrypt",
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}/cryptoKeyVersions/{cryptoKeyVersionsId}:asymmetricDecrypt",
                          "request": {
                            "$ref": "AsymmetricDecryptRequest"
                          }
                        },
                        "macSign": {
                          "parameters": {
                            "name": {
                              "description": "Required. The resource name of the CryptoKeyVersion to use for signing.",
                              "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+/cryptoKeyVersions/[^/]+$",
                              "type": "string",
                              "location": "path",
                              "required": true
                            }
                          },
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform",
                            "https://www.googleapis.com/auth/cloudkms"
                          ],
                          "parameterOrder": [
                            "name"
                          ],
                          "description": "Signs data using a CryptoKeyVersion with CryptoKey.purpose MAC, producing a tag that can be verified by another source with the same key.",
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}/cryptoKeyVersions/{cryptoKeyVersionsId}:macSign",
                          "request": {
                            "$ref": "MacSignRequest"
                          },
                          "id": "cloudkms.projects.locations.keyRings.cryptoKeys.cryptoKeyVersions.macSign",
                          "httpMethod": "POST",
                          "response": {
                            "$ref": "MacSignResponse"
                          },
                          "path": "v1/{+name}:macSign"
                        },
                        "create": {
                          "id": "cloudkms.projects.locations.keyRings.cryptoKeys.cryptoKeyVersions.create",
                          "httpMethod": "POST",
                          "response": {
                            "$ref": "CryptoKeyVersion"
                          },
                          "path": "v1/{+parent}/cryptoKeyVersions",
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}/cryptoKeyVersions",
                          "request": {
                            "$ref": "CryptoKeyVersion"
                          },
                          "parameterOrder": [
                            "parent"
                          ],
                          "description": "Create a new CryptoKeyVersion in a CryptoKey. The server will assign the next sequential id. If unset, state will be set to ENABLED.",
                          "parameters": {
                            "parent": {
                              "description": "Required. The name of the CryptoKey associated with the CryptoKeyVersions.",
                              "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+$",
                              "type": "string",
                              "required": true,
                              "location": "path"
                            }
                          },
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform",
                            "https://www.googleapis.com/auth/cloudkms"
                          ]
                        },
                        "asymmetricSign": {
                          "parameters": {
                            "name": {
                              "location": "path",
                              "required": true,
                              "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+/cryptoKeyVersions/[^/]+$",
                              "type": "string",
                              "description": "Required. The resource name of the CryptoKeyVersion to use for signing."
                            }
                          },
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform",
                            "https://www.googleapis.com/auth/cloudkms"
                          ],
                          "parameterOrder": [
                            "name"
                          ],
                          "description": "Signs data using a CryptoKeyVersion with CryptoKey.purpose ASYMMETRIC_SIGN, producing a signature that can be verified with the public key retrieved from GetPublicKey.",
                          "request": {
                            "$ref": "AsymmetricSignRequest"
                          },
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}/cryptoKeyVersions/{cryptoKeyVersionsId}:asymmetricSign",
                          "path": "v1/{+name}:asymmetricSign",
                          "id": "cloudkms.projects.locations.keyRings.cryptoKeys.cryptoKeyVersions.asymmetricSign",
                          "httpMethod": "POST",
                          "response": {
                            "$ref": "AsymmetricSignResponse"
                          }
                        },
                        "get": {
                          "id": "cloudkms.projects.locations.keyRings.cryptoKeys.cryptoKeyVersions.get",
                          "httpMethod": "GET",
                          "response": {
                            "$ref": "CryptoKeyVersion"
                          },
                          "path": "v1/{+name}",
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}/cryptoKeyVersions/{cryptoKeyVersionsId}",
                          "parameterOrder": [
                            "name"
                          ],
                          "description": "Returns metadata for a given CryptoKeyVersion.",
                          "parameters": {
                            "name": {
                              "location": "path",
                              "required": true,
                              "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+/cryptoKeyVersions/[^/]+$",
                              "type": "string",
                              "description": "Required. The name of the CryptoKeyVersion to get."
                            }
                          },
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform",
                            "https://www.googleapis.com/auth/cloudkms"
                          ]
                        },
                        "list": {
                          "parameters": {
                            "pageToken": {
                              "description": "Optional. Optional pagination token, returned earlier via ListCryptoKeyVersionsResponse.next_page_token.",
                              "location": "query",
                              "type": "string"
                            },
                            "filter": {
                              "location": "query",
                              "type": "string",
                              "description": "Optional. Only include resources that match the filter in the response. For more information, see [Sorting and filtering list results](https://documentation.s3ns.fr/kms/docs/sorting-and-filtering)."
                            },
                            "view": {
                              "location": "query",
                              "enum": [
                                "CRYPTO_KEY_VERSION_VIEW_UNSPECIFIED",
                                "FULL"
                              ],
                              "type": "string",
                              "description": "The fields to include in the response.",
                              "enumDescriptions": [
                                "Default view for each CryptoKeyVersion. Does not include the attestation field.",
                                "Provides all fields in each CryptoKeyVersion, including the attestation."
                              ]
                            },
                            "parent": {
                              "location": "path",
                              "required": true,
                              "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+$",
                              "type": "string",
                              "description": "Required. The resource name of the CryptoKey to list, in the format `projects/*/locations/*/keyRings/*/cryptoKeys/*`."
                            },
                            "pageSize": {
                              "location": "query",
                              "type": "integer",
                              "description": "Optional. Optional limit on the number of CryptoKeyVersions to include in the response. Further CryptoKeyVersions can subsequently be obtained by including the ListCryptoKeyVersionsResponse.next_page_token in a subsequent request. If unspecified, the server will pick an appropriate default.",
                              "format": "int32"
                            },
                            "orderBy": {
                              "description": "Optional. Specify how the results should be sorted. If not specified, the results will be sorted in the default order. For more information, see [Sorting and filtering list results](https://documentation.s3ns.fr/kms/docs/sorting-and-filtering).",
                              "location": "query",
                              "type": "string"
                            }
                          },
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform",
                            "https://www.googleapis.com/auth/cloudkms"
                          ],
                          "parameterOrder": [
                            "parent"
                          ],
                          "description": "Lists CryptoKeyVersions.",
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}/cryptoKeyVersions",
                          "id": "cloudkms.projects.locations.keyRings.cryptoKeys.cryptoKeyVersions.list",
                          "httpMethod": "GET",
                          "response": {
                            "$ref": "ListCryptoKeyVersionsResponse"
                          },
                          "path": "v1/{+parent}/cryptoKeyVersions"
                        },
                        "rawEncrypt": {
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}/cryptoKeyVersions/{cryptoKeyVersionsId}:rawEncrypt",
                          "request": {
                            "$ref": "RawEncryptRequest"
                          },
                          "id": "cloudkms.projects.locations.keyRings.cryptoKeys.cryptoKeyVersions.rawEncrypt",
                          "httpMethod": "POST",
                          "response": {
                            "$ref": "RawEncryptResponse"
                          },
                          "path": "v1/{+name}:rawEncrypt",
                          "parameters": {
                            "name": {
                              "required": true,
                              "location": "path",
                              "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+/cryptoKeyVersions/[^/]+$",
                              "type": "string",
                              "description": "Required. The resource name of the CryptoKeyVersion to use for encryption."
                            }
                          },
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform",
                            "https://www.googleapis.com/auth/cloudkms"
                          ],
                          "parameterOrder": [
                            "name"
                          ],
                          "description": "Encrypts data using portable cryptographic primitives. Most users should choose Encrypt and Decrypt rather than their raw counterparts. The CryptoKey.purpose must be RAW_ENCRYPT_DECRYPT."
                        },
                        "patch": {
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}/cryptoKeyVersions/{cryptoKeyVersionsId}",
                          "request": {
                            "$ref": "CryptoKeyVersion"
                          },
                          "id": "cloudkms.projects.locations.keyRings.cryptoKeys.cryptoKeyVersions.patch",
                          "httpMethod": "PATCH",
                          "response": {
                            "$ref": "CryptoKeyVersion"
                          },
                          "path": "v1/{+name}",
                          "parameters": {
                            "name": {
                              "required": true,
                              "location": "path",
                              "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+/cryptoKeyVersions/[^/]+$",
                              "type": "string",
                              "description": "Output only. The resource name for this CryptoKeyVersion in the format `projects/*/locations/*/keyRings/*/cryptoKeys/*/cryptoKeyVersions/*`."
                            },
                            "updateMask": {
                              "description": "Required. List of fields to be updated in this request.",
                              "format": "google-fieldmask",
                              "location": "query",
                              "type": "string"
                            }
                          },
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform",
                            "https://www.googleapis.com/auth/cloudkms"
                          ],
                          "parameterOrder": [
                            "name"
                          ],
                          "description": "Update a CryptoKeyVersion's metadata. state may be changed between ENABLED and DISABLED using this method. See DestroyCryptoKeyVersion and RestoreCryptoKeyVersion to move between other states."
                        },
                        "import": {
                          "parameters": {
                            "parent": {
                              "required": true,
                              "location": "path",
                              "description": "Required. The name of the CryptoKey to be imported into. The create permission is only required on this key when creating a new CryptoKeyVersion.",
                              "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+$",
                              "type": "string"
                            }
                          },
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform",
                            "https://www.googleapis.com/auth/cloudkms"
                          ],
                          "parameterOrder": [
                            "parent"
                          ],
                          "description": "Import wrapped key material into a CryptoKeyVersion. All requests must specify a CryptoKey. If a CryptoKeyVersion is additionally specified in the request, key material will be reimported into that version. Otherwise, a new version will be created, and will be assigned the next sequential id within the CryptoKey.",
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}/cryptoKeyVersions:import",
                          "request": {
                            "$ref": "ImportCryptoKeyVersionRequest"
                          },
                          "id": "cloudkms.projects.locations.keyRings.cryptoKeys.cryptoKeyVersions.import",
                          "httpMethod": "POST",
                          "response": {
                            "$ref": "CryptoKeyVersion"
                          },
                          "path": "v1/{+parent}/cryptoKeyVersions:import"
                        },
                        "getPublicKey": {
                          "parameters": {
                            "publicKeyFormat": {
                              "location": "query",
                              "enum": [
                                "PUBLIC_KEY_FORMAT_UNSPECIFIED",
                                "PEM",
                                "DER",
                                "NIST_PQC",
                                "XWING_RAW_BYTES"
                              ],
                              "type": "string",
                              "description": "Optional. The PublicKey format specified by the user. This field is required for PQC algorithms. If specified, the public key will be exported through the public_key field in the requested format. Otherwise, the pem field will be populated for non-PQC algorithms, and an error will be returned for PQC algorithms.",
                              "enumDescriptions": [
                                "If the public_key_format field is not specified: - For PQC algorithms, an error will be returned. - For non-PQC algorithms, the default format is PEM, and the field pem will be populated. Otherwise, the public key will be exported through the public_key field in the requested format.",
                                "The returned public key will be encoded in PEM format. See the [RFC7468](https://tools.ietf.org/html/rfc7468) sections for [General Considerations](https://tools.ietf.org/html/rfc7468#section-2) and [Textual Encoding of Subject Public Key Info] (https://tools.ietf.org/html/rfc7468#section-13) for more information.",
                                "The returned public key will be encoded in DER format (the PrivateKeyInfo structure from RFC 5208).",
                                "This is supported only for PQC algorithms. The key material is returned in the format defined by NIST PQC standards (FIPS 203, FIPS 204, and FIPS 205).",
                                "The returned public key is in raw bytes format defined in its standard https://datatracker.ietf.org/doc/draft-connolly-cfrg-xwing-kem."
                              ]
                            },
                            "name": {
                              "description": "Required. The name of the CryptoKeyVersion public key to get.",
                              "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+/cryptoKeyVersions/[^/]+$",
                              "type": "string",
                              "required": true,
                              "location": "path"
                            }
                          },
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform",
                            "https://www.googleapis.com/auth/cloudkms"
                          ],
                          "parameterOrder": [
                            "name"
                          ],
                          "description": "Returns the public key for the given CryptoKeyVersion. The CryptoKey.purpose must be ASYMMETRIC_SIGN or ASYMMETRIC_DECRYPT.",
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}/cryptoKeyVersions/{cryptoKeyVersionsId}/publicKey",
                          "path": "v1/{+name}/publicKey",
                          "id": "cloudkms.projects.locations.keyRings.cryptoKeys.cryptoKeyVersions.getPublicKey",
                          "httpMethod": "GET",
                          "response": {
                            "$ref": "PublicKey"
                          }
                        },
                        "destroy": {
                          "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}/cryptoKeyVersions/{cryptoKeyVersionsId}:destroy",
                          "request": {
                            "$ref": "DestroyCryptoKeyVersionRequest"
                          },
                          "id": "cloudkms.projects.locations.keyRings.cryptoKeys.cryptoKeyVersions.destroy",
                          "httpMethod": "POST",
                          "response": {
                            "$ref": "CryptoKeyVersion"
                          },
                          "path": "v1/{+name}:destroy",
                          "parameters": {
                            "name": {
                              "required": true,
                              "location": "path",
                              "description": "Required. The resource name of the CryptoKeyVersion to destroy.",
                              "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+/cryptoKeyVersions/[^/]+$",
                              "type": "string"
                            }
                          },
                          "scopes": [
                            "https://www.googleapis.com/auth/cloud-platform",
                            "https://www.googleapis.com/auth/cloudkms"
                          ],
                          "parameterOrder": [
                            "name"
                          ],
                          "description": "Schedule a CryptoKeyVersion for destruction. Upon calling this method, CryptoKeyVersion.state will be set to DESTROY_SCHEDULED, and destroy_time will be set to the time destroy_scheduled_duration in the future. At that time, the state will automatically change to DESTROYED, and the key material will be irrevocably destroyed. Before the destroy_time is reached, RestoreCryptoKeyVersion may be called to reverse the process."
                        }
                      }
                    }
                  },
                  "methods": {
                    "decrypt": {
                      "request": {
                        "$ref": "DecryptRequest"
                      },
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}:decrypt",
                      "path": "v1/{+name}:decrypt",
                      "id": "cloudkms.projects.locations.keyRings.cryptoKeys.decrypt",
                      "httpMethod": "POST",
                      "response": {
                        "$ref": "DecryptResponse"
                      },
                      "parameters": {
                        "name": {
                          "description": "Required. The resource name of the CryptoKey to use for decryption. The server will choose the appropriate version.",
                          "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+$",
                          "type": "string",
                          "location": "path",
                          "required": true
                        }
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform",
                        "https://www.googleapis.com/auth/cloudkms"
                      ],
                      "parameterOrder": [
                        "name"
                      ],
                      "description": "Decrypts data that was protected by Encrypt. The CryptoKey.purpose must be ENCRYPT_DECRYPT."
                    },
                    "getIamPolicy": {
                      "path": "v1/{+resource}:getIamPolicy",
                      "id": "cloudkms.projects.locations.keyRings.cryptoKeys.getIamPolicy",
                      "httpMethod": "GET",
                      "response": {
                        "$ref": "Policy"
                      },
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}:getIamPolicy",
                      "parameterOrder": [
                        "resource"
                      ],
                      "description": "The google.iam.v1.IAMPolicy.GetIamPolicy method is not available in this (s3nsapis.fr) universe.",
                      "parameters": {
                        "resource": {
                          "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+$",
                          "type": "string",
                          "description": "REQUIRED: The resource for which the policy is being requested. See [Resource names](https://documentation.s3ns.fr/apis/design/resource_names) for the appropriate value for this field.",
                          "required": true,
                          "location": "path"
                        },
                        "options.requestedPolicyVersion": {
                          "location": "query",
                          "type": "integer",
                          "description": "Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy in the response might use the policy version that you specified, or it might use a lower policy version. For example, if you specify version 3, but the policy has no conditional role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://documentation.s3ns.fr/iam/help/conditions/resource-policies).",
                          "format": "int32"
                        }
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform",
                        "https://www.googleapis.com/auth/cloudkms"
                      ]
                    },
                    "get": {
                      "parameterOrder": [
                        "name"
                      ],
                      "description": "Returns metadata for a given CryptoKey, as well as its primary CryptoKeyVersion.",
                      "parameters": {
                        "name": {
                          "location": "path",
                          "required": true,
                          "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+$",
                          "type": "string",
                          "description": "Required. The name of the CryptoKey to get."
                        }
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform",
                        "https://www.googleapis.com/auth/cloudkms"
                      ],
                      "id": "cloudkms.projects.locations.keyRings.cryptoKeys.get",
                      "httpMethod": "GET",
                      "response": {
                        "$ref": "CryptoKey"
                      },
                      "path": "v1/{+name}",
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}"
                    },
                    "create": {
                      "request": {
                        "$ref": "CryptoKey"
                      },
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys",
                      "path": "v1/{+parent}/cryptoKeys",
                      "id": "cloudkms.projects.locations.keyRings.cryptoKeys.create",
                      "httpMethod": "POST",
                      "response": {
                        "$ref": "CryptoKey"
                      },
                      "parameters": {
                        "parent": {
                          "location": "path",
                          "required": true,
                          "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+$",
                          "type": "string",
                          "description": "Required. The name of the KeyRing associated with the CryptoKeys."
                        },
                        "cryptoKeyId": {
                          "description": "Required. It must be unique within a KeyRing and match the regular expression `[a-zA-Z0-9_-]{1,63}`",
                          "location": "query",
                          "type": "string"
                        },
                        "skipInitialVersionCreation": {
                          "description": "If set to true, the request will create a CryptoKey without any CryptoKeyVersions. You must manually call CreateCryptoKeyVersion or ImportCryptoKeyVersion before you can use this CryptoKey.",
                          "location": "query",
                          "type": "boolean"
                        }
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform",
                        "https://www.googleapis.com/auth/cloudkms"
                      ],
                      "parameterOrder": [
                        "parent"
                      ],
                      "description": "Create a new CryptoKey within a KeyRing. CryptoKey.purpose and CryptoKey.version_template.algorithm are required."
                    },
                    "patch": {
                      "parameters": {
                        "name": {
                          "description": "Output only. The resource name for this CryptoKey in the format `projects/*/locations/*/keyRings/*/cryptoKeys/*`.",
                          "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+$",
                          "type": "string",
                          "required": true,
                          "location": "path"
                        },
                        "updateMask": {
                          "location": "query",
                          "type": "string",
                          "description": "Required. List of fields to be updated in this request.",
                          "format": "google-fieldmask"
                        }
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform",
                        "https://www.googleapis.com/auth/cloudkms"
                      ],
                      "parameterOrder": [
                        "name"
                      ],
                      "description": "Update a CryptoKey.",
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}",
                      "request": {
                        "$ref": "CryptoKey"
                      },
                      "id": "cloudkms.projects.locations.keyRings.cryptoKeys.patch",
                      "httpMethod": "PATCH",
                      "response": {
                        "$ref": "CryptoKey"
                      },
                      "path": "v1/{+name}"
                    },
                    "encrypt": {
                      "id": "cloudkms.projects.locations.keyRings.cryptoKeys.encrypt",
                      "httpMethod": "POST",
                      "response": {
                        "$ref": "EncryptResponse"
                      },
                      "path": "v1/{+name}:encrypt",
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}:encrypt",
                      "request": {
                        "$ref": "EncryptRequest"
                      },
                      "parameterOrder": [
                        "name"
                      ],
                      "description": "Encrypts data, so that it can only be recovered by a call to Decrypt. The CryptoKey.purpose must be ENCRYPT_DECRYPT.",
                      "parameters": {
                        "name": {
                          "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/.*$",
                          "type": "string",
                          "description": "Required. The resource name of the CryptoKey or CryptoKeyVersion to use for encryption. If a CryptoKey is specified, the server will use its primary version.",
                          "required": true,
                          "location": "path"
                        }
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform",
                        "https://www.googleapis.com/auth/cloudkms"
                      ]
                    },
                    "testIamPermissions": {
                      "parameters": {
                        "resource": {
                          "location": "path",
                          "required": true,
                          "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+$",
                          "type": "string",
                          "description": "REQUIRED: The resource for which the policy detail is being requested. See [Resource names](https://documentation.s3ns.fr/apis/design/resource_names) for the appropriate value for this field."
                        }
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform",
                        "https://www.googleapis.com/auth/cloudkms"
                      ],
                      "parameterOrder": [
                        "resource"
                      ],
                      "description": "The google.iam.v1.IAMPolicy.TestIamPermissions method is not available in this (s3nsapis.fr) universe.",
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}:testIamPermissions",
                      "request": {
                        "$ref": "TestIamPermissionsRequest"
                      },
                      "id": "cloudkms.projects.locations.keyRings.cryptoKeys.testIamPermissions",
                      "httpMethod": "POST",
                      "response": {
                        "$ref": "TestIamPermissionsResponse"
                      },
                      "path": "v1/{+resource}:testIamPermissions"
                    },
                    "updatePrimaryVersion": {
                      "id": "cloudkms.projects.locations.keyRings.cryptoKeys.updatePrimaryVersion",
                      "httpMethod": "POST",
                      "response": {
                        "$ref": "CryptoKey"
                      },
                      "path": "v1/{+name}:updatePrimaryVersion",
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}:updatePrimaryVersion",
                      "request": {
                        "$ref": "UpdateCryptoKeyPrimaryVersionRequest"
                      },
                      "parameterOrder": [
                        "name"
                      ],
                      "description": "Update the version of a CryptoKey that will be used in Encrypt. Returns an error if called on a key whose purpose is not ENCRYPT_DECRYPT.",
                      "parameters": {
                        "name": {
                          "required": true,
                          "location": "path",
                          "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+$",
                          "type": "string",
                          "description": "Required. The resource name of the CryptoKey to update."
                        }
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform",
                        "https://www.googleapis.com/auth/cloudkms"
                      ]
                    },
                    "setIamPolicy": {
                      "parameterOrder": [
                        "resource"
                      ],
                      "description": "The google.iam.v1.IAMPolicy.SetIamPolicy method is not available in this (s3nsapis.fr) universe.",
                      "parameters": {
                        "resource": {
                          "required": true,
                          "location": "path",
                          "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+$",
                          "type": "string",
                          "description": "REQUIRED: The resource for which the policy is being specified. See [Resource names](https://documentation.s3ns.fr/apis/design/resource_names) for the appropriate value for this field."
                        }
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform",
                        "https://www.googleapis.com/auth/cloudkms"
                      ],
                      "path": "v1/{+resource}:setIamPolicy",
                      "id": "cloudkms.projects.locations.keyRings.cryptoKeys.setIamPolicy",
                      "httpMethod": "POST",
                      "response": {
                        "$ref": "Policy"
                      },
                      "request": {
                        "$ref": "SetIamPolicyRequest"
                      },
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}:setIamPolicy"
                    },
                    "list": {
                      "path": "v1/{+parent}/cryptoKeys",
                      "id": "cloudkms.projects.locations.keyRings.cryptoKeys.list",
                      "httpMethod": "GET",
                      "response": {
                        "$ref": "ListCryptoKeysResponse"
                      },
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys",
                      "parameterOrder": [
                        "parent"
                      ],
                      "description": "Lists CryptoKeys.",
                      "parameters": {
                        "parent": {
                          "required": true,
                          "location": "path",
                          "description": "Required. The resource name of the KeyRing to list, in the format `projects/*/locations/*/keyRings/*`.",
                          "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+$",
                          "type": "string"
                        },
                        "pageSize": {
                          "location": "query",
                          "type": "integer",
                          "description": "Optional. Optional limit on the number of CryptoKeys to include in the response. Further CryptoKeys can subsequently be obtained by including the ListCryptoKeysResponse.next_page_token in a subsequent request. If unspecified, the server will pick an appropriate default.",
                          "format": "int32"
                        },
                        "orderBy": {
                          "description": "Optional. Specify how the results should be sorted. If not specified, the results will be sorted in the default order. For more information, see [Sorting and filtering list results](https://documentation.s3ns.fr/kms/docs/sorting-and-filtering).",
                          "location": "query",
                          "type": "string"
                        },
                        "pageToken": {
                          "location": "query",
                          "type": "string",
                          "description": "Optional. Optional pagination token, returned earlier via ListCryptoKeysResponse.next_page_token."
                        },
                        "filter": {
                          "location": "query",
                          "type": "string",
                          "description": "Optional. Only include resources that match the filter in the response. For more information, see [Sorting and filtering list results](https://documentation.s3ns.fr/kms/docs/sorting-and-filtering)."
                        },
                        "versionView": {
                          "location": "query",
                          "enum": [
                            "CRYPTO_KEY_VERSION_VIEW_UNSPECIFIED",
                            "FULL"
                          ],
                          "type": "string",
                          "description": "The fields of the primary version to include in the response.",
                          "enumDescriptions": [
                            "Default view for each CryptoKeyVersion. Does not include the attestation field.",
                            "Provides all fields in each CryptoKeyVersion, including the attestation."
                          ]
                        }
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform",
                        "https://www.googleapis.com/auth/cloudkms"
                      ]
                    }
                  }
                },
                "importJobs": {
                  "methods": {
                    "list": {
                      "parameterOrder": [
                        "parent"
                      ],
                      "description": "Lists ImportJobs.",
                      "parameters": {
                        "pageToken": {
                          "description": "Optional. Optional pagination token, returned earlier via ListImportJobsResponse.next_page_token.",
                          "location": "query",
                          "type": "string"
                        },
                        "filter": {
                          "description": "Optional. Only include resources that match the filter in the response. For more information, see [Sorting and filtering list results](https://documentation.s3ns.fr/kms/docs/sorting-and-filtering).",
                          "location": "query",
                          "type": "string"
                        },
                        "parent": {
                          "description": "Required. The resource name of the KeyRing to list, in the format `projects/*/locations/*/keyRings/*`.",
                          "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+$",
                          "type": "string",
                          "location": "path",
                          "required": true
                        },
                        "pageSize": {
                          "description": "Optional. Optional limit on the number of ImportJobs to include in the response. Further ImportJobs can subsequently be obtained by including the ListImportJobsResponse.next_page_token in a subsequent request. If unspecified, the server will pick an appropriate default.",
                          "format": "int32",
                          "location": "query",
                          "type": "integer"
                        },
                        "orderBy": {
                          "description": "Optional. Specify how the results should be sorted. If not specified, the results will be sorted in the default order. For more information, see [Sorting and filtering list results](https://documentation.s3ns.fr/kms/docs/sorting-and-filtering).",
                          "location": "query",
                          "type": "string"
                        }
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform",
                        "https://www.googleapis.com/auth/cloudkms"
                      ],
                      "id": "cloudkms.projects.locations.keyRings.importJobs.list",
                      "httpMethod": "GET",
                      "response": {
                        "$ref": "ListImportJobsResponse"
                      },
                      "path": "v1/{+parent}/importJobs",
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/importJobs"
                    },
                    "get": {
                      "parameterOrder": [
                        "name"
                      ],
                      "description": "Returns metadata for a given ImportJob.",
                      "parameters": {
                        "name": {
                          "location": "path",
                          "required": true,
                          "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/importJobs/[^/]+$",
                          "type": "string",
                          "description": "Required. The name of the ImportJob to get."
                        }
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform",
                        "https://www.googleapis.com/auth/cloudkms"
                      ],
                      "path": "v1/{+name}",
                      "id": "cloudkms.projects.locations.keyRings.importJobs.get",
                      "httpMethod": "GET",
                      "response": {
                        "$ref": "ImportJob"
                      },
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/importJobs/{importJobsId}"
                    },
                    "setIamPolicy": {
                      "parameters": {
                        "resource": {
                          "description": "REQUIRED: The resource for which the policy is being specified. See [Resource names](https://documentation.s3ns.fr/apis/design/resource_names) for the appropriate value for this field.",
                          "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/importJobs/[^/]+$",
                          "type": "string",
                          "location": "path",
                          "required": true
                        }
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform",
                        "https://www.googleapis.com/auth/cloudkms"
                      ],
                      "parameterOrder": [
                        "resource"
                      ],
                      "description": "The google.iam.v1.IAMPolicy.SetIamPolicy method is not available in this (s3nsapis.fr) universe.",
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/importJobs/{importJobsId}:setIamPolicy",
                      "request": {
                        "$ref": "SetIamPolicyRequest"
                      },
                      "id": "cloudkms.projects.locations.keyRings.importJobs.setIamPolicy",
                      "httpMethod": "POST",
                      "response": {
                        "$ref": "Policy"
                      },
                      "path": "v1/{+resource}:setIamPolicy"
                    },
                    "getIamPolicy": {
                      "path": "v1/{+resource}:getIamPolicy",
                      "id": "cloudkms.projects.locations.keyRings.importJobs.getIamPolicy",
                      "httpMethod": "GET",
                      "response": {
                        "$ref": "Policy"
                      },
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/importJobs/{importJobsId}:getIamPolicy",
                      "parameterOrder": [
                        "resource"
                      ],
                      "description": "The google.iam.v1.IAMPolicy.GetIamPolicy method is not available in this (s3nsapis.fr) universe.",
                      "parameters": {
                        "resource": {
                          "location": "path",
                          "required": true,
                          "description": "REQUIRED: The resource for which the policy is being requested. See [Resource names](https://documentation.s3ns.fr/apis/design/resource_names) for the appropriate value for this field.",
                          "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/importJobs/[^/]+$",
                          "type": "string"
                        },
                        "options.requestedPolicyVersion": {
                          "location": "query",
                          "type": "integer",
                          "description": "Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy in the response might use the policy version that you specified, or it might use a lower policy version. For example, if you specify version 3, but the policy has no conditional role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://documentation.s3ns.fr/iam/help/conditions/resource-policies).",
                          "format": "int32"
                        }
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform",
                        "https://www.googleapis.com/auth/cloudkms"
                      ]
                    },
                    "testIamPermissions": {
                      "path": "v1/{+resource}:testIamPermissions",
                      "id": "cloudkms.projects.locations.keyRings.importJobs.testIamPermissions",
                      "httpMethod": "POST",
                      "response": {
                        "$ref": "TestIamPermissionsResponse"
                      },
                      "request": {
                        "$ref": "TestIamPermissionsRequest"
                      },
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/importJobs/{importJobsId}:testIamPermissions",
                      "parameterOrder": [
                        "resource"
                      ],
                      "description": "The google.iam.v1.IAMPolicy.TestIamPermissions method is not available in this (s3nsapis.fr) universe.",
                      "parameters": {
                        "resource": {
                          "required": true,
                          "location": "path",
                          "description": "REQUIRED: The resource for which the policy detail is being requested. See [Resource names](https://documentation.s3ns.fr/apis/design/resource_names) for the appropriate value for this field.",
                          "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/importJobs/[^/]+$",
                          "type": "string"
                        }
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform",
                        "https://www.googleapis.com/auth/cloudkms"
                      ]
                    },
                    "create": {
                      "id": "cloudkms.projects.locations.keyRings.importJobs.create",
                      "httpMethod": "POST",
                      "response": {
                        "$ref": "ImportJob"
                      },
                      "path": "v1/{+parent}/importJobs",
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/importJobs",
                      "request": {
                        "$ref": "ImportJob"
                      },
                      "parameterOrder": [
                        "parent"
                      ],
                      "description": "Create a new ImportJob within a KeyRing. ImportJob.import_method is required.",
                      "parameters": {
                        "parent": {
                          "description": "Required. The name of the KeyRing associated with the ImportJobs.",
                          "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+$",
                          "type": "string",
                          "location": "path",
                          "required": true
                        },
                        "importJobId": {
                          "description": "Required. It must be unique within a KeyRing and match the regular expression `[a-zA-Z0-9_-]{1,63}`",
                          "location": "query",
                          "type": "string"
                        }
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform",
                        "https://www.googleapis.com/auth/cloudkms"
                      ]
                    }
                  }
                }
              },
              "methods": {
                "list": {
                  "parameterOrder": [
                    "parent"
                  ],
                  "description": "Lists KeyRings.",
                  "parameters": {
                    "parent": {
                      "required": true,
                      "location": "path",
                      "description": "Required. The resource name of the location associated with the KeyRings, in the format `projects/*/locations/*`.",
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "type": "string"
                    },
                    "pageSize": {
                      "location": "query",
                      "type": "integer",
                      "description": "Optional. Optional limit on the number of KeyRings to include in the response. Further KeyRings can subsequently be obtained by including the ListKeyRingsResponse.next_page_token in a subsequent request. If unspecified, the server will pick an appropriate default.",
                      "format": "int32"
                    },
                    "orderBy": {
                      "description": "Optional. Specify how the results should be sorted. If not specified, the results will be sorted in the default order. For more information, see [Sorting and filtering list results](https://documentation.s3ns.fr/kms/docs/sorting-and-filtering).",
                      "location": "query",
                      "type": "string"
                    },
                    "pageToken": {
                      "description": "Optional. Optional pagination token, returned earlier via ListKeyRingsResponse.next_page_token.",
                      "location": "query",
                      "type": "string"
                    },
                    "filter": {
                      "description": "Optional. Only include resources that match the filter in the response. For more information, see [Sorting and filtering list results](https://documentation.s3ns.fr/kms/docs/sorting-and-filtering).",
                      "location": "query",
                      "type": "string"
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ],
                  "path": "v1/{+parent}/keyRings",
                  "id": "cloudkms.projects.locations.keyRings.list",
                  "httpMethod": "GET",
                  "response": {
                    "$ref": "ListKeyRingsResponse"
                  },
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings"
                },
                "get": {
                  "id": "cloudkms.projects.locations.keyRings.get",
                  "httpMethod": "GET",
                  "response": {
                    "$ref": "KeyRing"
                  },
                  "path": "v1/{+name}",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}",
                  "parameterOrder": [
                    "name"
                  ],
                  "description": "Returns metadata for a given KeyRing.",
                  "parameters": {
                    "name": {
                      "required": true,
                      "location": "path",
                      "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+$",
                      "type": "string",
                      "description": "Required. The name of the KeyRing to get."
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ]
                },
                "setIamPolicy": {
                  "parameters": {
                    "resource": {
                      "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+$",
                      "type": "string",
                      "description": "REQUIRED: The resource for which the policy is being specified. See [Resource names](https://documentation.s3ns.fr/apis/design/resource_names) for the appropriate value for this field.",
                      "location": "path",
                      "required": true
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ],
                  "parameterOrder": [
                    "resource"
                  ],
                  "description": "The google.iam.v1.IAMPolicy.SetIamPolicy method is not available in this (s3nsapis.fr) universe.",
                  "request": {
                    "$ref": "SetIamPolicyRequest"
                  },
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}:setIamPolicy",
                  "path": "v1/{+resource}:setIamPolicy",
                  "id": "cloudkms.projects.locations.keyRings.setIamPolicy",
                  "httpMethod": "POST",
                  "response": {
                    "$ref": "Policy"
                  }
                },
                "create": {
                  "path": "v1/{+parent}/keyRings",
                  "id": "cloudkms.projects.locations.keyRings.create",
                  "httpMethod": "POST",
                  "response": {
                    "$ref": "KeyRing"
                  },
                  "request": {
                    "$ref": "KeyRing"
                  },
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings",
                  "parameterOrder": [
                    "parent"
                  ],
                  "description": "Create a new KeyRing in a given Project and Location.",
                  "parameters": {
                    "parent": {
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "type": "string",
                      "description": "Required. The resource name of the location associated with the KeyRings, in the format `projects/*/locations/*`.",
                      "location": "path",
                      "required": true
                    },
                    "keyRingId": {
                      "location": "query",
                      "type": "string",
                      "description": "Required. It must be unique within a location and match the regular expression `[a-zA-Z0-9_-]{1,63}`"
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ]
                },
                "getIamPolicy": {
                  "path": "v1/{+resource}:getIamPolicy",
                  "id": "cloudkms.projects.locations.keyRings.getIamPolicy",
                  "httpMethod": "GET",
                  "response": {
                    "$ref": "Policy"
                  },
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}:getIamPolicy",
                  "parameterOrder": [
                    "resource"
                  ],
                  "description": "The google.iam.v1.IAMPolicy.GetIamPolicy method is not available in this (s3nsapis.fr) universe.",
                  "parameters": {
                    "resource": {
                      "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+$",
                      "type": "string",
                      "description": "REQUIRED: The resource for which the policy is being requested. See [Resource names](https://documentation.s3ns.fr/apis/design/resource_names) for the appropriate value for this field.",
                      "location": "path",
                      "required": true
                    },
                    "options.requestedPolicyVersion": {
                      "location": "query",
                      "type": "integer",
                      "description": "Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy in the response might use the policy version that you specified, or it might use a lower policy version. For example, if you specify version 3, but the policy has no conditional role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://documentation.s3ns.fr/iam/help/conditions/resource-policies).",
                      "format": "int32"
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ]
                },
                "testIamPermissions": {
                  "parameters": {
                    "resource": {
                      "location": "path",
                      "required": true,
                      "description": "REQUIRED: The resource for which the policy detail is being requested. See [Resource names](https://documentation.s3ns.fr/apis/design/resource_names) for the appropriate value for this field.",
                      "pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+$",
                      "type": "string"
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ],
                  "parameterOrder": [
                    "resource"
                  ],
                  "description": "The google.iam.v1.IAMPolicy.TestIamPermissions method is not available in this (s3nsapis.fr) universe.",
                  "request": {
                    "$ref": "TestIamPermissionsRequest"
                  },
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}:testIamPermissions",
                  "path": "v1/{+resource}:testIamPermissions",
                  "id": "cloudkms.projects.locations.keyRings.testIamPermissions",
                  "httpMethod": "POST",
                  "response": {
                    "$ref": "TestIamPermissionsResponse"
                  }
                }
              }
            },
            "ekmConfig": {
              "methods": {
                "getIamPolicy": {
                  "parameterOrder": [
                    "resource"
                  ],
                  "description": "The google.iam.v1.IAMPolicy.GetIamPolicy method is not available in this (s3nsapis.fr) universe.",
                  "parameters": {
                    "resource": {
                      "required": true,
                      "location": "path",
                      "pattern": "^projects/[^/]+/locations/[^/]+/ekmConfig$",
                      "type": "string",
                      "description": "REQUIRED: The resource for which the policy is being requested. See [Resource names](https://documentation.s3ns.fr/apis/design/resource_names) for the appropriate value for this field."
                    },
                    "options.requestedPolicyVersion": {
                      "location": "query",
                      "type": "integer",
                      "description": "Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy in the response might use the policy version that you specified, or it might use a lower policy version. For example, if you specify version 3, but the policy has no conditional role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://documentation.s3ns.fr/iam/help/conditions/resource-policies).",
                      "format": "int32"
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ],
                  "path": "v1/{+resource}:getIamPolicy",
                  "id": "cloudkms.projects.locations.ekmConfig.getIamPolicy",
                  "httpMethod": "GET",
                  "response": {
                    "$ref": "Policy"
                  },
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/ekmConfig:getIamPolicy"
                },
                "setIamPolicy": {
                  "parameters": {
                    "resource": {
                      "location": "path",
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+/ekmConfig$",
                      "type": "string",
                      "description": "REQUIRED: The resource for which the policy is being specified. See [Resource names](https://documentation.s3ns.fr/apis/design/resource_names) for the appropriate value for this field."
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ],
                  "parameterOrder": [
                    "resource"
                  ],
                  "description": "The google.iam.v1.IAMPolicy.SetIamPolicy method is not available in this (s3nsapis.fr) universe.",
                  "request": {
                    "$ref": "SetIamPolicyRequest"
                  },
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/ekmConfig:setIamPolicy",
                  "path": "v1/{+resource}:setIamPolicy",
                  "id": "cloudkms.projects.locations.ekmConfig.setIamPolicy",
                  "httpMethod": "POST",
                  "response": {
                    "$ref": "Policy"
                  }
                },
                "testIamPermissions": {
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/ekmConfig:testIamPermissions",
                  "request": {
                    "$ref": "TestIamPermissionsRequest"
                  },
                  "id": "cloudkms.projects.locations.ekmConfig.testIamPermissions",
                  "httpMethod": "POST",
                  "response": {
                    "$ref": "TestIamPermissionsResponse"
                  },
                  "path": "v1/{+resource}:testIamPermissions",
                  "parameters": {
                    "resource": {
                      "pattern": "^projects/[^/]+/locations/[^/]+/ekmConfig$",
                      "type": "string",
                      "description": "REQUIRED: The resource for which the policy detail is being requested. See [Resource names](https://documentation.s3ns.fr/apis/design/resource_names) for the appropriate value for this field.",
                      "required": true,
                      "location": "path"
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ],
                  "parameterOrder": [
                    "resource"
                  ],
                  "description": "The google.iam.v1.IAMPolicy.TestIamPermissions method is not available in this (s3nsapis.fr) universe."
                }
              }
            },
            "singleTenantHsmInstances": {
              "methods": {
                "create": {
                  "path": "v1/{+parent}/singleTenantHsmInstances",
                  "id": "cloudkms.projects.locations.singleTenantHsmInstances.create",
                  "httpMethod": "POST",
                  "response": {
                    "$ref": "Operation"
                  },
                  "request": {
                    "$ref": "SingleTenantHsmInstance"
                  },
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/singleTenantHsmInstances",
                  "parameterOrder": [
                    "parent"
                  ],
                  "description": "The google.cloud.kms.v1.HsmManagement.CreateSingleTenantHsmInstance method is not available in this (s3nsapis.fr) universe.",
                  "parameters": {
                    "singleTenantHsmInstanceId": {
                      "location": "query",
                      "type": "string",
                      "description": "Optional. It must be unique within a location and match the regular expression `[a-zA-Z0-9_-]{1,63}`."
                    },
                    "parent": {
                      "location": "path",
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "type": "string",
                      "description": "Required. The resource name of the location associated with the SingleTenantHsmInstance, in the format `projects/*/locations/*`."
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ]
                },
                "list": {
                  "id": "cloudkms.projects.locations.singleTenantHsmInstances.list",
                  "httpMethod": "GET",
                  "response": {
                    "$ref": "ListSingleTenantHsmInstancesResponse"
                  },
                  "path": "v1/{+parent}/singleTenantHsmInstances",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/singleTenantHsmInstances",
                  "parameterOrder": [
                    "parent"
                  ],
                  "description": "The google.cloud.kms.v1.HsmManagement.ListSingleTenantHsmInstances method is not available in this (s3nsapis.fr) universe.",
                  "parameters": {
                    "showDeleted": {
                      "description": "Optional. If set to true, HsmManagement.ListSingleTenantHsmInstances will also return SingleTenantHsmInstances in DELETED state.",
                      "location": "query",
                      "type": "boolean"
                    },
                    "parent": {
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "type": "string",
                      "description": "Required. The resource name of the location associated with the SingleTenantHsmInstances to list, in the format `projects/*/locations/*`.",
                      "required": true,
                      "location": "path"
                    },
                    "pageSize": {
                      "location": "query",
                      "type": "integer",
                      "description": "Optional. Optional limit on the number of SingleTenantHsmInstances to include in the response. Further SingleTenantHsmInstances can subsequently be obtained by including the ListSingleTenantHsmInstancesResponse.next_page_token in a subsequent request. If unspecified, the server will pick an appropriate default.",
                      "format": "int32"
                    },
                    "orderBy": {
                      "description": "Optional. Specify how the results should be sorted. If not specified, the results will be sorted in the default order. For more information, see [Sorting and filtering list results](https://documentation.s3ns.fr/kms/docs/sorting-and-filtering).",
                      "location": "query",
                      "type": "string"
                    },
                    "pageToken": {
                      "location": "query",
                      "type": "string",
                      "description": "Optional. Optional pagination token, returned earlier via ListSingleTenantHsmInstancesResponse.next_page_token."
                    },
                    "filter": {
                      "location": "query",
                      "type": "string",
                      "description": "Optional. Only include resources that match the filter in the response. For more information, see [Sorting and filtering list results](https://documentation.s3ns.fr/kms/docs/sorting-and-filtering)."
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ]
                },
                "get": {
                  "parameterOrder": [
                    "name"
                  ],
                  "description": "The google.cloud.kms.v1.HsmManagement.GetSingleTenantHsmInstance method is not available in this (s3nsapis.fr) universe.",
                  "parameters": {
                    "name": {
                      "description": "Required. The name of the SingleTenantHsmInstance to get.",
                      "pattern": "^projects/[^/]+/locations/[^/]+/singleTenantHsmInstances/[^/]+$",
                      "type": "string",
                      "location": "path",
                      "required": true
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ],
                  "path": "v1/{+name}",
                  "id": "cloudkms.projects.locations.singleTenantHsmInstances.get",
                  "httpMethod": "GET",
                  "response": {
                    "$ref": "SingleTenantHsmInstance"
                  },
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/singleTenantHsmInstances/{singleTenantHsmInstancesId}"
                }
              },
              "resources": {
                "proposals": {
                  "methods": {
                    "get": {
                      "parameters": {
                        "name": {
                          "description": "Required. The name of the SingleTenantHsmInstanceProposal to get.",
                          "pattern": "^projects/[^/]+/locations/[^/]+/singleTenantHsmInstances/[^/]+/proposals/[^/]+$",
                          "type": "string",
                          "required": true,
                          "location": "path"
                        }
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform",
                        "https://www.googleapis.com/auth/cloudkms"
                      ],
                      "parameterOrder": [
                        "name"
                      ],
                      "description": "The google.cloud.kms.v1.HsmManagement.GetSingleTenantHsmInstanceProposal method is not available in this (s3nsapis.fr) universe.",
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/singleTenantHsmInstances/{singleTenantHsmInstancesId}/proposals/{proposalsId}",
                      "path": "v1/{+name}",
                      "id": "cloudkms.projects.locations.singleTenantHsmInstances.proposals.get",
                      "httpMethod": "GET",
                      "response": {
                        "$ref": "SingleTenantHsmInstanceProposal"
                      }
                    },
                    "list": {
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/singleTenantHsmInstances/{singleTenantHsmInstancesId}/proposals",
                      "path": "v1/{+parent}/proposals",
                      "id": "cloudkms.projects.locations.singleTenantHsmInstances.proposals.list",
                      "httpMethod": "GET",
                      "response": {
                        "$ref": "ListSingleTenantHsmInstanceProposalsResponse"
                      },
                      "parameters": {
                        "parent": {
                          "required": true,
                          "location": "path",
                          "pattern": "^projects/[^/]+/locations/[^/]+/singleTenantHsmInstances/[^/]+$",
                          "type": "string",
                          "description": "Required. The resource name of the single tenant HSM instance associated with the SingleTenantHsmInstanceProposals to list, in the format `projects/*/locations/*/singleTenantHsmInstances/*`."
                        },
                        "pageSize": {
                          "location": "query",
                          "type": "integer",
                          "description": "Optional. Optional limit on the number of SingleTenantHsmInstanceProposals to include in the response. Further SingleTenantHsmInstanceProposals can subsequently be obtained by including the ListSingleTenantHsmInstanceProposalsResponse.next_page_token in a subsequent request. If unspecified, the server will pick an appropriate default.",
                          "format": "int32"
                        },
                        "orderBy": {
                          "location": "query",
                          "type": "string",
                          "description": "Optional. Specify how the results should be sorted. If not specified, the results will be sorted in the default order. For more information, see [Sorting and filtering list results](https://documentation.s3ns.fr/kms/docs/sorting-and-filtering)."
                        },
                        "showDeleted": {
                          "description": "Optional. If set to true, HsmManagement.ListSingleTenantHsmInstanceProposals will also return SingleTenantHsmInstanceProposals in DELETED state.",
                          "location": "query",
                          "type": "boolean"
                        },
                        "pageToken": {
                          "location": "query",
                          "type": "string",
                          "description": "Optional. Optional pagination token, returned earlier via ListSingleTenantHsmInstanceProposalsResponse.next_page_token."
                        },
                        "filter": {
                          "location": "query",
                          "type": "string",
                          "description": "Optional. Only include resources that match the filter in the response. For more information, see [Sorting and filtering list results](https://documentation.s3ns.fr/kms/docs/sorting-and-filtering)."
                        }
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform",
                        "https://www.googleapis.com/auth/cloudkms"
                      ],
                      "parameterOrder": [
                        "parent"
                      ],
                      "description": "The google.cloud.kms.v1.HsmManagement.ListSingleTenantHsmInstanceProposals method is not available in this (s3nsapis.fr) universe."
                    },
                    "approve": {
                      "request": {
                        "$ref": "ApproveSingleTenantHsmInstanceProposalRequest"
                      },
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/singleTenantHsmInstances/{singleTenantHsmInstancesId}/proposals/{proposalsId}:approve",
                      "path": "v1/{+name}:approve",
                      "id": "cloudkms.projects.locations.singleTenantHsmInstances.proposals.approve",
                      "httpMethod": "POST",
                      "response": {
                        "$ref": "ApproveSingleTenantHsmInstanceProposalResponse"
                      },
                      "parameters": {
                        "name": {
                          "pattern": "^projects/[^/]+/locations/[^/]+/singleTenantHsmInstances/[^/]+/proposals/[^/]+$",
                          "type": "string",
                          "description": "Required. The name of the SingleTenantHsmInstanceProposal to approve.",
                          "location": "path",
                          "required": true
                        }
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform",
                        "https://www.googleapis.com/auth/cloudkms"
                      ],
                      "parameterOrder": [
                        "name"
                      ],
                      "description": "The google.cloud.kms.v1.HsmManagement.ApproveSingleTenantHsmInstanceProposal method is not available in this (s3nsapis.fr) universe."
                    },
                    "execute": {
                      "path": "v1/{+name}:execute",
                      "id": "cloudkms.projects.locations.singleTenantHsmInstances.proposals.execute",
                      "httpMethod": "POST",
                      "response": {
                        "$ref": "Operation"
                      },
                      "request": {
                        "$ref": "ExecuteSingleTenantHsmInstanceProposalRequest"
                      },
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/singleTenantHsmInstances/{singleTenantHsmInstancesId}/proposals/{proposalsId}:execute",
                      "parameterOrder": [
                        "name"
                      ],
                      "description": "The google.cloud.kms.v1.HsmManagement.ExecuteSingleTenantHsmInstanceProposal method is not available in this (s3nsapis.fr) universe.",
                      "parameters": {
                        "name": {
                          "location": "path",
                          "required": true,
                          "description": "Required. The name of the SingleTenantHsmInstanceProposal to execute.",
                          "pattern": "^projects/[^/]+/locations/[^/]+/singleTenantHsmInstances/[^/]+/proposals/[^/]+$",
                          "type": "string"
                        }
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform",
                        "https://www.googleapis.com/auth/cloudkms"
                      ]
                    },
                    "create": {
                      "path": "v1/{+parent}/proposals",
                      "id": "cloudkms.projects.locations.singleTenantHsmInstances.proposals.create",
                      "httpMethod": "POST",
                      "response": {
                        "$ref": "Operation"
                      },
                      "request": {
                        "$ref": "SingleTenantHsmInstanceProposal"
                      },
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/singleTenantHsmInstances/{singleTenantHsmInstancesId}/proposals",
                      "parameterOrder": [
                        "parent"
                      ],
                      "description": "The google.cloud.kms.v1.HsmManagement.CreateSingleTenantHsmInstanceProposal method is not available in this (s3nsapis.fr) universe.",
                      "parameters": {
                        "parent": {
                          "description": "Required. The name of the SingleTenantHsmInstance associated with the SingleTenantHsmInstanceProposals.",
                          "pattern": "^projects/[^/]+/locations/[^/]+/singleTenantHsmInstances/[^/]+$",
                          "type": "string",
                          "location": "path",
                          "required": true
                        },
                        "singleTenantHsmInstanceProposalId": {
                          "description": "Optional. It must be unique within a location and match the regular expression `[a-zA-Z0-9_-]{1,63}`.",
                          "location": "query",
                          "type": "string"
                        }
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform",
                        "https://www.googleapis.com/auth/cloudkms"
                      ]
                    },
                    "delete": {
                      "parameters": {
                        "name": {
                          "pattern": "^projects/[^/]+/locations/[^/]+/singleTenantHsmInstances/[^/]+/proposals/[^/]+$",
                          "type": "string",
                          "description": "Required. The name of the SingleTenantHsmInstanceProposal to delete.",
                          "location": "path",
                          "required": true
                        }
                      },
                      "scopes": [
                        "https://www.googleapis.com/auth/cloud-platform",
                        "https://www.googleapis.com/auth/cloudkms"
                      ],
                      "parameterOrder": [
                        "name"
                      ],
                      "description": "The google.cloud.kms.v1.HsmManagement.DeleteSingleTenantHsmInstanceProposal method is not available in this (s3nsapis.fr) universe.",
                      "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/singleTenantHsmInstances/{singleTenantHsmInstancesId}/proposals/{proposalsId}",
                      "id": "cloudkms.projects.locations.singleTenantHsmInstances.proposals.delete",
                      "httpMethod": "DELETE",
                      "response": {
                        "$ref": "Empty"
                      },
                      "path": "v1/{+name}"
                    }
                  }
                }
              }
            },
            "operations": {
              "methods": {
                "delete": {
                  "parameterOrder": [
                    "name"
                  ],
                  "description": "Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.",
                  "parameters": {
                    "name": {
                      "pattern": "^projects/[^/]+/locations/[^/]+/operations/[^/]+$",
                      "type": "string",
                      "description": "The name of the operation resource to be deleted.",
                      "required": true,
                      "location": "path"
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ],
                  "path": "v1/{+name}",
                  "id": "cloudkms.projects.locations.operations.delete",
                  "httpMethod": "DELETE",
                  "response": {
                    "$ref": "Empty"
                  },
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/operations/{operationsId}"
                },
                "list": {
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/operations",
                  "id": "cloudkms.projects.locations.operations.list",
                  "httpMethod": "GET",
                  "response": {
                    "$ref": "ListOperationsResponse"
                  },
                  "path": "v1/{+name}/operations",
                  "parameters": {
                    "pageSize": {
                      "description": "The standard list page size.",
                      "format": "int32",
                      "location": "query",
                      "type": "integer"
                    },
                    "returnPartialSuccess": {
                      "location": "query",
                      "type": "boolean",
                      "description": "When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `\"projects/example/locations/-\"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation."
                    },
                    "filter": {
                      "description": "The standard list filter.",
                      "location": "query",
                      "type": "string"
                    },
                    "pageToken": {
                      "location": "query",
                      "type": "string",
                      "description": "The standard list page token."
                    },
                    "name": {
                      "description": "The name of the operation's parent resource.",
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "type": "string",
                      "location": "path",
                      "required": true
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ],
                  "parameterOrder": [
                    "name"
                  ],
                  "description": "Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`."
                },
                "get": {
                  "parameterOrder": [
                    "name"
                  ],
                  "description": "Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.",
                  "parameters": {
                    "name": {
                      "description": "The name of the operation resource.",
                      "pattern": "^projects/[^/]+/locations/[^/]+/operations/[^/]+$",
                      "type": "string",
                      "location": "path",
                      "required": true
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ],
                  "id": "cloudkms.projects.locations.operations.get",
                  "httpMethod": "GET",
                  "response": {
                    "$ref": "Operation"
                  },
                  "path": "v1/{+name}",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/operations/{operationsId}"
                },
                "cancel": {
                  "parameterOrder": [
                    "name"
                  ],
                  "description": "Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`.",
                  "parameters": {
                    "name": {
                      "required": true,
                      "location": "path",
                      "description": "The name of the operation resource to be cancelled.",
                      "pattern": "^projects/[^/]+/locations/[^/]+/operations/[^/]+$",
                      "type": "string"
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ],
                  "id": "cloudkms.projects.locations.operations.cancel",
                  "httpMethod": "POST",
                  "response": {
                    "$ref": "Empty"
                  },
                  "path": "v1/{+name}:cancel",
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/operations/{operationsId}:cancel",
                  "request": {
                    "$ref": "CancelOperationRequest"
                  }
                }
              }
            },
            "keyHandles": {
              "methods": {
                "create": {
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyHandles",
                  "request": {
                    "$ref": "KeyHandle"
                  },
                  "id": "cloudkms.projects.locations.keyHandles.create",
                  "httpMethod": "POST",
                  "response": {
                    "$ref": "Operation"
                  },
                  "path": "v1/{+parent}/keyHandles",
                  "parameters": {
                    "parent": {
                      "location": "path",
                      "required": true,
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "type": "string",
                      "description": "Required. Name of the resource project and location to create the KeyHandle in, e.g. `projects/{PROJECT_ID}/locations/{LOCATION}`."
                    },
                    "keyHandleId": {
                      "description": "Optional. Id of the KeyHandle. Must be unique to the resource project and location. If not provided by the caller, a new UUID is used.",
                      "location": "query",
                      "type": "string"
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ],
                  "parameterOrder": [
                    "parent"
                  ],
                  "description": "The google.cloud.kms.v1.Autokey.CreateKeyHandle method is not available in this (s3nsapis.fr) universe."
                },
                "get": {
                  "parameterOrder": [
                    "name"
                  ],
                  "description": "The google.cloud.kms.v1.Autokey.GetKeyHandle method is not available in this (s3nsapis.fr) universe.",
                  "parameters": {
                    "name": {
                      "pattern": "^projects/[^/]+/locations/[^/]+/keyHandles/[^/]+$",
                      "type": "string",
                      "description": "Required. Name of the KeyHandle resource, e.g. `projects/{PROJECT_ID}/locations/{LOCATION}/keyHandles/{KEY_HANDLE_ID}`.",
                      "location": "path",
                      "required": true
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ],
                  "path": "v1/{+name}",
                  "id": "cloudkms.projects.locations.keyHandles.get",
                  "httpMethod": "GET",
                  "response": {
                    "$ref": "KeyHandle"
                  },
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyHandles/{keyHandlesId}"
                },
                "list": {
                  "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/keyHandles",
                  "path": "v1/{+parent}/keyHandles",
                  "id": "cloudkms.projects.locations.keyHandles.list",
                  "httpMethod": "GET",
                  "response": {
                    "$ref": "ListKeyHandlesResponse"
                  },
                  "parameters": {
                    "parent": {
                      "description": "Required. Name of the resource project and location from which to list KeyHandles, e.g. `projects/{PROJECT_ID}/locations/{LOCATION}`.",
                      "pattern": "^projects/[^/]+/locations/[^/]+$",
                      "type": "string",
                      "required": true,
                      "location": "path"
                    },
                    "pageSize": {
                      "description": "Optional. Optional limit on the number of KeyHandles to include in the response. The service may return fewer than this value. Further KeyHandles can subsequently be obtained by including the ListKeyHandlesResponse.next_page_token in a subsequent request. If unspecified, at most 100 KeyHandles will be returned.",
                      "format": "int32",
                      "location": "query",
                      "type": "integer"
                    },
                    "pageToken": {
                      "description": "Optional. Optional pagination token, returned earlier via ListKeyHandlesResponse.next_page_token.",
                      "location": "query",
                      "type": "string"
                    },
                    "filter": {
                      "location": "query",
                      "type": "string",
                      "description": "Optional. Filter to apply when listing KeyHandles, e.g. `resource_type_selector=\"{SERVICE}.googleapis.com/{TYPE}\"`."
                    }
                  },
                  "scopes": [
                    "https://www.googleapis.com/auth/cloud-platform",
                    "https://www.googleapis.com/auth/cloudkms"
                  ],
                  "parameterOrder": [
                    "parent"
                  ],
                  "description": "The google.cloud.kms.v1.Autokey.ListKeyHandles method is not available in this (s3nsapis.fr) universe."
                }
              }
            }
          },
          "methods": {
            "list": {
              "flatPath": "v1/projects/{projectsId}/locations",
              "path": "v1/{+name}/locations",
              "id": "cloudkms.projects.locations.list",
              "httpMethod": "GET",
              "response": {
                "$ref": "ListLocationsResponse"
              },
              "parameters": {
                "pageSize": {
                  "location": "query",
                  "type": "integer",
                  "description": "The maximum number of results to return. If not set, the service selects a default.",
                  "format": "int32"
                },
                "extraLocationTypes": {
                  "location": "query",
                  "type": "string",
                  "description": "Optional. Do not use this field unless explicitly documented otherwise. This is primarily for internal usage.",
                  "repeated": true
                },
                "name": {
                  "required": true,
                  "location": "path",
                  "pattern": "^projects/[^/]+$",
                  "type": "string",
                  "description": "The resource that owns the locations collection, if applicable."
                },
                "filter": {
                  "location": "query",
                  "type": "string",
                  "description": "A filter to narrow down results to a preferred subset. The filtering language accepts strings like `\"displayName=tokyo\"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160)."
                },
                "pageToken": {
                  "location": "query",
                  "type": "string",
                  "description": "A page token received from the `next_page_token` field in the response. Send that page token to receive the subsequent page."
                }
              },
              "scopes": [
                "https://www.googleapis.com/auth/cloud-platform",
                "https://www.googleapis.com/auth/cloudkms"
              ],
              "parameterOrder": [
                "name"
              ],
              "description": "The google.cloud.location.Locations.ListLocations method is not available in this (s3nsapis.fr) universe."
            },
            "get": {
              "id": "cloudkms.projects.locations.get",
              "httpMethod": "GET",
              "response": {
                "$ref": "Location"
              },
              "path": "v1/{+name}",
              "flatPath": "v1/projects/{projectsId}/locations/{locationsId}",
              "parameterOrder": [
                "name"
              ],
              "description": "The google.cloud.location.Locations.GetLocation method is not available in this (s3nsapis.fr) universe.",
              "parameters": {
                "name": {
                  "required": true,
                  "location": "path",
                  "pattern": "^projects/[^/]+/locations/[^/]+$",
                  "type": "string",
                  "description": "Resource name for the location."
                }
              },
              "scopes": [
                "https://www.googleapis.com/auth/cloud-platform",
                "https://www.googleapis.com/auth/cloudkms"
              ]
            },
            "generateRandomBytes": {
              "request": {
                "$ref": "GenerateRandomBytesRequest"
              },
              "flatPath": "v1/projects/{projectsId}/locations/{locationsId}:generateRandomBytes",
              "path": "v1/{+location}:generateRandomBytes",
              "id": "cloudkms.projects.locations.generateRandomBytes",
              "httpMethod": "POST",
              "response": {
                "$ref": "GenerateRandomBytesResponse"
              },
              "parameters": {
                "location": {
                  "pattern": "^projects/[^/]+/locations/[^/]+$",
                  "type": "string",
                  "description": "The project-specific location in which to generate random bytes. For example, \"projects/my-project/locations/us-central1\".",
                  "required": true,
                  "location": "path"
                }
              },
              "scopes": [
                "https://www.googleapis.com/auth/cloud-platform",
                "https://www.googleapis.com/auth/cloudkms"
              ],
              "parameterOrder": [
                "location"
              ],
              "description": "Generate random bytes using the Cloud KMS randomness source in the provided location."
            },
            "updateEkmConfig": {
              "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/ekmConfig",
              "request": {
                "$ref": "EkmConfig"
              },
              "id": "cloudkms.projects.locations.updateEkmConfig",
              "httpMethod": "PATCH",
              "response": {
                "$ref": "EkmConfig"
              },
              "path": "v1/{+name}",
              "parameters": {
                "name": {
                  "pattern": "^projects/[^/]+/locations/[^/]+/ekmConfig$",
                  "type": "string",
                  "description": "Output only. The resource name for the EkmConfig in the format `projects/*/locations/*/ekmConfig`.",
                  "required": true,
                  "location": "path"
                },
                "updateMask": {
                  "description": "Required. List of fields to be updated in this request.",
                  "format": "google-fieldmask",
                  "location": "query",
                  "type": "string"
                }
              },
              "scopes": [
                "https://www.googleapis.com/auth/cloud-platform",
                "https://www.googleapis.com/auth/cloudkms"
              ],
              "parameterOrder": [
                "name"
              ],
              "description": "Updates the EkmConfig singleton resource for a given project and location."
            },
            "getEkmConfig": {
              "id": "cloudkms.projects.locations.getEkmConfig",
              "httpMethod": "GET",
              "response": {
                "$ref": "EkmConfig"
              },
              "path": "v1/{+name}",
              "flatPath": "v1/projects/{projectsId}/locations/{locationsId}/ekmConfig",
              "parameterOrder": [
                "name"
              ],
              "description": "Returns the EkmConfig singleton resource for a given project and location.",
              "parameters": {
                "name": {
                  "description": "Required. The name of the EkmConfig to get.",
                  "pattern": "^projects/[^/]+/locations/[^/]+/ekmConfig$",
                  "type": "string",
                  "required": true,
                  "location": "path"
                }
              },
              "scopes": [
                "https://www.googleapis.com/auth/cloud-platform",
                "https://www.googleapis.com/auth/cloudkms"
              ]
            }
          }
        }
      }
    },
    "organizations": {
      "methods": {
        "getKajPolicyConfig": {
          "parameters": {
            "name": {
              "location": "path",
              "required": true,
              "pattern": "^organizations/[^/]+/kajPolicyConfig$",
              "type": "string",
              "description": "Required. Specifies the name of the KeyAccessJustificationsPolicyConfig to get."
            }
          },
          "scopes": [
            "https://www.googleapis.com/auth/cloud-platform",
            "https://www.googleapis.com/auth/cloudkms"
          ],
          "parameterOrder": [
            "name"
          ],
          "description": "The google.cloud.kms.v1.KeyAccessJustificationsConfig.GetKeyAccessJustificationsPolicyConfig method is not available in this (s3nsapis.fr) universe.",
          "flatPath": "v1/organizations/{organizationsId}/kajPolicyConfig",
          "path": "v1/{+name}",
          "id": "cloudkms.organizations.getKajPolicyConfig",
          "httpMethod": "GET",
          "response": {
            "$ref": "KeyAccessJustificationsPolicyConfig"
          }
        },
        "updateKajPolicyConfig": {
          "flatPath": "v1/organizations/{organizationsId}/kajPolicyConfig",
          "request": {
            "$ref": "KeyAccessJustificationsPolicyConfig"
          },
          "id": "cloudkms.organizations.updateKajPolicyConfig",
          "httpMethod": "PATCH",
          "response": {
            "$ref": "KeyAccessJustificationsPolicyConfig"
          },
          "path": "v1/{+name}",
          "parameters": {
            "name": {
              "required": true,
              "location": "path",
              "pattern": "^organizations/[^/]+/kajPolicyConfig$",
              "type": "string",
              "description": "Identifier. Represents the resource name for this KeyAccessJustificationsPolicyConfig in the format of \"{organizations|folders|projects}/*/kajPolicyConfig\"."
            },
            "updateMask": {
              "location": "query",
              "type": "string",
              "description": "Optional. Specifies the list of fields to update.",
              "format": "google-fieldmask"
            }
          },
          "scopes": [
            "https://www.googleapis.com/auth/cloud-platform",
            "https://www.googleapis.com/auth/cloudkms"
          ],
          "parameterOrder": [
            "name"
          ],
          "description": "The google.cloud.kms.v1.KeyAccessJustificationsConfig.UpdateKeyAccessJustificationsPolicyConfig method is not available in this (s3nsapis.fr) universe."
        }
      }
    }
  },
  "icons": {
    "x32": "",
    "x16": ""
  },
  "baseUrl": "https://cloudkms.s3nsapis.fr/",
  "id": "cloudkms:v1",
  "batchPath": "batch",
  "fullyEncodeReservedExpansion": true,
  "description": "Manages keys and performs cryptographic operations in a central cloud service, for direct use by other cloud resources and applications. ",
  "ownerDomain": "google.com",
  "title": "Cloud Key Management Service (KMS) API",
  "canonicalName": "Cloud KMS",
  "version": "v1",
  "servicePath": "",
  "basePath": "",
  "ownerName": "Google"
}
