google-apis-bigquery_v2 0.9.0 → 0.10.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: b70f30627fcc54e305122d5442de5e82bac938d607850bee31bba0382b2b6d55
4
- data.tar.gz: 5e02bf116b0debbb6806105a48d70f149c6794abe1c25496648a296678aa882f
3
+ metadata.gz: 48a27e0a4c344e4836fb233e76443e94997d51116b1baf9520404fa5aec2cb0b
4
+ data.tar.gz: c9f0557ca87343dc1190e4efb3afeb5df6ec6300b84c2cd920bd86233ac5d4c4
5
5
  SHA512:
6
- metadata.gz: 1813455a88fd9af79994b9f3ab42ef1f2c39b58370e6fdd7fd033a6d2943e9abb360ea270b02afa7ab17c9d0a00b46f3f00acce86439773d714c5efa983507ec
7
- data.tar.gz: bec0fc87928500af6243a25a0feeb6346ad55321d44f3d96b6477e59fc6aa736a9d3578c2267751ed5e793aa31221308799474419f54696b23138f947c1a2ccb
6
+ metadata.gz: eb4e4d01e11fa1f6dbeaaa1958217cc0049d0a488e5984afe4a1567954b6562b0f4b50eda8a0bd6791ffbac4071519a4152d48c01c960ce841efe39a937f574d
7
+ data.tar.gz: a3ea3e2c9167483a4615d0d4d913d5180ebb4d0a204562e925adf115e83c5d60c55b9233c6c148a1e10b00c7f76cdf45bbb3dd208e107eff070c88bae9de6241
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-bigquery_v2
2
2
 
3
+ ### v0.10.0 (2021-05-07)
4
+
5
+ * Regenerated from discovery document revision 20210430
6
+
3
7
  ### v0.9.0 (2021-04-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20210327
@@ -35,9 +35,6 @@ module Google
35
35
  # Insert data into Google BigQuery
36
36
  AUTH_BIGQUERY_INSERTDATA = 'https://www.googleapis.com/auth/bigquery.insertdata'
37
37
 
38
- # View your data in Google BigQuery
39
- AUTH_BIGQUERY_READONLY = 'https://www.googleapis.com/auth/bigquery.readonly'
40
-
41
38
  # See, edit, configure, and delete your Google Cloud Platform data
42
39
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
43
40
 
@@ -265,6 +265,24 @@ module Google
265
265
  attr_accessor :has_drift
266
266
  alias_method :has_drift?, :has_drift
267
267
 
268
+ # If true, holiday_effect is a part of time series decomposition result.
269
+ # Corresponds to the JSON property `hasHolidayEffect`
270
+ # @return [Boolean]
271
+ attr_accessor :has_holiday_effect
272
+ alias_method :has_holiday_effect?, :has_holiday_effect
273
+
274
+ # If true, spikes_and_dips is a part of time series decomposition result.
275
+ # Corresponds to the JSON property `hasSpikesAndDips`
276
+ # @return [Boolean]
277
+ attr_accessor :has_spikes_and_dips
278
+ alias_method :has_spikes_and_dips?, :has_spikes_and_dips
279
+
280
+ # If true, step_changes is a part of time series decomposition result.
281
+ # Corresponds to the JSON property `hasStepChanges`
282
+ # @return [Boolean]
283
+ attr_accessor :has_step_changes
284
+ alias_method :has_step_changes?, :has_step_changes
285
+
268
286
  # Arima order, can be used for both non-seasonal and seasonal parts.
269
287
  # Corresponds to the JSON property `nonSeasonalOrder`
270
288
  # @return [Google::Apis::BigqueryV2::ArimaOrder]
@@ -283,6 +301,15 @@ module Google
283
301
  # @return [String]
284
302
  attr_accessor :time_series_id
285
303
 
304
+ # The tuple of time_series_ids identifying this time series. It will be one of
305
+ # the unique tuples of values present in the time_series_id_columns specified
306
+ # during ARIMA model training. Only present when time_series_id_columns training
307
+ # option was used and the order of values here are same as the order of
308
+ # time_series_id_columns.
309
+ # Corresponds to the JSON property `timeSeriesIds`
310
+ # @return [Array<String>]
311
+ attr_accessor :time_series_ids
312
+
286
313
  def initialize(**args)
287
314
  update!(**args)
288
315
  end
@@ -292,9 +319,13 @@ module Google
292
319
  @arima_coefficients = args[:arima_coefficients] if args.key?(:arima_coefficients)
