google-cloud-bigtable 2.30.0__py3-none-any.whl
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.
- google/cloud/bigtable/__init__.py +25 -0
- google/cloud/bigtable/app_profile.py +377 -0
- google/cloud/bigtable/backup.py +490 -0
- google/cloud/bigtable/batcher.py +414 -0
- google/cloud/bigtable/client.py +475 -0
- google/cloud/bigtable/cluster.py +541 -0
- google/cloud/bigtable/column_family.py +362 -0
- google/cloud/bigtable/data/__init__.py +103 -0
- google/cloud/bigtable/data/_async/__init__.py +25 -0
- google/cloud/bigtable/data/_async/_mutate_rows.py +226 -0
- google/cloud/bigtable/data/_async/_read_rows.py +363 -0
- google/cloud/bigtable/data/_async/client.py +1522 -0
- google/cloud/bigtable/data/_async/mutations_batcher.py +534 -0
- google/cloud/bigtable/data/_cross_sync/__init__.py +20 -0
- google/cloud/bigtable/data/_cross_sync/_decorators.py +441 -0
- google/cloud/bigtable/data/_cross_sync/_mapping_meta.py +64 -0
- google/cloud/bigtable/data/_cross_sync/cross_sync.py +334 -0
- google/cloud/bigtable/data/_helpers.py +249 -0
- google/cloud/bigtable/data/_sync_autogen/_mutate_rows.py +182 -0
- google/cloud/bigtable/data/_sync_autogen/_read_rows.py +304 -0
- google/cloud/bigtable/data/_sync_autogen/client.py +1293 -0
- google/cloud/bigtable/data/_sync_autogen/mutations_batcher.py +449 -0
- google/cloud/bigtable/data/exceptions.py +340 -0
- google/cloud/bigtable/data/execute_query/__init__.py +43 -0
- google/cloud/bigtable/data/execute_query/_async/__init__.py +13 -0
- google/cloud/bigtable/data/execute_query/_async/execute_query_iterator.py +291 -0
- google/cloud/bigtable/data/execute_query/_byte_cursor.py +123 -0
- google/cloud/bigtable/data/execute_query/_checksum.py +43 -0
- google/cloud/bigtable/data/execute_query/_parameters_formatting.py +155 -0
- google/cloud/bigtable/data/execute_query/_query_result_parsing_utils.py +134 -0
- google/cloud/bigtable/data/execute_query/_reader.py +122 -0
- google/cloud/bigtable/data/execute_query/_sync_autogen/execute_query_iterator.py +239 -0
- google/cloud/bigtable/data/execute_query/metadata.py +399 -0
- google/cloud/bigtable/data/execute_query/values.py +123 -0
- google/cloud/bigtable/data/mutations.py +380 -0
- google/cloud/bigtable/data/read_modify_write_rules.py +112 -0
- google/cloud/bigtable/data/read_rows_query.py +536 -0
- google/cloud/bigtable/data/row.py +535 -0
- google/cloud/bigtable/data/row_filters.py +968 -0
- google/cloud/bigtable/encryption_info.py +64 -0
- google/cloud/bigtable/enums.py +223 -0
- google/cloud/bigtable/error.py +64 -0
- google/cloud/bigtable/gapic_version.py +16 -0
- google/cloud/bigtable/helpers.py +31 -0
- google/cloud/bigtable/instance.py +789 -0
- google/cloud/bigtable/policy.py +255 -0
- google/cloud/bigtable/row.py +1267 -0
- google/cloud/bigtable/row_data.py +380 -0
- google/cloud/bigtable/row_filters.py +838 -0
- google/cloud/bigtable/row_merger.py +250 -0
- google/cloud/bigtable/row_set.py +213 -0
- google/cloud/bigtable/table.py +1409 -0
- google/cloud/bigtable_admin/__init__.py +410 -0
- google/cloud/bigtable_admin/gapic_version.py +16 -0
- google/cloud/bigtable_admin/py.typed +2 -0
- google/cloud/bigtable_admin_v2/__init__.py +250 -0
- google/cloud/bigtable_admin_v2/gapic_metadata.json +962 -0
- google/cloud/bigtable_admin_v2/gapic_version.py +16 -0
- google/cloud/bigtable_admin_v2/py.typed +2 -0
- google/cloud/bigtable_admin_v2/services/__init__.py +15 -0
- google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/__init__.py +22 -0
- google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/async_client.py +3465 -0
- google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/client.py +3944 -0
- google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/pagers.py +681 -0
- google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/__init__.py +40 -0
- google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/base.py +751 -0
- google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/grpc.py +1249 -0
- google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/grpc_asyncio.py +1579 -0
- google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/rest.py +6820 -0
- google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/rest_base.py +1746 -0
- google/cloud/bigtable_admin_v2/services/bigtable_table_admin/__init__.py +22 -0
- google/cloud/bigtable_admin_v2/services/bigtable_table_admin/async_client.py +3472 -0
- google/cloud/bigtable_admin_v2/services/bigtable_table_admin/client.py +3949 -0
- google/cloud/bigtable_admin_v2/services/bigtable_table_admin/pagers.py +669 -0
- google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/__init__.py +40 -0
- google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/base.py +708 -0
- google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/grpc.py +1257 -0
- google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/grpc_asyncio.py +1549 -0
- google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/rest.py +6609 -0
- google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/rest_base.py +1714 -0
- google/cloud/bigtable_admin_v2/types/__init__.py +248 -0
- google/cloud/bigtable_admin_v2/types/bigtable_instance_admin.py +1364 -0
- google/cloud/bigtable_admin_v2/types/bigtable_table_admin.py +1715 -0
- google/cloud/bigtable_admin_v2/types/common.py +81 -0
- google/cloud/bigtable_admin_v2/types/instance.py +819 -0
- google/cloud/bigtable_admin_v2/types/table.py +1028 -0
- google/cloud/bigtable_admin_v2/types/types.py +776 -0
- google/cloud/bigtable_v2/__init__.py +136 -0
- google/cloud/bigtable_v2/gapic_metadata.json +193 -0
- google/cloud/bigtable_v2/gapic_version.py +16 -0
- google/cloud/bigtable_v2/py.typed +2 -0
- google/cloud/bigtable_v2/services/__init__.py +15 -0
- google/cloud/bigtable_v2/services/bigtable/__init__.py +22 -0
- google/cloud/bigtable_v2/services/bigtable/async_client.py +1741 -0
- google/cloud/bigtable_v2/services/bigtable/client.py +2194 -0
- google/cloud/bigtable_v2/services/bigtable/transports/__init__.py +38 -0
- google/cloud/bigtable_v2/services/bigtable/transports/base.py +343 -0
- google/cloud/bigtable_v2/services/bigtable/transports/grpc.py +660 -0
- google/cloud/bigtable_v2/services/bigtable/transports/grpc_asyncio.py +762 -0
- google/cloud/bigtable_v2/services/bigtable/transports/rest.py +2489 -0
- google/cloud/bigtable_v2/services/bigtable/transports/rest_base.py +711 -0
- google/cloud/bigtable_v2/types/__init__.py +138 -0
- google/cloud/bigtable_v2/types/bigtable.py +1531 -0
- google/cloud/bigtable_v2/types/data.py +1612 -0
- google/cloud/bigtable_v2/types/feature_flags.py +119 -0
- google/cloud/bigtable_v2/types/request_stats.py +171 -0
- google/cloud/bigtable_v2/types/response_params.py +64 -0
- google/cloud/bigtable_v2/types/types.py +579 -0
- google_cloud_bigtable-2.30.0.data/scripts/fixup_bigtable_admin_v2_keywords.py +233 -0
- google_cloud_bigtable-2.30.0.data/scripts/fixup_bigtable_v2_keywords.py +186 -0
- google_cloud_bigtable-2.30.0.dist-info/LICENSE +202 -0
- google_cloud_bigtable-2.30.0.dist-info/METADATA +154 -0
- google_cloud_bigtable-2.30.0.dist-info/RECORD +115 -0
- google_cloud_bigtable-2.30.0.dist-info/WHEEL +5 -0
- google_cloud_bigtable-2.30.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright 2024 Google LLC
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
#
|
|
16
|
+
from .bigtable_instance_admin import (
|
|
17
|
+
CreateAppProfileRequest,
|
|
18
|
+
CreateClusterMetadata,
|
|
19
|
+
CreateClusterRequest,
|
|
20
|
+
CreateInstanceMetadata,
|
|
21
|
+
CreateInstanceRequest,
|
|
22
|
+
CreateLogicalViewMetadata,
|
|
23
|
+
CreateLogicalViewRequest,
|
|
24
|
+
CreateMaterializedViewMetadata,
|
|
25
|
+
CreateMaterializedViewRequest,
|
|
26
|
+
DeleteAppProfileRequest,
|
|
27
|
+
DeleteClusterRequest,
|
|
28
|
+
DeleteInstanceRequest,
|
|
29
|
+
DeleteLogicalViewRequest,
|
|
30
|
+
DeleteMaterializedViewRequest,
|
|
31
|
+
GetAppProfileRequest,
|
|
32
|
+
GetClusterRequest,
|
|
33
|
+
GetInstanceRequest,
|
|
34
|
+
GetLogicalViewRequest,
|
|
35
|
+
GetMaterializedViewRequest,
|
|
36
|
+
ListAppProfilesRequest,
|
|
37
|
+
ListAppProfilesResponse,
|
|
38
|
+
ListClustersRequest,
|
|
39
|
+
ListClustersResponse,
|
|
40
|
+
ListHotTabletsRequest,
|
|
41
|
+
ListHotTabletsResponse,
|
|
42
|
+
ListInstancesRequest,
|
|
43
|
+
ListInstancesResponse,
|
|
44
|
+
ListLogicalViewsRequest,
|
|
45
|
+
ListLogicalViewsResponse,
|
|
46
|
+
ListMaterializedViewsRequest,
|
|
47
|
+
ListMaterializedViewsResponse,
|
|
48
|
+
PartialUpdateClusterMetadata,
|
|
49
|
+
PartialUpdateClusterRequest,
|
|
50
|
+
PartialUpdateInstanceRequest,
|
|
51
|
+
UpdateAppProfileMetadata,
|
|
52
|
+
UpdateAppProfileRequest,
|
|
53
|
+
UpdateClusterMetadata,
|
|
54
|
+
UpdateInstanceMetadata,
|
|
55
|
+
UpdateLogicalViewMetadata,
|
|
56
|
+
UpdateLogicalViewRequest,
|
|
57
|
+
UpdateMaterializedViewMetadata,
|
|
58
|
+
UpdateMaterializedViewRequest,
|
|
59
|
+
)
|
|
60
|
+
from .bigtable_table_admin import (
|
|
61
|
+
CheckConsistencyRequest,
|
|
62
|
+
CheckConsistencyResponse,
|
|
63
|
+
CopyBackupMetadata,
|
|
64
|
+
CopyBackupRequest,
|
|
65
|
+
CreateAuthorizedViewMetadata,
|
|
66
|
+
CreateAuthorizedViewRequest,
|
|
67
|
+
CreateBackupMetadata,
|
|
68
|
+
CreateBackupRequest,
|
|
69
|
+
CreateTableFromSnapshotMetadata,
|
|
70
|
+
CreateTableFromSnapshotRequest,
|
|
71
|
+
CreateTableRequest,
|
|
72
|
+
DataBoostReadLocalWrites,
|
|
73
|
+
DeleteAuthorizedViewRequest,
|
|
74
|
+
DeleteBackupRequest,
|
|
75
|
+
DeleteSnapshotRequest,
|
|
76
|
+
DeleteTableRequest,
|
|
77
|
+
DropRowRangeRequest,
|
|
78
|
+
GenerateConsistencyTokenRequest,
|
|
79
|
+
GenerateConsistencyTokenResponse,
|
|
80
|
+
GetAuthorizedViewRequest,
|
|
81
|
+
GetBackupRequest,
|
|
82
|
+
GetSnapshotRequest,
|
|
83
|
+
GetTableRequest,
|
|
84
|
+
ListAuthorizedViewsRequest,
|
|
85
|
+
ListAuthorizedViewsResponse,
|
|
86
|
+
ListBackupsRequest,
|
|
87
|
+
ListBackupsResponse,
|
|
88
|
+
ListSnapshotsRequest,
|
|
89
|
+
ListSnapshotsResponse,
|
|
90
|
+
ListTablesRequest,
|
|
91
|
+
ListTablesResponse,
|
|
92
|
+
ModifyColumnFamiliesRequest,
|
|
93
|
+
OptimizeRestoredTableMetadata,
|
|
94
|
+
RestoreTableMetadata,
|
|
95
|
+
RestoreTableRequest,
|
|
96
|
+
SnapshotTableMetadata,
|
|
97
|
+
SnapshotTableRequest,
|
|
98
|
+
StandardReadRemoteWrites,
|
|
99
|
+
UndeleteTableMetadata,
|
|
100
|
+
UndeleteTableRequest,
|
|
101
|
+
UpdateAuthorizedViewMetadata,
|
|
102
|
+
UpdateAuthorizedViewRequest,
|
|
103
|
+
UpdateBackupRequest,
|
|
104
|
+
UpdateTableMetadata,
|
|
105
|
+
UpdateTableRequest,
|
|
106
|
+
)
|
|
107
|
+
from .common import (
|
|
108
|
+
OperationProgress,
|
|
109
|
+
StorageType,
|
|
110
|
+
)
|
|
111
|
+
from .instance import (
|
|
112
|
+
AppProfile,
|
|
113
|
+
AutoscalingLimits,
|
|
114
|
+
AutoscalingTargets,
|
|
115
|
+
Cluster,
|
|
116
|
+
HotTablet,
|
|
117
|
+
Instance,
|
|
118
|
+
LogicalView,
|
|
119
|
+
MaterializedView,
|
|
120
|
+
)
|
|
121
|
+
from .table import (
|
|
122
|
+
AuthorizedView,
|
|
123
|
+
Backup,
|
|
124
|
+
BackupInfo,
|
|
125
|
+
ChangeStreamConfig,
|
|
126
|
+
ColumnFamily,
|
|
127
|
+
EncryptionInfo,
|
|
128
|
+
GcRule,
|
|
129
|
+
RestoreInfo,
|
|
130
|
+
Snapshot,
|
|
131
|
+
Table,
|
|
132
|
+
RestoreSourceType,
|
|
133
|
+
)
|
|
134
|
+
from .types import (
|
|
135
|
+
Type,
|
|
136
|
+
)
|
|
137
|
+
|
|
138
|
+
__all__ = (
|
|
139
|
+
"CreateAppProfileRequest",
|
|
140
|
+
"CreateClusterMetadata",
|
|
141
|
+
"CreateClusterRequest",
|
|
142
|
+
"CreateInstanceMetadata",
|
|
143
|
+
"CreateInstanceRequest",
|
|
144
|
+
"CreateLogicalViewMetadata",
|
|
145
|
+
"CreateLogicalViewRequest",
|
|
146
|
+
"CreateMaterializedViewMetadata",
|
|
147
|
+
"CreateMaterializedViewRequest",
|
|
148
|
+
"DeleteAppProfileRequest",
|
|
149
|
+
"DeleteClusterRequest",
|
|
150
|
+
"DeleteInstanceRequest",
|
|
151
|
+
"DeleteLogicalViewRequest",
|
|
152
|
+
"DeleteMaterializedViewRequest",
|
|
153
|
+
"GetAppProfileRequest",
|
|
154
|
+
"GetClusterRequest",
|
|
155
|
+
"GetInstanceRequest",
|
|
156
|
+
"GetLogicalViewRequest",
|
|
157
|
+
"GetMaterializedViewRequest",
|
|
158
|
+
"ListAppProfilesRequest",
|
|
159
|
+
"ListAppProfilesResponse",
|
|
160
|
+
"ListClustersRequest",
|
|
161
|
+
"ListClustersResponse",
|
|
162
|
+
"ListHotTabletsRequest",
|
|
163
|
+
"ListHotTabletsResponse",
|
|
164
|
+
"ListInstancesRequest",
|
|
165
|
+
"ListInstancesResponse",
|
|
166
|
+
"ListLogicalViewsRequest",
|
|
167
|
+
"ListLogicalViewsResponse",
|
|
168
|
+
"ListMaterializedViewsRequest",
|
|
169
|
+
"ListMaterializedViewsResponse",
|
|
170
|
+
"PartialUpdateClusterMetadata",
|
|
171
|
+
"PartialUpdateClusterRequest",
|
|
172
|
+
"PartialUpdateInstanceRequest",
|
|
173
|
+
"UpdateAppProfileMetadata",
|
|
174
|
+
"UpdateAppProfileRequest",
|
|
175
|
+
"UpdateClusterMetadata",
|
|
176
|
+
"UpdateInstanceMetadata",
|
|
177
|
+
"UpdateLogicalViewMetadata",
|
|
178
|
+
"UpdateLogicalViewRequest",
|
|
179
|
+
"UpdateMaterializedViewMetadata",
|
|
180
|
+
"UpdateMaterializedViewRequest",
|
|
181
|
+
"CheckConsistencyRequest",
|
|
182
|
+
"CheckConsistencyResponse",
|
|
183
|
+
"CopyBackupMetadata",
|
|
184
|
+
"CopyBackupRequest",
|
|
185
|
+
"CreateAuthorizedViewMetadata",
|
|
186
|
+
"CreateAuthorizedViewRequest",
|
|
187
|
+
"CreateBackupMetadata",
|
|
188
|
+
"CreateBackupRequest",
|
|
189
|
+
"CreateTableFromSnapshotMetadata",
|
|
190
|
+
"CreateTableFromSnapshotRequest",
|
|
191
|
+
"CreateTableRequest",
|
|
192
|
+
"DataBoostReadLocalWrites",
|
|
193
|
+
"DeleteAuthorizedViewRequest",
|
|
194
|
+
"DeleteBackupRequest",
|
|
195
|
+
"DeleteSnapshotRequest",
|
|
196
|
+
"DeleteTableRequest",
|
|
197
|
+
"DropRowRangeRequest",
|
|
198
|
+
"GenerateConsistencyTokenRequest",
|
|
199
|
+
"GenerateConsistencyTokenResponse",
|
|
200
|
+
"GetAuthorizedViewRequest",
|
|
201
|
+
"GetBackupRequest",
|
|
202
|
+
"GetSnapshotRequest",
|
|
203
|
+
"GetTableRequest",
|
|
204
|
+
"ListAuthorizedViewsRequest",
|
|
205
|
+
"ListAuthorizedViewsResponse",
|
|
206
|
+
"ListBackupsRequest",
|
|
207
|
+
"ListBackupsResponse",
|
|
208
|
+
"ListSnapshotsRequest",
|
|
209
|
+
"ListSnapshotsResponse",
|
|
210
|
+
"ListTablesRequest",
|
|
211
|
+
"ListTablesResponse",
|
|
212
|
+
"ModifyColumnFamiliesRequest",
|
|
213
|
+
"OptimizeRestoredTableMetadata",
|
|
214
|
+
"RestoreTableMetadata",
|
|
215
|
+
"RestoreTableRequest",
|
|
216
|
+
"SnapshotTableMetadata",
|
|
217
|
+
"SnapshotTableRequest",
|
|
218
|
+
"StandardReadRemoteWrites",
|
|
219
|
+
"UndeleteTableMetadata",
|
|
220
|
+
"UndeleteTableRequest",
|
|
221
|
+
"UpdateAuthorizedViewMetadata",
|
|
222
|
+
"UpdateAuthorizedViewRequest",
|
|
223
|
+
"UpdateBackupRequest",
|
|
224
|
+
"UpdateTableMetadata",
|
|
225
|
+
"UpdateTableRequest",
|
|
226
|
+
"OperationProgress",
|
|
227
|
+
"StorageType",
|
|
228
|
+
"AppProfile",
|
|
229
|
+
"AutoscalingLimits",
|
|
230
|
+
"AutoscalingTargets",
|
|
231
|
+
"Cluster",
|
|
232
|
+
"HotTablet",
|
|
233
|
+
"Instance",
|
|
234
|
+
"LogicalView",
|
|
235
|
+
"MaterializedView",
|
|
236
|
+
"AuthorizedView",
|
|
237
|
+
"Backup",
|
|
238
|
+
"BackupInfo",
|
|
239
|
+
"ChangeStreamConfig",
|
|
240
|
+
"ColumnFamily",
|
|
241
|
+
"EncryptionInfo",
|
|
242
|
+
"GcRule",
|
|
243
|
+
"RestoreInfo",
|
|
244
|
+
"Snapshot",
|
|
245
|
+
"Table",
|
|
246
|
+
"RestoreSourceType",
|
|
247
|
+
"Type",
|
|
248
|
+
)
|