google-cloud-bigquery-data_transfer-v1 0.1.0 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.yardopts +1 -1
- data/AUTHENTICATION.md +6 -6
- data/README.md +7 -3
- data/lib/google/cloud/bigquery/data_transfer/v1.rb +1 -1
- data/lib/google/cloud/bigquery/data_transfer/v1/data_transfer_service.rb +1 -1
- data/lib/google/cloud/bigquery/data_transfer/v1/data_transfer_service/client.rb +297 -292
- data/lib/google/cloud/bigquery/data_transfer/v1/data_transfer_service/credentials.rb +1 -1
- data/lib/google/cloud/bigquery/data_transfer/v1/data_transfer_service/paths.rb +20 -20
- data/lib/google/cloud/bigquery/data_transfer/v1/version.rb +1 -1
- data/proto_docs/README.md +1 -1
- data/proto_docs/google/api/resource.rb +12 -12
- data/proto_docs/google/cloud/bigquery/datatransfer/v1/datatransfer.rb +133 -133
- data/proto_docs/google/cloud/bigquery/datatransfer/v1/transfer.rb +48 -48
- data/proto_docs/google/protobuf/any.rb +4 -4
- data/proto_docs/google/protobuf/duration.rb +4 -4
- data/proto_docs/google/protobuf/empty.rb +2 -2
- data/proto_docs/google/protobuf/field_mask.rb +3 -3
- data/proto_docs/google/protobuf/struct.rb +18 -18
- data/proto_docs/google/protobuf/timestamp.rb +4 -4
- data/proto_docs/google/protobuf/wrappers.rb +27 -27
- data/proto_docs/google/rpc/status.rb +6 -6
- metadata +34 -7
- data/lib/google/cloud/common_resources_pb.rb +0 -15
@@ -25,36 +25,36 @@ module Google
|
|
25
25
|
# Represents preferences for sending email notifications for transfer run
|
26
26
|
# events.
|
27
27
|
# @!attribute [rw] enable_failure_email
|
28
|
-
# @return [Boolean]
|
28
|
+
# @return [::Boolean]
|
29
29
|
# If true, email notifications will be sent on transfer run failures.
|
30
30
|
class EmailPreferences
|
31
|
-
include Google::Protobuf::MessageExts
|
32
|
-
extend Google::Protobuf::MessageExts::ClassMethods
|
31
|
+
include ::Google::Protobuf::MessageExts
|
32
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
33
33
|
end
|
34
34
|
|
35
35
|
# Options customizing the data transfer schedule.
|
36
36
|
# @!attribute [rw] disable_auto_scheduling
|
37
|
-
# @return [Boolean]
|
37
|
+
# @return [::Boolean]
|
38
38
|
# If true, automatic scheduling of data transfer runs for this configuration
|
39
39
|
# will be disabled. The runs can be started on ad-hoc basis using
|
40
40
|
# StartManualTransferRuns API. When automatic scheduling is disabled, the
|
41
41
|
# TransferConfig.schedule field will be ignored.
|
42
42
|
# @!attribute [rw] start_time
|
43
|
-
# @return [Google::Protobuf::Timestamp]
|
43
|
+
# @return [::Google::Protobuf::Timestamp]
|
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
47
|
# moment. The time when a data transfer can be trigerred manually is not
|
48
48
|
# limited by this option.
|
49
49
|
# @!attribute [rw] end_time
|
50
|
-
# @return [Google::Protobuf::Timestamp]
|
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
53
|
# moment. The time when a data transfer can be trigerred manually is not
|
54
54
|
# limited by this option.
|
55
55
|
class ScheduleOptions
|
56
|
-
include Google::Protobuf::MessageExts
|
57
|
-
extend Google::Protobuf::MessageExts::ClassMethods
|
56
|
+
include ::Google::Protobuf::MessageExts
|
57
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
58
58
|
end
|
59
59
|
|
60
60
|
# Represents a data transfer configuration. A transfer configuration
|
@@ -64,7 +64,7 @@ module Google
|
|
64
64
|
# `destination_dataset_id` is created when needed and shared with the
|
65
65
|
# appropriate data source service account.
|
66
66
|
# @!attribute [rw] name
|
67
|
-
# @return [String]
|
67
|
+
# @return [::String]
|
68
68
|
# The resource name of the transfer config.
|
69
69
|
# Transfer config names have the form of
|
70
70
|
# `projects/{project_id}/locations/{region}/transferConfigs/{config_id}`.
|
@@ -73,19 +73,19 @@ module Google
|
|
73
73
|
# is not provided, usually a uuid, even though it is not guaranteed or
|
74
74
|
# required, will be generated for config_id.
|
75
75
|
# @!attribute [rw] destination_dataset_id
|
76
|
-
# @return [String]
|
76
|
+
# @return [::String]
|
77
77
|
# The BigQuery target dataset id.
|
78
78
|
# @!attribute [rw] display_name
|
79
|
-
# @return [String]
|
79
|
+
# @return [::String]
|
80
80
|
# User specified display name for the data transfer.
|
81
81
|
# @!attribute [rw] data_source_id
|
82
|
-
# @return [String]
|
82
|
+
# @return [::String]
|
83
83
|
# Data source id. Cannot be changed once data transfer is created.
|
84
84
|
# @!attribute [rw] params
|
85
|
-
# @return [Google::Protobuf::Struct]
|
85
|
+
# @return [::Google::Protobuf::Struct]
|
86
86
|
# Data transfer specific parameters.
|
87
87
|
# @!attribute [rw] schedule
|
88
|
-
# @return [String]
|
88
|
+
# @return [::String]
|
89
89
|
# Data transfer schedule.
|
90
90
|
# If the data source does not support a custom schedule, this should be
|
91
91
|
# empty. If it is empty, the default value for the data source will be
|
@@ -99,10 +99,10 @@ module Google
|
|
99
99
|
# https://cloud.google.com/appengine/docs/flexible/python/scheduling-jobs-with-cron-yaml#the_schedule_format
|
100
100
|
# NOTE: the granularity should be at least 8 hours, or less frequent.
|
101
101
|
# @!attribute [rw] schedule_options
|
102
|
-
# @return [Google::Cloud::Bigquery::DataTransfer::V1::ScheduleOptions]
|
102
|
+
# @return [::Google::Cloud::Bigquery::DataTransfer::V1::ScheduleOptions]
|
103
103
|
# Options customizing the data transfer schedule.
|
104
104
|
# @!attribute [rw] data_refresh_window_days
|
105
|
-
# @return [Integer]
|
105
|
+
# @return [::Integer]
|
106
106
|
# The number of days to look back to automatically refresh the data.
|
107
107
|
# For example, if `data_refresh_window_days = 10`, then every day
|
108
108
|
# BigQuery reingests data for [today-10, today-1], rather than ingesting data
|
@@ -110,114 +110,114 @@ module Google
|
|
110
110
|
# Only valid if the data source supports the feature. Set the value to 0
|
111
111
|
# to use the default value.
|
112
112
|
# @!attribute [rw] disabled
|
113
|
-
# @return [Boolean]
|
113
|
+
# @return [::Boolean]
|
114
114
|
# Is this config disabled. When set to true, no runs are scheduled
|
115
115
|
# for a given transfer.
|
116
116
|
# @!attribute [r] update_time
|
117
|
-
# @return [Google::Protobuf::Timestamp]
|
117
|
+
# @return [::Google::Protobuf::Timestamp]
|
118
118
|
# Output only. Data transfer modification time. Ignored by server on input.
|
119
119
|
# @!attribute [r] next_run_time
|
120
|
-
# @return [Google::Protobuf::Timestamp]
|
120
|
+
# @return [::Google::Protobuf::Timestamp]
|
121
121
|
# Output only. Next time when data transfer will run.
|
122
122
|
# @!attribute [r] state
|
123
|
-
# @return [Google::Cloud::Bigquery::DataTransfer::V1::TransferState]
|
123
|
+
# @return [::Google::Cloud::Bigquery::DataTransfer::V1::TransferState]
|
124
124
|
# Output only. State of the most recently updated transfer run.
|
125
125
|
# @!attribute [rw] user_id
|
126
|
-
# @return [Integer]
|
126
|
+
# @return [::Integer]
|
127
127
|
# Deprecated. Unique ID of the user on whose behalf transfer is done.
|
128
128
|
# @!attribute [r] dataset_region
|
129
|
-
# @return [String]
|
129
|
+
# @return [::String]
|
130
130
|
# Output only. Region in which BigQuery dataset is located.
|
131
131
|
# @!attribute [rw] notification_pubsub_topic
|
132
|
-
# @return [String]
|
132
|
+
# @return [::String]
|
133
133
|
# Pub/Sub topic where notifications will be sent after transfer runs
|
134
134
|
# associated with this transfer config finish.
|
135
135
|
# @!attribute [rw] email_preferences
|
136
|
-
# @return [Google::Cloud::Bigquery::DataTransfer::V1::EmailPreferences]
|
136
|
+
# @return [::Google::Cloud::Bigquery::DataTransfer::V1::EmailPreferences]
|
137
137
|
# Email notifications will be sent according to these preferences
|
138
138
|
# to the email address of the user who owns this transfer config.
|
139
139
|
class TransferConfig
|
140
|
-
include Google::Protobuf::MessageExts
|
141
|
-
extend Google::Protobuf::MessageExts::ClassMethods
|
140
|
+
include ::Google::Protobuf::MessageExts
|
141
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
142
142
|
end
|
143
143
|
|
144
144
|
# Represents a data transfer run.
|
145
145
|
# @!attribute [rw] name
|
146
|
-
# @return [String]
|
146
|
+
# @return [::String]
|
147
147
|
# The resource name of the transfer run.
|
148
148
|
# Transfer run names have the form
|
149
149
|
# `projects/{project_id}/locations/{location}/transferConfigs/{config_id}/runs/{run_id}`.
|
150
150
|
# The name is ignored when creating a transfer run.
|
151
151
|
# @!attribute [rw] schedule_time
|
152
|
-
# @return [Google::Protobuf::Timestamp]
|
152
|
+
# @return [::Google::Protobuf::Timestamp]
|
153
153
|
# Minimum time after which a transfer run can be started.
|
154
154
|
# @!attribute [rw] run_time
|
155
|
-
# @return [Google::Protobuf::Timestamp]
|
155
|
+
# @return [::Google::Protobuf::Timestamp]
|
156
156
|
# For batch transfer runs, specifies the date and time of the data should be
|
157
157
|
# ingested.
|
158
158
|
# @!attribute [rw] error_status
|
159
|
-
# @return [Google::Rpc::Status]
|
159
|
+
# @return [::Google::Rpc::Status]
|
160
160
|
# Status of the transfer run.
|
161
161
|
# @!attribute [r] start_time
|
162
|
-
# @return [Google::Protobuf::Timestamp]
|
162
|
+
# @return [::Google::Protobuf::Timestamp]
|
163
163
|
# Output only. Time when transfer run was started.
|
164
164
|
# Parameter ignored by server for input requests.
|
165
165
|
# @!attribute [r] end_time
|
166
|
-
# @return [Google::Protobuf::Timestamp]
|
166
|
+
# @return [::Google::Protobuf::Timestamp]
|
167
167
|
# Output only. Time when transfer run ended.
|
168
168
|
# Parameter ignored by server for input requests.
|
169
169
|
# @!attribute [r] update_time
|
170
|
-
# @return [Google::Protobuf::Timestamp]
|
170
|
+
# @return [::Google::Protobuf::Timestamp]
|
171
171
|
# Output only. Last time the data transfer run state was updated.
|
172
172
|
# @!attribute [r] params
|
173
|
-
# @return [Google::Protobuf::Struct]
|
173
|
+
# @return [::Google::Protobuf::Struct]
|
174
174
|
# Output only. Data transfer specific parameters.
|
175
175
|
# @!attribute [r] destination_dataset_id
|
176
|
-
# @return [String]
|
176
|
+
# @return [::String]
|
177
177
|
# Output only. The BigQuery target dataset id.
|
178
178
|
# @!attribute [r] data_source_id
|
179
|
-
# @return [String]
|
179
|
+
# @return [::String]
|
180
180
|
# Output only. Data source id.
|
181
181
|
# @!attribute [rw] state
|
182
|
-
# @return [Google::Cloud::Bigquery::DataTransfer::V1::TransferState]
|
182
|
+
# @return [::Google::Cloud::Bigquery::DataTransfer::V1::TransferState]
|
183
183
|
# Data transfer run state. Ignored for input requests.
|
184
184
|
# @!attribute [rw] user_id
|
185
|
-
# @return [Integer]
|
185
|
+
# @return [::Integer]
|
186
186
|
# Deprecated. Unique ID of the user on whose behalf transfer is done.
|
187
187
|
# @!attribute [r] schedule
|
188
|
-
# @return [String]
|
188
|
+
# @return [::String]
|
189
189
|
# Output only. Describes the schedule of this transfer run if it was
|
190
190
|
# created as part of a regular schedule. For batch transfer runs that are
|
191
191
|
# scheduled manually, this is empty.
|
192
192
|
# NOTE: the system might choose to delay the schedule depending on the
|
193
193
|
# current load, so `schedule_time` doesn't always match this.
|
194
194
|
# @!attribute [r] notification_pubsub_topic
|
195
|
-
# @return [String]
|
195
|
+
# @return [::String]
|
196
196
|
# Output only. Pub/Sub topic where a notification will be sent after this
|
197
197
|
# transfer run finishes
|
198
198
|
# @!attribute [r] email_preferences
|
199
|
-
# @return [Google::Cloud::Bigquery::DataTransfer::V1::EmailPreferences]
|
199
|
+
# @return [::Google::Cloud::Bigquery::DataTransfer::V1::EmailPreferences]
|
200
200
|
# Output only. Email notifications will be sent according to these
|
201
201
|
# preferences to the email address of the user who owns the transfer config
|
202
202
|
# this run was derived from.
|
203
203
|
class TransferRun
|
204
|
-
include Google::Protobuf::MessageExts
|
205
|
-
extend Google::Protobuf::MessageExts::ClassMethods
|
204
|
+
include ::Google::Protobuf::MessageExts
|
205
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
206
206
|
end
|
207
207
|
|
208
208
|
# Represents a user facing message for a particular data transfer run.
|
209
209
|
# @!attribute [rw] message_time
|
210
|
-
# @return [Google::Protobuf::Timestamp]
|
210
|
+
# @return [::Google::Protobuf::Timestamp]
|
211
211
|
# Time when message was logged.
|
212
212
|
# @!attribute [rw] severity
|
213
|
-
# @return [Google::Cloud::Bigquery::DataTransfer::V1::TransferMessage::MessageSeverity]
|
213
|
+
# @return [::Google::Cloud::Bigquery::DataTransfer::V1::TransferMessage::MessageSeverity]
|
214
214
|
# Message severity.
|
215
215
|
# @!attribute [rw] message_text
|
216
|
-
# @return [String]
|
216
|
+
# @return [::String]
|
217
217
|
# Message text.
|
218
218
|
class TransferMessage
|
219
|
-
include Google::Protobuf::MessageExts
|
220
|
-
extend Google::Protobuf::MessageExts::ClassMethods
|
219
|
+
include ::Google::Protobuf::MessageExts
|
220
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
221
221
|
|
222
222
|
# Represents data transfer user facing message severity.
|
223
223
|
module MessageSeverity
|
@@ -99,7 +99,7 @@ module Google
|
|
99
99
|
# "value": "1.212s"
|
100
100
|
# }
|
101
101
|
# @!attribute [rw] type_url
|
102
|
-
# @return [String]
|
102
|
+
# @return [::String]
|
103
103
|
# A URL/resource name that uniquely identifies the type of the serialized
|
104
104
|
# protocol buffer message. This string must contain at least
|
105
105
|
# one "/" character. The last segment of the URL's path must represent
|
@@ -128,11 +128,11 @@ module Google
|
|
128
128
|
# Schemes other than `http`, `https` (or the empty scheme) might be
|
129
129
|
# used with implementation specific semantics.
|
130
130
|
# @!attribute [rw] value
|
131
|
-
# @return [String]
|
131
|
+
# @return [::String]
|
132
132
|
# Must be a valid serialized protocol buffer of the above specified type.
|
133
133
|
class Any
|
134
|
-
include Google::Protobuf::MessageExts
|
135
|
-
extend Google::Protobuf::MessageExts::ClassMethods
|
134
|
+
include ::Google::Protobuf::MessageExts
|
135
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
136
136
|
end
|
137
137
|
end
|
138
138
|
end
|
@@ -78,12 +78,12 @@ module Google
|
|
78
78
|
# be expressed in JSON format as "3.000000001s", and 3 seconds and 1
|
79
79
|
# microsecond should be expressed in JSON format as "3.000001s".
|
80
80
|
# @!attribute [rw] seconds
|
81
|
-
# @return [Integer]
|
81
|
+
# @return [::Integer]
|
82
82
|
# Signed seconds of the span of time. Must be from -315,576,000,000
|
83
83
|
# to +315,576,000,000 inclusive. Note: these bounds are computed from:
|
84
84
|
# 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years
|
85
85
|
# @!attribute [rw] nanos
|
86
|
-
# @return [Integer]
|
86
|
+
# @return [::Integer]
|
87
87
|
# Signed fractions of a second at nanosecond resolution of the span
|
88
88
|
# of time. Durations less than one second are represented with a 0
|
89
89
|
# `seconds` field and a positive or negative `nanos` field. For durations
|
@@ -91,8 +91,8 @@ module Google
|
|
91
91
|
# of the same sign as the `seconds` field. Must be from -999,999,999
|
92
92
|
# to +999,999,999 inclusive.
|
93
93
|
class Duration
|
94
|
-
include Google::Protobuf::MessageExts
|
95
|
-
extend Google::Protobuf::MessageExts::ClassMethods
|
94
|
+
include ::Google::Protobuf::MessageExts
|
95
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
96
96
|
end
|
97
97
|
end
|
98
98
|
end
|
@@ -29,8 +29,8 @@ module Google
|
|
29
29
|
#
|
30
30
|
# The JSON representation for `Empty` is empty JSON object `{}`.
|
31
31
|
class Empty
|
32
|
-
include Google::Protobuf::MessageExts
|
33
|
-
extend Google::Protobuf::MessageExts::ClassMethods
|
32
|
+
include ::Google::Protobuf::MessageExts
|
33
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
34
34
|
end
|
35
35
|
end
|
36
36
|
end
|
@@ -219,11 +219,11 @@ module Google
|
|
219
219
|
# request should verify the included field paths, and return an
|
220
220
|
# `INVALID_ARGUMENT` error if any path is unmappable.
|
221
221
|
# @!attribute [rw] paths
|
222
|
-
# @return [Array
|
222
|
+
# @return [::Array<::String>]
|
223
223
|
# The set of field mask paths.
|
224
224
|
class FieldMask
|
225
|
-
include Google::Protobuf::MessageExts
|
226
|
-
extend Google::Protobuf::MessageExts::ClassMethods
|
225
|
+
include ::Google::Protobuf::MessageExts
|
226
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
227
227
|
end
|
228
228
|
end
|
229
229
|
end
|
@@ -28,19 +28,19 @@ module Google
|
|
28
28
|
#
|
29
29
|
# The JSON representation for `Struct` is JSON object.
|
30
30
|
# @!attribute [rw] fields
|
31
|
-
# @return [Google::Protobuf::Map{String => Google::Protobuf::Value}]
|
31
|
+
# @return [::Google::Protobuf::Map{::String => ::Google::Protobuf::Value}]
|
32
32
|
# Unordered map of dynamically typed values.
|
33
33
|
class Struct
|
34
|
-
include Google::Protobuf::MessageExts
|
35
|
-
extend Google::Protobuf::MessageExts::ClassMethods
|
34
|
+
include ::Google::Protobuf::MessageExts
|
35
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
36
36
|
|
37
37
|
# @!attribute [rw] key
|
38
|
-
# @return [String]
|
38
|
+
# @return [::String]
|
39
39
|
# @!attribute [rw] value
|
40
|
-
# @return [Google::Protobuf::Value]
|
40
|
+
# @return [::Google::Protobuf::Value]
|
41
41
|
class FieldsEntry
|
42
|
-
include Google::Protobuf::MessageExts
|
43
|
-
extend Google::Protobuf::MessageExts::ClassMethods
|
42
|
+
include ::Google::Protobuf::MessageExts
|
43
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
@@ -51,37 +51,37 @@ module Google
|
|
51
51
|
#
|
52
52
|
# The JSON representation for `Value` is JSON value.
|
53
53
|
# @!attribute [rw] null_value
|
54
|
-
# @return [Google::Protobuf::NullValue]
|
54
|
+
# @return [::Google::Protobuf::NullValue]
|
55
55
|
# Represents a null value.
|
56
56
|
# @!attribute [rw] number_value
|
57
|
-
# @return [Float]
|
57
|
+
# @return [::Float]
|
58
58
|
# Represents a double value.
|
59
59
|
# @!attribute [rw] string_value
|
60
|
-
# @return [String]
|
60
|
+
# @return [::String]
|
61
61
|
# Represents a string value.
|
62
62
|
# @!attribute [rw] bool_value
|
63
|
-
# @return [Boolean]
|
63
|
+
# @return [::Boolean]
|
64
64
|
# Represents a boolean value.
|
65
65
|
# @!attribute [rw] struct_value
|
66
|
-
# @return [Google::Protobuf::Struct]
|
66
|
+
# @return [::Google::Protobuf::Struct]
|
67
67
|
# Represents a structured value.
|
68
68
|
# @!attribute [rw] list_value
|
69
|
-
# @return [Google::Protobuf::ListValue]
|
69
|
+
# @return [::Google::Protobuf::ListValue]
|
70
70
|
# Represents a repeated `Value`.
|
71
71
|
class Value
|
72
|
-
include Google::Protobuf::MessageExts
|
73
|
-
extend Google::Protobuf::MessageExts::ClassMethods
|
72
|
+
include ::Google::Protobuf::MessageExts
|
73
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
74
74
|
end
|
75
75
|
|
76
76
|
# `ListValue` is a wrapper around a repeated field of values.
|
77
77
|
#
|
78
78
|
# The JSON representation for `ListValue` is JSON array.
|
79
79
|
# @!attribute [rw] values
|
80
|
-
# @return [Array
|
80
|
+
# @return [::Array<::Google::Protobuf::Value>]
|
81
81
|
# Repeated field of dynamically typed values.
|
82
82
|
class ListValue
|
83
|
-
include Google::Protobuf::MessageExts
|
84
|
-
extend Google::Protobuf::MessageExts::ClassMethods
|
83
|
+
include ::Google::Protobuf::MessageExts
|
84
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
85
85
|
end
|
86
86
|
|
87
87
|
# `NullValue` is a singleton enumeration to represent the null value for the
|
@@ -102,19 +102,19 @@ module Google
|
|
102
102
|
# http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
|
103
103
|
# ) to obtain a formatter capable of generating timestamps in this format.
|
104
104
|
# @!attribute [rw] seconds
|
105
|
-
# @return [Integer]
|
105
|
+
# @return [::Integer]
|
106
106
|
# Represents seconds of UTC time since Unix epoch
|
107
107
|
# 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to
|
108
108
|
# 9999-12-31T23:59:59Z inclusive.
|
109
109
|
# @!attribute [rw] nanos
|
110
|
-
# @return [Integer]
|
110
|
+
# @return [::Integer]
|
111
111
|
# Non-negative fractions of a second at nanosecond resolution. Negative
|
112
112
|
# second values with fractions must still have non-negative nanos values
|
113
113
|
# that count forward in time. Must be from 0 to 999,999,999
|
114
114
|
# inclusive.
|
115
115
|
class Timestamp
|
116
|
-
include Google::Protobuf::MessageExts
|
117
|
-
extend Google::Protobuf::MessageExts::ClassMethods
|
116
|
+
include ::Google::Protobuf::MessageExts
|
117
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
118
118
|
end
|
119
119
|
end
|
120
120
|
end
|
@@ -23,99 +23,99 @@ module Google
|
|
23
23
|
#
|
24
24
|
# The JSON representation for `DoubleValue` is JSON number.
|
25
25
|
# @!attribute [rw] value
|
26
|
-
# @return [Float]
|
26
|
+
# @return [::Float]
|
27
27
|
# The double value.
|
28
28
|
class DoubleValue
|
29
|
-
include Google::Protobuf::MessageExts
|
30
|
-
extend Google::Protobuf::MessageExts::ClassMethods
|
29
|
+
include ::Google::Protobuf::MessageExts
|
30
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
31
31
|
end
|
32
32
|
|
33
33
|
# Wrapper message for `float`.
|
34
34
|
#
|
35
35
|
# The JSON representation for `FloatValue` is JSON number.
|
36
36
|
# @!attribute [rw] value
|
37
|
-
# @return [Float]
|
37
|
+
# @return [::Float]
|
38
38
|
# The float value.
|
39
39
|
class FloatValue
|
40
|
-
include Google::Protobuf::MessageExts
|
41
|
-
extend Google::Protobuf::MessageExts::ClassMethods
|
40
|
+
include ::Google::Protobuf::MessageExts
|
41
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
42
42
|
end
|
43
43
|
|
44
44
|
# Wrapper message for `int64`.
|
45
45
|
#
|
46
46
|
# The JSON representation for `Int64Value` is JSON string.
|
47
47
|
# @!attribute [rw] value
|
48
|
-
# @return [Integer]
|
48
|
+
# @return [::Integer]
|
49
49
|
# The int64 value.
|
50
50
|
class Int64Value
|
51
|
-
include Google::Protobuf::MessageExts
|
52
|
-
extend Google::Protobuf::MessageExts::ClassMethods
|
51
|
+
include ::Google::Protobuf::MessageExts
|
52
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
53
53
|
end
|
54
54
|
|
55
55
|
# Wrapper message for `uint64`.
|
56
56
|
#
|
57
57
|
# The JSON representation for `UInt64Value` is JSON string.
|
58
58
|
# @!attribute [rw] value
|
59
|
-
# @return [Integer]
|
59
|
+
# @return [::Integer]
|
60
60
|
# The uint64 value.
|
61
61
|
class UInt64Value
|
62
|
-
include Google::Protobuf::MessageExts
|
63
|
-
extend Google::Protobuf::MessageExts::ClassMethods
|
62
|
+
include ::Google::Protobuf::MessageExts
|
63
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
64
64
|
end
|
65
65
|
|
66
66
|
# Wrapper message for `int32`.
|
67
67
|
#
|
68
68
|
# The JSON representation for `Int32Value` is JSON number.
|
69
69
|
# @!attribute [rw] value
|
70
|
-
# @return [Integer]
|
70
|
+
# @return [::Integer]
|
71
71
|
# The int32 value.
|
72
72
|
class Int32Value
|
73
|
-
include Google::Protobuf::MessageExts
|
74
|
-
extend Google::Protobuf::MessageExts::ClassMethods
|
73
|
+
include ::Google::Protobuf::MessageExts
|
74
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
75
75
|
end
|
76
76
|
|
77
77
|
# Wrapper message for `uint32`.
|
78
78
|
#
|
79
79
|
# The JSON representation for `UInt32Value` is JSON number.
|
80
80
|
# @!attribute [rw] value
|
81
|
-
# @return [Integer]
|
81
|
+
# @return [::Integer]
|
82
82
|
# The uint32 value.
|
83
83
|
class UInt32Value
|
84
|
-
include Google::Protobuf::MessageExts
|
85
|
-
extend Google::Protobuf::MessageExts::ClassMethods
|
84
|
+
include ::Google::Protobuf::MessageExts
|
85
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
86
86
|
end
|
87
87
|
|
88
88
|
# Wrapper message for `bool`.
|
89
89
|
#
|
90
90
|
# The JSON representation for `BoolValue` is JSON `true` and `false`.
|
91
91
|
# @!attribute [rw] value
|
92
|
-
# @return [Boolean]
|
92
|
+
# @return [::Boolean]
|
93
93
|
# The bool value.
|
94
94
|
class BoolValue
|
95
|
-
include Google::Protobuf::MessageExts
|
96
|
-
extend Google::Protobuf::MessageExts::ClassMethods
|
95
|
+
include ::Google::Protobuf::MessageExts
|
96
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
97
97
|
end
|
98
98
|
|
99
99
|
# Wrapper message for `string`.
|
100
100
|
#
|
101
101
|
# The JSON representation for `StringValue` is JSON string.
|
102
102
|
# @!attribute [rw] value
|
103
|
-
# @return [String]
|
103
|
+
# @return [::String]
|
104
104
|
# The string value.
|
105
105
|
class StringValue
|
106
|
-
include Google::Protobuf::MessageExts
|
107
|
-
extend Google::Protobuf::MessageExts::ClassMethods
|
106
|
+
include ::Google::Protobuf::MessageExts
|
107
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
108
108
|
end
|
109
109
|
|
110
110
|
# Wrapper message for `bytes`.
|
111
111
|
#
|
112
112
|
# The JSON representation for `BytesValue` is JSON string.
|
113
113
|
# @!attribute [rw] value
|
114
|
-
# @return [String]
|
114
|
+
# @return [::String]
|
115
115
|
# The bytes value.
|
116
116
|
class BytesValue
|
117
|
-
include Google::Protobuf::MessageExts
|
118
|
-
extend Google::Protobuf::MessageExts::ClassMethods
|
117
|
+
include ::Google::Protobuf::MessageExts
|
118
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
119
119
|
end
|
120
120
|
end
|
121
121
|
end
|