293
320
  @arima_fitting_metrics = args[:arima_fitting_metrics] if args.key?(:arima_fitting_metrics)
294
321
  @has_drift = args[:has_drift] if args.key?(:has_drift)
322
+ @has_holiday_effect = args[:has_holiday_effect] if args.key?(:has_holiday_effect)
323
+ @has_spikes_and_dips = args[:has_spikes_and_dips] if args.key?(:has_spikes_and_dips)
324
+ @has_step_changes = args[:has_step_changes] if args.key?(:has_step_changes)
295
325
  @non_seasonal_order = args[:non_seasonal_order] if args.key?(:non_seasonal_order)
296
326
  @seasonal_periods = args[:seasonal_periods] if args.key?(:seasonal_periods)
297
327
  @time_series_id = args[:time_series_id] if args.key?(:time_series_id)
328
+ @time_series_ids = args[:time_series_ids] if args.key?(:time_series_ids)
298
329
  end
299
330
  end
300
331
 
@@ -372,6 +403,24 @@ module Google
372
403
  attr_accessor :has_drift
373
404
  alias_method :has_drift?, :has_drift
374
405
 
406
+ # If true, holiday_effect is a part of time series decomposition result.
407
+ # Corresponds to the JSON property `hasHolidayEffect`
408
+ # @return [Boolean]
409
+ attr_accessor :has_holiday_effect
410
+ alias_method :has_holiday_effect?, :has_holiday_effect
411
+
412
+ # If true, spikes_and_dips is a part of time series decomposition result.
413
+ # Corresponds to the JSON property `hasSpikesAndDips`
414
+ # @return [Boolean]
415
+ attr_accessor :has_spikes_and_dips
416
+ alias_method :has_spikes_and_dips?, :has_spikes_and_dips
417
+
418
+ # If true, step_changes is a part of time series decomposition result.
419
+ # Corresponds to the JSON property `hasStepChanges`
420
+ # @return [Boolean]
421
+ attr_accessor :has_step_changes
422
+ alias_method :has_step_changes?, :has_step_changes
423
+
375
424
  # Arima order, can be used for both non-seasonal and seasonal parts.
376
425
  # Corresponds to the JSON property `nonSeasonalOrder`
377
426
  # @return [Google::Apis::BigqueryV2::ArimaOrder]
@@ -390,6 +439,15 @@ module Google
390
439
  # @return [String]
391
440
  attr_accessor :time_series_id
392
441
 
442
+ # The tuple of time_series_ids identifying this time series. It will be one of
443
+ # the unique tuples of values present in the time_series_id_columns specified
444
+ # during ARIMA model training. Only present when time_series_id_columns training
445
+ # option was used and the order of values here are same as the order of
446
+ # time_series_id_columns.
447
+ # Corresponds to the JSON property `timeSeriesIds`
448
+ # @return [Array<String>]
449
+ attr_accessor :time_series_ids
450
+
393
451
  def initialize(**args)
394
452
  update!(**args)
395
453
  end
@@ -398,9 +456,13 @@ module Google
398
456
  def update!(**args)
399
457
  @arima_fitting_metrics = args[:arima_fitting_metrics] if args.key?(:arima_fitting_metrics)
400
458
  @has_drift = args[:has_drift] if args.key?(:has_drift)
459
+ @has_holiday_effect = args[:has_holiday_effect] if args.key?(:has_holiday_effect)
460
+ @has_spikes_and_dips = args[:has_spikes_and_dips] if args.key?(:has_spikes_and_dips)
461
+ @has_step_changes = args[:has_step_changes] if args.key?(:has_step_changes)
401
462
  @non_seasonal_order = args[:non_seasonal_order] if args.key?(:non_seasonal_order)
402
463
  @seasonal_periods = args[:seasonal_periods] if args.key?(:seasonal_periods)
403
464
  @time_series_id = args[:time_series_id] if args.key?(:time_series_id)
465
+ @time_series_ids = args[:time_series_ids] if args.key?(:time_series_ids)
404
466
  end
405
467
  end
406
468
 
@@ -1781,25 +1843,6 @@ module Google
1781
1843
  end
1782
1844
  end
1783
1845
 
