google-apis-bigtableadmin_v2 0.90.0 → 0.91.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: 91eac0114b68480195381df8e254e54a228a60e35e5364cc671fdf10997176f2
4
- data.tar.gz: d13db358d92e6bfe455c7ec81da4b964ed1e0ac1bf384b21b7e2409c879cc8a0
3
+ metadata.gz: 8d905188a1118fefeaff61eb0f85c98a1c7d0d730e06b4439b920215674bf796
4
+ data.tar.gz: c67b77662fe67657f2a48087a10be25cf925ff09e50b9e40132d6b52a77e9d35
5
5
  SHA512:
6
- metadata.gz: 3f15996ff84368d840596451065b41907314de545a7281488831bba2f4ed7fdbd01356e110262d62f8335107388a4bc4d0e2a8a51826ff7e6f10aaf80ebef3a5
7
- data.tar.gz: d2a0ea16a253ac3012c82dd5103c54f7d7d1de8fbd4989085ecfcb70c754ebd8b96c811e2424e4c99cf8887161e18386938c3ab40dc7b6f98f217e5d6817d980
6
+ metadata.gz: 0c322c458c202d0fc7ad6733920421497f154a562dadcbf21dc62c97aa2ad5882e2b83acef36ec842d4196ab5c25cc1529cf2cb4ee5a5717d8a6c284c8ee5de8
7
+ data.tar.gz: 6e0c230cbfc3e852f753b84fda0efb318f1d6ab48a415c068521bd56608d701f71e4bb87de597d66cd10667a02c268f596812cbf5ef3b30f2d66a04a066f8645
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-bigtableadmin_v2
2
2
 
3
+ ### v0.91.0 (2026-08-02)
4
+
5
+ * Regenerated from discovery document revision 20260725
6
+
3
7
  ### v0.90.0 (2026-07-12)
4
8
 
5
9
  * Regenerated from discovery document revision 20260708
@@ -860,6 +860,16 @@ module Google
860
860
  # @return [Fixnum]
861
861
  attr_accessor :logical_data_bytes
862
862
 
863
+ # Output only. The logical data bytes of the column family stored on HDD.
864
+ # Corresponds to the JSON property `logicalDataHddBytes`
865
+ # @return [Fixnum]
866
+ attr_accessor :logical_data_hdd_bytes
867
+
868
+ # Output only. The logical data bytes of the column family stored on SSD.
869
+ # Corresponds to the JSON property `logicalDataSsdBytes`
870
+ # @return [Fixnum]
871
+ attr_accessor :logical_data_ssd_bytes
872
+
863
873
  def initialize(**args)
864
874
  update!(**args)
865
875
  end
@@ -869,6 +879,8 @@ module Google
869
879
  @average_cells_per_column = args[:average_cells_per_column] if args.key?(:average_cells_per_column)
870
880
  @average_columns_per_row = args[:average_columns_per_row] if args.key?(:average_columns_per_row)
871
881
  @logical_data_bytes = args[:logical_data_bytes] if args.key?(:logical_data_bytes)
882
+ @logical_data_hdd_bytes = args[:logical_data_hdd_bytes] if args.key?(:logical_data_hdd_bytes)
883
+ @logical_data_ssd_bytes = args[:logical_data_ssd_bytes] if args.key?(:logical_data_ssd_bytes)
872
884
  end
873
885
  end
874
886
 
@@ -1337,6 +1349,13 @@ module Google
1337
1349
  class CreateMaterializedViewRequest
1338
1350
  include Google::Apis::Core::Hashable
1339
1351
 
1352
+ # Optional. If true, ignore optional safety checks when creating the
1353
+ # materialized view.
1354
+ # Corresponds to the JSON property `ignoreWarnings`
1355
+ # @return [Boolean]
1356
+ attr_accessor :ignore_warnings
1357
+ alias_method :ignore_warnings?, :ignore_warnings
1358
+
1340
1359
  # A materialized view object that can be referenced in SQL queries.
1341
1360
  # Corresponds to the JSON property `materializedView`
1342
1361
  # @return [Google::Apis::BigtableadminV2::MaterializedView]
@@ -1360,6 +1379,7 @@ module Google
1360
1379
 
1361
1380
  # Update properties of this object
1362
1381
  def update!(**args)
1382
+ @ignore_warnings = args[:ignore_warnings] if args.key?(:ignore_warnings)
1363
1383
  @materialized_view = args[:materialized_view] if args.key?(:materialized_view)
1364
1384
  @materialized_view_id = args[:materialized_view_id] if args.key?(:materialized_view_id)
1365
1385
  @parent = args[:parent] if args.key?(:parent)
@@ -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.90.0"
19
+ GEM_VERSION = "0.91.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260708"
25
+ REVISION = "20260725"
26
26
  end
27
27
  end
28
28
  end
@@ -1136,6 +1136,8 @@ module Google
1136
1136
  property :average_cells_per_column, as: 'averageCellsPerColumn'
1137
1137
  property :average_columns_per_row, as: 'averageColumnsPerRow'
1138
1138
  property :logical_data_bytes, :numeric_string => true, as: 'logicalDataBytes'
