@maxim_mazurok/gapi.client.dataform-v1beta1 0.1.20260304 → 0.2.20260529
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 +512 -277
- package/package.json +1 -1
- package/readme.md +17 -0
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: 20260529
|
|
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. LINT.ThenChange(//depot/google3/google/cloud/dataform/v2main/data_pipelines.proto:CompilationError) */
|
|
166
166
|
actionTarget?: Target;
|
|
167
167
|
/** Output only. The error's top level message. */
|
|
168
168
|
message?: string;
|
|
@@ -221,7 +221,12 @@ declare namespace gapi.client {
|
|
|
221
221
|
}
|
|
222
222
|
interface ComputeRepositoryAccessTokenStatusResponse {
|
|
223
223
|
/** Indicates the status of the Git access token. */
|
|
224
|
-
tokenStatus?:
|
|
224
|
+
tokenStatus?:
|
|
225
|
+
| 'TOKEN_STATUS_UNSPECIFIED'
|
|
226
|
+
| 'NOT_FOUND'
|
|
227
|
+
| 'INVALID'
|
|
228
|
+
| 'VALID'
|
|
229
|
+
| 'PERMISSION_DENIED';
|
|
225
230
|
}
|
|
226
231
|
interface Config {
|
|
227
232
|
/** Optional. The default KMS key that is used if no encryption key is provided when a repository is created. */
|
|
@@ -262,11 +267,25 @@ declare namespace gapi.client {
|
|
|
262
267
|
relationDescriptor?: RelationDescriptor;
|
|
263
268
|
}
|
|
264
269
|
interface DeleteFile {}
|
|
270
|
+
interface DeleteFolderTreeRequest {
|
|
271
|
+
/** Optional. If `false` (default): The operation will fail if any Repository within the folder hierarchy has associated Release Configs or Workflow Configs. If `true`: The operation will attempt to delete everything, including any Release Configs and Workflow Configs linked to Repositories within the folder hierarchy. This permanently removes schedules and resources. */
|
|
272
|
+
force?: boolean;
|
|
273
|
+
}
|
|
274
|
+
interface DeleteRepositoryLongRunningRequest {
|
|
275
|
+
/** Optional. If set to true, child resources of this repository (compilation results and workflow invocations) will also be deleted. Otherwise, the request will only succeed if the repository has no child resources. **Note:** *This flag doesn't support deletion of workspaces, release configs or workflow configs. If any of such resources exists in the repository, the request will fail.* */
|
|
276
|
+
force?: boolean;
|
|
277
|
+
}
|
|
278
|
+
interface DeleteTeamFolderTreeRequest {
|
|
279
|
+
/** Optional. If `false` (default): The operation will fail if any Repository within the folder hierarchy has associated Release Configs or Workflow Configs. If `true`: The operation will attempt to delete everything, including any Release Configs and Workflow Configs linked to Repositories within the folder hierarchy. This permanently removes schedules and resources. */
|
|
280
|
+
force?: boolean;
|
|
281
|
+
}
|
|
265
282
|
interface DirectoryEntry {
|
|
266
|
-
/** A child directory in the directory. */
|
|
283
|
+
/** A child directory in the directory. The path is returned including the full folder structure from the root. */
|
|
267
284
|
directory?: string;
|
|
268
|
-
/** A file in the directory. */
|
|
285
|
+
/** A file in the directory. The path is returned including the full folder structure from the root. */
|
|
269
286
|
file?: string;
|
|
287
|
+
/** Entry with metadata. */
|
|
288
|
+
metadata?: FilesystemEntryMetadata;
|
|
270
289
|
}
|
|
271
290
|
interface DirectorySearchResult {
|
|
272
291
|
/** File system path relative to the workspace root. */
|
|
@@ -323,8 +342,14 @@ declare namespace gapi.client {
|
|
|
323
342
|
/** File system path relative to the workspace root. */
|
|
324
343
|
path?: string;
|
|
325
344
|
}
|
|
345
|
+
interface FilesystemEntryMetadata {
|
|
346
|
+
/** Output only. Provides the size of the entry in bytes. For directories, this will be 0. */
|
|
347
|
+
sizeBytes?: string;
|
|
348
|
+
/** Output only. Represents the time of the last modification of the entry. */
|
|
349
|
+
updateTime?: string;
|
|
350
|
+
}
|
|
326
351
|
interface Folder {
|
|
327
|
-
/** Optional. The containing Folder resource name. This should take the format: projects/{project}/locations/{location}/folders/{folder}, projects/{project}/locations/{location}/teamFolders/{teamFolder}, or just
|
|
352
|
+
/** Optional. The containing Folder resource name. This should take the format: projects/{project}/locations/{location}/folders/{folder}, projects/{project}/locations/{location}/teamFolders/{teamFolder}, or just "" if this is a root Folder. This field can only be updated through MoveFolder. */
|
|
328
353
|
containingFolder?: string;
|
|
329
354
|
/** Output only. The timestamp of when the Folder was created. */
|
|
330
355
|
createTime?: string;
|
|
@@ -350,12 +375,20 @@ declare namespace gapi.client {
|
|
|
350
375
|
interface GitRemoteSettings {
|
|
351
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/*`. */
|
|
352
377
|
authenticationTokenSecretVersion?: string;
|
|
353
|
-
/**
|
|
378
|
+
/** Optional. The Git remote's default branch name. If not set `main` will be used. */
|
|
354
379
|
defaultBranch?: string;
|
|
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
|
+
effectiveDefaultBranch?: string;
|
|
382
|
+
/** Optional. Resource name for the GitRepositoryLink used for machine credentials. Must be in the format `projects/*/locations/*/connections/*/gitRepositoryLinks/*` */
|
|
383
|
+
gitRepositoryLink?: string;
|
|
355
384
|
/** Optional. Authentication fields for remote uris using SSH protocol. */
|
|
356
385
|
sshAuthenticationConfig?: SshAuthenticationConfig;
|
|
357
386
|
/** Output only. Deprecated: The field does not contain any token status information. Instead use https://cloud.google.com/dataform/reference/rest/v1beta1/projects.locations.repositories/computeAccessTokenStatus */
|
|
358
|
-
tokenStatus?:
|
|
387
|
+
tokenStatus?:
|
|
388
|
+
| 'TOKEN_STATUS_UNSPECIFIED'
|
|
389
|
+
| 'NOT_FOUND'
|
|
390
|
+
| 'INVALID'
|
|
391
|
+
| 'VALID';
|
|
359
392
|
/** Required. The Git remote's URL. */
|
|
360
393
|
url?: string;
|
|
361
394
|
}
|
|
@@ -399,7 +432,7 @@ declare namespace gapi.client {
|
|
|
399
432
|
/** Optional. The set of action identifiers to include. */
|
|
400
433
|
includedTargets?: Target[];
|
|
401
434
|
/** Optional. Specifies the priority for query execution in BigQuery. More information can be found at https://cloud.google.com/bigquery/docs/running-queries#queries. */
|
|
402
|
-
queryPriority?:
|
|
435
|
+
queryPriority?: 'QUERY_PRIORITY_UNSPECIFIED' | 'INTERACTIVE' | 'BATCH';
|
|
403
436
|
/** Optional. The service account to run workflow invocations under. */
|
|
404
437
|
serviceAccount?: string;
|
|
405
438
|
/** Optional. When set to true, transitive dependencies of included actions will be executed. */
|
|
@@ -412,7 +445,7 @@ declare namespace gapi.client {
|
|
|
412
445
|
compilationResults?: CompilationResult[];
|
|
413
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. */
|
|
414
447
|
nextPageToken?: string;
|
|
415
|
-
/** Locations which could not be reached. */
|
|
448
|
+
/** Locations which could not be reached. LINT.ThenChange(//depot/google3/google/cloud/dataform/v2main/data_pipelines.proto:ListCompilationResultsResponse) */
|
|
416
449
|
unreachable?: string[];
|
|
417
450
|
}
|
|
418
451
|
interface ListLocationsResponse {
|
|
@@ -434,7 +467,7 @@ declare namespace gapi.client {
|
|
|
434
467
|
nextPageToken?: string;
|
|
435
468
|
/** List of release configs. */
|
|
436
469
|
releaseConfigs?: ReleaseConfig[];
|
|
437
|
-
/** Locations which could not be reached. */
|
|
470
|
+
/** Locations which could not be reached. LINT.ThenChange(//depot/google3/google/cloud/dataform/v2main/data_pipelines.proto:ListReleaseConfigsResponse) */
|
|
438
471
|
unreachable?: string[];
|
|
439
472
|
}
|
|
440
473
|
interface ListRepositoriesResponse {
|
|
@@ -531,7 +564,7 @@ declare namespace gapi.client {
|
|
|
531
564
|
interface NotebookAction {
|
|
532
565
|
/** Output only. The code contents of a Notebook to be run. */
|
|
533
566
|
contents?: string;
|
|
534
|
-
/** Output only. The ID of the
|
|
567
|
+
/** Output only. The ID of the Gemini Enterprise Agent Platform job that executed the notebook in contents and also the ID used for the outputs created in Google Cloud Storage buckets. Only set once the job has started to run. */
|
|
535
568
|
jobId?: string;
|
|
536
569
|
}
|
|
537
570
|
interface NotebookRuntimeOptions {
|
|
@@ -676,7 +709,7 @@ declare namespace gapi.client {
|
|
|
676
709
|
/** Whether this action is disabled (i.e. should not be run). */
|
|
677
710
|
disabled?: boolean;
|
|
678
711
|
/** Optional. The file format for the BigQuery table. */
|
|
679
|
-
fileFormat?:
|
|
712
|
+
fileFormat?: 'FILE_FORMAT_UNSPECIFIED' | 'PARQUET';
|
|
680
713
|
/** Configures `INCREMENTAL_TABLE` settings for this relation. Only set if `relation_type` is `INCREMENTAL_TABLE`. */
|
|
681
714
|
incrementalTableConfig?: IncrementalTableConfig;
|
|
682
715
|
/** Sets the partition expiration in days. */
|
|
@@ -690,7 +723,12 @@ declare namespace gapi.client {
|
|
|
690
723
|
/** Descriptor for the relation and its columns. */
|
|
691
724
|
relationDescriptor?: RelationDescriptor;
|
|
692
725
|
/** The type of this relation. */
|
|
693
|
-
relationType?:
|
|
726
|
+
relationType?:
|
|
727
|
+
| 'RELATION_TYPE_UNSPECIFIED'
|
|
728
|
+
| 'TABLE'
|
|
729
|
+
| 'VIEW'
|
|
730
|
+
| 'INCREMENTAL_TABLE'
|
|
731
|
+
| 'MATERIALIZED_VIEW';
|
|
694
732
|
/** Specifies whether queries on this table must include a predicate filter that filters on the partitioning column. */
|
|
695
733
|
requirePartitionFilter?: boolean;
|
|
696
734
|
/** The SELECT query which returns rows which this relation should contain. */
|
|
@@ -698,7 +736,7 @@ declare namespace gapi.client {
|
|
|
698
736
|
/** Optional. The fully qualified location prefix of the external folder where table data is stored. The URI should be in the format `gs://bucket/path_to_table/`. */
|
|
699
737
|
storageUri?: string;
|
|
700
738
|
/** Optional. The table format for the BigQuery table. */
|
|
701
|
-
tableFormat?:
|
|
739
|
+
tableFormat?: 'TABLE_FORMAT_UNSPECIFIED' | 'ICEBERG';
|
|
702
740
|
/** Arbitrary, user-defined tags on this action. */
|
|
703
741
|
tags?: string[];
|
|
704
742
|
}
|
|
@@ -719,7 +757,7 @@ declare namespace gapi.client {
|
|
|
719
757
|
disabled?: boolean;
|
|
720
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` */
|
|
721
759
|
gitCommitish?: string;
|
|
722
|
-
/** 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. LINT.ThenChange(//depot/google3/google/cloud/dataform/v2main/data_pipelines.proto:ReleaseConfig) */
|
|
723
761
|
internalMetadata?: string;
|
|
724
762
|
/** Identifier. The release config's name. */
|
|
725
763
|
name?: string;
|
|
@@ -840,7 +878,7 @@ declare namespace gapi.client {
|
|
|
840
878
|
/** The status code, which should be an enum value of google.rpc.Code. */
|
|
841
879
|
code?: number;
|
|
842
880
|
/** A list of messages that carry the error details. There is a common set of message types for APIs to use. */
|
|
843
|
-
details?:
|
|
881
|
+
details?: {[P in string]: any}[];
|
|
844
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. */
|
|
845
883
|
message?: string;
|
|
846
884
|
}
|
|
@@ -888,7 +926,12 @@ declare namespace gapi.client {
|
|
|
888
926
|
/** The file's full path including filename, relative to the workspace root. */
|
|
889
927
|
path?: string;
|
|
890
928
|
/** Output only. Indicates the status of the file. */
|
|
891
|
-
state?:
|
|
929
|
+
state?:
|
|
930
|
+
| 'STATE_UNSPECIFIED'
|
|
931
|
+
| 'ADDED'
|
|
932
|
+
| 'DELETED'
|
|
933
|
+
| 'MODIFIED'
|
|
934
|
+
| 'HAS_CONFLICTS';
|
|
892
935
|
}
|
|
893
936
|
interface WorkflowConfig {
|
|
894
937
|
/** Output only. The timestamp of when the WorkflowConfig was created. */
|
|
@@ -930,7 +973,13 @@ declare namespace gapi.client {
|
|
|
930
973
|
/** Output only. The resolved compilation result that was used to create this invocation. Will be in the format `projects/*/locations/*/repositories/*/compilationResults/*`. */
|
|
931
974
|
resolvedCompilationResult?: string;
|
|
932
975
|
/** Output only. This workflow invocation's current state. */
|
|
933
|
-
state?:
|
|
976
|
+
state?:
|
|
977
|
+
| 'STATE_UNSPECIFIED'
|
|
978
|
+
| 'RUNNING'
|
|
979
|
+
| 'SUCCEEDED'
|
|
980
|
+
| 'CANCELLED'
|
|
981
|
+
| 'FAILED'
|
|
982
|
+
| 'CANCELING';
|
|
934
983
|
/** Immutable. The name of the workflow config to invoke. Must be in the format `projects/*/locations/*/repositories/*/workflowConfigs/*`. */
|
|
935
984
|
workflowConfig?: string;
|
|
936
985
|
}
|
|
@@ -950,7 +999,14 @@ declare namespace gapi.client {
|
|
|
950
999
|
/** Output only. The workflow action's notebook action details. */
|
|
951
1000
|
notebookAction?: NotebookAction;
|
|
952
1001
|
/** Output only. This action's current state. */
|
|
953
|
-
state?:
|
|
1002
|
+
state?:
|
|
1003
|
+
| 'PENDING'
|
|
1004
|
+
| 'RUNNING'
|
|
1005
|
+
| 'SKIPPED'
|
|
1006
|
+
| 'DISABLED'
|
|
1007
|
+
| 'SUCCEEDED'
|
|
1008
|
+
| 'CANCELLED'
|
|
1009
|
+
| 'FAILED';
|
|
954
1010
|
/** Output only. This action's identifier. Unique within the workflow invocation. */
|
|
955
1011
|
target?: Target;
|
|
956
1012
|
}
|
|
@@ -991,16 +1047,16 @@ declare namespace gapi.client {
|
|
|
991
1047
|
/** Creates a new Folder in a given project and location. */
|
|
992
1048
|
create(request: {
|
|
993
1049
|
/** V1 error format. */
|
|
994
|
-
'$.xgafv'?:
|
|
1050
|
+
'$.xgafv'?: '1' | '2';
|
|
995
1051
|
/** OAuth access token. */
|
|
996
1052
|
access_token?: string;
|
|
997
1053
|
/** Data format for response. */
|
|
998
|
-
alt?:
|
|
1054
|
+
alt?: 'json' | 'media' | 'proto';
|
|
999
1055
|
/** JSONP */
|
|
1000
1056
|
callback?: string;
|
|
1001
1057
|
/** Selector specifying which fields to include in a partial response. */
|
|
1002
1058
|
fields?: string;
|
|
1003
|
-
/** The ID to use for the Folder, which will become the final component of the Folder's resource name. */
|
|
1059
|
+
/** Deprecated: This field is not used. The resource name is generated automatically. The ID to use for the Folder, which will become the final component of the Folder's resource name. */
|
|
1004
1060
|
folderId?: string;
|
|
1005
1061
|
/** 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. */
|
|
1006
1062
|
key?: string;
|
|
@@ -1022,16 +1078,16 @@ declare namespace gapi.client {
|
|
|
1022
1078
|
create(
|
|
1023
1079
|
request: {
|
|
1024
1080
|
/** V1 error format. */
|
|
1025
|
-
'$.xgafv'?:
|
|
1081
|
+
'$.xgafv'?: '1' | '2';
|
|
1026
1082
|
/** OAuth access token. */
|
|
1027
1083
|
access_token?: string;
|
|
1028
1084
|
/** Data format for response. */
|
|
1029
|
-
alt?:
|
|
1085
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1030
1086
|
/** JSONP */
|
|
1031
1087
|
callback?: string;
|
|
1032
1088
|
/** Selector specifying which fields to include in a partial response. */
|
|
1033
1089
|
fields?: string;
|
|
1034
|
-
/** The ID to use for the Folder, which will become the final component of the Folder's resource name. */
|
|
1090
|
+
/** Deprecated: This field is not used. The resource name is generated automatically. The ID to use for the Folder, which will become the final component of the Folder's resource name. */
|
|
1035
1091
|
folderId?: string;
|
|
1036
1092
|
/** 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. */
|
|
1037
1093
|
key?: string;
|
|
@@ -1053,11 +1109,11 @@ declare namespace gapi.client {
|
|
|
1053
1109
|
/** Deletes a single Folder. */
|
|
1054
1110
|
delete(request?: {
|
|
1055
1111
|
/** V1 error format. */
|
|
1056
|
-
'$.xgafv'?:
|
|
1112
|
+
'$.xgafv'?: '1' | '2';
|
|
1057
1113
|
/** OAuth access token. */
|
|
1058
1114
|
access_token?: string;
|
|
1059
1115
|
/** Data format for response. */
|
|
1060
|
-
alt?:
|
|
1116
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1061
1117
|
/** JSONP */
|
|
1062
1118
|
callback?: string;
|
|
1063
1119
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1077,14 +1133,72 @@ declare namespace gapi.client {
|
|
|
1077
1133
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1078
1134
|
uploadType?: string;
|
|
1079
1135
|
}): Request<{}>;
|
|
1136
|
+
/** Deletes a Folder with its contents (Folders, Repositories, Workspaces, ReleaseConfigs, and WorkflowConfigs). */
|
|
1137
|
+
deleteTree(request: {
|
|
1138
|
+
/** V1 error format. */
|
|
1139
|
+
'$.xgafv'?: '1' | '2';
|
|
1140
|
+
/** OAuth access token. */
|
|
1141
|
+
access_token?: string;
|
|
1142
|
+
/** Data format for response. */
|
|
1143
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1144
|
+
/** JSONP */
|
|
1145
|
+
callback?: string;
|
|
1146
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1147
|
+
fields?: string;
|
|
1148
|
+
/** 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. */
|
|
1149
|
+
key?: string;
|
|
1150
|
+
/** Required. The Folder's name. Format: projects/{project}/locations/{location}/folders/{folder} */
|
|
1151
|
+
name: string;
|
|
1152
|
+
/** OAuth 2.0 token for the current user. */
|
|
1153
|
+
oauth_token?: string;
|
|
1154
|
+
/** Returns response with indentations and line breaks. */
|
|
1155
|
+
prettyPrint?: boolean;
|
|
1156
|
+
/** 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. */
|
|
1157
|
+
quotaUser?: string;
|
|
1158
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1159
|
+
upload_protocol?: string;
|
|
1160
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1161
|
+
uploadType?: string;
|
|
1162
|
+
/** Request body */
|
|
1163
|
+
resource: DeleteFolderTreeRequest;
|
|
1164
|
+
}): Request<Operation>;
|
|
1165
|
+
deleteTree(
|
|
1166
|
+
request: {
|
|
1167
|
+
/** V1 error format. */
|
|
1168
|
+
'$.xgafv'?: '1' | '2';
|
|
1169
|
+
/** OAuth access token. */
|
|
1170
|
+
access_token?: string;
|
|
1171
|
+
/** Data format for response. */
|
|
1172
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1173
|
+
/** JSONP */
|
|
1174
|
+
callback?: string;
|
|
1175
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1176
|
+
fields?: string;
|
|
1177
|
+
/** 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. */
|
|
1178
|
+
key?: string;
|
|
1179
|
+
/** Required. The Folder's name. Format: projects/{project}/locations/{location}/folders/{folder} */
|
|
1180
|
+
name: string;
|
|
1181
|
+
/** OAuth 2.0 token for the current user. */
|
|
1182
|
+
oauth_token?: string;
|
|
1183
|
+
/** Returns response with indentations and line breaks. */
|
|
1184
|
+
prettyPrint?: boolean;
|
|
1185
|
+
/** 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. */
|
|
1186
|
+
quotaUser?: string;
|
|
1187
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1188
|
+
upload_protocol?: string;
|
|
1189
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1190
|
+
uploadType?: string;
|
|
1191
|
+
},
|
|
1192
|
+
body: DeleteFolderTreeRequest,
|
|
1193
|
+
): Request<Operation>;
|
|
1080
1194
|
/** Fetches a single Folder. */
|
|
1081
1195
|
get(request?: {
|
|
1082
1196
|
/** V1 error format. */
|
|
1083
|
-
'$.xgafv'?:
|
|
1197
|
+
'$.xgafv'?: '1' | '2';
|
|
1084
1198
|
/** OAuth access token. */
|
|
1085
1199
|
access_token?: string;
|
|
1086
1200
|
/** Data format for response. */
|
|
1087
|
-
alt?:
|
|
1201
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1088
1202
|
/** JSONP */
|
|
1089
1203
|
callback?: string;
|
|
1090
1204
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1107,11 +1221,11 @@ declare namespace gapi.client {
|
|
|
1107
1221
|
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
1108
1222
|
getIamPolicy(request?: {
|
|
1109
1223
|
/** V1 error format. */
|
|
1110
|
-
'$.xgafv'?:
|
|
1224
|
+
'$.xgafv'?: '1' | '2';
|
|
1111
1225
|
/** OAuth access token. */
|
|
1112
1226
|
access_token?: string;
|
|
1113
1227
|
/** Data format for response. */
|
|
1114
|
-
alt?:
|
|
1228
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1115
1229
|
/** JSONP */
|
|
1116
1230
|
callback?: string;
|
|
1117
1231
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1136,11 +1250,11 @@ declare namespace gapi.client {
|
|
|
1136
1250
|
/** Moves a Folder to a new Folder, TeamFolder, or the root location. */
|
|
1137
1251
|
move(request: {
|
|
1138
1252
|
/** V1 error format. */
|
|
1139
|
-
'$.xgafv'?:
|
|
1253
|
+
'$.xgafv'?: '1' | '2';
|
|
1140
1254
|
/** OAuth access token. */
|
|
1141
1255
|
access_token?: string;
|
|
1142
1256
|
/** Data format for response. */
|
|
1143
|
-
alt?:
|
|
1257
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1144
1258
|
/** JSONP */
|
|
1145
1259
|
callback?: string;
|
|
1146
1260
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1165,11 +1279,11 @@ declare namespace gapi.client {
|
|
|
1165
1279
|
move(
|
|
1166
1280
|
request: {
|
|
1167
1281
|
/** V1 error format. */
|
|
1168
|
-
'$.xgafv'?:
|
|
1282
|
+
'$.xgafv'?: '1' | '2';
|
|
1169
1283
|
/** OAuth access token. */
|
|
1170
1284
|
access_token?: string;
|
|
1171
1285
|
/** Data format for response. */
|
|
1172
|
-
alt?:
|
|
1286
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1173
1287
|
/** JSONP */
|
|
1174
1288
|
callback?: string;
|
|
1175
1289
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1194,11 +1308,11 @@ declare namespace gapi.client {
|
|
|
1194
1308
|
/** Updates a single Folder. */
|
|
1195
1309
|
patch(request: {
|
|
1196
1310
|
/** V1 error format. */
|
|
1197
|
-
'$.xgafv'?:
|
|
1311
|
+
'$.xgafv'?: '1' | '2';
|
|
1198
1312
|
/** OAuth access token. */
|
|
1199
1313
|
access_token?: string;
|
|
1200
1314
|
/** Data format for response. */
|
|
1201
|
-
alt?:
|
|
1315
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1202
1316
|
/** JSONP */
|
|
1203
1317
|
callback?: string;
|
|
1204
1318
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1225,11 +1339,11 @@ declare namespace gapi.client {
|
|
|
1225
1339
|
patch(
|
|
1226
1340
|
request: {
|
|
1227
1341
|
/** V1 error format. */
|
|
1228
|
-
'$.xgafv'?:
|
|
1342
|
+
'$.xgafv'?: '1' | '2';
|
|
1229
1343
|
/** OAuth access token. */
|
|
1230
1344
|
access_token?: string;
|
|
1231
1345
|
/** Data format for response. */
|
|
1232
|
-
alt?:
|
|
1346
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1233
1347
|
/** JSONP */
|
|
1234
1348
|
callback?: string;
|
|
1235
1349
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1256,24 +1370,24 @@ declare namespace gapi.client {
|
|
|
1256
1370
|
/** Returns the contents of a given Folder. */
|
|
1257
1371
|
queryFolderContents(request?: {
|
|
1258
1372
|
/** V1 error format. */
|
|
1259
|
-
'$.xgafv'?:
|
|
1373
|
+
'$.xgafv'?: '1' | '2';
|
|
1260
1374
|
/** OAuth access token. */
|
|
1261
1375
|
access_token?: string;
|
|
1262
1376
|
/** Data format for response. */
|
|
1263
|
-
alt?:
|
|
1377
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1264
1378
|
/** JSONP */
|
|
1265
1379
|
callback?: string;
|
|
1266
1380
|
/** Selector specifying which fields to include in a partial response. */
|
|
1267
1381
|
fields?: string;
|
|
1268
|
-
/** Optional. Optional filtering for the returned list. Filtering is currently only supported on the `display_name` field. Example:
|
|
1382
|
+
/** Optional. Optional filtering for the returned list. Filtering is currently only supported on the `display_name` field. Example: * `filter="display_name="MyFolder""` */
|
|
1269
1383
|
filter?: string;
|
|
1270
|
-
/** Required.
|
|
1384
|
+
/** Required. Resource name of the Folder to list contents for. Format: projects/*/locations/*/folders/* */
|
|
1271
1385
|
folder: string;
|
|
1272
1386
|
/** 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. */
|
|
1273
1387
|
key?: string;
|
|
1274
1388
|
/** OAuth 2.0 token for the current user. */
|
|
1275
1389
|
oauth_token?: string;
|
|
1276
|
-
/** Optional. Field to additionally sort results by. Will order Folders before Repositories, and then by `order_by` in ascending order. Supported keywords: display_name (default), create_time, last_modified_time. Examples:
|
|
1390
|
+
/** Optional. Field to additionally sort results by. Will order Folders before Repositories, and then by `order_by` in ascending order. Supported keywords: display_name (default), create_time, last_modified_time. Examples: * `orderBy="display_name"` * `orderBy="display_name desc"` */
|
|
1277
1391
|
orderBy?: string;
|
|
1278
1392
|
/** Optional. Maximum number of paths to return. The server may return fewer items than requested. If unspecified, the server will pick an appropriate default. */
|
|
1279
1393
|
pageSize?: number;
|
|
@@ -1292,11 +1406,11 @@ declare namespace gapi.client {
|
|
|
1292
1406
|
setIamPolicy(
|
|
1293
1407
|
request: {
|
|
1294
1408
|
/** V1 error format. */
|
|
1295
|
-
'$.xgafv'?:
|
|
1409
|
+
'$.xgafv'?: '1' | '2';
|
|
1296
1410
|
/** OAuth access token. */
|
|
1297
1411
|
access_token?: string;
|
|
1298
1412
|
/** Data format for response. */
|
|
1299
|
-
alt?:
|
|
1413
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1300
1414
|
/** JSONP */
|
|
1301
1415
|
callback?: string;
|
|
1302
1416
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1322,11 +1436,11 @@ declare namespace gapi.client {
|
|
|
1322
1436
|
testIamPermissions(
|
|
1323
1437
|
request: {
|
|
1324
1438
|
/** V1 error format. */
|
|
1325
|
-
'$.xgafv'?:
|
|
1439
|
+
'$.xgafv'?: '1' | '2';
|
|
1326
1440
|
/** OAuth access token. */
|
|
1327
1441
|
access_token?: string;
|
|
1328
1442
|
/** Data format for response. */
|
|
1329
|
-
alt?:
|
|
1443
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1330
1444
|
/** JSONP */
|
|
1331
1445
|
callback?: string;
|
|
1332
1446
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1353,11 +1467,11 @@ declare namespace gapi.client {
|
|
|
1353
1467
|
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
1354
1468
|
cancel(request: {
|
|
1355
1469
|
/** V1 error format. */
|
|
1356
|
-
'$.xgafv'?:
|
|
1470
|
+
'$.xgafv'?: '1' | '2';
|
|
1357
1471
|
/** OAuth access token. */
|
|
1358
1472
|
access_token?: string;
|
|
1359
1473
|
/** Data format for response. */
|
|
1360
|
-
alt?:
|
|
1474
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1361
1475
|
/** JSONP */
|
|
1362
1476
|
callback?: string;
|
|
1363
1477
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1382,11 +1496,11 @@ declare namespace gapi.client {
|
|
|
1382
1496
|
cancel(
|
|
1383
1497
|
request: {
|
|
1384
1498
|
/** V1 error format. */
|
|
1385
|
-
'$.xgafv'?:
|
|
1499
|
+
'$.xgafv'?: '1' | '2';
|
|
1386
1500
|
/** OAuth access token. */
|
|
1387
1501
|
access_token?: string;
|
|
1388
1502
|
/** Data format for response. */
|
|
1389
|
-
alt?:
|
|
1503
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1390
1504
|
/** JSONP */
|
|
1391
1505
|
callback?: string;
|
|
1392
1506
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1411,11 +1525,11 @@ declare namespace gapi.client {
|
|
|
1411
1525
|
/** Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. */
|
|
1412
1526
|
delete(request?: {
|
|
1413
1527
|
/** V1 error format. */
|
|
1414
|
-
'$.xgafv'?:
|
|
1528
|
+
'$.xgafv'?: '1' | '2';
|
|
1415
1529
|
/** OAuth access token. */
|
|
1416
1530
|
access_token?: string;
|
|
1417
1531
|
/** Data format for response. */
|
|
1418
|
-
alt?:
|
|
1532
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1419
1533
|
/** JSONP */
|
|
1420
1534
|
callback?: string;
|
|
1421
1535
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1438,11 +1552,11 @@ declare namespace gapi.client {
|
|
|
1438
1552
|
/** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
|
|
1439
1553
|
get(request?: {
|
|
1440
1554
|
/** V1 error format. */
|
|
1441
|
-
'$.xgafv'?:
|
|
1555
|
+
'$.xgafv'?: '1' | '2';
|
|
1442
1556
|
/** OAuth access token. */
|
|
1443
1557
|
access_token?: string;
|
|
1444
1558
|
/** Data format for response. */
|
|
1445
|
-
alt?:
|
|
1559
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1446
1560
|
/** JSONP */
|
|
1447
1561
|
callback?: string;
|
|
1448
1562
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1465,11 +1579,11 @@ declare namespace gapi.client {
|
|
|
1465
1579
|
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
1466
1580
|
list(request?: {
|
|
1467
1581
|
/** V1 error format. */
|
|
1468
|
-
'$.xgafv'?:
|
|
1582
|
+
'$.xgafv'?: '1' | '2';
|
|
1469
1583
|
/** OAuth access token. */
|
|
1470
1584
|
access_token?: string;
|
|
1471
1585
|
/** Data format for response. */
|
|
1472
|
-
alt?:
|
|
1586
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1473
1587
|
/** JSONP */
|
|
1474
1588
|
callback?: string;
|
|
1475
1589
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1502,11 +1616,11 @@ declare namespace gapi.client {
|
|
|
1502
1616
|
/** Creates a new CompilationResult in a given project and location. */
|
|
1503
1617
|
create(request: {
|
|
1504
1618
|
/** V1 error format. */
|
|
1505
|
-
'$.xgafv'?:
|
|
1619
|
+
'$.xgafv'?: '1' | '2';
|
|
1506
1620
|
/** OAuth access token. */
|
|
1507
1621
|
access_token?: string;
|
|
1508
1622
|
/** Data format for response. */
|
|
1509
|
-
alt?:
|
|
1623
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1510
1624
|
/** JSONP */
|
|
1511
1625
|
callback?: string;
|
|
1512
1626
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1531,11 +1645,11 @@ declare namespace gapi.client {
|
|
|
1531
1645
|
create(
|
|
1532
1646
|
request: {
|
|
1533
1647
|
/** V1 error format. */
|
|
1534
|
-
'$.xgafv'?:
|
|
1648
|
+
'$.xgafv'?: '1' | '2';
|
|
1535
1649
|
/** OAuth access token. */
|
|
1536
1650
|
access_token?: string;
|
|
1537
1651
|
/** Data format for response. */
|
|
1538
|
-
alt?:
|
|
1652
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1539
1653
|
/** JSONP */
|
|
1540
1654
|
callback?: string;
|
|
1541
1655
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1560,18 +1674,18 @@ declare namespace gapi.client {
|
|
|
1560
1674
|
/** Fetches a single CompilationResult. */
|
|
1561
1675
|
get(request?: {
|
|
1562
1676
|
/** V1 error format. */
|
|
1563
|
-
'$.xgafv'?:
|
|
1677
|
+
'$.xgafv'?: '1' | '2';
|
|
1564
1678
|
/** OAuth access token. */
|
|
1565
1679
|
access_token?: string;
|
|
1566
1680
|
/** Data format for response. */
|
|
1567
|
-
alt?:
|
|
1681
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1568
1682
|
/** JSONP */
|
|
1569
1683
|
callback?: string;
|
|
1570
1684
|
/** Selector specifying which fields to include in a partial response. */
|
|
1571
1685
|
fields?: string;
|
|
1572
1686
|
/** 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. */
|
|
1573
1687
|
key?: string;
|
|
1574
|
-
/** Required. The compilation result's name. */
|
|
1688
|
+
/** Required. The compilation result's name. LINT.ThenChange(//depot/google3/google/cloud/dataform/v2main/data_pipelines.proto:GetCompilationResultRequest) */
|
|
1575
1689
|
name: string;
|
|
1576
1690
|
/** OAuth 2.0 token for the current user. */
|
|
1577
1691
|
oauth_token?: string;
|
|
@@ -1587,16 +1701,16 @@ declare namespace gapi.client {
|
|
|
1587
1701
|
/** Lists CompilationResults in a given Repository. */
|
|
1588
1702
|
list(request?: {
|
|
1589
1703
|
/** V1 error format. */
|
|
1590
|
-
'$.xgafv'?:
|
|
1704
|
+
'$.xgafv'?: '1' | '2';
|
|
1591
1705
|
/** OAuth access token. */
|
|
1592
1706
|
access_token?: string;
|
|
1593
1707
|
/** Data format for response. */
|
|
1594
|
-
alt?:
|
|
1708
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1595
1709
|
/** JSONP */
|
|
1596
1710
|
callback?: string;
|
|
1597
1711
|
/** Selector specifying which fields to include in a partial response. */
|
|
1598
1712
|
fields?: string;
|
|
1599
|
-
/** Optional. Filter for the returned list. */
|
|
1713
|
+
/** Optional. Filter for the returned list. LINT.ThenChange(//depot/google3/google/cloud/dataform/v2main/data_pipelines.proto:ListCompilationResultsRequest) */
|
|
1600
1714
|
filter?: string;
|
|
1601
1715
|
/** 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. */
|
|
1602
1716
|
key?: string;
|
|
@@ -1622,11 +1736,11 @@ declare namespace gapi.client {
|
|
|
1622
1736
|
/** Returns CompilationResultActions in a given CompilationResult. */
|
|
1623
1737
|
query(request?: {
|
|
1624
1738
|
/** V1 error format. */
|
|
1625
|
-
'$.xgafv'?:
|
|
1739
|
+
'$.xgafv'?: '1' | '2';
|
|
1626
1740
|
/** OAuth access token. */
|
|
1627
1741
|
access_token?: string;
|
|
1628
1742
|
/** Data format for response. */
|
|
1629
|
-
alt?:
|
|
1743
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1630
1744
|
/** JSONP */
|
|
1631
1745
|
callback?: string;
|
|
1632
1746
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1657,11 +1771,11 @@ declare namespace gapi.client {
|
|
|
1657
1771
|
/** Creates a new ReleaseConfig in a given Repository. */
|
|
1658
1772
|
create(request: {
|
|
1659
1773
|
/** V1 error format. */
|
|
1660
|
-
'$.xgafv'?:
|
|
1774
|
+
'$.xgafv'?: '1' | '2';
|
|
1661
1775
|
/** OAuth access token. */
|
|
1662
1776
|
access_token?: string;
|
|
1663
1777
|
/** Data format for response. */
|
|
1664
|
-
alt?:
|
|
1778
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1665
1779
|
/** JSONP */
|
|
1666
1780
|
callback?: string;
|
|
1667
1781
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1676,7 +1790,7 @@ declare namespace gapi.client {
|
|
|
1676
1790
|
prettyPrint?: boolean;
|
|
1677
1791
|
/** 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. */
|
|
1678
1792
|
quotaUser?: string;
|
|
1679
|
-
/** Required. The ID to use for the release config, which will become the final component of the release config's resource name. */
|
|
1793
|
+
/** Required. The ID to use for the release config, which will become the final component of the release config's resource name. LINT.ThenChange(//depot/google3/google/cloud/dataform/v2main/data_pipelines.proto:CreateReleaseConfigRequest) */
|
|
1680
1794
|
releaseConfigId?: string;
|
|
1681
1795
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1682
1796
|
upload_protocol?: string;
|
|
@@ -1688,11 +1802,11 @@ declare namespace gapi.client {
|
|
|
1688
1802
|
create(
|
|
1689
1803
|
request: {
|
|
1690
1804
|
/** V1 error format. */
|
|
1691
|
-
'$.xgafv'?:
|
|
1805
|
+
'$.xgafv'?: '1' | '2';
|
|
1692
1806
|
/** OAuth access token. */
|
|
1693
1807
|
access_token?: string;
|
|
1694
1808
|
/** Data format for response. */
|
|
1695
|
-
alt?:
|
|
1809
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1696
1810
|
/** JSONP */
|
|
1697
1811
|
callback?: string;
|
|
1698
1812
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1707,7 +1821,7 @@ declare namespace gapi.client {
|
|
|
1707
1821
|
prettyPrint?: boolean;
|
|
1708
1822
|
/** 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. */
|
|
1709
1823
|
quotaUser?: string;
|
|
1710
|
-
/** Required. The ID to use for the release config, which will become the final component of the release config's resource name. */
|
|
1824
|
+
/** Required. The ID to use for the release config, which will become the final component of the release config's resource name. LINT.ThenChange(//depot/google3/google/cloud/dataform/v2main/data_pipelines.proto:CreateReleaseConfigRequest) */
|
|
1711
1825
|
releaseConfigId?: string;
|
|
1712
1826
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1713
1827
|
upload_protocol?: string;
|
|
@@ -1719,18 +1833,18 @@ declare namespace gapi.client {
|
|
|
1719
1833
|
/** Deletes a single ReleaseConfig. */
|
|
1720
1834
|
delete(request?: {
|
|
1721
1835
|
/** V1 error format. */
|
|
1722
|
-
'$.xgafv'?:
|
|
1836
|
+
'$.xgafv'?: '1' | '2';
|
|
1723
1837
|
/** OAuth access token. */
|
|
1724
1838
|
access_token?: string;
|
|
1725
1839
|
/** Data format for response. */
|
|
1726
|
-
alt?:
|
|
1840
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1727
1841
|
/** JSONP */
|
|
1728
1842
|
callback?: string;
|
|
1729
1843
|
/** Selector specifying which fields to include in a partial response. */
|
|
1730
1844
|
fields?: string;
|
|
1731
1845
|
/** 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. */
|
|
1732
1846
|
key?: string;
|
|
1733
|
-
/** Required. The release config's name. */
|
|
1847
|
+
/** Required. The release config's name. LINT.ThenChange(//depot/google3/google/cloud/dataform/v2main/data_pipelines.proto:DeleteReleaseConfigRequest) */
|
|
1734
1848
|
name: string;
|
|
1735
1849
|
/** OAuth 2.0 token for the current user. */
|
|
1736
1850
|
oauth_token?: string;
|
|
@@ -1746,18 +1860,18 @@ declare namespace gapi.client {
|
|
|
1746
1860
|
/** Fetches a single ReleaseConfig. */
|
|
1747
1861
|
get(request?: {
|
|
1748
1862
|
/** V1 error format. */
|
|
1749
|
-
'$.xgafv'?:
|
|
1863
|
+
'$.xgafv'?: '1' | '2';
|
|
1750
1864
|
/** OAuth access token. */
|
|
1751
1865
|
access_token?: string;
|
|
1752
1866
|
/** Data format for response. */
|
|
1753
|
-
alt?:
|
|
1867
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1754
1868
|
/** JSONP */
|
|
1755
1869
|
callback?: string;
|
|
1756
1870
|
/** Selector specifying which fields to include in a partial response. */
|
|
1757
1871
|
fields?: string;
|
|
1758
1872
|
/** 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. */
|
|
1759
1873
|
key?: string;
|
|
1760
|
-
/** Required. The release config's name. */
|
|
1874
|
+
/** Required. The release config's name. LINT.ThenChange(//depot/google3/google/cloud/dataform/v2main/data_pipelines.proto:GetReleaseConfigRequest) */
|
|
1761
1875
|
name: string;
|
|
1762
1876
|
/** OAuth 2.0 token for the current user. */
|
|
1763
1877
|
oauth_token?: string;
|
|
@@ -1773,11 +1887,11 @@ declare namespace gapi.client {
|
|
|
1773
1887
|
/** Lists ReleaseConfigs in a given Repository. */
|
|
1774
1888
|
list(request?: {
|
|
1775
1889
|
/** V1 error format. */
|
|
1776
|
-
'$.xgafv'?:
|
|
1890
|
+
'$.xgafv'?: '1' | '2';
|
|
1777
1891
|
/** OAuth access token. */
|
|
1778
1892
|
access_token?: string;
|
|
1779
1893
|
/** Data format for response. */
|
|
1780
|
-
alt?:
|
|
1894
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1781
1895
|
/** JSONP */
|
|
1782
1896
|
callback?: string;
|
|
1783
1897
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1788,7 +1902,7 @@ declare namespace gapi.client {
|
|
|
1788
1902
|
oauth_token?: string;
|
|
1789
1903
|
/** 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. */
|
|
1790
1904
|
pageSize?: number;
|
|
1791
|
-
/** 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. */
|
|
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. LINT.ThenChange(//depot/google3/google/cloud/dataform/v2main/data_pipelines.proto:ListReleaseConfigsRequest) */
|
|
1792
1906
|
pageToken?: string;
|
|
1793
1907
|
/** Required. The repository in which to list release configs. Must be in the format `projects/*/locations/*/repositories/*`. */
|
|
1794
1908
|
parent: string;
|
|
@@ -1804,11 +1918,11 @@ declare namespace gapi.client {
|
|
|
1804
1918
|
/** Updates a single ReleaseConfig. **Note:** *This method does not fully implement [AIP/134](https://google.aip.dev/134). The wildcard entry (\*) is treated as a bad request, and when the `field_mask` is omitted, the request is treated as a full update on all modifiable fields.* */
|
|
1805
1919
|
patch(request: {
|
|
1806
1920
|
/** V1 error format. */
|
|
1807
|
-
'$.xgafv'?:
|
|
1921
|
+
'$.xgafv'?: '1' | '2';
|
|
1808
1922
|
/** OAuth access token. */
|
|
1809
1923
|
access_token?: string;
|
|
1810
1924
|
/** Data format for response. */
|
|
1811
|
-
alt?:
|
|
1925
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1812
1926
|
/** JSONP */
|
|
1813
1927
|
callback?: string;
|
|
1814
1928
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1835,11 +1949,11 @@ declare namespace gapi.client {
|
|
|
1835
1949
|
patch(
|
|
1836
1950
|
request: {
|
|
1837
1951
|
/** V1 error format. */
|
|
1838
|
-
'$.xgafv'?:
|
|
1952
|
+
'$.xgafv'?: '1' | '2';
|
|
1839
1953
|
/** OAuth access token. */
|
|
1840
1954
|
access_token?: string;
|
|
1841
1955
|
/** Data format for response. */
|
|
1842
|
-
alt?:
|
|
1956
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1843
1957
|
/** JSONP */
|
|
1844
1958
|
callback?: string;
|
|
1845
1959
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1868,11 +1982,11 @@ declare namespace gapi.client {
|
|
|
1868
1982
|
/** Creates a new WorkflowConfig in a given Repository. */
|
|
1869
1983
|
create(request: {
|
|
1870
1984
|
/** V1 error format. */
|
|
1871
|
-
'$.xgafv'?:
|
|
1985
|
+
'$.xgafv'?: '1' | '2';
|
|
1872
1986
|
/** OAuth access token. */
|
|
1873
1987
|
access_token?: string;
|
|
1874
1988
|
/** Data format for response. */
|
|
1875
|
-
alt?:
|
|
1989
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1876
1990
|
/** JSONP */
|
|
1877
1991
|
callback?: string;
|
|
1878
1992
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1899,11 +2013,11 @@ declare namespace gapi.client {
|
|
|
1899
2013
|
create(
|
|
1900
2014
|
request: {
|
|
1901
2015
|
/** V1 error format. */
|
|
1902
|
-
'$.xgafv'?:
|
|
2016
|
+
'$.xgafv'?: '1' | '2';
|
|
1903
2017
|
/** OAuth access token. */
|
|
1904
2018
|
access_token?: string;
|
|
1905
2019
|
/** Data format for response. */
|
|
1906
|
-
alt?:
|
|
2020
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1907
2021
|
/** JSONP */
|
|
1908
2022
|
callback?: string;
|
|
1909
2023
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1930,11 +2044,11 @@ declare namespace gapi.client {
|
|
|
1930
2044
|
/** Deletes a single WorkflowConfig. */
|
|
1931
2045
|
delete(request?: {
|
|
1932
2046
|
/** V1 error format. */
|
|
1933
|
-
'$.xgafv'?:
|
|
2047
|
+
'$.xgafv'?: '1' | '2';
|
|
1934
2048
|
/** OAuth access token. */
|
|
1935
2049
|
access_token?: string;
|
|
1936
2050
|
/** Data format for response. */
|
|
1937
|
-
alt?:
|
|
2051
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1938
2052
|
/** JSONP */
|
|
1939
2053
|
callback?: string;
|
|
1940
2054
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1957,11 +2071,11 @@ declare namespace gapi.client {
|
|
|
1957
2071
|
/** Fetches a single WorkflowConfig. */
|
|
1958
2072
|
get(request?: {
|
|
1959
2073
|
/** V1 error format. */
|
|
1960
|
-
'$.xgafv'?:
|
|
2074
|
+
'$.xgafv'?: '1' | '2';
|
|
1961
2075
|
/** OAuth access token. */
|
|
1962
2076
|
access_token?: string;
|
|
1963
2077
|
/** Data format for response. */
|
|
1964
|
-
alt?:
|
|
2078
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1965
2079
|
/** JSONP */
|
|
1966
2080
|
callback?: string;
|
|
1967
2081
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1984,11 +2098,11 @@ declare namespace gapi.client {
|
|
|
1984
2098
|
/** Lists WorkflowConfigs in a given Repository. */
|
|
1985
2099
|
list(request?: {
|
|
1986
2100
|
/** V1 error format. */
|
|
1987
|
-
'$.xgafv'?:
|
|
2101
|
+
'$.xgafv'?: '1' | '2';
|
|
1988
2102
|
/** OAuth access token. */
|
|
1989
2103
|
access_token?: string;
|
|
1990
2104
|
/** Data format for response. */
|
|
1991
|
-
alt?:
|
|
2105
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1992
2106
|
/** JSONP */
|
|
1993
2107
|
callback?: string;
|
|
1994
2108
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2015,11 +2129,11 @@ declare namespace gapi.client {
|
|
|
2015
2129
|
/** Updates a single WorkflowConfig. **Note:** *This method does not fully implement [AIP/134](https://google.aip.dev/134). The wildcard entry (\*) is treated as a bad request, and when the `field_mask` is omitted, the request is treated as a full update on all modifiable fields.* */
|
|
2016
2130
|
patch(request: {
|
|
2017
2131
|
/** V1 error format. */
|
|
2018
|
-
'$.xgafv'?:
|
|
2132
|
+
'$.xgafv'?: '1' | '2';
|
|
2019
2133
|
/** OAuth access token. */
|
|
2020
2134
|
access_token?: string;
|
|
2021
2135
|
/** Data format for response. */
|
|
2022
|
-
alt?:
|
|
2136
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2023
2137
|
/** JSONP */
|
|
2024
2138
|
callback?: string;
|
|
2025
2139
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2046,11 +2160,11 @@ declare namespace gapi.client {
|
|
|
2046
2160
|
patch(
|
|
2047
2161
|
request: {
|
|
2048
2162
|
/** V1 error format. */
|
|
2049
|
-
'$.xgafv'?:
|
|
2163
|
+
'$.xgafv'?: '1' | '2';
|
|
2050
2164
|
/** OAuth access token. */
|
|
2051
2165
|
access_token?: string;
|
|
2052
2166
|
/** Data format for response. */
|
|
2053
|
-
alt?:
|
|
2167
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2054
2168
|
/** JSONP */
|
|
2055
2169
|
callback?: string;
|
|
2056
2170
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2079,11 +2193,11 @@ declare namespace gapi.client {
|
|
|
2079
2193
|
/** Requests cancellation of a running WorkflowInvocation. */
|
|
2080
2194
|
cancel(request: {
|
|
2081
2195
|
/** V1 error format. */
|
|
2082
|
-
'$.xgafv'?:
|
|
2196
|
+
'$.xgafv'?: '1' | '2';
|
|
2083
2197
|
/** OAuth access token. */
|
|
2084
2198
|
access_token?: string;
|
|
2085
2199
|
/** Data format for response. */
|
|
2086
|
-
alt?:
|
|
2200
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2087
2201
|
/** JSONP */
|
|
2088
2202
|
callback?: string;
|
|
2089
2203
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2108,11 +2222,11 @@ declare namespace gapi.client {
|
|
|
2108
2222
|
cancel(
|
|
2109
2223
|
request: {
|
|
2110
2224
|
/** V1 error format. */
|
|
2111
|
-
'$.xgafv'?:
|
|
2225
|
+
'$.xgafv'?: '1' | '2';
|
|
2112
2226
|
/** OAuth access token. */
|
|
2113
2227
|
access_token?: string;
|
|
2114
2228
|
/** Data format for response. */
|
|
2115
|
-
alt?:
|
|
2229
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2116
2230
|
/** JSONP */
|
|
2117
2231
|
callback?: string;
|
|
2118
2232
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2137,11 +2251,11 @@ declare namespace gapi.client {
|
|
|
2137
2251
|
/** Creates a new WorkflowInvocation in a given Repository. */
|
|
2138
2252
|
create(request: {
|
|
2139
2253
|
/** V1 error format. */
|
|
2140
|
-
'$.xgafv'?:
|
|
2254
|
+
'$.xgafv'?: '1' | '2';
|
|
2141
2255
|
/** OAuth access token. */
|
|
2142
2256
|
access_token?: string;
|
|
2143
2257
|
/** Data format for response. */
|
|
2144
|
-
alt?:
|
|
2258
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2145
2259
|
/** JSONP */
|
|
2146
2260
|
callback?: string;
|
|
2147
2261
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2166,11 +2280,11 @@ declare namespace gapi.client {
|
|
|
2166
2280
|
create(
|
|
2167
2281
|
request: {
|
|
2168
2282
|
/** V1 error format. */
|
|
2169
|
-
'$.xgafv'?:
|
|
2283
|
+
'$.xgafv'?: '1' | '2';
|
|
2170
2284
|
/** OAuth access token. */
|
|
2171
2285
|
access_token?: string;
|
|
2172
2286
|
/** Data format for response. */
|
|
2173
|
-
alt?:
|
|
2287
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2174
2288
|
/** JSONP */
|
|
2175
2289
|
callback?: string;
|
|
2176
2290
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2195,11 +2309,11 @@ declare namespace gapi.client {
|
|
|
2195
2309
|
/** Deletes a single WorkflowInvocation. */
|
|
2196
2310
|
delete(request?: {
|
|
2197
2311
|
/** V1 error format. */
|
|
2198
|
-
'$.xgafv'?:
|
|
2312
|
+
'$.xgafv'?: '1' | '2';
|
|
2199
2313
|
/** OAuth access token. */
|
|
2200
2314
|
access_token?: string;
|
|
2201
2315
|
/** Data format for response. */
|
|
2202
|
-
alt?:
|
|
2316
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2203
2317
|
/** JSONP */
|
|
2204
2318
|
callback?: string;
|
|
2205
2319
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2222,11 +2336,11 @@ declare namespace gapi.client {
|
|
|
2222
2336
|
/** Fetches a single WorkflowInvocation. */
|
|
2223
2337
|
get(request?: {
|
|
2224
2338
|
/** V1 error format. */
|
|
2225
|
-
'$.xgafv'?:
|
|
2339
|
+
'$.xgafv'?: '1' | '2';
|
|
2226
2340
|
/** OAuth access token. */
|
|
2227
2341
|
access_token?: string;
|
|
2228
2342
|
/** Data format for response. */
|
|
2229
|
-
alt?:
|
|
2343
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2230
2344
|
/** JSONP */
|
|
2231
2345
|
callback?: string;
|
|
2232
2346
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2249,11 +2363,11 @@ declare namespace gapi.client {
|
|
|
2249
2363
|
/** Lists WorkflowInvocations in a given Repository. */
|
|
2250
2364
|
list(request?: {
|
|
2251
2365
|
/** V1 error format. */
|
|
2252
|
-
'$.xgafv'?:
|
|
2366
|
+
'$.xgafv'?: '1' | '2';
|
|
2253
2367
|
/** OAuth access token. */
|
|
2254
2368
|
access_token?: string;
|
|
2255
2369
|
/** Data format for response. */
|
|
2256
|
-
alt?:
|
|
2370
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2257
2371
|
/** JSONP */
|
|
2258
2372
|
callback?: string;
|
|
2259
2373
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2284,11 +2398,11 @@ declare namespace gapi.client {
|
|
|
2284
2398
|
/** Returns WorkflowInvocationActions in a given WorkflowInvocation. */
|
|
2285
2399
|
query(request?: {
|
|
2286
2400
|
/** V1 error format. */
|
|
2287
|
-
'$.xgafv'?:
|
|
2401
|
+
'$.xgafv'?: '1' | '2';
|
|
2288
2402
|
/** OAuth access token. */
|
|
2289
2403
|
access_token?: string;
|
|
2290
2404
|
/** Data format for response. */
|
|
2291
|
-
alt?:
|
|
2405
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2292
2406
|
/** JSONP */
|
|
2293
2407
|
callback?: string;
|
|
2294
2408
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2317,11 +2431,11 @@ declare namespace gapi.client {
|
|
|
2317
2431
|
/** Applies a Git commit for uncommitted files in a Workspace. */
|
|
2318
2432
|
commit(request: {
|
|
2319
2433
|
/** V1 error format. */
|
|
2320
|
-
'$.xgafv'?:
|
|
2434
|
+
'$.xgafv'?: '1' | '2';
|
|
2321
2435
|
/** OAuth access token. */
|
|
2322
2436
|
access_token?: string;
|
|
2323
2437
|
/** Data format for response. */
|
|
2324
|
-
alt?:
|
|
2438
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2325
2439
|
/** JSONP */
|
|
2326
2440
|
callback?: string;
|
|
2327
2441
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2346,11 +2460,11 @@ declare namespace gapi.client {
|
|
|
2346
2460
|
commit(
|
|
2347
2461
|
request: {
|
|
2348
2462
|
/** V1 error format. */
|
|
2349
|
-
'$.xgafv'?:
|
|
2463
|
+
'$.xgafv'?: '1' | '2';
|
|
2350
2464
|
/** OAuth access token. */
|
|
2351
2465
|
access_token?: string;
|
|
2352
2466
|
/** Data format for response. */
|
|
2353
|
-
alt?:
|
|
2467
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2354
2468
|
/** JSONP */
|
|
2355
2469
|
callback?: string;
|
|
2356
2470
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2375,11 +2489,11 @@ declare namespace gapi.client {
|
|
|
2375
2489
|
/** Creates a new Workspace in a given Repository. */
|
|
2376
2490
|
create(request: {
|
|
2377
2491
|
/** V1 error format. */
|
|
2378
|
-
'$.xgafv'?:
|
|
2492
|
+
'$.xgafv'?: '1' | '2';
|
|
2379
2493
|
/** OAuth access token. */
|
|
2380
2494
|
access_token?: string;
|
|
2381
2495
|
/** Data format for response. */
|
|
2382
|
-
alt?:
|
|
2496
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2383
2497
|
/** JSONP */
|
|
2384
2498
|
callback?: string;
|
|
2385
2499
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2406,11 +2520,11 @@ declare namespace gapi.client {
|
|
|
2406
2520
|
create(
|
|
2407
2521
|
request: {
|
|
2408
2522
|
/** V1 error format. */
|
|
2409
|
-
'$.xgafv'?:
|
|
2523
|
+
'$.xgafv'?: '1' | '2';
|
|
2410
2524
|
/** OAuth access token. */
|
|
2411
2525
|
access_token?: string;
|
|
2412
2526
|
/** Data format for response. */
|
|
2413
|
-
alt?:
|
|
2527
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2414
2528
|
/** JSONP */
|
|
2415
2529
|
callback?: string;
|
|
2416
2530
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2437,11 +2551,11 @@ declare namespace gapi.client {
|
|
|
2437
2551
|
/** Deletes a single Workspace. */
|
|
2438
2552
|
delete(request?: {
|
|
2439
2553
|
/** V1 error format. */
|
|
2440
|
-
'$.xgafv'?:
|
|
2554
|
+
'$.xgafv'?: '1' | '2';
|
|
2441
2555
|
/** OAuth access token. */
|
|
2442
2556
|
access_token?: string;
|
|
2443
2557
|
/** Data format for response. */
|
|
2444
|
-
alt?:
|
|
2558
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2445
2559
|
/** JSONP */
|
|
2446
2560
|
callback?: string;
|
|
2447
2561
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2464,11 +2578,11 @@ declare namespace gapi.client {
|
|
|
2464
2578
|
/** Fetches Git diff for an uncommitted file in a Workspace. */
|
|
2465
2579
|
fetchFileDiff(request?: {
|
|
2466
2580
|
/** V1 error format. */
|
|
2467
|
-
'$.xgafv'?:
|
|
2581
|
+
'$.xgafv'?: '1' | '2';
|
|
2468
2582
|
/** OAuth access token. */
|
|
2469
2583
|
access_token?: string;
|
|
2470
2584
|
/** Data format for response. */
|
|
2471
|
-
alt?:
|
|
2585
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2472
2586
|
/** JSONP */
|
|
2473
2587
|
callback?: string;
|
|
2474
2588
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2493,11 +2607,11 @@ declare namespace gapi.client {
|
|
|
2493
2607
|
/** Fetches Git statuses for the files in a Workspace. */
|
|
2494
2608
|
fetchFileGitStatuses(request?: {
|
|
2495
2609
|
/** V1 error format. */
|
|
2496
|
-
'$.xgafv'?:
|
|
2610
|
+
'$.xgafv'?: '1' | '2';
|
|
2497
2611
|
/** OAuth access token. */
|
|
2498
2612
|
access_token?: string;
|
|
2499
2613
|
/** Data format for response. */
|
|
2500
|
-
alt?:
|
|
2614
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2501
2615
|
/** JSONP */
|
|
2502
2616
|
callback?: string;
|
|
2503
2617
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2520,11 +2634,11 @@ declare namespace gapi.client {
|
|
|
2520
2634
|
/** Fetches Git ahead/behind against a remote branch. */
|
|
2521
2635
|
fetchGitAheadBehind(request?: {
|
|
2522
2636
|
/** V1 error format. */
|
|
2523
|
-
'$.xgafv'?:
|
|
2637
|
+
'$.xgafv'?: '1' | '2';
|
|
2524
2638
|
/** OAuth access token. */
|
|
2525
2639
|
access_token?: string;
|
|
2526
2640
|
/** Data format for response. */
|
|
2527
|
-
alt?:
|
|
2641
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2528
2642
|
/** JSONP */
|
|
2529
2643
|
callback?: string;
|
|
2530
2644
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2549,11 +2663,11 @@ declare namespace gapi.client {
|
|
|
2549
2663
|
/** Fetches a single Workspace. */
|
|
2550
2664
|
get(request?: {
|
|
2551
2665
|
/** V1 error format. */
|
|
2552
|
-
'$.xgafv'?:
|
|
2666
|
+
'$.xgafv'?: '1' | '2';
|
|
2553
2667
|
/** OAuth access token. */
|
|
2554
2668
|
access_token?: string;
|
|
2555
2669
|
/** Data format for response. */
|
|
2556
|
-
alt?:
|
|
2670
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2557
2671
|
/** JSONP */
|
|
2558
2672
|
callback?: string;
|
|
2559
2673
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2576,11 +2690,11 @@ declare namespace gapi.client {
|
|
|
2576
2690
|
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
2577
2691
|
getIamPolicy(request?: {
|
|
2578
2692
|
/** V1 error format. */
|
|
2579
|
-
'$.xgafv'?:
|
|
2693
|
+
'$.xgafv'?: '1' | '2';
|
|
2580
2694
|
/** OAuth access token. */
|
|
2581
2695
|
access_token?: string;
|
|
2582
2696
|
/** Data format for response. */
|
|
2583
|
-
alt?:
|
|
2697
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2584
2698
|
/** JSONP */
|
|
2585
2699
|
callback?: string;
|
|
2586
2700
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2605,11 +2719,11 @@ declare namespace gapi.client {
|
|
|
2605
2719
|
/** Installs dependency NPM packages (inside a Workspace). */
|
|
2606
2720
|
installNpmPackages(request: {
|
|
2607
2721
|
/** V1 error format. */
|
|
2608
|
-
'$.xgafv'?:
|
|
2722
|
+
'$.xgafv'?: '1' | '2';
|
|
2609
2723
|
/** OAuth access token. */
|
|
2610
2724
|
access_token?: string;
|
|
2611
2725
|
/** Data format for response. */
|
|
2612
|
-
alt?:
|
|
2726
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2613
2727
|
/** JSONP */
|
|
2614
2728
|
callback?: string;
|
|
2615
2729
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2634,11 +2748,11 @@ declare namespace gapi.client {
|
|
|
2634
2748
|
installNpmPackages(
|
|
2635
2749
|
request: {
|
|
2636
2750
|
/** V1 error format. */
|
|
2637
|
-
'$.xgafv'?:
|
|
2751
|
+
'$.xgafv'?: '1' | '2';
|
|
2638
2752
|
/** OAuth access token. */
|
|
2639
2753
|
access_token?: string;
|
|
2640
2754
|
/** Data format for response. */
|
|
2641
|
-
alt?:
|
|
2755
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2642
2756
|
/** JSONP */
|
|
2643
2757
|
callback?: string;
|
|
2644
2758
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2663,11 +2777,11 @@ declare namespace gapi.client {
|
|
|
2663
2777
|
/** Lists Workspaces in a given Repository. */
|
|
2664
2778
|
list(request?: {
|
|
2665
2779
|
/** V1 error format. */
|
|
2666
|
-
'$.xgafv'?:
|
|
2780
|
+
'$.xgafv'?: '1' | '2';
|
|
2667
2781
|
/** OAuth access token. */
|
|
2668
2782
|
access_token?: string;
|
|
2669
2783
|
/** Data format for response. */
|
|
2670
|
-
alt?:
|
|
2784
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2671
2785
|
/** JSONP */
|
|
2672
2786
|
callback?: string;
|
|
2673
2787
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2698,11 +2812,11 @@ declare namespace gapi.client {
|
|
|
2698
2812
|
/** Creates a directory inside a Workspace. */
|
|
2699
2813
|
makeDirectory(request: {
|
|
2700
2814
|
/** V1 error format. */
|
|
2701
|
-
'$.xgafv'?:
|
|
2815
|
+
'$.xgafv'?: '1' | '2';
|
|
2702
2816
|
/** OAuth access token. */
|
|
2703
2817
|
access_token?: string;
|
|
2704
2818
|
/** Data format for response. */
|
|
2705
|
-
alt?:
|
|
2819
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2706
2820
|
/** JSONP */
|
|
2707
2821
|
callback?: string;
|
|
2708
2822
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2727,11 +2841,11 @@ declare namespace gapi.client {
|
|
|
2727
2841
|
makeDirectory(
|
|
2728
2842
|
request: {
|
|
2729
2843
|
/** V1 error format. */
|
|
2730
|
-
'$.xgafv'?:
|
|
2844
|
+
'$.xgafv'?: '1' | '2';
|
|
2731
2845
|
/** OAuth access token. */
|
|
2732
2846
|
access_token?: string;
|
|
2733
2847
|
/** Data format for response. */
|
|
2734
|
-
alt?:
|
|
2848
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2735
2849
|
/** JSONP */
|
|
2736
2850
|
callback?: string;
|
|
2737
2851
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2756,11 +2870,11 @@ declare namespace gapi.client {
|
|
|
2756
2870
|
/** Moves a directory (inside a Workspace), and all of its contents, to a new location. */
|
|
2757
2871
|
moveDirectory(request: {
|
|
2758
2872
|
/** V1 error format. */
|
|
2759
|
-
'$.xgafv'?:
|
|
2873
|
+
'$.xgafv'?: '1' | '2';
|
|
2760
2874
|
/** OAuth access token. */
|
|
2761
2875
|
access_token?: string;
|
|
2762
2876
|
/** Data format for response. */
|
|
2763
|
-
alt?:
|
|
2877
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2764
2878
|
/** JSONP */
|
|
2765
2879
|
callback?: string;
|
|
2766
2880
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2785,11 +2899,11 @@ declare namespace gapi.client {
|
|
|
2785
2899
|
moveDirectory(
|
|
2786
2900
|
request: {
|
|
2787
2901
|
/** V1 error format. */
|
|
2788
|
-
'$.xgafv'?:
|
|
2902
|
+
'$.xgafv'?: '1' | '2';
|
|
2789
2903
|
/** OAuth access token. */
|
|
2790
2904
|
access_token?: string;
|
|
2791
2905
|
/** Data format for response. */
|
|
2792
|
-
alt?:
|
|
2906
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2793
2907
|
/** JSONP */
|
|
2794
2908
|
callback?: string;
|
|
2795
2909
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2814,11 +2928,11 @@ declare namespace gapi.client {
|
|
|
2814
2928
|
/** Moves a file (inside a Workspace) to a new location. */
|
|
2815
2929
|
moveFile(request: {
|
|
2816
2930
|
/** V1 error format. */
|
|
2817
|
-
'$.xgafv'?:
|
|
2931
|
+
'$.xgafv'?: '1' | '2';
|
|
2818
2932
|
/** OAuth access token. */
|
|
2819
2933
|
access_token?: string;
|
|
2820
2934
|
/** Data format for response. */
|
|
2821
|
-
alt?:
|
|
2935
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2822
2936
|
/** JSONP */
|
|
2823
2937
|
callback?: string;
|
|
2824
2938
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2843,11 +2957,11 @@ declare namespace gapi.client {
|
|
|
2843
2957
|
moveFile(
|
|
2844
2958
|
request: {
|
|
2845
2959
|
/** V1 error format. */
|
|
2846
|
-
'$.xgafv'?:
|
|
2960
|
+
'$.xgafv'?: '1' | '2';
|
|
2847
2961
|
/** OAuth access token. */
|
|
2848
2962
|
access_token?: string;
|
|
2849
2963
|
/** Data format for response. */
|
|
2850
|
-
alt?:
|
|
2964
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2851
2965
|
/** JSONP */
|
|
2852
2966
|
callback?: string;
|
|
2853
2967
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2872,11 +2986,11 @@ declare namespace gapi.client {
|
|
|
2872
2986
|
/** Pulls Git commits from the Repository's remote into a Workspace. */
|
|
2873
2987
|
pull(request: {
|
|
2874
2988
|
/** V1 error format. */
|
|
2875
|
-
'$.xgafv'?:
|
|
2989
|
+
'$.xgafv'?: '1' | '2';
|
|
2876
2990
|
/** OAuth access token. */
|
|
2877
2991
|
access_token?: string;
|
|
2878
2992
|
/** Data format for response. */
|
|
2879
|
-
alt?:
|
|
2993
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2880
2994
|
/** JSONP */
|
|
2881
2995
|
callback?: string;
|
|
2882
2996
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2901,11 +3015,11 @@ declare namespace gapi.client {
|
|
|
2901
3015
|
pull(
|
|
2902
3016
|
request: {
|
|
2903
3017
|
/** V1 error format. */
|
|
2904
|
-
'$.xgafv'?:
|
|
3018
|
+
'$.xgafv'?: '1' | '2';
|
|
2905
3019
|
/** OAuth access token. */
|
|
2906
3020
|
access_token?: string;
|
|
2907
3021
|
/** Data format for response. */
|
|
2908
|
-
alt?:
|
|
3022
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2909
3023
|
/** JSONP */
|
|
2910
3024
|
callback?: string;
|
|
2911
3025
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2930,11 +3044,11 @@ declare namespace gapi.client {
|
|
|
2930
3044
|
/** Pushes Git commits from a Workspace to the Repository's remote. */
|
|
2931
3045
|
push(request: {
|
|
2932
3046
|
/** V1 error format. */
|
|
2933
|
-
'$.xgafv'?:
|
|
3047
|
+
'$.xgafv'?: '1' | '2';
|
|
2934
3048
|
/** OAuth access token. */
|
|
2935
3049
|
access_token?: string;
|
|
2936
3050
|
/** Data format for response. */
|
|
2937
|
-
alt?:
|
|
3051
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2938
3052
|
/** JSONP */
|
|
2939
3053
|
callback?: string;
|
|
2940
3054
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2959,11 +3073,11 @@ declare namespace gapi.client {
|
|
|
2959
3073
|
push(
|
|
2960
3074
|
request: {
|
|
2961
3075
|
/** V1 error format. */
|
|
2962
|
-
'$.xgafv'?:
|
|
3076
|
+
'$.xgafv'?: '1' | '2';
|
|
2963
3077
|
/** OAuth access token. */
|
|
2964
3078
|
access_token?: string;
|
|
2965
3079
|
/** Data format for response. */
|
|
2966
|
-
alt?:
|
|
3080
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2967
3081
|
/** JSONP */
|
|
2968
3082
|
callback?: string;
|
|
2969
3083
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2988,11 +3102,11 @@ declare namespace gapi.client {
|
|
|
2988
3102
|
/** Returns the contents of a given Workspace directory. */
|
|
2989
3103
|
queryDirectoryContents(request?: {
|
|
2990
3104
|
/** V1 error format. */
|
|
2991
|
-
'$.xgafv'?:
|
|
3105
|
+
'$.xgafv'?: '1' | '2';
|
|
2992
3106
|
/** OAuth access token. */
|
|
2993
3107
|
access_token?: string;
|
|
2994
3108
|
/** Data format for response. */
|
|
2995
|
-
alt?:
|
|
3109
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2996
3110
|
/** JSONP */
|
|
2997
3111
|
callback?: string;
|
|
2998
3112
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3015,17 +3129,22 @@ declare namespace gapi.client {
|
|
|
3015
3129
|
upload_protocol?: string;
|
|
3016
3130
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3017
3131
|
uploadType?: string;
|
|
3132
|
+
/** Optional. Specifies the metadata to return for each directory entry. If unspecified, the default is `DIRECTORY_CONTENTS_VIEW_BASIC`. Currently the `DIRECTORY_CONTENTS_VIEW_METADATA` view is not supported by CMEK-protected workspaces. */
|
|
3133
|
+
view?:
|
|
3134
|
+
| 'DIRECTORY_CONTENTS_VIEW_UNSPECIFIED'
|
|
3135
|
+
| 'DIRECTORY_CONTENTS_VIEW_BASIC'
|
|
3136
|
+
| 'DIRECTORY_CONTENTS_VIEW_METADATA';
|
|
3018
3137
|
/** Required. The workspace's name. */
|
|
3019
3138
|
workspace: string;
|
|
3020
3139
|
}): Request<QueryDirectoryContentsResponse>;
|
|
3021
3140
|
/** Returns the contents of a file (inside a Workspace). */
|
|
3022
3141
|
readFile(request?: {
|
|
3023
3142
|
/** V1 error format. */
|
|
3024
|
-
'$.xgafv'?:
|
|
3143
|
+
'$.xgafv'?: '1' | '2';
|
|
3025
3144
|
/** OAuth access token. */
|
|
3026
3145
|
access_token?: string;
|
|
3027
3146
|
/** Data format for response. */
|
|
3028
|
-
alt?:
|
|
3147
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3029
3148
|
/** JSONP */
|
|
3030
3149
|
callback?: string;
|
|
3031
3150
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3052,11 +3171,11 @@ declare namespace gapi.client {
|
|
|
3052
3171
|
/** Deletes a directory (inside a Workspace) and all of its contents. */
|
|
3053
3172
|
removeDirectory(request: {
|
|
3054
3173
|
/** V1 error format. */
|
|
3055
|
-
'$.xgafv'?:
|
|
3174
|
+
'$.xgafv'?: '1' | '2';
|
|
3056
3175
|
/** OAuth access token. */
|
|
3057
3176
|
access_token?: string;
|
|
3058
3177
|
/** Data format for response. */
|
|
3059
|
-
alt?:
|
|
3178
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3060
3179
|
/** JSONP */
|
|
3061
3180
|
callback?: string;
|
|
3062
3181
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3081,11 +3200,11 @@ declare namespace gapi.client {
|
|
|
3081
3200
|
removeDirectory(
|
|
3082
3201
|
request: {
|
|
3083
3202
|
/** V1 error format. */
|
|
3084
|
-
'$.xgafv'?:
|
|
3203
|
+
'$.xgafv'?: '1' | '2';
|
|
3085
3204
|
/** OAuth access token. */
|
|
3086
3205
|
access_token?: string;
|
|
3087
3206
|
/** Data format for response. */
|
|
3088
|
-
alt?:
|
|
3207
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3089
3208
|
/** JSONP */
|
|
3090
3209
|
callback?: string;
|
|
3091
3210
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3110,11 +3229,11 @@ declare namespace gapi.client {
|
|
|
3110
3229
|
/** Deletes a file (inside a Workspace). */
|
|
3111
3230
|
removeFile(request: {
|
|
3112
3231
|
/** V1 error format. */
|
|
3113
|
-
'$.xgafv'?:
|
|
3232
|
+
'$.xgafv'?: '1' | '2';
|
|
3114
3233
|
/** OAuth access token. */
|
|
3115
3234
|
access_token?: string;
|
|
3116
3235
|
/** Data format for response. */
|
|
3117
|
-
alt?:
|
|
3236
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3118
3237
|
/** JSONP */
|
|
3119
3238
|
callback?: string;
|
|
3120
3239
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3139,11 +3258,11 @@ declare namespace gapi.client {
|
|
|
3139
3258
|
removeFile(
|
|
3140
3259
|
request: {
|
|
3141
3260
|
/** V1 error format. */
|
|
3142
|
-
'$.xgafv'?:
|
|
3261
|
+
'$.xgafv'?: '1' | '2';
|
|
3143
3262
|
/** OAuth access token. */
|
|
3144
3263
|
access_token?: string;
|
|
3145
3264
|
/** Data format for response. */
|
|
3146
|
-
alt?:
|
|
3265
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3147
3266
|
/** JSONP */
|
|
3148
3267
|
callback?: string;
|
|
3149
3268
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3168,11 +3287,11 @@ declare namespace gapi.client {
|
|
|
3168
3287
|
/** Performs a Git reset for uncommitted files in a Workspace. */
|
|
3169
3288
|
reset(request: {
|
|
3170
3289
|
/** V1 error format. */
|
|
3171
|
-
'$.xgafv'?:
|
|
3290
|
+
'$.xgafv'?: '1' | '2';
|
|
3172
3291
|
/** OAuth access token. */
|
|
3173
3292
|
access_token?: string;
|
|
3174
3293
|
/** Data format for response. */
|
|
3175
|
-
alt?:
|
|
3294
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3176
3295
|
/** JSONP */
|
|
3177
3296
|
callback?: string;
|
|
3178
3297
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3197,11 +3316,11 @@ declare namespace gapi.client {
|
|
|
3197
3316
|
reset(
|
|
3198
3317
|
request: {
|
|
3199
3318
|
/** V1 error format. */
|
|
3200
|
-
'$.xgafv'?:
|
|
3319
|
+
'$.xgafv'?: '1' | '2';
|
|
3201
3320
|
/** OAuth access token. */
|
|
3202
3321
|
access_token?: string;
|
|
3203
3322
|
/** Data format for response. */
|
|
3204
|
-
alt?:
|
|
3323
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3205
3324
|
/** JSONP */
|
|
3206
3325
|
callback?: string;
|
|
3207
3326
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3226,11 +3345,11 @@ declare namespace gapi.client {
|
|
|
3226
3345
|
/** Finds the contents of a given Workspace directory by filter. */
|
|
3227
3346
|
searchFiles(request?: {
|
|
3228
3347
|
/** V1 error format. */
|
|
3229
|
-
'$.xgafv'?:
|
|
3348
|
+
'$.xgafv'?: '1' | '2';
|
|
3230
3349
|
/** OAuth access token. */
|
|
3231
3350
|
access_token?: string;
|
|
3232
3351
|
/** Data format for response. */
|
|
3233
|
-
alt?:
|
|
3352
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3234
3353
|
/** JSONP */
|
|
3235
3354
|
callback?: string;
|
|
3236
3355
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3260,11 +3379,11 @@ declare namespace gapi.client {
|
|
|
3260
3379
|
setIamPolicy(
|
|
3261
3380
|
request: {
|
|
3262
3381
|
/** V1 error format. */
|
|
3263
|
-
'$.xgafv'?:
|
|
3382
|
+
'$.xgafv'?: '1' | '2';
|
|
3264
3383
|
/** OAuth access token. */
|
|
3265
3384
|
access_token?: string;
|
|
3266
3385
|
/** Data format for response. */
|
|
3267
|
-
alt?:
|
|
3386
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3268
3387
|
/** JSONP */
|
|
3269
3388
|
callback?: string;
|
|
3270
3389
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3290,11 +3409,11 @@ declare namespace gapi.client {
|
|
|
3290
3409
|
testIamPermissions(
|
|
3291
3410
|
request: {
|
|
3292
3411
|
/** V1 error format. */
|
|
3293
|
-
'$.xgafv'?:
|
|
3412
|
+
'$.xgafv'?: '1' | '2';
|
|
3294
3413
|
/** OAuth access token. */
|
|
3295
3414
|
access_token?: string;
|
|
3296
3415
|
/** Data format for response. */
|
|
3297
|
-
alt?:
|
|
3416
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3298
3417
|
/** JSONP */
|
|
3299
3418
|
callback?: string;
|
|
3300
3419
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3319,11 +3438,11 @@ declare namespace gapi.client {
|
|
|
3319
3438
|
/** Writes to a file (inside a Workspace). */
|
|
3320
3439
|
writeFile(request: {
|
|
3321
3440
|
/** V1 error format. */
|
|
3322
|
-
'$.xgafv'?:
|
|
3441
|
+
'$.xgafv'?: '1' | '2';
|
|
3323
3442
|
/** OAuth access token. */
|
|
3324
3443
|
access_token?: string;
|
|
3325
3444
|
/** Data format for response. */
|
|
3326
|
-
alt?:
|
|
3445
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3327
3446
|
/** JSONP */
|
|
3328
3447
|
callback?: string;
|
|
3329
3448
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3348,11 +3467,11 @@ declare namespace gapi.client {
|
|
|
3348
3467
|
writeFile(
|
|
3349
3468
|
request: {
|
|
3350
3469
|
/** V1 error format. */
|
|
3351
|
-
'$.xgafv'?:
|
|
3470
|
+
'$.xgafv'?: '1' | '2';
|
|
3352
3471
|
/** OAuth access token. */
|
|
3353
3472
|
access_token?: string;
|
|
3354
3473
|
/** Data format for response. */
|
|
3355
|
-
alt?:
|
|
3474
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3356
3475
|
/** JSONP */
|
|
3357
3476
|
callback?: string;
|
|
3358
3477
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3379,11 +3498,11 @@ declare namespace gapi.client {
|
|
|
3379
3498
|
/** Applies a Git commit to a Repository. The Repository must not have a value for `git_remote_settings.url`. */
|
|
3380
3499
|
commit(request: {
|
|
3381
3500
|
/** V1 error format. */
|
|
3382
|
-
'$.xgafv'?:
|
|
3501
|
+
'$.xgafv'?: '1' | '2';
|
|
3383
3502
|
/** OAuth access token. */
|
|
3384
3503
|
access_token?: string;
|
|
3385
3504
|
/** Data format for response. */
|
|
3386
|
-
alt?:
|
|
3505
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3387
3506
|
/** JSONP */
|
|
3388
3507
|
callback?: string;
|
|
3389
3508
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3408,11 +3527,11 @@ declare namespace gapi.client {
|
|
|
3408
3527
|
commit(
|
|
3409
3528
|
request: {
|
|
3410
3529
|
/** V1 error format. */
|
|
3411
|
-
'$.xgafv'?:
|
|
3530
|
+
'$.xgafv'?: '1' | '2';
|
|
3412
3531
|
/** OAuth access token. */
|
|
3413
3532
|
access_token?: string;
|
|
3414
3533
|
/** Data format for response. */
|
|
3415
|
-
alt?:
|
|
3534
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3416
3535
|
/** JSONP */
|
|
3417
3536
|
callback?: string;
|
|
3418
3537
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3437,11 +3556,11 @@ declare namespace gapi.client {
|
|
|
3437
3556
|
/** Computes a Repository's Git access token status. */
|
|
3438
3557
|
computeAccessTokenStatus(request?: {
|
|
3439
3558
|
/** V1 error format. */
|
|
3440
|
-
'$.xgafv'?:
|
|
3559
|
+
'$.xgafv'?: '1' | '2';
|
|
3441
3560
|
/** OAuth access token. */
|
|
3442
3561
|
access_token?: string;
|
|
3443
3562
|
/** Data format for response. */
|
|
3444
|
-
alt?:
|
|
3563
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3445
3564
|
/** JSONP */
|
|
3446
3565
|
callback?: string;
|
|
3447
3566
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3464,11 +3583,11 @@ declare namespace gapi.client {
|
|
|
3464
3583
|
/** Creates a new Repository in a given project and location. */
|
|
3465
3584
|
create(request: {
|
|
3466
3585
|
/** V1 error format. */
|
|
3467
|
-
'$.xgafv'?:
|
|
3586
|
+
'$.xgafv'?: '1' | '2';
|
|
3468
3587
|
/** OAuth access token. */
|
|
3469
3588
|
access_token?: string;
|
|
3470
3589
|
/** Data format for response. */
|
|
3471
|
-
alt?:
|
|
3590
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3472
3591
|
/** JSONP */
|
|
3473
3592
|
callback?: string;
|
|
3474
3593
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3495,11 +3614,11 @@ declare namespace gapi.client {
|
|
|
3495
3614
|
create(
|
|
3496
3615
|
request: {
|
|
3497
3616
|
/** V1 error format. */
|
|
3498
|
-
'$.xgafv'?:
|
|
3617
|
+
'$.xgafv'?: '1' | '2';
|
|
3499
3618
|
/** OAuth access token. */
|
|
3500
3619
|
access_token?: string;
|
|
3501
3620
|
/** Data format for response. */
|
|
3502
|
-
alt?:
|
|
3621
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3503
3622
|
/** JSONP */
|
|
3504
3623
|
callback?: string;
|
|
3505
3624
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3526,11 +3645,11 @@ declare namespace gapi.client {
|
|
|
3526
3645
|
/** Deletes a single Repository. */
|
|
3527
3646
|
delete(request?: {
|
|
3528
3647
|
/** V1 error format. */
|
|
3529
|
-
'$.xgafv'?:
|
|
3648
|
+
'$.xgafv'?: '1' | '2';
|
|
3530
3649
|
/** OAuth access token. */
|
|
3531
3650
|
access_token?: string;
|
|
3532
3651
|
/** Data format for response. */
|
|
3533
|
-
alt?:
|
|
3652
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3534
3653
|
/** JSONP */
|
|
3535
3654
|
callback?: string;
|
|
3536
3655
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3552,14 +3671,72 @@ declare namespace gapi.client {
|
|
|
3552
3671
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3553
3672
|
uploadType?: string;
|
|
3554
3673
|
}): Request<{}>;
|
|
3674
|
+
/** Deletes a single Repository asynchronously. */
|
|
3675
|
+
deleteLongRunning(request: {
|
|
3676
|
+
/** V1 error format. */
|
|
3677
|
+
'$.xgafv'?: '1' | '2';
|
|
3678
|
+
/** OAuth access token. */
|
|
3679
|
+
access_token?: string;
|
|
3680
|
+
/** Data format for response. */
|
|
3681
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3682
|
+
/** JSONP */
|
|
3683
|
+
callback?: string;
|
|
3684
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3685
|
+
fields?: string;
|
|
3686
|
+
/** 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. */
|
|
3687
|
+
key?: string;
|
|
3688
|
+
/** Required. The repository's name. */
|
|
3689
|
+
name: string;
|
|
3690
|
+
/** OAuth 2.0 token for the current user. */
|
|
3691
|
+
oauth_token?: string;
|
|
3692
|
+
/** Returns response with indentations and line breaks. */
|
|
3693
|
+
prettyPrint?: boolean;
|
|
3694
|
+
/** 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. */
|
|
3695
|
+
quotaUser?: string;
|
|
3696
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3697
|
+
upload_protocol?: string;
|
|
3698
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3699
|
+
uploadType?: string;
|
|
3700
|
+
/** Request body */
|
|
3701
|
+
resource: DeleteRepositoryLongRunningRequest;
|
|
3702
|
+
}): Request<Operation>;
|
|
3703
|
+
deleteLongRunning(
|
|
3704
|
+
request: {
|
|
3705
|
+
/** V1 error format. */
|
|
3706
|
+
'$.xgafv'?: '1' | '2';
|
|
3707
|
+
/** OAuth access token. */
|
|
3708
|
+
access_token?: string;
|
|
3709
|
+
/** Data format for response. */
|
|
3710
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3711
|
+
/** JSONP */
|
|
3712
|
+
callback?: string;
|
|
3713
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3714
|
+
fields?: string;
|
|
3715
|
+
/** 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. */
|
|
3716
|
+
key?: string;
|
|
3717
|
+
/** Required. The repository's name. */
|
|
3718
|
+
name: string;
|
|
3719
|
+
/** OAuth 2.0 token for the current user. */
|
|
3720
|
+
oauth_token?: string;
|
|
3721
|
+
/** Returns response with indentations and line breaks. */
|
|
3722
|
+
prettyPrint?: boolean;
|
|
3723
|
+
/** 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. */
|
|
3724
|
+
quotaUser?: string;
|
|
3725
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3726
|
+
upload_protocol?: string;
|
|
3727
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3728
|
+
uploadType?: string;
|
|
3729
|
+
},
|
|
3730
|
+
body: DeleteRepositoryLongRunningRequest,
|
|
3731
|
+
): Request<Operation>;
|
|
3555
3732
|
/** Fetches a Repository's history of commits. The Repository must not have a value for `git_remote_settings.url`. */
|
|
3556
3733
|
fetchHistory(request?: {
|
|
3557
3734
|
/** V1 error format. */
|
|
3558
|
-
'$.xgafv'?:
|
|
3735
|
+
'$.xgafv'?: '1' | '2';
|
|
3559
3736
|
/** OAuth access token. */
|
|
3560
3737
|
access_token?: string;
|
|
3561
3738
|
/** Data format for response. */
|
|
3562
|
-
alt?:
|
|
3739
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3563
3740
|
/** JSONP */
|
|
3564
3741
|
callback?: string;
|
|
3565
3742
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3586,11 +3763,11 @@ declare namespace gapi.client {
|
|
|
3586
3763
|
/** Fetches a Repository's remote branches. */
|
|
3587
3764
|
fetchRemoteBranches(request?: {
|
|
3588
3765
|
/** V1 error format. */
|
|
3589
|
-
'$.xgafv'?:
|
|
3766
|
+
'$.xgafv'?: '1' | '2';
|
|
3590
3767
|
/** OAuth access token. */
|
|
3591
3768
|
access_token?: string;
|
|
3592
3769
|
/** Data format for response. */
|
|
3593
|
-
alt?:
|
|
3770
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3594
3771
|
/** JSONP */
|
|
3595
3772
|
callback?: string;
|
|
3596
3773
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3613,11 +3790,11 @@ declare namespace gapi.client {
|
|
|
3613
3790
|
/** Fetches a single Repository. */
|
|
3614
3791
|
get(request?: {
|
|
3615
3792
|
/** V1 error format. */
|
|
3616
|
-
'$.xgafv'?:
|
|
3793
|
+
'$.xgafv'?: '1' | '2';
|
|
3617
3794
|
/** OAuth access token. */
|
|
3618
3795
|
access_token?: string;
|
|
3619
3796
|
/** Data format for response. */
|
|
3620
|
-
alt?:
|
|
3797
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3621
3798
|
/** JSONP */
|
|
3622
3799
|
callback?: string;
|
|
3623
3800
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3640,11 +3817,11 @@ declare namespace gapi.client {
|
|
|
3640
3817
|
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
3641
3818
|
getIamPolicy(request?: {
|
|
3642
3819
|
/** V1 error format. */
|
|
3643
|
-
'$.xgafv'?:
|
|
3820
|
+
'$.xgafv'?: '1' | '2';
|
|
3644
3821
|
/** OAuth access token. */
|
|
3645
3822
|
access_token?: string;
|
|
3646
3823
|
/** Data format for response. */
|
|
3647
|
-
alt?:
|
|
3824
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3648
3825
|
/** JSONP */
|
|
3649
3826
|
callback?: string;
|
|
3650
3827
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3669,11 +3846,11 @@ declare namespace gapi.client {
|
|
|
3669
3846
|
/** Lists Repositories in a given project and location. **Note:** *This method can return repositories not shown in the [Dataform UI](https://console.cloud.google.com/bigquery/dataform)*. */
|
|
3670
3847
|
list(request?: {
|
|
3671
3848
|
/** V1 error format. */
|
|
3672
|
-
'$.xgafv'?:
|
|
3849
|
+
'$.xgafv'?: '1' | '2';
|
|
3673
3850
|
/** OAuth access token. */
|
|
3674
3851
|
access_token?: string;
|
|
3675
3852
|
/** Data format for response. */
|
|
3676
|
-
alt?:
|
|
3853
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3677
3854
|
/** JSONP */
|
|
3678
3855
|
callback?: string;
|
|
3679
3856
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3704,11 +3881,11 @@ declare namespace gapi.client {
|
|
|
3704
3881
|
/** Moves a Repository to a new location. */
|
|
3705
3882
|
move(request: {
|
|
3706
3883
|
/** V1 error format. */
|
|
3707
|
-
'$.xgafv'?:
|
|
3884
|
+
'$.xgafv'?: '1' | '2';
|
|
3708
3885
|
/** OAuth access token. */
|
|
3709
3886
|
access_token?: string;
|
|
3710
3887
|
/** Data format for response. */
|
|
3711
|
-
alt?:
|
|
3888
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3712
3889
|
/** JSONP */
|
|
3713
3890
|
callback?: string;
|
|
3714
3891
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3733,11 +3910,11 @@ declare namespace gapi.client {
|
|
|
3733
3910
|
move(
|
|
3734
3911
|
request: {
|
|
3735
3912
|
/** V1 error format. */
|
|
3736
|
-
'$.xgafv'?:
|
|
3913
|
+
'$.xgafv'?: '1' | '2';
|
|
3737
3914
|
/** OAuth access token. */
|
|
3738
3915
|
access_token?: string;
|
|
3739
3916
|
/** Data format for response. */
|
|
3740
|
-
alt?:
|
|
3917
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3741
3918
|
/** JSONP */
|
|
3742
3919
|
callback?: string;
|
|
3743
3920
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3762,11 +3939,11 @@ declare namespace gapi.client {
|
|
|
3762
3939
|
/** Updates a single Repository. **Note:** *This method does not fully implement [AIP/134](https://google.aip.dev/134). The wildcard entry (\*) is treated as a bad request, and when the `field_mask` is omitted, the request is treated as a full update on all modifiable fields.* */
|
|
3763
3940
|
patch(request: {
|
|
3764
3941
|
/** V1 error format. */
|
|
3765
|
-
'$.xgafv'?:
|
|
3942
|
+
'$.xgafv'?: '1' | '2';
|
|
3766
3943
|
/** OAuth access token. */
|
|
3767
3944
|
access_token?: string;
|
|
3768
3945
|
/** Data format for response. */
|
|
3769
|
-
alt?:
|
|
3946
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3770
3947
|
/** JSONP */
|
|
3771
3948
|
callback?: string;
|
|
3772
3949
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3793,11 +3970,11 @@ declare namespace gapi.client {
|
|
|
3793
3970
|
patch(
|
|
3794
3971
|
request: {
|
|
3795
3972
|
/** V1 error format. */
|
|
3796
|
-
'$.xgafv'?:
|
|
3973
|
+
'$.xgafv'?: '1' | '2';
|
|
3797
3974
|
/** OAuth access token. */
|
|
3798
3975
|
access_token?: string;
|
|
3799
3976
|
/** Data format for response. */
|
|
3800
|
-
alt?:
|
|
3977
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3801
3978
|
/** JSONP */
|
|
3802
3979
|
callback?: string;
|
|
3803
3980
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3824,11 +4001,11 @@ declare namespace gapi.client {
|
|
|
3824
4001
|
/** Returns the contents of a given Repository directory. The Repository must not have a value for `git_remote_settings.url`. */
|
|
3825
4002
|
queryDirectoryContents(request?: {
|
|
3826
4003
|
/** V1 error format. */
|
|
3827
|
-
'$.xgafv'?:
|
|
4004
|
+
'$.xgafv'?: '1' | '2';
|
|
3828
4005
|
/** OAuth access token. */
|
|
3829
4006
|
access_token?: string;
|
|
3830
4007
|
/** Data format for response. */
|
|
3831
|
-
alt?:
|
|
4008
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3832
4009
|
/** JSONP */
|
|
3833
4010
|
callback?: string;
|
|
3834
4011
|
/** Optional. The Commit SHA for the commit to query from. If unset, the directory will be queried from HEAD. */
|
|
@@ -3859,11 +4036,11 @@ declare namespace gapi.client {
|
|
|
3859
4036
|
/** Returns the contents of a file (inside a Repository). The Repository must not have a value for `git_remote_settings.url`. */
|
|
3860
4037
|
readFile(request?: {
|
|
3861
4038
|
/** V1 error format. */
|
|
3862
|
-
'$.xgafv'?:
|
|
4039
|
+
'$.xgafv'?: '1' | '2';
|
|
3863
4040
|
/** OAuth access token. */
|
|
3864
4041
|
access_token?: string;
|
|
3865
4042
|
/** Data format for response. */
|
|
3866
|
-
alt?:
|
|
4043
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3867
4044
|
/** JSONP */
|
|
3868
4045
|
callback?: string;
|
|
3869
4046
|
/** Optional. The commit SHA for the commit to read from. If unset, the file will be read from HEAD. */
|
|
@@ -3891,11 +4068,11 @@ declare namespace gapi.client {
|
|
|
3891
4068
|
setIamPolicy(
|
|
3892
4069
|
request: {
|
|
3893
4070
|
/** V1 error format. */
|
|
3894
|
-
'$.xgafv'?:
|
|
4071
|
+
'$.xgafv'?: '1' | '2';
|
|
3895
4072
|
/** OAuth access token. */
|
|
3896
4073
|
access_token?: string;
|
|
3897
4074
|
/** Data format for response. */
|
|
3898
|
-
alt?:
|
|
4075
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3899
4076
|
/** JSONP */
|
|
3900
4077
|
callback?: string;
|
|
3901
4078
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3921,11 +4098,11 @@ declare namespace gapi.client {
|
|
|
3921
4098
|
testIamPermissions(
|
|
3922
4099
|
request: {
|
|
3923
4100
|
/** V1 error format. */
|
|
3924
|
-
'$.xgafv'?:
|
|
4101
|
+
'$.xgafv'?: '1' | '2';
|
|
3925
4102
|
/** OAuth access token. */
|
|
3926
4103
|
access_token?: string;
|
|
3927
4104
|
/** Data format for response. */
|
|
3928
|
-
alt?:
|
|
4105
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3929
4106
|
/** JSONP */
|
|
3930
4107
|
callback?: string;
|
|
3931
4108
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3957,11 +4134,11 @@ declare namespace gapi.client {
|
|
|
3957
4134
|
/** Creates a new TeamFolder in a given project and location. */
|
|
3958
4135
|
create(request: {
|
|
3959
4136
|
/** V1 error format. */
|
|
3960
|
-
'$.xgafv'?:
|
|
4137
|
+
'$.xgafv'?: '1' | '2';
|
|
3961
4138
|
/** OAuth access token. */
|
|
3962
4139
|
access_token?: string;
|
|
3963
4140
|
/** Data format for response. */
|
|
3964
|
-
alt?:
|
|
4141
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3965
4142
|
/** JSONP */
|
|
3966
4143
|
callback?: string;
|
|
3967
4144
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3976,7 +4153,7 @@ declare namespace gapi.client {
|
|
|
3976
4153
|
prettyPrint?: boolean;
|
|
3977
4154
|
/** 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. */
|
|
3978
4155
|
quotaUser?: string;
|
|
3979
|
-
/** The ID to use for the TeamFolder, which will become the final component of the TeamFolder's resource name. */
|
|
4156
|
+
/** Deprecated: This field is not used. The resource name is generated automatically. The ID to use for the TeamFolder, which will become the final component of the TeamFolder's resource name. */
|
|
3980
4157
|
teamFolderId?: string;
|
|
3981
4158
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3982
4159
|
upload_protocol?: string;
|
|
@@ -3988,11 +4165,11 @@ declare namespace gapi.client {
|
|
|
3988
4165
|
create(
|
|
3989
4166
|
request: {
|
|
3990
4167
|
/** V1 error format. */
|
|
3991
|
-
'$.xgafv'?:
|
|
4168
|
+
'$.xgafv'?: '1' | '2';
|
|
3992
4169
|
/** OAuth access token. */
|
|
3993
4170
|
access_token?: string;
|
|
3994
4171
|
/** Data format for response. */
|
|
3995
|
-
alt?:
|
|
4172
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3996
4173
|
/** JSONP */
|
|
3997
4174
|
callback?: string;
|
|
3998
4175
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4007,7 +4184,7 @@ declare namespace gapi.client {
|
|
|
4007
4184
|
prettyPrint?: boolean;
|
|
4008
4185
|
/** 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. */
|
|
4009
4186
|
quotaUser?: string;
|
|
4010
|
-
/** The ID to use for the TeamFolder, which will become the final component of the TeamFolder's resource name. */
|
|
4187
|
+
/** Deprecated: This field is not used. The resource name is generated automatically. The ID to use for the TeamFolder, which will become the final component of the TeamFolder's resource name. */
|
|
4011
4188
|
teamFolderId?: string;
|
|
4012
4189
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4013
4190
|
upload_protocol?: string;
|
|
@@ -4019,11 +4196,11 @@ declare namespace gapi.client {
|
|
|
4019
4196
|
/** Deletes a single TeamFolder. */
|
|
4020
4197
|
delete(request?: {
|
|
4021
4198
|
/** V1 error format. */
|
|
4022
|
-
'$.xgafv'?:
|
|
4199
|
+
'$.xgafv'?: '1' | '2';
|
|
4023
4200
|
/** OAuth access token. */
|
|
4024
4201
|
access_token?: string;
|
|
4025
4202
|
/** Data format for response. */
|
|
4026
|
-
alt?:
|
|
4203
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4027
4204
|
/** JSONP */
|
|
4028
4205
|
callback?: string;
|
|
4029
4206
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4043,14 +4220,72 @@ declare namespace gapi.client {
|
|
|
4043
4220
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4044
4221
|
uploadType?: string;
|
|
4045
4222
|
}): Request<{}>;
|
|
4223
|
+
/** Deletes a TeamFolder with its contents (Folders, Repositories, Workspaces, ReleaseConfigs, and WorkflowConfigs). */
|
|
4224
|
+
deleteTree(request: {
|
|
4225
|
+
/** V1 error format. */
|
|
4226
|
+
'$.xgafv'?: '1' | '2';
|
|
4227
|
+
/** OAuth access token. */
|
|
4228
|
+
access_token?: string;
|
|
4229
|
+
/** Data format for response. */
|
|
4230
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4231
|
+
/** JSONP */
|
|
4232
|
+
callback?: string;
|
|
4233
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4234
|
+
fields?: string;
|
|
4235
|
+
/** 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. */
|
|
4236
|
+
key?: string;
|
|
4237
|
+
/** Required. The TeamFolder's name. Format: projects/{project}/locations/{location}/teamFolders/{team_folder} */
|
|
4238
|
+
name: string;
|
|
4239
|
+
/** OAuth 2.0 token for the current user. */
|
|
4240
|
+
oauth_token?: string;
|
|
4241
|
+
/** Returns response with indentations and line breaks. */
|
|
4242
|
+
prettyPrint?: boolean;
|
|
4243
|
+
/** 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. */
|
|
4244
|
+
quotaUser?: string;
|
|
4245
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4246
|
+
upload_protocol?: string;
|
|
4247
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4248
|
+
uploadType?: string;
|
|
4249
|
+
/** Request body */
|
|
4250
|
+
resource: DeleteTeamFolderTreeRequest;
|
|
4251
|
+
}): Request<Operation>;
|
|
4252
|
+
deleteTree(
|
|
4253
|
+
request: {
|
|
4254
|
+
/** V1 error format. */
|
|
4255
|
+
'$.xgafv'?: '1' | '2';
|
|
4256
|
+
/** OAuth access token. */
|
|
4257
|
+
access_token?: string;
|
|
4258
|
+
/** Data format for response. */
|
|
4259
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4260
|
+
/** JSONP */
|
|
4261
|
+
callback?: string;
|
|
4262
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
4263
|
+
fields?: string;
|
|
4264
|
+
/** 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. */
|
|
4265
|
+
key?: string;
|
|
4266
|
+
/** Required. The TeamFolder's name. Format: projects/{project}/locations/{location}/teamFolders/{team_folder} */
|
|
4267
|
+
name: string;
|
|
4268
|
+
/** OAuth 2.0 token for the current user. */
|
|
4269
|
+
oauth_token?: string;
|
|
4270
|
+
/** Returns response with indentations and line breaks. */
|
|
4271
|
+
prettyPrint?: boolean;
|
|
4272
|
+
/** 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. */
|
|
4273
|
+
quotaUser?: string;
|
|
4274
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4275
|
+
upload_protocol?: string;
|
|
4276
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4277
|
+
uploadType?: string;
|
|
4278
|
+
},
|
|
4279
|
+
body: DeleteTeamFolderTreeRequest,
|
|
4280
|
+
): Request<Operation>;
|
|
4046
4281
|
/** Fetches a single TeamFolder. */
|
|
4047
4282
|
get(request?: {
|
|
4048
4283
|
/** V1 error format. */
|
|
4049
|
-
'$.xgafv'?:
|
|
4284
|
+
'$.xgafv'?: '1' | '2';
|
|
4050
4285
|
/** OAuth access token. */
|
|
4051
4286
|
access_token?: string;
|
|
4052
4287
|
/** Data format for response. */
|
|
4053
|
-
alt?:
|
|
4288
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4054
4289
|
/** JSONP */
|
|
4055
4290
|
callback?: string;
|
|
4056
4291
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4073,11 +4308,11 @@ declare namespace gapi.client {
|
|
|
4073
4308
|
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
4074
4309
|
getIamPolicy(request?: {
|
|
4075
4310
|
/** V1 error format. */
|
|
4076
|
-
'$.xgafv'?:
|
|
4311
|
+
'$.xgafv'?: '1' | '2';
|
|
4077
4312
|
/** OAuth access token. */
|
|
4078
4313
|
access_token?: string;
|
|
4079
4314
|
/** Data format for response. */
|
|
4080
|
-
alt?:
|
|
4315
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4081
4316
|
/** JSONP */
|
|
4082
4317
|
callback?: string;
|
|
4083
4318
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4102,11 +4337,11 @@ declare namespace gapi.client {
|
|
|
4102
4337
|
/** Updates a single TeamFolder. */
|
|
4103
4338
|
patch(request: {
|
|
4104
4339
|
/** V1 error format. */
|
|
4105
|
-
'$.xgafv'?:
|
|
4340
|
+
'$.xgafv'?: '1' | '2';
|
|
4106
4341
|
/** OAuth access token. */
|
|
4107
4342
|
access_token?: string;
|
|
4108
4343
|
/** Data format for response. */
|
|
4109
|
-
alt?:
|
|
4344
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4110
4345
|
/** JSONP */
|
|
4111
4346
|
callback?: string;
|
|
4112
4347
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4133,11 +4368,11 @@ declare namespace gapi.client {
|
|
|
4133
4368
|
patch(
|
|
4134
4369
|
request: {
|
|
4135
4370
|
/** V1 error format. */
|
|
4136
|
-
'$.xgafv'?:
|
|
4371
|
+
'$.xgafv'?: '1' | '2';
|
|
4137
4372
|
/** OAuth access token. */
|
|
4138
4373
|
access_token?: string;
|
|
4139
4374
|
/** Data format for response. */
|
|
4140
|
-
alt?:
|
|
4375
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4141
4376
|
/** JSONP */
|
|
4142
4377
|
callback?: string;
|
|
4143
4378
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4164,22 +4399,22 @@ declare namespace gapi.client {
|
|
|
4164
4399
|
/** Returns the contents of a given TeamFolder. */
|
|
4165
4400
|
queryContents(request?: {
|
|
4166
4401
|
/** V1 error format. */
|
|
4167
|
-
'$.xgafv'?:
|
|
4402
|
+
'$.xgafv'?: '1' | '2';
|
|
4168
4403
|
/** OAuth access token. */
|
|
4169
4404
|
access_token?: string;
|
|
4170
4405
|
/** Data format for response. */
|
|
4171
|
-
alt?:
|
|
4406
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4172
4407
|
/** JSONP */
|
|
4173
4408
|
callback?: string;
|
|
4174
4409
|
/** Selector specifying which fields to include in a partial response. */
|
|
4175
4410
|
fields?: string;
|
|
4176
|
-
/** Optional. Optional filtering for the returned list. Filtering is currently only supported on the `display_name` field. Example:
|
|
4411
|
+
/** Optional. Optional filtering for the returned list. Filtering is currently only supported on the `display_name` field. Example: * `filter="display_name="MyFolder""` */
|
|
4177
4412
|
filter?: string;
|
|
4178
4413
|
/** 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. */
|
|
4179
4414
|
key?: string;
|
|
4180
4415
|
/** OAuth 2.0 token for the current user. */
|
|
4181
4416
|
oauth_token?: string;
|
|
4182
|
-
/** Optional. Field to additionally sort results by. Will order Folders before Repositories, and then by `order_by` in ascending order. Supported keywords: `display_name` (default), `create_time`, last_modified_time. Examples:
|
|
4417
|
+
/** Optional. Field to additionally sort results by. Will order Folders before Repositories, and then by `order_by` in ascending order. Supported keywords: `display_name` (default), `create_time`, last_modified_time. Examples: * `orderBy="display_name"` * `orderBy="display_name desc"` */
|
|
4183
4418
|
orderBy?: string;
|
|
4184
4419
|
/** Optional. Maximum number of paths to return. The server may return fewer items than requested. If unspecified, the server will pick an appropriate default. */
|
|
4185
4420
|
pageSize?: number;
|
|
@@ -4189,7 +4424,7 @@ declare namespace gapi.client {
|
|
|
4189
4424
|
prettyPrint?: boolean;
|
|
4190
4425
|
/** 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. */
|
|
4191
4426
|
quotaUser?: string;
|
|
4192
|
-
/** Required.
|
|
4427
|
+
/** Required. Resource name of the TeamFolder to list contents for. Format: `projects/*/locations/*/teamFolders/*`. */
|
|
4193
4428
|
teamFolder: string;
|
|
4194
4429
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
4195
4430
|
upload_protocol?: string;
|
|
@@ -4199,16 +4434,16 @@ declare namespace gapi.client {
|
|
|
4199
4434
|
/** Returns all TeamFolders in a given location that the caller has access to and match the provided filter. */
|
|
4200
4435
|
search(request?: {
|
|
4201
4436
|
/** V1 error format. */
|
|
4202
|
-
'$.xgafv'?:
|
|
4437
|
+
'$.xgafv'?: '1' | '2';
|
|
4203
4438
|
/** OAuth access token. */
|
|
4204
4439
|
access_token?: string;
|
|
4205
4440
|
/** Data format for response. */
|
|
4206
|
-
alt?:
|
|
4441
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4207
4442
|
/** JSONP */
|
|
4208
4443
|
callback?: string;
|
|
4209
4444
|
/** Selector specifying which fields to include in a partial response. */
|
|
4210
4445
|
fields?: string;
|
|
4211
|
-
/** Optional. Optional filtering for the returned list. Filtering is currently only supported on the `display_name` field. Example:
|
|
4446
|
+
/** Optional. Optional filtering for the returned list. Filtering is currently only supported on the `display_name` field. Example: * `filter="display_name="MyFolder""` */
|
|
4212
4447
|
filter?: string;
|
|
4213
4448
|
/** 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. */
|
|
4214
4449
|
key?: string;
|
|
@@ -4216,9 +4451,9 @@ declare namespace gapi.client {
|
|
|
4216
4451
|
location: string;
|
|
4217
4452
|
/** OAuth 2.0 token for the current user. */
|
|
4218
4453
|
oauth_token?: string;
|
|
4219
|
-
/** Optional. Field to additionally sort results by. Supported keywords: `display_name` (default), `create_time`, `last_modified_time`. Examples:
|
|
4454
|
+
/** 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"` */
|
|
4220
4455
|
orderBy?: string;
|
|
4221
|
-
/** Optional. Maximum number of TeamFolders to return. The server may return fewer items than requested. If unspecified, the server will pick
|
|
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. */
|
|
4222
4457
|
pageSize?: number;
|
|
4223
4458
|
/** 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. */
|
|
4224
4459
|
pageToken?: string;
|
|
@@ -4235,11 +4470,11 @@ declare namespace gapi.client {
|
|
|
4235
4470
|
setIamPolicy(
|
|
4236
4471
|
request: {
|
|
4237
4472
|
/** V1 error format. */
|
|
4238
|
-
'$.xgafv'?:
|
|
4473
|
+
'$.xgafv'?: '1' | '2';
|
|
4239
4474
|
/** OAuth access token. */
|
|
4240
4475
|
access_token?: string;
|
|
4241
4476
|
/** Data format for response. */
|
|
4242
|
-
alt?:
|
|
4477
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4243
4478
|
/** JSONP */
|
|
4244
4479
|
callback?: string;
|
|
4245
4480
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4265,11 +4500,11 @@ declare namespace gapi.client {
|
|
|
4265
4500
|
testIamPermissions(
|
|
4266
4501
|
request: {
|
|
4267
4502
|
/** V1 error format. */
|
|
4268
|
-
'$.xgafv'?:
|
|
4503
|
+
'$.xgafv'?: '1' | '2';
|
|
4269
4504
|
/** OAuth access token. */
|
|
4270
4505
|
access_token?: string;
|
|
4271
4506
|
/** Data format for response. */
|
|
4272
|
-
alt?:
|
|
4507
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4273
4508
|
/** JSONP */
|
|
4274
4509
|
callback?: string;
|
|
4275
4510
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4296,11 +4531,11 @@ declare namespace gapi.client {
|
|
|
4296
4531
|
/** Gets information about a location. */
|
|
4297
4532
|
get(request?: {
|
|
4298
4533
|
/** V1 error format. */
|
|
4299
|
-
'$.xgafv'?:
|
|
4534
|
+
'$.xgafv'?: '1' | '2';
|
|
4300
4535
|
/** OAuth access token. */
|
|
4301
4536
|
access_token?: string;
|
|
4302
4537
|
/** Data format for response. */
|
|
4303
|
-
alt?:
|
|
4538
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4304
4539
|
/** JSONP */
|
|
4305
4540
|
callback?: string;
|
|
4306
4541
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4323,11 +4558,11 @@ declare namespace gapi.client {
|
|
|
4323
4558
|
/** Get default config for a given project and location. */
|
|
4324
4559
|
getConfig(request?: {
|
|
4325
4560
|
/** V1 error format. */
|
|
4326
|
-
'$.xgafv'?:
|
|
4561
|
+
'$.xgafv'?: '1' | '2';
|
|
4327
4562
|
/** OAuth access token. */
|
|
4328
4563
|
access_token?: string;
|
|
4329
4564
|
/** Data format for response. */
|
|
4330
|
-
alt?:
|
|
4565
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4331
4566
|
/** JSONP */
|
|
4332
4567
|
callback?: string;
|
|
4333
4568
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4347,17 +4582,17 @@ declare namespace gapi.client {
|
|
|
4347
4582
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
4348
4583
|
uploadType?: string;
|
|
4349
4584
|
}): Request<Config>;
|
|
4350
|
-
/** Lists information about the supported locations for this service. This method
|
|
4585
|
+
/** Lists information about the supported locations for this service. This method lists locations based on the resource scope provided in the ListLocationsRequest.name field: * **Global locations**: If `name` is empty, the method lists the public locations available to all projects. * **Project-specific locations**: If `name` follows the format `projects/{project}`, the method lists locations visible to that specific project. This includes public, private, or other project-specific locations enabled for the project. For gRPC and client library implementations, the resource name is passed as the `name` field. For direct service calls, the resource name is incorporated into the request path based on the specific service implementation and version. */
|
|
4351
4586
|
list(request?: {
|
|
4352
4587
|
/** V1 error format. */
|
|
4353
|
-
'$.xgafv'?:
|
|
4588
|
+
'$.xgafv'?: '1' | '2';
|
|
4354
4589
|
/** OAuth access token. */
|
|
4355
4590
|
access_token?: string;
|
|
4356
4591
|
/** Data format for response. */
|
|
4357
|
-
alt?:
|
|
4592
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4358
4593
|
/** JSONP */
|
|
4359
4594
|
callback?: string;
|
|
4360
|
-
/** Optional. Do not use this field
|
|
4595
|
+
/** Optional. Do not use this field unless explicitly documented otherwise. This is primarily for internal usage. */
|
|
4361
4596
|
extraLocationTypes?: string | string[];
|
|
4362
4597
|
/** Selector specifying which fields to include in a partial response. */
|
|
4363
4598
|
fields?: string;
|
|
@@ -4385,24 +4620,24 @@ declare namespace gapi.client {
|
|
|
4385
4620
|
/** Returns the contents of a caller's root folder in a given location. The root folder contains all resources that are created by the user and not contained in any other folder. */
|
|
4386
4621
|
queryUserRootContents(request?: {
|
|
4387
4622
|
/** V1 error format. */
|
|
4388
|
-
'$.xgafv'?:
|
|
4623
|
+
'$.xgafv'?: '1' | '2';
|
|
4389
4624
|
/** OAuth access token. */
|
|
4390
4625
|
access_token?: string;
|
|
4391
4626
|
/** Data format for response. */
|
|
4392
|
-
alt?:
|
|
4627
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4393
4628
|
/** JSONP */
|
|
4394
4629
|
callback?: string;
|
|
4395
4630
|
/** Selector specifying which fields to include in a partial response. */
|
|
4396
4631
|
fields?: string;
|
|
4397
|
-
/** Optional. Optional filtering for the returned list. Filtering is currently only supported on the `display_name` field. Example:
|
|
4632
|
+
/** Optional. Optional filtering for the returned list. Filtering is currently only supported on the `display_name` field. Example: * `filter="display_name="MyFolder""` */
|
|
4398
4633
|
filter?: string;
|
|
4399
4634
|
/** 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. */
|
|
4400
4635
|
key?: string;
|
|
4401
|
-
/** Required. Location of the user root folder
|
|
4636
|
+
/** Required. Location of the user root folder to list contents for. Format: projects/*/locations/* */
|
|
4402
4637
|
location: string;
|
|
4403
4638
|
/** OAuth 2.0 token for the current user. */
|
|
4404
4639
|
oauth_token?: string;
|
|
4405
|
-
/** Optional. Field to additionally sort results by. Will order Folders before Repositories, and then by `order_by` in ascending order. Supported keywords: display_name (default), created_at, last_modified_at. Examples:
|
|
4640
|
+
/** Optional. Field to additionally sort results by. Will order Folders before Repositories, and then by `order_by` in ascending order. Supported keywords: display_name (default), created_at, last_modified_at. Examples: * `orderBy="display_name"` * `orderBy="display_name desc"` */
|
|
4406
4641
|
orderBy?: string;
|
|
4407
4642
|
/** Optional. Maximum number of paths to return. The server may return fewer items than requested. If unspecified, the server will pick an appropriate default. */
|
|
4408
4643
|
pageSize?: number;
|
|
@@ -4420,11 +4655,11 @@ declare namespace gapi.client {
|
|
|
4420
4655
|
/** Update default config for a given project and location. **Note:** *This method does not fully implement [AIP/134](https://google.aip.dev/134). The wildcard entry (\*) is treated as a bad request, and when the `field_mask` is omitted, the request is treated as a full update on all modifiable fields.* */
|
|
4421
4656
|
updateConfig(request: {
|
|
4422
4657
|
/** V1 error format. */
|
|
4423
|
-
'$.xgafv'?:
|
|
4658
|
+
'$.xgafv'?: '1' | '2';
|
|
4424
4659
|
/** OAuth access token. */
|
|
4425
4660
|
access_token?: string;
|
|
4426
4661
|
/** Data format for response. */
|
|
4427
|
-
alt?:
|
|
4662
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4428
4663
|
/** JSONP */
|
|
4429
4664
|
callback?: string;
|
|
4430
4665
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -4451,11 +4686,11 @@ declare namespace gapi.client {
|
|
|
4451
4686
|
updateConfig(
|
|
4452
4687
|
request: {
|
|
4453
4688
|
/** V1 error format. */
|
|
4454
|
-
'$.xgafv'?:
|
|
4689
|
+
'$.xgafv'?: '1' | '2';
|
|
4455
4690
|
/** OAuth access token. */
|
|
4456
4691
|
access_token?: string;
|
|
4457
4692
|
/** Data format for response. */
|
|
4458
|
-
alt?:
|
|
4693
|
+
alt?: 'json' | 'media' | 'proto';
|
|
4459
4694
|
/** JSONP */
|
|
4460
4695
|
callback?: string;
|
|
4461
4696
|
/** Selector specifying which fields to include in a partial response. */
|