1784
- # Model evaluation metrics for dimensionality reduction models.
1785
- class DimensionalityReductionMetrics
1786
- include Google::Apis::Core::Hashable
1787
-
1788
- # Total percentage of variance explained by the selected principal components.
1789
- # Corresponds to the JSON property `totalExplainedVarianceRatio`
1790
- # @return [Float]
1791
- attr_accessor :total_explained_variance_ratio
1792
-
1793
- def initialize(**args)
1794
- update!(**args)
1795
- end
1796
-
1797
- # Update properties of this object
1798
- def update!(**args)
1799
- @total_explained_variance_ratio = args[:total_explained_variance_ratio] if args.key?(:total_explained_variance_ratio)
1800
- end
1801
- end
1802
-
1803
1846
  #
1804
1847
  class EncryptionConfiguration
1805
1848
  include Google::Apis::Core::Hashable
@@ -1906,11 +1949,6 @@ module Google
1906
1949
  # @return [Google::Apis::BigqueryV2::ClusteringMetrics]
1907
1950
  attr_accessor :clustering_metrics
1908
1951
 
1909
- # Model evaluation metrics for dimensionality reduction models.
1910
- # Corresponds to the JSON property `dimensionalityReductionMetrics`
1911
- # @return [Google::Apis::BigqueryV2::DimensionalityReductionMetrics]
1912
- attr_accessor :dimensionality_reduction_metrics
1913
-
1914
1952
  # Evaluation metrics for multi-class classification/classifier models.
1915
1953
  # Corresponds to the JSON property `multiClassClassificationMetrics`
1916
1954
  # @return [Google::Apis::BigqueryV2::MultiClassClassificationMetrics]
@@ -1937,7 +1975,6 @@ module Google
1937
1975
  @arima_forecasting_metrics = args[:arima_forecasting_metrics] if args.key?(:arima_forecasting_metrics)
1938
1976
  @binary_classification_metrics = args[:binary_classification_metrics] if args.key?(:binary_classification_metrics)
1939
1977
  @clustering_metrics = args[:clustering_metrics] if args.key?(:clustering_metrics)
1940
- @dimensionality_reduction_metrics = args[:dimensionality_reduction_metrics] if args.key?(:dimensionality_reduction_metrics)
1941
1978
  @multi_class_classification_metrics = args[:multi_class_classification_metrics] if args.key?(:multi_class_classification_metrics)
1942
1979
  @ranking_metrics = args[:ranking_metrics] if args.key?(:ranking_metrics)
1943
1980
  @regression_metrics = args[:regression_metrics] if args.key?(:regression_metrics)
@@ -2715,11 +2752,6 @@ module Google
2715
2752
  # @return [Float]
2716
2753
  attr_accessor :learn_rate
2717
2754
 
2718
- # The information of the principal components.
2719
- # Corresponds to the JSON property `principalComponentInfos`
2720
- # @return [Array<Google::Apis::BigqueryV2::PrincipalComponentInfo>]
2721
- attr_accessor :principal_component_infos
2722
-
2723
2755
  # Loss computed on the training data at the end of iteration.
2724
2756
  # Corresponds to the JSON property `trainingLoss`
2725
2757
  # @return [Float]
@@ -2737,7 +2769,6 @@ module Google
2737
2769
  @eval_loss = args[:eval_loss] if args.key?(:eval_loss)
2738
2770
  @index = args[:index] if args.key?(:index)
2739
2771
  @learn_rate = args[:learn_rate] if args.key?(:learn_rate)
2740
- @principal_component_infos = args[:principal_component_infos] if args.key?(:principal_component_infos)
2741
2772
  @training_loss = args[:training_loss] if args.key?(:training_loss)
2742
2773
  end
2743
2774
  end
@@ -3894,6 +3925,12 @@ module Google
3894
3925
  # @return [Fixnum]
3895
3926
  attr_accessor :ddl_affected_row_access_policy_count
3896
3927
 
3928
+ # [Output-only] The DDL destination table. Present only for ALTER TABLE RENAME
3929
+ # TO queries. Note that ddl_target_table is used just for its type information.
3930
+ # Corresponds to the JSON property `ddlDestinationTable`
3931
+ # @return [Google::Apis::BigqueryV2::TableReference]
3932
+ attr_accessor :ddl_destination_table
3933
+
3897
3934
  # The DDL operation performed, possibly dependent on the pre-existence of the
3898
3935
  # DDL target. Possible values (new values might be added in the future): "CREATE"
3899
3936
  # : The query created the DDL target. "SKIP": No-op. Example cases: the query is
