google-apis-bigquery_v2 0.78.0 → 0.79.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: a20c8641127a48e068c03e822787d6c6834a197386b0645b66ef8d6cb4fc417a
4
- data.tar.gz: 21f2b4558f540fc561f1db15fd11b33e95b1981f9bddf2febb4425c1bb00da29
3
+ metadata.gz: 7c7f2d4a8e1f4d91b11dfefb31a36c811133e1ee506c551fe1504e8ee08c7cec
4
+ data.tar.gz: b8b2ca06d02e96a08a471626c434dcf30f4b37e1d2b7929befde73c9de836577
5
5
  SHA512:
6
- metadata.gz: d2cacd99c24220bf16fd3dc5a8b3fa79f45724edbb0da8ff66eb150320864d8fb8b60b25fb9834a6a6bbbac1a353d3b6631cf0930d84dd8ad1cdacd94945d091
7
- data.tar.gz: bf2d68a2da7b5e1bdf26439ebcfc93a152a65569fff287fa5e450d7ce2b00eac7caa114b4a69eb5d501750e52aa26234825ee052b477384bbe084f399fa13ddd
6
+ metadata.gz: 78cbb9d90588a70e669960a3e68c201218540ee8d50d18ffdebe7493300292f75cdf8bbe9de2b41965e923a8e789331ec3c7a3378b714f2347ec2a067105c59b
7
+ data.tar.gz: bcf06e78fb35644178b77adb3e75c9b72d4dd465423e385c7706483ab445847c853267d36e7c5b1742c743ff39312c87a9326a21198851012d087c322b95a7b9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-bigquery_v2
2
2
 
3
+ ### v0.79.0 (2024-10-06)
4
+
5
+ * Regenerated from discovery document revision 20240919
6
+
3
7
  ### v0.78.0 (2024-09-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20240905
@@ -10702,6 +10702,14 @@ module Google
10702
10702
  # @return [Float]
10703
10703
  attr_accessor :colsample_bytree
10704
10704
 
10705
+ # The contribution metric. Applies to contribution analysis models. Allowed
10706
+ # formats supported are for summable and summable ratio contribution metrics.
10707
+ # These include expressions such as "SUM(x)" or "SUM(x)/SUM(y)", where x and y
10708
+ # are column names from the base table.
10709
+ # Corresponds to the JSON property `contributionMetric`
10710
+ # @return [String]
10711
+ attr_accessor :contribution_metric
10712
+
10705
10713
  # Type of normalization algorithm for boosted tree models using dart booster.
10706
10714
  # Corresponds to the JSON property `dartNormalizeType`
10707
10715
  # @return [String]
@@ -10742,6 +10750,12 @@ module Google
10742
10750
  attr_accessor :decompose_time_series
10743
10751
  alias_method :decompose_time_series?, :decompose_time_series
10744
10752
 
10753
+ # Optional. Names of the columns to slice on. Applies to contribution analysis
10754
+ # models.
10755
+ # Corresponds to the JSON property `dimensionIdColumns`
10756
+ # @return [Array<String>]
10757
+ attr_accessor :dimension_id_columns
10758
+
10745
10759
  # Distance type for clustering models.
10746
10760
  # Corresponds to the JSON property `distanceType`
10747
10761
  # @return [String]
@@ -10831,6 +10845,12 @@ module Google
10831
10845
  # @return [Fixnum]
10832
10846
  attr_accessor :integrated_gradients_num_steps
10833
10847
 
10848
+ # Name of the column used to determine the rows corresponding to control and
10849
+ # test. Applies to contribution analysis models.
10850
+ # Corresponds to the JSON property `isTestColumn`
10851
+ # @return [String]
10852
+ attr_accessor :is_test_column
10853
+
10834
10854
  # Item column specified for matrix factorization models.
10835
10855
  # Corresponds to the JSON property `itemColumn`
10836
10856
  # @return [String]
@@ -10906,6 +10926,11 @@ module Google
10906
10926
  # @return [Fixnum]
10907
10927
  attr_accessor :max_tree_depth
10908
10928
 
10929
+ # The apriori support minimum. Applies to contribution analysis models.
10930
+ # Corresponds to the JSON property `minAprioriSupport`
10931
+ # @return [Float]
10932
+ attr_accessor :min_apriori_support
10933
+
10909
10934
  # When early_stop is true, stops training when accuracy improvement is less than
10910
10935
  # 'min_relative_progress'. Used only for iterative training algorithms.
10911
10936
  # Corresponds to the JSON property `minRelativeProgress`
@@ -11122,12 +11147,14 @@ module Google
11122
11147
  @colsample_bylevel = args[:colsample_bylevel] if args.key?(:colsample_bylevel)
11123
11148
  @colsample_bynode = args[:colsample_bynode] if args.key?(:colsample_bynode)
11124
11149
  @colsample_bytree = args[:colsample_bytree] if args.key?(:colsample_bytree)
11150
+ @contribution_metric = args[:contribution_metric] if args.key?(:contribution_metric)
11125
11151
  @dart_normalize_type = args[:dart_normalize_type] if args.key?(:dart_normalize_type)
11126
11152
  @data_frequency = args[:data_frequency] if args.key?(:data_frequency)
