google-apis-bigqueryreservation_v1 0.55.0 → 0.56.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: 835379fde747d85e73691224a19f00334bd29f6f92daeb0f828c3e282726511f
|
|
4
|
+
data.tar.gz: 8461eeb8428c1d4a261f2be548a5cf2e94e8acb67b781658d477a46c7f8ea98c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fe406bdbc71f3fef2b9db3e23c0c8c3a6dc4ae6a4e887b0e65688d63def9f3ad1300a053c7df10df9f44de83a4d7e1b6f338a34c455631174983ec2533fbb131
|
|
7
|
+
data.tar.gz: 19582c44cc540167de94f30561659cd16ab9975dc1db94a9cebdd8e0527032542a60f98c91a0ed1f634814f3175d2d368cb908ba1685f8b954f60093913dbfd5
|
data/CHANGELOG.md
CHANGED
|
@@ -33,6 +33,25 @@ module Google
|
|
|
33
33
|
# @return [String]
|
|
34
34
|
attr_accessor :assignee
|
|
35
35
|
|
|
36
|
+
# Represents a textual expression in the Common Expression Language (CEL) syntax.
|
|
37
|
+
# CEL is a C-like expression language. The syntax and semantics of CEL are
|
|
38
|
+
# documented at https://github.com/google/cel-spec. Example (Comparison): title:
|
|
39
|
+
# "Summary size limit" description: "Determines if a summary is less than 100
|
|
40
|
+
# chars" expression: "document.summary.size() < 100" Example (Equality): title: "
|
|
41
|
+
# Requestor is owner" description: "Determines if requestor is the document
|
|
42
|
+
# owner" expression: "document.owner == request.auth.claims.email" Example (
|
|
43
|
+
# Logic): title: "Public documents" description: "Determine whether the document
|
|
44
|
+
# should be publicly visible" expression: "document.type != 'private' &&
|
|
45
|
+
# document.type != 'internal'" Example (Data Manipulation): title: "Notification
|
|
46
|
+
# string" description: "Create a notification string with a timestamp."
|
|
47
|
+
# expression: "'New message received at ' + string(document.create_time)" The
|
|
48
|
+
# exact variables and functions that may be referenced within an expression are
|
|
49
|
+
# determined by the service that evaluates it. See the service documentation for
|
|
50
|
+
# additional information.
|
|
51
|
+
# Corresponds to the JSON property `condition`
|
|
52
|
+
# @return [Google::Apis::BigqueryreservationV1::Expr]
|
|
53
|
+
attr_accessor :condition
|
|
54
|
+
|
|
36
55
|
# Optional. Deprecated: "Gemini in BigQuery" is now available by default for all
|
|
37
56
|
# BigQuery editions and should not be explicitly set. Controls if "Gemini in
|
|
38
57
|
# BigQuery" (https://cloud.google.com/gemini/docs/bigquery/overview) features
|
|
@@ -55,6 +74,16 @@ module Google
|
|
|
55
74
|
# @return [String]
|
|
56
75
|
attr_accessor :name
|
|
57
76
|
|
|
77
|
+
# Optional. Specifies the priority precedence for this assignment. Used to
|
|
78
|
+
# resolve ambiguity when multiple assignments match a single job. Higher
|
|
79
|
+
# numerical values represent higher priority (e.g., 20 is higher than 10). If
|
|
80
|
+
# unspecified, it defaults to 0. Multiple assignments can share the same
|
|
81
|
+
# precedence, but it is recommended to use unique precedence values for
|
|
82
|
+
# assignments within the same assignee scope.
|
|
83
|
+
# Corresponds to the JSON property `precedence`
|
|
84
|
+
# @return [Fixnum]
|
|
85
|
+
attr_accessor :precedence
|
|
86
|
+
|
|
58
87
|
# Optional. Represents the principal for this assignment. If not empty, jobs run
|
|
59
88
|
# by this principal will utilize the associated reservation. Otherwise, jobs
|
|
60
89
|
# will fall back to using the reservation assigned to the project, folder, or
|
|
@@ -88,9 +117,11 @@ module Google
|
|
|
88
117
|
# Update properties of this object
|
|
89
118
|
def update!(**args)
|
|
90
119
|
@assignee = args[:assignee] if args.key?(:assignee)
|
|
120
|
+
@condition = args[:condition] if args.key?(:condition)
|
|
91
121
|
@enable_gemini_in_bigquery = args[:enable_gemini_in_bigquery] if args.key?(:enable_gemini_in_bigquery)
|
|
92
122
|
@job_type = args[:job_type] if args.key?(:job_type)
|
|
93
123
|
@name = args[:name] if args.key?(:name)
|
|
124
|
+
@precedence = args[:precedence] if args.key?(:precedence)
|
|
94
125
|
@principal = args[:principal] if args.key?(:principal)
|
|
95
126
|
@scheduling_policy = args[:scheduling_policy] if args.key?(:scheduling_policy)
|
|
96
127
|
@state = args[:state] if args.key?(:state)
|
|
@@ -1055,6 +1086,11 @@ module Google
|
|
|
1055
1086
|
class ReservationGroup
|
|
1056
1087
|
include Google::Apis::Core::Hashable
|
|
1057
1088
|
|
|
1089
|
+
# Output only. Creation time of the reservation group.
|
|
1090
|
+
# Corresponds to the JSON property `creationTime`
|
|
1091
|
+
# @return [String]
|
|
1092
|
+
attr_accessor :creation_time
|
|
1093
|
+
|
|
1058
1094
|
# Identifier. The resource name of the reservation group, e.g., `projects/*/
|
|
1059
1095
|
# locations/*/reservationGroups/team1-prod`. The reservation_group_id must only
|
|
1060
1096
|
# contain lower case alphanumeric characters or dashes. It must start with a
|
|
@@ -1070,14 +1106,24 @@ module Google
|
|
|
1070
1106
|
# @return [String]
|
|
1071
1107
|
attr_accessor :parent_group
|
|
1072
1108
|
|
|
1109
|
+
# Output only. Last update time of the reservation group via a user operation.
|
|
1110
|
+
# This timestamp is updated only when an update operation explicitly targets
|
|
1111
|
+
# this reservation group directly. It is not updated when parent or child groups
|
|
1112
|
+
# are created, updated, or deleted.
|
|
1113
|
+
# Corresponds to the JSON property `updateTime`
|
|
1114
|
+
# @return [String]
|
|
1115
|
+
attr_accessor :update_time
|
|
1116
|
+
|
|
1073
1117
|
def initialize(**args)
|
|
1074
1118
|
update!(**args)
|
|
1075
1119
|
end
|
|
1076
1120
|
|
|
1077
1121
|
# Update properties of this object
|
|
1078
1122
|
def update!(**args)
|
|
1123
|
+
@creation_time = args[:creation_time] if args.key?(:creation_time)
|
|
1079
1124
|
@name = args[:name] if args.key?(:name)
|
|
1080
1125
|
@parent_group = args[:parent_group] if args.key?(:parent_group)
|
|
1126
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
|
1081
1127
|
end
|
|
1082
1128
|
end
|
|
1083
1129
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module BigqueryreservationV1
|
|
18
18
|
# Version of the google-apis-bigqueryreservation_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.56.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260819"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -206,9 +206,12 @@ module Google
|
|
|
206
206
|
# @private
|
|
207
207
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
208
208
|
property :assignee, as: 'assignee'
|
|
209
|
+
property :condition, as: 'condition', class: Google::Apis::BigqueryreservationV1::Expr, decorator: Google::Apis::BigqueryreservationV1::Expr::Representation
|
|
210
|
+
|
|
209
211
|
property :enable_gemini_in_bigquery, as: 'enableGeminiInBigquery'
|
|
210
212
|
property :job_type, as: 'jobType'
|
|
211
213
|
property :name, as: 'name'
|
|
214
|
+
property :precedence, :numeric_string => true, as: 'precedence'
|
|
212
215
|
property :principal, as: 'principal'
|
|
213
216
|
property :scheduling_policy, as: 'schedulingPolicy', class: Google::Apis::BigqueryreservationV1::SchedulingPolicy, decorator: Google::Apis::BigqueryreservationV1::SchedulingPolicy::Representation
|
|
214
217
|
|
|
@@ -409,8 +412,10 @@ module Google
|
|
|
409
412
|
class ReservationGroup
|
|
410
413
|
# @private
|
|
411
414
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
415
|
+
property :creation_time, as: 'creationTime'
|
|
412
416
|
property :name, as: 'name'
|
|
413
417
|
property :parent_group, as: 'parentGroup'
|
|
418
|
+
property :update_time, as: 'updateTime'
|
|
414
419
|
end
|
|
415
420
|
end
|
|
416
421
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-bigqueryreservation_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.56.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-bigqueryreservation_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-bigqueryreservation_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-bigqueryreservation_v1/v0.56.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigqueryreservation_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|