@@ -4053,6 +4090,7 @@ module Google
4053
4090
  @billing_tier = args[:billing_tier] if args.key?(:billing_tier)
4054
4091
  @cache_hit = args[:cache_hit] if args.key?(:cache_hit)
4055
4092
  @ddl_affected_row_access_policy_count = args[:ddl_affected_row_access_policy_count] if args.key?(:ddl_affected_row_access_policy_count)
4093
+ @ddl_destination_table = args[:ddl_destination_table] if args.key?(:ddl_destination_table)
4056
4094
  @ddl_operation_performed = args[:ddl_operation_performed] if args.key?(:ddl_operation_performed)
4057
4095
  @ddl_target_dataset = args[:ddl_target_dataset] if args.key?(:ddl_target_dataset)
4058
4096
  @ddl_target_routine = args[:ddl_target_routine] if args.key?(:ddl_target_routine)
@@ -4717,45 +4755,6 @@ module Google
4717
4755
  end
4718
4756
  end
4719
4757
 
4720
- # Principal component infos, used only for eigen decomposition based models, e.g.
4721
- # , PCA. Ordered by explained_variance in the descending order.
4722
- class PrincipalComponentInfo
4723
- include Google::Apis::Core::Hashable
4724
-
4725
- # The explained_variance is pre-ordered in the descending order to compute the
4726
- # cumulative explained variance ratio.
4727
- # Corresponds to the JSON property `cumulativeExplainedVarianceRatio`
4728
- # @return [Float]
4729
- attr_accessor :cumulative_explained_variance_ratio
4730
-
4731
- # Explained variance by this principal component, which is simply the eigenvalue.
4732
- # Corresponds to the JSON property `explainedVariance`
4733
- # @return [Float]
4734
- attr_accessor :explained_variance
4735
-
4736
- # Explained_variance over the total explained variance.
4737
- # Corresponds to the JSON property `explainedVarianceRatio`
4738
- # @return [Float]
4739
- attr_accessor :explained_variance_ratio
4740
-
4741
- # Id of the principal component.
4742
- # Corresponds to the JSON property `principalComponentId`
4743
- # @return [Fixnum]
4744
- attr_accessor :principal_component_id
4745
-
4746
- def initialize(**args)
4747
- update!(**args)
4748
- end
4749
-
4750
- # Update properties of this object
4751
- def update!(**args)
4752
- @cumulative_explained_variance_ratio = args[:cumulative_explained_variance_ratio] if args.key?(:cumulative_explained_variance_ratio)
4753
- @explained_variance = args[:explained_variance] if args.key?(:explained_variance)
4754
- @explained_variance_ratio = args[:explained_variance_ratio] if args.key?(:explained_variance_ratio)
4755
- @principal_component_id = args[:principal_component_id] if args.key?(:principal_component_id)
4756
- end
4757
- end
4758
-
4759
4758
  #
4760
4759
  class ProjectList
4761
4760
  include Google::Apis::Core::Hashable
@@ -6489,7 +6488,7 @@ module Google
6489
6488
 
6490
6489
  # [Required] The field name. The name must contain only letters (a-z, A-Z),
6491
6490
  # numbers (0-9), or underscores (_), and must start with a letter or underscore.
6492
- # The maximum length is 128 characters.
6491
+ # The maximum length is 300 characters.
6493
6492
  # Corresponds to the JSON property `name`
6494
6493
  # @return [String]
6495
6494
  attr_accessor :name
@@ -6904,6 +6903,12 @@ module Google
6904
6903
  class TrainingOptions
6905
6904
  include Google::Apis::Core::Hashable
6906
6905
 
6906
+ # If true, detect step changes and make data adjustment in the input time series.
6907
+ # Corresponds to the JSON property `adjustStepChanges`
6908
+ # @return [Boolean]
6909
+ attr_accessor :adjust_step_changes
6910
+ alias_method :adjust_step_changes?, :adjust_step_changes
6911
+
6907
6912
  # Whether to enable auto ARIMA or not.
6908
6913
  # Corresponds to the JSON property `autoArima`
6909
6914
  # @return [Boolean]
@@ -6920,6 +6925,12 @@ module Google
6920
6925
  # @return [Fixnum]
6921
6926
  attr_accessor :batch_size
6922
6927
 