1139
+ property :logical_data_hdd_bytes, :numeric_string => true, as: 'logicalDataHddBytes'
1140
+ property :logical_data_ssd_bytes, :numeric_string => true, as: 'logicalDataSsdBytes'
1139
1141
  end
1140
1142
  end
1141
1143
 
@@ -1272,6 +1274,7 @@ module Google
1272
1274
  class CreateMaterializedViewRequest
1273
1275
  # @private
1274
1276
  class Representation < Google::Apis::Core::JsonRepresentation
1277
+ property :ignore_warnings, as: 'ignoreWarnings'
1275
1278
  property :materialized_view, as: 'materializedView', class: Google::Apis::BigtableadminV2::MaterializedView, decorator: Google::Apis::BigtableadminV2::MaterializedView::Representation
1276
1279
 
1277
1280
  property :materialized_view_id, as: 'materializedViewId'
@@ -893,6 +893,44 @@ module Google
893
893
  execute_or_queue_command(command, &block)
894
894
  end
895
895
 
896
+ # Updates the memory layer of a cluster. To enable the memory layer, set the
897
+ # memory_config. To disable the memory layer, unset the memory_config.
898
+ # @param [String] name
899
+ # Identifier. Name of the memory layer. This is always: "projects/`project`/
900
+ # instances/`instance`/clusters/`cluster`/memoryLayer".
901
+ # @param [Google::Apis::BigtableadminV2::MemoryLayer] memory_layer_object
902
+ # @param [String] update_mask
903
+ # Optional. The list of fields to update.
904
+ # @param [String] fields
905
+ # Selector specifying which fields to include in a partial response.
906
+ # @param [String] quota_user
907
+ # Available to use for quota purposes for server-side applications. Can be any
908
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
909
+ # @param [Google::Apis::RequestOptions] options
910
+ # Request-specific options
911
+ #
912
+ # @yield [result, err] Result & error if block supplied
913
+ # @yieldparam result [Google::Apis::BigtableadminV2::Operation] parsed result object
914
+ # @yieldparam err [StandardError] error object if request failed
915
+ #
916
+ # @return [Google::Apis::BigtableadminV2::Operation]
917
+ #
918
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
919
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
920
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
921
+ def update_project_instance_cluster_memory_layer(name, memory_layer_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
922
+ command = make_simple_command(:patch, 'v2/{+name}', options)
923
+ command.request_representation = Google::Apis::BigtableadminV2::MemoryLayer::Representation
924
+ command.request_object = memory_layer_object
925
+ command.response_representation = Google::Apis::BigtableadminV2::Operation::Representation
926
+ command.response_class = Google::Apis::BigtableadminV2::Operation
927
+ command.params['name'] = name unless name.nil?
928
+ command.query['updateMask'] = update_mask unless update_mask.nil?
929
+ command.query['fields'] = fields unless fields.nil?
930
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
931
+ execute_or_queue_command(command, &block)
932
+ end
933
+
896
934
  # Copy a Cloud Bigtable backup to a new backup in the destination cluster
897
935
  # located in the destination instance and project.
898
936
  # @param [String] parent
@@ -1655,6 +1693,9 @@ module Google
1655
1693
  # Required. The parent instance where this materialized view will be created.
1656
1694
  # Format: `projects/`project`/instances/`instance``.
1657
1695
  # @param [Google::Apis::BigtableadminV2::MaterializedView] materialized_view_object
1696
+ # @param [Boolean] ignore_warnings
1697
+ # Optional. If true, ignore optional safety checks when creating the
1698
+ # materialized view.
1658
1699
  # @param [String] materialized_view_id
1659
1700
  # Required. The ID to use for the materialized view, which will become the final
1660
1701
  # component of the materialized view's resource name.
@@ -1675,13 +1716,14 @@ module Google
1675
1716
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1676
1717
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1677
1718
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1678
- def create_project_instance_materialized_view(parent, materialized_view_object = nil, materialized_view_id: nil, fields: nil, quota_user: nil, options: nil, &block)
1719
+ def create_project_instance_materialized_view(parent, materialized_view_object = nil, ignore_warnings: nil, materialized_view_id: nil, fields: nil, quota_user: nil, options: nil, &block)
1679
1720
  command = make_simple_command(:post, 'v2/{+parent}/materializedViews', options)
1680
1721
  command.request_representation = Google::Apis::BigtableadminV2::MaterializedView::Representation
1681
1722
  command.request_object = materialized_view_object
1682
1723
  command.response_representation = Google::Apis::BigtableadminV2::Operation::Representation
1683
1724
  command.response_class = Google::Apis::BigtableadminV2::Operation
1684
1725
  command.params['parent'] = parent unless parent.nil?
1726
+ command.query['ignoreWarnings'] = ignore_warnings unless ignore_warnings.nil?
1685
1727
  command.query['materializedViewId'] = materialized_view_id unless materialized_view_id.nil?
1686
1728
  command.query['fields'] = fields unless fields.nil?
1687
1729
  command.query['quotaUser'] = quota_user unless quota_user.nil?
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-bigtableadmin_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.90.0
4
+ version: 0.91.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigtableadmin_v2/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v2/v0.90.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v2/v0.91.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-bigtableadmin_v2
62
62
  rdoc_options: []
63
63
  require_paths: