-
Notifications
You must be signed in to change notification settings - Fork 461
Expand file tree
/
Copy pathReadSession.php
More file actions
604 lines (550 loc) · 23.1 KB
/
ReadSession.php
File metadata and controls
604 lines (550 loc) · 23.1 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
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/cloud/bigquery/storage/v1/stream.proto
namespace Google\Cloud\BigQuery\Storage\V1;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\GPBUtil;
use Google\Protobuf\RepeatedField;
/**
* Information about the ReadSession.
*
* Generated from protobuf message <code>google.cloud.bigquery.storage.v1.ReadSession</code>
*/
class ReadSession extends \Google\Protobuf\Internal\Message
{
/**
* Output only. Unique identifier for the session, in the form
* `projects/{project_id}/locations/{location}/sessions/{session_id}`.
*
* Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
*/
protected $name = '';
/**
* Output only. Time at which the session becomes invalid. After this time,
* subsequent requests to read this Session will return errors. The
* expire_time is automatically assigned and currently cannot be specified or
* updated.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp expire_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
*/
protected $expire_time = null;
/**
* Immutable. Data format of the output data. DATA_FORMAT_UNSPECIFIED not
* supported.
*
* Generated from protobuf field <code>.google.cloud.bigquery.storage.v1.DataFormat data_format = 3 [(.google.api.field_behavior) = IMMUTABLE];</code>
*/
protected $data_format = 0;
/**
* Immutable. Table that this ReadSession is reading from, in the form
* `projects/{project_id}/datasets/{dataset_id}/tables/{table_id}`
*
* Generated from protobuf field <code>string table = 6 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = {</code>
*/
protected $table = '';
/**
* Optional. Any modifiers which are applied when reading from the specified
* table.
*
* Generated from protobuf field <code>.google.cloud.bigquery.storage.v1.ReadSession.TableModifiers table_modifiers = 7 [(.google.api.field_behavior) = OPTIONAL];</code>
*/
protected $table_modifiers = null;
/**
* Optional. Read options for this session (e.g. column selection, filters).
*
* Generated from protobuf field <code>.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions read_options = 8 [(.google.api.field_behavior) = OPTIONAL];</code>
*/
protected $read_options = null;
/**
* Output only. A list of streams created with the session.
* At least one stream is created with the session. In the future, larger
* request_stream_count values *may* result in this list being unpopulated,
* in that case, the user will need to use a List method to get the streams
* instead, which is not yet available.
*
* Generated from protobuf field <code>repeated .google.cloud.bigquery.storage.v1.ReadStream streams = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
*/
private $streams;
/**
* Output only. An estimate on the number of bytes this session will scan when
* all streams are completely consumed. This estimate is based on
* metadata from the table which might be incomplete or stale.
*
* Generated from protobuf field <code>int64 estimated_total_bytes_scanned = 12 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
*/
protected $estimated_total_bytes_scanned = 0;
/**
* Output only. A pre-projected estimate of the total physical size of files
* (in bytes) that this session will scan when all streams are consumed. This
* estimate is independent of the selected columns and can be based on
* incomplete or stale metadata from the table. This field is only set for
* BigLake tables.
*
* Generated from protobuf field <code>int64 estimated_total_physical_file_size = 15 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
*/
protected $estimated_total_physical_file_size = 0;
/**
* Output only. An estimate on the number of rows present in this session's
* streams. This estimate is based on metadata from the table which might be
* incomplete or stale.
*
* Generated from protobuf field <code>int64 estimated_row_count = 14 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
*/
protected $estimated_row_count = 0;
/**
* Optional. ID set by client to annotate a session identity. This does not
* need to be strictly unique, but instead the same ID should be used to group
* logically connected sessions (e.g. All using the same ID for all sessions
* needed to complete a Spark SQL query is reasonable).
* Maximum length is 256 bytes.
*
* Generated from protobuf field <code>string trace_id = 13 [(.google.api.field_behavior) = OPTIONAL];</code>
*/
protected $trace_id = '';
protected $schema;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $name
* Output only. Unique identifier for the session, in the form
* `projects/{project_id}/locations/{location}/sessions/{session_id}`.
* @type \Google\Protobuf\Timestamp $expire_time
* Output only. Time at which the session becomes invalid. After this time,
* subsequent requests to read this Session will return errors. The
* expire_time is automatically assigned and currently cannot be specified or
* updated.
* @type int $data_format
* Immutable. Data format of the output data. DATA_FORMAT_UNSPECIFIED not
* supported.
* @type \Google\Cloud\BigQuery\Storage\V1\AvroSchema $avro_schema
* Output only. Avro schema.
* @type \Google\Cloud\BigQuery\Storage\V1\ArrowSchema $arrow_schema
* Output only. Arrow schema.
* @type string $table
* Immutable. Table that this ReadSession is reading from, in the form
* `projects/{project_id}/datasets/{dataset_id}/tables/{table_id}`
* @type \Google\Cloud\BigQuery\Storage\V1\ReadSession\TableModifiers $table_modifiers
* Optional. Any modifiers which are applied when reading from the specified
* table.
* @type \Google\Cloud\BigQuery\Storage\V1\ReadSession\TableReadOptions $read_options
* Optional. Read options for this session (e.g. column selection, filters).
* @type \Google\Cloud\BigQuery\Storage\V1\ReadStream[] $streams
* Output only. A list of streams created with the session.
* At least one stream is created with the session. In the future, larger
* request_stream_count values *may* result in this list being unpopulated,
* in that case, the user will need to use a List method to get the streams
* instead, which is not yet available.
* @type int|string $estimated_total_bytes_scanned
* Output only. An estimate on the number of bytes this session will scan when
* all streams are completely consumed. This estimate is based on
* metadata from the table which might be incomplete or stale.
* @type int|string $estimated_total_physical_file_size
* Output only. A pre-projected estimate of the total physical size of files
* (in bytes) that this session will scan when all streams are consumed. This
* estimate is independent of the selected columns and can be based on
* incomplete or stale metadata from the table. This field is only set for
* BigLake tables.
* @type int|string $estimated_row_count
* Output only. An estimate on the number of rows present in this session's
* streams. This estimate is based on metadata from the table which might be
* incomplete or stale.
* @type string $trace_id
* Optional. ID set by client to annotate a session identity. This does not
* need to be strictly unique, but instead the same ID should be used to group
* logically connected sessions (e.g. All using the same ID for all sessions
* needed to complete a Spark SQL query is reasonable).
* Maximum length is 256 bytes.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Cloud\Bigquery\Storage\V1\Stream::initOnce();
parent::__construct($data);
}
/**
* Output only. Unique identifier for the session, in the form
* `projects/{project_id}/locations/{location}/sessions/{session_id}`.
*
* Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Output only. Unique identifier for the session, in the form
* `projects/{project_id}/locations/{location}/sessions/{session_id}`.
*
* Generated from protobuf field <code>string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param string $var
* @return $this
*/
public function setName($var)
{
GPBUtil::checkString($var, True);
$this->name = $var;
return $this;
}
/**
* Output only. Time at which the session becomes invalid. After this time,
* subsequent requests to read this Session will return errors. The
* expire_time is automatically assigned and currently cannot be specified or
* updated.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp expire_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return \Google\Protobuf\Timestamp|null
*/
public function getExpireTime()
{
return $this->expire_time;
}
public function hasExpireTime()
{
return isset($this->expire_time);
}
public function clearExpireTime()
{
unset($this->expire_time);
}
/**
* Output only. Time at which the session becomes invalid. After this time,
* subsequent requests to read this Session will return errors. The
* expire_time is automatically assigned and currently cannot be specified or
* updated.
*
* Generated from protobuf field <code>.google.protobuf.Timestamp expire_time = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param \Google\Protobuf\Timestamp $var
* @return $this
*/
public function setExpireTime($var)
{
GPBUtil::checkMessage($var, \Google\Protobuf\Timestamp::class);
$this->expire_time = $var;
return $this;
}
/**
* Immutable. Data format of the output data. DATA_FORMAT_UNSPECIFIED not
* supported.
*
* Generated from protobuf field <code>.google.cloud.bigquery.storage.v1.DataFormat data_format = 3 [(.google.api.field_behavior) = IMMUTABLE];</code>
* @return int
*/
public function getDataFormat()
{
return $this->data_format;
}
/**
* Immutable. Data format of the output data. DATA_FORMAT_UNSPECIFIED not
* supported.
*
* Generated from protobuf field <code>.google.cloud.bigquery.storage.v1.DataFormat data_format = 3 [(.google.api.field_behavior) = IMMUTABLE];</code>
* @param int $var
* @return $this
*/
public function setDataFormat($var)
{
GPBUtil::checkEnum($var, \Google\Cloud\BigQuery\Storage\V1\DataFormat::class);
$this->data_format = $var;
return $this;
}
/**
* Output only. Avro schema.
*
* Generated from protobuf field <code>.google.cloud.bigquery.storage.v1.AvroSchema avro_schema = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return \Google\Cloud\BigQuery\Storage\V1\AvroSchema|null
*/
public function getAvroSchema()
{
return $this->readOneof(4);
}
public function hasAvroSchema()
{
return $this->hasOneof(4);
}
/**
* Output only. Avro schema.
*
* Generated from protobuf field <code>.google.cloud.bigquery.storage.v1.AvroSchema avro_schema = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param \Google\Cloud\BigQuery\Storage\V1\AvroSchema $var
* @return $this
*/
public function setAvroSchema($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\BigQuery\Storage\V1\AvroSchema::class);
$this->writeOneof(4, $var);
return $this;
}
/**
* Output only. Arrow schema.
*
* Generated from protobuf field <code>.google.cloud.bigquery.storage.v1.ArrowSchema arrow_schema = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return \Google\Cloud\BigQuery\Storage\V1\ArrowSchema|null
*/
public function getArrowSchema()
{
return $this->readOneof(5);
}
public function hasArrowSchema()
{
return $this->hasOneof(5);
}
/**
* Output only. Arrow schema.
*
* Generated from protobuf field <code>.google.cloud.bigquery.storage.v1.ArrowSchema arrow_schema = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param \Google\Cloud\BigQuery\Storage\V1\ArrowSchema $var
* @return $this
*/
public function setArrowSchema($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\BigQuery\Storage\V1\ArrowSchema::class);
$this->writeOneof(5, $var);
return $this;
}
/**
* Immutable. Table that this ReadSession is reading from, in the form
* `projects/{project_id}/datasets/{dataset_id}/tables/{table_id}`
*
* Generated from protobuf field <code>string table = 6 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = {</code>
* @return string
*/
public function getTable()
{
return $this->table;
}
/**
* Immutable. Table that this ReadSession is reading from, in the form
* `projects/{project_id}/datasets/{dataset_id}/tables/{table_id}`
*
* Generated from protobuf field <code>string table = 6 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = {</code>
* @param string $var
* @return $this
*/
public function setTable($var)
{
GPBUtil::checkString($var, True);
$this->table = $var;
return $this;
}
/**
* Optional. Any modifiers which are applied when reading from the specified
* table.
*
* Generated from protobuf field <code>.google.cloud.bigquery.storage.v1.ReadSession.TableModifiers table_modifiers = 7 [(.google.api.field_behavior) = OPTIONAL];</code>
* @return \Google\Cloud\BigQuery\Storage\V1\ReadSession\TableModifiers|null
*/
public function getTableModifiers()
{
return $this->table_modifiers;
}
public function hasTableModifiers()
{
return isset($this->table_modifiers);
}
public function clearTableModifiers()
{
unset($this->table_modifiers);
}
/**
* Optional. Any modifiers which are applied when reading from the specified
* table.
*
* Generated from protobuf field <code>.google.cloud.bigquery.storage.v1.ReadSession.TableModifiers table_modifiers = 7 [(.google.api.field_behavior) = OPTIONAL];</code>
* @param \Google\Cloud\BigQuery\Storage\V1\ReadSession\TableModifiers $var
* @return $this
*/
public function setTableModifiers($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\BigQuery\Storage\V1\ReadSession\TableModifiers::class);
$this->table_modifiers = $var;
return $this;
}
/**
* Optional. Read options for this session (e.g. column selection, filters).
*
* Generated from protobuf field <code>.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions read_options = 8 [(.google.api.field_behavior) = OPTIONAL];</code>
* @return \Google\Cloud\BigQuery\Storage\V1\ReadSession\TableReadOptions|null
*/
public function getReadOptions()
{
return $this->read_options;
}
public function hasReadOptions()
{
return isset($this->read_options);
}
public function clearReadOptions()
{
unset($this->read_options);
}
/**
* Optional. Read options for this session (e.g. column selection, filters).
*
* Generated from protobuf field <code>.google.cloud.bigquery.storage.v1.ReadSession.TableReadOptions read_options = 8 [(.google.api.field_behavior) = OPTIONAL];</code>
* @param \Google\Cloud\BigQuery\Storage\V1\ReadSession\TableReadOptions $var
* @return $this
*/
public function setReadOptions($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\BigQuery\Storage\V1\ReadSession\TableReadOptions::class);
$this->read_options = $var;
return $this;
}
/**
* Output only. A list of streams created with the session.
* At least one stream is created with the session. In the future, larger
* request_stream_count values *may* result in this list being unpopulated,
* in that case, the user will need to use a List method to get the streams
* instead, which is not yet available.
*
* Generated from protobuf field <code>repeated .google.cloud.bigquery.storage.v1.ReadStream streams = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return RepeatedField<\Google\Cloud\BigQuery\Storage\V1\ReadStream>
*/
public function getStreams()
{
return $this->streams;
}
/**
* Output only. A list of streams created with the session.
* At least one stream is created with the session. In the future, larger
* request_stream_count values *may* result in this list being unpopulated,
* in that case, the user will need to use a List method to get the streams
* instead, which is not yet available.
*
* Generated from protobuf field <code>repeated .google.cloud.bigquery.storage.v1.ReadStream streams = 10 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param \Google\Cloud\BigQuery\Storage\V1\ReadStream[] $var
* @return $this
*/
public function setStreams($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Cloud\BigQuery\Storage\V1\ReadStream::class);
$this->streams = $arr;
return $this;
}
/**
* Output only. An estimate on the number of bytes this session will scan when
* all streams are completely consumed. This estimate is based on
* metadata from the table which might be incomplete or stale.
*
* Generated from protobuf field <code>int64 estimated_total_bytes_scanned = 12 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return int|string
*/
public function getEstimatedTotalBytesScanned()
{
return $this->estimated_total_bytes_scanned;
}
/**
* Output only. An estimate on the number of bytes this session will scan when
* all streams are completely consumed. This estimate is based on
* metadata from the table which might be incomplete or stale.
*
* Generated from protobuf field <code>int64 estimated_total_bytes_scanned = 12 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param int|string $var
* @return $this
*/
public function setEstimatedTotalBytesScanned($var)
{
GPBUtil::checkInt64($var);
$this->estimated_total_bytes_scanned = $var;
return $this;
}
/**
* Output only. A pre-projected estimate of the total physical size of files
* (in bytes) that this session will scan when all streams are consumed. This
* estimate is independent of the selected columns and can be based on
* incomplete or stale metadata from the table. This field is only set for
* BigLake tables.
*
* Generated from protobuf field <code>int64 estimated_total_physical_file_size = 15 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return int|string
*/
public function getEstimatedTotalPhysicalFileSize()
{
return $this->estimated_total_physical_file_size;
}
/**
* Output only. A pre-projected estimate of the total physical size of files
* (in bytes) that this session will scan when all streams are consumed. This
* estimate is independent of the selected columns and can be based on
* incomplete or stale metadata from the table. This field is only set for
* BigLake tables.
*
* Generated from protobuf field <code>int64 estimated_total_physical_file_size = 15 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param int|string $var
* @return $this
*/
public function setEstimatedTotalPhysicalFileSize($var)
{
GPBUtil::checkInt64($var);
$this->estimated_total_physical_file_size = $var;
return $this;
}
/**
* Output only. An estimate on the number of rows present in this session's
* streams. This estimate is based on metadata from the table which might be
* incomplete or stale.
*
* Generated from protobuf field <code>int64 estimated_row_count = 14 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @return int|string
*/
public function getEstimatedRowCount()
{
return $this->estimated_row_count;
}
/**
* Output only. An estimate on the number of rows present in this session's
* streams. This estimate is based on metadata from the table which might be
* incomplete or stale.
*
* Generated from protobuf field <code>int64 estimated_row_count = 14 [(.google.api.field_behavior) = OUTPUT_ONLY];</code>
* @param int|string $var
* @return $this
*/
public function setEstimatedRowCount($var)
{
GPBUtil::checkInt64($var);
$this->estimated_row_count = $var;
return $this;
}
/**
* Optional. ID set by client to annotate a session identity. This does not
* need to be strictly unique, but instead the same ID should be used to group
* logically connected sessions (e.g. All using the same ID for all sessions
* needed to complete a Spark SQL query is reasonable).
* Maximum length is 256 bytes.
*
* Generated from protobuf field <code>string trace_id = 13 [(.google.api.field_behavior) = OPTIONAL];</code>
* @return string
*/
public function getTraceId()
{
return $this->trace_id;
}
/**
* Optional. ID set by client to annotate a session identity. This does not
* need to be strictly unique, but instead the same ID should be used to group
* logically connected sessions (e.g. All using the same ID for all sessions
* needed to complete a Spark SQL query is reasonable).
* Maximum length is 256 bytes.
*
* Generated from protobuf field <code>string trace_id = 13 [(.google.api.field_behavior) = OPTIONAL];</code>
* @param string $var
* @return $this
*/
public function setTraceId($var)
{
GPBUtil::checkString($var, True);
$this->trace_id = $var;
return $this;
}
/**
* @return string
*/
public function getSchema()
{
return $this->whichOneof("schema");
}
}