6928
+ # If true, clean spikes and dips in the input time series.
6929
+ # Corresponds to the JSON property `cleanSpikesAndDips`
6930
+ # @return [Boolean]
6931
+ attr_accessor :clean_spikes_and_dips
6932
+ alias_method :clean_spikes_and_dips?, :clean_spikes_and_dips
6933
+
6923
6934
  # The data frequency of a time series.
6924
6935
  # Corresponds to the JSON property `dataFrequency`
6925
6936
  # @return [String]
@@ -6949,6 +6960,12 @@ module Google
6949
6960
  # @return [String]
6950
6961
  attr_accessor :data_split_method
6951
6962
 
6963
+ # If true, perform decompose time series and save the results.
6964
+ # Corresponds to the JSON property `decomposeTimeSeries`
6965
+ # @return [Boolean]
6966
+ attr_accessor :decompose_time_series
6967
+ alias_method :decompose_time_series?, :decompose_time_series
6968
+
6952
6969
  # Distance type for clustering models.
6953
6970
  # Corresponds to the JSON property `distanceType`
6954
6971
  # @return [String]
@@ -7124,6 +7141,11 @@ module Google
7124
7141
  # @return [String]
7125
7142
  attr_accessor :time_series_id_column
7126
7143
 
7144
+ # The time series id columns that were used during ARIMA model training.
7145
+ # Corresponds to the JSON property `timeSeriesIdColumns`
7146
+ # @return [Array<String>]
7147
+ attr_accessor :time_series_id_columns
7148
+
7127
7149
  # Column to be designated as time series timestamp for ARIMA model.
7128
7150
  # Corresponds to the JSON property `timeSeriesTimestampColumn`
7129
7151
  # @return [String]
@@ -7151,13 +7173,16 @@ module Google
7151
7173
 
7152
7174
  # Update properties of this object
7153
7175
  def update!(**args)
7176
+ @adjust_step_changes = args[:adjust_step_changes] if args.key?(:adjust_step_changes)
7154
7177
  @auto_arima = args[:auto_arima] if args.key?(:auto_arima)
7155
7178
  @auto_arima_max_order = args[:auto_arima_max_order] if args.key?(:auto_arima_max_order)
7156
7179
  @batch_size = args[:batch_size] if args.key?(:batch_size)
7180
+ @clean_spikes_and_dips = args[:clean_spikes_and_dips] if args.key?(:clean_spikes_and_dips)
7157
7181
  @data_frequency = args[:data_frequency] if args.key?(:data_frequency)
7158
7182
  @data_split_column = args[:data_split_column] if args.key?(:data_split_column)
7159
7183
  @data_split_eval_fraction = args[:data_split_eval_fraction] if args.key?(:data_split_eval_fraction)
7160
7184
  @data_split_method = args[:data_split_method] if args.key?(:data_split_method)
7185
+ @decompose_time_series = args[:decompose_time_series] if args.key?(:decompose_time_series)
7161
7186
  @distance_type = args[:distance_type] if args.key?(:distance_type)
7162
7187
  @dropout = args[:dropout] if args.key?(:dropout)
7163
7188
  @early_stop = args[:early_stop] if args.key?(:early_stop)
@@ -7190,6 +7215,7 @@ module Google
7190
7215
  @subsample = args[:subsample] if args.key?(:subsample)
7191
7216
  @time_series_data_column = args[:time_series_data_column] if args.key?(:time_series_data_column)
7192
7217
  @time_series_id_column = args[:time_series_id_column] if args.key?(:time_series_id_column)
7218
+ @time_series_id_columns = args[:time_series_id_columns] if args.key?(:time_series_id_columns)
7193
7219
  @time_series_timestamp_column = args[:time_series_timestamp_column] if args.key?(:time_series_timestamp_column)
7194
7220
  @user_column = args[:user_column] if args.key?(:user_column)
7195
7221
  @wals_alpha = args[:wals_alpha] if args.key?(:wals_alpha)
@@ -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.9.0"
19
+ GEM_VERSION = "0.10.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 = "20210327"
25
+ REVISION = "20210430"
26
26
  end
27
27
  end
28
28
  end
@@ -256,12 +256,6 @@ module Google
256
256
  include Google::Apis::Core::JsonObjectSupport
257
257
  end
258
258
 
259
- class DimensionalityReductionMetrics
260
- class Representation < Google::Apis::Core::JsonRepresentation; end
261
-
262
- include Google::Apis::Core::JsonObjectSupport
263
- end
264
-
265
259
  class EncryptionConfiguration
266
260
  class Representation < Google::Apis::Core::JsonRepresentation; end
