google-apis-bigtableadmin_v2 0.67.0 → 0.68.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: 23b45bd9fba778fe27217fece03838d33b6444ac848eed6192ac0f792b27e947
4
- data.tar.gz: 778ab49f3f833f173a619768b2b8fb6d9cfb2eec016f11277fad01392744796a
3
+ metadata.gz: 9bb0df7e56d0e8eda6785d4fcd3558a9fd7ae936576265e51aee7af6ae4d3e93
4
+ data.tar.gz: bf04c9aa8286d2918f208a2c6d34ee66e212b1a2e270c05d0f98492dd736eaf3
5
5
  SHA512:
6
- metadata.gz: 7fa4ba455f95714d891957183ab29d51d8f1da4c9c1b51d86837ec5cd9afa639aa155d7e5c2cb30875f42c71a523bccc3fa4d8afbcb343237f0cc43385fd8daa
7
- data.tar.gz: c649f75648146d9bdd5d45ee0c6c97ca87a676838697081b276dc8ff8c6a63ece6e74555cef21c48e1f6c0a71f5dbd94b6642b645a67b883471cfaa408e3a471
6
+ metadata.gz: '08f0f28bdb303c4c9d3c37b9f563dd9e2a71a7b1945a28ac4d9fe19c99c52d5922b67e75e7ae392d8b32f48faeff3fcabd89d07cd44d4bb9b491286ab089c272'
7
+ data.tar.gz: 4c7eca6fef4e57d8da836f810a1d4267871b8b92e2229d67baade71f507e8ccf0a14b03096e721236e49ac5778bd449c7eae22d89357c8c651ed8a67a3a205f5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-bigtableadmin_v2
2
2
 
3
+ ### v0.68.0 (2025-03-16)
4
+
5
+ * Regenerated from discovery document revision 20250308
6
+
3
7
  ### v0.67.0 (2025-03-09)
4
8
 
5
9
  * Regenerated from discovery document revision 20250227
@@ -1191,6 +1191,134 @@ module Google
1191
1191
  end
1192
1192
  end
1193
1193
 
