google-apis-bigtableadmin_v2 0.35.0 → 0.37.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: caa9720236b6e0644786501295b069c4b1dc365d6a018ee29c4a019a9b266481
4
- data.tar.gz: 3909cfab2bd9adf03168906bbeebcf3108d6c17d6e2ef3151f770e5871bbfdd1
3
+ metadata.gz: b662f8e4bdf995af8528431fd2a2d98458c2440959ac2b1e205bd3ea33e583b5
4
+ data.tar.gz: 99aa10f664c3614f7b6e16b1815c5373deb8d7f82bd11f4807632bc093c46285
5
5
  SHA512:
6
- metadata.gz: 47626ca2b2541c763b28b0835a8d04e5ebfce6f4598dcfb5e1f9252a7821380fc9d2bb498820044860306420c041eec1be1be855660f84d4bfae14fd6107d7dc
7
- data.tar.gz: b1e77a9c1e6b2e000d2846233bfa8c01a3b235358cb27516b8edd8d6a5a1abb9b587ec09d4154b595ae2f8f36cc34ae4b2a9159ed846d568b6808d11dbebdb5b
6
+ metadata.gz: cb7c4d6568da22c5b2d5f97e156177ba03393f209610dd79b9effc667ca167d6643a9f6db8dd8bcb4e872845306fa1cf9e55501bac9088aa6bf889e53d6c4cbe
7
+ data.tar.gz: 02ece3fd88d92ec583692f0f23042a5f41d9cdd6ae81920f9d9a626eb54c795082073dc78c215f1723fb8c872300b676a4edca47a7138284a248e7958864309c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-bigtableadmin_v2
2
2
 
3
+ ### v0.37.0 (2023-05-28)
4
+
5
+ * Regenerated from discovery document revision 20230517
6
+
7
+ ### v0.36.0 (2023-05-07)
8
+
9
+ * Regenerated from discovery document revision 20230426
10
+
3
11
  ### v0.35.0 (2023-04-16)
4
12
 
5
13
  * Regenerated from discovery document revision 20230330
@@ -1635,7 +1635,7 @@ module Google
1635
1635
  end
1636
1636
  end
1637
1637
 
1638
- # A resource that represents Google Cloud Platform location.
1638
+ # A resource that represents a Google Cloud location.
1639
1639
  class Location
1640
1640
  include Google::Apis::Core::Hashable
1641
1641
 
@@ -1726,6 +1726,12 @@ module Google
1726
1726
  class ModifyColumnFamiliesRequest
1727
1727
  include Google::Apis::Core::Hashable
1728
1728
 
1729
+ # If true, ignore safety checks when modifying the column families.
1730
+ # Corresponds to the JSON property `ignoreWarnings`
1731
+ # @return [Boolean]
1732
+ attr_accessor :ignore_warnings
1733
+ alias_method :ignore_warnings?, :ignore_warnings
1734
+
1729
1735
  # Required. Modifications to be atomically applied to the specified table's
1730
1736
  # families. Entries are applied in order, meaning that earlier modifications can
1731
1737
  # be masked by later ones (in the case of repeated updates to the same family,
@@ -1740,6 +1746,7 @@ module Google
1740
1746
 
1741
1747
  # Update properties of this object
1742
1748
  def update!(**args)
1749
+ @ignore_warnings = args[:ignore_warnings] if args.key?(:ignore_warnings)
1743
1750
  @modifications = args[:modifications] if args.key?(:modifications)
1744
1751
  end
1745
1752
  end
@@ -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.35.0"
19
+ GEM_VERSION = "0.37.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 = "20230330"
25
+ REVISION = "20230517"
26
26
  end
27
27
  end
28
28
  end
@@ -931,6 +931,7 @@ module Google
931
931
  class ModifyColumnFamiliesRequest
932
932
  # @private
933
933
  class Representation < Google::Apis::Core::JsonRepresentation
934
+ property :ignore_warnings, as: 'ignoreWarnings'
934
935
  collection :modifications, as: 'modifications', class: Google::Apis::BigtableadminV2::Modification, decorator: Google::Apis::BigtableadminV2::Modification::Representation
935
936
 
936
937
  end
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.35.0
4
+ version: 0.37.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-04-23 00:00:00.000000000 Z
11
+ date: 2023-05-28 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.35.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v2/v0.37.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: []