11127
11153
  @data_split_column = args[:data_split_column] if args.key?(:data_split_column)
11128
11154
  @data_split_eval_fraction = args[:data_split_eval_fraction] if args.key?(:data_split_eval_fraction)
11129
11155
  @data_split_method = args[:data_split_method] if args.key?(:data_split_method)
11130
11156
  @decompose_time_series = args[:decompose_time_series] if args.key?(:decompose_time_series)
11157
+ @dimension_id_columns = args[:dimension_id_columns] if args.key?(:dimension_id_columns)
11131
11158
  @distance_type = args[:distance_type] if args.key?(:distance_type)
11132
11159
  @dropout = args[:dropout] if args.key?(:dropout)
11133
11160
  @early_stop = args[:early_stop] if args.key?(:early_stop)
@@ -11144,6 +11171,7 @@ module Google
11144
11171
  @input_label_columns = args[:input_label_columns] if args.key?(:input_label_columns)
11145
11172
  @instance_weight_column = args[:instance_weight_column] if args.key?(:instance_weight_column)
11146
11173
  @integrated_gradients_num_steps = args[:integrated_gradients_num_steps] if args.key?(:integrated_gradients_num_steps)
11174
+ @is_test_column = args[:is_test_column] if args.key?(:is_test_column)
11147
11175
  @item_column = args[:item_column] if args.key?(:item_column)
11148
11176
  @kmeans_initialization_column = args[:kmeans_initialization_column] if args.key?(:kmeans_initialization_column)
11149
11177
  @kmeans_initialization_method = args[:kmeans_initialization_method] if args.key?(:kmeans_initialization_method)
@@ -11158,6 +11186,7 @@ module Google
11158
11186
  @max_parallel_trials = args[:max_parallel_trials] if args.key?(:max_parallel_trials)
11159
11187
  @max_time_series_length = args[:max_time_series_length] if args.key?(:max_time_series_length)
11160
11188
  @max_tree_depth = args[:max_tree_depth] if args.key?(:max_tree_depth)
11189
+ @min_apriori_support = args[:min_apriori_support] if args.key?(:min_apriori_support)
11161
11190
  @min_relative_progress = args[:min_relative_progress] if args.key?(:min_relative_progress)
11162
11191
  @min_split_loss = args[:min_split_loss] if args.key?(:min_split_loss)
11163
11192
  @min_time_series_length = args[:min_time_series_length] if args.key?(:min_time_series_length)
@@ -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.78.0"
19
+ GEM_VERSION = "0.79.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240905"
25
+ REVISION = "20240919"
26
26
  end
27
27
  end
28
28
  end
@@ -3971,12 +3971,14 @@ module Google
3971
3971
  property :colsample_bylevel, as: 'colsampleBylevel'
3972
3972
  property :colsample_bynode, as: 'colsampleBynode'
3973
3973
  property :colsample_bytree, as: 'colsampleBytree'
3974
+ property :contribution_metric, as: 'contributionMetric'
3974
3975
  property :dart_normalize_type, as: 'dartNormalizeType'
3975
3976
  property :data_frequency, as: 'dataFrequency'
3976
3977
  property :data_split_column, as: 'dataSplitColumn'
3977
3978
  property :data_split_eval_fraction, as: 'dataSplitEvalFraction'
3978
3979
  property :data_split_method, as: 'dataSplitMethod'
3979
3980
  property :decompose_time_series, as: 'decomposeTimeSeries'
3981
+ collection :dimension_id_columns, as: 'dimensionIdColumns'
3980
3982
  property :distance_type, as: 'distanceType'
3981
3983
  property :dropout, as: 'dropout'
3982
3984
  property :early_stop, as: 'earlyStop'
@@ -3993,6 +3995,7 @@ module Google
3993
3995
  collection :input_label_columns, as: 'inputLabelColumns'
3994
3996
  property :instance_weight_column, as: 'instanceWeightColumn'
3995
3997
  property :integrated_gradients_num_steps, :numeric_string => true, as: 'integratedGradientsNumSteps'
3998
+ property :is_test_column, as: 'isTestColumn'
3996
3999
  property :item_column, as: 'itemColumn'
3997
4000
  property :kmeans_initialization_column, as: 'kmeansInitializationColumn'
3998
4001
  property :kmeans_initialization_method, as: 'kmeansInitializationMethod'
@@ -4007,6 +4010,7 @@ module Google
4007
4010
  property :max_parallel_trials, :numeric_string => true, as: 'maxParallelTrials'
4008
4011
  property :max_time_series_length, :numeric_string => true, as: 'maxTimeSeriesLength'
4009
4012
  property :max_tree_depth, :numeric_string => true, as: 'maxTreeDepth'
4013
+ property :min_apriori_support, as: 'minAprioriSupport'
4010
4014
  property :min_relative_progress, as: 'minRelativeProgress'
4011
4015
  property :min_split_loss, as: 'minSplitLoss'
4012
4016
  property :min_time_series_length, :numeric_string => true, as: 'minTimeSeriesLength'
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.78.0
4
+ version: 0.79.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: 2024-09-15 00:00:00.000000000 Z
11
+ date: 2024-10-06 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.78.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.79.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: []