1194
+ # The metadata for the Operation returned by CreateLogicalView.
1195
+ class CreateLogicalViewMetadata
1196
+ include Google::Apis::Core::Hashable
1197
+
1198
+ # If set, the time at which this operation finished or was canceled.
1199
+ # Corresponds to the JSON property `endTime`
1200
+ # @return [String]
1201
+ attr_accessor :end_time
1202
+
1203
+ # Request message for BigtableInstanceAdmin.CreateLogicalView.
1204
+ # Corresponds to the JSON property `originalRequest`
1205
+ # @return [Google::Apis::BigtableadminV2::CreateLogicalViewRequest]
1206
+ attr_accessor :original_request
1207
+
1208
+ # The time at which this operation started.
1209
+ # Corresponds to the JSON property `startTime`
1210
+ # @return [String]
1211
+ attr_accessor :start_time
1212
+
1213
+ def initialize(**args)
1214
+ update!(**args)
1215
+ end
1216
+
1217
+ # Update properties of this object
1218
+ def update!(**args)
1219
+ @end_time = args[:end_time] if args.key?(:end_time)
1220
+ @original_request = args[:original_request] if args.key?(:original_request)
1221
+ @start_time = args[:start_time] if args.key?(:start_time)
1222
+ end
1223
+ end
1224
+
1225
+ # Request message for BigtableInstanceAdmin.CreateLogicalView.
1226
+ class CreateLogicalViewRequest
1227
+ include Google::Apis::Core::Hashable
1228
+
1229
+ # A SQL logical view object that can be referenced in SQL queries.
1230
+ # Corresponds to the JSON property `logicalView`
1231
+ # @return [Google::Apis::BigtableadminV2::LogicalView]
1232
+ attr_accessor :logical_view
1233
+
1234
+ # Required. The ID to use for the logical view, which will become the final
1235
+ # component of the logical view's resource name.
1236
+ # Corresponds to the JSON property `logicalViewId`
1237
+ # @return [String]
1238
+ attr_accessor :logical_view_id
1239
+
1240
+ # Required. The parent instance where this logical view will be created. Format:
1241
+ # `projects/`project`/instances/`instance``.
1242
+ # Corresponds to the JSON property `parent`
1243
+ # @return [String]
1244
+ attr_accessor :parent
1245
+
1246
+ def initialize(**args)
1247
+ update!(**args)
1248
+ end
1249
+
1250
+ # Update properties of this object
1251
+ def update!(**args)
1252
+ @logical_view = args[:logical_view] if args.key?(:logical_view)
1253
+ @logical_view_id = args[:logical_view_id] if args.key?(:logical_view_id)
1254
+ @parent = args[:parent] if args.key?(:parent)
1255
+ end
1256
+ end
1257
+
1258
+ # The metadata for the Operation returned by CreateMaterializedView.
1259
+ class CreateMaterializedViewMetadata
1260
+ include Google::Apis::Core::Hashable
1261
+
1262
+ # If set, the time at which this operation finished or was canceled.
1263
+ # Corresponds to the JSON property `endTime`
1264
+ # @return [String]
1265
+ attr_accessor :end_time
1266
+
1267
+ # Request message for BigtableInstanceAdmin.CreateMaterializedView.
1268
+ # Corresponds to the JSON property `originalRequest`
1269
+ # @return [Google::Apis::BigtableadminV2::CreateMaterializedViewRequest]
1270
+ attr_accessor :original_request
1271
+
1272
+ # The time at which this operation started.
1273
+ # Corresponds to the JSON property `startTime`
1274
+ # @return [String]
1275
+ attr_accessor :start_time
1276
+
1277
+ def initialize(**args)
1278
+ update!(**args)
1279
+ end
1280
+
1281
+ # Update properties of this object
1282
+ def update!(**args)
1283
+ @end_time = args[:end_time] if args.key?(:end_time)
1284
+ @original_request = args[:original_request] if args.key?(:original_request)
1285
+ @start_time = args[:start_time] if args.key?(:start_time)
1286
+ end
1287
+ end
1288
+
1289
+ # Request message for BigtableInstanceAdmin.CreateMaterializedView.
1290
+ class CreateMaterializedViewRequest
1291
+ include Google::Apis::Core::Hashable
1292
+
1293
+ # A materialized view object that can be referenced in SQL queries.
1294
+ # Corresponds to the JSON property `materializedView`
1295
+ # @return [Google::Apis::BigtableadminV2::MaterializedView]
1296
+ attr_accessor :materialized_view
1297
+
1298
+ # Required. The ID to use for the materialized view, which will become the final
1299
+ # component of the materialized view's resource name.
1300
+ # Corresponds to the JSON property `materializedViewId`
1301
+ # @return [String]
1302
+ attr_accessor :materialized_view_id
1303
+
1304
+ # Required. The parent instance where this materialized view will be created.
1305
+ # Format: `projects/`project`/instances/`instance``.
1306
+ # Corresponds to the JSON property `parent`
1307
+ # @return [String]
1308
+ attr_accessor :parent
1309
+
1310
+ def initialize(**args)
1311
+ update!(**args)
1312
+ end
1313
+
1314
+ # Update properties of this object
1315
+ def update!(**args)
1316
+ @materialized_view = args[:materialized_view] if args.key?(:materialized_view)
1317
+ @materialized_view_id = args[:materialized_view_id] if args.key?(:materialized_view_id)
1318
+ @parent = args[:parent] if args.key?(:parent)
1319
+ end
1320
+ end
1321
+
1194
1322
  # Request message for google.bigtable.admin.v2.BigtableTableAdmin.CreateTable
1195
1323
  class CreateTableRequest
1196
1324
  include Google::Apis::Core::Hashable
@@ -2829,6 +2957,81 @@ module Google
2829
2957
  end
2830
2958
  end
2831
2959
 
