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,138 @@
|
|
|
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 import (
|
|
17
|
+
CheckAndMutateRowRequest,
|
|
18
|
+
CheckAndMutateRowResponse,
|
|
19
|
+
ExecuteQueryRequest,
|
|
20
|
+
ExecuteQueryResponse,
|
|
21
|
+
GenerateInitialChangeStreamPartitionsRequest,
|
|
22
|
+
GenerateInitialChangeStreamPartitionsResponse,
|
|
23
|
+
MutateRowRequest,
|
|
24
|
+
MutateRowResponse,
|
|
25
|
+
MutateRowsRequest,
|
|
26
|
+
MutateRowsResponse,
|
|
27
|
+
PingAndWarmRequest,
|
|
28
|
+
PingAndWarmResponse,
|
|
29
|
+
PrepareQueryRequest,
|
|
30
|
+
PrepareQueryResponse,
|
|
31
|
+
RateLimitInfo,
|
|
32
|
+
ReadChangeStreamRequest,
|
|
33
|
+
ReadChangeStreamResponse,
|
|
34
|
+
ReadModifyWriteRowRequest,
|
|
35
|
+
ReadModifyWriteRowResponse,
|
|
36
|
+
ReadRowsRequest,
|
|
37
|
+
ReadRowsResponse,
|
|
38
|
+
SampleRowKeysRequest,
|
|
39
|
+
SampleRowKeysResponse,
|
|
40
|
+
)
|
|
41
|
+
from .data import (
|
|
42
|
+
ArrayValue,
|
|
43
|
+
Cell,
|
|
44
|
+
Column,
|
|
45
|
+
ColumnMetadata,
|
|
46
|
+
ColumnRange,
|
|
47
|
+
Family,
|
|
48
|
+
Mutation,
|
|
49
|
+
PartialResultSet,
|
|
50
|
+
ProtoFormat,
|
|
51
|
+
ProtoRows,
|
|
52
|
+
ProtoRowsBatch,
|
|
53
|
+
ProtoSchema,
|
|
54
|
+
ReadModifyWriteRule,
|
|
55
|
+
ResultSetMetadata,
|
|
56
|
+
Row,
|
|
57
|
+
RowFilter,
|
|
58
|
+
RowRange,
|
|
59
|
+
RowSet,
|
|
60
|
+
StreamContinuationToken,
|
|
61
|
+
StreamContinuationTokens,
|
|
62
|
+
StreamPartition,
|
|
63
|
+
TimestampRange,
|
|
64
|
+
Value,
|
|
65
|
+
ValueRange,
|
|
66
|
+
)
|
|
67
|
+
from .feature_flags import (
|
|
68
|
+
FeatureFlags,
|
|
69
|
+
)
|
|
70
|
+
from .request_stats import (
|
|
71
|
+
FullReadStatsView,
|
|
72
|
+
ReadIterationStats,
|
|
73
|
+
RequestLatencyStats,
|
|
74
|
+
RequestStats,
|
|
75
|
+
)
|
|
76
|
+
from .response_params import (
|
|
77
|
+
ResponseParams,
|
|
78
|
+
)
|
|
79
|
+
from .types import (
|
|
80
|
+
Type,
|
|
81
|
+
)
|
|
82
|
+
|
|
83
|
+
__all__ = (
|
|
84
|
+
"CheckAndMutateRowRequest",
|
|
85
|
+
"CheckAndMutateRowResponse",
|
|
86
|
+
"ExecuteQueryRequest",
|
|
87
|
+
"ExecuteQueryResponse",
|
|
88
|
+
"GenerateInitialChangeStreamPartitionsRequest",
|
|
89
|
+
"GenerateInitialChangeStreamPartitionsResponse",
|
|
90
|
+
"MutateRowRequest",
|
|
91
|
+
"MutateRowResponse",
|
|
92
|
+
"MutateRowsRequest",
|
|
93
|
+
"MutateRowsResponse",
|
|
94
|
+
"PingAndWarmRequest",
|
|
95
|
+
"PingAndWarmResponse",
|
|
96
|
+
"PrepareQueryRequest",
|
|
97
|
+
"PrepareQueryResponse",
|
|
98
|
+
"RateLimitInfo",
|
|
99
|
+
"ReadChangeStreamRequest",
|
|
100
|
+
"ReadChangeStreamResponse",
|
|
101
|
+
"ReadModifyWriteRowRequest",
|
|
102
|
+
"ReadModifyWriteRowResponse",
|
|
103
|
+
"ReadRowsRequest",
|
|
104
|
+
"ReadRowsResponse",
|
|
105
|
+
"SampleRowKeysRequest",
|
|
106
|
+
"SampleRowKeysResponse",
|
|
107
|
+
"ArrayValue",
|
|
108
|
+
"Cell",
|
|
109
|
+
"Column",
|
|
110
|
+
"ColumnMetadata",
|
|
111
|
+
"ColumnRange",
|
|
112
|
+
"Family",
|
|
113
|
+
"Mutation",
|
|
114
|
+
"PartialResultSet",
|
|
115
|
+
"ProtoFormat",
|
|
116
|
+
"ProtoRows",
|
|
117
|
+
"ProtoRowsBatch",
|
|
118
|
+
"ProtoSchema",
|
|
119
|
+
"ReadModifyWriteRule",
|
|
120
|
+
"ResultSetMetadata",
|
|
121
|
+
"Row",
|
|
122
|
+
"RowFilter",
|
|
123
|
+
"RowRange",
|
|
124
|
+
"RowSet",
|
|
125
|
+
"StreamContinuationToken",
|
|
126
|
+
"StreamContinuationTokens",
|
|
127
|
+
"StreamPartition",
|
|
128
|
+
"TimestampRange",
|
|
129
|
+
"Value",
|
|
130
|
+
"ValueRange",
|
|
131
|
+
"FeatureFlags",
|
|
132
|
+
"FullReadStatsView",
|
|
133
|
+
"ReadIterationStats",
|
|
134
|
+
"RequestLatencyStats",
|
|
135
|
+
"RequestStats",
|
|
136
|
+
"ResponseParams",
|
|
137
|
+
"Type",
|
|
138
|
+
)
|