pulumi-gcp 7.34.0a1722421695__py3-none-any.whl → 7.34.0a1722604983__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.
Potentially problematic release.
This version of pulumi-gcp might be problematic. Click here for more details.
- pulumi_gcp/__init__.py +40 -0
- pulumi_gcp/alloydb/_inputs.py +174 -0
- pulumi_gcp/alloydb/instance.py +54 -0
- pulumi_gcp/alloydb/outputs.py +133 -0
- pulumi_gcp/apigee/__init__.py +2 -0
- pulumi_gcp/apigee/environment_keyvaluemaps.py +370 -0
- pulumi_gcp/apigee/environment_keyvaluemaps_entries.py +440 -0
- pulumi_gcp/apigee/instance.py +2 -2
- pulumi_gcp/apigee/nat_address.py +2 -2
- pulumi_gcp/apigee/organization.py +4 -4
- pulumi_gcp/apphub/service_project_attachment.py +11 -11
- pulumi_gcp/bigquery/_inputs.py +36 -0
- pulumi_gcp/bigquery/app_profile.py +54 -0
- pulumi_gcp/bigquery/outputs.py +38 -0
- pulumi_gcp/bigquery/reservation.py +34 -4
- pulumi_gcp/bigquery/table.py +65 -21
- pulumi_gcp/bigtable/table.py +27 -26
- pulumi_gcp/certificateauthority/authority.py +4 -4
- pulumi_gcp/cloudfunctions/function.py +47 -0
- pulumi_gcp/cloudfunctions/get_function.py +11 -1
- pulumi_gcp/cloudfunctionsv2/function.py +2 -2
- pulumi_gcp/cloudrun/_inputs.py +24 -21
- pulumi_gcp/cloudrun/outputs.py +20 -24
- pulumi_gcp/cloudrunv2/_inputs.py +3 -0
- pulumi_gcp/cloudrunv2/outputs.py +4 -0
- pulumi_gcp/compute/__init__.py +2 -0
- pulumi_gcp/compute/_inputs.py +2334 -329
- pulumi_gcp/compute/backend_service.py +6 -0
- pulumi_gcp/compute/outputs.py +1466 -7
- pulumi_gcp/compute/public_advertised_prefix.py +30 -2
- pulumi_gcp/compute/resize_request.py +782 -0
- pulumi_gcp/compute/router_peer.py +437 -0
- pulumi_gcp/compute/router_route_policy.py +616 -0
- pulumi_gcp/compute/service_attachment.py +7 -14
- pulumi_gcp/container/_inputs.py +215 -18
- pulumi_gcp/container/node_pool.py +0 -14
- pulumi_gcp/container/outputs.py +226 -12
- pulumi_gcp/databasemigrationservice/private_connection.py +10 -6
- pulumi_gcp/dataloss/_inputs.py +707 -21
- pulumi_gcp/dataloss/outputs.py +588 -14
- pulumi_gcp/datastore/data_store_index.py +24 -12
- pulumi_gcp/datastream/_inputs.py +83 -3
- pulumi_gcp/datastream/outputs.py +51 -3
- pulumi_gcp/datastream/stream.py +170 -0
- pulumi_gcp/firebase/database_instance.py +8 -8
- pulumi_gcp/firebase/hosting_site.py +8 -8
- pulumi_gcp/firestore/index.py +10 -10
- pulumi_gcp/gkeonprem/_inputs.py +78 -78
- pulumi_gcp/gkeonprem/outputs.py +52 -52
- pulumi_gcp/iap/client.py +4 -4
- pulumi_gcp/integrationconnectors/_inputs.py +30 -30
- pulumi_gcp/integrationconnectors/outputs.py +20 -20
- pulumi_gcp/netapp/volume.py +1 -1
- pulumi_gcp/networkconnectivity/_inputs.py +3 -6
- pulumi_gcp/networkconnectivity/hub.py +60 -49
- pulumi_gcp/networkconnectivity/outputs.py +2 -4
- pulumi_gcp/networkconnectivity/spoke.py +159 -104
- pulumi_gcp/networksecurity/tls_inspection_policy.py +2 -2
- pulumi_gcp/orgpolicy/policy.py +4 -4
- pulumi_gcp/projects/get_project_service.py +11 -1
- pulumi_gcp/projects/service.py +68 -0
- pulumi_gcp/projects/service_identity.py +30 -2
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securesourcemanager/instance.py +528 -4
- pulumi_gcp/securitycenter/__init__.py +1 -0
- pulumi_gcp/securitycenter/v2_organization_mute_config.py +673 -0
- pulumi_gcp/sql/database_instance.py +2 -2
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vmwareengine/get_private_cloud.py +21 -1
- pulumi_gcp/vmwareengine/private_cloud.py +121 -2
- pulumi_gcp/workbench/_inputs.py +77 -0
- pulumi_gcp/workbench/instance.py +18 -4
- pulumi_gcp/workbench/outputs.py +67 -1
- {pulumi_gcp-7.34.0a1722421695.dist-info → pulumi_gcp-7.34.0a1722604983.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.34.0a1722421695.dist-info → pulumi_gcp-7.34.0a1722604983.dist-info}/RECORD +78 -73
- {pulumi_gcp-7.34.0a1722421695.dist-info → pulumi_gcp-7.34.0a1722604983.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.34.0a1722421695.dist-info → pulumi_gcp-7.34.0a1722604983.dist-info}/top_level.txt +0 -0
@@ -22,6 +22,7 @@ __all__ = ['AppProfileArgs', 'AppProfile']
|
|
22
22
|
class AppProfileArgs:
|
23
23
|
def __init__(__self__, *,
|
24
24
|
app_profile_id: pulumi.Input[str],
|
25
|
+
data_boost_isolation_read_only: Optional[pulumi.Input['AppProfileDataBoostIsolationReadOnlyArgs']] = None,
|
25
26
|
description: Optional[pulumi.Input[str]] = None,
|
26
27
|
ignore_warnings: Optional[pulumi.Input[bool]] = None,
|
27
28
|
instance: Optional[pulumi.Input[str]] = None,
|
@@ -36,6 +37,8 @@ class AppProfileArgs:
|
|
36
37
|
|
37
38
|
|
38
39
|
- - -
|
40
|
+
:param pulumi.Input['AppProfileDataBoostIsolationReadOnlyArgs'] data_boost_isolation_read_only: Specifies that this app profile is intended for read-only usage via the Data Boost feature.
|
41
|
+
Structure is documented below.
|
39
42
|
:param pulumi.Input[str] description: Long form description of the use case for this app profile.
|
40
43
|
:param pulumi.Input[bool] ignore_warnings: If true, ignore safety checks when deleting/updating the app profile.
|
41
44
|
:param pulumi.Input[str] instance: The name of the instance to create the app profile within.
|
@@ -52,6 +55,8 @@ class AppProfileArgs:
|
|
52
55
|
Structure is documented below.
|
53
56
|
"""
|
54
57
|
pulumi.set(__self__, "app_profile_id", app_profile_id)
|
58
|
+
if data_boost_isolation_read_only is not None:
|
59
|
+
pulumi.set(__self__, "data_boost_isolation_read_only", data_boost_isolation_read_only)
|
55
60
|
if description is not None:
|
56
61
|
pulumi.set(__self__, "description", description)
|
57
62
|
if ignore_warnings is not None:
|
@@ -84,6 +89,19 @@ class AppProfileArgs:
|
|
84
89
|
def app_profile_id(self, value: pulumi.Input[str]):
|
85
90
|
pulumi.set(self, "app_profile_id", value)
|
86
91
|
|
92
|
+
@property
|
93
|
+
@pulumi.getter(name="dataBoostIsolationReadOnly")
|
94
|
+
def data_boost_isolation_read_only(self) -> Optional[pulumi.Input['AppProfileDataBoostIsolationReadOnlyArgs']]:
|
95
|
+
"""
|
96
|
+
Specifies that this app profile is intended for read-only usage via the Data Boost feature.
|
97
|
+
Structure is documented below.
|
98
|
+
"""
|
99
|
+
return pulumi.get(self, "data_boost_isolation_read_only")
|
100
|
+
|
101
|
+
@data_boost_isolation_read_only.setter
|
102
|
+
def data_boost_isolation_read_only(self, value: Optional[pulumi.Input['AppProfileDataBoostIsolationReadOnlyArgs']]):
|
103
|
+
pulumi.set(self, "data_boost_isolation_read_only", value)
|
104
|
+
|
87
105
|
@property
|
88
106
|
@pulumi.getter
|
89
107
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -191,6 +209,7 @@ class AppProfileArgs:
|
|
191
209
|
class _AppProfileState:
|
192
210
|
def __init__(__self__, *,
|
193
211
|
app_profile_id: Optional[pulumi.Input[str]] = None,
|
212
|
+
data_boost_isolation_read_only: Optional[pulumi.Input['AppProfileDataBoostIsolationReadOnlyArgs']] = None,
|
194
213
|
description: Optional[pulumi.Input[str]] = None,
|
195
214
|
ignore_warnings: Optional[pulumi.Input[bool]] = None,
|
196
215
|
instance: Optional[pulumi.Input[str]] = None,
|
@@ -206,6 +225,8 @@ class _AppProfileState:
|
|
206
225
|
|
207
226
|
|
208
227
|
- - -
|
228
|
+
:param pulumi.Input['AppProfileDataBoostIsolationReadOnlyArgs'] data_boost_isolation_read_only: Specifies that this app profile is intended for read-only usage via the Data Boost feature.
|
229
|
+
Structure is documented below.
|
209
230
|
:param pulumi.Input[str] description: Long form description of the use case for this app profile.
|
210
231
|
:param pulumi.Input[bool] ignore_warnings: If true, ignore safety checks when deleting/updating the app profile.
|
211
232
|
:param pulumi.Input[str] instance: The name of the instance to create the app profile within.
|
@@ -224,6 +245,8 @@ class _AppProfileState:
|
|
224
245
|
"""
|
225
246
|
if app_profile_id is not None:
|
226
247
|
pulumi.set(__self__, "app_profile_id", app_profile_id)
|
248
|
+
if data_boost_isolation_read_only is not None:
|
249
|
+
pulumi.set(__self__, "data_boost_isolation_read_only", data_boost_isolation_read_only)
|
227
250
|
if description is not None:
|
228
251
|
pulumi.set(__self__, "description", description)
|
229
252
|
if ignore_warnings is not None:
|
@@ -258,6 +281,19 @@ class _AppProfileState:
|
|
258
281
|
def app_profile_id(self, value: Optional[pulumi.Input[str]]):
|
259
282
|
pulumi.set(self, "app_profile_id", value)
|
260
283
|
|
284
|
+
@property
|
285
|
+
@pulumi.getter(name="dataBoostIsolationReadOnly")
|
286
|
+
def data_boost_isolation_read_only(self) -> Optional[pulumi.Input['AppProfileDataBoostIsolationReadOnlyArgs']]:
|
287
|
+
"""
|
288
|
+
Specifies that this app profile is intended for read-only usage via the Data Boost feature.
|
289
|
+
Structure is documented below.
|
290
|
+
"""
|
291
|
+
return pulumi.get(self, "data_boost_isolation_read_only")
|
292
|
+
|
293
|
+
@data_boost_isolation_read_only.setter
|
294
|
+
def data_boost_isolation_read_only(self, value: Optional[pulumi.Input['AppProfileDataBoostIsolationReadOnlyArgs']]):
|
295
|
+
pulumi.set(self, "data_boost_isolation_read_only", value)
|
296
|
+
|
261
297
|
@property
|
262
298
|
@pulumi.getter
|
263
299
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -379,6 +415,7 @@ class AppProfile(pulumi.CustomResource):
|
|
379
415
|
resource_name: str,
|
380
416
|
opts: Optional[pulumi.ResourceOptions] = None,
|
381
417
|
app_profile_id: Optional[pulumi.Input[str]] = None,
|
418
|
+
data_boost_isolation_read_only: Optional[pulumi.Input[Union['AppProfileDataBoostIsolationReadOnlyArgs', 'AppProfileDataBoostIsolationReadOnlyArgsDict']]] = None,
|
382
419
|
description: Optional[pulumi.Input[str]] = None,
|
383
420
|
ignore_warnings: Optional[pulumi.Input[bool]] = None,
|
384
421
|
instance: Optional[pulumi.Input[str]] = None,
|
@@ -553,6 +590,8 @@ class AppProfile(pulumi.CustomResource):
|
|
553
590
|
|
554
591
|
|
555
592
|
- - -
|
593
|
+
:param pulumi.Input[Union['AppProfileDataBoostIsolationReadOnlyArgs', 'AppProfileDataBoostIsolationReadOnlyArgsDict']] data_boost_isolation_read_only: Specifies that this app profile is intended for read-only usage via the Data Boost feature.
|
594
|
+
Structure is documented below.
|
556
595
|
:param pulumi.Input[str] description: Long form description of the use case for this app profile.
|
557
596
|
:param pulumi.Input[bool] ignore_warnings: If true, ignore safety checks when deleting/updating the app profile.
|
558
597
|
:param pulumi.Input[str] instance: The name of the instance to create the app profile within.
|
@@ -749,6 +788,7 @@ class AppProfile(pulumi.CustomResource):
|
|
749
788
|
resource_name: str,
|
750
789
|
opts: Optional[pulumi.ResourceOptions] = None,
|
751
790
|
app_profile_id: Optional[pulumi.Input[str]] = None,
|
791
|
+
data_boost_isolation_read_only: Optional[pulumi.Input[Union['AppProfileDataBoostIsolationReadOnlyArgs', 'AppProfileDataBoostIsolationReadOnlyArgsDict']]] = None,
|
752
792
|
description: Optional[pulumi.Input[str]] = None,
|
753
793
|
ignore_warnings: Optional[pulumi.Input[bool]] = None,
|
754
794
|
instance: Optional[pulumi.Input[str]] = None,
|
@@ -769,6 +809,7 @@ class AppProfile(pulumi.CustomResource):
|
|
769
809
|
if app_profile_id is None and not opts.urn:
|
770
810
|
raise TypeError("Missing required property 'app_profile_id'")
|
771
811
|
__props__.__dict__["app_profile_id"] = app_profile_id
|
812
|
+
__props__.__dict__["data_boost_isolation_read_only"] = data_boost_isolation_read_only
|
772
813
|
__props__.__dict__["description"] = description
|
773
814
|
__props__.__dict__["ignore_warnings"] = ignore_warnings
|
774
815
|
__props__.__dict__["instance"] = instance
|
@@ -789,6 +830,7 @@ class AppProfile(pulumi.CustomResource):
|
|
789
830
|
id: pulumi.Input[str],
|
790
831
|
opts: Optional[pulumi.ResourceOptions] = None,
|
791
832
|
app_profile_id: Optional[pulumi.Input[str]] = None,
|
833
|
+
data_boost_isolation_read_only: Optional[pulumi.Input[Union['AppProfileDataBoostIsolationReadOnlyArgs', 'AppProfileDataBoostIsolationReadOnlyArgsDict']]] = None,
|
792
834
|
description: Optional[pulumi.Input[str]] = None,
|
793
835
|
ignore_warnings: Optional[pulumi.Input[bool]] = None,
|
794
836
|
instance: Optional[pulumi.Input[str]] = None,
|
@@ -809,6 +851,8 @@ class AppProfile(pulumi.CustomResource):
|
|
809
851
|
|
810
852
|
|
811
853
|
- - -
|
854
|
+
:param pulumi.Input[Union['AppProfileDataBoostIsolationReadOnlyArgs', 'AppProfileDataBoostIsolationReadOnlyArgsDict']] data_boost_isolation_read_only: Specifies that this app profile is intended for read-only usage via the Data Boost feature.
|
855
|
+
Structure is documented below.
|
812
856
|
:param pulumi.Input[str] description: Long form description of the use case for this app profile.
|
813
857
|
:param pulumi.Input[bool] ignore_warnings: If true, ignore safety checks when deleting/updating the app profile.
|
814
858
|
:param pulumi.Input[str] instance: The name of the instance to create the app profile within.
|
@@ -830,6 +874,7 @@ class AppProfile(pulumi.CustomResource):
|
|
830
874
|
__props__ = _AppProfileState.__new__(_AppProfileState)
|
831
875
|
|
832
876
|
__props__.__dict__["app_profile_id"] = app_profile_id
|
877
|
+
__props__.__dict__["data_boost_isolation_read_only"] = data_boost_isolation_read_only
|
833
878
|
__props__.__dict__["description"] = description
|
834
879
|
__props__.__dict__["ignore_warnings"] = ignore_warnings
|
835
880
|
__props__.__dict__["instance"] = instance
|
@@ -852,6 +897,15 @@ class AppProfile(pulumi.CustomResource):
|
|
852
897
|
"""
|
853
898
|
return pulumi.get(self, "app_profile_id")
|
854
899
|
|
900
|
+
@property
|
901
|
+
@pulumi.getter(name="dataBoostIsolationReadOnly")
|
902
|
+
def data_boost_isolation_read_only(self) -> pulumi.Output[Optional['outputs.AppProfileDataBoostIsolationReadOnly']]:
|
903
|
+
"""
|
904
|
+
Specifies that this app profile is intended for read-only usage via the Data Boost feature.
|
905
|
+
Structure is documented below.
|
906
|
+
"""
|
907
|
+
return pulumi.get(self, "data_boost_isolation_read_only")
|
908
|
+
|
855
909
|
@property
|
856
910
|
@pulumi.getter
|
857
911
|
def description(self) -> pulumi.Output[Optional[str]]:
|
pulumi_gcp/bigquery/outputs.py
CHANGED
@@ -16,6 +16,7 @@ from .. import _utilities
|
|
16
16
|
from . import outputs
|
17
17
|
|
18
18
|
__all__ = [
|
19
|
+
'AppProfileDataBoostIsolationReadOnly',
|
19
20
|
'AppProfileSingleClusterRouting',
|
20
21
|
'AppProfileStandardIsolation',
|
21
22
|
'BiReservationPreferredTable',
|
@@ -103,6 +104,43 @@ __all__ = [
|
|
103
104
|
'GetDatasetExternalDatasetReferenceResult',
|
104
105
|
]
|
105
106
|
|
107
|
+
@pulumi.output_type
|
108
|
+
class AppProfileDataBoostIsolationReadOnly(dict):
|
109
|
+
@staticmethod
|
110
|
+
def __key_warning(key: str):
|
111
|
+
suggest = None
|
112
|
+
if key == "computeBillingOwner":
|
113
|
+
suggest = "compute_billing_owner"
|
114
|
+
|
115
|
+
if suggest:
|
116
|
+
pulumi.log.warn(f"Key '{key}' not found in AppProfileDataBoostIsolationReadOnly. Access the value via the '{suggest}' property getter instead.")
|
117
|
+
|
118
|
+
def __getitem__(self, key: str) -> Any:
|
119
|
+
AppProfileDataBoostIsolationReadOnly.__key_warning(key)
|
120
|
+
return super().__getitem__(key)
|
121
|
+
|
122
|
+
def get(self, key: str, default = None) -> Any:
|
123
|
+
AppProfileDataBoostIsolationReadOnly.__key_warning(key)
|
124
|
+
return super().get(key, default)
|
125
|
+
|
126
|
+
def __init__(__self__, *,
|
127
|
+
compute_billing_owner: str):
|
128
|
+
"""
|
129
|
+
:param str compute_billing_owner: The Compute Billing Owner for this Data Boost App Profile.
|
130
|
+
Possible values are: `HOST_PAYS`.
|
131
|
+
"""
|
132
|
+
pulumi.set(__self__, "compute_billing_owner", compute_billing_owner)
|
133
|
+
|
134
|
+
@property
|
135
|
+
@pulumi.getter(name="computeBillingOwner")
|
136
|
+
def compute_billing_owner(self) -> str:
|
137
|
+
"""
|
138
|
+
The Compute Billing Owner for this Data Boost App Profile.
|
139
|
+
Possible values are: `HOST_PAYS`.
|
140
|
+
"""
|
141
|
+
return pulumi.get(self, "compute_billing_owner")
|
142
|
+
|
143
|
+
|
106
144
|
@pulumi.output_type
|
107
145
|
class AppProfileSingleClusterRouting(dict):
|
108
146
|
@staticmethod
|
@@ -43,8 +43,11 @@ class ReservationArgs:
|
|
43
43
|
capacity specified above at most.
|
44
44
|
:param pulumi.Input[str] location: The geographic location where the transfer config should reside.
|
45
45
|
Examples: US, EU, asia-northeast1. The default value is US.
|
46
|
-
:param pulumi.Input[bool] multi_region_auxiliary:
|
46
|
+
:param pulumi.Input[bool] multi_region_auxiliary: (Optional, Deprecated)
|
47
|
+
Applicable only for reservations located within one of the BigQuery multi-regions (US or EU).
|
47
48
|
If set to true, this reservation is placed in the organization's secondary region which is designated for disaster recovery purposes. If false, this reservation is placed in the organization's default region.
|
49
|
+
|
50
|
+
> **Warning:** `multi_region_auxiliary` is deprecated and will be removed in a future major release. This field is no longer supported by the BigQuery Reservation API.
|
48
51
|
:param pulumi.Input[str] name: The name of the reservation. This field must only contain alphanumeric characters or dash.
|
49
52
|
|
50
53
|
|
@@ -63,6 +66,9 @@ class ReservationArgs:
|
|
63
66
|
pulumi.set(__self__, "ignore_idle_slots", ignore_idle_slots)
|
64
67
|
if location is not None:
|
65
68
|
pulumi.set(__self__, "location", location)
|
69
|
+
if multi_region_auxiliary is not None:
|
70
|
+
warnings.warn("""`multi_region_auxiliary` is deprecated and will be removed in a future major release. This field is no longer supported by the BigQuery Reservation API.""", DeprecationWarning)
|
71
|
+
pulumi.log.warn("""multi_region_auxiliary is deprecated: `multi_region_auxiliary` is deprecated and will be removed in a future major release. This field is no longer supported by the BigQuery Reservation API.""")
|
66
72
|
if multi_region_auxiliary is not None:
|
67
73
|
pulumi.set(__self__, "multi_region_auxiliary", multi_region_auxiliary)
|
68
74
|
if name is not None:
|
@@ -149,10 +155,14 @@ class ReservationArgs:
|
|
149
155
|
|
150
156
|
@property
|
151
157
|
@pulumi.getter(name="multiRegionAuxiliary")
|
158
|
+
@_utilities.deprecated("""`multi_region_auxiliary` is deprecated and will be removed in a future major release. This field is no longer supported by the BigQuery Reservation API.""")
|
152
159
|
def multi_region_auxiliary(self) -> Optional[pulumi.Input[bool]]:
|
153
160
|
"""
|
161
|
+
(Optional, Deprecated)
|
154
162
|
Applicable only for reservations located within one of the BigQuery multi-regions (US or EU).
|
155
163
|
If set to true, this reservation is placed in the organization's secondary region which is designated for disaster recovery purposes. If false, this reservation is placed in the organization's default region.
|
164
|
+
|
165
|
+
> **Warning:** `multi_region_auxiliary` is deprecated and will be removed in a future major release. This field is no longer supported by the BigQuery Reservation API.
|
156
166
|
"""
|
157
167
|
return pulumi.get(self, "multi_region_auxiliary")
|
158
168
|
|
@@ -212,8 +222,11 @@ class _ReservationState:
|
|
212
222
|
capacity specified above at most.
|
213
223
|
:param pulumi.Input[str] location: The geographic location where the transfer config should reside.
|
214
224
|
Examples: US, EU, asia-northeast1. The default value is US.
|
215
|
-
:param pulumi.Input[bool] multi_region_auxiliary:
|
225
|
+
:param pulumi.Input[bool] multi_region_auxiliary: (Optional, Deprecated)
|
226
|
+
Applicable only for reservations located within one of the BigQuery multi-regions (US or EU).
|
216
227
|
If set to true, this reservation is placed in the organization's secondary region which is designated for disaster recovery purposes. If false, this reservation is placed in the organization's default region.
|
228
|
+
|
229
|
+
> **Warning:** `multi_region_auxiliary` is deprecated and will be removed in a future major release. This field is no longer supported by the BigQuery Reservation API.
|
217
230
|
:param pulumi.Input[str] name: The name of the reservation. This field must only contain alphanumeric characters or dash.
|
218
231
|
|
219
232
|
|
@@ -233,6 +246,9 @@ class _ReservationState:
|
|
233
246
|
pulumi.set(__self__, "ignore_idle_slots", ignore_idle_slots)
|
234
247
|
if location is not None:
|
235
248
|
pulumi.set(__self__, "location", location)
|
249
|
+
if multi_region_auxiliary is not None:
|
250
|
+
warnings.warn("""`multi_region_auxiliary` is deprecated and will be removed in a future major release. This field is no longer supported by the BigQuery Reservation API.""", DeprecationWarning)
|
251
|
+
pulumi.log.warn("""multi_region_auxiliary is deprecated: `multi_region_auxiliary` is deprecated and will be removed in a future major release. This field is no longer supported by the BigQuery Reservation API.""")
|
236
252
|
if multi_region_auxiliary is not None:
|
237
253
|
pulumi.set(__self__, "multi_region_auxiliary", multi_region_auxiliary)
|
238
254
|
if name is not None:
|
@@ -308,10 +324,14 @@ class _ReservationState:
|
|
308
324
|
|
309
325
|
@property
|
310
326
|
@pulumi.getter(name="multiRegionAuxiliary")
|
327
|
+
@_utilities.deprecated("""`multi_region_auxiliary` is deprecated and will be removed in a future major release. This field is no longer supported by the BigQuery Reservation API.""")
|
311
328
|
def multi_region_auxiliary(self) -> Optional[pulumi.Input[bool]]:
|
312
329
|
"""
|
330
|
+
(Optional, Deprecated)
|
313
331
|
Applicable only for reservations located within one of the BigQuery multi-regions (US or EU).
|
314
332
|
If set to true, this reservation is placed in the organization's secondary region which is designated for disaster recovery purposes. If false, this reservation is placed in the organization's default region.
|
333
|
+
|
334
|
+
> **Warning:** `multi_region_auxiliary` is deprecated and will be removed in a future major release. This field is no longer supported by the BigQuery Reservation API.
|
315
335
|
"""
|
316
336
|
return pulumi.get(self, "multi_region_auxiliary")
|
317
337
|
|
@@ -440,8 +460,11 @@ class Reservation(pulumi.CustomResource):
|
|
440
460
|
capacity specified above at most.
|
441
461
|
:param pulumi.Input[str] location: The geographic location where the transfer config should reside.
|
442
462
|
Examples: US, EU, asia-northeast1. The default value is US.
|
443
|
-
:param pulumi.Input[bool] multi_region_auxiliary:
|
463
|
+
:param pulumi.Input[bool] multi_region_auxiliary: (Optional, Deprecated)
|
464
|
+
Applicable only for reservations located within one of the BigQuery multi-regions (US or EU).
|
444
465
|
If set to true, this reservation is placed in the organization's secondary region which is designated for disaster recovery purposes. If false, this reservation is placed in the organization's default region.
|
466
|
+
|
467
|
+
> **Warning:** `multi_region_auxiliary` is deprecated and will be removed in a future major release. This field is no longer supported by the BigQuery Reservation API.
|
445
468
|
:param pulumi.Input[str] name: The name of the reservation. This field must only contain alphanumeric characters or dash.
|
446
469
|
|
447
470
|
|
@@ -589,8 +612,11 @@ class Reservation(pulumi.CustomResource):
|
|
589
612
|
capacity specified above at most.
|
590
613
|
:param pulumi.Input[str] location: The geographic location where the transfer config should reside.
|
591
614
|
Examples: US, EU, asia-northeast1. The default value is US.
|
592
|
-
:param pulumi.Input[bool] multi_region_auxiliary:
|
615
|
+
:param pulumi.Input[bool] multi_region_auxiliary: (Optional, Deprecated)
|
616
|
+
Applicable only for reservations located within one of the BigQuery multi-regions (US or EU).
|
593
617
|
If set to true, this reservation is placed in the organization's secondary region which is designated for disaster recovery purposes. If false, this reservation is placed in the organization's default region.
|
618
|
+
|
619
|
+
> **Warning:** `multi_region_auxiliary` is deprecated and will be removed in a future major release. This field is no longer supported by the BigQuery Reservation API.
|
594
620
|
:param pulumi.Input[str] name: The name of the reservation. This field must only contain alphanumeric characters or dash.
|
595
621
|
|
596
622
|
|
@@ -661,10 +687,14 @@ class Reservation(pulumi.CustomResource):
|
|
661
687
|
|
662
688
|
@property
|
663
689
|
@pulumi.getter(name="multiRegionAuxiliary")
|
690
|
+
@_utilities.deprecated("""`multi_region_auxiliary` is deprecated and will be removed in a future major release. This field is no longer supported by the BigQuery Reservation API.""")
|
664
691
|
def multi_region_auxiliary(self) -> pulumi.Output[Optional[bool]]:
|
665
692
|
"""
|
693
|
+
(Optional, Deprecated)
|
666
694
|
Applicable only for reservations located within one of the BigQuery multi-regions (US or EU).
|
667
695
|
If set to true, this reservation is placed in the organization's secondary region which is designated for disaster recovery purposes. If false, this reservation is placed in the organization's default region.
|
696
|
+
|
697
|
+
> **Warning:** `multi_region_auxiliary` is deprecated and will be removed in a future major release. This field is no longer supported by the BigQuery Reservation API.
|
668
698
|
"""
|
669
699
|
return pulumi.get(self, "multi_region_auxiliary")
|
670
700
|
|
pulumi_gcp/bigquery/table.py
CHANGED
@@ -49,8 +49,13 @@ class TableArgs:
|
|
49
49
|
Changing this forces a new resource to be created.
|
50
50
|
:param pulumi.Input[str] table_id: A unique ID for the resource.
|
51
51
|
Changing this forces a new resource to be created.
|
52
|
-
:param pulumi.Input[bool] allow_resource_tags_on_deletion:
|
53
|
-
are still resource tags attached. The default value is
|
52
|
+
:param pulumi.Input[bool] allow_resource_tags_on_deletion: If set to true, it allows table
|
53
|
+
deletion when there are still resource tags attached. The default value is
|
54
|
+
false.
|
55
|
+
|
56
|
+
~>**Warning:** `allow_resource_tags_on_deletion` is deprecated and will be
|
57
|
+
removed in a future major release. The default behavior will be allowing
|
58
|
+
the presence of resource tags on deletion after the next major release.
|
54
59
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] clusterings: Specifies column names to use for data clustering.
|
55
60
|
Up to four top-level columns are allowed, and should be specified in
|
56
61
|
descending priority order.
|
@@ -86,7 +91,7 @@ class TableArgs:
|
|
86
91
|
:param pulumi.Input[bool] require_partition_filter: If set to true, queries over this table
|
87
92
|
require a partition filter that can be used for partition elimination to be
|
88
93
|
specified.
|
89
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags:
|
94
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags: The tags attached to this table. Tag keys are
|
90
95
|
globally unique. Tag key is expected to be in the namespaced format, for
|
91
96
|
example "123456789012/environment" where 123456789012 is the ID of the
|
92
97
|
parent organization or project resource for this tag key. Tag value is
|
@@ -105,6 +110,9 @@ class TableArgs:
|
|
105
110
|
"""
|
106
111
|
pulumi.set(__self__, "dataset_id", dataset_id)
|
107
112
|
pulumi.set(__self__, "table_id", table_id)
|
113
|
+
if allow_resource_tags_on_deletion is not None:
|
114
|
+
warnings.warn("""This field is deprecated and will be removed in a future major release. The default behavior will be allowing the presence of resource tags on deletion after the next major release.""", DeprecationWarning)
|
115
|
+
pulumi.log.warn("""allow_resource_tags_on_deletion is deprecated: This field is deprecated and will be removed in a future major release. The default behavior will be allowing the presence of resource tags on deletion after the next major release.""")
|
108
116
|
if allow_resource_tags_on_deletion is not None:
|
109
117
|
pulumi.set(__self__, "allow_resource_tags_on_deletion", allow_resource_tags_on_deletion)
|
110
118
|
if clusterings is not None:
|
@@ -174,10 +182,16 @@ class TableArgs:
|
|
174
182
|
|
175
183
|
@property
|
176
184
|
@pulumi.getter(name="allowResourceTagsOnDeletion")
|
185
|
+
@_utilities.deprecated("""This field is deprecated and will be removed in a future major release. The default behavior will be allowing the presence of resource tags on deletion after the next major release.""")
|
177
186
|
def allow_resource_tags_on_deletion(self) -> Optional[pulumi.Input[bool]]:
|
178
187
|
"""
|
179
|
-
|
180
|
-
are still resource tags attached. The default value is
|
188
|
+
If set to true, it allows table
|
189
|
+
deletion when there are still resource tags attached. The default value is
|
190
|
+
false.
|
191
|
+
|
192
|
+
~>**Warning:** `allow_resource_tags_on_deletion` is deprecated and will be
|
193
|
+
removed in a future major release. The default behavior will be allowing
|
194
|
+
the presence of resource tags on deletion after the next major release.
|
181
195
|
"""
|
182
196
|
return pulumi.get(self, "allow_resource_tags_on_deletion")
|
183
197
|
|
@@ -367,7 +381,7 @@ class TableArgs:
|
|
367
381
|
@pulumi.getter(name="resourceTags")
|
368
382
|
def resource_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
369
383
|
"""
|
370
|
-
|
384
|
+
The tags attached to this table. Tag keys are
|
371
385
|
globally unique. Tag key is expected to be in the namespaced format, for
|
372
386
|
example "123456789012/environment" where 123456789012 is the ID of the
|
373
387
|
parent organization or project resource for this tag key. Tag value is
|
@@ -484,8 +498,13 @@ class _TableState:
|
|
484
498
|
view: Optional[pulumi.Input['TableViewArgs']] = None):
|
485
499
|
"""
|
486
500
|
Input properties used for looking up and filtering Table resources.
|
487
|
-
:param pulumi.Input[bool] allow_resource_tags_on_deletion:
|
488
|
-
are still resource tags attached. The default value is
|
501
|
+
:param pulumi.Input[bool] allow_resource_tags_on_deletion: If set to true, it allows table
|
502
|
+
deletion when there are still resource tags attached. The default value is
|
503
|
+
false.
|
504
|
+
|
505
|
+
~>**Warning:** `allow_resource_tags_on_deletion` is deprecated and will be
|
506
|
+
removed in a future major release. The default behavior will be allowing
|
507
|
+
the presence of resource tags on deletion after the next major release.
|
489
508
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] clusterings: Specifies column names to use for data clustering.
|
490
509
|
Up to four top-level columns are allowed, and should be specified in
|
491
510
|
descending priority order.
|
@@ -547,7 +566,7 @@ class _TableState:
|
|
547
566
|
:param pulumi.Input[bool] require_partition_filter: If set to true, queries over this table
|
548
567
|
require a partition filter that can be used for partition elimination to be
|
549
568
|
specified.
|
550
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags:
|
569
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags: The tags attached to this table. Tag keys are
|
551
570
|
globally unique. Tag key is expected to be in the namespaced format, for
|
552
571
|
example "123456789012/environment" where 123456789012 is the ID of the
|
553
572
|
parent organization or project resource for this tag key. Tag value is
|
@@ -568,6 +587,9 @@ class _TableState:
|
|
568
587
|
:param pulumi.Input['TableViewArgs'] view: If specified, configures this table as a view.
|
569
588
|
Structure is documented below.
|
570
589
|
"""
|
590
|
+
if allow_resource_tags_on_deletion is not None:
|
591
|
+
warnings.warn("""This field is deprecated and will be removed in a future major release. The default behavior will be allowing the presence of resource tags on deletion after the next major release.""", DeprecationWarning)
|
592
|
+
pulumi.log.warn("""allow_resource_tags_on_deletion is deprecated: This field is deprecated and will be removed in a future major release. The default behavior will be allowing the presence of resource tags on deletion after the next major release.""")
|
571
593
|
if allow_resource_tags_on_deletion is not None:
|
572
594
|
pulumi.set(__self__, "allow_resource_tags_on_deletion", allow_resource_tags_on_deletion)
|
573
595
|
if clusterings is not None:
|
@@ -637,10 +659,16 @@ class _TableState:
|
|
637
659
|
|
638
660
|
@property
|
639
661
|
@pulumi.getter(name="allowResourceTagsOnDeletion")
|
662
|
+
@_utilities.deprecated("""This field is deprecated and will be removed in a future major release. The default behavior will be allowing the presence of resource tags on deletion after the next major release.""")
|
640
663
|
def allow_resource_tags_on_deletion(self) -> Optional[pulumi.Input[bool]]:
|
641
664
|
"""
|
642
|
-
|
643
|
-
are still resource tags attached. The default value is
|
665
|
+
If set to true, it allows table
|
666
|
+
deletion when there are still resource tags attached. The default value is
|
667
|
+
false.
|
668
|
+
|
669
|
+
~>**Warning:** `allow_resource_tags_on_deletion` is deprecated and will be
|
670
|
+
removed in a future major release. The default behavior will be allowing
|
671
|
+
the presence of resource tags on deletion after the next major release.
|
644
672
|
"""
|
645
673
|
return pulumi.get(self, "allow_resource_tags_on_deletion")
|
646
674
|
|
@@ -966,7 +994,7 @@ class _TableState:
|
|
966
994
|
@pulumi.getter(name="resourceTags")
|
967
995
|
def resource_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
968
996
|
"""
|
969
|
-
|
997
|
+
The tags attached to this table. Tag keys are
|
970
998
|
globally unique. Tag key is expected to be in the namespaced format, for
|
971
999
|
example "123456789012/environment" where 123456789012 is the ID of the
|
972
1000
|
parent organization or project resource for this tag key. Tag value is
|
@@ -1197,8 +1225,13 @@ class Table(pulumi.CustomResource):
|
|
1197
1225
|
|
1198
1226
|
:param str resource_name: The name of the resource.
|
1199
1227
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1200
|
-
:param pulumi.Input[bool] allow_resource_tags_on_deletion:
|
1201
|
-
are still resource tags attached. The default value is
|
1228
|
+
:param pulumi.Input[bool] allow_resource_tags_on_deletion: If set to true, it allows table
|
1229
|
+
deletion when there are still resource tags attached. The default value is
|
1230
|
+
false.
|
1231
|
+
|
1232
|
+
~>**Warning:** `allow_resource_tags_on_deletion` is deprecated and will be
|
1233
|
+
removed in a future major release. The default behavior will be allowing
|
1234
|
+
the presence of resource tags on deletion after the next major release.
|
1202
1235
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] clusterings: Specifies column names to use for data clustering.
|
1203
1236
|
Up to four top-level columns are allowed, and should be specified in
|
1204
1237
|
descending priority order.
|
@@ -1236,7 +1269,7 @@ class Table(pulumi.CustomResource):
|
|
1236
1269
|
:param pulumi.Input[bool] require_partition_filter: If set to true, queries over this table
|
1237
1270
|
require a partition filter that can be used for partition elimination to be
|
1238
1271
|
specified.
|
1239
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags:
|
1272
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags: The tags attached to this table. Tag keys are
|
1240
1273
|
globally unique. Tag key is expected to be in the namespaced format, for
|
1241
1274
|
example "123456789012/environment" where 123456789012 is the ID of the
|
1242
1275
|
parent organization or project resource for this tag key. Tag value is
|
@@ -1481,8 +1514,13 @@ class Table(pulumi.CustomResource):
|
|
1481
1514
|
:param str resource_name: The unique name of the resulting resource.
|
1482
1515
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
1483
1516
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1484
|
-
:param pulumi.Input[bool] allow_resource_tags_on_deletion:
|
1485
|
-
are still resource tags attached. The default value is
|
1517
|
+
:param pulumi.Input[bool] allow_resource_tags_on_deletion: If set to true, it allows table
|
1518
|
+
deletion when there are still resource tags attached. The default value is
|
1519
|
+
false.
|
1520
|
+
|
1521
|
+
~>**Warning:** `allow_resource_tags_on_deletion` is deprecated and will be
|
1522
|
+
removed in a future major release. The default behavior will be allowing
|
1523
|
+
the presence of resource tags on deletion after the next major release.
|
1486
1524
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] clusterings: Specifies column names to use for data clustering.
|
1487
1525
|
Up to four top-level columns are allowed, and should be specified in
|
1488
1526
|
descending priority order.
|
@@ -1544,7 +1582,7 @@ class Table(pulumi.CustomResource):
|
|
1544
1582
|
:param pulumi.Input[bool] require_partition_filter: If set to true, queries over this table
|
1545
1583
|
require a partition filter that can be used for partition elimination to be
|
1546
1584
|
specified.
|
1547
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags:
|
1585
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags: The tags attached to this table. Tag keys are
|
1548
1586
|
globally unique. Tag key is expected to be in the namespaced format, for
|
1549
1587
|
example "123456789012/environment" where 123456789012 is the ID of the
|
1550
1588
|
parent organization or project resource for this tag key. Tag value is
|
@@ -1606,10 +1644,16 @@ class Table(pulumi.CustomResource):
|
|
1606
1644
|
|
1607
1645
|
@property
|
1608
1646
|
@pulumi.getter(name="allowResourceTagsOnDeletion")
|
1647
|
+
@_utilities.deprecated("""This field is deprecated and will be removed in a future major release. The default behavior will be allowing the presence of resource tags on deletion after the next major release.""")
|
1609
1648
|
def allow_resource_tags_on_deletion(self) -> pulumi.Output[Optional[bool]]:
|
1610
1649
|
"""
|
1611
|
-
|
1612
|
-
are still resource tags attached. The default value is
|
1650
|
+
If set to true, it allows table
|
1651
|
+
deletion when there are still resource tags attached. The default value is
|
1652
|
+
false.
|
1653
|
+
|
1654
|
+
~>**Warning:** `allow_resource_tags_on_deletion` is deprecated and will be
|
1655
|
+
removed in a future major release. The default behavior will be allowing
|
1656
|
+
the presence of resource tags on deletion after the next major release.
|
1613
1657
|
"""
|
1614
1658
|
return pulumi.get(self, "allow_resource_tags_on_deletion")
|
1615
1659
|
|
@@ -1839,7 +1883,7 @@ class Table(pulumi.CustomResource):
|
|
1839
1883
|
@pulumi.getter(name="resourceTags")
|
1840
1884
|
def resource_tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
1841
1885
|
"""
|
1842
|
-
|
1886
|
+
The tags attached to this table. Tag keys are
|
1843
1887
|
globally unique. Tag key is expected to be in the namespaced format, for
|
1844
1888
|
example "123456789012/environment" where 123456789012 is the ID of the
|
1845
1889
|
parent organization or project resource for this tag key. Tag value is
|