@maxim_mazurok/gapi.client.bigquerydatatransfer-v1 0.0.20240113 → 0.0.20240130
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 +63 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://bigquerydatatransfer.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240130
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -280,6 +280,10 @@ declare namespace gapi.client {
|
|
|
280
280
|
/** Deprecated. Unique ID of the user on whose behalf transfer is done. */
|
|
281
281
|
userId?: string;
|
|
282
282
|
}
|
|
283
|
+
interface UnenrollDataSourcesRequest {
|
|
284
|
+
/** Data sources that are unenrolled. It is required to provide at least one data source id. */
|
|
285
|
+
dataSourceIds?: string[];
|
|
286
|
+
}
|
|
283
287
|
interface UserInfo {
|
|
284
288
|
/** E-mail address of the user. */
|
|
285
289
|
email?: string;
|
|
@@ -1116,6 +1120,64 @@ declare namespace gapi.client {
|
|
|
1116
1120
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1117
1121
|
uploadType?: string;
|
|
1118
1122
|
}): Request<ListLocationsResponse>;
|
|
1123
|
+
/** Unenroll data sources in a user project. This allows users to remove transfer configurations for these data sources. They will no longer appear in the ListDataSources RPC and will also no longer appear in the [BigQuery UI](https://console.cloud.google.com/bigquery). */
|
|
1124
|
+
unenrollDataSources(request: {
|
|
1125
|
+
/** V1 error format. */
|
|
1126
|
+
'$.xgafv'?: string;
|
|
1127
|
+
/** OAuth access token. */
|
|
1128
|
+
access_token?: string;
|
|
1129
|
+
/** Data format for response. */
|
|
1130
|
+
alt?: string;
|
|
1131
|
+
/** JSONP */
|
|
1132
|
+
callback?: string;
|
|
1133
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1134
|
+
fields?: string;
|
|
1135
|
+
/** 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. */
|
|
1136
|
+
key?: string;
|
|
1137
|
+
/** The name of the project resource in the form: `projects/{project_id}` */
|
|
1138
|
+
name: string;
|
|
1139
|
+
/** OAuth 2.0 token for the current user. */
|
|
1140
|
+
oauth_token?: string;
|
|
1141
|
+
/** Returns response with indentations and line breaks. */
|
|
1142
|
+
prettyPrint?: boolean;
|
|
1143
|
+
/** 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. */
|
|
1144
|
+
quotaUser?: string;
|
|
1145
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1146
|
+
upload_protocol?: string;
|
|
1147
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1148
|
+
uploadType?: string;
|
|
1149
|
+
/** Request body */
|
|
1150
|
+
resource: UnenrollDataSourcesRequest;
|
|
1151
|
+
}): Request<{}>;
|
|
1152
|
+
unenrollDataSources(
|
|
1153
|
+
request: {
|
|
1154
|
+
/** V1 error format. */
|
|
1155
|
+
'$.xgafv'?: string;
|
|
1156
|
+
/** OAuth access token. */
|
|
1157
|
+
access_token?: string;
|
|
1158
|
+
/** Data format for response. */
|
|
1159
|
+
alt?: string;
|
|
1160
|
+
/** JSONP */
|
|
1161
|
+
callback?: string;
|
|
1162
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1163
|
+
fields?: string;
|
|
1164
|
+
/** 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. */
|
|
1165
|
+
key?: string;
|
|
1166
|
+
/** The name of the project resource in the form: `projects/{project_id}` */
|
|
1167
|
+
name: string;
|
|
1168
|
+
/** OAuth 2.0 token for the current user. */
|
|
1169
|
+
oauth_token?: string;
|
|
1170
|
+
/** Returns response with indentations and line breaks. */
|
|
1171
|
+
prettyPrint?: boolean;
|
|
1172
|
+
/** 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. */
|
|
1173
|
+
quotaUser?: string;
|
|
1174
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1175
|
+
upload_protocol?: string;
|
|
1176
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1177
|
+
uploadType?: string;
|
|
1178
|
+
},
|
|
1179
|
+
body: UnenrollDataSourcesRequest
|
|
1180
|
+
): Request<{}>;
|
|
1119
1181
|
dataSources: DataSourcesResource;
|
|
1120
1182
|
transferConfigs: TransferConfigsResource;
|
|
1121
1183
|
}
|