google-apis-bigquery_v2 0.57.0 → 0.58.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/bigquery_v2/classes.rb +138 -37
- data/lib/google/apis/bigquery_v2/gem_version.rb +2 -2
- data/lib/google/apis/bigquery_v2/representations.rb +33 -9
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a44c910c5081978430c675926c9268870fef6a7daf83837595af8ad936bdfe05
|
4
|
+
data.tar.gz: 47bdf0a2cb09f3ce7ecfcbee024a30924704aad91eddca48099f0207e452e8cf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e2b1a0178390792340ce5a43fcd3873523480f64899ceadb795161ca54f9edcb789ea769bcc7c5c6b3619c0171bf73d03b18f878472e2e16537484d12f0d7551
|
7
|
+
data.tar.gz: 8e423dae7e5798536f314c4b21fe376cc251248c2bf66d60212874ef4bb3f8bc4b78143081ca73cb049ed70e36023d8ab88c9e91b24d62b3a4101c51da855e2c
|
data/CHANGELOG.md
CHANGED
@@ -622,6 +622,49 @@ module Google
|
|
622
622
|
end
|
623
623
|
end
|
624
624
|
|
625
|
+
#
|
626
|
+
class BigLakeConfiguration
|
627
|
+
include Google::Apis::Core::Hashable
|
628
|
+
|
629
|
+
# [Required] Required and immutable. Credential reference for accessing external
|
630
|
+
# storage system. Normalized as project_id.location_id.connection_id.
|
631
|
+
# Corresponds to the JSON property `connectionId`
|
632
|
+
# @return [String]
|
633
|
+
attr_accessor :connection_id
|
634
|
+
|
635
|
+
# [Required] Required and immutable. Open source file format that the table data
|
636
|
+
# is stored in. Currently only PARQUET is supported.
|
637
|
+
# Corresponds to the JSON property `fileFormat`
|
638
|
+
# @return [String]
|
639
|
+
attr_accessor :file_format
|
640
|
+
|
641
|
+
# [Required] Required and immutable. Fully qualified location prefix of the
|
642
|
+
# external folder where data is stored. Normalized to standard format: "gs:////".
|
643
|
+
# Starts with "gs://" rather than "/bigstore/". Ends with "/". Does not contain
|
644
|
+
# "*". See also BigLakeStorageMetadata on how it is used.
|
645
|
+
# Corresponds to the JSON property `storageUri`
|
646
|
+
# @return [String]
|
647
|
+
attr_accessor :storage_uri
|
648
|
+
|
649
|
+
# [Required] Required and immutable. Open source file format that the table data
|
650
|
+
# is stored in. Currently only PARQUET is supported.
|
651
|
+
# Corresponds to the JSON property `tableFormat`
|
652
|
+
# @return [String]
|
653
|
+
attr_accessor :table_format
|
654
|
+
|
655
|
+
def initialize(**args)
|
656
|
+
update!(**args)
|
657
|
+
end
|
658
|
+
|
659
|
+
# Update properties of this object
|
660
|
+
def update!(**args)
|
661
|
+
@connection_id = args[:connection_id] if args.key?(:connection_id)
|
662
|
+
@file_format = args[:file_format] if args.key?(:file_format)
|
663
|
+
@storage_uri = args[:storage_uri] if args.key?(:storage_uri)
|
664
|
+
@table_format = args[:table_format] if args.key?(:table_format)
|
665
|
+
end
|
666
|
+
end
|
667
|
+
|
625
668
|
#
|
626
669
|
class BigQueryModelTraining
|
627
670
|
include Google::Apis::Core::Hashable
|
@@ -3364,7 +3407,7 @@ module Google
|
|
3364
3407
|
|
3365
3408
|
# [Output-only] Specifies the base table involved in the reason that no search
|
3366
3409
|
# index was used.
|
3367
|
-
# Corresponds to the JSON property `
|
3410
|
+
# Corresponds to the JSON property `baseTable`
|
3368
3411
|
# @return [Google::Apis::BigqueryV2::TableReference]
|
3369
3412
|
attr_accessor :base_table
|
3370
3413
|
|
@@ -3375,7 +3418,7 @@ module Google
|
|
3375
3418
|
attr_accessor :code
|
3376
3419
|
|
3377
3420
|
# [Output-only] Specifies the name of the unused search index, if available.
|
3378
|
-
# Corresponds to the JSON property `
|
3421
|
+
# Corresponds to the JSON property `indexName`
|
3379
3422
|
# @return [String]
|
3380
3423
|
attr_accessor :index_name
|
3381
3424
|
|
@@ -5096,12 +5139,12 @@ module Google
|
|
5096
5139
|
include Google::Apis::Core::Hashable
|
5097
5140
|
|
5098
5141
|
# [Output-only] Number of logical bytes copied to the destination table.
|
5099
|
-
# Corresponds to the JSON property `
|
5142
|
+
# Corresponds to the JSON property `copiedLogicalBytes`
|
5100
5143
|
# @return [Fixnum]
|
5101
5144
|
attr_accessor :copied_logical_bytes
|
5102
5145
|
|
5103
5146
|
# [Output-only] Number of rows copied to the destination table.
|
5104
|
-
# Corresponds to the JSON property `
|
5147
|
+
# Corresponds to the JSON property `copiedRows`
|
5105
5148
|
# @return [Fixnum]
|
5106
5149
|
attr_accessor :copied_rows
|
5107
5150
|
|
@@ -5277,7 +5320,7 @@ module Google
|
|
5277
5320
|
|
5278
5321
|
# [Optional] Allow non incremental materialized view definition. The default
|
5279
5322
|
# value is "false".
|
5280
|
-
# Corresponds to the JSON property `
|
5323
|
+
# Corresponds to the JSON property `allowNonIncrementalDefinition`
|
5281
5324
|
# @return [Boolean]
|
5282
5325
|
attr_accessor :allow_non_incremental_definition
|
5283
5326
|
alias_method :allow_non_incremental_definition?, :allow_non_incremental_definition
|
@@ -5686,22 +5729,22 @@ module Google
|
|
5686
5729
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
5687
5730
|
# the request, the resource, or both. To learn which resources support
|
5688
5731
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
5689
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
5732
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
5690
5733
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
5691
5734
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
5692
5735
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
5693
5736
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
5694
5737
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
5695
5738
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
5696
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
5697
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
5698
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
5699
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
5700
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
5701
|
-
# access description: Does not grant access after Sep 2020
|
5702
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
5703
|
-
# a description of IAM and its features, see the
|
5704
|
-
# cloud.google.com/iam/docs/).
|
5739
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
5740
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
5741
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
5742
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
5743
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
5744
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
5745
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
5746
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
5747
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
5705
5748
|
class Policy
|
5706
5749
|
include Google::Apis::Core::Hashable
|
5707
5750
|
|
@@ -6592,6 +6635,11 @@ module Google
|
|
6592
6635
|
# @return [Fixnum]
|
6593
6636
|
attr_accessor :max_batching_rows
|
6594
6637
|
|
6638
|
+
# Output only. The model version for LLM.
|
6639
|
+
# Corresponds to the JSON property `remoteModelVersion`
|
6640
|
+
# @return [String]
|
6641
|
+
attr_accessor :remote_model_version
|
6642
|
+
|
6595
6643
|
# Output only. The remote service type for remote model.
|
6596
6644
|
# Corresponds to the JSON property `remoteServiceType`
|
6597
6645
|
# @return [String]
|
@@ -6606,6 +6654,7 @@ module Google
|
|
6606
6654
|
@connection = args[:connection] if args.key?(:connection)
|
6607
6655
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
6608
6656
|
@max_batching_rows = args[:max_batching_rows] if args.key?(:max_batching_rows)
|
6657
|
+
@remote_model_version = args[:remote_model_version] if args.key?(:remote_model_version)
|
6609
6658
|
@remote_service_type = args[:remote_service_type] if args.key?(:remote_service_type)
|
6610
6659
|
end
|
6611
6660
|
end
|
@@ -6625,6 +6674,12 @@ module Google
|
|
6625
6674
|
# @return [Fixnum]
|
6626
6675
|
attr_accessor :creation_time
|
6627
6676
|
|
6677
|
+
# Optional. Data governance specific option, if the value is DATA_MASKING, the
|
6678
|
+
# function will be validated as masking functions.
|
6679
|
+
# Corresponds to the JSON property `dataGovernanceType`
|
6680
|
+
# @return [String]
|
6681
|
+
attr_accessor :data_governance_type
|
6682
|
+
|
6628
6683
|
# Required. The body of the routine. For functions, this is the expression in
|
6629
6684
|
# the AS clause. If language=SQL, it is the substring inside (but excluding) the
|
6630
6685
|
# parentheses. For example, for the function created with the following
|
@@ -6725,6 +6780,7 @@ module Google
|
|
6725
6780
|
def update!(**args)
|
6726
6781
|
@arguments = args[:arguments] if args.key?(:arguments)
|
6727
6782
|
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
6783
|
+
@data_governance_type = args[:data_governance_type] if args.key?(:data_governance_type)
|
6728
6784
|
@definition_body = args[:definition_body] if args.key?(:definition_body)
|
6729
6785
|
@description = args[:description] if args.key?(:description)
|
6730
6786
|
@determinism_level = args[:determinism_level] if args.key?(:determinism_level)
|
@@ -6992,9 +7048,9 @@ module Google
|
|
6992
7048
|
# When index_usage_mode is UNUSED or PARTIALLY_USED, this field explains why
|
6993
7049
|
# index was not used in all or part of the search query. If index_usage_mode is
|
6994
7050
|
# FULLLY_USED, this field is not populated.
|
6995
|
-
# Corresponds to the JSON property `
|
7051
|
+
# Corresponds to the JSON property `indexUnusedReasons`
|
6996
7052
|
# @return [Array<Google::Apis::BigqueryV2::IndexUnusedReason>]
|
6997
|
-
attr_accessor :
|
7053
|
+
attr_accessor :index_unused_reasons
|
6998
7054
|
|
6999
7055
|
# Specifies index usage mode for the query.
|
7000
7056
|
# Corresponds to the JSON property `indexUsageMode`
|
@@ -7007,7 +7063,7 @@ module Google
|
|
7007
7063
|
|
7008
7064
|
# Update properties of this object
|
7009
7065
|
def update!(**args)
|
7010
|
-
@
|
7066
|
+
@index_unused_reasons = args[:index_unused_reasons] if args.key?(:index_unused_reasons)
|
7011
7067
|
@index_usage_mode = args[:index_usage_mode] if args.key?(:index_usage_mode)
|
7012
7068
|
end
|
7013
7069
|
end
|
@@ -7046,22 +7102,22 @@ module Google
|
|
7046
7102
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
7047
7103
|
# the request, the resource, or both. To learn which resources support
|
7048
7104
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
7049
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
7105
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
7050
7106
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
7051
7107
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
7052
7108
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
7053
7109
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
7054
7110
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
7055
7111
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
7056
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
7057
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
7058
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
7059
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
7060
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
7061
|
-
# access description: Does not grant access after Sep 2020
|
7062
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
7063
|
-
# a description of IAM and its features, see the
|
7064
|
-
# cloud.google.com/iam/docs/).
|
7112
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
7113
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
7114
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
7115
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
7116
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
7117
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
7118
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
7119
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
7120
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
7065
7121
|
# Corresponds to the JSON property `policy`
|
7066
7122
|
# @return [Google::Apis::BigqueryV2::Policy]
|
7067
7123
|
attr_accessor :policy
|
@@ -7236,17 +7292,17 @@ module Google
|
|
7236
7292
|
attr_accessor :endpoints
|
7237
7293
|
|
7238
7294
|
# [Output-only] Logging info is used to generate a link to Cloud Logging.
|
7239
|
-
# Corresponds to the JSON property `
|
7295
|
+
# Corresponds to the JSON property `loggingInfo`
|
7240
7296
|
# @return [Google::Apis::BigqueryV2::SparkLoggingInfo]
|
7241
7297
|
attr_accessor :logging_info
|
7242
7298
|
|
7243
7299
|
# [Output-only] Spark job id if a Spark job is created successfully.
|
7244
|
-
# Corresponds to the JSON property `
|
7300
|
+
# Corresponds to the JSON property `sparkJobId`
|
7245
7301
|
# @return [String]
|
7246
7302
|
attr_accessor :spark_job_id
|
7247
7303
|
|
7248
7304
|
# [Output-only] Location where the Spark job is executed.
|
7249
|
-
# Corresponds to the JSON property `
|
7305
|
+
# Corresponds to the JSON property `sparkJobLocation`
|
7250
7306
|
# @return [String]
|
7251
7307
|
attr_accessor :spark_job_location
|
7252
7308
|
|
@@ -7282,6 +7338,16 @@ module Google
|
|
7282
7338
|
# @return [Google::Apis::BigqueryV2::StandardSqlDataType]
|
7283
7339
|
attr_accessor :array_element_type
|
7284
7340
|
|
7341
|
+
# The data type of a variable such as a function argument. Examples include: *
|
7342
|
+
# INT64: ``"typeKind": "INT64"`` * ARRAY: ` "typeKind": "ARRAY", "
|
7343
|
+
# arrayElementType": `"typeKind": "STRING"` ` * STRUCT>: ` "typeKind": "STRUCT",
|
7344
|
+
# "structType": ` "fields": [ ` "name": "x", "type": `"typeKind": "STRING"` `, `
|
7345
|
+
# "name": "y", "type": ` "typeKind": "ARRAY", "arrayElementType": `"typeKind": "
|
7346
|
+
# DATE"` ` ` ] ` `
|
7347
|
+
# Corresponds to the JSON property `rangeElementType`
|
7348
|
+
# @return [Google::Apis::BigqueryV2::StandardSqlDataType]
|
7349
|
+
attr_accessor :range_element_type
|
7350
|
+
|
7285
7351
|
# The fields of this struct, in order, if type_kind = "STRUCT".
|
7286
7352
|
# Corresponds to the JSON property `structType`
|
7287
7353
|
# @return [Google::Apis::BigqueryV2::StandardSqlStructType]
|
@@ -7300,6 +7366,7 @@ module Google
|
|
7300
7366
|
# Update properties of this object
|
7301
7367
|
def update!(**args)
|
7302
7368
|
@array_element_type = args[:array_element_type] if args.key?(:array_element_type)
|
7369
|
+
@range_element_type = args[:range_element_type] if args.key?(:range_element_type)
|
7303
7370
|
@struct_type = args[:struct_type] if args.key?(:struct_type)
|
7304
7371
|
@type_kind = args[:type_kind] if args.key?(:type_kind)
|
7305
7372
|
end
|
@@ -7430,6 +7497,11 @@ module Google
|
|
7430
7497
|
class Table
|
7431
7498
|
include Google::Apis::Core::Hashable
|
7432
7499
|
|
7500
|
+
# [Optional] Specifies the configuration of a BigLake managed table.
|
7501
|
+
# Corresponds to the JSON property `biglakeConfiguration`
|
7502
|
+
# @return [Google::Apis::BigqueryV2::BigLakeConfiguration]
|
7503
|
+
attr_accessor :biglake_configuration
|
7504
|
+
|
7433
7505
|
# [Output-only] Clone definition.
|
7434
7506
|
# Corresponds to the JSON property `cloneDefinition`
|
7435
7507
|
# @return [Google::Apis::BigqueryV2::CloneDefinition]
|
@@ -7692,6 +7764,7 @@ module Google
|
|
7692
7764
|
|
7693
7765
|
# Update properties of this object
|
7694
7766
|
def update!(**args)
|
7767
|
+
@biglake_configuration = args[:biglake_configuration] if args.key?(:biglake_configuration)
|
7695
7768
|
@clone_definition = args[:clone_definition] if args.key?(:clone_definition)
|
7696
7769
|
@clustering = args[:clustering] if args.key?(:clustering)
|
7697
7770
|
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
@@ -8605,6 +8678,11 @@ module Google
|
|
8605
8678
|
attr_accessor :calculate_p_values
|
8606
8679
|
alias_method :calculate_p_values?, :calculate_p_values
|
8607
8680
|
|
8681
|
+
# Categorical feature encoding method.
|
8682
|
+
# Corresponds to the JSON property `categoryEncodingMethod`
|
8683
|
+
# @return [String]
|
8684
|
+
attr_accessor :category_encoding_method
|
8685
|
+
|
8608
8686
|
# If true, clean spikes and dips in the input time series.
|
8609
8687
|
# Corresponds to the JSON property `cleanSpikesAndDips`
|
8610
8688
|
# @return [Boolean]
|
@@ -8719,6 +8797,11 @@ module Google
|
|
8719
8797
|
# @return [String]
|
8720
8798
|
attr_accessor :holiday_region
|
8721
8799
|
|
8800
|
+
# A list of geographical regions that are used for time series modeling.
|
8801
|
+
# Corresponds to the JSON property `holidayRegions`
|
8802
|
+
# @return [Array<String>]
|
8803
|
+
attr_accessor :holiday_regions
|
8804
|
+
|
8722
8805
|
# The number of periods ahead that need to be forecasted.
|
8723
8806
|
# Corresponds to the JSON property `horizon`
|
8724
8807
|
# @return [Fixnum]
|
@@ -8819,8 +8902,9 @@ module Google
|
|
8819
8902
|
# @return [Fixnum]
|
8820
8903
|
attr_accessor :max_parallel_trials
|
8821
8904
|
|
8822
|
-
#
|
8823
|
-
#
|
8905
|
+
# The maximum number of time points in a time series that can be used in
|
8906
|
+
# modeling the trend component of the time series. Don't use this option with
|
8907
|
+
# the `timeSeriesLengthFraction` or `minTimeSeriesLength` options.
|
8824
8908
|
# Corresponds to the JSON property `maxTimeSeriesLength`
|
8825
8909
|
# @return [Fixnum]
|
8826
8910
|
attr_accessor :max_time_series_length
|
@@ -8841,8 +8925,14 @@ module Google
|
|
8841
8925
|
# @return [Float]
|
8842
8926
|
attr_accessor :min_split_loss
|
8843
8927
|
|
8844
|
-
#
|
8845
|
-
#
|
8928
|
+
# The minimum number of time points in a time series that are used in modeling
|
8929
|
+
# the trend component of the time series. If you use this option you must also
|
8930
|
+
# set the `timeSeriesLengthFraction` option. This training option ensures that
|
8931
|
+
# enough time points are available when you use `timeSeriesLengthFraction` in
|
8932
|
+
# trend modeling. This is particularly important when forecasting multiple time
|
8933
|
+
# series in a single query using `timeSeriesIdColumn`. If the total number of
|
8934
|
+
# time points is less than the `minTimeSeriesLength` value, then the query uses
|
8935
|
+
# all available time points.
|
8846
8936
|
# Corresponds to the JSON property `minTimeSeriesLength`
|
8847
8937
|
# @return [Fixnum]
|
8848
8938
|
attr_accessor :min_time_series_length
|
@@ -8961,7 +9051,12 @@ module Google
|
|
8961
9051
|
# @return [Array<String>]
|
8962
9052
|
attr_accessor :time_series_id_columns
|
8963
9053
|
|
8964
|
-
#
|
9054
|
+
# The fraction of the interpolated length of the time series that's used to
|
9055
|
+
# model the time series trend component. All of the time points of the time
|
9056
|
+
# series are used to model the non-trend component. This training option
|
9057
|
+
# accelerates modeling training without sacrificing much forecasting accuracy.
|
9058
|
+
# You can use this option with `minTimeSeriesLength` but not with `
|
9059
|
+
# maxTimeSeriesLength`.
|
8965
9060
|
# Corresponds to the JSON property `timeSeriesLengthFraction`
|
8966
9061
|
# @return [Float]
|
8967
9062
|
attr_accessor :time_series_length_fraction
|
@@ -8976,7 +9071,11 @@ module Google
|
|
8976
9071
|
# @return [String]
|
8977
9072
|
attr_accessor :tree_method
|
8978
9073
|
|
8979
|
-
#
|
9074
|
+
# Smoothing window size for the trend component. When a positive value is
|
9075
|
+
# specified, a center moving average smoothing is applied on the history trend.
|
9076
|
+
# When the smoothing window is out of the boundary at the beginning or the end
|
9077
|
+
# of the trend, the first element or the last element is padded to fill the
|
9078
|
+
# smoothing window before the average is applied.
|
8980
9079
|
# Corresponds to the JSON property `trendSmoothingWindowSize`
|
8981
9080
|
# @return [Fixnum]
|
8982
9081
|
attr_accessor :trend_smoothing_window_size
|
@@ -9025,6 +9124,7 @@ module Google
|
|
9025
9124
|
@booster_type = args[:booster_type] if args.key?(:booster_type)
|
9026
9125
|
@budget_hours = args[:budget_hours] if args.key?(:budget_hours)
|
9027
9126
|
@calculate_p_values = args[:calculate_p_values] if args.key?(:calculate_p_values)
|
9127
|
+
@category_encoding_method = args[:category_encoding_method] if args.key?(:category_encoding_method)
|
9028
9128
|
@clean_spikes_and_dips = args[:clean_spikes_and_dips] if args.key?(:clean_spikes_and_dips)
|
9029
9129
|
@color_space = args[:color_space] if args.key?(:color_space)
|
9030
9130
|
@colsample_bylevel = args[:colsample_bylevel] if args.key?(:colsample_bylevel)
|
@@ -9044,6 +9144,7 @@ module Google
|
|
9044
9144
|
@fit_intercept = args[:fit_intercept] if args.key?(:fit_intercept)
|
9045
9145
|
@hidden_units = args[:hidden_units] if args.key?(:hidden_units)
|
9046
9146
|
@holiday_region = args[:holiday_region] if args.key?(:holiday_region)
|
9147
|
+
@holiday_regions = args[:holiday_regions] if args.key?(:holiday_regions)
|
9047
9148
|
@horizon = args[:horizon] if args.key?(:horizon)
|
9048
9149
|
@hparam_tuning_objectives = args[:hparam_tuning_objectives] if args.key?(:hparam_tuning_objectives)
|
9049
9150
|
@include_drift = args[:include_drift] if args.key?(:include_drift)
|
@@ -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.58.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230805"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -106,6 +106,12 @@ module Google
|
|
106
106
|
include Google::Apis::Core::JsonObjectSupport
|
107
107
|
end
|
108
108
|
|
109
|
+
class BigLakeConfiguration
|
110
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
|
+
|
112
|
+
include Google::Apis::Core::JsonObjectSupport
|
113
|
+
end
|
114
|
+
|
109
115
|
class BigQueryModelTraining
|
110
116
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
117
|
|
@@ -1225,6 +1231,16 @@ module Google
|
|
1225
1231
|
end
|
1226
1232
|
end
|
1227
1233
|
|
1234
|
+
class BigLakeConfiguration
|
1235
|
+
# @private
|
1236
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1237
|
+
property :connection_id, as: 'connectionId'
|
1238
|
+
property :file_format, as: 'fileFormat'
|
1239
|
+
property :storage_uri, as: 'storageUri'
|
1240
|
+
property :table_format, as: 'tableFormat'
|
1241
|
+
end
|
1242
|
+
end
|
1243
|
+
|
1228
1244
|
class BigQueryModelTraining
|
1229
1245
|
# @private
|
1230
1246
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1902,10 +1918,10 @@ module Google
|
|
1902
1918
|
class IndexUnusedReason
|
1903
1919
|
# @private
|
1904
1920
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1905
|
-
property :base_table, as: '
|
1921
|
+
property :base_table, as: 'baseTable', class: Google::Apis::BigqueryV2::TableReference, decorator: Google::Apis::BigqueryV2::TableReference::Representation
|
1906
1922
|
|
1907
1923
|
property :code, as: 'code'
|
1908
|
-
property :index_name, as: '
|
1924
|
+
property :index_name, as: 'indexName'
|
1909
1925
|
property :message, as: 'message'
|
1910
1926
|
end
|
1911
1927
|
end
|
@@ -2305,8 +2321,8 @@ module Google
|
|
2305
2321
|
class JobStatistics5
|
2306
2322
|
# @private
|
2307
2323
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2308
|
-
property :copied_logical_bytes, :numeric_string => true, as: '
|
2309
|
-
property :copied_rows, :numeric_string => true, as: '
|
2324
|
+
property :copied_logical_bytes, :numeric_string => true, as: 'copiedLogicalBytes'
|
2325
|
+
property :copied_rows, :numeric_string => true, as: 'copiedRows'
|
2310
2326
|
end
|
2311
2327
|
end
|
2312
2328
|
|
@@ -2365,7 +2381,7 @@ module Google
|
|
2365
2381
|
class MaterializedViewDefinition
|
2366
2382
|
# @private
|
2367
2383
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2368
|
-
property :allow_non_incremental_definition, as: '
|
2384
|
+
property :allow_non_incremental_definition, as: 'allowNonIncrementalDefinition'
|
2369
2385
|
property :enable_refresh, as: 'enableRefresh'
|
2370
2386
|
property :last_refresh_time, :numeric_string => true, as: 'lastRefreshTime'
|
2371
2387
|
property :max_staleness, :base64 => true, as: 'maxStaleness'
|
@@ -2680,6 +2696,7 @@ module Google
|
|
2680
2696
|
property :connection, as: 'connection'
|
2681
2697
|
property :endpoint, as: 'endpoint'
|
2682
2698
|
property :max_batching_rows, :numeric_string => true, as: 'maxBatchingRows'
|
2699
|
+
property :remote_model_version, as: 'remoteModelVersion'
|
2683
2700
|
property :remote_service_type, as: 'remoteServiceType'
|
2684
2701
|
end
|
2685
2702
|
end
|
@@ -2690,6 +2707,7 @@ module Google
|
|
2690
2707
|
collection :arguments, as: 'arguments', class: Google::Apis::BigqueryV2::Argument, decorator: Google::Apis::BigqueryV2::Argument::Representation
|
2691
2708
|
|
2692
2709
|
property :creation_time, :numeric_string => true, as: 'creationTime'
|
2710
|
+
property :data_governance_type, as: 'dataGovernanceType'
|
2693
2711
|
property :definition_body, as: 'definitionBody'
|
2694
2712
|
property :description, as: 'description'
|
2695
2713
|
property :determinism_level, as: 'determinismLevel'
|
@@ -2783,7 +2801,7 @@ module Google
|
|
2783
2801
|
class SearchStatistics
|
2784
2802
|
# @private
|
2785
2803
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2786
|
-
collection :
|
2804
|
+
collection :index_unused_reasons, as: 'indexUnusedReasons', class: Google::Apis::BigqueryV2::IndexUnusedReason, decorator: Google::Apis::BigqueryV2::IndexUnusedReason::Representation
|
2787
2805
|
|
2788
2806
|
property :index_usage_mode, as: 'indexUsageMode'
|
2789
2807
|
end
|
@@ -2843,10 +2861,10 @@ module Google
|
|
2843
2861
|
# @private
|
2844
2862
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2845
2863
|
hash :endpoints, as: 'endpoints'
|
2846
|
-
property :logging_info, as: '
|
2864
|
+
property :logging_info, as: 'loggingInfo', class: Google::Apis::BigqueryV2::SparkLoggingInfo, decorator: Google::Apis::BigqueryV2::SparkLoggingInfo::Representation
|
2847
2865
|
|
2848
|
-
property :spark_job_id, as: '
|
2849
|
-
property :spark_job_location, as: '
|
2866
|
+
property :spark_job_id, as: 'sparkJobId'
|
2867
|
+
property :spark_job_location, as: 'sparkJobLocation'
|
2850
2868
|
end
|
2851
2869
|
end
|
2852
2870
|
|
@@ -2855,6 +2873,8 @@ module Google
|
|
2855
2873
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2856
2874
|
property :array_element_type, as: 'arrayElementType', class: Google::Apis::BigqueryV2::StandardSqlDataType, decorator: Google::Apis::BigqueryV2::StandardSqlDataType::Representation
|
2857
2875
|
|
2876
|
+
property :range_element_type, as: 'rangeElementType', class: Google::Apis::BigqueryV2::StandardSqlDataType, decorator: Google::Apis::BigqueryV2::StandardSqlDataType::Representation
|
2877
|
+
|
2858
2878
|
property :struct_type, as: 'structType', class: Google::Apis::BigqueryV2::StandardSqlStructType, decorator: Google::Apis::BigqueryV2::StandardSqlStructType::Representation
|
2859
2879
|
|
2860
2880
|
property :type_kind, as: 'typeKind'
|
@@ -2905,6 +2925,8 @@ module Google
|
|
2905
2925
|
class Table
|
2906
2926
|
# @private
|
2907
2927
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2928
|
+
property :biglake_configuration, as: 'biglakeConfiguration', class: Google::Apis::BigqueryV2::BigLakeConfiguration, decorator: Google::Apis::BigqueryV2::BigLakeConfiguration::Representation
|
2929
|
+
|
2908
2930
|
property :clone_definition, as: 'cloneDefinition', class: Google::Apis::BigqueryV2::CloneDefinition, decorator: Google::Apis::BigqueryV2::CloneDefinition::Representation
|
2909
2931
|
|
2910
2932
|
property :clustering, as: 'clustering', class: Google::Apis::BigqueryV2::Clustering, decorator: Google::Apis::BigqueryV2::Clustering::Representation
|
@@ -3207,6 +3229,7 @@ module Google
|
|
3207
3229
|
property :booster_type, as: 'boosterType'
|
3208
3230
|
property :budget_hours, as: 'budgetHours'
|
3209
3231
|
property :calculate_p_values, as: 'calculatePValues'
|
3232
|
+
property :category_encoding_method, as: 'categoryEncodingMethod'
|
3210
3233
|
property :clean_spikes_and_dips, as: 'cleanSpikesAndDips'
|
3211
3234
|
property :color_space, as: 'colorSpace'
|
3212
3235
|
property :colsample_bylevel, as: 'colsampleBylevel'
|
@@ -3226,6 +3249,7 @@ module Google
|
|
3226
3249
|
property :fit_intercept, as: 'fitIntercept'
|
3227
3250
|
collection :hidden_units, as: 'hiddenUnits'
|
3228
3251
|
property :holiday_region, as: 'holidayRegion'
|
3252
|
+
collection :holiday_regions, as: 'holidayRegions'
|
3229
3253
|
property :horizon, :numeric_string => true, as: 'horizon'
|
3230
3254
|
collection :hparam_tuning_objectives, as: 'hparamTuningObjectives'
|
3231
3255
|
property :include_drift, as: 'includeDrift'
|
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.58.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: 2023-
|
11
|
+
date: 2023-08-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/main/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.58.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: []
|