Skip to content

Commit 3a1ab60

Browse files
feat: Automated regeneration of bigtableadmin v2 client (#18650)
Auto-created at 2024-03-31 09:43:12 +0000 using the toys pull request generator.
1 parent d22ffe2 commit 3a1ab60

File tree

4 files changed

+120
-2
lines changed

4 files changed

+120
-2
lines changed

api_names_out.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -45525,6 +45525,8 @@
4552545525
"/bigtableadmin:v2/bigtableadmin.projects.instances.tables.authorizedViews.get": get_project_instance_table_authorized_view
4552645526
"/bigtableadmin:v2/bigtableadmin.projects.instances.tables.authorizedViews.get/name": name
4552745527
"/bigtableadmin:v2/bigtableadmin.projects.instances.tables.authorizedViews.get/view": view
45528+
"/bigtableadmin:v2/bigtableadmin.projects.instances.tables.authorizedViews.getIamPolicy": get_authorized_view_iam_policy
45529+
"/bigtableadmin:v2/bigtableadmin.projects.instances.tables.authorizedViews.getIamPolicy/resource": resource
4552845530
"/bigtableadmin:v2/bigtableadmin.projects.instances.tables.authorizedViews.list": list_project_instance_table_authorized_views
4552945531
"/bigtableadmin:v2/bigtableadmin.projects.instances.tables.authorizedViews.list/pageSize": page_size
4553045532
"/bigtableadmin:v2/bigtableadmin.projects.instances.tables.authorizedViews.list/pageToken": page_token
@@ -45534,6 +45536,10 @@
4553445536
"/bigtableadmin:v2/bigtableadmin.projects.instances.tables.authorizedViews.patch/ignoreWarnings": ignore_warnings
4553545537
"/bigtableadmin:v2/bigtableadmin.projects.instances.tables.authorizedViews.patch/name": name
4553645538
"/bigtableadmin:v2/bigtableadmin.projects.instances.tables.authorizedViews.patch/updateMask": update_mask
45539+
"/bigtableadmin:v2/bigtableadmin.projects.instances.tables.authorizedViews.setIamPolicy": set_authorized_view_iam_policy
45540+
"/bigtableadmin:v2/bigtableadmin.projects.instances.tables.authorizedViews.setIamPolicy/resource": resource
45541+
"/bigtableadmin:v2/bigtableadmin.projects.instances.tables.authorizedViews.testIamPermissions": test_authorized_view_iam_permissions
45542+
"/bigtableadmin:v2/bigtableadmin.projects.instances.tables.authorizedViews.testIamPermissions/resource": resource
4553745543
"/bigtableadmin:v2/bigtableadmin.projects.instances.tables.checkConsistency": check_table_consistency
4553845544
"/bigtableadmin:v2/bigtableadmin.projects.instances.tables.checkConsistency/name": name
4553945545
"/bigtableadmin:v2/bigtableadmin.projects.instances.tables.create": create_table

generated/google-apis-bigtableadmin_v2/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-bigtableadmin_v2
22

3+
### v0.52.0 (2024-03-31)
4+
5+
* Regenerated from discovery document revision 20240319
6+
37
### v0.51.0 (2024-03-24)
48

59
* Regenerated from discovery document revision 20240318

generated/google-apis-bigtableadmin_v2/lib/google/apis/bigtableadmin_v2/gem_version.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module BigtableadminV2
1818
# Version of the google-apis-bigtableadmin_v2 gem
19-
GEM_VERSION = "0.51.0"
19+
GEM_VERSION = "0.52.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.14.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20240318"
25+
REVISION = "20240319"
2626
end
2727
end
2828
end

generated/google-apis-bigtableadmin_v2/lib/google/apis/bigtableadmin_v2/service.rb

+108
Original file line numberDiff line numberDiff line change
@@ -1911,6 +1911,42 @@ def get_project_instance_table_authorized_view(name, view: nil, fields: nil, quo
19111911
execute_or_queue_command(command, &block)
19121912
end
19131913

1914+
# Gets the access control policy for a Table or Backup resource. Returns an
1915+
# empty policy if the resource exists but does not have a policy set.
1916+
# @param [String] resource
1917+
# REQUIRED: The resource for which the policy is being requested. See [Resource
1918+
# names](https://cloud.google.com/apis/design/resource_names) for the
1919+
# appropriate value for this field.
1920+
# @param [Google::Apis::BigtableadminV2::GetIamPolicyRequest] get_iam_policy_request_object
1921+
# @param [String] fields
1922+
# Selector specifying which fields to include in a partial response.
1923+
# @param [String] quota_user
1924+
# Available to use for quota purposes for server-side applications. Can be any
1925+
# arbitrary string assigned to a user, but should not exceed 40 characters.
1926+
# @param [Google::Apis::RequestOptions] options
1927+
# Request-specific options
1928+
#
1929+
# @yield [result, err] Result & error if block supplied
1930+
# @yieldparam result [Google::Apis::BigtableadminV2::Policy] parsed result object
1931+
# @yieldparam err [StandardError] error object if request failed
1932+
#
1933+
# @return [Google::Apis::BigtableadminV2::Policy]
1934+
#
1935+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1936+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1937+
# @raise [Google::Apis::AuthorizationError] Authorization is required
1938+
def get_authorized_view_iam_policy(resource, get_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1939+
command = make_simple_command(:post, 'v2/{+resource}:getIamPolicy', options)
1940+
command.request_representation = Google::Apis::BigtableadminV2::GetIamPolicyRequest::Representation
1941+
command.request_object = get_iam_policy_request_object
1942+
command.response_representation = Google::Apis::BigtableadminV2::Policy::Representation
1943+
command.response_class = Google::Apis::BigtableadminV2::Policy
1944+
command.params['resource'] = resource unless resource.nil?
1945+
command.query['fields'] = fields unless fields.nil?
1946+
command.query['quotaUser'] = quota_user unless quota_user.nil?
1947+
execute_or_queue_command(command, &block)
1948+
end
1949+
19141950
# Lists all AuthorizedViews from a specific table.
19151951
# @param [String] parent
19161952
# Required. The unique name of the table for which AuthorizedViews should be
@@ -2003,6 +2039,78 @@ def patch_project_instance_table_authorized_view(name, authorized_view_object =
20032039
execute_or_queue_command(command, &block)
20042040
end
20052041

2042+
# Sets the access control policy on a Table or Backup resource. Replaces any
2043+
# existing policy.
2044+
# @param [String] resource
2045+
# REQUIRED: The resource for which the policy is being specified. See [Resource
2046+
# names](https://cloud.google.com/apis/design/resource_names) for the
2047+
# appropriate value for this field.
2048+
# @param [Google::Apis::BigtableadminV2::SetIamPolicyRequest] set_iam_policy_request_object
2049+
# @param [String] fields
2050+
# Selector specifying which fields to include in a partial response.
2051+
# @param [String] quota_user
2052+
# Available to use for quota purposes for server-side applications. Can be any
2053+
# arbitrary string assigned to a user, but should not exceed 40 characters.
2054+
# @param [Google::Apis::RequestOptions] options
2055+
# Request-specific options
2056+
#
2057+
# @yield [result, err] Result & error if block supplied
2058+
# @yieldparam result [Google::Apis::BigtableadminV2::Policy] parsed result object
2059+
# @yieldparam err [StandardError] error object if request failed
2060+
#
2061+
# @return [Google::Apis::BigtableadminV2::Policy]
2062+
#
2063+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2064+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2065+
# @raise [Google::Apis::AuthorizationError] Authorization is required
2066+
def set_authorized_view_iam_policy(resource, set_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
2067+
command = make_simple_command(:post, 'v2/{+resource}:setIamPolicy', options)
2068+
command.request_representation = Google::Apis::BigtableadminV2::SetIamPolicyRequest::Representation
2069+
command.request_object = set_iam_policy_request_object
2070+
command.response_representation = Google::Apis::BigtableadminV2::Policy::Representation
2071+
command.response_class = Google::Apis::BigtableadminV2::Policy
2072+
command.params['resource'] = resource unless resource.nil?
2073+
command.query['fields'] = fields unless fields.nil?
2074+
command.query['quotaUser'] = quota_user unless quota_user.nil?
2075+
execute_or_queue_command(command, &block)
2076+
end
2077+
2078+
# Returns permissions that the caller has on the specified Table or Backup
2079+
# resource.
2080+
# @param [String] resource
2081+
# REQUIRED: The resource for which the policy detail is being requested. See [
2082+
# Resource names](https://cloud.google.com/apis/design/resource_names) for the
2083+
# appropriate value for this field.
2084+
# @param [Google::Apis::BigtableadminV2::TestIamPermissionsRequest] test_iam_permissions_request_object
2085+
# @param [String] fields
2086+
# Selector specifying which fields to include in a partial response.
2087+
# @param [String] quota_user
2088+
# Available to use for quota purposes for server-side applications. Can be any
2089+
# arbitrary string assigned to a user, but should not exceed 40 characters.
2090+
# @param [Google::Apis::RequestOptions] options
2091+
# Request-specific options
2092+
#
2093+
# @yield [result, err] Result & error if block supplied
2094+
# @yieldparam result [Google::Apis::BigtableadminV2::TestIamPermissionsResponse] parsed result object
2095+
# @yieldparam err [StandardError] error object if request failed
2096+
#
2097+
# @return [Google::Apis::BigtableadminV2::TestIamPermissionsResponse]
2098+
#
2099+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2100+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2101+
# @raise [Google::Apis::AuthorizationError] Authorization is required
2102+
def test_authorized_view_iam_permissions(resource, test_iam_permissions_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
2103+
command = make_simple_command(:post, 'v2/{+resource}:testIamPermissions', options)
2104+
command.request_representation = Google::Apis::BigtableadminV2::TestIamPermissionsRequest::Representation
2105+
command.request_object = test_iam_permissions_request_object
2106+
command.response_representation = Google::Apis::BigtableadminV2::TestIamPermissionsResponse::Representation
2107+
command.response_class = Google::Apis::BigtableadminV2::TestIamPermissionsResponse
2108+
command.params['resource'] = resource unless resource.nil?
2109+
command.query['fields'] = fields unless fields.nil?
2110+
command.query['quotaUser'] = quota_user unless quota_user.nil?
2111+
execute_or_queue_command(command, &block)
2112+
end
2113+
20062114
# Lists information about the supported locations for this service.
20072115
# @param [String] name
20082116
# The resource that owns the locations collection, if applicable.

0 commit comments

Comments
 (0)