Skip to content

Commit 1608c32

Browse files
Google APIscopybara-github
authored andcommitted
docs: update unenrollDataSources API documentation
PiperOrigin-RevId: 608888275
1 parent f959299 commit 1608c32

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

google/cloud/bigquery/datatransfer/v1/datatransfer.proto

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,8 @@ service DataTransferService {
240240
// Unenroll data sources in a user project. This allows users to remove
241241
// transfer configurations for these data sources. They will no longer appear
242242
// in the ListDataSources RPC and will also no longer appear in the [BigQuery
243-
// UI](https://console.cloud.google.com/bigquery).
243+
// UI](https://console.cloud.google.com/bigquery). Data transfers
244+
// configurations of unenrolled data sources will not be scheduled.
244245
rpc UnenrollDataSources(UnenrollDataSourcesRequest)
245246
returns (google.protobuf.Empty) {
246247
option (google.api.http) = {

google/cloud/bigquery/datatransfer/v1/transfer.proto

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,13 @@ message ScheduleOptions {
8787
// Specifies time to start scheduling transfer runs. The first run will be
8888
// scheduled at or after the start time according to a recurrence pattern
8989
// defined in the schedule string. The start time can be changed at any
90-
// moment. The time when a data transfer can be trigerred manually is not
90+
// moment. The time when a data transfer can be triggered manually is not
9191
// limited by this option.
9292
google.protobuf.Timestamp start_time = 1;
9393

9494
// Defines time to stop scheduling transfer runs. A transfer run cannot be
9595
// scheduled at or after the end time. The end time can be changed at any
96-
// moment. The time when a data transfer can be trigerred manually is not
96+
// moment. The time when a data transfer can be triggered manually is not
9797
// limited by this option.
9898
google.protobuf.Timestamp end_time = 2;
9999
}
@@ -148,8 +148,7 @@ message TransferConfig {
148148

149149
// Data transfer schedule.
150150
// If the data source does not support a custom schedule, this should be
151-
// empty. If it is empty, the default value for the data source will be
152-
// used.
151+
// empty. If it is empty, the default value for the data source will be used.
153152
// The specified times are in UTC.
154153
// Examples of valid format:
155154
// `1st,3rd monday of month 15:30`,
@@ -169,12 +168,12 @@ message TransferConfig {
169168
// For example, if `data_refresh_window_days = 10`, then every day
170169
// BigQuery reingests data for [today-10, today-1], rather than ingesting data
171170
// for just [today-1].
172-
// Only valid if the data source supports the feature. Set the value to 0
171+
// Only valid if the data source supports the feature. Set the value to 0
173172
// to use the default value.
174173
int32 data_refresh_window_days = 12;
175174

176-
// Is this config disabled. When set to true, no runs are scheduled
177-
// for a given transfer.
175+
// Is this config disabled. When set to true, no runs will be scheduled for
176+
// this transfer config.
178177
bool disabled = 13;
179178

180179
// Output only. Data transfer modification time. Ignored by server on input.
@@ -198,7 +197,7 @@ message TransferConfig {
198197
// associated with this transfer config finish.
199198
//
200199
// The format for specifying a pubsub topic is:
201-
// `projects/{project}/topics/{topic}`
200+
// `projects/{project_id}/topics/{topic_id}`
202201
string notification_pubsub_topic = 15;
203202

204203
// Email notifications will be sent according to these preferences
@@ -296,7 +295,7 @@ message TransferRun {
296295
// transfer run finishes.
297296
//
298297
// The format for specifying a pubsub topic is:
299-
// `projects/{project}/topics/{topic}`
298+
// `projects/{project_id}/topics/{topic_id}`
300299
string notification_pubsub_topic = 23
301300
[(google.api.field_behavior) = OUTPUT_ONLY];
302301

0 commit comments

Comments
 (0)