2960
+ # A SQL logical view object that can be referenced in SQL queries.
2961
+ class LogicalView
2962
+ include Google::Apis::Core::Hashable
2963
+
2964
+ # Optional. The etag for this logical view. This may be sent on update requests
2965
+ # to ensure that the client has an up-to-date value before proceeding. The
2966
+ # server returns an ABORTED error on a mismatched etag.
2967
+ # Corresponds to the JSON property `etag`
2968
+ # @return [String]
2969
+ attr_accessor :etag
2970
+
2971
+ # Identifier. The unique name of the logical view. Format: `projects/`project`/
2972
+ # instances/`instance`/logicalViews/`logical_view``
2973
+ # Corresponds to the JSON property `name`
2974
+ # @return [String]
2975
+ attr_accessor :name
2976
+
2977
+ # Required. The logical view's select query.
2978
+ # Corresponds to the JSON property `query`
2979
+ # @return [String]
2980
+ attr_accessor :query
2981
+
2982
+ def initialize(**args)
2983
+ update!(**args)
2984
+ end
2985
+
2986
+ # Update properties of this object
2987
+ def update!(**args)
2988
+ @etag = args[:etag] if args.key?(:etag)
2989
+ @name = args[:name] if args.key?(:name)
2990
+ @query = args[:query] if args.key?(:query)
2991
+ end
2992
+ end
2993
+
2994
+ # A materialized view object that can be referenced in SQL queries.
2995
+ class MaterializedView
2996
+ include Google::Apis::Core::Hashable
2997
+
2998
+ # Set to true to make the MaterializedView protected against deletion.
2999
+ # Corresponds to the JSON property `deletionProtection`
3000
+ # @return [Boolean]
3001
+ attr_accessor :deletion_protection
3002
+ alias_method :deletion_protection?, :deletion_protection
3003
+
3004
+ # Optional. The etag for this materialized view. This may be sent on update
3005
+ # requests to ensure that the client has an up-to-date value before proceeding.
3006
+ # The server returns an ABORTED error on a mismatched etag.
3007
+ # Corresponds to the JSON property `etag`
3008
+ # @return [String]
3009
+ attr_accessor :etag
3010
+
3011
+ # Identifier. The unique name of the materialized view. Format: `projects/`
3012
+ # project`/instances/`instance`/materializedViews/`materialized_view``
3013
+ # Corresponds to the JSON property `name`
3014
+ # @return [String]
3015
+ attr_accessor :name
3016
+
3017
+ # Required. Immutable. The materialized view's select query.
3018
+ # Corresponds to the JSON property `query`
3019
+ # @return [String]
3020
+ attr_accessor :query
3021
+
3022
+ def initialize(**args)
3023
+ update!(**args)
3024
+ end
3025
+
3026
+ # Update properties of this object
3027
+ def update!(**args)
3028
+ @deletion_protection = args[:deletion_protection] if args.key?(:deletion_protection)
3029
+ @etag = args[:etag] if args.key?(:etag)
3030
+ @name = args[:name] if args.key?(:name)
3031
+ @query = args[:query] if args.key?(:query)
3032
+ end
3033
+ end
3034
+
2832
3035
  # A create, update, or delete of a particular column family.
2833
3036
  class Modification
2834
3037
  include Google::Apis::Core::Hashable
@@ -4075,6 +4278,62 @@ module Google
4075
4278
  end
4076
4279
  end
4077
4280
 
4281
+ # The metadata for the Operation returned by UpdateLogicalView.
4282
+ class UpdateLogicalViewMetadata
4283
+ include Google::Apis::Core::Hashable
4284
+
4285
+ # If set, the time at which this operation finished or was canceled.
4286
+ # Corresponds to the JSON property `endTime`
4287
+ # @return [String]
4288
+ attr_accessor :end_time
4289
+
4290
+ # Request message for BigtableInstanceAdmin.UpdateLogicalView.
4291
+ # Corresponds to the JSON property `originalRequest`
4292
+ # @return [Google::Apis::BigtableadminV2::UpdateLogicalViewRequest]
4293
+ attr_accessor :original_request
4294
+
4295
+ # The time at which this operation was started.
4296
+ # Corresponds to the JSON property `startTime`
4297
+ # @return [String]
4298
+ attr_accessor :start_time
4299
+
4300
+ def initialize(**args)
4301
+ update!(**args)
4302
+ end
4303
+
4304
+ # Update properties of this object
4305
+ def update!(**args)
4306
+ @end_time = args[:end_time] if args.key?(:end_time)
4307
+ @original_request = args[:original_request] if args.key?(:original_request)
4308
+ @start_time = args[:start_time] if args.key?(:start_time)
4309
+ end
4310
+ end
4311
+
4312
+ # Request message for BigtableInstanceAdmin.UpdateLogicalView.
4313
+ class UpdateLogicalViewRequest
4314
+ include Google::Apis::Core::Hashable
4315
+
4316
+ # A SQL logical view object that can be referenced in SQL queries.
4317
+ # Corresponds to the JSON property `logicalView`
4318
+ # @return [Google::Apis::BigtableadminV2::LogicalView]
4319
+ attr_accessor :logical_view
4320
+
4321
+ # Optional. The list of fields to update.
4322
+ # Corresponds to the JSON property `updateMask`
4323
+ # @return [String]
4324
+ attr_accessor :update_mask
4325
+
4326
+ def initialize(**args)
4327
+ update!(**args)
4328
+ end
4329
+
4330
+ # Update properties of this object
4331
+ def update!(**args)
4332
+ @logical_view = args[:logical_view] if args.key?(:logical_view)
4333
+ @update_mask = args[:update_mask] if args.key?(:update_mask)
4334
+ end
4335
+ end
4336
+
4078
4337
  # Metadata type for the operation returned by UpdateTable.
