-
Notifications
You must be signed in to change notification settings - Fork 457
Expand file tree
/
Copy pathAppendRowsRequest.php
More file actions
544 lines (507 loc) · 24 KB
/
Copy pathAppendRowsRequest.php
File metadata and controls
544 lines (507 loc) · 24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/cloud/bigquery/storage/v1/storage.proto
namespace Google\Cloud\BigQuery\Storage\V1;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\GPBUtil;
use Google\Protobuf\RepeatedField;
/**
* Request message for `AppendRows`.
* Because AppendRows is a bidirectional streaming RPC, certain parts of the
* AppendRowsRequest need only be specified for the first request before
* switching table destinations. You can also switch table destinations within
* the same connection for the default stream.
* The size of a single AppendRowsRequest must be less than 10 MB in size.
* Requests larger than this return an error, typically `INVALID_ARGUMENT`.
*
* Generated from protobuf message <code>google.cloud.bigquery.storage.v1.AppendRowsRequest</code>
*/
class AppendRowsRequest extends \Google\Protobuf\Internal\Message
{
/**
* Required. The write_stream identifies the append operation. It must be
* provided in the following scenarios:
* * In the first request to an AppendRows connection.
* * In all subsequent requests to an AppendRows connection, if you use the
* same connection to write to multiple tables or change the input schema for
* default streams.
* For explicitly created write streams, the format is:
* * `projects/{project}/datasets/{dataset}/tables/{table}/streams/{id}`
* For the special default stream, the format is:
* * `projects/{project}/datasets/{dataset}/tables/{table}/streams/_default`.
* An example of a possible sequence of requests with write_stream fields
* within a single connection:
* * r1: {write_stream: stream_name_1}
* * r2: {write_stream: /*omit{@*}}
* * r3: {write_stream: /*omit{@*}}
* * r4: {write_stream: stream_name_2}
* * r5: {write_stream: stream_name_2}
* The destination changed in request_4, so the write_stream field must be
* populated in all subsequent requests in this stream.
*
* Generated from protobuf field <code>string write_stream = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
*/
protected $write_stream = '';
/**
* If present, the write is only performed if the next append offset is same
* as the provided value. If not present, the write is performed at the
* current end of stream. Specifying a value for this field is not allowed
* when calling AppendRows for the '_default' stream.
*
* Generated from protobuf field <code>.google.protobuf.Int64Value offset = 2;</code>
*/
protected $offset = null;
/**
* Id set by client to annotate its identity. Only initial request setting is
* respected.
*
* Generated from protobuf field <code>string trace_id = 6;</code>
*/
protected $trace_id = '';
/**
* A map to indicate how to interpret missing value for some fields. Missing
* values are fields present in user schema but missing in rows. The key is
* the field name. The value is the interpretation of missing values for the
* field.
* For example, a map {'foo': NULL_VALUE, 'bar': DEFAULT_VALUE} means all
* missing values in field foo are interpreted as NULL, all missing values in
* field bar are interpreted as the default value of field bar in table
* schema.
* If a field is not in this map and has missing values, the missing values
* in this field are interpreted as NULL.
* This field only applies to the current request, it won't affect other
* requests on the connection.
* Currently, field name can only be top-level column name, can't be a struct
* field path like 'foo.bar'.
*
* Generated from protobuf field <code>map<string, .google.cloud.bigquery.storage.v1.AppendRowsRequest.MissingValueInterpretation> missing_value_interpretations = 7;</code>
*/
private $missing_value_interpretations;
/**
* Optional. Default missing value interpretation for all columns in the
* table. When a value is specified on an `AppendRowsRequest`, it is applied
* to all requests from that point forward, until a subsequent
* `AppendRowsRequest` sets it to a different value.
* `missing_value_interpretation` can override
* `default_missing_value_interpretation`. For example, if you want to write
* `NULL` instead of using default values for some columns, you can set
* `default_missing_value_interpretation` to `DEFAULT_VALUE` and at the same
* time, set `missing_value_interpretations` to `NULL_VALUE` on those columns.
*
* Generated from protobuf field <code>.google.cloud.bigquery.storage.v1.AppendRowsRequest.MissingValueInterpretation default_missing_value_interpretation = 8 [(.google.api.field_behavior) = OPTIONAL];</code>
*/
protected $default_missing_value_interpretation = 0;
protected $rows;
/**
* @param string $writeStream Required. The write_stream identifies the append operation. It must be
* provided in the following scenarios:
*
* * In the first request to an AppendRows connection.
*
* * In all subsequent requests to an AppendRows connection, if you use the
* same connection to write to multiple tables or change the input schema for
* default streams.
*
* For explicitly created write streams, the format is:
*
* * `projects/{project}/datasets/{dataset}/tables/{table}/streams/{id}`
*
* For the special default stream, the format is:
*
* * `projects/{project}/datasets/{dataset}/tables/{table}/streams/_default`.
*
* An example of a possible sequence of requests with write_stream fields
* within a single connection:
*
* * r1: {write_stream: stream_name_1}
*
* * r2: {write_stream: /*omit*/}
*
* * r3: {write_stream: /*omit*/}
*
* * r4: {write_stream: stream_name_2}
*
* * r5: {write_stream: stream_name_2}
*
* The destination changed in request_4, so the write_stream field must be
* populated in all subsequent requests in this stream. Please see
* {@see BigQueryWriteClient::writeStreamName()} for help formatting this field.
*
* @return \Google\Cloud\BigQuery\Storage\V1\AppendRowsRequest
*
* @experimental
*/
public static function build(string $writeStream): self
{
return (new self())
->setWriteStream($writeStream);
}
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $write_stream
* Required. The write_stream identifies the append operation. It must be
* provided in the following scenarios:
* * In the first request to an AppendRows connection.
* * In all subsequent requests to an AppendRows connection, if you use the
* same connection to write to multiple tables or change the input schema for
* default streams.
* For explicitly created write streams, the format is:
* * `projects/{project}/datasets/{dataset}/tables/{table}/streams/{id}`
* For the special default stream, the format is:
* * `projects/{project}/datasets/{dataset}/tables/{table}/streams/_default`.
* An example of a possible sequence of requests with write_stream fields
* within a single connection:
* * r1: {write_stream: stream_name_1}
* * r2: {write_stream: /*omit{@*}}
* * r3: {write_stream: /*omit{@*}}
* * r4: {write_stream: stream_name_2}
* * r5: {write_stream: stream_name_2}
* The destination changed in request_4, so the write_stream field must be
* populated in all subsequent requests in this stream.
* @type \Google\Protobuf\Int64Value $offset
* If present, the write is only performed if the next append offset is same
* as the provided value. If not present, the write is performed at the
* current end of stream. Specifying a value for this field is not allowed
* when calling AppendRows for the '_default' stream.
* @type \Google\Cloud\BigQuery\Storage\V1\AppendRowsRequest\ProtoData $proto_rows
* Rows in proto format.
* @type \Google\Cloud\BigQuery\Storage\V1\AppendRowsRequest\ArrowData $arrow_rows
* Rows in arrow format.
* @type string $trace_id
* Id set by client to annotate its identity. Only initial request setting is
* respected.
* @type array|\Google\Protobuf\Internal\MapField $missing_value_interpretations
* A map to indicate how to interpret missing value for some fields. Missing
* values are fields present in user schema but missing in rows. The key is
* the field name. The value is the interpretation of missing values for the
* field.
* For example, a map {'foo': NULL_VALUE, 'bar': DEFAULT_VALUE} means all
* missing values in field foo are interpreted as NULL, all missing values in
* field bar are interpreted as the default value of field bar in table
* schema.
* If a field is not in this map and has missing values, the missing values
* in this field are interpreted as NULL.
* This field only applies to the current request, it won't affect other
* requests on the connection.
* Currently, field name can only be top-level column name, can't be a struct
* field path like 'foo.bar'.
* @type int $default_missing_value_interpretation
* Optional. Default missing value interpretation for all columns in the
* table. When a value is specified on an `AppendRowsRequest`, it is applied
* to all requests from that point forward, until a subsequent
* `AppendRowsRequest` sets it to a different value.
* `missing_value_interpretation` can override
* `default_missing_value_interpretation`. For example, if you want to write
* `NULL` instead of using default values for some columns, you can set
* `default_missing_value_interpretation` to `DEFAULT_VALUE` and at the same
* time, set `missing_value_interpretations` to `NULL_VALUE` on those columns.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Cloud\Bigquery\Storage\V1\Storage::initOnce();
parent::__construct($data);
}
/**
* Required. The write_stream identifies the append operation. It must be
* provided in the following scenarios:
* * In the first request to an AppendRows connection.
* * In all subsequent requests to an AppendRows connection, if you use the
* same connection to write to multiple tables or change the input schema for
* default streams.
* For explicitly created write streams, the format is:
* * `projects/{project}/datasets/{dataset}/tables/{table}/streams/{id}`
* For the special default stream, the format is:
* * `projects/{project}/datasets/{dataset}/tables/{table}/streams/_default`.
* An example of a possible sequence of requests with write_stream fields
* within a single connection:
* * r1: {write_stream: stream_name_1}
* * r2: {write_stream: /*omit{@*}}
* * r3: {write_stream: /*omit{@*}}
* * r4: {write_stream: stream_name_2}
* * r5: {write_stream: stream_name_2}
* The destination changed in request_4, so the write_stream field must be
* populated in all subsequent requests in this stream.
*
* Generated from protobuf field <code>string write_stream = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
* @return string
*/
public function getWriteStream()
{
return $this->write_stream;
}
/**
* Required. The write_stream identifies the append operation. It must be
* provided in the following scenarios:
* * In the first request to an AppendRows connection.
* * In all subsequent requests to an AppendRows connection, if you use the
* same connection to write to multiple tables or change the input schema for
* default streams.
* For explicitly created write streams, the format is:
* * `projects/{project}/datasets/{dataset}/tables/{table}/streams/{id}`
* For the special default stream, the format is:
* * `projects/{project}/datasets/{dataset}/tables/{table}/streams/_default`.
* An example of a possible sequence of requests with write_stream fields
* within a single connection:
* * r1: {write_stream: stream_name_1}
* * r2: {write_stream: /*omit{@*}}
* * r3: {write_stream: /*omit{@*}}
* * r4: {write_stream: stream_name_2}
* * r5: {write_stream: stream_name_2}
* The destination changed in request_4, so the write_stream field must be
* populated in all subsequent requests in this stream.
*
* Generated from protobuf field <code>string write_stream = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = {</code>
* @param string $var
* @return $this
*/
public function setWriteStream($var)
{
GPBUtil::checkString($var, True);
$this->write_stream = $var;
return $this;
}
/**
* If present, the write is only performed if the next append offset is same
* as the provided value. If not present, the write is performed at the
* current end of stream. Specifying a value for this field is not allowed
* when calling AppendRows for the '_default' stream.
*
* Generated from protobuf field <code>.google.protobuf.Int64Value offset = 2;</code>
* @return \Google\Protobuf\Int64Value|null
*/
public function getOffset()
{
return $this->offset;
}
public function hasOffset()
{
return isset($this->offset);
}
public function clearOffset()
{
unset($this->offset);
}
/**
* Returns the unboxed value from <code>getOffset()</code>
* If present, the write is only performed if the next append offset is same
* as the provided value. If not present, the write is performed at the
* current end of stream. Specifying a value for this field is not allowed
* when calling AppendRows for the '_default' stream.
*
* Generated from protobuf field <code>.google.protobuf.Int64Value offset = 2;</code>
* @return int|string|null
*/
public function getOffsetUnwrapped()
{
return $this->readWrapperValue("offset");
}
/**
* If present, the write is only performed if the next append offset is same
* as the provided value. If not present, the write is performed at the
* current end of stream. Specifying a value for this field is not allowed
* when calling AppendRows for the '_default' stream.
*
* Generated from protobuf field <code>.google.protobuf.Int64Value offset = 2;</code>
* @param \Google\Protobuf\Int64Value $var
* @return $this
*/
public function setOffset($var)
{
GPBUtil::checkMessage($var, \Google\Protobuf\Int64Value::class);
$this->offset = $var;
return $this;
}
/**
* Sets the field by wrapping a primitive type in a Google\Protobuf\Int64Value object.
* If present, the write is only performed if the next append offset is same
* as the provided value. If not present, the write is performed at the
* current end of stream. Specifying a value for this field is not allowed
* when calling AppendRows for the '_default' stream.
*
* Generated from protobuf field <code>.google.protobuf.Int64Value offset = 2;</code>
* @param int|string|null $var
* @return $this
*/
public function setOffsetUnwrapped($var)
{
$this->writeWrapperValue("offset", $var);
return $this;}
/**
* Rows in proto format.
*
* Generated from protobuf field <code>.google.cloud.bigquery.storage.v1.AppendRowsRequest.ProtoData proto_rows = 4;</code>
* @return \Google\Cloud\BigQuery\Storage\V1\AppendRowsRequest\ProtoData|null
*/
public function getProtoRows()
{
return $this->readOneof(4);
}
public function hasProtoRows()
{
return $this->hasOneof(4);
}
/**
* Rows in proto format.
*
* Generated from protobuf field <code>.google.cloud.bigquery.storage.v1.AppendRowsRequest.ProtoData proto_rows = 4;</code>
* @param \Google\Cloud\BigQuery\Storage\V1\AppendRowsRequest\ProtoData $var
* @return $this
*/
public function setProtoRows($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\BigQuery\Storage\V1\AppendRowsRequest\ProtoData::class);
$this->writeOneof(4, $var);
return $this;
}
/**
* Rows in arrow format.
*
* Generated from protobuf field <code>.google.cloud.bigquery.storage.v1.AppendRowsRequest.ArrowData arrow_rows = 5;</code>
* @return \Google\Cloud\BigQuery\Storage\V1\AppendRowsRequest\ArrowData|null
*/
public function getArrowRows()
{
return $this->readOneof(5);
}
public function hasArrowRows()
{
return $this->hasOneof(5);
}
/**
* Rows in arrow format.
*
* Generated from protobuf field <code>.google.cloud.bigquery.storage.v1.AppendRowsRequest.ArrowData arrow_rows = 5;</code>
* @param \Google\Cloud\BigQuery\Storage\V1\AppendRowsRequest\ArrowData $var
* @return $this
*/
public function setArrowRows($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\BigQuery\Storage\V1\AppendRowsRequest\ArrowData::class);
$this->writeOneof(5, $var);
return $this;
}
/**
* Id set by client to annotate its identity. Only initial request setting is
* respected.
*
* Generated from protobuf field <code>string trace_id = 6;</code>
* @return string
*/
public function getTraceId()
{
return $this->trace_id;
}
/**
* Id set by client to annotate its identity. Only initial request setting is
* respected.
*
* Generated from protobuf field <code>string trace_id = 6;</code>
* @param string $var
* @return $this
*/
public function setTraceId($var)
{
GPBUtil::checkString($var, True);
$this->trace_id = $var;
return $this;
}
/**
* A map to indicate how to interpret missing value for some fields. Missing
* values are fields present in user schema but missing in rows. The key is
* the field name. The value is the interpretation of missing values for the
* field.
* For example, a map {'foo': NULL_VALUE, 'bar': DEFAULT_VALUE} means all
* missing values in field foo are interpreted as NULL, all missing values in
* field bar are interpreted as the default value of field bar in table
* schema.
* If a field is not in this map and has missing values, the missing values
* in this field are interpreted as NULL.
* This field only applies to the current request, it won't affect other
* requests on the connection.
* Currently, field name can only be top-level column name, can't be a struct
* field path like 'foo.bar'.
*
* Generated from protobuf field <code>map<string, .google.cloud.bigquery.storage.v1.AppendRowsRequest.MissingValueInterpretation> missing_value_interpretations = 7;</code>
* @return \Google\Protobuf\Internal\MapField
*/
public function getMissingValueInterpretations()
{
return $this->missing_value_interpretations;
}
/**
* A map to indicate how to interpret missing value for some fields. Missing
* values are fields present in user schema but missing in rows. The key is
* the field name. The value is the interpretation of missing values for the
* field.
* For example, a map {'foo': NULL_VALUE, 'bar': DEFAULT_VALUE} means all
* missing values in field foo are interpreted as NULL, all missing values in
* field bar are interpreted as the default value of field bar in table
* schema.
* If a field is not in this map and has missing values, the missing values
* in this field are interpreted as NULL.
* This field only applies to the current request, it won't affect other
* requests on the connection.
* Currently, field name can only be top-level column name, can't be a struct
* field path like 'foo.bar'.
*
* Generated from protobuf field <code>map<string, .google.cloud.bigquery.storage.v1.AppendRowsRequest.MissingValueInterpretation> missing_value_interpretations = 7;</code>
* @param array|\Google\Protobuf\Internal\MapField $var
* @return $this
*/
public function setMissingValueInterpretations($var)
{
$arr = GPBUtil::checkMapField($var, \Google\Protobuf\Internal\GPBType::STRING, \Google\Protobuf\Internal\GPBType::ENUM, \Google\Cloud\BigQuery\Storage\V1\AppendRowsRequest\MissingValueInterpretation::class);
$this->missing_value_interpretations = $arr;
return $this;
}
/**
* Optional. Default missing value interpretation for all columns in the
* table. When a value is specified on an `AppendRowsRequest`, it is applied
* to all requests from that point forward, until a subsequent
* `AppendRowsRequest` sets it to a different value.
* `missing_value_interpretation` can override
* `default_missing_value_interpretation`. For example, if you want to write
* `NULL` instead of using default values for some columns, you can set
* `default_missing_value_interpretation` to `DEFAULT_VALUE` and at the same
* time, set `missing_value_interpretations` to `NULL_VALUE` on those columns.
*
* Generated from protobuf field <code>.google.cloud.bigquery.storage.v1.AppendRowsRequest.MissingValueInterpretation default_missing_value_interpretation = 8 [(.google.api.field_behavior) = OPTIONAL];</code>
* @return int
*/
public function getDefaultMissingValueInterpretation()
{
return $this->default_missing_value_interpretation;
}
/**
* Optional. Default missing value interpretation for all columns in the
* table. When a value is specified on an `AppendRowsRequest`, it is applied
* to all requests from that point forward, until a subsequent
* `AppendRowsRequest` sets it to a different value.
* `missing_value_interpretation` can override
* `default_missing_value_interpretation`. For example, if you want to write
* `NULL` instead of using default values for some columns, you can set
* `default_missing_value_interpretation` to `DEFAULT_VALUE` and at the same
* time, set `missing_value_interpretations` to `NULL_VALUE` on those columns.
*
* Generated from protobuf field <code>.google.cloud.bigquery.storage.v1.AppendRowsRequest.MissingValueInterpretation default_missing_value_interpretation = 8 [(.google.api.field_behavior) = OPTIONAL];</code>
* @param int $var
* @return $this
*/
public function setDefaultMissingValueInterpretation($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\BigQuery\Storage\V1\AppendRowsRequest\MissingValueInterpretation::class);
$this->default_missing_value_interpretation = $var;
return $this;
}
/**
* @return string
*/
public function getRows()
{
return $this->whichOneof("rows");
}
}