google-apis-bigquery_v2 0.35.0 → 0.38.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a8bb1599d306b03b0fa6a30c804fa859c91b6c1c0e8e99f73ed713502ae24362
4
- data.tar.gz: 5da5c85e5a3b5d7a58a78873fa2fb0d4d83178bcdc2eb19b77f0b6f93e3547a3
3
+ metadata.gz: 527395cc9d437b024f1c540de3f06ff5df2e3978127638b9c3cc46779e129645
4
+ data.tar.gz: b16c20a54addb2847ef53053a301c2a9d7ca987eb455ab0e67f6fa1f0a64ba89
5
5
  SHA512:
6
- metadata.gz: 0c4a1f8991e91fda2d768879eccdf588a614d2647eeb45cc6300679bed90972e567b4ae532c4dff40659a21a4945d23efc9590350e07f203bced8ad5bc77724e
7
- data.tar.gz: 91ed0df17a987c2d16bbc4dd6e1a88a7273b89b52fd307874d4a553860825701d9d2dc4866dad361961aeea0dc3e06c9385f917713720c12e28aa7a3181da8e6
6
+ metadata.gz: 8cc28a8564bf3babcca20626005770f9cc8cd3d1ed9361599eaf1e45873ee43d75291dd71990d00c58f4377d77331ee2c813003f5ce2d10287489909972a52bd
7
+ data.tar.gz: 391319f3f83c90b2d331c14bd2cda0ebe3b07ac3e1a9b9d2a8b0f2c826ce493b186a4f602fe9246bfa0491289abc98a0bed67a2f6ed3210f7e48b6808029139c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-bigquery_v2
2
2
 
3
+ ### v0.38.0 (2022-08-04)
4
+
5
+ * Regenerated from discovery document revision 20220730
6
+
7
+ ### v0.37.0 (2022-07-26)
8
+
9
+ * Regenerated from discovery document revision 20220716
10
+ * Regenerated using generator version 0.9.0
11
+
12
+ ### v0.36.0 (2022-06-30)
13
+
14
+ * Regenerated using generator version 0.8.0
15
+
3
16
  ### v0.35.0 (2022-06-23)
4
17
 
5
18
  * Regenerated from discovery document revision 20220611
@@ -1443,6 +1443,14 @@ module Google
1443
1443
  # @return [String]
1444
1444
  attr_accessor :null_marker
1445
1445
 
1446
+ # [Optional] Preserves the embedded ASCII control characters (the first 32
1447
+ # characters in the ASCII-table, from '\x00' to '\x1F') when loading from CSV.
1448
+ # Only applicable to CSV, ignored for other formats.
1449
+ # Corresponds to the JSON property `preserveAsciiControlCharacters`
1450
+ # @return [Boolean]
1451
+ attr_accessor :preserve_ascii_control_characters
1452
+ alias_method :preserve_ascii_control_characters?, :preserve_ascii_control_characters
1453
+
1446
1454
  # [Optional] The value that is used to quote data sections in a CSV file.
1447
1455
  # BigQuery converts the string to ISO-8859-1 encoding, and then uses the first
1448
1456
  # byte of the encoded string to split the data in its raw, binary state. The
@@ -1480,6 +1488,7 @@ module Google
1480
1488
  @encoding = args[:encoding] if args.key?(:encoding)
1481
1489
  @field_delimiter = args[:field_delimiter] if args.key?(:field_delimiter)
1482
1490
  @null_marker = args[:null_marker] if args.key?(:null_marker)
1491
+ @preserve_ascii_control_characters = args[:preserve_ascii_control_characters] if args.key?(:preserve_ascii_control_characters)
1483
1492
  @quote = args[:quote] if args.key?(:quote)
1484
1493
  @skip_leading_rows = args[:skip_leading_rows] if args.key?(:skip_leading_rows)
1485
1494
  end
@@ -2657,6 +2666,12 @@ module Google
2657
2666
  # @return [Google::Apis::BigqueryV2::ParquetOptions]
2658
2667
  attr_accessor :parquet_options
2659
2668
 
2669
+ # [Optional] Provide a referencing file with the expected table schema. Enabled
2670
+ # for the format: AVRO, PARQUET, ORC.
2671
+ # Corresponds to the JSON property `referenceFileSchemaUri`
2672
+ # @return [String]
2673
+ attr_accessor :reference_file_schema_uri
2674
+
2660
2675
  # [Optional] The schema for the data. Schema is required for CSV and JSON
2661
2676
  # formats. Schema is disallowed for Google Cloud Bigtable, Cloud Datastore
2662
2677
  # backups, and Avro formats.
@@ -2702,6 +2717,7 @@ module Google
2702
2717
  @ignore_unknown_values = args[:ignore_unknown_values] if args.key?(:ignore_unknown_values)
2703
2718
  @max_bad_records = args[:max_bad_records] if args.key?(:max_bad_records)
2704
2719
  @parquet_options = args[:parquet_options] if args.key?(:parquet_options)
2720
+ @reference_file_schema_uri = args[:reference_file_schema_uri] if args.key?(:reference_file_schema_uri)
2705
2721
  @schema = args[:schema] if args.key?(:schema)
2706
2722
  @source_format = args[:source_format] if args.key?(:source_format)
2707
2723
  @source_uris = args[:source_uris] if args.key?(:source_uris)
@@ -3870,6 +3886,12 @@ module Google
3870
3886
  # @return [Google::Apis::BigqueryV2::RangePartitioning]
3871
3887
  attr_accessor :range_partitioning
3872
3888
 