267
261
 
@@ -544,12 +538,6 @@ module Google
544
538
  include Google::Apis::Core::JsonObjectSupport
545
539
  end
546
540
 
547
- class PrincipalComponentInfo
548
- class Representation < Google::Apis::Core::JsonRepresentation; end
549
-
550
- include Google::Apis::Core::JsonObjectSupport
551
- end
552
-
553
541
  class ProjectList
554
542
  class Representation < Google::Apis::Core::JsonRepresentation; end
555
543
 
@@ -939,10 +927,14 @@ module Google
939
927
  property :arima_fitting_metrics, as: 'arimaFittingMetrics', class: Google::Apis::BigqueryV2::ArimaFittingMetrics, decorator: Google::Apis::BigqueryV2::ArimaFittingMetrics::Representation
940
928
 
941
929
  property :has_drift, as: 'hasDrift'
930
+ property :has_holiday_effect, as: 'hasHolidayEffect'
931
+ property :has_spikes_and_dips, as: 'hasSpikesAndDips'
932
+ property :has_step_changes, as: 'hasStepChanges'
942
933
  property :non_seasonal_order, as: 'nonSeasonalOrder', class: Google::Apis::BigqueryV2::ArimaOrder, decorator: Google::Apis::BigqueryV2::ArimaOrder::Representation
943
934
 
944
935
  collection :seasonal_periods, as: 'seasonalPeriods'
945
936
  property :time_series_id, as: 'timeSeriesId'
937
+ collection :time_series_ids, as: 'timeSeriesIds'
946
938
  end
947
939
  end
948
940
 
@@ -970,10 +962,14 @@ module Google
970
962
  property :arima_fitting_metrics, as: 'arimaFittingMetrics', class: Google::Apis::BigqueryV2::ArimaFittingMetrics, decorator: Google::Apis::BigqueryV2::ArimaFittingMetrics::Representation
971
963
 
972
964
  property :has_drift, as: 'hasDrift'
965
+ property :has_holiday_effect, as: 'hasHolidayEffect'
966
+ property :has_spikes_and_dips, as: 'hasSpikesAndDips'
967
+ property :has_step_changes, as: 'hasStepChanges'
973
968
  property :non_seasonal_order, as: 'nonSeasonalOrder', class: Google::Apis::BigqueryV2::ArimaOrder, decorator: Google::Apis::BigqueryV2::ArimaOrder::Representation
974
969
 
975
970
  collection :seasonal_periods, as: 'seasonalPeriods'
976
971
  property :time_series_id, as: 'timeSeriesId'
972
+ collection :time_series_ids, as: 'timeSeriesIds'
977
973
  end
978
974
  end
979
975
 
@@ -1304,13 +1300,6 @@ module Google
1304
1300
  end
1305
1301
  end
1306
1302
 
1307
- class DimensionalityReductionMetrics
1308
- # @private
1309
- class Representation < Google::Apis::Core::JsonRepresentation
1310
- property :total_explained_variance_ratio, as: 'totalExplainedVarianceRatio'
1311
- end
1312
- end
1313
-
1314
1303
  class EncryptionConfiguration
1315
1304
  # @private
1316
1305
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1345,8 +1334,6 @@ module Google
1345
1334
 
1346
1335
  property :clustering_metrics, as: 'clusteringMetrics', class: Google::Apis::BigqueryV2::ClusteringMetrics, decorator: Google::Apis::BigqueryV2::ClusteringMetrics::Representation
1347
1336
 
1348
- property :dimensionality_reduction_metrics, as: 'dimensionalityReductionMetrics', class: Google::Apis::BigqueryV2::DimensionalityReductionMetrics, decorator: Google::Apis::BigqueryV2::DimensionalityReductionMetrics::Representation
1349
-
1350
1337
  property :multi_class_classification_metrics, as: 'multiClassClassificationMetrics', class: Google::Apis::BigqueryV2::MultiClassClassificationMetrics, decorator: Google::Apis::BigqueryV2::MultiClassClassificationMetrics::Representation
1351
1338
 
1352
1339
  property :ranking_metrics, as: 'rankingMetrics', class: Google::Apis::BigqueryV2::RankingMetrics, decorator: Google::Apis::BigqueryV2::RankingMetrics::Representation
@@ -1536,8 +1523,6 @@ module Google
1536
1523
  property :eval_loss, as: 'evalLoss'
1537
1524
  property :index, as: 'index'
