google-apis-bigtableadmin_v2 0.38.0 → 0.39.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 396f139374fa74ba7868674ac19ff703a3d8f5a46b3276d5c442bae2226dc650
|
4
|
+
data.tar.gz: 6f10a46d3cef47cd0b51bc80aba07a6dab0110b8e712c8c1b0cfc3cd5f52d2e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 505723412f07f2a19df36a8d1a386f9a24903a856fe3d0bf216f0bc6ee7f3b5d6192cd7fd8055173680cb95d67532671e99154c294fc51baacbc51751d9d6f70
|
7
|
+
data.tar.gz: f33094b1eec9fe43be27e75170fad3c41f35f39062f7b8884982967bcb70bc81c05e5a39db4685512251d5dedbecf6b02df20a7b8a5fb421537cfb5551fa7a95
|
data/CHANGELOG.md
CHANGED
@@ -223,7 +223,7 @@ module Google
|
|
223
223
|
attr_accessor :end_time
|
224
224
|
|
225
225
|
# Required. The expiration time of the backup, with microseconds granularity
|
226
|
-
# that must be at least 6 hours and at most
|
226
|
+
# that must be at least 6 hours and at most 90 days from the time the request is
|
227
227
|
# received. Once the `expire_time` has passed, Cloud Bigtable will delete the
|
228
228
|
# backup and free the resources used by the backup.
|
229
229
|
# Corresponds to the JSON property `expireTime`
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module BigtableadminV2
|
18
18
|
# Version of the google-apis-bigtableadmin_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.39.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230713"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1862,113 +1862,6 @@ module Google
|
|
1862
1862
|
execute_or_queue_command(command, &block)
|
1863
1863
|
end
|
1864
1864
|
|
1865
|
-
# Gets the access control policy for a Table resource. Returns an empty policy
|
1866
|
-
# if the resource exists but does not have a policy set.
|
1867
|
-
# @param [String] resource
|
1868
|
-
# REQUIRED: The resource for which the policy is being requested. See [Resource
|
1869
|
-
# names](https://cloud.google.com/apis/design/resource_names) for the
|
1870
|
-
# appropriate value for this field.
|
1871
|
-
# @param [Google::Apis::BigtableadminV2::GetIamPolicyRequest] get_iam_policy_request_object
|
1872
|
-
# @param [String] fields
|
1873
|
-
# Selector specifying which fields to include in a partial response.
|
1874
|
-
# @param [String] quota_user
|
1875
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
1876
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1877
|
-
# @param [Google::Apis::RequestOptions] options
|
1878
|
-
# Request-specific options
|
1879
|
-
#
|
1880
|
-
# @yield [result, err] Result & error if block supplied
|
1881
|
-
# @yieldparam result [Google::Apis::BigtableadminV2::Policy] parsed result object
|
1882
|
-
# @yieldparam err [StandardError] error object if request failed
|
1883
|
-
#
|
1884
|
-
# @return [Google::Apis::BigtableadminV2::Policy]
|
1885
|
-
#
|
1886
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1887
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1888
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1889
|
-
def get_view_iam_policy(resource, get_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1890
|
-
command = make_simple_command(:post, 'v2/{+resource}:getIamPolicy', options)
|
1891
|
-
command.request_representation = Google::Apis::BigtableadminV2::GetIamPolicyRequest::Representation
|
1892
|
-
command.request_object = get_iam_policy_request_object
|
1893
|
-
command.response_representation = Google::Apis::BigtableadminV2::Policy::Representation
|
1894
|
-
command.response_class = Google::Apis::BigtableadminV2::Policy
|
1895
|
-
command.params['resource'] = resource unless resource.nil?
|
1896
|
-
command.query['fields'] = fields unless fields.nil?
|
1897
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1898
|
-
execute_or_queue_command(command, &block)
|
1899
|
-
end
|
1900
|
-
|
1901
|
-
# Sets the access control policy on a Table resource. Replaces any existing
|
1902
|
-
# policy.
|
1903
|
-
# @param [String] resource
|
1904
|
-
# REQUIRED: The resource for which the policy is being specified. See [Resource
|
1905
|
-
# names](https://cloud.google.com/apis/design/resource_names) for the
|
1906
|
-
# appropriate value for this field.
|
1907
|
-
# @param [Google::Apis::BigtableadminV2::SetIamPolicyRequest] set_iam_policy_request_object
|
1908
|
-
# @param [String] fields
|
1909
|
-
# Selector specifying which fields to include in a partial response.
|
1910
|
-
# @param [String] quota_user
|
1911
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
1912
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1913
|
-
# @param [Google::Apis::RequestOptions] options
|
1914
|
-
# Request-specific options
|
1915
|
-
#
|
1916
|
-
# @yield [result, err] Result & error if block supplied
|
1917
|
-
# @yieldparam result [Google::Apis::BigtableadminV2::Policy] parsed result object
|
1918
|
-
# @yieldparam err [StandardError] error object if request failed
|
1919
|
-
#
|
1920
|
-
# @return [Google::Apis::BigtableadminV2::Policy]
|
1921
|
-
#
|
1922
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1923
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1924
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1925
|
-
def set_view_iam_policy(resource, set_iam_policy_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1926
|
-
command = make_simple_command(:post, 'v2/{+resource}:setIamPolicy', options)
|
1927
|
-
command.request_representation = Google::Apis::BigtableadminV2::SetIamPolicyRequest::Representation
|
1928
|
-
command.request_object = set_iam_policy_request_object
|
1929
|
-
command.response_representation = Google::Apis::BigtableadminV2::Policy::Representation
|
1930
|
-
command.response_class = Google::Apis::BigtableadminV2::Policy
|
1931
|
-
command.params['resource'] = resource unless resource.nil?
|
1932
|
-
command.query['fields'] = fields unless fields.nil?
|
1933
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1934
|
-
execute_or_queue_command(command, &block)
|
1935
|
-
end
|
1936
|
-
|
1937
|
-
# Returns permissions that the caller has on the specified table resource.
|
1938
|
-
# @param [String] resource
|
1939
|
-
# REQUIRED: The resource for which the policy detail is being requested. See [
|
1940
|
-
# Resource names](https://cloud.google.com/apis/design/resource_names) for the
|
1941
|
-
# appropriate value for this field.
|
1942
|
-
# @param [Google::Apis::BigtableadminV2::TestIamPermissionsRequest] test_iam_permissions_request_object
|
1943
|
-
# @param [String] fields
|
1944
|
-
# Selector specifying which fields to include in a partial response.
|
1945
|
-
# @param [String] quota_user
|
1946
|
-
# Available to use for quota purposes for server-side applications. Can be any
|
1947
|
-
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1948
|
-
# @param [Google::Apis::RequestOptions] options
|
1949
|
-
# Request-specific options
|
1950
|
-
#
|
1951
|
-
# @yield [result, err] Result & error if block supplied
|
1952
|
-
# @yieldparam result [Google::Apis::BigtableadminV2::TestIamPermissionsResponse] parsed result object
|
1953
|
-
# @yieldparam err [StandardError] error object if request failed
|
1954
|
-
#
|
1955
|
-
# @return [Google::Apis::BigtableadminV2::TestIamPermissionsResponse]
|
1956
|
-
#
|
1957
|
-
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1958
|
-
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1959
|
-
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1960
|
-
def test_view_iam_permissions(resource, test_iam_permissions_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1961
|
-
command = make_simple_command(:post, 'v2/{+resource}:testIamPermissions', options)
|
1962
|
-
command.request_representation = Google::Apis::BigtableadminV2::TestIamPermissionsRequest::Representation
|
1963
|
-
command.request_object = test_iam_permissions_request_object
|
1964
|
-
command.response_representation = Google::Apis::BigtableadminV2::TestIamPermissionsResponse::Representation
|
1965
|
-
command.response_class = Google::Apis::BigtableadminV2::TestIamPermissionsResponse
|
1966
|
-
command.params['resource'] = resource unless resource.nil?
|
1967
|
-
command.query['fields'] = fields unless fields.nil?
|
1968
|
-
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1969
|
-
execute_or_queue_command(command, &block)
|
1970
|
-
end
|
1971
|
-
|
1972
1865
|
# Gets information about a location.
|
1973
1866
|
# @param [String] name
|
1974
1867
|
# Resource name for the location.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-bigtableadmin_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.39.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-07-
|
11
|
+
date: 2023-07-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigtableadmin_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v2/v0.39.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigtableadmin_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|