3889
+ # User provided referencing file with the expected reader schema, Available for
3890
+ # the format: AVRO, PARQUET, ORC.
3891
+ # Corresponds to the JSON property `referenceFileSchemaUri`
3892
+ # @return [String]
3893
+ attr_accessor :reference_file_schema_uri
3894
+
3873
3895
  # [Optional] The schema for the destination table. The schema can be omitted if
3874
3896
  # the destination table already exists, or if you're loading data from Google
3875
3897
  # Cloud Datastore.
@@ -3980,6 +4002,7 @@ module Google
3980
4002
  @projection_fields = args[:projection_fields] if args.key?(:projection_fields)
3981
4003
  @quote = args[:quote] if args.key?(:quote)
3982
4004
  @range_partitioning = args[:range_partitioning] if args.key?(:range_partitioning)
4005
+ @reference_file_schema_uri = args[:reference_file_schema_uri] if args.key?(:reference_file_schema_uri)
3983
4006
  @schema = args[:schema] if args.key?(:schema)
3984
4007
  @schema_inline = args[:schema_inline] if args.key?(:schema_inline)
3985
4008
  @schema_inline_format = args[:schema_inline_format] if args.key?(:schema_inline_format)
@@ -6136,7 +6159,8 @@ module Google
6136
6159
  # @return [Fixnum]
6137
6160
  attr_accessor :estimated_runnable_units
6138
6161
 
6139
- # Total parallel units of work remaining for the active stages.
6162
+ # Total units of work remaining for the query. This number can be revised (
6163
+ # increased or decreased) while the query is running.
6140
6164
  # Corresponds to the JSON property `pendingUnits`
6141
6165
  # @return [Fixnum]
6142
6166
  attr_accessor :pending_units
@@ -6312,20 +6336,20 @@ module Google
6312
6336
  include Google::Apis::Core::Hashable
6313
6337
 
6314
6338
  # Fully qualified name of the user-provided connection object which holds the
6315
- # authentication information to send requests to the remote service. projects/`
6316
- # project_id`/locations/`location_id`/connections/`connection_id`
6339
+ # authentication information to send requests to the remote service. Format: ```"
6340
+ # projects/`projectId`/locations/`locationId`/connections/`connectionId`"```
6317
6341
  # Corresponds to the JSON property `connection`
6318
6342
  # @return [String]
6319
6343
  attr_accessor :connection
6320
6344
 
6321
- # Endpoint of the user-provided remote service (e.g. a function url in Google
6322
- # Cloud Functions).
6345
+ # Endpoint of the user-provided remote service, e.g. ```https://us-east1-
6346
+ # my_gcf_project.cloudfunctions.net/remote_add```
6323
6347
  # Corresponds to the JSON property `endpoint`
6324
6348
  # @return [String]
6325
6349
  attr_accessor :endpoint
6326
6350
 
6327
6351
  # Max number of rows in each batch sent to the remote service. If absent or if 0,
6328
- # it means no limit.
6352
+ # BigQuery dynamically decides the number of rows in a batch.
6329
6353
  # Corresponds to the JSON property `maxBatchingRows`
6330
6354
  # @return [Fixnum]
6331
6355
  attr_accessor :max_batching_rows
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module BigqueryV2
18
18
  # Version of the google-apis-bigquery_v2 gem
19
- GEM_VERSION = "0.35.0"
19
+ GEM_VERSION = "0.38.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.7.0"
22
+ GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220611"
25
+ REVISION = "20220730"
26
26
  end
27
27
  end
28
28
  end
@@ -1357,6 +1357,7 @@ module Google
1357
1357
  property :encoding, as: 'encoding'
1358
1358
  property :field_delimiter, as: 'fieldDelimiter'
1359
1359
  property :null_marker, as: 'null_marker'
1360
+ property :preserve_ascii_control_characters, as: 'preserveAsciiControlCharacters'
1360
1361
  property :quote, as: 'quote'
1361
1362
  property :skip_leading_rows, :numeric_string => true, as: 'skipLeadingRows'
1362
1363
  end
@@ -1652,6 +1653,7 @@ module Google
1652
1653
  property :max_bad_records, as: 'maxBadRecords'
1653
1654
  property :parquet_options, as: 'parquetOptions', class: Google::Apis::BigqueryV2::ParquetOptions, decorator: Google::Apis::BigqueryV2::ParquetOptions::Representation
1654
1655
 
1656
+ property :reference_file_schema_uri, as: 'referenceFileSchemaUri'
1655
1657
  property :schema, as: 'schema', class: Google::Apis::BigqueryV2::TableSchema, decorator: Google::Apis::BigqueryV2::TableSchema::Representation
1656
1658
 
1657
1659
  property :source_format, as: 'sourceFormat'
@@ -1965,6 +1967,7 @@ module Google
1965
1967
  property :quote, as: 'quote'
1966
1968
  property :range_partitioning, as: 'rangePartitioning', class: Google::Apis::BigqueryV2::RangePartitioning, decorator: Google::Apis::BigqueryV2::RangePartitioning::Representation
1967
1969
 
1970
+ property :reference_file_schema_uri, as: 'referenceFileSchemaUri'
1968
1971
  property :schema, as: 'schema', class: Google::Apis::BigqueryV2::TableSchema, decorator: Google::Apis::BigqueryV2::TableSchema::Representation
1969
1972
 
1970
1973
  property :schema_inline, as: 'schemaInline'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-bigquery_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.35.0
4
+ version: 0.38.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-27 00:00:00.000000000 Z
11
+ date: 2022-08-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.6'
19
+ version: '0.7'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.6'
29
+ version: '0.7'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquery_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.35.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.38.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquery_v2
63
63
  post_install_message:
64
64
  rdoc_options: []