google-cloud-bigquery-data_transfer-v1 0.13.0 → 0.13.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/google/cloud/bigquery/data_transfer/v1/data_transfer_service/client.rb +2 -1
- data/lib/google/cloud/bigquery/data_transfer/v1/data_transfer_service/rest/client.rb +2 -1
- data/lib/google/cloud/bigquery/data_transfer/v1/version.rb +1 -1
- data/lib/google/cloud/bigquery/datatransfer/v1/datatransfer_services_pb.rb +2 -1
- data/proto_docs/google/cloud/bigquery/datatransfer/v1/transfer.rb +8 -9
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d79b6f16c8422ed2328e616f58c17073a2746991ca7b68e9a7ea2cca52a21749
|
4
|
+
data.tar.gz: dba09c970aebc682a51000384267bcd540e25cf44dfac048af77aba71346cc70
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 38cfaf305925fd8efbd2838a94bb803b62de8fe5145a436ca217f64683a88f61713a844019663f8ca18151fb00d4effc316f6a7b6866409bb04295f2f9368cb9
|
7
|
+
data.tar.gz: 23176add299305f850a68d38a4bb70fbeb2054f364078a547838d7465fc3148e96fad94bc6cec1bc6710438e418e0ce14ee6713e86c4b3608610f45f7772f880
|
@@ -1726,7 +1726,8 @@ module Google
|
|
1726
1726
|
# Unenroll data sources in a user project. This allows users to remove
|
1727
1727
|
# transfer configurations for these data sources. They will no longer appear
|
1728
1728
|
# in the ListDataSources RPC and will also no longer appear in the [BigQuery
|
1729
|
-
# UI](https://console.cloud.google.com/bigquery).
|
1729
|
+
# UI](https://console.cloud.google.com/bigquery). Data transfers
|
1730
|
+
# configurations of unenrolled data sources will not be scheduled.
|
1730
1731
|
#
|
1731
1732
|
# @overload unenroll_data_sources(request, options = nil)
|
1732
1733
|
# Pass arguments to `unenroll_data_sources` via a request object, either of type
|
@@ -1613,7 +1613,8 @@ module Google
|
|
1613
1613
|
# Unenroll data sources in a user project. This allows users to remove
|
1614
1614
|
# transfer configurations for these data sources. They will no longer appear
|
1615
1615
|
# in the ListDataSources RPC and will also no longer appear in the [BigQuery
|
1616
|
-
# UI](https://console.cloud.google.com/bigquery).
|
1616
|
+
# UI](https://console.cloud.google.com/bigquery). Data transfers
|
1617
|
+
# configurations of unenrolled data sources will not be scheduled.
|
1617
1618
|
#
|
1618
1619
|
# @overload unenroll_data_sources(request, options = nil)
|
1619
1620
|
# Pass arguments to `unenroll_data_sources` via a request object, either of type
|
@@ -85,7 +85,8 @@ module Google
|
|
85
85
|
# Unenroll data sources in a user project. This allows users to remove
|
86
86
|
# transfer configurations for these data sources. They will no longer appear
|
87
87
|
# in the ListDataSources RPC and will also no longer appear in the [BigQuery
|
88
|
-
# UI](https://console.cloud.google.com/bigquery).
|
88
|
+
# UI](https://console.cloud.google.com/bigquery). Data transfers
|
89
|
+
# configurations of unenrolled data sources will not be scheduled.
|
89
90
|
rpc :UnenrollDataSources, ::Google::Cloud::Bigquery::DataTransfer::V1::UnenrollDataSourcesRequest, ::Google::Protobuf::Empty
|
90
91
|
end
|
91
92
|
|
@@ -44,13 +44,13 @@ module Google
|
|
44
44
|
# Specifies time to start scheduling transfer runs. The first run will be
|
45
45
|
# scheduled at or after the start time according to a recurrence pattern
|
46
46
|
# defined in the schedule string. The start time can be changed at any
|
47
|
-
# moment. The time when a data transfer can be
|
47
|
+
# moment. The time when a data transfer can be triggered manually is not
|
48
48
|
# limited by this option.
|
49
49
|
# @!attribute [rw] end_time
|
50
50
|
# @return [::Google::Protobuf::Timestamp]
|
51
51
|
# Defines time to stop scheduling transfer runs. A transfer run cannot be
|
52
52
|
# scheduled at or after the end time. The end time can be changed at any
|
53
|
-
# moment. The time when a data transfer can be
|
53
|
+
# moment. The time when a data transfer can be triggered manually is not
|
54
54
|
# limited by this option.
|
55
55
|
class ScheduleOptions
|
56
56
|
include ::Google::Protobuf::MessageExts
|
@@ -102,8 +102,7 @@ module Google
|
|
102
102
|
# @return [::String]
|
103
103
|
# Data transfer schedule.
|
104
104
|
# If the data source does not support a custom schedule, this should be
|
105
|
-
# empty. If it is empty, the default value for the data source will be
|
106
|
-
# used.
|
105
|
+
# empty. If it is empty, the default value for the data source will be used.
|
107
106
|
# The specified times are in UTC.
|
108
107
|
# Examples of valid format:
|
109
108
|
# `1st,3rd monday of month 15:30`,
|
@@ -123,12 +122,12 @@ module Google
|
|
123
122
|
# For example, if `data_refresh_window_days = 10`, then every day
|
124
123
|
# BigQuery reingests data for [today-10, today-1], rather than ingesting data
|
125
124
|
# for just [today-1].
|
126
|
-
# Only valid if the data source supports the feature. Set the value to
|
125
|
+
# Only valid if the data source supports the feature. Set the value to 0
|
127
126
|
# to use the default value.
|
128
127
|
# @!attribute [rw] disabled
|
129
128
|
# @return [::Boolean]
|
130
|
-
# Is this config disabled. When set to true, no runs
|
131
|
-
#
|
129
|
+
# Is this config disabled. When set to true, no runs will be scheduled for
|
130
|
+
# this transfer config.
|
132
131
|
# @!attribute [r] update_time
|
133
132
|
# @return [::Google::Protobuf::Timestamp]
|
134
133
|
# Output only. Data transfer modification time. Ignored by server on input.
|
@@ -150,7 +149,7 @@ module Google
|
|
150
149
|
# associated with this transfer config finish.
|
151
150
|
#
|
152
151
|
# The format for specifying a pubsub topic is:
|
153
|
-
# `projects/{
|
152
|
+
# `projects/{project_id}/topics/{topic_id}`
|
154
153
|
# @!attribute [rw] email_preferences
|
155
154
|
# @return [::Google::Cloud::Bigquery::DataTransfer::V1::EmailPreferences]
|
156
155
|
# Email notifications will be sent according to these preferences
|
@@ -241,7 +240,7 @@ module Google
|
|
241
240
|
# transfer run finishes.
|
242
241
|
#
|
243
242
|
# The format for specifying a pubsub topic is:
|
244
|
-
# `projects/{
|
243
|
+
# `projects/{project_id}/topics/{topic_id}`
|
245
244
|
# @!attribute [r] email_preferences
|
246
245
|
# @return [::Google::Cloud::Bigquery::DataTransfer::V1::EmailPreferences]
|
247
246
|
# Output only. Email notifications will be sent according to these
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-bigquery-data_transfer-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.13.
|
4
|
+
version: 0.13.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-02-
|
11
|
+
date: 2024-02-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|