1514 lines
69 KiB
JSON
1514 lines
69 KiB
JSON
{
|
|
"canonicalName": "Cloud KMS",
|
|
"auth": {
|
|
"oauth2": {
|
|
"scopes": {
|
|
"https://www.googleapis.com/auth/cloud-platform": {
|
|
"description": "View and manage your data across Google Cloud Platform services"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"rootUrl": "https://cloudkms.googleapis.com/",
|
|
"ownerDomain": "google.com",
|
|
"name": "cloudkms",
|
|
"batchPath": "batch",
|
|
"title": "Google Cloud Key Management Service (KMS) API",
|
|
"ownerName": "Google",
|
|
"resources": {
|
|
"projects": {
|
|
"resources": {
|
|
"locations": {
|
|
"resources": {
|
|
"keyRings": {
|
|
"resources": {
|
|
"cryptoKeys": {
|
|
"methods": {
|
|
"testIamPermissions": {
|
|
"httpMethod": "POST",
|
|
"parameterOrder": [
|
|
"resource"
|
|
],
|
|
"response": {
|
|
"$ref": "TestIamPermissionsResponse"
|
|
},
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"parameters": {
|
|
"resource": {
|
|
"pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+$",
|
|
"location": "path",
|
|
"description": "REQUIRED: The resource for which the policy detail is being requested.\n`resource` is usually specified as a path. For example, a Project\nresource is specified as `projects/{project}`.",
|
|
"required": true,
|
|
"type": "string"
|
|
}
|
|
},
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}:testIamPermissions",
|
|
"id": "cloudkms.projects.locations.keyRings.cryptoKeys.testIamPermissions",
|
|
"path": "v1beta1/{+resource}:testIamPermissions",
|
|
"description": "Returns permissions that a caller has on the specified resource.\nIf the resource does not exist, this will return an empty set of\npermissions, not a NOT_FOUND error.",
|
|
"request": {
|
|
"$ref": "TestIamPermissionsRequest"
|
|
}
|
|
},
|
|
"decrypt": {
|
|
"httpMethod": "POST",
|
|
"parameterOrder": [
|
|
"name"
|
|
],
|
|
"response": {
|
|
"$ref": "DecryptResponse"
|
|
},
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"parameters": {
|
|
"name": {
|
|
"description": "Required. The resource name of the CryptoKey to use for decryption.\nThe server will choose the appropriate version.",
|
|
"required": true,
|
|
"type": "string",
|
|
"pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+$",
|
|
"location": "path"
|
|
}
|
|
},
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}:decrypt",
|
|
"id": "cloudkms.projects.locations.keyRings.cryptoKeys.decrypt",
|
|
"path": "v1beta1/{+name}:decrypt",
|
|
"description": "Decrypt data that was protected by Encrypt.",
|
|
"request": {
|
|
"$ref": "DecryptRequest"
|
|
}
|
|
},
|
|
"list": {
|
|
"response": {
|
|
"$ref": "ListCryptoKeysResponse"
|
|
},
|
|
"parameterOrder": [
|
|
"parent"
|
|
],
|
|
"httpMethod": "GET",
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"parameters": {
|
|
"parent": {
|
|
"description": "Required. The resource name of the KeyRing to list, in the format\n`projects/*/locations/*/keyRings/*`.",
|
|
"required": true,
|
|
"type": "string",
|
|
"pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+$",
|
|
"location": "path"
|
|
},
|
|
"pageToken": {
|
|
"description": "Optional pagination token, returned earlier via\nListCryptoKeysResponse.next_page_token.",
|
|
"type": "string",
|
|
"location": "query"
|
|
},
|
|
"pageSize": {
|
|
"location": "query",
|
|
"description": "Optional limit on the number of CryptoKeys to include in the\nresponse. Further CryptoKeys can subsequently be obtained by\nincluding the ListCryptoKeysResponse.next_page_token in a subsequent\nrequest. If unspecified, the server will pick an appropriate default.",
|
|
"format": "int32",
|
|
"type": "integer"
|
|
}
|
|
},
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys",
|
|
"path": "v1beta1/{+parent}/cryptoKeys",
|
|
"id": "cloudkms.projects.locations.keyRings.cryptoKeys.list",
|
|
"description": "Lists CryptoKeys."
|
|
},
|
|
"encrypt": {
|
|
"request": {
|
|
"$ref": "EncryptRequest"
|
|
},
|
|
"description": "Encrypt data, so that it can only be recovered by a call to Decrypt.",
|
|
"httpMethod": "POST",
|
|
"parameterOrder": [
|
|
"name"
|
|
],
|
|
"response": {
|
|
"$ref": "EncryptResponse"
|
|
},
|
|
"parameters": {
|
|
"name": {
|
|
"description": "Required. The resource name of the CryptoKey or CryptoKeyVersion\nto use for encryption.\n\nIf a CryptoKey is specified, the server will use its\nprimary version.",
|
|
"required": true,
|
|
"type": "string",
|
|
"pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/.+$",
|
|
"location": "path"
|
|
}
|
|
},
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}:encrypt",
|
|
"id": "cloudkms.projects.locations.keyRings.cryptoKeys.encrypt",
|
|
"path": "v1beta1/{+name}:encrypt"
|
|
},
|
|
"create": {
|
|
"response": {
|
|
"$ref": "CryptoKey"
|
|
},
|
|
"parameterOrder": [
|
|
"parent"
|
|
],
|
|
"httpMethod": "POST",
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"parameters": {
|
|
"cryptoKeyId": {
|
|
"description": "Required. It must be unique within a KeyRing and match the regular\nexpression `[a-zA-Z0-9_-]{1,63}`",
|
|
"type": "string",
|
|
"location": "query"
|
|
},
|
|
"parent": {
|
|
"description": "Required. The name of the KeyRing associated with the\nCryptoKeys.",
|
|
"required": true,
|
|
"type": "string",
|
|
"pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+$",
|
|
"location": "path"
|
|
}
|
|
},
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys",
|
|
"path": "v1beta1/{+parent}/cryptoKeys",
|
|
"id": "cloudkms.projects.locations.keyRings.cryptoKeys.create",
|
|
"description": "Create a new CryptoKey within a KeyRing.\n\nCryptoKey.purpose is required.",
|
|
"request": {
|
|
"$ref": "CryptoKey"
|
|
}
|
|
},
|
|
"setIamPolicy": {
|
|
"response": {
|
|
"$ref": "Policy"
|
|
},
|
|
"parameterOrder": [
|
|
"resource"
|
|
],
|
|
"httpMethod": "POST",
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"parameters": {
|
|
"resource": {
|
|
"pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+$",
|
|
"location": "path",
|
|
"description": "REQUIRED: The resource for which the policy is being specified.\n`resource` is usually specified as a path. For example, a Project\nresource is specified as `projects/{project}`.",
|
|
"required": true,
|
|
"type": "string"
|
|
}
|
|
},
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}:setIamPolicy",
|
|
"path": "v1beta1/{+resource}:setIamPolicy",
|
|
"id": "cloudkms.projects.locations.keyRings.cryptoKeys.setIamPolicy",
|
|
"description": "Sets the access control policy on the specified resource. Replaces any\nexisting policy.",
|
|
"request": {
|
|
"$ref": "SetIamPolicyRequest"
|
|
}
|
|
},
|
|
"updatePrimaryVersion": {
|
|
"httpMethod": "POST",
|
|
"parameterOrder": [
|
|
"name"
|
|
],
|
|
"response": {
|
|
"$ref": "CryptoKey"
|
|
},
|
|
"parameters": {
|
|
"name": {
|
|
"description": "The resource name of the CryptoKey to update.",
|
|
"required": true,
|
|
"type": "string",
|
|
"pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+$",
|
|
"location": "path"
|
|
}
|
|
},
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}:updatePrimaryVersion",
|
|
"id": "cloudkms.projects.locations.keyRings.cryptoKeys.updatePrimaryVersion",
|
|
"path": "v1beta1/{+name}:updatePrimaryVersion",
|
|
"request": {
|
|
"$ref": "UpdateCryptoKeyPrimaryVersionRequest"
|
|
},
|
|
"description": "Update the version of a CryptoKey that will be used in Encrypt"
|
|
},
|
|
"getIamPolicy": {
|
|
"httpMethod": "GET",
|
|
"response": {
|
|
"$ref": "Policy"
|
|
},
|
|
"parameterOrder": [
|
|
"resource"
|
|
],
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"parameters": {
|
|
"resource": {
|
|
"pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+$",
|
|
"location": "path",
|
|
"description": "REQUIRED: The resource for which the policy is being requested.\n`resource` is usually specified as a path. For example, a Project\nresource is specified as `projects/{project}`.",
|
|
"required": true,
|
|
"type": "string"
|
|
}
|
|
},
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}:getIamPolicy",
|
|
"id": "cloudkms.projects.locations.keyRings.cryptoKeys.getIamPolicy",
|
|
"path": "v1beta1/{+resource}:getIamPolicy",
|
|
"description": "Gets the access control policy for a resource.\nReturns an empty policy if the resource exists and does not have a policy\nset."
|
|
},
|
|
"get": {
|
|
"description": "Returns metadata for a given CryptoKey, as well as its\nprimary CryptoKeyVersion.",
|
|
"response": {
|
|
"$ref": "CryptoKey"
|
|
},
|
|
"parameterOrder": [
|
|
"name"
|
|
],
|
|
"httpMethod": "GET",
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"parameters": {
|
|
"name": {
|
|
"description": "The name of the CryptoKey to get.",
|
|
"required": true,
|
|
"type": "string",
|
|
"pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+$",
|
|
"location": "path"
|
|
}
|
|
},
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}",
|
|
"path": "v1beta1/{+name}",
|
|
"id": "cloudkms.projects.locations.keyRings.cryptoKeys.get"
|
|
},
|
|
"patch": {
|
|
"id": "cloudkms.projects.locations.keyRings.cryptoKeys.patch",
|
|
"path": "v1beta1/{+name}",
|
|
"request": {
|
|
"$ref": "CryptoKey"
|
|
},
|
|
"description": "Update a CryptoKey.",
|
|
"httpMethod": "PATCH",
|
|
"parameterOrder": [
|
|
"name"
|
|
],
|
|
"response": {
|
|
"$ref": "CryptoKey"
|
|
},
|
|
"parameters": {
|
|
"updateMask": {
|
|
"description": "Required list of fields to be updated in this request.",
|
|
"format": "google-fieldmask",
|
|
"type": "string",
|
|
"location": "query"
|
|
},
|
|
"name": {
|
|
"pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+$",
|
|
"location": "path",
|
|
"description": "Output only. The resource name for this CryptoKey in the format\n`projects/*/locations/*/keyRings/*/cryptoKeys/*`.",
|
|
"required": true,
|
|
"type": "string"
|
|
}
|
|
},
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}"
|
|
}
|
|
},
|
|
"resources": {
|
|
"cryptoKeyVersions": {
|
|
"methods": {
|
|
"list": {
|
|
"parameterOrder": [
|
|
"parent"
|
|
],
|
|
"httpMethod": "GET",
|
|
"response": {
|
|
"$ref": "ListCryptoKeyVersionsResponse"
|
|
},
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"parameters": {
|
|
"pageToken": {
|
|
"location": "query",
|
|
"description": "Optional pagination token, returned earlier via\nListCryptoKeyVersionsResponse.next_page_token.",
|
|
"type": "string"
|
|
},
|
|
"pageSize": {
|
|
"location": "query",
|
|
"description": "Optional limit on the number of CryptoKeyVersions to\ninclude in the response. Further CryptoKeyVersions can\nsubsequently be obtained by including the\nListCryptoKeyVersionsResponse.next_page_token in a subsequent request.\nIf unspecified, the server will pick an appropriate default.",
|
|
"format": "int32",
|
|
"type": "integer"
|
|
},
|
|
"parent": {
|
|
"pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+$",
|
|
"location": "path",
|
|
"description": "Required. The resource name of the CryptoKey to list, in the format\n`projects/*/locations/*/keyRings/*/cryptoKeys/*`.",
|
|
"required": true,
|
|
"type": "string"
|
|
}
|
|
},
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}/cryptoKeyVersions",
|
|
"path": "v1beta1/{+parent}/cryptoKeyVersions",
|
|
"id": "cloudkms.projects.locations.keyRings.cryptoKeys.cryptoKeyVersions.list",
|
|
"description": "Lists CryptoKeyVersions."
|
|
},
|
|
"destroy": {
|
|
"request": {
|
|
"$ref": "DestroyCryptoKeyVersionRequest"
|
|
},
|
|
"description": "Schedule a CryptoKeyVersion for destruction.\n\nUpon calling this method, CryptoKeyVersion.state will be set to\nDESTROY_SCHEDULED\nand destroy_time will be set to a time 24\nhours in the future, at which point the state\nwill be changed to\nDESTROYED, and the key\nmaterial will be irrevocably destroyed.\n\nBefore the destroy_time is reached,\nRestoreCryptoKeyVersion may be called to reverse the process.",
|
|
"response": {
|
|
"$ref": "CryptoKeyVersion"
|
|
},
|
|
"parameterOrder": [
|
|
"name"
|
|
],
|
|
"httpMethod": "POST",
|
|
"parameters": {
|
|
"name": {
|
|
"pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+/cryptoKeyVersions/[^/]+$",
|
|
"location": "path",
|
|
"description": "The resource name of the CryptoKeyVersion to destroy.",
|
|
"required": true,
|
|
"type": "string"
|
|
}
|
|
},
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}/cryptoKeyVersions/{cryptoKeyVersionsId}:destroy",
|
|
"path": "v1beta1/{+name}:destroy",
|
|
"id": "cloudkms.projects.locations.keyRings.cryptoKeys.cryptoKeyVersions.destroy"
|
|
},
|
|
"create": {
|
|
"response": {
|
|
"$ref": "CryptoKeyVersion"
|
|
},
|
|
"parameterOrder": [
|
|
"parent"
|
|
],
|
|
"httpMethod": "POST",
|
|
"parameters": {
|
|
"parent": {
|
|
"pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+$",
|
|
"location": "path",
|
|
"description": "Required. The name of the CryptoKey associated with\nthe CryptoKeyVersions.",
|
|
"required": true,
|
|
"type": "string"
|
|
}
|
|
},
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}/cryptoKeyVersions",
|
|
"path": "v1beta1/{+parent}/cryptoKeyVersions",
|
|
"id": "cloudkms.projects.locations.keyRings.cryptoKeys.cryptoKeyVersions.create",
|
|
"request": {
|
|
"$ref": "CryptoKeyVersion"
|
|
},
|
|
"description": "Create a new CryptoKeyVersion in a CryptoKey.\n\nThe server will assign the next sequential id. If unset,\nstate will be set to\nENABLED."
|
|
},
|
|
"restore": {
|
|
"path": "v1beta1/{+name}:restore",
|
|
"id": "cloudkms.projects.locations.keyRings.cryptoKeys.cryptoKeyVersions.restore",
|
|
"description": "Restore a CryptoKeyVersion in the\nDESTROY_SCHEDULED,\nstate.\n\nUpon restoration of the CryptoKeyVersion, state\nwill be set to DISABLED,\nand destroy_time will be cleared.",
|
|
"request": {
|
|
"$ref": "RestoreCryptoKeyVersionRequest"
|
|
},
|
|
"response": {
|
|
"$ref": "CryptoKeyVersion"
|
|
},
|
|
"parameterOrder": [
|
|
"name"
|
|
],
|
|
"httpMethod": "POST",
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"parameters": {
|
|
"name": {
|
|
"description": "The resource name of the CryptoKeyVersion to restore.",
|
|
"required": true,
|
|
"type": "string",
|
|
"pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+/cryptoKeyVersions/[^/]+$",
|
|
"location": "path"
|
|
}
|
|
},
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}/cryptoKeyVersions/{cryptoKeyVersionsId}:restore"
|
|
},
|
|
"patch": {
|
|
"httpMethod": "PATCH",
|
|
"parameterOrder": [
|
|
"name"
|
|
],
|
|
"response": {
|
|
"$ref": "CryptoKeyVersion"
|
|
},
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"parameters": {
|
|
"name": {
|
|
"pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+/cryptoKeyVersions/[^/]+$",
|
|
"location": "path",
|
|
"description": "Output only. The resource name for this CryptoKeyVersion in the format\n`projects/*/locations/*/keyRings/*/cryptoKeys/*/cryptoKeyVersions/*`.",
|
|
"required": true,
|
|
"type": "string"
|
|
},
|
|
"updateMask": {
|
|
"location": "query",
|
|
"description": "Required list of fields to be updated in this request.",
|
|
"format": "google-fieldmask",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}/cryptoKeyVersions/{cryptoKeyVersionsId}",
|
|
"id": "cloudkms.projects.locations.keyRings.cryptoKeys.cryptoKeyVersions.patch",
|
|
"path": "v1beta1/{+name}",
|
|
"description": "Update a CryptoKeyVersion's metadata.\n\nstate may be changed between\nENABLED and\nDISABLED using this\nmethod. See DestroyCryptoKeyVersion and RestoreCryptoKeyVersion to\nmove between other states.",
|
|
"request": {
|
|
"$ref": "CryptoKeyVersion"
|
|
}
|
|
},
|
|
"get": {
|
|
"parameterOrder": [
|
|
"name"
|
|
],
|
|
"httpMethod": "GET",
|
|
"response": {
|
|
"$ref": "CryptoKeyVersion"
|
|
},
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"parameters": {
|
|
"name": {
|
|
"pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+/cryptoKeys/[^/]+/cryptoKeyVersions/[^/]+$",
|
|
"location": "path",
|
|
"description": "The name of the CryptoKeyVersion to get.",
|
|
"required": true,
|
|
"type": "string"
|
|
}
|
|
},
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}/cryptoKeys/{cryptoKeysId}/cryptoKeyVersions/{cryptoKeyVersionsId}",
|
|
"path": "v1beta1/{+name}",
|
|
"id": "cloudkms.projects.locations.keyRings.cryptoKeys.cryptoKeyVersions.get",
|
|
"description": "Returns metadata for a given CryptoKeyVersion."
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"methods": {
|
|
"getIamPolicy": {
|
|
"response": {
|
|
"$ref": "Policy"
|
|
},
|
|
"parameterOrder": [
|
|
"resource"
|
|
],
|
|
"httpMethod": "GET",
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"parameters": {
|
|
"resource": {
|
|
"description": "REQUIRED: The resource for which the policy is being requested.\n`resource` is usually specified as a path. For example, a Project\nresource is specified as `projects/{project}`.",
|
|
"required": true,
|
|
"type": "string",
|
|
"pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+$",
|
|
"location": "path"
|
|
}
|
|
},
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}:getIamPolicy",
|
|
"path": "v1beta1/{+resource}:getIamPolicy",
|
|
"id": "cloudkms.projects.locations.keyRings.getIamPolicy",
|
|
"description": "Gets the access control policy for a resource.\nReturns an empty policy if the resource exists and does not have a policy\nset."
|
|
},
|
|
"get": {
|
|
"description": "Returns metadata for a given KeyRing.",
|
|
"response": {
|
|
"$ref": "KeyRing"
|
|
},
|
|
"parameterOrder": [
|
|
"name"
|
|
],
|
|
"httpMethod": "GET",
|
|
"parameters": {
|
|
"name": {
|
|
"description": "The name of the KeyRing to get.",
|
|
"required": true,
|
|
"type": "string",
|
|
"pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+$",
|
|
"location": "path"
|
|
}
|
|
},
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}",
|
|
"path": "v1beta1/{+name}",
|
|
"id": "cloudkms.projects.locations.keyRings.get"
|
|
},
|
|
"testIamPermissions": {
|
|
"response": {
|
|
"$ref": "TestIamPermissionsResponse"
|
|
},
|
|
"parameterOrder": [
|
|
"resource"
|
|
],
|
|
"httpMethod": "POST",
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"parameters": {
|
|
"resource": {
|
|
"pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+$",
|
|
"location": "path",
|
|
"description": "REQUIRED: The resource for which the policy detail is being requested.\n`resource` is usually specified as a path. For example, a Project\nresource is specified as `projects/{project}`.",
|
|
"required": true,
|
|
"type": "string"
|
|
}
|
|
},
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}:testIamPermissions",
|
|
"path": "v1beta1/{+resource}:testIamPermissions",
|
|
"id": "cloudkms.projects.locations.keyRings.testIamPermissions",
|
|
"description": "Returns permissions that a caller has on the specified resource.\nIf the resource does not exist, this will return an empty set of\npermissions, not a NOT_FOUND error.",
|
|
"request": {
|
|
"$ref": "TestIamPermissionsRequest"
|
|
}
|
|
},
|
|
"list": {
|
|
"id": "cloudkms.projects.locations.keyRings.list",
|
|
"path": "v1beta1/{+parent}/keyRings",
|
|
"description": "Lists KeyRings.",
|
|
"httpMethod": "GET",
|
|
"response": {
|
|
"$ref": "ListKeyRingsResponse"
|
|
},
|
|
"parameterOrder": [
|
|
"parent"
|
|
],
|
|
"parameters": {
|
|
"pageToken": {
|
|
"description": "Optional pagination token, returned earlier via\nListKeyRingsResponse.next_page_token.",
|
|
"type": "string",
|
|
"location": "query"
|
|
},
|
|
"pageSize": {
|
|
"description": "Optional limit on the number of KeyRings to include in the\nresponse. Further KeyRings can subsequently be obtained by\nincluding the ListKeyRingsResponse.next_page_token in a subsequent\nrequest. If unspecified, the server will pick an appropriate default.",
|
|
"format": "int32",
|
|
"type": "integer",
|
|
"location": "query"
|
|
},
|
|
"parent": {
|
|
"description": "Required. The resource name of the location associated with the\nKeyRings, in the format `projects/*/locations/*`.",
|
|
"required": true,
|
|
"type": "string",
|
|
"pattern": "^projects/[^/]+/locations/[^/]+$",
|
|
"location": "path"
|
|
}
|
|
},
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/keyRings"
|
|
},
|
|
"setIamPolicy": {
|
|
"httpMethod": "POST",
|
|
"parameterOrder": [
|
|
"resource"
|
|
],
|
|
"response": {
|
|
"$ref": "Policy"
|
|
},
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"parameters": {
|
|
"resource": {
|
|
"description": "REQUIRED: The resource for which the policy is being specified.\n`resource` is usually specified as a path. For example, a Project\nresource is specified as `projects/{project}`.",
|
|
"required": true,
|
|
"type": "string",
|
|
"pattern": "^projects/[^/]+/locations/[^/]+/keyRings/[^/]+$",
|
|
"location": "path"
|
|
}
|
|
},
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/keyRings/{keyRingsId}:setIamPolicy",
|
|
"id": "cloudkms.projects.locations.keyRings.setIamPolicy",
|
|
"path": "v1beta1/{+resource}:setIamPolicy",
|
|
"description": "Sets the access control policy on the specified resource. Replaces any\nexisting policy.",
|
|
"request": {
|
|
"$ref": "SetIamPolicyRequest"
|
|
}
|
|
},
|
|
"create": {
|
|
"httpMethod": "POST",
|
|
"parameterOrder": [
|
|
"parent"
|
|
],
|
|
"response": {
|
|
"$ref": "KeyRing"
|
|
},
|
|
"parameters": {
|
|
"parent": {
|
|
"description": "Required. The resource name of the location associated with the\nKeyRings, in the format `projects/*/locations/*`.",
|
|
"required": true,
|
|
"type": "string",
|
|
"pattern": "^projects/[^/]+/locations/[^/]+$",
|
|
"location": "path"
|
|
},
|
|
"keyRingId": {
|
|
"description": "Required. It must be unique within a location and match the regular\nexpression `[a-zA-Z0-9_-]{1,63}`",
|
|
"type": "string",
|
|
"location": "query"
|
|
}
|
|
},
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}/keyRings",
|
|
"id": "cloudkms.projects.locations.keyRings.create",
|
|
"path": "v1beta1/{+parent}/keyRings",
|
|
"request": {
|
|
"$ref": "KeyRing"
|
|
},
|
|
"description": "Create a new KeyRing in a given Project and Location."
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"methods": {
|
|
"list": {
|
|
"description": "Lists information about the supported locations for this service.",
|
|
"response": {
|
|
"$ref": "ListLocationsResponse"
|
|
},
|
|
"parameterOrder": [
|
|
"name"
|
|
],
|
|
"httpMethod": "GET",
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"parameters": {
|
|
"name": {
|
|
"description": "The resource that owns the locations collection, if applicable.",
|
|
"required": true,
|
|
"type": "string",
|
|
"pattern": "^projects/[^/]+$",
|
|
"location": "path"
|
|
},
|
|
"pageToken": {
|
|
"description": "The standard list page token.",
|
|
"type": "string",
|
|
"location": "query"
|
|
},
|
|
"pageSize": {
|
|
"location": "query",
|
|
"description": "The standard list page size.",
|
|
"format": "int32",
|
|
"type": "integer"
|
|
},
|
|
"filter": {
|
|
"description": "The standard list filter.",
|
|
"type": "string",
|
|
"location": "query"
|
|
}
|
|
},
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations",
|
|
"path": "v1beta1/{+name}/locations",
|
|
"id": "cloudkms.projects.locations.list"
|
|
},
|
|
"get": {
|
|
"description": "Get information about a location.",
|
|
"httpMethod": "GET",
|
|
"response": {
|
|
"$ref": "Location"
|
|
},
|
|
"parameterOrder": [
|
|
"name"
|
|
],
|
|
"parameters": {
|
|
"name": {
|
|
"pattern": "^projects/[^/]+/locations/[^/]+$",
|
|
"location": "path",
|
|
"description": "Resource name for the location.",
|
|
"required": true,
|
|
"type": "string"
|
|
}
|
|
},
|
|
"scopes": [
|
|
"https://www.googleapis.com/auth/cloud-platform"
|
|
],
|
|
"flatPath": "v1beta1/projects/{projectsId}/locations/{locationsId}",
|
|
"id": "cloudkms.projects.locations.get",
|
|
"path": "v1beta1/{+name}"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"parameters": {
|
|
"upload_protocol": {
|
|
"location": "query",
|
|
"description": "Upload protocol for media (e.g. \"raw\", \"multipart\").",
|
|
"type": "string"
|
|
},
|
|
"prettyPrint": {
|
|
"location": "query",
|
|
"description": "Returns response with indentations and line breaks.",
|
|
"type": "boolean",
|
|
"default": "true"
|
|
},
|
|
"uploadType": {
|
|
"location": "query",
|
|
"description": "Legacy upload protocol for media (e.g. \"media\", \"multipart\").",
|
|
"type": "string"
|
|
},
|
|
"fields": {
|
|
"description": "Selector specifying which fields to include in a partial response.",
|
|
"type": "string",
|
|
"location": "query"
|
|
},
|
|
"callback": {
|
|
"location": "query",
|
|
"description": "JSONP",
|
|
"type": "string"
|
|
},
|
|
"$.xgafv": {
|
|
"enumDescriptions": [
|
|
"v1 error format",
|
|
"v2 error format"
|
|
],
|
|
"location": "query",
|
|
"enum": [
|
|
"1",
|
|
"2"
|
|
],
|
|
"description": "V1 error format.",
|
|
"type": "string"
|
|
},
|
|
"alt": {
|
|
"enum": [
|
|
"json",
|
|
"media",
|
|
"proto"
|
|
],
|
|
"type": "string",
|
|
"enumDescriptions": [
|
|
"Responses with Content-Type of application/json",
|
|
"Media download with context-dependent Content-Type",
|
|
"Responses with Content-Type of application/x-protobuf"
|
|
],
|
|
"location": "query",
|
|
"description": "Data format for response.",
|
|
"default": "json"
|
|
},
|
|
"access_token": {
|
|
"location": "query",
|
|
"description": "OAuth access token.",
|
|
"type": "string"
|
|
},
|
|
"key": {
|
|
"location": "query",
|
|
"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"
|
|
},
|
|
"quotaUser": {
|
|
"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.",
|
|
"type": "string"
|
|
},
|
|
"pp": {
|
|
"location": "query",
|
|
"description": "Pretty-print response.",
|
|
"type": "boolean",
|
|
"default": "true"
|
|
},
|
|
"bearer_token": {
|
|
"description": "OAuth bearer token.",
|
|
"type": "string",
|
|
"location": "query"
|
|
},
|
|
"oauth_token": {
|
|
"location": "query",
|
|
"description": "OAuth 2.0 token for the current user.",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"version": "v1beta1",
|
|
"baseUrl": "https://cloudkms.googleapis.com/",
|
|
"description": "Manages encryption for your cloud services the same way you do on-premise. You can generate, use, rotate, and destroy AES256 encryption keys.",
|
|
"kind": "discovery#restDescription",
|
|
"servicePath": "",
|
|
"basePath": "",
|
|
"revision": "20170201",
|
|
"documentationLink": "https://cloud.google.com/kms/",
|
|
"id": "cloudkms:v1beta1",
|
|
"discoveryVersion": "v1",
|
|
"version_module": "True",
|
|
"schemas": {
|
|
"Rule": {
|
|
"description": "A rule to be applied in a Policy.",
|
|
"type": "object",
|
|
"properties": {
|
|
"description": {
|
|
"description": "Human-readable description of the rule.",
|
|
"type": "string"
|
|
},
|
|
"conditions": {
|
|
"description": "Additional restrictions that must be met",
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "Condition"
|
|
}
|
|
},
|
|
"logConfig": {
|
|
"description": "The config returned to callers of tech.iam.IAM.CheckPolicy for any entries\nthat match the LOG action.",
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "LogConfig"
|
|
}
|
|
},
|
|
"in": {
|
|
"description": "If one or more 'in' clauses are specified, the rule matches if\nthe PRINCIPAL/AUTHORITY_SELECTOR is in at least one of these entries.",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"permissions": {
|
|
"description": "A permission is a string of form '\u003cservice\u003e.\u003cresource type\u003e.\u003cverb\u003e'\n(e.g., 'storage.buckets.list'). A value of '*' matches all permissions,\nand a verb part of '*' (e.g., 'storage.buckets.*') matches all verbs.",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"action": {
|
|
"enumDescriptions": [
|
|
"Default no action.",
|
|
"Matching 'Entries' grant access.",
|
|
"Matching 'Entries' grant access and the caller promises to log\nthe request per the returned log_configs.",
|
|
"Matching 'Entries' deny access.",
|
|
"Matching 'Entries' deny access and the caller promises to log\nthe request per the returned log_configs.",
|
|
"Matching 'Entries' tell IAM.Check callers to generate logs."
|
|
],
|
|
"enum": [
|
|
"NO_ACTION",
|
|
"ALLOW",
|
|
"ALLOW_WITH_LOG",
|
|
"DENY",
|
|
"DENY_WITH_LOG",
|
|
"LOG"
|
|
],
|
|
"description": "Required",
|
|
"type": "string"
|
|
},
|
|
"notIn": {
|
|
"description": "If one or more 'not_in' clauses are specified, the rule matches\nif the PRINCIPAL/AUTHORITY_SELECTOR is in none of the entries.\nThe format for in and not_in entries is the same as for members in a\nBinding (see google/iam/v1/policy.proto).",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"id": "Rule"
|
|
},
|
|
"CryptoKey": {
|
|
"description": "A CryptoKey represents a logical key that can be used for cryptographic\noperations.\n\nA CryptoKey is made up of one or more versions, which\nrepresent the actual key material used in cryptographic operations.",
|
|
"type": "object",
|
|
"properties": {
|
|
"purpose": {
|
|
"enum": [
|
|
"CRYPTO_KEY_PURPOSE_UNSPECIFIED",
|
|
"ENCRYPT_DECRYPT"
|
|
],
|
|
"description": "The immutable purpose of this CryptoKey. Currently, the only acceptable\npurpose is ENCRYPT_DECRYPT.",
|
|
"type": "string",
|
|
"enumDescriptions": [
|
|
"Not specified.",
|
|
"CryptoKeys with this purpose may be used with\nEncrypt and\nDecrypt."
|
|
]
|
|
},
|
|
"nextRotationTime": {
|
|
"description": "At next_rotation_time, the Key Management Service will automatically:\n\n1. Create a new version of this CryptoKey.\n2. Mark the new version as primary.\n\nKey rotations performed manually via\nCreateCryptoKeyVersion and\nUpdateCryptoKeyPrimaryVersion\ndo not affect next_rotation_time.",
|
|
"format": "google-datetime",
|
|
"type": "string"
|
|
},
|
|
"createTime": {
|
|
"description": "Output only. The time at which this CryptoKey was created.",
|
|
"format": "google-datetime",
|
|
"type": "string"
|
|
},
|
|
"rotationPeriod": {
|
|
"description": "next_rotation_time will be advanced by this period when the service\nautomatically rotates a key. Must be at least one day.\n\nIf rotation_period is set, next_rotation_time must also be set.",
|
|
"format": "google-duration",
|
|
"type": "string"
|
|
},
|
|
"primary": {
|
|
"description": "Output only. A copy of the \"primary\" CryptoKeyVersion that will be used\nby Encrypt when this CryptoKey is given\nin EncryptRequest.name.\n\nThe CryptoKey's primary version can be updated via\nUpdateCryptoKeyPrimaryVersion.",
|
|
"$ref": "CryptoKeyVersion"
|
|
},
|
|
"name": {
|
|
"description": "Output only. The resource name for this CryptoKey in the format\n`projects/*/locations/*/keyRings/*/cryptoKeys/*`.",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"id": "CryptoKey"
|
|
},
|
|
"LogConfig": {
|
|
"description": "Specifies what kind of log the caller must write\nIncrement a streamz counter with the specified metric and field names.\n\nMetric names should start with a '/', generally be lowercase-only,\nand end in \"_count\". Field names should not contain an initial slash.\nThe actual exported metric names will have \"/iam/policy\" prepended.\n\nField names correspond to IAM request parameters and field values are\ntheir respective values.\n\nAt present the only supported field names are\n - \"iam_principal\", corresponding to IAMContext.principal;\n - \"\" (empty string), resulting in one aggretated counter with no field.\n\nExamples:\n counter { metric: \"/debug_access_count\" field: \"iam_principal\" }\n ==\u003e increment counter /iam/policy/backend_debug_access_count\n {iam_principal=[value of IAMContext.principal]}\n\nAt this time we do not support:\n* multiple field names (though this may be supported in the future)\n* decrementing the counter\n* incrementing it by anything other than 1",
|
|
"type": "object",
|
|
"properties": {
|
|
"cloudAudit": {
|
|
"$ref": "CloudAuditOptions",
|
|
"description": "Cloud audit options."
|
|
},
|
|
"counter": {
|
|
"$ref": "CounterOptions",
|
|
"description": "Counter options."
|
|
},
|
|
"dataAccess": {
|
|
"description": "Data access options.",
|
|
"$ref": "DataAccessOptions"
|
|
}
|
|
},
|
|
"id": "LogConfig"
|
|
},
|
|
"SetIamPolicyRequest": {
|
|
"description": "Request message for `SetIamPolicy` method.",
|
|
"type": "object",
|
|
"properties": {
|
|
"policy": {
|
|
"description": "REQUIRED: The complete policy to be applied to the `resource`. The size of\nthe policy is limited to a few 10s of KB. An empty policy is a\nvalid policy but certain Cloud Platform services (such as Projects)\nmight reject them.",
|
|
"$ref": "Policy"
|
|
},
|
|
"updateMask": {
|
|
"description": "OPTIONAL: A FieldMask specifying which fields of the policy to modify. Only\nthe fields in the mask will be modified. If no mask is provided, a default\nmask is used:\npaths: \"bindings, etag\"\nThis field is only used by Cloud IAM.",
|
|
"format": "google-fieldmask",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"id": "SetIamPolicyRequest"
|
|
},
|
|
"DecryptRequest": {
|
|
"properties": {
|
|
"ciphertext": {
|
|
"description": "Required. The encrypted data originally returned in\nEncryptResponse.ciphertext.",
|
|
"format": "byte",
|
|
"type": "string"
|
|
},
|
|
"additionalAuthenticatedData": {
|
|
"description": "Optional data that must match the data originally supplied in\nEncryptRequest.additional_authenticated_data.",
|
|
"format": "byte",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"id": "DecryptRequest",
|
|
"description": "Request message for KeyManagementService.Decrypt.",
|
|
"type": "object"
|
|
},
|
|
"Location": {
|
|
"description": "A resource that represents Google Cloud Platform location.",
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"description": "Resource name for the location, which may vary between implementations.\nFor example: `\"projects/example-project/locations/us-east1\"`",
|
|
"type": "string"
|
|
},
|
|
"locationId": {
|
|
"description": "The canonical id for this location. For example: `\"us-east1\"`.",
|
|
"type": "string"
|
|
},
|
|
"metadata": {
|
|
"additionalProperties": {
|
|
"description": "Properties of the object. Contains field @type with type URL.",
|
|
"type": "any"
|
|
},
|
|
"description": "Service-specific metadata. For example the available capacity at the given\nlocation.",
|
|
"type": "object"
|
|
},
|
|
"labels": {
|
|
"additionalProperties": {
|
|
"type": "string"
|
|
},
|
|
"description": "Cross-service attributes for the location. For example\n\n {\"cloud.googleapis.com/region\": \"us-east1\"}",
|
|
"type": "object"
|
|
}
|
|
},
|
|
"id": "Location"
|
|
},
|
|
"ListCryptoKeysResponse": {
|
|
"description": "Response message for KeyManagementService.ListCryptoKeys.",
|
|
"type": "object",
|
|
"properties": {
|
|
"nextPageToken": {
|
|
"description": "A token to retrieve next page of results. Pass this value in\nListCryptoKeysRequest.page_token to retrieve the next page of results.",
|
|
"type": "string"
|
|
},
|
|
"cryptoKeys": {
|
|
"description": "The list of CryptoKeys.",
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "CryptoKey"
|
|
}
|
|
},
|
|
"totalSize": {
|
|
"description": "The total number of CryptoKeys that matched the query.",
|
|
"format": "int32",
|
|
"type": "integer"
|
|
}
|
|
},
|
|
"id": "ListCryptoKeysResponse"
|
|
},
|
|
"Condition": {
|
|
"description": "A condition to be met.",
|
|
"type": "object",
|
|
"properties": {
|
|
"values": {
|
|
"description": "The objects of the condition. This is mutually exclusive with 'value'.",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"iam": {
|
|
"enum": [
|
|
"NO_ATTR",
|
|
"AUTHORITY",
|
|
"ATTRIBUTION"
|
|
],
|
|
"description": "Trusted attributes supplied by the IAM system.",
|
|
"type": "string",
|
|
"enumDescriptions": [
|
|
"Default non-attribute.",
|
|
"Either principal or (if present) authority selector.",
|
|
"The principal (even if an authority selector is present), which\nmust only be used for attribution, not authorization."
|
|
]
|
|
},
|
|
"op": {
|
|
"enum": [
|
|
"NO_OP",
|
|
"EQUALS",
|
|
"NOT_EQUALS",
|
|
"IN",
|
|
"NOT_IN",
|
|
"DISCHARGED"
|
|
],
|
|
"description": "An operator to apply the subject with.",
|
|
"type": "string",
|
|
"enumDescriptions": [
|
|
"Default no-op.",
|
|
"DEPRECATED. Use IN instead.",
|
|
"DEPRECATED. Use NOT_IN instead.",
|
|
"Set-inclusion check.",
|
|
"Set-exclusion check.",
|
|
"Subject is discharged"
|
|
]
|
|
},
|
|
"svc": {
|
|
"description": "Trusted attributes discharged by the service.",
|
|
"type": "string"
|
|
},
|
|
"value": {
|
|
"description": "DEPRECATED. Use 'values' instead.",
|
|
"type": "string"
|
|
},
|
|
"sys": {
|
|
"enumDescriptions": [
|
|
"Default non-attribute type",
|
|
"Region of the resource",
|
|
"Service name",
|
|
"Resource name",
|
|
"IP address of the caller"
|
|
],
|
|
"enum": [
|
|
"NO_ATTR",
|
|
"REGION",
|
|
"SERVICE",
|
|
"NAME",
|
|
"IP"
|
|
],
|
|
"description": "Trusted attributes supplied by any service that owns resources and uses\nthe IAM system for access control.",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"id": "Condition"
|
|
},
|
|
"CounterOptions": {
|
|
"properties": {
|
|
"metric": {
|
|
"description": "The metric to update.",
|
|
"type": "string"
|
|
},
|
|
"field": {
|
|
"description": "The field value to attribute.",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"id": "CounterOptions",
|
|
"description": "Options for counters",
|
|
"type": "object"
|
|
},
|
|
"AuditLogConfig": {
|
|
"description": "Provides the configuration for logging a type of permissions.\nExample:\n\n {\n \"audit_log_configs\": [\n {\n \"log_type\": \"DATA_READ\",\n \"exempted_members\": [\n \"user:foo@gmail.com\"\n ]\n },\n {\n \"log_type\": \"DATA_WRITE\",\n }\n ]\n }\n\nThis enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting\nfoo@gmail.com from DATA_READ logging.",
|
|
"type": "object",
|
|
"properties": {
|
|
"exemptedMembers": {
|
|
"description": "Specifies the identities that do not cause logging for this type of\npermission.\nFollows the same format of Binding.members.",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"logType": {
|
|
"enum": [
|
|
"LOG_TYPE_UNSPECIFIED",
|
|
"ADMIN_READ",
|
|
"DATA_WRITE",
|
|
"DATA_READ"
|
|
],
|
|
"description": "The log type that this config enables.",
|
|
"type": "string",
|
|
"enumDescriptions": [
|
|
"Default case. Should never be this.",
|
|
"Admin reads. Example: CloudIAM getIamPolicy",
|
|
"Data writes. Example: CloudSQL Users create",
|
|
"Data reads. Example: CloudSQL Users list"
|
|
]
|
|
}
|
|
},
|
|
"id": "AuditLogConfig"
|
|
},
|
|
"DecryptResponse": {
|
|
"properties": {
|
|
"plaintext": {
|
|
"description": "The decrypted data originally supplied in EncryptRequest.plaintext.",
|
|
"format": "byte",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"id": "DecryptResponse",
|
|
"description": "Response message for KeyManagementService.Decrypt.",
|
|
"type": "object"
|
|
},
|
|
"TestIamPermissionsRequest": {
|
|
"properties": {
|
|
"permissions": {
|
|
"description": "The set of permissions to check for the `resource`. Permissions with\nwildcards (such as '*' or 'storage.*') are not allowed. For more\ninformation see\n[IAM Overview](https://cloud.google.com/iam/docs/overview#permissions).",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"id": "TestIamPermissionsRequest",
|
|
"description": "Request message for `TestIamPermissions` method.",
|
|
"type": "object"
|
|
},
|
|
"Policy": {
|
|
"description": "Defines an Identity and Access Management (IAM) policy. It is used to\nspecify access control policies for Cloud Platform resources.\n\n\nA `Policy` consists of a list of `bindings`. A `Binding` binds a list of\n`members` to a `role`, where the members can be user accounts, Google groups,\nGoogle domains, and service accounts. A `role` is a named list of permissions\ndefined by IAM.\n\n**Example**\n\n {\n \"bindings\": [\n {\n \"role\": \"roles/owner\",\n \"members\": [\n \"user:mike@example.com\",\n \"group:admins@example.com\",\n \"domain:google.com\",\n \"serviceAccount:my-other-app@appspot.gserviceaccount.com\",\n ]\n },\n {\n \"role\": \"roles/viewer\",\n \"members\": [\"user:sean@example.com\"]\n }\n ]\n }\n\nFor a description of IAM and its features, see the\n[IAM developer's guide](https://cloud.google.com/iam).",
|
|
"type": "object",
|
|
"properties": {
|
|
"iamOwned": {
|
|
"type": "boolean"
|
|
},
|
|
"rules": {
|
|
"description": "If more than one rule is specified, the rules are applied in the following\nmanner:\n- All matching LOG rules are always applied.\n- If any DENY/DENY_WITH_LOG rule matches, permission is denied.\n Logging will be applied if one or more matching rule requires logging.\n- Otherwise, if any ALLOW/ALLOW_WITH_LOG rule matches, permission is\n granted.\n Logging will be applied if one or more matching rule requires logging.\n- Otherwise, if no rule applies, permission is denied.",
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "Rule"
|
|
}
|
|
},
|
|
"version": {
|
|
"description": "Version of the `Policy`. The default version is 0.",
|
|
"format": "int32",
|
|
"type": "integer"
|
|
},
|
|
"auditConfigs": {
|
|
"description": "Specifies cloud audit logging configuration for this policy.",
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "AuditConfig"
|
|
}
|
|
},
|
|
"bindings": {
|
|
"description": "Associates a list of `members` to a `role`.\nMultiple `bindings` must not be specified for the same `role`.\n`bindings` with no members will result in an error.",
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "Binding"
|
|
}
|
|
},
|
|
"etag": {
|
|
"description": "`etag` is used for optimistic concurrency control as a way to help\nprevent simultaneous updates of a policy from overwriting each other.\nIt is strongly suggested that systems make use of the `etag` in the\nread-modify-write cycle to perform policy updates in order to avoid race\nconditions: An `etag` is returned in the response to `getIamPolicy`, and\nsystems are expected to put that etag in the request to `setIamPolicy` to\nensure that their change will be applied to the same version of the policy.\n\nIf no `etag` is provided in the call to `setIamPolicy`, then the existing\npolicy is overwritten blindly.",
|
|
"format": "byte",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"id": "Policy"
|
|
},
|
|
"ListLocationsResponse": {
|
|
"description": "The response message for Locations.ListLocations.",
|
|
"type": "object",
|
|
"properties": {
|
|
"locations": {
|
|
"description": "A list of locations that matches the specified filter in the request.",
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "Location"
|
|
}
|
|
},
|
|
"nextPageToken": {
|
|
"description": "The standard List next-page token.",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"id": "ListLocationsResponse"
|
|
},
|
|
"KeyRing": {
|
|
"description": "A KeyRing is a toplevel logical grouping of CryptoKeys.",
|
|
"type": "object",
|
|
"properties": {
|
|
"createTime": {
|
|
"description": "Output only. The time at which this KeyRing was created.",
|
|
"format": "google-datetime",
|
|
"type": "string"
|
|
},
|
|
"name": {
|
|
"description": "Output only. The resource name for the KeyRing in the format\n`projects/*/locations/*/keyRings/*`.",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"id": "KeyRing"
|
|
},
|
|
"EncryptResponse": {
|
|
"description": "Response message for KeyManagementService.Encrypt.",
|
|
"type": "object",
|
|
"properties": {
|
|
"name": {
|
|
"description": "The resource name of the CryptoKeyVersion used in encryption.",
|
|
"type": "string"
|
|
},
|
|
"ciphertext": {
|
|
"description": "The encrypted data.",
|
|
"format": "byte",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"id": "EncryptResponse"
|
|
},
|
|
"RestoreCryptoKeyVersionRequest": {
|
|
"description": "Request message for KeyManagementService.RestoreCryptoKeyVersion.",
|
|
"type": "object",
|
|
"properties": {},
|
|
"id": "RestoreCryptoKeyVersionRequest"
|
|
},
|
|
"UpdateCryptoKeyPrimaryVersionRequest": {
|
|
"description": "Request message for KeyManagementService.UpdateCryptoKeyPrimaryVersion.",
|
|
"type": "object",
|
|
"properties": {
|
|
"cryptoKeyVersionId": {
|
|
"description": "The id of the child CryptoKeyVersion to use as primary.",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"id": "UpdateCryptoKeyPrimaryVersionRequest"
|
|
},
|
|
"ListKeyRingsResponse": {
|
|
"properties": {
|
|
"nextPageToken": {
|
|
"description": "A token to retrieve next page of results. Pass this value in\nListKeyRingsRequest.page_token to retrieve the next page of results.",
|
|
"type": "string"
|
|
},
|
|
"totalSize": {
|
|
"description": "The total number of KeyRings that matched the query.",
|
|
"format": "int32",
|
|
"type": "integer"
|
|
},
|
|
"keyRings": {
|
|
"description": "The list of KeyRings.",
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "KeyRing"
|
|
}
|
|
}
|
|
},
|
|
"id": "ListKeyRingsResponse",
|
|
"description": "Response message for KeyManagementService.ListKeyRings.",
|
|
"type": "object"
|
|
},
|
|
"DataAccessOptions": {
|
|
"properties": {},
|
|
"id": "DataAccessOptions",
|
|
"description": "Write a Data Access (Gin) log",
|
|
"type": "object"
|
|
},
|
|
"AuditConfig": {
|
|
"description": "Specifies the audit configuration for a service.\nIt consists of which permission types are logged, and what identities, if\nany, are exempted from logging.\nAn AuditConifg must have one or more AuditLogConfigs.",
|
|
"type": "object",
|
|
"properties": {
|
|
"exemptedMembers": {
|
|
"description": "Specifies the identities that are exempted from \"data access\" audit\nlogging for the `service` specified above.\nFollows the same format of Binding.members.\nThis field is deprecated in favor of per-permission-type exemptions.",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"service": {
|
|
"description": "Specifies a service that will be enabled for audit logging.\nFor example, `resourcemanager`, `storage`, `compute`.\n`allServices` is a special value that covers all services.",
|
|
"type": "string"
|
|
},
|
|
"auditLogConfigs": {
|
|
"description": "The configuration for logging of each type of permission.\nNext ID: 4",
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "AuditLogConfig"
|
|
}
|
|
}
|
|
},
|
|
"id": "AuditConfig"
|
|
},
|
|
"CryptoKeyVersion": {
|
|
"description": "A CryptoKeyVersion represents an individual cryptographic key, and the\nassociated key material.\n\nIt can be used for cryptographic operations either directly, or via its\nparent CryptoKey, in which case the server will choose the appropriate\nversion for the operation.",
|
|
"type": "object",
|
|
"properties": {
|
|
"destroyTime": {
|
|
"description": "Output only. The time this CryptoKeyVersion's key material is scheduled\nfor destruction. Only present if state is\nDESTROY_SCHEDULED.",
|
|
"format": "google-datetime",
|
|
"type": "string"
|
|
},
|
|
"createTime": {
|
|
"description": "Output only. The time at which this CryptoKeyVersion was created.",
|
|
"format": "google-datetime",
|
|
"type": "string"
|
|
},
|
|
"state": {
|
|
"enumDescriptions": [
|
|
"Not specified.",
|
|
"This version may be used in Encrypt and\nDecrypt requests.",
|
|
"This version may not be used, but the key material is still available,\nand the version can be placed back into the ENABLED state.",
|
|
"This version is destroyed, and the key material is no longer stored.\nA version may not leave this state once entered.",
|
|
"This version is scheduled for destruction, and will be destroyed soon.\nCall\nRestoreCryptoKeyVersion\nto put it back into the DISABLED state."
|
|
],
|
|
"enum": [
|
|
"CRYPTO_KEY_VERSION_STATE_UNSPECIFIED",
|
|
"ENABLED",
|
|
"DISABLED",
|
|
"DESTROYED",
|
|
"DESTROY_SCHEDULED"
|
|
],
|
|
"description": "The current state of the CryptoKeyVersion.",
|
|
"type": "string"
|
|
},
|
|
"name": {
|
|
"description": "Output only. The resource name for this CryptoKeyVersion in the format\n`projects/*/locations/*/keyRings/*/cryptoKeys/*/cryptoKeyVersions/*`.",
|
|
"type": "string"
|
|
},
|
|
"destroyEventTime": {
|
|
"description": "Output only. The time this CryptoKeyVersion's key material was\ndestroyed. Only present if state is\nDESTROYED.",
|
|
"format": "google-datetime",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"id": "CryptoKeyVersion"
|
|
},
|
|
"CloudAuditOptions": {
|
|
"properties": {},
|
|
"id": "CloudAuditOptions",
|
|
"description": "Write a Cloud Audit log",
|
|
"type": "object"
|
|
},
|
|
"Binding": {
|
|
"description": "Associates `members` with a `role`.",
|
|
"type": "object",
|
|
"properties": {
|
|
"members": {
|
|
"description": "Specifies the identities requesting access for a Cloud Platform resource.\n`members` can have the following values:\n\n* `allUsers`: A special identifier that represents anyone who is\n on the internet; with or without a Google account.\n\n* `allAuthenticatedUsers`: A special identifier that represents anyone\n who is authenticated with a Google account or a service account.\n\n* `user:{emailid}`: An email address that represents a specific Google\n account. For example, `alice@gmail.com` or `joe@example.com`.\n\n\n* `serviceAccount:{emailid}`: An email address that represents a service\n account. For example, `my-other-app@appspot.gserviceaccount.com`.\n\n* `group:{emailid}`: An email address that represents a Google group.\n For example, `admins@example.com`.\n\n* `domain:{domain}`: A Google Apps domain name that represents all the\n users of that domain. For example, `google.com` or `example.com`.\n\n",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"role": {
|
|
"description": "Role that is assigned to `members`.\nFor example, `roles/viewer`, `roles/editor`, or `roles/owner`.\nRequired",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"id": "Binding"
|
|
},
|
|
"EncryptRequest": {
|
|
"properties": {
|
|
"additionalAuthenticatedData": {
|
|
"description": "Optional data that, if specified, must also be provided during decryption\nthrough DecryptRequest.additional_authenticated_data. Must be no\nlarger than 64KiB.",
|
|
"format": "byte",
|
|
"type": "string"
|
|
},
|
|
"plaintext": {
|
|
"description": "Required. The data to encrypt. Must be no larger than 64KiB.",
|
|
"format": "byte",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"id": "EncryptRequest",
|
|
"description": "Request message for KeyManagementService.Encrypt.",
|
|
"type": "object"
|
|
},
|
|
"ListCryptoKeyVersionsResponse": {
|
|
"description": "Response message for KeyManagementService.ListCryptoKeyVersions.",
|
|
"type": "object",
|
|
"properties": {
|
|
"nextPageToken": {
|
|
"description": "A token to retrieve next page of results. Pass this value in\nListCryptoKeyVersionsRequest.page_token to retrieve the next page of\nresults.",
|
|
"type": "string"
|
|
},
|
|
"totalSize": {
|
|
"description": "The total number of CryptoKeyVersions that matched the\nquery.",
|
|
"format": "int32",
|
|
"type": "integer"
|
|
},
|
|
"cryptoKeyVersions": {
|
|
"description": "The list of CryptoKeyVersions.",
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "CryptoKeyVersion"
|
|
}
|
|
}
|
|
},
|
|
"id": "ListCryptoKeyVersionsResponse"
|
|
},
|
|
"TestIamPermissionsResponse": {
|
|
"description": "Response message for `TestIamPermissions` method.",
|
|
"type": "object",
|
|
"properties": {
|
|
"permissions": {
|
|
"description": "A subset of `TestPermissionsRequest.permissions` that the caller is\nallowed.",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"id": "TestIamPermissionsResponse"
|
|
},
|
|
"DestroyCryptoKeyVersionRequest": {
|
|
"description": "Request message for KeyManagementService.DestroyCryptoKeyVersion.",
|
|
"type": "object",
|
|
"properties": {},
|
|
"id": "DestroyCryptoKeyVersionRequest"
|
|
}
|
|
},
|
|
"icons": {
|
|
"x16": "http://www.google.com/images/icons/product/search-16.gif",
|
|
"x32": "http://www.google.com/images/icons/product/search-32.gif"
|
|
},
|
|
"protocol": "rest"
|
|
}
|