@maxim_mazurok/gapi.client.bigquerydatatransfer-v1 0.0.20240130 → 0.0.20240202
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +7 -7
- 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: 20240202
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -163,9 +163,9 @@ declare namespace gapi.client {
|
|
|
163
163
|
interface ScheduleOptions {
|
|
164
164
|
/** If true, automatic scheduling of data transfer runs for this configuration will be disabled. The runs can be started on ad-hoc basis using StartManualTransferRuns API. When automatic scheduling is disabled, the TransferConfig.schedule field will be ignored. */
|
|
165
165
|
disableAutoScheduling?: boolean;
|
|
166
|
-
/** Defines time to stop scheduling transfer runs. A transfer run cannot be scheduled at or after the end time. The end time can be changed at any moment. The time when a data transfer can be
|
|
166
|
+
/** Defines time to stop scheduling transfer runs. A transfer run cannot be scheduled at or after the end time. The end time can be changed at any moment. The time when a data transfer can be triggered manually is not limited by this option. */
|
|
167
167
|
endTime?: string;
|
|
168
|
-
/** Specifies time to start scheduling transfer runs. The first run will be scheduled at or after the start time according to a recurrence pattern defined in the schedule string. The start time can be changed at any moment. The time when a data transfer can be
|
|
168
|
+
/** Specifies time to start scheduling transfer runs. The first run will be scheduled at or after the start time according to a recurrence pattern defined in the schedule string. The start time can be changed at any moment. The time when a data transfer can be triggered manually is not limited by this option. */
|
|
169
169
|
startTime?: string;
|
|
170
170
|
}
|
|
171
171
|
interface ScheduleTransferRunsRequest {
|
|
@@ -211,7 +211,7 @@ declare namespace gapi.client {
|
|
|
211
211
|
dataSourceId?: string;
|
|
212
212
|
/** The BigQuery target dataset id. */
|
|
213
213
|
destinationDatasetId?: string;
|
|
214
|
-
/** Is this config disabled. When set to true, no runs
|
|
214
|
+
/** Is this config disabled. When set to true, no runs will be scheduled for this transfer config. */
|
|
215
215
|
disabled?: boolean;
|
|
216
216
|
/** User specified display name for the data transfer. */
|
|
217
217
|
displayName?: string;
|
|
@@ -223,7 +223,7 @@ declare namespace gapi.client {
|
|
|
223
223
|
name?: string;
|
|
224
224
|
/** Output only. Next time when data transfer will run. */
|
|
225
225
|
nextRunTime?: string;
|
|
226
|
-
/** Pub/Sub topic where notifications will be sent after transfer runs associated with this transfer config finish. The format for specifying a pubsub topic is: `projects/{
|
|
226
|
+
/** Pub/Sub topic where notifications will be sent after transfer runs associated with this transfer config finish. The format for specifying a pubsub topic is: `projects/{project_id}/topics/{topic_id}` */
|
|
227
227
|
notificationPubsubTopic?: string;
|
|
228
228
|
/** Output only. Information about the user whose credentials are used to transfer data. Populated only for `transferConfigs.get` requests. In case the user information is not available, this field will not be populated. */
|
|
229
229
|
ownerInfo?: UserInfo;
|
|
@@ -261,7 +261,7 @@ declare namespace gapi.client {
|
|
|
261
261
|
errorStatus?: Status;
|
|
262
262
|
/** The resource name of the transfer run. Transfer run names have the form `projects/{project_id}/locations/{location}/transferConfigs/{config_id}/runs/{run_id}`. The name is ignored when creating a transfer run. */
|
|
263
263
|
name?: string;
|
|
264
|
-
/** Output only. Pub/Sub topic where a notification will be sent after this transfer run finishes. The format for specifying a pubsub topic is: `projects/{
|
|
264
|
+
/** Output only. Pub/Sub topic where a notification will be sent after this transfer run finishes. The format for specifying a pubsub topic is: `projects/{project_id}/topics/{topic_id}` */
|
|
265
265
|
notificationPubsubTopic?: string;
|
|
266
266
|
/** Output only. Parameters specific to each data source. For more information see the bq tab in the 'Setting up a data transfer' section for each data source. For example the parameters for Cloud Storage transfers are listed here: https://cloud.google.com/bigquery-transfer/docs/cloud-storage-transfer#bq */
|
|
267
267
|
params?: {[P in string]: any};
|
|
@@ -1120,7 +1120,7 @@ declare namespace gapi.client {
|
|
|
1120
1120
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1121
1121
|
uploadType?: string;
|
|
1122
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). */
|
|
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). Data transfers configurations of unenrolled data sources will not be scheduled. */
|
|
1124
1124
|
unenrollDataSources(request: {
|
|
1125
1125
|
/** V1 error format. */
|
|
1126
1126
|
'$.xgafv'?: string;
|