google-apis-bigtableadmin_v2 0.3.0 → 0.4.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: b9e7c3cb9b490411e6fa96e9bee85618e4c1b933125439aba06ea148f5f72029
4
- data.tar.gz: 63ce699196eaa6c75dde186020b95a829b78ad2c68657709b7e630a542e67cdf
3
+ metadata.gz: 38211551735319a115135fb8fb78de99443e5ec6585bdfc1ccd8be4cb106a670
4
+ data.tar.gz: 1493b97b109860e7de8e0541786c7013f1d145968cbc03f1583db2d07adaeb2c
5
5
  SHA512:
6
- metadata.gz: fe9bca968c7f935eb65ba607ec6e4372d492adeece857346c9d348a30a519a0fed0ebb65d0c0e8451645eb408b3611b3f9219681e3f947582232eedac77400cb
7
- data.tar.gz: '07377739e3c9ee2deeaf1f81058838b72d0e9a0667c30ba4c6bf45628d1b4c51df0cfa00de001b2ff8514bac3f7f589be59ac4ce2e44df7abc44a9ff63111f46'
6
+ metadata.gz: 5c93dc6b2b0bccbc6ace21b75b525dba40d87866f2345e46de7dd2d09369580d22c3c7de33dcc999fad74f42426f42b8393a440edcec2036e5ca0fdf97cdd222
7
+ data.tar.gz: d84e7eb7a204addee5408edb041219346fc751dbb0fab37b4b2523abb830c9c2e90e64ac94fa58af64514bba860d82d2fd5ad833effaa926df4065a26078e5e4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-bigtableadmin_v2
2
2
 
3
+ ### v0.4.0 (2021-05-10)
4
+
5
+ * Regenerated from discovery document revision 20210416
6
+
3
7
  ### v0.3.0 (2021-03-30)
4
8
 
5
9
  * Regenerated from discovery document revision 20210323
@@ -50,7 +50,7 @@ module Google
50
50
  # Administer your Cloud Bigtable tables
51
51
  AUTH_CLOUD_BIGTABLE_ADMIN_TABLE = 'https://www.googleapis.com/auth/cloud-bigtable.admin.table'
52
52
 
53
- # View and manage your data across Google Cloud Platform services
53
+ # See, edit, configure, and delete your Google Cloud Platform data
54
54
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
55
55
 
56
56
  # View your data across Google Cloud Platform services
@@ -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.3.0"
19
+ GEM_VERSION = "0.4.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210323"
25
+ REVISION = "20210416"
26
26
  end
27
27
  end
28
28
  end
@@ -834,7 +834,47 @@ module Google
834
834
  execute_or_queue_command(command, &block)
835
835
  end
836
836
 
837
- # Updates a cluster within an instance.
837
+ # Partially updates a cluster within a project. This method is the preferred way
838
+ # to update a Cluster.
839
+ # @param [String] name
840
+ # The unique name of the cluster. Values are of the form `projects/`project`/
841
+ # instances/`instance`/clusters/a-z*`.
842
+ # @param [Google::Apis::BigtableadminV2::Cluster] cluster_object
843
+ # @param [String] update_mask
844
+ # Required. The subset of Cluster fields which should be replaced. Must be
845
+ # explicitly set.
846
+ # @param [String] fields
847
+ # Selector specifying which fields to include in a partial response.
848
+ # @param [String] quota_user
849
+ # Available to use for quota purposes for server-side applications. Can be any
850
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
851
+ # @param [Google::Apis::RequestOptions] options
852
+ # Request-specific options
853
+ #
854
+ # @yield [result, err] Result & error if block supplied
855
+ # @yieldparam result [Google::Apis::BigtableadminV2::Operation] parsed result object
856
+ # @yieldparam err [StandardError] error object if request failed
857
+ #
858
+ # @return [Google::Apis::BigtableadminV2::Operation]
859
+ #
860
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
861
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
862
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
863
+ def partial_project_instance_cluster_update_cluster(name, cluster_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
864
+ command = make_simple_command(:patch, 'v2/{+name}', options)
865
+ command.request_representation = Google::Apis::BigtableadminV2::Cluster::Representation
866
+ command.request_object = cluster_object
867
+ command.response_representation = Google::Apis::BigtableadminV2::Operation::Representation
868
+ command.response_class = Google::Apis::BigtableadminV2::Operation
869
+ command.params['name'] = name unless name.nil?
870
+ command.query['updateMask'] = update_mask unless update_mask.nil?
871
+ command.query['fields'] = fields unless fields.nil?
872
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
873
+ execute_or_queue_command(command, &block)
874
+ end
875
+
876
+ # Updates a cluster within an instance. UpdateCluster is deprecated. Please use
877
+ # PartialUpdateCluster instead.
838
878
  # @param [String] name
839
879
  # The unique name of the cluster. Values are of the form `projects/`project`/
840
880
  # instances/`instance`/clusters/a-z*`.
@@ -1672,11 +1712,15 @@ module Google
1672
1712
  # @param [String] name
1673
1713
  # The resource that owns the locations collection, if applicable.
1674
1714
  # @param [String] filter
1675
- # The standard list filter.
1715
+ # A filter to narrow down results to a preferred subset. The filtering language
1716
+ # accepts strings like "displayName=tokyo", and is documented in more detail in [
1717
+ # AIP-160](https://google.aip.dev/160).
1676
1718
  # @param [Fixnum] page_size
1677
- # The standard list page size.
1719
+ # The maximum number of results to return. If not set, the service selects a
1720
+ # default.
1678
1721
  # @param [String] page_token
1679
- # The standard list page token.
1722
+ # A page token received from the `next_page_token` field in the response. Send
1723
+ # that page token to receive the subsequent page.
1680
1724
  # @param [String] fields
1681
1725
  # Selector specifying which fields to include in a partial response.
1682
1726
  # @param [String] quota_user
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.3.0
4
+ version: 0.4.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: 2021-04-05 00:00:00.000000000 Z
11
+ date: 2021-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-bigtableadmin_v2/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v2/v0.3.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v2/v0.4.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-bigtableadmin_v2
57
57
  post_install_message:
58
58
  rdoc_options: []
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.13
72
+ rubygems_version: 3.2.17
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Cloud Bigtable Admin API V2