google-apis-bigquery_v2 0.16.0 → 0.17.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b5091e316b06374adfd8c8c737e8bc47cf8de7c01ec4f149281acb175b1023e8
|
|
4
|
+
data.tar.gz: 3ef80007dd5e777bd27641b4107e09fd176a8c1c8fc3365aa8e9ff6c0fe7f99a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 69df559cfa6940c409925b3a248a699ffe6a69786f99a2db08aa48d81812771e1320a6aa7d30e3afd3bbd2471be533d8721c7d4d86813a6fb5a323f1077b2a8a
|
|
7
|
+
data.tar.gz: '0329b563c3978e59d46bf336c5d94312b2d00fe167f055469199133cf250f01c78064b448f73fcd636c67fa022fb2ce3d4fe7c6f246cd72a4c2d66661ec1fc4d'
|
data/CHANGELOG.md
CHANGED
|
@@ -541,9 +541,9 @@ module Google
|
|
|
541
541
|
class AvroOptions
|
|
542
542
|
include Google::Apis::Core::Hashable
|
|
543
543
|
|
|
544
|
-
# [Optional] If set to
|
|
545
|
-
#
|
|
546
|
-
# INTEGER).
|
|
544
|
+
# [Optional] If sourceFormat is set to "AVRO", indicates whether to interpret
|
|
545
|
+
# logical types as the corresponding BigQuery data type (for example, TIMESTAMP),
|
|
546
|
+
# instead of using the raw type (for example, INTEGER).
|
|
547
547
|
# Corresponds to the JSON property `useAvroLogicalTypes`
|
|
548
548
|
# @return [Boolean]
|
|
549
549
|
attr_accessor :use_avro_logical_types
|
|
@@ -1510,6 +1510,11 @@ module Google
|
|
|
1510
1510
|
# @return [Google::Apis::BigqueryV2::DatasetReference]
|
|
1511
1511
|
attr_accessor :dataset_reference
|
|
1512
1512
|
|
|
1513
|
+
# [Output-only] The default collation of the dataset.
|
|
1514
|
+
# Corresponds to the JSON property `defaultCollation`
|
|
1515
|
+
# @return [String]
|
|
1516
|
+
attr_accessor :default_collation
|
|
1517
|
+
|
|
1513
1518
|
#
|
|
1514
1519
|
# Corresponds to the JSON property `defaultEncryptionConfiguration`
|
|
1515
1520
|
# @return [Google::Apis::BigqueryV2::EncryptionConfiguration]
|
|
@@ -1619,6 +1624,7 @@ module Google
|
|
|
1619
1624
|
@access = args[:access] if args.key?(:access)
|
|
1620
1625
|
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
|
1621
1626
|
@dataset_reference = args[:dataset_reference] if args.key?(:dataset_reference)
|
|
1627
|
+
@default_collation = args[:default_collation] if args.key?(:default_collation)
|
|
1622
1628
|
@default_encryption_configuration = args[:default_encryption_configuration] if args.key?(:default_encryption_configuration)
|
|
1623
1629
|
@default_partition_expiration_ms = args[:default_partition_expiration_ms] if args.key?(:default_partition_expiration_ms)
|
|
1624
1630
|
@default_table_expiration_ms = args[:default_table_expiration_ms] if args.key?(:default_table_expiration_ms)
|
|
@@ -3353,9 +3359,9 @@ module Google
|
|
|
3353
3359
|
# @return [Google::Apis::BigqueryV2::TimePartitioning]
|
|
3354
3360
|
attr_accessor :time_partitioning
|
|
3355
3361
|
|
|
3356
|
-
# [Optional] If sourceFormat is set to "AVRO", indicates whether to
|
|
3357
|
-
#
|
|
3358
|
-
# instead of
|
|
3362
|
+
# [Optional] If sourceFormat is set to "AVRO", indicates whether to interpret
|
|
3363
|
+
# logical types as the corresponding BigQuery data type (for example, TIMESTAMP),
|
|
3364
|
+
# instead of using the raw type (for example, INTEGER).
|
|
3359
3365
|
# Corresponds to the JSON property `useAvroLogicalTypes`
|
|
3360
3366
|
# @return [Boolean]
|
|
3361
3367
|
attr_accessor :use_avro_logical_types
|
|
@@ -6175,6 +6181,11 @@ module Google
|
|
|
6175
6181
|
# @return [Fixnum]
|
|
6176
6182
|
attr_accessor :creation_time
|
|
6177
6183
|
|
|
6184
|
+
# [Output-only] The default collation of the table.
|
|
6185
|
+
# Corresponds to the JSON property `defaultCollation`
|
|
6186
|
+
# @return [String]
|
|
6187
|
+
attr_accessor :default_collation
|
|
6188
|
+
|
|
6178
6189
|
# [Optional] A user-friendly description of this table.
|
|
6179
6190
|
# Corresponds to the JSON property `description`
|
|
6180
6191
|
# @return [String]
|
|
@@ -6351,6 +6362,7 @@ module Google
|
|
|
6351
6362
|
def update!(**args)
|
|
6352
6363
|
@clustering = args[:clustering] if args.key?(:clustering)
|
|
6353
6364
|
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
|
6365
|
+
@default_collation = args[:default_collation] if args.key?(:default_collation)
|
|
6354
6366
|
@description = args[:description] if args.key?(:description)
|
|
6355
6367
|
@encryption_configuration = args[:encryption_configuration] if args.key?(:encryption_configuration)
|
|
6356
6368
|
@etag = args[:etag] if args.key?(:etag)
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.17.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20210904"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1244,6 +1244,7 @@ module Google
|
|
|
1244
1244
|
property :creation_time, :numeric_string => true, as: 'creationTime'
|
|
1245
1245
|
property :dataset_reference, as: 'datasetReference', class: Google::Apis::BigqueryV2::DatasetReference, decorator: Google::Apis::BigqueryV2::DatasetReference::Representation
|
|
1246
1246
|
|
|
1247
|
+
property :default_collation, as: 'defaultCollation'
|
|
1247
1248
|
property :default_encryption_configuration, as: 'defaultEncryptionConfiguration', class: Google::Apis::BigqueryV2::EncryptionConfiguration, decorator: Google::Apis::BigqueryV2::EncryptionConfiguration::Representation
|
|
1248
1249
|
|
|
1249
1250
|
property :default_partition_expiration_ms, :numeric_string => true, as: 'defaultPartitionExpirationMs'
|
|
@@ -2366,6 +2367,7 @@ module Google
|
|
|
2366
2367
|
property :clustering, as: 'clustering', class: Google::Apis::BigqueryV2::Clustering, decorator: Google::Apis::BigqueryV2::Clustering::Representation
|
|
2367
2368
|
|
|
2368
2369
|
property :creation_time, :numeric_string => true, as: 'creationTime'
|
|
2370
|
+
property :default_collation, as: 'defaultCollation'
|
|
2369
2371
|
property :description, as: 'description'
|
|
2370
2372
|
property :encryption_configuration, as: 'encryptionConfiguration', class: Google::Apis::BigqueryV2::EncryptionConfiguration, decorator: Google::Apis::BigqueryV2::EncryptionConfiguration::Representation
|
|
2371
2373
|
|
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.
|
|
4
|
+
version: 0.17.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: 2021-09-
|
|
11
|
+
date: 2021-09-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -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/master/generated/google-apis-bigquery_v2/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.17.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-bigquery_v2
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|