@maxim_mazurok/gapi.client.workflows-v1 0.0.20240501 → 0.0.20240508
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +7 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://workflows.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240508
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -102,12 +102,18 @@ declare namespace gapi.client {
|
|
|
102
102
|
message?: string;
|
|
103
103
|
}
|
|
104
104
|
interface Workflow {
|
|
105
|
+
/** Output only. A list of all KMS crypto keys used to encrypt or decrpt the data associated with the workflow. */
|
|
106
|
+
allKmsKeys?: string[];
|
|
107
|
+
/** Output only. A list of all KMS crypto keys versions used to encrypt or decrpt the data associated with the workflow. */
|
|
108
|
+
allKmsKeysVersions?: string[];
|
|
105
109
|
/** Optional. Describes the level of platform logging to apply to calls and call responses during executions of this workflow. If both the workflow and the execution specify a logging level, the execution level takes precedence. */
|
|
106
110
|
callLogLevel?: string;
|
|
107
111
|
/** Output only. The timestamp for when the workflow was created. This is a workflow-wide field and is not tied to a specific revision. */
|
|
108
112
|
createTime?: string;
|
|
109
113
|
/** Optional. The resource name of a KMS crypto key used to encrypt or decrypt the data associated with the workflow. Format: projects/{project}/locations/{location}/keyRings/{keyRing}/cryptoKeys/{cryptoKey} Using `-` as a wildcard for the `{project}` or not providing one at all will infer the project from the account. If not provided, data associated with the workflow will not be CMEK-encrypted. */
|
|
110
114
|
cryptoKeyName?: string;
|
|
115
|
+
/** Output only. The resource name of a KMS crypto key version used to encrypt or decrypt the data associated with the workflow. Format: projects/{project}/locations/{location}/keyRings/{keyRing}/cryptoKeys/{cryptoKey}/cryptoKeyVersions/{cryptoKeyVersion} */
|
|
116
|
+
cryptoKeyVersion?: string;
|
|
111
117
|
/** Description of the workflow provided by the user. Must be at most 1000 Unicode characters long. This is a workflow-wide field and is not tied to a specific revision. */
|
|
112
118
|
description?: string;
|
|
113
119
|
/** Labels associated with this workflow. Labels can contain at most 64 entries. Keys and values can be no longer than 63 characters and can only contain lowercase letters, numeric characters, underscores, and dashes. Label keys must start with a letter. International characters are allowed. This is a workflow-wide field and is not tied to a specific revision. */
|