@maxim_mazurok/gapi.client.dataform-v1beta1 0.2.20260529 → 0.2.20260615
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 +33 -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://dataform.googleapis.com/$discovery/rest?version=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260615
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -882,6 +882,12 @@ declare namespace gapi.client {
|
|
|
882
882
|
/** 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. */
|
|
883
883
|
message?: string;
|
|
884
884
|
}
|
|
885
|
+
interface TableUpdateTrigger {
|
|
886
|
+
/** The target table to trigger the workflow. */
|
|
887
|
+
table?: Target;
|
|
888
|
+
/** Output only. The modification time of this table that resulted in an invocation of the workflow. This would be updated by the triggering service after a successful workflow invocation. */
|
|
889
|
+
triggerUpdateTime?: string;
|
|
890
|
+
}
|
|
885
891
|
interface Target {
|
|
886
892
|
/** Optional. The action's database (Google Cloud project ID) . */
|
|
887
893
|
database?: string;
|
|
@@ -922,6 +928,12 @@ declare namespace gapi.client {
|
|
|
922
928
|
/** A subset of `TestPermissionsRequest.permissions` that the caller is allowed. */
|
|
923
929
|
permissions?: string[];
|
|
924
930
|
}
|
|
931
|
+
interface TriggerEvaluationRecord {
|
|
932
|
+
/** Output only. The timestamp of this trigger evaluation attempt. */
|
|
933
|
+
evaluationTime?: string;
|
|
934
|
+
/** Output only. The status of the trigger evaluation. Success is indicated by a code of 0 (OK). Message will only be present if the status code is non-zero. */
|
|
935
|
+
status?: Status;
|
|
936
|
+
}
|
|
925
937
|
interface UncommittedFileChange {
|
|
926
938
|
/** The file's full path including filename, relative to the workspace root. */
|
|
927
939
|
path?: string;
|
|
@@ -954,6 +966,8 @@ declare namespace gapi.client {
|
|
|
954
966
|
timeZone?: string;
|
|
955
967
|
/** Output only. The timestamp of when the WorkflowConfig was last updated. */
|
|
956
968
|
updateTime?: string;
|
|
969
|
+
/** Optional. Optional trigger configuration for this workflow. If present, the workflow will be triggered based on the specified triggers. */
|
|
970
|
+
workflowTriggerConfig?: WorkflowTriggerConfig;
|
|
957
971
|
}
|
|
958
972
|
interface WorkflowInvocation {
|
|
959
973
|
/** Immutable. The name of the compilation result to use for this invocation. Must be in the format `projects/*/locations/*/repositories/*/compilationResults/*`. */
|
|
@@ -1010,6 +1024,24 @@ declare namespace gapi.client {
|
|
|
1010
1024
|
/** Output only. This action's identifier. Unique within the workflow invocation. */
|
|
1011
1025
|
target?: Target;
|
|
1012
1026
|
}
|
|
1027
|
+
interface WorkflowTrigger {
|
|
1028
|
+
/** The table update trigger configuration. */
|
|
1029
|
+
tableUpdateTrigger?: TableUpdateTrigger;
|
|
1030
|
+
}
|
|
1031
|
+
interface WorkflowTriggerConfig {
|
|
1032
|
+
/** Optional. The condition to use when triggering the workflow. */
|
|
1033
|
+
condition?: 'CONDITION_UNSPECIFIED' | 'ALL' | 'ANY';
|
|
1034
|
+
/** Output only. The timestamp of the last successful trigger evaluation. */
|
|
1035
|
+
lastSuccessfulEvaluationTime?: string;
|
|
1036
|
+
/** Optional. The effective maximum wait time duration for the trigger condition to be met. If not specified, the workflow won't be triggered until conditions are met. */
|
|
1037
|
+
maxWaitDuration?: string;
|
|
1038
|
+
/** Optional. Minimum duration between two consecutive executions. If not specified, the workflow will be executed every time trigger conditions are met and no ongoing workflow execution. */
|
|
1039
|
+
minExecutionDuration?: string;
|
|
1040
|
+
/** Output only. Records of the 10 most recent trigger evaluations, ordered in descending order of `evaluation_time`. Updated whenever the service evaluates the trigger conditions (via polling or upon receiving a push event). */
|
|
1041
|
+
recentTriggerEvaluationRecords?: TriggerEvaluationRecord[];
|
|
1042
|
+
/** Required. The trigger definitions to invoke a workflow. */
|
|
1043
|
+
workflowTriggers?: WorkflowTrigger[];
|
|
1044
|
+
}
|
|
1013
1045
|
interface Workspace {
|
|
1014
1046
|
/** Output only. The timestamp of when the workspace was created. */
|
|
1015
1047
|
createTime?: string;
|