1538
1525
  property :learn_rate, as: 'learnRate'
1539
- collection :principal_component_infos, as: 'principalComponentInfos', class: Google::Apis::BigqueryV2::PrincipalComponentInfo, decorator: Google::Apis::BigqueryV2::PrincipalComponentInfo::Representation
1540
-
1541
1526
  property :training_loss, as: 'trainingLoss'
1542
1527
  end
1543
1528
  end
@@ -1794,6 +1779,8 @@ module Google
1794
1779
  property :billing_tier, as: 'billingTier'
1795
1780
  property :cache_hit, as: 'cacheHit'
1796
1781
  property :ddl_affected_row_access_policy_count, :numeric_string => true, as: 'ddlAffectedRowAccessPolicyCount'
1782
+ property :ddl_destination_table, as: 'ddlDestinationTable', class: Google::Apis::BigqueryV2::TableReference, decorator: Google::Apis::BigqueryV2::TableReference::Representation
1783
+
1797
1784
  property :ddl_operation_performed, as: 'ddlOperationPerformed'
1798
1785
  property :ddl_target_dataset, as: 'ddlTargetDataset', class: Google::Apis::BigqueryV2::DatasetReference, decorator: Google::Apis::BigqueryV2::DatasetReference::Representation
1799
1786
 
@@ -1998,16 +1985,6 @@ module Google
1998
1985
  end
1999
1986
  end
2000
1987
 
2001
- class PrincipalComponentInfo
2002
- # @private
2003
- class Representation < Google::Apis::Core::JsonRepresentation
2004
- property :cumulative_explained_variance_ratio, as: 'cumulativeExplainedVarianceRatio'
2005
- property :explained_variance, as: 'explainedVariance'
2006
- property :explained_variance_ratio, as: 'explainedVarianceRatio'
2007
- property :principal_component_id, :numeric_string => true, as: 'principalComponentId'
2008
- end
2009
- end
2010
-
2011
1988
  class ProjectList
2012
1989
  # @private
2013
1990
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2574,13 +2551,16 @@ module Google
2574
2551
  class TrainingOptions
2575
2552
  # @private
2576
2553
  class Representation < Google::Apis::Core::JsonRepresentation
2554
+ property :adjust_step_changes, as: 'adjustStepChanges'
2577
2555
  property :auto_arima, as: 'autoArima'
2578
2556
  property :auto_arima_max_order, :numeric_string => true, as: 'autoArimaMaxOrder'
2579
2557
  property :batch_size, :numeric_string => true, as: 'batchSize'
2558
+ property :clean_spikes_and_dips, as: 'cleanSpikesAndDips'
2580
2559
  property :data_frequency, as: 'dataFrequency'
2581
2560
  property :data_split_column, as: 'dataSplitColumn'
2582
2561
  property :data_split_eval_fraction, as: 'dataSplitEvalFraction'
2583
2562
  property :data_split_method, as: 'dataSplitMethod'
2563
+ property :decompose_time_series, as: 'decomposeTimeSeries'
2584
2564
  property :distance_type, as: 'distanceType'
2585
2565
  property :dropout, as: 'dropout'
2586
2566
  property :early_stop, as: 'earlyStop'
@@ -2614,6 +2594,7 @@ module Google
2614
2594
  property :subsample, as: 'subsample'
2615
2595
  property :time_series_data_column, as: 'timeSeriesDataColumn'
2616
2596
  property :time_series_id_column, as: 'timeSeriesIdColumn'
2597
+ collection :time_series_id_columns, as: 'timeSeriesIdColumns'
2617
2598
  property :time_series_timestamp_column, as: 'timeSeriesTimestampColumn'
2618
2599
  property :user_column, as: 'userColumn'
2619
2600
  property :wals_alpha, as: 'walsAlpha'
@@ -701,6 +701,8 @@ module Google
701
701
  end
702
702
 
703
703
  # Lists all models in the specified dataset. Requires the READER dataset role.
704
+ # After retrieving the list of models, you can get information about a
705
+ # particular model by calling the models.get method.
704
706
  # @param [String] project_id
705
707
  # Required. Project ID of the models to list.
706
708
  # @param [String] dataset_id
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.9.0
4
+ version: 0.10.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-04-05 00:00:00.000000000 Z
11
+ date: 2021-05-18 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.9.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.10.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: []
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.13
72
+ rubygems_version: 3.2.17
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for BigQuery API V2