google-apis-bigquery_v2 0.101.0 → 0.102.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f0efe7da22f3b1c900d921c582bae3eed5affe8a01d068fa80c3c37a3946ca6d
|
|
4
|
+
data.tar.gz: 2cfcd88e4b0efb2e1173ad5a7db703ff9952f096979acae80fa58139c825abfa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: da46b96058b36625b0e7687fa9a79310852e08a09075eb24c55cb911c72c1e3931d832d1109c2cd3d978d084a1f929e5288fdddb6d47729480e73b0bd0aae180
|
|
7
|
+
data.tar.gz: c3003f6585e0dc38fcf3ec0c2d7490beea459268e626e72b0f4dcc296c23dfc79b0db9a598b779dee688e00436a337b284e472a68ed97d9f76cbf6ce26eb33bd
|
data/CHANGELOG.md
CHANGED
|
@@ -1778,6 +1778,28 @@ module Google
|
|
|
1778
1778
|
end
|
|
1779
1779
|
end
|
|
1780
1780
|
|
|
1781
|
+
# A list of data policy options. For more information, see [Mask data by
|
|
1782
|
+
# applying data policies to a column](https://docs.cloud.google.com/bigquery/
|
|
1783
|
+
# docs/column-data-masking#data-policies-on-column).
|
|
1784
|
+
class DataPolicyList
|
|
1785
|
+
include Google::Apis::Core::Hashable
|
|
1786
|
+
|
|
1787
|
+
# Contains a list of data policy options. At most 9 data policies are allowed
|
|
1788
|
+
# per field.
|
|
1789
|
+
# Corresponds to the JSON property `dataPolicies`
|
|
1790
|
+
# @return [Array<Google::Apis::BigqueryV2::DataPolicyOption>]
|
|
1791
|
+
attr_accessor :data_policies
|
|
1792
|
+
|
|
1793
|
+
def initialize(**args)
|
|
1794
|
+
update!(**args)
|
|
1795
|
+
end
|
|
1796
|
+
|
|
1797
|
+
# Update properties of this object
|
|
1798
|
+
def update!(**args)
|
|
1799
|
+
@data_policies = args[:data_policies] if args.key?(:data_policies)
|
|
1800
|
+
end
|
|
1801
|
+
end
|
|
1802
|
+
|
|
1781
1803
|
# Data policy option. For more information, see [Mask data by applying data
|
|
1782
1804
|
# policies to a column](https://docs.cloud.google.com/bigquery/docs/column-data-
|
|
1783
1805
|
# masking#data-policies-on-column).
|
|
@@ -3546,6 +3568,12 @@ module Google
|
|
|
3546
3568
|
# @return [String]
|
|
3547
3569
|
attr_accessor :container_memory
|
|
3548
3570
|
|
|
3571
|
+
# Optional. Maximum number of requests that a Cloud Run instance can handle
|
|
3572
|
+
# concurrently. If absent or if `0`, a default concurrency is used.
|
|
3573
|
+
# Corresponds to the JSON property `containerRequestConcurrency`
|
|
3574
|
+
# @return [Fixnum]
|
|
3575
|
+
attr_accessor :container_request_concurrency
|
|
3576
|
+
|
|
3549
3577
|
# Optional. Maximum number of rows in each batch sent to the external runtime.
|
|
3550
3578
|
# If absent or if 0, BigQuery dynamically decides the number of rows in a batch.
|
|
3551
3579
|
# Corresponds to the JSON property `maxBatchingRows`
|
|
@@ -3572,6 +3600,7 @@ module Google
|
|
|
3572
3600
|
def update!(**args)
|
|
3573
3601
|
@container_cpu = args[:container_cpu] if args.key?(:container_cpu)
|
|
3574
3602
|
@container_memory = args[:container_memory] if args.key?(:container_memory)
|
|
3603
|
+
@container_request_concurrency = args[:container_request_concurrency] if args.key?(:container_request_concurrency)
|
|
3575
3604
|
@max_batching_rows = args[:max_batching_rows] if args.key?(:max_batching_rows)
|
|
3576
3605
|
@runtime_connection = args[:runtime_connection] if args.key?(:runtime_connection)
|
|
3577
3606
|
@runtime_version = args[:runtime_version] if args.key?(:runtime_version)
|
|
@@ -3736,6 +3765,25 @@ module Google
|
|
|
3736
3765
|
end
|
|
3737
3766
|
end
|
|
3738
3767
|
|
|
3768
|
+
# Provides cache statistics for a GenAi function call.
|
|
3769
|
+
class GenAiFunctionCacheStats
|
|
3770
|
+
include Google::Apis::Core::Hashable
|
|
3771
|
+
|
|
3772
|
+
# Number of rows served from cache.
|
|
3773
|
+
# Corresponds to the JSON property `numCacheHitRows`
|
|
3774
|
+
# @return [Fixnum]
|
|
3775
|
+
attr_accessor :num_cache_hit_rows
|
|
3776
|
+
|
|
3777
|
+
def initialize(**args)
|
|
3778
|
+
update!(**args)
|
|
3779
|
+
end
|
|
3780
|
+
|
|
3781
|
+
# Update properties of this object
|
|
3782
|
+
def update!(**args)
|
|
3783
|
+
@num_cache_hit_rows = args[:num_cache_hit_rows] if args.key?(:num_cache_hit_rows)
|
|
3784
|
+
end
|
|
3785
|
+
end
|
|
3786
|
+
|
|
3739
3787
|
# Provides cost optimization statistics for a GenAi function call.
|
|
3740
3788
|
class GenAiFunctionCostOptimizationStats
|
|
3741
3789
|
include Google::Apis::Core::Hashable
|
|
@@ -3790,6 +3838,11 @@ module Google
|
|
|
3790
3838
|
class GenAiFunctionStats
|
|
3791
3839
|
include Google::Apis::Core::Hashable
|
|
3792
3840
|
|
|
3841
|
+
# Provides cache statistics for a GenAi function call.
|
|
3842
|
+
# Corresponds to the JSON property `cacheStats`
|
|
3843
|
+
# @return [Google::Apis::BigqueryV2::GenAiFunctionCacheStats]
|
|
3844
|
+
attr_accessor :cache_stats
|
|
3845
|
+
|
|
3793
3846
|
# Provides cost optimization statistics for a GenAi function call.
|
|
3794
3847
|
# Corresponds to the JSON property `costOptimizationStats`
|
|
3795
3848
|
# @return [Google::Apis::BigqueryV2::GenAiFunctionCostOptimizationStats]
|
|
@@ -3822,6 +3875,7 @@ module Google
|
|
|
3822
3875
|
|
|
3823
3876
|
# Update properties of this object
|
|
3824
3877
|
def update!(**args)
|
|
3878
|
+
@cache_stats = args[:cache_stats] if args.key?(:cache_stats)
|
|
3825
3879
|
@cost_optimization_stats = args[:cost_optimization_stats] if args.key?(:cost_optimization_stats)
|
|
3826
3880
|
@error_stats = args[:error_stats] if args.key?(:error_stats)
|
|
3827
3881
|
@function_name = args[:function_name] if args.key?(:function_name)
|
|
@@ -7253,6 +7307,33 @@ module Google
|
|
|
7253
7307
|
end
|
|
7254
7308
|
end
|
|
7255
7309
|
|
|
7310
|
+
# Column Metadata Index staleness detailed infnormation.
|
|
7311
|
+
class MetadataCacheStalenessInsight
|
|
7312
|
+
include Google::Apis::Core::Hashable
|
|
7313
|
+
|
|
7314
|
+
# Output only. Average column metadata index staleness of previous runs with the
|
|
7315
|
+
# same query hash.
|
|
7316
|
+
# Corresponds to the JSON property `avgPreviousStalenessMs`
|
|
7317
|
+
# @return [String]
|
|
7318
|
+
attr_accessor :avg_previous_staleness_ms
|
|
7319
|
+
|
|
7320
|
+
# Output only. The percent increase in staleness between the current job and the
|
|
7321
|
+
# average staleness of previous jobs with the same query hash.
|
|
7322
|
+
# Corresponds to the JSON property `stalenessPercentageIncrease`
|
|
7323
|
+
# @return [Float]
|
|
7324
|
+
attr_accessor :staleness_percentage_increase
|
|
7325
|
+
|
|
7326
|
+
def initialize(**args)
|
|
7327
|
+
update!(**args)
|
|
7328
|
+
end
|
|
7329
|
+
|
|
7330
|
+
# Update properties of this object
|
|
7331
|
+
def update!(**args)
|
|
7332
|
+
@avg_previous_staleness_ms = args[:avg_previous_staleness_ms] if args.key?(:avg_previous_staleness_ms)
|
|
7333
|
+
@staleness_percentage_increase = args[:staleness_percentage_increase] if args.key?(:staleness_percentage_increase)
|
|
7334
|
+
end
|
|
7335
|
+
end
|
|
7336
|
+
|
|
7256
7337
|
# Statistics for metadata caching in queried tables.
|
|
7257
7338
|
class MetadataCacheStatistics
|
|
7258
7339
|
include Google::Apis::Core::Hashable
|
|
@@ -7751,6 +7832,12 @@ module Google
|
|
|
7751
7832
|
# @return [Array<Google::Apis::BigqueryV2::StagePerformanceStandaloneInsight>]
|
|
7752
7833
|
attr_accessor :stage_performance_standalone_insights
|
|
7753
7834
|
|
|
7835
|
+
# Output only. Performance insights for table-level attributes that changed
|
|
7836
|
+
# compared to previous runs.
|
|
7837
|
+
# Corresponds to the JSON property `tableChangeInsights`
|
|
7838
|
+
# @return [Array<Google::Apis::BigqueryV2::TableChangeInsight>]
|
|
7839
|
+
attr_accessor :table_change_insights
|
|
7840
|
+
|
|
7754
7841
|
def initialize(**args)
|
|
7755
7842
|
update!(**args)
|
|
7756
7843
|
end
|
|
@@ -7760,6 +7847,7 @@ module Google
|
|
|
7760
7847
|
@avg_previous_execution_ms = args[:avg_previous_execution_ms] if args.key?(:avg_previous_execution_ms)
|
|
7761
7848
|
@stage_performance_change_insights = args[:stage_performance_change_insights] if args.key?(:stage_performance_change_insights)
|
|
7762
7849
|
@stage_performance_standalone_insights = args[:stage_performance_standalone_insights] if args.key?(:stage_performance_standalone_insights)
|
|
7850
|
+
@table_change_insights = args[:table_change_insights] if args.key?(:table_change_insights)
|
|
7763
7851
|
end
|
|
7764
7852
|
end
|
|
7765
7853
|
|
|
@@ -10749,6 +10837,40 @@ module Google
|
|
|
10749
10837
|
end
|
|
10750
10838
|
end
|
|
10751
10839
|
|
|
10840
|
+
# Table-level performance insights compared to previous runs. These insights don'
|
|
10841
|
+
# t apply to specific query stages, rather they apply to the whole table.
|
|
10842
|
+
class TableChangeInsight
|
|
10843
|
+
include Google::Apis::Core::Hashable
|
|
10844
|
+
|
|
10845
|
+
# Output only. True if the table's column metadata index was not used in the
|
|
10846
|
+
# current job, but was used in a previous job with the same query hash.
|
|
10847
|
+
# Corresponds to the JSON property `metadataCacheNotUsedButUsedPreviously`
|
|
10848
|
+
# @return [Boolean]
|
|
10849
|
+
attr_accessor :metadata_cache_not_used_but_used_previously
|
|
10850
|
+
alias_method :metadata_cache_not_used_but_used_previously?, :metadata_cache_not_used_but_used_previously
|
|
10851
|
+
|
|
10852
|
+
# Column Metadata Index staleness detailed infnormation.
|
|
10853
|
+
# Corresponds to the JSON property `metadataCacheStalenessInsight`
|
|
10854
|
+
# @return [Google::Apis::BigqueryV2::MetadataCacheStalenessInsight]
|
|
10855
|
+
attr_accessor :metadata_cache_staleness_insight
|
|
10856
|
+
|
|
10857
|
+
# Output only. The table that was queried.
|
|
10858
|
+
# Corresponds to the JSON property `tableReference`
|
|
10859
|
+
# @return [Google::Apis::BigqueryV2::TableReference]
|
|
10860
|
+
attr_accessor :table_reference
|
|
10861
|
+
|
|
10862
|
+
def initialize(**args)
|
|
10863
|
+
update!(**args)
|
|
10864
|
+
end
|
|
10865
|
+
|
|
10866
|
+
# Update properties of this object
|
|
10867
|
+
def update!(**args)
|
|
10868
|
+
@metadata_cache_not_used_but_used_previously = args[:metadata_cache_not_used_but_used_previously] if args.key?(:metadata_cache_not_used_but_used_previously)
|
|
10869
|
+
@metadata_cache_staleness_insight = args[:metadata_cache_staleness_insight] if args.key?(:metadata_cache_staleness_insight)
|
|
10870
|
+
@table_reference = args[:table_reference] if args.key?(:table_reference)
|
|
10871
|
+
end
|
|
10872
|
+
end
|
|
10873
|
+
|
|
10752
10874
|
# The TableConstraints defines the primary key and foreign key.
|
|
10753
10875
|
class TableConstraints
|
|
10754
10876
|
include Google::Apis::Core::Hashable
|
|
@@ -11083,12 +11205,34 @@ module Google
|
|
|
11083
11205
|
# @return [String]
|
|
11084
11206
|
attr_accessor :collation
|
|
11085
11207
|
|
|
11208
|
+
# Optional. Specifies the data governance tags on this field. This field works
|
|
11209
|
+
# with other column-level security fields as follows: - Precedence: If a data
|
|
11210
|
+
# governance tag is attached to a column, it takes precedence over the policy
|
|
11211
|
+
# tag attached to the column. However, if a data policy is attached to a column,
|
|
11212
|
+
# it takes precedence over the data governance tag. - Patching behavior (how
|
|
11213
|
+
# this field behaves during a `Table.patch` schema update): - Unset: If the `
|
|
11214
|
+
# data_governance_tags_info` field is omitted from the update request, the
|
|
11215
|
+
# existing tags on the column are preserved. - Empty Field: To clear data
|
|
11216
|
+
# governance tags from a column, send the `data_governance_tags_info` field as
|
|
11217
|
+
# an empty object. This will remove all tags from the column. - Updating tags:
|
|
11218
|
+
# To replace existing tag, send the field with the new tag.
|
|
11219
|
+
# Corresponds to the JSON property `dataGovernanceTagsInfo`
|
|
11220
|
+
# @return [Google::Apis::BigqueryV2::TableFieldSchema::DataGovernanceTagsInfo]
|
|
11221
|
+
attr_accessor :data_governance_tags_info
|
|
11222
|
+
|
|
11086
11223
|
# Optional. Data policies attached to this field, used for field-level access
|
|
11087
11224
|
# control.
|
|
11088
11225
|
# Corresponds to the JSON property `dataPolicies`
|
|
11089
11226
|
# @return [Array<Google::Apis::BigqueryV2::DataPolicyOption>]
|
|
11090
11227
|
attr_accessor :data_policies
|
|
11091
11228
|
|
|
11229
|
+
# A list of data policy options. For more information, see [Mask data by
|
|
11230
|
+
# applying data policies to a column](https://docs.cloud.google.com/bigquery/
|
|
11231
|
+
# docs/column-data-masking#data-policies-on-column).
|
|
11232
|
+
# Corresponds to the JSON property `dataPolicyList`
|
|
11233
|
+
# @return [Google::Apis::BigqueryV2::DataPolicyList]
|
|
11234
|
+
attr_accessor :data_policy_list
|
|
11235
|
+
|
|
11092
11236
|
# Optional. A SQL expression to specify the [default value] (https://cloud.
|
|
11093
11237
|
# google.com/bigquery/docs/default-values) for this field.
|
|
11094
11238
|
# Corresponds to the JSON property `defaultValueExpression`
|
|
@@ -11207,7 +11351,9 @@ module Google
|
|
|
11207
11351
|
def update!(**args)
|
|
11208
11352
|
@categories = args[:categories] if args.key?(:categories)
|
|
11209
11353
|
@collation = args[:collation] if args.key?(:collation)
|
|
11354
|
+
@data_governance_tags_info = args[:data_governance_tags_info] if args.key?(:data_governance_tags_info)
|
|
11210
11355
|
@data_policies = args[:data_policies] if args.key?(:data_policies)
|
|
11356
|
+
@data_policy_list = args[:data_policy_list] if args.key?(:data_policy_list)
|
|
11211
11357
|
@default_value_expression = args[:default_value_expression] if args.key?(:default_value_expression)
|
|
11212
11358
|
@description = args[:description] if args.key?(:description)
|
|
11213
11359
|
@fields = args[:fields] if args.key?(:fields)
|
|
@@ -11244,6 +11390,43 @@ module Google
|
|
|
11244
11390
|
end
|
|
11245
11391
|
end
|
|
11246
11392
|
|
|
11393
|
+
# Optional. Specifies the data governance tags on this field. This field works
|
|
11394
|
+
# with other column-level security fields as follows: - Precedence: If a data
|
|
11395
|
+
# governance tag is attached to a column, it takes precedence over the policy
|
|
11396
|
+
# tag attached to the column. However, if a data policy is attached to a column,
|
|
11397
|
+
# it takes precedence over the data governance tag. - Patching behavior (how
|
|
11398
|
+
# this field behaves during a `Table.patch` schema update): - Unset: If the `
|
|
11399
|
+
# data_governance_tags_info` field is omitted from the update request, the
|
|
11400
|
+
# existing tags on the column are preserved. - Empty Field: To clear data
|
|
11401
|
+
# governance tags from a column, send the `data_governance_tags_info` field as
|
|
11402
|
+
# an empty object. This will remove all tags from the column. - Updating tags:
|
|
11403
|
+
# To replace existing tag, send the field with the new tag.
|
|
11404
|
+
class DataGovernanceTagsInfo
|
|
11405
|
+
include Google::Apis::Core::Hashable
|
|
11406
|
+
|
|
11407
|
+
# Optional. The data governance tags added to this field are used for field-
|
|
11408
|
+
# level access control. Only one data governance tag is currently supported on a
|
|
11409
|
+
# field. Tag keys are globally unique. Tag key is expected to be in the
|
|
11410
|
+
# namespaced format, for example "123456789012/pii" where 123456789012 is the ID
|
|
11411
|
+
# of the parent organization or project resource for this tag key. Tag value is
|
|
11412
|
+
# expected to be the short name, for example "sensitive". See [Tag definitions](
|
|
11413
|
+
# https://cloud.google.com/iam/docs/tags-access-control#definitions) for more
|
|
11414
|
+
# details. For example: "123456789012/pii": "sensitive", "myProject/cost_center":
|
|
11415
|
+
# "sales"
|
|
11416
|
+
# Corresponds to the JSON property `dataGovernanceTags`
|
|
11417
|
+
# @return [Hash<String,String>]
|
|
11418
|
+
attr_accessor :data_governance_tags
|
|
11419
|
+
|
|
11420
|
+
def initialize(**args)
|
|
11421
|
+
update!(**args)
|
|
11422
|
+
end
|
|
11423
|
+
|
|
11424
|
+
# Update properties of this object
|
|
11425
|
+
def update!(**args)
|
|
11426
|
+
@data_governance_tags = args[:data_governance_tags] if args.key?(:data_governance_tags)
|
|
11427
|
+
end
|
|
11428
|
+
end
|
|
11429
|
+
|
|
11247
11430
|
# Optional. The policy tags attached to this field, used for field-level access
|
|
11248
11431
|
# control. If not set, defaults to empty policy_tags.
|
|
11249
11432
|
class PolicyTags
|
|
@@ -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.102.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260429"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -262,6 +262,12 @@ module Google
|
|
|
262
262
|
include Google::Apis::Core::JsonObjectSupport
|
|
263
263
|
end
|
|
264
264
|
|
|
265
|
+
class DataPolicyList
|
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
267
|
+
|
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
269
|
+
end
|
|
270
|
+
|
|
265
271
|
class DataPolicyOption
|
|
266
272
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
267
273
|
|
|
@@ -472,6 +478,12 @@ module Google
|
|
|
472
478
|
include Google::Apis::Core::JsonObjectSupport
|
|
473
479
|
end
|
|
474
480
|
|
|
481
|
+
class GenAiFunctionCacheStats
|
|
482
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
483
|
+
|
|
484
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
485
|
+
end
|
|
486
|
+
|
|
475
487
|
class GenAiFunctionCostOptimizationStats
|
|
476
488
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
477
489
|
|
|
@@ -820,6 +832,12 @@ module Google
|
|
|
820
832
|
include Google::Apis::Core::JsonObjectSupport
|
|
821
833
|
end
|
|
822
834
|
|
|
835
|
+
class MetadataCacheStalenessInsight
|
|
836
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
837
|
+
|
|
838
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
839
|
+
end
|
|
840
|
+
|
|
823
841
|
class MetadataCacheStatistics
|
|
824
842
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
825
843
|
|
|
@@ -1246,6 +1264,12 @@ module Google
|
|
|
1246
1264
|
include Google::Apis::Core::JsonObjectSupport
|
|
1247
1265
|
end
|
|
1248
1266
|
|
|
1267
|
+
class TableChangeInsight
|
|
1268
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1269
|
+
|
|
1270
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1271
|
+
end
|
|
1272
|
+
|
|
1249
1273
|
class TableConstraints
|
|
1250
1274
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1251
1275
|
|
|
@@ -1315,6 +1339,12 @@ module Google
|
|
|
1315
1339
|
include Google::Apis::Core::JsonObjectSupport
|
|
1316
1340
|
end
|
|
1317
1341
|
|
|
1342
|
+
class DataGovernanceTagsInfo
|
|
1343
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1344
|
+
|
|
1345
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1346
|
+
end
|
|
1347
|
+
|
|
1318
1348
|
class PolicyTags
|
|
1319
1349
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1320
1350
|
|
|
@@ -1865,6 +1895,14 @@ module Google
|
|
|
1865
1895
|
end
|
|
1866
1896
|
end
|
|
1867
1897
|
|
|
1898
|
+
class DataPolicyList
|
|
1899
|
+
# @private
|
|
1900
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1901
|
+
collection :data_policies, as: 'dataPolicies', class: Google::Apis::BigqueryV2::DataPolicyOption, decorator: Google::Apis::BigqueryV2::DataPolicyOption::Representation
|
|
1902
|
+
|
|
1903
|
+
end
|
|
1904
|
+
end
|
|
1905
|
+
|
|
1868
1906
|
class DataPolicyOption
|
|
1869
1907
|
# @private
|
|
1870
1908
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2261,6 +2299,7 @@ module Google
|
|
|
2261
2299
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2262
2300
|
property :container_cpu, as: 'containerCpu'
|
|
2263
2301
|
property :container_memory, as: 'containerMemory'
|
|
2302
|
+
property :container_request_concurrency, :numeric_string => true, as: 'containerRequestConcurrency'
|
|
2264
2303
|
property :max_batching_rows, :numeric_string => true, as: 'maxBatchingRows'
|
|
2265
2304
|
property :runtime_connection, as: 'runtimeConnection'
|
|
2266
2305
|
property :runtime_version, as: 'runtimeVersion'
|
|
@@ -2311,6 +2350,13 @@ module Google
|
|
|
2311
2350
|
end
|
|
2312
2351
|
end
|
|
2313
2352
|
|
|
2353
|
+
class GenAiFunctionCacheStats
|
|
2354
|
+
# @private
|
|
2355
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2356
|
+
property :num_cache_hit_rows, :numeric_string => true, as: 'numCacheHitRows'
|
|
2357
|
+
end
|
|
2358
|
+
end
|
|
2359
|
+
|
|
2314
2360
|
class GenAiFunctionCostOptimizationStats
|
|
2315
2361
|
# @private
|
|
2316
2362
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2330,6 +2376,8 @@ module Google
|
|
|
2330
2376
|
class GenAiFunctionStats
|
|
2331
2377
|
# @private
|
|
2332
2378
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2379
|
+
property :cache_stats, as: 'cacheStats', class: Google::Apis::BigqueryV2::GenAiFunctionCacheStats, decorator: Google::Apis::BigqueryV2::GenAiFunctionCacheStats::Representation
|
|
2380
|
+
|
|
2333
2381
|
property :cost_optimization_stats, as: 'costOptimizationStats', class: Google::Apis::BigqueryV2::GenAiFunctionCostOptimizationStats, decorator: Google::Apis::BigqueryV2::GenAiFunctionCostOptimizationStats::Representation
|
|
2334
2382
|
|
|
2335
2383
|
property :error_stats, as: 'errorStats', class: Google::Apis::BigqueryV2::GenAiFunctionErrorStats, decorator: Google::Apis::BigqueryV2::GenAiFunctionErrorStats::Representation
|
|
@@ -3161,6 +3209,14 @@ module Google
|
|
|
3161
3209
|
end
|
|
3162
3210
|
end
|
|
3163
3211
|
|
|
3212
|
+
class MetadataCacheStalenessInsight
|
|
3213
|
+
# @private
|
|
3214
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3215
|
+
property :avg_previous_staleness_ms, as: 'avgPreviousStalenessMs'
|
|
3216
|
+
property :staleness_percentage_increase, as: 'stalenessPercentageIncrease'
|
|
3217
|
+
end
|
|
3218
|
+
end
|
|
3219
|
+
|
|
3164
3220
|
class MetadataCacheStatistics
|
|
3165
3221
|
# @private
|
|
3166
3222
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3303,6 +3359,8 @@ module Google
|
|
|
3303
3359
|
|
|
3304
3360
|
collection :stage_performance_standalone_insights, as: 'stagePerformanceStandaloneInsights', class: Google::Apis::BigqueryV2::StagePerformanceStandaloneInsight, decorator: Google::Apis::BigqueryV2::StagePerformanceStandaloneInsight::Representation
|
|
3305
3361
|
|
|
3362
|
+
collection :table_change_insights, as: 'tableChangeInsights', class: Google::Apis::BigqueryV2::TableChangeInsight, decorator: Google::Apis::BigqueryV2::TableChangeInsight::Representation
|
|
3363
|
+
|
|
3306
3364
|
end
|
|
3307
3365
|
end
|
|
3308
3366
|
|
|
@@ -4033,6 +4091,17 @@ module Google
|
|
|
4033
4091
|
end
|
|
4034
4092
|
end
|
|
4035
4093
|
|
|
4094
|
+
class TableChangeInsight
|
|
4095
|
+
# @private
|
|
4096
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4097
|
+
property :metadata_cache_not_used_but_used_previously, as: 'metadataCacheNotUsedButUsedPreviously'
|
|
4098
|
+
property :metadata_cache_staleness_insight, as: 'metadataCacheStalenessInsight', class: Google::Apis::BigqueryV2::MetadataCacheStalenessInsight, decorator: Google::Apis::BigqueryV2::MetadataCacheStalenessInsight::Representation
|
|
4099
|
+
|
|
4100
|
+
property :table_reference, as: 'tableReference', class: Google::Apis::BigqueryV2::TableReference, decorator: Google::Apis::BigqueryV2::TableReference::Representation
|
|
4101
|
+
|
|
4102
|
+
end
|
|
4103
|
+
end
|
|
4104
|
+
|
|
4036
4105
|
class TableConstraints
|
|
4037
4106
|
# @private
|
|
4038
4107
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -4135,8 +4204,12 @@ module Google
|
|
|
4135
4204
|
property :categories, as: 'categories', class: Google::Apis::BigqueryV2::TableFieldSchema::Categories, decorator: Google::Apis::BigqueryV2::TableFieldSchema::Categories::Representation
|
|
4136
4205
|
|
|
4137
4206
|
property :collation, as: 'collation'
|
|
4207
|
+
property :data_governance_tags_info, as: 'dataGovernanceTagsInfo', class: Google::Apis::BigqueryV2::TableFieldSchema::DataGovernanceTagsInfo, decorator: Google::Apis::BigqueryV2::TableFieldSchema::DataGovernanceTagsInfo::Representation
|
|
4208
|
+
|
|
4138
4209
|
collection :data_policies, as: 'dataPolicies', class: Google::Apis::BigqueryV2::DataPolicyOption, decorator: Google::Apis::BigqueryV2::DataPolicyOption::Representation
|
|
4139
4210
|
|
|
4211
|
+
property :data_policy_list, as: 'dataPolicyList', class: Google::Apis::BigqueryV2::DataPolicyList, decorator: Google::Apis::BigqueryV2::DataPolicyList::Representation
|
|
4212
|
+
|
|
4140
4213
|
property :default_value_expression, as: 'defaultValueExpression'
|
|
4141
4214
|
property :description, as: 'description'
|
|
4142
4215
|
collection :fields, as: 'fields', class: Google::Apis::BigqueryV2::TableFieldSchema, decorator: Google::Apis::BigqueryV2::TableFieldSchema::Representation
|
|
@@ -4165,6 +4238,13 @@ module Google
|
|
|
4165
4238
|
end
|
|
4166
4239
|
end
|
|
4167
4240
|
|
|
4241
|
+
class DataGovernanceTagsInfo
|
|
4242
|
+
# @private
|
|
4243
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4244
|
+
hash :data_governance_tags, as: 'dataGovernanceTags'
|
|
4245
|
+
end
|
|
4246
|
+
end
|
|
4247
|
+
|
|
4168
4248
|
class PolicyTags
|
|
4169
4249
|
# @private
|
|
4170
4250
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.102.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquery_v2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-bigquery_v2/v0.102.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigquery_v2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|