google-apis-bigqueryreservation_v1 0.53.0 → 0.54.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/bigqueryreservation_v1/classes.rb +8 -0
- data/lib/google/apis/bigqueryreservation_v1/gem_version.rb +2 -2
- data/lib/google/apis/bigqueryreservation_v1/representations.rb +1 -0
- data/lib/google/apis/bigqueryreservation_v1/service.rb +39 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e366ec5bef657fb6084c3bf7eb003327f44a8961b02054261bca5ffd136c9eb5
|
|
4
|
+
data.tar.gz: 41556e088b9a457c9e796d3c4fb913ed43480f4cc31687371d2d9d313588a922
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3376e2195130c6e59e8a0853a4f6cc8deb7bf06401d3703658a913b9666d864407f940fbe46d2993c866560e7f8c24d7dc2b5ba9ea276b5e0ca0fd953ee2b89a
|
|
7
|
+
data.tar.gz: 826c39eb356ede0e2f2fb8f949bd58978c8cea2b5c7deb3fa0f61e5af74edec171689ce551dbab22238bfea7cc8a4f591ccc657f13333b4ed056145c530634cf
|
data/CHANGELOG.md
CHANGED
|
@@ -1053,6 +1053,13 @@ module Google
|
|
|
1053
1053
|
# @return [String]
|
|
1054
1054
|
attr_accessor :name
|
|
1055
1055
|
|
|
1056
|
+
# Optional. The parent reservation group of the reservation group. Format: `
|
|
1057
|
+
# projects/*/locations/*/reservationGroups/team1-prod` for non-root reservation
|
|
1058
|
+
# groups, or `projects/*/locations/*` for root reservation groups.
|
|
1059
|
+
# Corresponds to the JSON property `parentGroup`
|
|
1060
|
+
# @return [String]
|
|
1061
|
+
attr_accessor :parent_group
|
|
1062
|
+
|
|
1056
1063
|
def initialize(**args)
|
|
1057
1064
|
update!(**args)
|
|
1058
1065
|
end
|
|
@@ -1060,6 +1067,7 @@ module Google
|
|
|
1060
1067
|
# Update properties of this object
|
|
1061
1068
|
def update!(**args)
|
|
1062
1069
|
@name = args[:name] if args.key?(:name)
|
|
1070
|
+
@parent_group = args[:parent_group] if args.key?(:parent_group)
|
|
1063
1071
|
end
|
|
1064
1072
|
end
|
|
1065
1073
|
|
|
@@ -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.54.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 = "20260629"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -633,6 +633,45 @@ module Google
|
|
|
633
633
|
execute_or_queue_command(command, &block)
|
|
634
634
|
end
|
|
635
635
|
|
|
636
|
+
# Updates an existing reservation group resource.
|
|
637
|
+
# @param [String] name
|
|
638
|
+
# Identifier. The resource name of the reservation group, e.g., `projects/*/
|
|
639
|
+
# locations/*/reservationGroups/team1-prod`. The reservation_group_id must only
|
|
640
|
+
# contain lower case alphanumeric characters or dashes. It must start with a
|
|
641
|
+
# letter and must not end with a dash. Its maximum length is 64 characters.
|
|
642
|
+
# @param [Google::Apis::BigqueryreservationV1::ReservationGroup] reservation_group_object
|
|
643
|
+
# @param [String] update_mask
|
|
644
|
+
# Optional. Standard field mask for the set of fields to be updated.
|
|
645
|
+
# @param [String] fields
|
|
646
|
+
# Selector specifying which fields to include in a partial response.
|
|
647
|
+
# @param [String] quota_user
|
|
648
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
649
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
650
|
+
# @param [Google::Apis::RequestOptions] options
|
|
651
|
+
# Request-specific options
|
|
652
|
+
#
|
|
653
|
+
# @yield [result, err] Result & error if block supplied
|
|
654
|
+
# @yieldparam result [Google::Apis::BigqueryreservationV1::ReservationGroup] parsed result object
|
|
655
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
656
|
+
#
|
|
657
|
+
# @return [Google::Apis::BigqueryreservationV1::ReservationGroup]
|
|
658
|
+
#
|
|
659
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
660
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
661
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
662
|
+
def patch_project_location_reservation_group(name, reservation_group_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
663
|
+
command = make_simple_command(:patch, 'v1/{+name}', options)
|
|
664
|
+
command.request_representation = Google::Apis::BigqueryreservationV1::ReservationGroup::Representation
|
|
665
|
+
command.request_object = reservation_group_object
|
|
666
|
+
command.response_representation = Google::Apis::BigqueryreservationV1::ReservationGroup::Representation
|
|
667
|
+
command.response_class = Google::Apis::BigqueryreservationV1::ReservationGroup
|
|
668
|
+
command.params['name'] = name unless name.nil?
|
|
669
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
|
670
|
+
command.query['fields'] = fields unless fields.nil?
|
|
671
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
672
|
+
execute_or_queue_command(command, &block)
|
|
673
|
+
end
|
|
674
|
+
|
|
636
675
|
# Creates a new reservation resource.
|
|
637
676
|
# @param [String] parent
|
|
638
677
|
# Required. Project, location. E.g., `projects/myproject/locations/US`
|
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.54.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.54.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:
|