4079
4338
  class UpdateTableMetadata
4080
4339
  include Google::Apis::Core::Hashable
@@ -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.67.0"
19
+ GEM_VERSION = "0.68.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250227"
25
+ REVISION = "20250308"
26
26
  end
27
27
  end
28
28
  end
@@ -190,6 +190,30 @@ module Google
190
190
  include Google::Apis::Core::JsonObjectSupport
191
191
  end
192
192
 
193
+ class CreateLogicalViewMetadata
194
+ class Representation < Google::Apis::Core::JsonRepresentation; end
195
+
196
+ include Google::Apis::Core::JsonObjectSupport
197
+ end
198
+
199
+ class CreateLogicalViewRequest
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
205
+ class CreateMaterializedViewMetadata
206
+ class Representation < Google::Apis::Core::JsonRepresentation; end
207
+
208
+ include Google::Apis::Core::JsonObjectSupport
209
+ end
210
+
211
+ class CreateMaterializedViewRequest
212
+ class Representation < Google::Apis::Core::JsonRepresentation; end
213
+
214
+ include Google::Apis::Core::JsonObjectSupport
215
+ end
216
+
193
217
  class CreateTableRequest
194
218
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
219
 
@@ -538,6 +562,18 @@ module Google
538
562
  include Google::Apis::Core::JsonObjectSupport
539
563
  end
540
564
 
565
+ class LogicalView
566
+ class Representation < Google::Apis::Core::JsonRepresentation; end
567
+
568
+ include Google::Apis::Core::JsonObjectSupport
569
+ end
570
+
571
+ class MaterializedView
572
+ class Representation < Google::Apis::Core::JsonRepresentation; end
573
+
574
+ include Google::Apis::Core::JsonObjectSupport
575
+ end
576
+
541
577
  class Modification
542
578
  class Representation < Google::Apis::Core::JsonRepresentation; end
543
579
 
@@ -742,6 +778,18 @@ module Google
742
778
  include Google::Apis::Core::JsonObjectSupport
743
779
  end
744
780
 
781
+ class UpdateLogicalViewMetadata
782
+ class Representation < Google::Apis::Core::JsonRepresentation; end
783
+
784
+ include Google::Apis::Core::JsonObjectSupport
785
+ end
786
+
787
+ class UpdateLogicalViewRequest
788
+ class Representation < Google::Apis::Core::JsonRepresentation; end
789
+
790
+ include Google::Apis::Core::JsonObjectSupport
791
+ end
792
+
745
793
  class UpdateTableMetadata
746
794
  class Representation < Google::Apis::Core::JsonRepresentation; end
747
795
 
@@ -1040,6 +1088,46 @@ module Google
1040
1088
  end
1041
1089
  end
1042
1090
 
