google-apis-bigquery_v2 0.11.0 → 0.12.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6a44ebd05f6ef21146f6a201b0ac93d5757a27fde3570198f11ebcf620dcf4bc
|
4
|
+
data.tar.gz: 4da8c4cf1c4b9253219df736d530298549e6fc3d09b18deb829ed8471555e1da
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3880b6f97a1f55873df6fd5d64ce3b05479234291e3f008382293b55517ef436a8b0a82937897a5b75256bb1116765b3001a0a9a15838054b48ff4985b8549a
|
7
|
+
data.tar.gz: e03b1a28b17b06395482e903c7878f05394b5685a4bab8184e3a663e194bfcb0dd945dc1f765eeacd61ec2cf47ef6814ade21e74e1613ca4c8cea901d728072b
|
data/CHANGELOG.md
CHANGED
@@ -7338,6 +7338,14 @@ module Google
|
|
7338
7338
|
# @return [String]
|
7339
7339
|
attr_accessor :query
|
7340
7340
|
|
7341
|
+
# True if the column names are explicitly specified. For example by using the '
|
7342
|
+
# CREATE VIEW v(c1, c2) AS ...' syntax. Can only be set using BigQuery's
|
7343
|
+
# standard SQL: https://cloud.google.com/bigquery/sql-reference/
|
7344
|
+
# Corresponds to the JSON property `useExplicitColumnNames`
|
7345
|
+
# @return [Boolean]
|
7346
|
+
attr_accessor :use_explicit_column_names
|
7347
|
+
alias_method :use_explicit_column_names?, :use_explicit_column_names
|
7348
|
+
|
7341
7349
|
# Specifies whether to use BigQuery's legacy SQL for this view. The default
|
7342
7350
|
# value is true. If set to false, the view will use BigQuery's standard SQL:
|
7343
7351
|
# https://cloud.google.com/bigquery/sql-reference/ Queries and views that
|
@@ -7359,6 +7367,7 @@ module Google
|
|
7359
7367
|
# Update properties of this object
|
7360
7368
|
def update!(**args)
|
7361
7369
|
@query = args[:query] if args.key?(:query)
|
7370
|
+
@use_explicit_column_names = args[:use_explicit_column_names] if args.key?(:use_explicit_column_names)
|
7362
7371
|
@use_legacy_sql = args[:use_legacy_sql] if args.key?(:use_legacy_sql)
|
7363
7372
|
@user_defined_function_resources = args[:user_defined_function_resources] if args.key?(:user_defined_function_resources)
|
7364
7373
|
end
|
@@ -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.12.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210518"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2638,6 +2638,7 @@ module Google
|
|
2638
2638
|
# @private
|
2639
2639
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2640
2640
|
property :query, as: 'query'
|
2641
|
+
property :use_explicit_column_names, as: 'useExplicitColumnNames'
|
2641
2642
|
property :use_legacy_sql, as: 'useLegacySql'
|
2642
2643
|
collection :user_defined_function_resources, as: 'userDefinedFunctionResources', class: Google::Apis::BigqueryV2::UserDefinedFunctionResource, decorator: Google::Apis::BigqueryV2::UserDefinedFunctionResource::Representation
|
2643
2644
|
|
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.12.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-05-
|
11
|
+
date: 2021-05-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-bigquery_v2/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.12.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-bigquery_v2
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|