@maxim_mazurok/gapi.client.workflows-v1 0.0.20230607 → 0.0.20230621
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/tests.ts +7 -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: 20230621
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -194,6 +194,12 @@ declare namespace gapi.client {
|
|
|
194
194
|
/** Output only. The timestamp for when the workflow was last updated. */
|
|
195
195
|
updateTime?:
|
|
196
196
|
string;
|
|
197
|
+
/**
|
|
198
|
+
* Optional. User-defined environment variables associated with this workflow revision. This map has a maximum length of 20. Each string can take up to 40KiB. Keys cannot be empty
|
|
199
|
+
* strings and cannot start with “GOOGLE” or “WORKFLOWS".
|
|
200
|
+
*/
|
|
201
|
+
userEnvVars?:
|
|
202
|
+
{ [P in string]: string };
|
|
197
203
|
}
|
|
198
204
|
interface OperationsResource {
|
|
199
205
|
/**
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230621
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -81,6 +81,9 @@ gapi.load('client', async () => {
|
|
|
81
81
|
type: "Test string",
|
|
82
82
|
},
|
|
83
83
|
updateTime: "Test string",
|
|
84
|
+
userEnvVars: {
|
|
85
|
+
A: "Test string"
|
|
86
|
+
},
|
|
84
87
|
});
|
|
85
88
|
/** Deletes a workflow with the specified name. This method also cancels and deletes all running executions of the workflow. */
|
|
86
89
|
await gapi.client.workflows.projects.locations.workflows.delete({
|
|
@@ -125,6 +128,9 @@ gapi.load('client', async () => {
|
|
|
125
128
|
type: "Test string",
|
|
126
129
|
},
|
|
127
130
|
updateTime: "Test string",
|
|
131
|
+
userEnvVars: {
|
|
132
|
+
A: "Test string"
|
|
133
|
+
},
|
|
128
134
|
});
|
|
129
135
|
}
|
|
130
136
|
});
|