pulumi-gcp 8.35.0a1750229953__py3-none-any.whl → 8.36.0a1750252522__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.
- pulumi_gcp/__init__.py +8 -0
- pulumi_gcp/bigquery/app_profile.py +16 -8
- pulumi_gcp/bigtable/__init__.py +1 -0
- pulumi_gcp/bigtable/_inputs.py +128 -0
- pulumi_gcp/bigtable/app_profile.py +1065 -0
- pulumi_gcp/bigtable/outputs.py +111 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- {pulumi_gcp-8.35.0a1750229953.dist-info → pulumi_gcp-8.36.0a1750252522.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.35.0a1750229953.dist-info → pulumi_gcp-8.36.0a1750252522.dist-info}/RECORD +11 -10
- {pulumi_gcp-8.35.0a1750229953.dist-info → pulumi_gcp-8.36.0a1750252522.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.35.0a1750229953.dist-info → pulumi_gcp-8.36.0a1750252522.dist-info}/top_level.txt +0 -0
pulumi_gcp/bigtable/outputs.py
CHANGED
@@ -17,6 +17,9 @@ from .. import _utilities
|
|
17
17
|
from . import outputs
|
18
18
|
|
19
19
|
__all__ = [
|
20
|
+
'AppProfileDataBoostIsolationReadOnly',
|
21
|
+
'AppProfileSingleClusterRouting',
|
22
|
+
'AppProfileStandardIsolation',
|
20
23
|
'AuthorizedViewSubsetView',
|
21
24
|
'AuthorizedViewSubsetViewFamilySubset',
|
22
25
|
'GCPolicyMaxAge',
|
@@ -31,6 +34,114 @@ __all__ = [
|
|
31
34
|
'TableIamMemberCondition',
|
32
35
|
]
|
33
36
|
|
37
|
+
@pulumi.output_type
|
38
|
+
class AppProfileDataBoostIsolationReadOnly(dict):
|
39
|
+
@staticmethod
|
40
|
+
def __key_warning(key: str):
|
41
|
+
suggest = None
|
42
|
+
if key == "computeBillingOwner":
|
43
|
+
suggest = "compute_billing_owner"
|
44
|
+
|
45
|
+
if suggest:
|
46
|
+
pulumi.log.warn(f"Key '{key}' not found in AppProfileDataBoostIsolationReadOnly. Access the value via the '{suggest}' property getter instead.")
|
47
|
+
|
48
|
+
def __getitem__(self, key: str) -> Any:
|
49
|
+
AppProfileDataBoostIsolationReadOnly.__key_warning(key)
|
50
|
+
return super().__getitem__(key)
|
51
|
+
|
52
|
+
def get(self, key: str, default = None) -> Any:
|
53
|
+
AppProfileDataBoostIsolationReadOnly.__key_warning(key)
|
54
|
+
return super().get(key, default)
|
55
|
+
|
56
|
+
def __init__(__self__, *,
|
57
|
+
compute_billing_owner: builtins.str):
|
58
|
+
"""
|
59
|
+
:param builtins.str compute_billing_owner: The Compute Billing Owner for this Data Boost App Profile.
|
60
|
+
Possible values are: `HOST_PAYS`.
|
61
|
+
"""
|
62
|
+
pulumi.set(__self__, "compute_billing_owner", compute_billing_owner)
|
63
|
+
|
64
|
+
@property
|
65
|
+
@pulumi.getter(name="computeBillingOwner")
|
66
|
+
def compute_billing_owner(self) -> builtins.str:
|
67
|
+
"""
|
68
|
+
The Compute Billing Owner for this Data Boost App Profile.
|
69
|
+
Possible values are: `HOST_PAYS`.
|
70
|
+
"""
|
71
|
+
return pulumi.get(self, "compute_billing_owner")
|
72
|
+
|
73
|
+
|
74
|
+
@pulumi.output_type
|
75
|
+
class AppProfileSingleClusterRouting(dict):
|
76
|
+
@staticmethod
|
77
|
+
def __key_warning(key: str):
|
78
|
+
suggest = None
|
79
|
+
if key == "clusterId":
|
80
|
+
suggest = "cluster_id"
|
81
|
+
elif key == "allowTransactionalWrites":
|
82
|
+
suggest = "allow_transactional_writes"
|
83
|
+
|
84
|
+
if suggest:
|
85
|
+
pulumi.log.warn(f"Key '{key}' not found in AppProfileSingleClusterRouting. Access the value via the '{suggest}' property getter instead.")
|
86
|
+
|
87
|
+
def __getitem__(self, key: str) -> Any:
|
88
|
+
AppProfileSingleClusterRouting.__key_warning(key)
|
89
|
+
return super().__getitem__(key)
|
90
|
+
|
91
|
+
def get(self, key: str, default = None) -> Any:
|
92
|
+
AppProfileSingleClusterRouting.__key_warning(key)
|
93
|
+
return super().get(key, default)
|
94
|
+
|
95
|
+
def __init__(__self__, *,
|
96
|
+
cluster_id: builtins.str,
|
97
|
+
allow_transactional_writes: Optional[builtins.bool] = None):
|
98
|
+
"""
|
99
|
+
:param builtins.str cluster_id: The cluster to which read/write requests should be routed.
|
100
|
+
:param builtins.bool allow_transactional_writes: If true, CheckAndMutateRow and ReadModifyWriteRow requests are allowed by this app profile.
|
101
|
+
It is unsafe to send these requests to the same table/row/column in multiple clusters.
|
102
|
+
"""
|
103
|
+
pulumi.set(__self__, "cluster_id", cluster_id)
|
104
|
+
if allow_transactional_writes is not None:
|
105
|
+
pulumi.set(__self__, "allow_transactional_writes", allow_transactional_writes)
|
106
|
+
|
107
|
+
@property
|
108
|
+
@pulumi.getter(name="clusterId")
|
109
|
+
def cluster_id(self) -> builtins.str:
|
110
|
+
"""
|
111
|
+
The cluster to which read/write requests should be routed.
|
112
|
+
"""
|
113
|
+
return pulumi.get(self, "cluster_id")
|
114
|
+
|
115
|
+
@property
|
116
|
+
@pulumi.getter(name="allowTransactionalWrites")
|
117
|
+
def allow_transactional_writes(self) -> Optional[builtins.bool]:
|
118
|
+
"""
|
119
|
+
If true, CheckAndMutateRow and ReadModifyWriteRow requests are allowed by this app profile.
|
120
|
+
It is unsafe to send these requests to the same table/row/column in multiple clusters.
|
121
|
+
"""
|
122
|
+
return pulumi.get(self, "allow_transactional_writes")
|
123
|
+
|
124
|
+
|
125
|
+
@pulumi.output_type
|
126
|
+
class AppProfileStandardIsolation(dict):
|
127
|
+
def __init__(__self__, *,
|
128
|
+
priority: builtins.str):
|
129
|
+
"""
|
130
|
+
:param builtins.str priority: The priority of requests sent using this app profile.
|
131
|
+
Possible values are: `PRIORITY_LOW`, `PRIORITY_MEDIUM`, `PRIORITY_HIGH`.
|
132
|
+
"""
|
133
|
+
pulumi.set(__self__, "priority", priority)
|
134
|
+
|
135
|
+
@property
|
136
|
+
@pulumi.getter
|
137
|
+
def priority(self) -> builtins.str:
|
138
|
+
"""
|
139
|
+
The priority of requests sent using this app profile.
|
140
|
+
Possible values are: `PRIORITY_LOW`, `PRIORITY_MEDIUM`, `PRIORITY_HIGH`.
|
141
|
+
"""
|
142
|
+
return pulumi.get(self, "priority")
|
143
|
+
|
144
|
+
|
34
145
|
@pulumi.output_type
|
35
146
|
class AuthorizedViewSubsetView(dict):
|
36
147
|
@staticmethod
|
pulumi_gcp/pulumi-plugin.json
CHANGED
@@ -1,8 +1,8 @@
|
|
1
|
-
pulumi_gcp/__init__.py,sha256=
|
1
|
+
pulumi_gcp/__init__.py,sha256=6ryf9uZSmdlKM-qU8kpFlWP1_q0r8AGUo7kgjgjYC78,245795
|
2
2
|
pulumi_gcp/_inputs.py,sha256=1zBQiFyh2J1Ih2HeWGtJ55mdMGr3FNWiOrJEiXkQjjg,3716
|
3
3
|
pulumi_gcp/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
4
4
|
pulumi_gcp/provider.py,sha256=37qnG7vt2IeO8pQG2e3P2PrzKV9ef3FOOcazOuLGZH0,225501
|
5
|
-
pulumi_gcp/pulumi-plugin.json,sha256=
|
5
|
+
pulumi_gcp/pulumi-plugin.json,sha256=33INbuwXJ-3DF3gjf2qUgJF2g5CFxIszbWdsl-xAym0,80
|
6
6
|
pulumi_gcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
7
|
pulumi_gcp/accessapproval/__init__.py,sha256=R02HjvIykSBvjB8Iwj1SS92u45fQHukh8taPt7jY_PY,400
|
8
8
|
pulumi_gcp/accessapproval/get_folder_service_account.py,sha256=HaTN5bVtzQr2zGJBVzsM4XGBTgO29_gHe9Ys1lQ0vWw,6392
|
@@ -196,7 +196,7 @@ pulumi_gcp/biglake/outputs.py,sha256=4mLAH5D-xgGH5FzzcaHiCyqx_4yTgVToMehctYyzP2E
|
|
196
196
|
pulumi_gcp/biglake/table.py,sha256=aAIZ8K545U3lUrGHr2ygQTvIzgZq66N-NmHIOnZprTg,30642
|
197
197
|
pulumi_gcp/bigquery/__init__.py,sha256=djE1b6EIMe2VOsrF_d1c8Ab1WX4UGELWX-s4UeIgAYg,1238
|
198
198
|
pulumi_gcp/bigquery/_inputs.py,sha256=QK66UZcNG9u49wOHSLTn5lBe8MBGK3aQ-uq_6KPk6Xk,402992
|
199
|
-
pulumi_gcp/bigquery/app_profile.py,sha256=
|
199
|
+
pulumi_gcp/bigquery/app_profile.py,sha256=NO_pbB-9dN7j83lcGthS50qUyQ7fPIYH7idYXoSavpM,53655
|
200
200
|
pulumi_gcp/bigquery/bi_reservation.py,sha256=UGDkH7v4JBnvabJWa8_w_HXw0k_dQutZSCDiNthty-w,19648
|
201
201
|
pulumi_gcp/bigquery/capacity_commitment.py,sha256=bZ4Oiji-bX1qVRHqosuzDoYnDCu7Uqb2XdPB3eC45MA,36957
|
202
202
|
pulumi_gcp/bigquery/connection.py,sha256=pDq602quZMBOAORGQym6QNCelUotaaJnQKXx_LUJfXk,57578
|
@@ -249,8 +249,9 @@ pulumi_gcp/bigquerydatapolicy/data_policy_iam_member.py,sha256=ImRq3C8pc8ez-CHIZ
|
|
249
249
|
pulumi_gcp/bigquerydatapolicy/data_policy_iam_policy.py,sha256=hQIO2rJdrbcqf64Sjh1tsbIgynooWttJ0-yZDXu7mc4,32261
|
250
250
|
pulumi_gcp/bigquerydatapolicy/get_iam_policy.py,sha256=LhNglCLsXivl0-g53P5RJYW27KXVoTmmOaiMmsWrg-s,7840
|
251
251
|
pulumi_gcp/bigquerydatapolicy/outputs.py,sha256=Ak404GP3CKNfxRAl3zWB-cFiRhqiKBfsPvMoFlWYuRo,4692
|
252
|
-
pulumi_gcp/bigtable/__init__.py,sha256=
|
253
|
-
pulumi_gcp/bigtable/_inputs.py,sha256=
|
252
|
+
pulumi_gcp/bigtable/__init__.py,sha256=rHndYxCFQxySjmAhl2FF89lKWmW3ONNra1ntAXZHWcw,779
|
253
|
+
pulumi_gcp/bigtable/_inputs.py,sha256=pKPzlWliv6fw69by3uqPcKSmruI3WKSXdL-mSt9N9aQ,46665
|
254
|
+
pulumi_gcp/bigtable/app_profile.py,sha256=3AZ2fbAp0IVXF-SC7AK48W1aEiYVXrMaZTnIYW-CZEA,53203
|
254
255
|
pulumi_gcp/bigtable/authorized_view.py,sha256=86BGoOyloSWLPmLXPGIObaZZPD_sNT2PZCDWUF_hRj0,23739
|
255
256
|
pulumi_gcp/bigtable/gc_policy.py,sha256=mQD13XrYmonGyn3avw6yFsHCGTi1gd8wxuyt1VO305U,38755
|
256
257
|
pulumi_gcp/bigtable/get_instance_iam_policy.py,sha256=V03PMy3DfeV0WbaNDAvyGusNqyTbCgOgGcb1mVi5I-U,5558
|
@@ -261,7 +262,7 @@ pulumi_gcp/bigtable/instance_iam_member.py,sha256=ERmhBnJHeWnMlEO0vAcYjiW4pNeX-y
|
|
261
262
|
pulumi_gcp/bigtable/instance_iam_policy.py,sha256=GB51QsAmgjaYuR9I6M1ud0lDgJElNZzX-XQ6LRIYmRk,18815
|
262
263
|
pulumi_gcp/bigtable/logical_view.py,sha256=l0mhHTyIQZ3wDy7itTSOVa9HsAp-nqcnUWaiTfOAcMw,21024
|
263
264
|
pulumi_gcp/bigtable/materialized_view.py,sha256=WVG-RpUyT20LUOtBk6_8GPAUAtejMJlgSq2i15CI8qA,21842
|
264
|
-
pulumi_gcp/bigtable/outputs.py,sha256=
|
265
|
+
pulumi_gcp/bigtable/outputs.py,sha256=Ur5-rgKEHTs08wm_x7X6JfZRhMa4axhe7NvGOZ_xYPE,32473
|
265
266
|
pulumi_gcp/bigtable/table.py,sha256=tV8aqfnHDuvH9Loetgw0YeKf3YC5Kg48wIw5Lu9vMLI,38416
|
266
267
|
pulumi_gcp/bigtable/table_iam_binding.py,sha256=oIVKeUXKJBLVkHEsJhjMHh12yTUXTX6Eh06ytthU3zA,35434
|
267
268
|
pulumi_gcp/bigtable/table_iam_member.py,sha256=Df_Dc0Mgn4EvQ1g-CwcpA5yorFdIQzjP26tRLaWIOwE,35041
|
@@ -1955,7 +1956,7 @@ pulumi_gcp/workstations/workstation_config_iam_policy.py,sha256=qvpDbPDV-x4Zcn3m
|
|
1955
1956
|
pulumi_gcp/workstations/workstation_iam_binding.py,sha256=cWV5yE3_SsZYOzH4txZQKbmDAE327h6CghgkPo1WW64,41788
|
1956
1957
|
pulumi_gcp/workstations/workstation_iam_member.py,sha256=tKWTWI_EfPhhJwZ-9eIses677Z2lWb9RUnMhmiN2syo,41387
|
1957
1958
|
pulumi_gcp/workstations/workstation_iam_policy.py,sha256=CZO_QyZdQhmGUSoLZN7gXVIu1o3h1UZ-KJvYCGNOrYk,27895
|
1958
|
-
pulumi_gcp-8.
|
1959
|
-
pulumi_gcp-8.
|
1960
|
-
pulumi_gcp-8.
|
1961
|
-
pulumi_gcp-8.
|
1959
|
+
pulumi_gcp-8.36.0a1750252522.dist-info/METADATA,sha256=C8Oyr1Ev0nxBCEE4866WNFQNmbJBZupk_YbL9jmrMS0,2728
|
1960
|
+
pulumi_gcp-8.36.0a1750252522.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
1961
|
+
pulumi_gcp-8.36.0a1750252522.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
|
1962
|
+
pulumi_gcp-8.36.0a1750252522.dist-info/RECORD,,
|
File without changes
|
{pulumi_gcp-8.35.0a1750229953.dist-info → pulumi_gcp-8.36.0a1750252522.dist-info}/top_level.txt
RENAMED
File without changes
|