google-apis-bigtableadmin_v2 0.38.0 → 0.39.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: 8c99a3de2af108a923aa77f8bfea8fff9be410d758b28750209750147d8d6205
4
- data.tar.gz: 5ac608f24643eae50e92cc49d89486620605376ed55a27a5bf2f1bf04f77f08e
3
+ metadata.gz: 396f139374fa74ba7868674ac19ff703a3d8f5a46b3276d5c442bae2226dc650
4
+ data.tar.gz: 6f10a46d3cef47cd0b51bc80aba07a6dab0110b8e712c8c1b0cfc3cd5f52d2e5
5
5
  SHA512:
6
- metadata.gz: 62182a152d7e97033cb9ba501cae785b231906e5d59fb6a0267ae1ed551a87f536d6c6405d82d8b32eb385ae8d5bbd386bb244c5db9ddcbe7d155dfda235322f
7
- data.tar.gz: c6565696259e9ecff95f92b260e75cbc4dabd47ea6284bb39c67adee5c169dea6a81736a958d563b3caf10cdd0091d6a397df57dabd609e4fb5e7bb56673414c
6
+ metadata.gz: 505723412f07f2a19df36a8d1a386f9a24903a856fe3d0bf216f0bc6ee7f3b5d6192cd7fd8055173680cb95d67532671e99154c294fc51baacbc51751d9d6f70
7
+ data.tar.gz: f33094b1eec9fe43be27e75170fad3c41f35f39062f7b8884982967bcb70bc81c05e5a39db4685512251d5dedbecf6b02df20a7b8a5fb421537cfb5551fa7a95
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-bigtableadmin_v2
2
2
 
3
+ ### v0.39.0 (2023-07-23)
4
+
5
+ * Regenerated from discovery document revision 20230713
6
+
3
7
  ### v0.38.0 (2023-07-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20230622
@@ -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 30 days from the time the request is
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.38.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 = "20230622"
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.38.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-02 00:00:00.000000000 Z
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.38.0
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: []