@@ -1911,6 +1911,42 @@ def get_project_instance_table_authorized_view(name, view: nil, fields: nil, quo
1911
1911
execute_or_queue_command ( command , &block )
1912
1912
end
1913
1913
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
+
1914
1950
# Lists all AuthorizedViews from a specific table.
1915
1951
# @param [String] parent
1916
1952
# 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 =
2003
2039
execute_or_queue_command ( command , &block )
2004
2040
end
2005
2041
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
+
2006
2114
# Lists information about the supported locations for this service.
2007
2115
# @param [String] name
2008
2116
# The resource that owns the locations collection, if applicable.
0 commit comments