1091
+ class CreateLogicalViewMetadata
1092
+ # @private
1093
+ class Representation < Google::Apis::Core::JsonRepresentation
1094
+ property :end_time, as: 'endTime'
1095
+ property :original_request, as: 'originalRequest', class: Google::Apis::BigtableadminV2::CreateLogicalViewRequest, decorator: Google::Apis::BigtableadminV2::CreateLogicalViewRequest::Representation
1096
+
1097
+ property :start_time, as: 'startTime'
1098
+ end
1099
+ end
1100
+
1101
+ class CreateLogicalViewRequest
1102
+ # @private
1103
+ class Representation < Google::Apis::Core::JsonRepresentation
1104
+ property :logical_view, as: 'logicalView', class: Google::Apis::BigtableadminV2::LogicalView, decorator: Google::Apis::BigtableadminV2::LogicalView::Representation
1105
+
1106
+ property :logical_view_id, as: 'logicalViewId'
1107
+ property :parent, as: 'parent'
1108
+ end
1109
+ end
1110
+
1111
+ class CreateMaterializedViewMetadata
1112
+ # @private
1113
+ class Representation < Google::Apis::Core::JsonRepresentation
1114
+ property :end_time, as: 'endTime'
1115
+ property :original_request, as: 'originalRequest', class: Google::Apis::BigtableadminV2::CreateMaterializedViewRequest, decorator: Google::Apis::BigtableadminV2::CreateMaterializedViewRequest::Representation
1116
+
1117
+ property :start_time, as: 'startTime'
1118
+ end
1119
+ end
1120
+
1121
+ class CreateMaterializedViewRequest
1122
+ # @private
1123
+ class Representation < Google::Apis::Core::JsonRepresentation
1124
+ property :materialized_view, as: 'materializedView', class: Google::Apis::BigtableadminV2::MaterializedView, decorator: Google::Apis::BigtableadminV2::MaterializedView::Representation
1125
+
1126
+ property :materialized_view_id, as: 'materializedViewId'
1127
+ property :parent, as: 'parent'
1128
+ end
1129
+ end
1130
+
1043
1131
  class CreateTableRequest
1044
1132
  # @private
1045
1133
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1528,6 +1616,25 @@ module Google
1528
1616
  end
1529
1617
  end
1530
1618
 
1619
+ class LogicalView
1620
+ # @private
1621
+ class Representation < Google::Apis::Core::JsonRepresentation
1622
+ property :etag, as: 'etag'
1623
+ property :name, as: 'name'
1624
+ property :query, as: 'query'
1625
+ end
1626
+ end
1627
+
1628
+ class MaterializedView
1629
+ # @private
1630
+ class Representation < Google::Apis::Core::JsonRepresentation
1631
+ property :deletion_protection, as: 'deletionProtection'
1632
+ property :etag, as: 'etag'
1633
+ property :name, as: 'name'
1634
+ property :query, as: 'query'
1635
+ end
1636
+ end
1637
+
1531
1638
  class Modification
1532
1639
  # @private
1533
1640
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1864,6 +1971,25 @@ module Google
1864
1971
  end
1865
1972
  end
1866
1973
 
1974
+ class UpdateLogicalViewMetadata
1975
+ # @private
1976
+ class Representation < Google::Apis::Core::JsonRepresentation
1977
+ property :end_time, as: 'endTime'
1978
+ property :original_request, as: 'originalRequest', class: Google::Apis::BigtableadminV2::UpdateLogicalViewRequest, decorator: Google::Apis::BigtableadminV2::UpdateLogicalViewRequest::Representation
1979
+
1980
+ property :start_time, as: 'startTime'
1981
+ end
1982
+ end
1983
+
1984
+ class UpdateLogicalViewRequest
1985
+ # @private
1986
+ class Representation < Google::Apis::Core::JsonRepresentation
1987
+ property :logical_view, as: 'logicalView', class: Google::Apis::BigtableadminV2::LogicalView, decorator: Google::Apis::BigtableadminV2::LogicalView::Representation
1988
+
1989
+ property :update_mask, as: 'updateMask'
1990
+ end
1991
+ end
1992
+
1867
1993
  class UpdateTableMetadata
1868
1994
  # @private
1869
1995
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-bigtableadmin_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.67.0
4
+ version: 0.68.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-09 00:00:00.000000000 Z
10
+ date: 2025-03-16 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -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.67.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-bigtableadmin_v2/v0.68.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: