google-apis-bigquery_v2 0.34.0 → 0.35.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: de535e40c0a238213412a4b2d71153532c42c35f4ca37ad798904ffe393229a4
4
- data.tar.gz: 6e34878a46e99f39808e914782365c88c4d3d51cad338d2cdeba48c81ee24698
3
+ metadata.gz: a8bb1599d306b03b0fa6a30c804fa859c91b6c1c0e8e99f73ed713502ae24362
4
+ data.tar.gz: 5da5c85e5a3b5d7a58a78873fa2fb0d4d83178bcdc2eb19b77f0b6f93e3547a3
5
5
  SHA512:
6
- metadata.gz: 0bc9e4f4cd91299485de574b3790f6614a2ac866795dfdbbdd5ce9487ba22dca27f063c6004ef04260a0b978e29dcda4cee2f5ffea375a2a2c6afcb883609f30
7
- data.tar.gz: 7974c52a47328cff9c7df19955b7e245e6718f9d997010faefd349a0fab69e6089da367f07b098e5bf75a8b39073f1afe537c854dcde79fc56600218359aa9a8
6
+ metadata.gz: 0c4a1f8991e91fda2d768879eccdf588a614d2647eeb45cc6300679bed90972e567b4ae532c4dff40659a21a4945d23efc9590350e07f203bced8ad5bc77724e
7
+ data.tar.gz: 91ed0df17a987c2d16bbc4dd6e1a88a7273b89b52fd307874d4a553860825701d9d2dc4866dad361961aeea0dc3e06c9385f917713720c12e28aa7a3181da8e6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-bigquery_v2
2
2
 
3
+ ### v0.35.0 (2022-06-23)
4
+
5
+ * Regenerated from discovery document revision 20220611
6
+ * Regenerated using generator version 0.7.0
7
+
3
8
  ### v0.34.0 (2022-06-07)
4
9
 
5
10
  * Regenerated from discovery document revision 20220528
@@ -6129,6 +6129,13 @@ module Google
6129
6129
  # @return [Fixnum]
6130
6130
  attr_accessor :elapsed_ms
6131
6131
 
6132
+ # Units of work that can be scheduled immediately. Providing additional slots
6133
+ # for these units of work will speed up the query, provided no other query in
6134
+ # the reservation needs additional slots.
6135
+ # Corresponds to the JSON property `estimatedRunnableUnits`
6136
+ # @return [Fixnum]
6137
+ attr_accessor :estimated_runnable_units
6138
+
6132
6139
  # Total parallel units of work remaining for the active stages.
6133
6140
  # Corresponds to the JSON property `pendingUnits`
6134
6141
  # @return [Fixnum]
@@ -6148,6 +6155,7 @@ module Google
6148
6155
  @active_units = args[:active_units] if args.key?(:active_units)
6149
6156
  @completed_units = args[:completed_units] if args.key?(:completed_units)
6150
6157
  @elapsed_ms = args[:elapsed_ms] if args.key?(:elapsed_ms)
6158
+ @estimated_runnable_units = args[:estimated_runnable_units] if args.key?(:estimated_runnable_units)
6151
6159
  @pending_units = args[:pending_units] if args.key?(:pending_units)
6152
6160
  @total_slot_ms = args[:total_slot_ms] if args.key?(:total_slot_ms)
6153
6161
  end
@@ -7101,6 +7109,13 @@ module Google
7101
7109
  # @return [Google::Apis::BigqueryV2::MaterializedViewDefinition]
7102
7110
  attr_accessor :materialized_view
7103
7111
 
7112
+ # [Optional] Max staleness of data that could be returned when table or
7113
+ # materialized view is queried (formatted as Google SQL Interval type).
7114
+ # Corresponds to the JSON property `maxStaleness`
7115
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
7116
+ # @return [String]
7117
+ attr_accessor :max_staleness
7118
+
7104
7119
  # [Output-only, Beta] Present iff this table represents a ML model. Describes
7105
7120
  # the training information for the model, and it is required to run 'PREDICT'
7106
7121
  # queries.
@@ -7264,6 +7279,7 @@ module Google
7264
7279
  @last_modified_time = args[:last_modified_time] if args.key?(:last_modified_time)
7265
7280
  @location = args[:location] if args.key?(:location)
7266
7281
  @materialized_view = args[:materialized_view] if args.key?(:materialized_view)
7282
+ @max_staleness = args[:max_staleness] if args.key?(:max_staleness)
7267
7283
  @model = args[:model] if args.key?(:model)
7268
7284
  @num_bytes = args[:num_bytes] if args.key?(:num_bytes)
7269
7285
  @num_long_term_bytes = args[:num_long_term_bytes] if args.key?(:num_long_term_bytes)
@@ -8182,6 +8198,12 @@ module Google
8182
8198
  # @return [Fixnum]
8183
8199
  attr_accessor :max_parallel_trials
8184
8200
 
8201
+ # Get truncated length by last n points in time series. Use separately from
8202
+ # time_series_length_fraction and min_time_series_length.
8203
+ # Corresponds to the JSON property `maxTimeSeriesLength`
8204
+ # @return [Fixnum]
8205
+ attr_accessor :max_time_series_length
8206
+
8185
8207
  # Maximum depth of a tree for boosted tree models.
8186
8208
  # Corresponds to the JSON property `maxTreeDepth`
8187
8209
  # @return [Fixnum]
@@ -8198,6 +8220,12 @@ module Google
8198
8220
  # @return [Float]
8199
8221
  attr_accessor :min_split_loss
8200
8222
 
8223
+ # Set fast trend ARIMA_PLUS model minimum training length. Use in pair with
8224
+ # time_series_length_fraction.
8225
+ # Corresponds to the JSON property `minTimeSeriesLength`
8226
+ # @return [Fixnum]
8227
+ attr_accessor :min_time_series_length
8228
+
8201
8229
  # Minimum sum of instance weight needed in a child for boosted tree models.
8202
8230
  # Corresponds to the JSON property `minTreeChildWeight`
8203
8231
  # @return [Fixnum]
@@ -8274,6 +8302,11 @@ module Google
8274
8302
  # @return [Array<String>]
8275
8303
  attr_accessor :time_series_id_columns
8276
8304
 
8305
+ # Get truncated length by fraction in time series.
8306
+ # Corresponds to the JSON property `timeSeriesLengthFraction`
8307
+ # @return [Float]
8308
+ attr_accessor :time_series_length_fraction
8309
+
8277
8310
  # Column to be designated as time series timestamp for ARIMA model.
8278
8311
  # Corresponds to the JSON property `timeSeriesTimestampColumn`
8279
8312
  # @return [String]
@@ -8284,6 +8317,11 @@ module Google
8284
8317
  # @return [String]
8285
8318
  attr_accessor :tree_method
8286
8319
 
8320
+ # The smoothing window size for the trend component of the time series.
8321
+ # Corresponds to the JSON property `trendSmoothingWindowSize`
8322
+ # @return [Fixnum]
8323
+ attr_accessor :trend_smoothing_window_size
8324
+
8287
8325
  # User column specified for matrix factorization models.
8288
8326
  # Corresponds to the JSON property `userColumn`
8289
8327
  # @return [String]
@@ -8346,9 +8384,11 @@ module Google
8346
8384
  @loss_type = args[:loss_type] if args.key?(:loss_type)
8347
8385
  @max_iterations = args[:max_iterations] if args.key?(:max_iterations)
8348
8386
  @max_parallel_trials = args[:max_parallel_trials] if args.key?(:max_parallel_trials)
8387
+ @max_time_series_length = args[:max_time_series_length] if args.key?(:max_time_series_length)
8349
8388
  @max_tree_depth = args[:max_tree_depth] if args.key?(:max_tree_depth)
8350
8389
  @min_relative_progress = args[:min_relative_progress] if args.key?(:min_relative_progress)
8351
8390
  @min_split_loss = args[:min_split_loss] if args.key?(:min_split_loss)
8391
+ @min_time_series_length = args[:min_time_series_length] if args.key?(:min_time_series_length)
8352
8392
  @min_tree_child_weight = args[:min_tree_child_weight] if args.key?(:min_tree_child_weight)
8353
8393
  @model_uri = args[:model_uri] if args.key?(:model_uri)
8354
8394
  @non_seasonal_order = args[:non_seasonal_order] if args.key?(:non_seasonal_order)
@@ -8363,8 +8403,10 @@ module Google
8363
8403
  @time_series_data_column = args[:time_series_data_column] if args.key?(:time_series_data_column)
8364
8404
  @time_series_id_column = args[:time_series_id_column] if args.key?(:time_series_id_column)
8365
8405
  @time_series_id_columns = args[:time_series_id_columns] if args.key?(:time_series_id_columns)
8406
+ @time_series_length_fraction = args[:time_series_length_fraction] if args.key?(:time_series_length_fraction)
8366
8407
  @time_series_timestamp_column = args[:time_series_timestamp_column] if args.key?(:time_series_timestamp_column)
8367
8408
  @tree_method = args[:tree_method] if args.key?(:tree_method)
8409
+ @trend_smoothing_window_size = args[:trend_smoothing_window_size] if args.key?(:trend_smoothing_window_size)
8368
8410
  @user_column = args[:user_column] if args.key?(:user_column)
8369
8411
  @wals_alpha = args[:wals_alpha] if args.key?(:wals_alpha)
8370
8412
  @warm_start = args[:warm_start] if args.key?(:warm_start)
@@ -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.34.0"
19
+ GEM_VERSION = "0.35.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.5.0"
22
+ GENERATOR_VERSION = "0.7.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220528"
25
+ REVISION = "20220611"
26
26
  end
27
27
  end
28
28
  end
@@ -2505,6 +2505,7 @@ module Google
2505
2505
  property :active_units, :numeric_string => true, as: 'activeUnits'
2506
2506
  property :completed_units, :numeric_string => true, as: 'completedUnits'
2507
2507
  property :elapsed_ms, :numeric_string => true, as: 'elapsedMs'
2508
+ property :estimated_runnable_units, :numeric_string => true, as: 'estimatedRunnableUnits'
2508
2509
  property :pending_units, :numeric_string => true, as: 'pendingUnits'
2509
2510
  property :total_slot_ms, :numeric_string => true, as: 'totalSlotMs'
2510
2511
  end
@@ -2764,6 +2765,7 @@ module Google
2764
2765
  property :location, as: 'location'
2765
2766
  property :materialized_view, as: 'materializedView', class: Google::Apis::BigqueryV2::MaterializedViewDefinition, decorator: Google::Apis::BigqueryV2::MaterializedViewDefinition::Representation
2766
2767
 
2768
+ property :max_staleness, :base64 => true, as: 'maxStaleness'
2767
2769
  property :model, as: 'model', class: Google::Apis::BigqueryV2::ModelDefinition, decorator: Google::Apis::BigqueryV2::ModelDefinition::Representation
2768
2770
 
2769
2771
  property :num_bytes, :numeric_string => true, as: 'numBytes'
@@ -3024,9 +3026,11 @@ module Google
3024
3026
  property :loss_type, as: 'lossType'
3025
3027
  property :max_iterations, :numeric_string => true, as: 'maxIterations'
3026
3028
  property :max_parallel_trials, :numeric_string => true, as: 'maxParallelTrials'
3029
+ property :max_time_series_length, :numeric_string => true, as: 'maxTimeSeriesLength'
3027
3030
  property :max_tree_depth, :numeric_string => true, as: 'maxTreeDepth'
3028
3031
  property :min_relative_progress, as: 'minRelativeProgress'
3029
3032
  property :min_split_loss, as: 'minSplitLoss'
3033
+ property :min_time_series_length, :numeric_string => true, as: 'minTimeSeriesLength'
3030
3034
  property :min_tree_child_weight, :numeric_string => true, as: 'minTreeChildWeight'
3031
3035
  property :model_uri, as: 'modelUri'
3032
3036
  property :non_seasonal_order, as: 'nonSeasonalOrder', class: Google::Apis::BigqueryV2::ArimaOrder, decorator: Google::Apis::BigqueryV2::ArimaOrder::Representation
@@ -3042,8 +3046,10 @@ module Google
3042
3046
  property :time_series_data_column, as: 'timeSeriesDataColumn'
3043
3047
  property :time_series_id_column, as: 'timeSeriesIdColumn'
3044
3048
  collection :time_series_id_columns, as: 'timeSeriesIdColumns'
3049
+ property :time_series_length_fraction, as: 'timeSeriesLengthFraction'
3045
3050
  property :time_series_timestamp_column, as: 'timeSeriesTimestampColumn'
3046
3051
  property :tree_method, as: 'treeMethod'
3052
+ property :trend_smoothing_window_size, :numeric_string => true, as: 'trendSmoothingWindowSize'
3047
3053
  property :user_column, as: 'userColumn'
3048
3054
  property :wals_alpha, as: 'walsAlpha'
3049
3055
  property :warm_start, as: 'warmStart'
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.34.0
4
+ version: 0.35.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: 2022-06-13 00:00:00.000000000 Z
11
+ date: 2022-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.5'
19
+ version: '0.6'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.5'
29
+ version: '0.6'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.34.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.35.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: []