@maxim_mazurok/gapi.client.dataform-v1beta1 0.2.20260607 → 0.2.20260621
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 +48 -16
- 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: 20260621
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -162,7 +162,7 @@ declare namespace gapi.client {
|
|
|
162
162
|
}
|
|
163
163
|
interface CommitWorkspaceChangesResponse {}
|
|
164
164
|
interface CompilationError {
|
|
165
|
-
/** Output only. The identifier of the action where this error occurred, if available.
|
|
165
|
+
/** Output only. The identifier of the action where this error occurred, if available. */
|
|
166
166
|
actionTarget?: Target;
|
|
167
167
|
/** Output only. The error's top level message. */
|
|
168
168
|
message?: string;
|
|
@@ -375,11 +375,11 @@ declare namespace gapi.client {
|
|
|
375
375
|
interface GitRemoteSettings {
|
|
376
376
|
/** Optional. The name of the Secret Manager secret version to use as an authentication token for Git operations. Must be in the format `projects/*/secrets/*/versions/*`. */
|
|
377
377
|
authenticationTokenSecretVersion?: string;
|
|
378
|
-
/** Optional. The Git remote's default branch name. If not set `main` will be used. */
|
|
378
|
+
/** Optional. The Git remote's default branch name. If not set, `main` will be used. */
|
|
379
379
|
defaultBranch?: string;
|
|
380
380
|
/** Output only. The Git remote's effective default branch name. This is the default branch name of the Git remote if it is set, otherwise it is `main`. */
|
|
381
381
|
effectiveDefaultBranch?: string;
|
|
382
|
-
/** Optional. Resource name for the GitRepositoryLink used for machine credentials. Must be in the format `projects/*/locations/*/connections/*/gitRepositoryLinks/*` */
|
|
382
|
+
/** Optional. Resource name for the `GitRepositoryLink` used for machine credentials. Must be in the format `projects/*/locations/*/connections/*/gitRepositoryLinks/*` */
|
|
383
383
|
gitRepositoryLink?: string;
|
|
384
384
|
/** Optional. Authentication fields for remote uris using SSH protocol. */
|
|
385
385
|
sshAuthenticationConfig?: SshAuthenticationConfig;
|
|
@@ -445,7 +445,7 @@ declare namespace gapi.client {
|
|
|
445
445
|
compilationResults?: CompilationResult[];
|
|
446
446
|
/** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
447
447
|
nextPageToken?: string;
|
|
448
|
-
/** Locations which could not be reached.
|
|
448
|
+
/** Locations which could not be reached. */
|
|
449
449
|
unreachable?: string[];
|
|
450
450
|
}
|
|
451
451
|
interface ListLocationsResponse {
|
|
@@ -467,7 +467,7 @@ declare namespace gapi.client {
|
|
|
467
467
|
nextPageToken?: string;
|
|
468
468
|
/** List of release configs. */
|
|
469
469
|
releaseConfigs?: ReleaseConfig[];
|
|
470
|
-
/** Locations which could not be reached.
|
|
470
|
+
/** Locations which could not be reached. */
|
|
471
471
|
unreachable?: string[];
|
|
472
472
|
}
|
|
473
473
|
interface ListRepositoriesResponse {
|
|
@@ -757,7 +757,7 @@ declare namespace gapi.client {
|
|
|
757
757
|
disabled?: boolean;
|
|
758
758
|
/** Required. Git commit/tag/branch name at which the repository should be compiled. Must exist in the remote repository. Examples: - a commit SHA: `12ade345` - a tag: `tag1` - a branch name: `branch1` */
|
|
759
759
|
gitCommitish?: string;
|
|
760
|
-
/** Output only. All the metadata information that is used internally to serve the resource. For example: timestamps, flags, status fields, etc. The format of this field is a JSON string.
|
|
760
|
+
/** Output only. All the metadata information that is used internally to serve the resource. For example: timestamps, flags, status fields, etc. The format of this field is a JSON string. */
|
|
761
761
|
internalMetadata?: string;
|
|
762
762
|
/** Identifier. The release config's name. */
|
|
763
763
|
name?: string;
|
|
@@ -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;
|
|
@@ -1685,7 +1717,7 @@ declare namespace gapi.client {
|
|
|
1685
1717
|
fields?: string;
|
|
1686
1718
|
/** 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. */
|
|
1687
1719
|
key?: string;
|
|
1688
|
-
/** Required. The compilation result's name.
|
|
1720
|
+
/** Required. The compilation result's name. */
|
|
1689
1721
|
name: string;
|
|
1690
1722
|
/** OAuth 2.0 token for the current user. */
|
|
1691
1723
|
oauth_token?: string;
|
|
@@ -1710,7 +1742,7 @@ declare namespace gapi.client {
|
|
|
1710
1742
|
callback?: string;
|
|
1711
1743
|
/** Selector specifying which fields to include in a partial response. */
|
|
1712
1744
|
fields?: string;
|
|
1713
|
-
/** Optional. Filter for the returned list.
|
|
1745
|
+
/** Optional. Filter for the returned list. */
|
|
1714
1746
|
filter?: string;
|
|
1715
1747
|
/** 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. */
|
|
1716
1748
|
key?: string;
|
|
@@ -1790,7 +1822,7 @@ declare namespace gapi.client {
|
|
|
1790
1822
|
prettyPrint?: boolean;
|
|
1791
1823
|
/** 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. */
|
|
1792
1824
|
quotaUser?: string;
|
|
1793
|
-
/** Required. The ID to use for the release config, which will become the final component of the release config's resource name.
|
|
1825
|
+
/** Required. The ID to use for the release config, which will become the final component of the release config's resource name. */
|
|
1794
1826
|
releaseConfigId?: string;
|
|
1795
1827
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1796
1828
|
upload_protocol?: string;
|
|
@@ -1821,7 +1853,7 @@ declare namespace gapi.client {
|
|
|
1821
1853
|
prettyPrint?: boolean;
|
|
1822
1854
|
/** 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. */
|
|
1823
1855
|
quotaUser?: string;
|
|
1824
|
-
/** Required. The ID to use for the release config, which will become the final component of the release config's resource name.
|
|
1856
|
+
/** Required. The ID to use for the release config, which will become the final component of the release config's resource name. */
|
|
1825
1857
|
releaseConfigId?: string;
|
|
1826
1858
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1827
1859
|
upload_protocol?: string;
|
|
@@ -1844,7 +1876,7 @@ declare namespace gapi.client {
|
|
|
1844
1876
|
fields?: string;
|
|
1845
1877
|
/** 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. */
|
|
1846
1878
|
key?: string;
|
|
1847
|
-
/** Required. The release config's name.
|
|
1879
|
+
/** Required. The release config's name. */
|
|
1848
1880
|
name: string;
|
|
1849
1881
|
/** OAuth 2.0 token for the current user. */
|
|
1850
1882
|
oauth_token?: string;
|
|
@@ -1871,7 +1903,7 @@ declare namespace gapi.client {
|
|
|
1871
1903
|
fields?: string;
|
|
1872
1904
|
/** 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. */
|
|
1873
1905
|
key?: string;
|
|
1874
|
-
/** Required. The release config's name.
|
|
1906
|
+
/** Required. The release config's name. */
|
|
1875
1907
|
name: string;
|
|
1876
1908
|
/** OAuth 2.0 token for the current user. */
|
|
1877
1909
|
oauth_token?: string;
|
|
@@ -1902,7 +1934,7 @@ declare namespace gapi.client {
|
|
|
1902
1934
|
oauth_token?: string;
|
|
1903
1935
|
/** Optional. Maximum number of release configs to return. The server may return fewer items than requested. If unspecified, the server will pick an appropriate default. */
|
|
1904
1936
|
pageSize?: number;
|
|
1905
|
-
/** Optional. Page token received from a previous `ListReleaseConfigs` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListReleaseConfigs`, with the exception of `page_size`, must match the call that provided the page token.
|
|
1937
|
+
/** Optional. Page token received from a previous `ListReleaseConfigs` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListReleaseConfigs`, with the exception of `page_size`, must match the call that provided the page token. */
|
|
1906
1938
|
pageToken?: string;
|
|
1907
1939
|
/** Required. The repository in which to list release configs. Must be in the format `projects/*/locations/*/repositories/*`. */
|
|
1908
1940
|
parent: string;
|
|
@@ -3671,7 +3703,7 @@ declare namespace gapi.client {
|
|
|
3671
3703
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3672
3704
|
uploadType?: string;
|
|
3673
3705
|
}): Request<{}>;
|
|
3674
|
-
/** Deletes a single
|
|
3706
|
+
/** Deletes a single repository asynchronously. */
|
|
3675
3707
|
deleteLongRunning(request: {
|
|
3676
3708
|
/** V1 error format. */
|
|
3677
3709
|
'$.xgafv'?: '1' | '2';
|
|
@@ -4453,7 +4485,7 @@ declare namespace gapi.client {
|
|
|
4453
4485
|
oauth_token?: string;
|
|
4454
4486
|
/** Optional. Field to additionally sort results by. Supported keywords: `display_name` (default), `create_time`, `last_modified_time`. Examples: * `orderBy="display_name"` * `orderBy="display_name desc"` */
|
|
4455
4487
|
orderBy?: string;
|
|
4456
|
-
/** Optional. Maximum number of TeamFolders to return. The server may return fewer items than requested. If unspecified, the server will pick a default of page_size = 50. */
|
|
4488
|
+
/** Optional. Maximum number of `TeamFolders` to return. The server may return fewer items than requested. If unspecified, the server will pick a default of `page_size` = 50. */
|
|
4457
4489
|
pageSize?: number;
|
|
4458
4490
|
/** Optional. Page token received from a previous `SearchTeamFolders` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `SearchTeamFolders`, with the exception of `page_size`, must match the call that provided the page token. */
|
|
4459
4491
|
pageToken?: string;
|