pulumi-gcp 8.23.0a1742279918__py3-none-any.whl → 8.23.0a1742824282__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 +32 -0
- pulumi_gcp/alloydb/_inputs.py +27 -1
- pulumi_gcp/alloydb/outputs.py +33 -2
- pulumi_gcp/applicationintegration/client.py +18 -24
- pulumi_gcp/bigquery/_inputs.py +20 -0
- pulumi_gcp/bigquery/outputs.py +12 -0
- pulumi_gcp/bigquery/table.py +61 -0
- pulumi_gcp/bigtable/table.py +7 -7
- pulumi_gcp/clouddeploy/_inputs.py +20 -0
- pulumi_gcp/clouddeploy/outputs.py +15 -1
- pulumi_gcp/cloudfunctions/function.py +11 -11
- pulumi_gcp/cloudfunctionsv2/function.py +24 -24
- pulumi_gcp/cloudidentity/get_group_transitive_memberships.py +41 -2
- pulumi_gcp/cloudidentity/outputs.py +18 -38
- pulumi_gcp/compute/firewall_policy.py +20 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +2 -2
- pulumi_gcp/compute/subnetwork.py +109 -1
- pulumi_gcp/compute/target_https_proxy.py +7 -7
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +3 -3
- pulumi_gcp/container/get_attached_versions.py +2 -2
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/dataform/repository.py +49 -0
- pulumi_gcp/dataproc/get_metastore_service.py +26 -4
- pulumi_gcp/dataproc/metastore_federation.py +56 -0
- pulumi_gcp/dataproc/metastore_service.py +58 -2
- pulumi_gcp/eventarc/__init__.py +1 -0
- pulumi_gcp/eventarc/_inputs.py +1758 -0
- pulumi_gcp/eventarc/outputs.py +1337 -0
- pulumi_gcp/eventarc/pipeline.py +1596 -0
- pulumi_gcp/firebase/__init__.py +1 -0
- pulumi_gcp/firebase/_inputs.py +154 -0
- pulumi_gcp/firebase/app_hosting_backend.py +1303 -0
- pulumi_gcp/firebase/hosting_version.py +2 -2
- pulumi_gcp/firebase/outputs.py +127 -0
- pulumi_gcp/kms/get_key_rings.py +39 -2
- pulumi_gcp/managedkafka/__init__.py +2 -0
- pulumi_gcp/managedkafka/_inputs.py +263 -0
- pulumi_gcp/managedkafka/connect_cluster.py +795 -0
- pulumi_gcp/managedkafka/connector.py +695 -0
- pulumi_gcp/managedkafka/outputs.py +248 -0
- pulumi_gcp/memorystore/instance.py +7 -7
- pulumi_gcp/monitoring/uptime_check_config.py +2 -2
- pulumi_gcp/networksecurity/_inputs.py +643 -0
- pulumi_gcp/networksecurity/gateway_security_policy.py +0 -7
- pulumi_gcp/networksecurity/mirroring_deployment.py +22 -0
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +20 -0
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +24 -0
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +28 -0
- pulumi_gcp/networksecurity/outputs.py +475 -0
- pulumi_gcp/networksecurity/tls_inspection_policy.py +14 -0
- pulumi_gcp/networkservices/gateway.py +242 -120
- pulumi_gcp/projects/__init__.py +2 -0
- pulumi_gcp/projects/get_iam_custom_role.py +198 -0
- pulumi_gcp/projects/get_iam_custom_roles.py +164 -0
- pulumi_gcp/projects/outputs.py +96 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/servicenetworking/peered_dns_domain.py +4 -0
- pulumi_gcp/sql/outputs.py +8 -8
- pulumi_gcp/storage/_inputs.py +14 -6
- pulumi_gcp/storage/insights_report_config.py +121 -20
- pulumi_gcp/storage/outputs.py +7 -4
- pulumi_gcp/workflows/workflow.py +75 -7
- {pulumi_gcp-8.23.0a1742279918.dist-info → pulumi_gcp-8.23.0a1742824282.dist-info}/METADATA +2 -2
- {pulumi_gcp-8.23.0a1742279918.dist-info → pulumi_gcp-8.23.0a1742824282.dist-info}/RECORD +69 -63
- {pulumi_gcp-8.23.0a1742279918.dist-info → pulumi_gcp-8.23.0a1742824282.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.23.0a1742279918.dist-info → pulumi_gcp-8.23.0a1742824282.dist-info}/top_level.txt +0 -0
pulumi_gcp/__init__.py
CHANGED
@@ -4970,6 +4970,14 @@ _utilities.register(
|
|
4970
4970
|
"gcp:eventarc/messageBus:MessageBus": "MessageBus"
|
4971
4971
|
}
|
4972
4972
|
},
|
4973
|
+
{
|
4974
|
+
"pkg": "gcp",
|
4975
|
+
"mod": "eventarc/pipeline",
|
4976
|
+
"fqn": "pulumi_gcp.eventarc",
|
4977
|
+
"classes": {
|
4978
|
+
"gcp:eventarc/pipeline:Pipeline": "Pipeline"
|
4979
|
+
}
|
4980
|
+
},
|
4973
4981
|
{
|
4974
4982
|
"pkg": "gcp",
|
4975
4983
|
"mod": "eventarc/trigger",
|
@@ -5066,6 +5074,14 @@ _utilities.register(
|
|
5066
5074
|
"gcp:firebase/appCheckServiceConfig:AppCheckServiceConfig": "AppCheckServiceConfig"
|
5067
5075
|
}
|
5068
5076
|
},
|
5077
|
+
{
|
5078
|
+
"pkg": "gcp",
|
5079
|
+
"mod": "firebase/appHostingBackend",
|
5080
|
+
"fqn": "pulumi_gcp.firebase",
|
5081
|
+
"classes": {
|
5082
|
+
"gcp:firebase/appHostingBackend:AppHostingBackend": "AppHostingBackend"
|
5083
|
+
}
|
5084
|
+
},
|
5069
5085
|
{
|
5070
5086
|
"pkg": "gcp",
|
5071
5087
|
"mod": "firebase/appleApp",
|
@@ -6578,6 +6594,22 @@ _utilities.register(
|
|
6578
6594
|
"gcp:managedkafka/cluster:Cluster": "Cluster"
|
6579
6595
|
}
|
6580
6596
|
},
|
6597
|
+
{
|
6598
|
+
"pkg": "gcp",
|
6599
|
+
"mod": "managedkafka/connectCluster",
|
6600
|
+
"fqn": "pulumi_gcp.managedkafka",
|
6601
|
+
"classes": {
|
6602
|
+
"gcp:managedkafka/connectCluster:ConnectCluster": "ConnectCluster"
|
6603
|
+
}
|
6604
|
+
},
|
6605
|
+
{
|
6606
|
+
"pkg": "gcp",
|
6607
|
+
"mod": "managedkafka/connector",
|
6608
|
+
"fqn": "pulumi_gcp.managedkafka",
|
6609
|
+
"classes": {
|
6610
|
+
"gcp:managedkafka/connector:Connector": "Connector"
|
6611
|
+
}
|
6612
|
+
},
|
6581
6613
|
{
|
6582
6614
|
"pkg": "gcp",
|
6583
6615
|
"mod": "managedkafka/topic",
|
pulumi_gcp/alloydb/_inputs.py
CHANGED
@@ -1448,18 +1448,30 @@ if not MYPY:
|
|
1448
1448
|
"""
|
1449
1449
|
Create an instance that allows connections from Private Service Connect endpoints to the instance.
|
1450
1450
|
"""
|
1451
|
+
service_owned_project_number: NotRequired[pulumi.Input[int]]
|
1452
|
+
"""
|
1453
|
+
(Output)
|
1454
|
+
The project number that needs to be allowlisted on the network attachment to enable outbound connectivity, if the network attachment is configured to ACCEPT_MANUAL connections.
|
1455
|
+
In case the network attachment is configured to ACCEPT_AUTOMATIC, this project number does not need to be allowlisted explicitly.
|
1456
|
+
"""
|
1451
1457
|
elif False:
|
1452
1458
|
ClusterPscConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1453
1459
|
|
1454
1460
|
@pulumi.input_type
|
1455
1461
|
class ClusterPscConfigArgs:
|
1456
1462
|
def __init__(__self__, *,
|
1457
|
-
psc_enabled: Optional[pulumi.Input[bool]] = None
|
1463
|
+
psc_enabled: Optional[pulumi.Input[bool]] = None,
|
1464
|
+
service_owned_project_number: Optional[pulumi.Input[int]] = None):
|
1458
1465
|
"""
|
1459
1466
|
:param pulumi.Input[bool] psc_enabled: Create an instance that allows connections from Private Service Connect endpoints to the instance.
|
1467
|
+
:param pulumi.Input[int] service_owned_project_number: (Output)
|
1468
|
+
The project number that needs to be allowlisted on the network attachment to enable outbound connectivity, if the network attachment is configured to ACCEPT_MANUAL connections.
|
1469
|
+
In case the network attachment is configured to ACCEPT_AUTOMATIC, this project number does not need to be allowlisted explicitly.
|
1460
1470
|
"""
|
1461
1471
|
if psc_enabled is not None:
|
1462
1472
|
pulumi.set(__self__, "psc_enabled", psc_enabled)
|
1473
|
+
if service_owned_project_number is not None:
|
1474
|
+
pulumi.set(__self__, "service_owned_project_number", service_owned_project_number)
|
1463
1475
|
|
1464
1476
|
@property
|
1465
1477
|
@pulumi.getter(name="pscEnabled")
|
@@ -1473,6 +1485,20 @@ class ClusterPscConfigArgs:
|
|
1473
1485
|
def psc_enabled(self, value: Optional[pulumi.Input[bool]]):
|
1474
1486
|
pulumi.set(self, "psc_enabled", value)
|
1475
1487
|
|
1488
|
+
@property
|
1489
|
+
@pulumi.getter(name="serviceOwnedProjectNumber")
|
1490
|
+
def service_owned_project_number(self) -> Optional[pulumi.Input[int]]:
|
1491
|
+
"""
|
1492
|
+
(Output)
|
1493
|
+
The project number that needs to be allowlisted on the network attachment to enable outbound connectivity, if the network attachment is configured to ACCEPT_MANUAL connections.
|
1494
|
+
In case the network attachment is configured to ACCEPT_AUTOMATIC, this project number does not need to be allowlisted explicitly.
|
1495
|
+
"""
|
1496
|
+
return pulumi.get(self, "service_owned_project_number")
|
1497
|
+
|
1498
|
+
@service_owned_project_number.setter
|
1499
|
+
def service_owned_project_number(self, value: Optional[pulumi.Input[int]]):
|
1500
|
+
pulumi.set(self, "service_owned_project_number", value)
|
1501
|
+
|
1476
1502
|
|
1477
1503
|
if not MYPY:
|
1478
1504
|
class ClusterRestoreBackupSourceArgsDict(TypedDict):
|
pulumi_gcp/alloydb/outputs.py
CHANGED
@@ -1243,6 +1243,8 @@ class ClusterPscConfig(dict):
|
|
1243
1243
|
suggest = None
|
1244
1244
|
if key == "pscEnabled":
|
1245
1245
|
suggest = "psc_enabled"
|
1246
|
+
elif key == "serviceOwnedProjectNumber":
|
1247
|
+
suggest = "service_owned_project_number"
|
1246
1248
|
|
1247
1249
|
if suggest:
|
1248
1250
|
pulumi.log.warn(f"Key '{key}' not found in ClusterPscConfig. Access the value via the '{suggest}' property getter instead.")
|
@@ -1256,12 +1258,18 @@ class ClusterPscConfig(dict):
|
|
1256
1258
|
return super().get(key, default)
|
1257
1259
|
|
1258
1260
|
def __init__(__self__, *,
|
1259
|
-
psc_enabled: Optional[bool] = None
|
1261
|
+
psc_enabled: Optional[bool] = None,
|
1262
|
+
service_owned_project_number: Optional[int] = None):
|
1260
1263
|
"""
|
1261
1264
|
:param bool psc_enabled: Create an instance that allows connections from Private Service Connect endpoints to the instance.
|
1265
|
+
:param int service_owned_project_number: (Output)
|
1266
|
+
The project number that needs to be allowlisted on the network attachment to enable outbound connectivity, if the network attachment is configured to ACCEPT_MANUAL connections.
|
1267
|
+
In case the network attachment is configured to ACCEPT_AUTOMATIC, this project number does not need to be allowlisted explicitly.
|
1262
1268
|
"""
|
1263
1269
|
if psc_enabled is not None:
|
1264
1270
|
pulumi.set(__self__, "psc_enabled", psc_enabled)
|
1271
|
+
if service_owned_project_number is not None:
|
1272
|
+
pulumi.set(__self__, "service_owned_project_number", service_owned_project_number)
|
1265
1273
|
|
1266
1274
|
@property
|
1267
1275
|
@pulumi.getter(name="pscEnabled")
|
@@ -1271,6 +1279,16 @@ class ClusterPscConfig(dict):
|
|
1271
1279
|
"""
|
1272
1280
|
return pulumi.get(self, "psc_enabled")
|
1273
1281
|
|
1282
|
+
@property
|
1283
|
+
@pulumi.getter(name="serviceOwnedProjectNumber")
|
1284
|
+
def service_owned_project_number(self) -> Optional[int]:
|
1285
|
+
"""
|
1286
|
+
(Output)
|
1287
|
+
The project number that needs to be allowlisted on the network attachment to enable outbound connectivity, if the network attachment is configured to ACCEPT_MANUAL connections.
|
1288
|
+
In case the network attachment is configured to ACCEPT_AUTOMATIC, this project number does not need to be allowlisted explicitly.
|
1289
|
+
"""
|
1290
|
+
return pulumi.get(self, "service_owned_project_number")
|
1291
|
+
|
1274
1292
|
|
1275
1293
|
@pulumi.output_type
|
1276
1294
|
class ClusterRestoreBackupSource(dict):
|
@@ -2735,11 +2753,15 @@ class GetClusterNetworkConfigResult(dict):
|
|
2735
2753
|
@pulumi.output_type
|
2736
2754
|
class GetClusterPscConfigResult(dict):
|
2737
2755
|
def __init__(__self__, *,
|
2738
|
-
psc_enabled: bool
|
2756
|
+
psc_enabled: bool,
|
2757
|
+
service_owned_project_number: int):
|
2739
2758
|
"""
|
2740
2759
|
:param bool psc_enabled: Create an instance that allows connections from Private Service Connect endpoints to the instance.
|
2760
|
+
:param int service_owned_project_number: The project number that needs to be allowlisted on the network attachment to enable outbound connectivity, if the network attachment is configured to ACCEPT_MANUAL connections.
|
2761
|
+
In case the network attachment is configured to ACCEPT_AUTOMATIC, this project number does not need to be allowlisted explicitly.
|
2741
2762
|
"""
|
2742
2763
|
pulumi.set(__self__, "psc_enabled", psc_enabled)
|
2764
|
+
pulumi.set(__self__, "service_owned_project_number", service_owned_project_number)
|
2743
2765
|
|
2744
2766
|
@property
|
2745
2767
|
@pulumi.getter(name="pscEnabled")
|
@@ -2749,6 +2771,15 @@ class GetClusterPscConfigResult(dict):
|
|
2749
2771
|
"""
|
2750
2772
|
return pulumi.get(self, "psc_enabled")
|
2751
2773
|
|
2774
|
+
@property
|
2775
|
+
@pulumi.getter(name="serviceOwnedProjectNumber")
|
2776
|
+
def service_owned_project_number(self) -> int:
|
2777
|
+
"""
|
2778
|
+
The project number that needs to be allowlisted on the network attachment to enable outbound connectivity, if the network attachment is configured to ACCEPT_MANUAL connections.
|
2779
|
+
In case the network attachment is configured to ACCEPT_AUTOMATIC, this project number does not need to be allowlisted explicitly.
|
2780
|
+
"""
|
2781
|
+
return pulumi.get(self, "service_owned_project_number")
|
2782
|
+
|
2752
2783
|
|
2753
2784
|
@pulumi.output_type
|
2754
2785
|
class GetClusterRestoreBackupSourceResult(dict):
|
@@ -251,15 +251,12 @@ class Client(pulumi.CustomResource):
|
|
251
251
|
import pulumi_gcp as gcp
|
252
252
|
import pulumi_std as std
|
253
253
|
|
254
|
-
|
255
|
-
keyring = gcp.kms.
|
256
|
-
name="my-keyring",
|
254
|
+
default = gcp.organizations.get_project()
|
255
|
+
keyring = gcp.kms.get_kms_key_ring(name="my-keyring",
|
257
256
|
location="us-east1")
|
258
|
-
cryptokey = gcp.kms.
|
259
|
-
|
260
|
-
|
261
|
-
rotation_period="7776000s")
|
262
|
-
test_key = gcp.kms.CryptoKeyVersion("test_key", crypto_key=cryptokey.id)
|
257
|
+
cryptokey = gcp.kms.get_kms_crypto_key(name="my-crypto-key",
|
258
|
+
key_ring=keyring.id)
|
259
|
+
test_key = gcp.kms.get_kms_crypto_key_version(crypto_key=cryptokey.id)
|
263
260
|
service_account = gcp.serviceaccount.Account("service_account",
|
264
261
|
account_id="service-acc",
|
265
262
|
display_name="Service Account")
|
@@ -269,10 +266,10 @@ class Client(pulumi.CustomResource):
|
|
269
266
|
run_as_service_account=service_account.email,
|
270
267
|
cloud_kms_config={
|
271
268
|
"kms_location": "us-east1",
|
272
|
-
"kms_ring": std.
|
273
|
-
"key": std.
|
274
|
-
"key_version": std.
|
275
|
-
"kms_project_id":
|
269
|
+
"kms_ring": std.basename(input=keyring.id).result,
|
270
|
+
"key": std.basename(input=cryptokey.id).result,
|
271
|
+
"key_version": std.basename(input=test_key.id).result,
|
272
|
+
"kms_project_id": default.project_id,
|
276
273
|
})
|
277
274
|
```
|
278
275
|
|
@@ -346,15 +343,12 @@ class Client(pulumi.CustomResource):
|
|
346
343
|
import pulumi_gcp as gcp
|
347
344
|
import pulumi_std as std
|
348
345
|
|
349
|
-
|
350
|
-
keyring = gcp.kms.
|
351
|
-
name="my-keyring",
|
346
|
+
default = gcp.organizations.get_project()
|
347
|
+
keyring = gcp.kms.get_kms_key_ring(name="my-keyring",
|
352
348
|
location="us-east1")
|
353
|
-
cryptokey = gcp.kms.
|
354
|
-
|
355
|
-
|
356
|
-
rotation_period="7776000s")
|
357
|
-
test_key = gcp.kms.CryptoKeyVersion("test_key", crypto_key=cryptokey.id)
|
349
|
+
cryptokey = gcp.kms.get_kms_crypto_key(name="my-crypto-key",
|
350
|
+
key_ring=keyring.id)
|
351
|
+
test_key = gcp.kms.get_kms_crypto_key_version(crypto_key=cryptokey.id)
|
358
352
|
service_account = gcp.serviceaccount.Account("service_account",
|
359
353
|
account_id="service-acc",
|
360
354
|
display_name="Service Account")
|
@@ -364,10 +358,10 @@ class Client(pulumi.CustomResource):
|
|
364
358
|
run_as_service_account=service_account.email,
|
365
359
|
cloud_kms_config={
|
366
360
|
"kms_location": "us-east1",
|
367
|
-
"kms_ring": std.
|
368
|
-
"key": std.
|
369
|
-
"key_version": std.
|
370
|
-
"kms_project_id":
|
361
|
+
"kms_ring": std.basename(input=keyring.id).result,
|
362
|
+
"key": std.basename(input=cryptokey.id).result,
|
363
|
+
"key_version": std.basename(input=test_key.id).result,
|
364
|
+
"kms_project_id": default.project_id,
|
371
365
|
})
|
372
366
|
```
|
373
367
|
|
pulumi_gcp/bigquery/_inputs.py
CHANGED
@@ -4099,6 +4099,10 @@ if not MYPY:
|
|
4099
4099
|
Requires destinationTable to be set. For standard SQL queries, this flag is ignored and large results are always allowed.
|
4100
4100
|
However, you must still set destinationTable when result size exceeds the allowed maximum response size.
|
4101
4101
|
"""
|
4102
|
+
continuous: NotRequired[pulumi.Input[bool]]
|
4103
|
+
"""
|
4104
|
+
Whether to run the query as continuous or a regular query.
|
4105
|
+
"""
|
4102
4106
|
create_disposition: NotRequired[pulumi.Input[str]]
|
4103
4107
|
"""
|
4104
4108
|
Specifies whether the job is allowed to create new tables. The following values are supported:
|
@@ -4200,6 +4204,7 @@ class JobQueryArgs:
|
|
4200
4204
|
def __init__(__self__, *,
|
4201
4205
|
query: pulumi.Input[str],
|
4202
4206
|
allow_large_results: Optional[pulumi.Input[bool]] = None,
|
4207
|
+
continuous: Optional[pulumi.Input[bool]] = None,
|
4203
4208
|
create_disposition: Optional[pulumi.Input[str]] = None,
|
4204
4209
|
default_dataset: Optional[pulumi.Input['JobQueryDefaultDatasetArgs']] = None,
|
4205
4210
|
destination_encryption_configuration: Optional[pulumi.Input['JobQueryDestinationEncryptionConfigurationArgs']] = None,
|
@@ -4222,6 +4227,7 @@ class JobQueryArgs:
|
|
4222
4227
|
:param pulumi.Input[bool] allow_large_results: If true and query uses legacy SQL dialect, allows the query to produce arbitrarily large result tables at a slight cost in performance.
|
4223
4228
|
Requires destinationTable to be set. For standard SQL queries, this flag is ignored and large results are always allowed.
|
4224
4229
|
However, you must still set destinationTable when result size exceeds the allowed maximum response size.
|
4230
|
+
:param pulumi.Input[bool] continuous: Whether to run the query as continuous or a regular query.
|
4225
4231
|
:param pulumi.Input[str] create_disposition: Specifies whether the job is allowed to create new tables. The following values are supported:
|
4226
4232
|
CREATE_IF_NEEDED: If the table does not exist, BigQuery creates the table.
|
4227
4233
|
CREATE_NEVER: The table must already exist. If it does not, a 'notFound' error is returned in the job result.
|
@@ -4274,6 +4280,8 @@ class JobQueryArgs:
|
|
4274
4280
|
pulumi.set(__self__, "query", query)
|
4275
4281
|
if allow_large_results is not None:
|
4276
4282
|
pulumi.set(__self__, "allow_large_results", allow_large_results)
|
4283
|
+
if continuous is not None:
|
4284
|
+
pulumi.set(__self__, "continuous", continuous)
|
4277
4285
|
if create_disposition is not None:
|
4278
4286
|
pulumi.set(__self__, "create_disposition", create_disposition)
|
4279
4287
|
if default_dataset is not None:
|
@@ -4333,6 +4341,18 @@ class JobQueryArgs:
|
|
4333
4341
|
def allow_large_results(self, value: Optional[pulumi.Input[bool]]):
|
4334
4342
|
pulumi.set(self, "allow_large_results", value)
|
4335
4343
|
|
4344
|
+
@property
|
4345
|
+
@pulumi.getter
|
4346
|
+
def continuous(self) -> Optional[pulumi.Input[bool]]:
|
4347
|
+
"""
|
4348
|
+
Whether to run the query as continuous or a regular query.
|
4349
|
+
"""
|
4350
|
+
return pulumi.get(self, "continuous")
|
4351
|
+
|
4352
|
+
@continuous.setter
|
4353
|
+
def continuous(self, value: Optional[pulumi.Input[bool]]):
|
4354
|
+
pulumi.set(self, "continuous", value)
|
4355
|
+
|
4336
4356
|
@property
|
4337
4357
|
@pulumi.getter(name="createDisposition")
|
4338
4358
|
def create_disposition(self) -> Optional[pulumi.Input[str]]:
|
pulumi_gcp/bigquery/outputs.py
CHANGED
@@ -3274,6 +3274,7 @@ class JobQuery(dict):
|
|
3274
3274
|
def __init__(__self__, *,
|
3275
3275
|
query: str,
|
3276
3276
|
allow_large_results: Optional[bool] = None,
|
3277
|
+
continuous: Optional[bool] = None,
|
3277
3278
|
create_disposition: Optional[str] = None,
|
3278
3279
|
default_dataset: Optional['outputs.JobQueryDefaultDataset'] = None,
|
3279
3280
|
destination_encryption_configuration: Optional['outputs.JobQueryDestinationEncryptionConfiguration'] = None,
|
@@ -3296,6 +3297,7 @@ class JobQuery(dict):
|
|
3296
3297
|
:param bool allow_large_results: If true and query uses legacy SQL dialect, allows the query to produce arbitrarily large result tables at a slight cost in performance.
|
3297
3298
|
Requires destinationTable to be set. For standard SQL queries, this flag is ignored and large results are always allowed.
|
3298
3299
|
However, you must still set destinationTable when result size exceeds the allowed maximum response size.
|
3300
|
+
:param bool continuous: Whether to run the query as continuous or a regular query.
|
3299
3301
|
:param str create_disposition: Specifies whether the job is allowed to create new tables. The following values are supported:
|
3300
3302
|
CREATE_IF_NEEDED: If the table does not exist, BigQuery creates the table.
|
3301
3303
|
CREATE_NEVER: The table must already exist. If it does not, a 'notFound' error is returned in the job result.
|
@@ -3348,6 +3350,8 @@ class JobQuery(dict):
|
|
3348
3350
|
pulumi.set(__self__, "query", query)
|
3349
3351
|
if allow_large_results is not None:
|
3350
3352
|
pulumi.set(__self__, "allow_large_results", allow_large_results)
|
3353
|
+
if continuous is not None:
|
3354
|
+
pulumi.set(__self__, "continuous", continuous)
|
3351
3355
|
if create_disposition is not None:
|
3352
3356
|
pulumi.set(__self__, "create_disposition", create_disposition)
|
3353
3357
|
if default_dataset is not None:
|
@@ -3399,6 +3403,14 @@ class JobQuery(dict):
|
|
3399
3403
|
"""
|
3400
3404
|
return pulumi.get(self, "allow_large_results")
|
3401
3405
|
|
3406
|
+
@property
|
3407
|
+
@pulumi.getter
|
3408
|
+
def continuous(self) -> Optional[bool]:
|
3409
|
+
"""
|
3410
|
+
Whether to run the query as continuous or a regular query.
|
3411
|
+
"""
|
3412
|
+
return pulumi.get(self, "continuous")
|
3413
|
+
|
3402
3414
|
@property
|
3403
3415
|
@pulumi.getter(name="createDisposition")
|
3404
3416
|
def create_disposition(self) -> Optional[str]:
|
pulumi_gcp/bigquery/table.py
CHANGED
@@ -42,6 +42,7 @@ class TableArgs:
|
|
42
42
|
schema: Optional[pulumi.Input[str]] = None,
|
43
43
|
schema_foreign_type_info: Optional[pulumi.Input['TableSchemaForeignTypeInfoArgs']] = None,
|
44
44
|
table_constraints: Optional[pulumi.Input['TableTableConstraintsArgs']] = None,
|
45
|
+
table_metadata_view: Optional[pulumi.Input[str]] = None,
|
45
46
|
table_replication_info: Optional[pulumi.Input['TableTableReplicationInfoArgs']] = None,
|
46
47
|
time_partitioning: Optional[pulumi.Input['TableTimePartitioningArgs']] = None,
|
47
48
|
view: Optional[pulumi.Input['TableViewArgs']] = None):
|
@@ -98,6 +99,9 @@ class TableArgs:
|
|
98
99
|
:param pulumi.Input['TableSchemaForeignTypeInfoArgs'] schema_foreign_type_info: Specifies metadata of the foreign data type definition in field schema.
|
99
100
|
:param pulumi.Input['TableTableConstraintsArgs'] table_constraints: Defines the primary key and foreign keys.
|
100
101
|
Structure is documented below.
|
102
|
+
:param pulumi.Input[str] table_metadata_view: View sets the optional parameter "view": Specifies the view that determines which table information is returned. By
|
103
|
+
default, basic table information and storage statistics (STORAGE_STATS) are returned. Possible values:
|
104
|
+
TABLE_METADATA_VIEW_UNSPECIFIED, BASIC, STORAGE_STATS, FULL
|
101
105
|
:param pulumi.Input['TableTableReplicationInfoArgs'] table_replication_info: Replication info of a table created
|
102
106
|
using "AS REPLICA" DDL like:
|
103
107
|
`CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv`.
|
@@ -147,6 +151,8 @@ class TableArgs:
|
|
147
151
|
pulumi.set(__self__, "schema_foreign_type_info", schema_foreign_type_info)
|
148
152
|
if table_constraints is not None:
|
149
153
|
pulumi.set(__self__, "table_constraints", table_constraints)
|
154
|
+
if table_metadata_view is not None:
|
155
|
+
pulumi.set(__self__, "table_metadata_view", table_metadata_view)
|
150
156
|
if table_replication_info is not None:
|
151
157
|
pulumi.set(__self__, "table_replication_info", table_replication_info)
|
152
158
|
if time_partitioning is not None:
|
@@ -436,6 +442,20 @@ class TableArgs:
|
|
436
442
|
def table_constraints(self, value: Optional[pulumi.Input['TableTableConstraintsArgs']]):
|
437
443
|
pulumi.set(self, "table_constraints", value)
|
438
444
|
|
445
|
+
@property
|
446
|
+
@pulumi.getter(name="tableMetadataView")
|
447
|
+
def table_metadata_view(self) -> Optional[pulumi.Input[str]]:
|
448
|
+
"""
|
449
|
+
View sets the optional parameter "view": Specifies the view that determines which table information is returned. By
|
450
|
+
default, basic table information and storage statistics (STORAGE_STATS) are returned. Possible values:
|
451
|
+
TABLE_METADATA_VIEW_UNSPECIFIED, BASIC, STORAGE_STATS, FULL
|
452
|
+
"""
|
453
|
+
return pulumi.get(self, "table_metadata_view")
|
454
|
+
|
455
|
+
@table_metadata_view.setter
|
456
|
+
def table_metadata_view(self, value: Optional[pulumi.Input[str]]):
|
457
|
+
pulumi.set(self, "table_metadata_view", value)
|
458
|
+
|
439
459
|
@property
|
440
460
|
@pulumi.getter(name="tableReplicationInfo")
|
441
461
|
def table_replication_info(self) -> Optional[pulumi.Input['TableTableReplicationInfoArgs']]:
|
@@ -512,6 +532,7 @@ class _TableState:
|
|
512
532
|
self_link: Optional[pulumi.Input[str]] = None,
|
513
533
|
table_constraints: Optional[pulumi.Input['TableTableConstraintsArgs']] = None,
|
514
534
|
table_id: Optional[pulumi.Input[str]] = None,
|
535
|
+
table_metadata_view: Optional[pulumi.Input[str]] = None,
|
515
536
|
table_replication_info: Optional[pulumi.Input['TableTableReplicationInfoArgs']] = None,
|
516
537
|
time_partitioning: Optional[pulumi.Input['TableTimePartitioningArgs']] = None,
|
517
538
|
type: Optional[pulumi.Input[str]] = None,
|
@@ -594,6 +615,9 @@ class _TableState:
|
|
594
615
|
Structure is documented below.
|
595
616
|
:param pulumi.Input[str] table_id: A unique ID for the resource.
|
596
617
|
Changing this forces a new resource to be created.
|
618
|
+
:param pulumi.Input[str] table_metadata_view: View sets the optional parameter "view": Specifies the view that determines which table information is returned. By
|
619
|
+
default, basic table information and storage statistics (STORAGE_STATS) are returned. Possible values:
|
620
|
+
TABLE_METADATA_VIEW_UNSPECIFIED, BASIC, STORAGE_STATS, FULL
|
597
621
|
:param pulumi.Input['TableTableReplicationInfoArgs'] table_replication_info: Replication info of a table created
|
598
622
|
using "AS REPLICA" DDL like:
|
599
623
|
`CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv`.
|
@@ -666,6 +690,8 @@ class _TableState:
|
|
666
690
|
pulumi.set(__self__, "table_constraints", table_constraints)
|
667
691
|
if table_id is not None:
|
668
692
|
pulumi.set(__self__, "table_id", table_id)
|
693
|
+
if table_metadata_view is not None:
|
694
|
+
pulumi.set(__self__, "table_metadata_view", table_metadata_view)
|
669
695
|
if table_replication_info is not None:
|
670
696
|
pulumi.set(__self__, "table_replication_info", table_replication_info)
|
671
697
|
if time_partitioning is not None:
|
@@ -1092,6 +1118,20 @@ class _TableState:
|
|
1092
1118
|
def table_id(self, value: Optional[pulumi.Input[str]]):
|
1093
1119
|
pulumi.set(self, "table_id", value)
|
1094
1120
|
|
1121
|
+
@property
|
1122
|
+
@pulumi.getter(name="tableMetadataView")
|
1123
|
+
def table_metadata_view(self) -> Optional[pulumi.Input[str]]:
|
1124
|
+
"""
|
1125
|
+
View sets the optional parameter "view": Specifies the view that determines which table information is returned. By
|
1126
|
+
default, basic table information and storage statistics (STORAGE_STATS) are returned. Possible values:
|
1127
|
+
TABLE_METADATA_VIEW_UNSPECIFIED, BASIC, STORAGE_STATS, FULL
|
1128
|
+
"""
|
1129
|
+
return pulumi.get(self, "table_metadata_view")
|
1130
|
+
|
1131
|
+
@table_metadata_view.setter
|
1132
|
+
def table_metadata_view(self, value: Optional[pulumi.Input[str]]):
|
1133
|
+
pulumi.set(self, "table_metadata_view", value)
|
1134
|
+
|
1095
1135
|
@property
|
1096
1136
|
@pulumi.getter(name="tableReplicationInfo")
|
1097
1137
|
def table_replication_info(self) -> Optional[pulumi.Input['TableTableReplicationInfoArgs']]:
|
@@ -1172,6 +1212,7 @@ class Table(pulumi.CustomResource):
|
|
1172
1212
|
schema_foreign_type_info: Optional[pulumi.Input[Union['TableSchemaForeignTypeInfoArgs', 'TableSchemaForeignTypeInfoArgsDict']]] = None,
|
1173
1213
|
table_constraints: Optional[pulumi.Input[Union['TableTableConstraintsArgs', 'TableTableConstraintsArgsDict']]] = None,
|
1174
1214
|
table_id: Optional[pulumi.Input[str]] = None,
|
1215
|
+
table_metadata_view: Optional[pulumi.Input[str]] = None,
|
1175
1216
|
table_replication_info: Optional[pulumi.Input[Union['TableTableReplicationInfoArgs', 'TableTableReplicationInfoArgsDict']]] = None,
|
1176
1217
|
time_partitioning: Optional[pulumi.Input[Union['TableTimePartitioningArgs', 'TableTimePartitioningArgsDict']]] = None,
|
1177
1218
|
view: Optional[pulumi.Input[Union['TableViewArgs', 'TableViewArgsDict']]] = None,
|
@@ -1314,6 +1355,9 @@ class Table(pulumi.CustomResource):
|
|
1314
1355
|
Structure is documented below.
|
1315
1356
|
:param pulumi.Input[str] table_id: A unique ID for the resource.
|
1316
1357
|
Changing this forces a new resource to be created.
|
1358
|
+
:param pulumi.Input[str] table_metadata_view: View sets the optional parameter "view": Specifies the view that determines which table information is returned. By
|
1359
|
+
default, basic table information and storage statistics (STORAGE_STATS) are returned. Possible values:
|
1360
|
+
TABLE_METADATA_VIEW_UNSPECIFIED, BASIC, STORAGE_STATS, FULL
|
1317
1361
|
:param pulumi.Input[Union['TableTableReplicationInfoArgs', 'TableTableReplicationInfoArgsDict']] table_replication_info: Replication info of a table created
|
1318
1362
|
using "AS REPLICA" DDL like:
|
1319
1363
|
`CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv`.
|
@@ -1450,6 +1494,7 @@ class Table(pulumi.CustomResource):
|
|
1450
1494
|
schema_foreign_type_info: Optional[pulumi.Input[Union['TableSchemaForeignTypeInfoArgs', 'TableSchemaForeignTypeInfoArgsDict']]] = None,
|
1451
1495
|
table_constraints: Optional[pulumi.Input[Union['TableTableConstraintsArgs', 'TableTableConstraintsArgsDict']]] = None,
|
1452
1496
|
table_id: Optional[pulumi.Input[str]] = None,
|
1497
|
+
table_metadata_view: Optional[pulumi.Input[str]] = None,
|
1453
1498
|
table_replication_info: Optional[pulumi.Input[Union['TableTableReplicationInfoArgs', 'TableTableReplicationInfoArgsDict']]] = None,
|
1454
1499
|
time_partitioning: Optional[pulumi.Input[Union['TableTimePartitioningArgs', 'TableTimePartitioningArgsDict']]] = None,
|
1455
1500
|
view: Optional[pulumi.Input[Union['TableViewArgs', 'TableViewArgsDict']]] = None,
|
@@ -1487,6 +1532,7 @@ class Table(pulumi.CustomResource):
|
|
1487
1532
|
if table_id is None and not opts.urn:
|
1488
1533
|
raise TypeError("Missing required property 'table_id'")
|
1489
1534
|
__props__.__dict__["table_id"] = table_id
|
1535
|
+
__props__.__dict__["table_metadata_view"] = table_metadata_view
|
1490
1536
|
__props__.__dict__["table_replication_info"] = table_replication_info
|
1491
1537
|
__props__.__dict__["time_partitioning"] = time_partitioning
|
1492
1538
|
__props__.__dict__["view"] = view
|
@@ -1544,6 +1590,7 @@ class Table(pulumi.CustomResource):
|
|
1544
1590
|
self_link: Optional[pulumi.Input[str]] = None,
|
1545
1591
|
table_constraints: Optional[pulumi.Input[Union['TableTableConstraintsArgs', 'TableTableConstraintsArgsDict']]] = None,
|
1546
1592
|
table_id: Optional[pulumi.Input[str]] = None,
|
1593
|
+
table_metadata_view: Optional[pulumi.Input[str]] = None,
|
1547
1594
|
table_replication_info: Optional[pulumi.Input[Union['TableTableReplicationInfoArgs', 'TableTableReplicationInfoArgsDict']]] = None,
|
1548
1595
|
time_partitioning: Optional[pulumi.Input[Union['TableTimePartitioningArgs', 'TableTimePartitioningArgsDict']]] = None,
|
1549
1596
|
type: Optional[pulumi.Input[str]] = None,
|
@@ -1631,6 +1678,9 @@ class Table(pulumi.CustomResource):
|
|
1631
1678
|
Structure is documented below.
|
1632
1679
|
:param pulumi.Input[str] table_id: A unique ID for the resource.
|
1633
1680
|
Changing this forces a new resource to be created.
|
1681
|
+
:param pulumi.Input[str] table_metadata_view: View sets the optional parameter "view": Specifies the view that determines which table information is returned. By
|
1682
|
+
default, basic table information and storage statistics (STORAGE_STATS) are returned. Possible values:
|
1683
|
+
TABLE_METADATA_VIEW_UNSPECIFIED, BASIC, STORAGE_STATS, FULL
|
1634
1684
|
:param pulumi.Input[Union['TableTableReplicationInfoArgs', 'TableTableReplicationInfoArgsDict']] table_replication_info: Replication info of a table created
|
1635
1685
|
using "AS REPLICA" DDL like:
|
1636
1686
|
`CREATE MATERIALIZED VIEW mv1 AS REPLICA OF src_mv`.
|
@@ -1676,6 +1726,7 @@ class Table(pulumi.CustomResource):
|
|
1676
1726
|
__props__.__dict__["self_link"] = self_link
|
1677
1727
|
__props__.__dict__["table_constraints"] = table_constraints
|
1678
1728
|
__props__.__dict__["table_id"] = table_id
|
1729
|
+
__props__.__dict__["table_metadata_view"] = table_metadata_view
|
1679
1730
|
__props__.__dict__["table_replication_info"] = table_replication_info
|
1680
1731
|
__props__.__dict__["time_partitioning"] = time_partitioning
|
1681
1732
|
__props__.__dict__["type"] = type
|
@@ -1975,6 +2026,16 @@ class Table(pulumi.CustomResource):
|
|
1975
2026
|
"""
|
1976
2027
|
return pulumi.get(self, "table_id")
|
1977
2028
|
|
2029
|
+
@property
|
2030
|
+
@pulumi.getter(name="tableMetadataView")
|
2031
|
+
def table_metadata_view(self) -> pulumi.Output[Optional[str]]:
|
2032
|
+
"""
|
2033
|
+
View sets the optional parameter "view": Specifies the view that determines which table information is returned. By
|
2034
|
+
default, basic table information and storage statistics (STORAGE_STATS) are returned. Possible values:
|
2035
|
+
TABLE_METADATA_VIEW_UNSPECIFIED, BASIC, STORAGE_STATS, FULL
|
2036
|
+
"""
|
2037
|
+
return pulumi.get(self, "table_metadata_view")
|
2038
|
+
|
1978
2039
|
@property
|
1979
2040
|
@pulumi.getter(name="tableReplicationInfo")
|
1980
2041
|
def table_replication_info(self) -> pulumi.Output[Optional['outputs.TableTableReplicationInfo']]:
|
pulumi_gcp/bigtable/table.py
CHANGED
@@ -32,7 +32,7 @@ class TableArgs:
|
|
32
32
|
"""
|
33
33
|
The set of arguments for constructing a Table resource.
|
34
34
|
:param pulumi.Input[str] instance_name: The name of the Bigtable instance.
|
35
|
-
:param pulumi.Input['TableAutomatedBackupPolicyArgs'] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
|
35
|
+
:param pulumi.Input['TableAutomatedBackupPolicyArgs'] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, omit this argument. To disable automated backup on an _existing_ table that has automated backup enabled, set both Retention Period and Frequency to 0.
|
36
36
|
|
37
37
|
-----
|
38
38
|
:param pulumi.Input[str] change_stream_retention: Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
|
@@ -77,7 +77,7 @@ class TableArgs:
|
|
77
77
|
@pulumi.getter(name="automatedBackupPolicy")
|
78
78
|
def automated_backup_policy(self) -> Optional[pulumi.Input['TableAutomatedBackupPolicyArgs']]:
|
79
79
|
"""
|
80
|
-
Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
|
80
|
+
Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, omit this argument. To disable automated backup on an _existing_ table that has automated backup enabled, set both Retention Period and Frequency to 0.
|
81
81
|
|
82
82
|
-----
|
83
83
|
"""
|
@@ -176,7 +176,7 @@ class _TableState:
|
|
176
176
|
split_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
177
177
|
"""
|
178
178
|
Input properties used for looking up and filtering Table resources.
|
179
|
-
:param pulumi.Input['TableAutomatedBackupPolicyArgs'] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
|
179
|
+
:param pulumi.Input['TableAutomatedBackupPolicyArgs'] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, omit this argument. To disable automated backup on an _existing_ table that has automated backup enabled, set both Retention Period and Frequency to 0.
|
180
180
|
|
181
181
|
-----
|
182
182
|
:param pulumi.Input[str] change_stream_retention: Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
|
@@ -211,7 +211,7 @@ class _TableState:
|
|
211
211
|
@pulumi.getter(name="automatedBackupPolicy")
|
212
212
|
def automated_backup_policy(self) -> Optional[pulumi.Input['TableAutomatedBackupPolicyArgs']]:
|
213
213
|
"""
|
214
|
-
Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
|
214
|
+
Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, omit this argument. To disable automated backup on an _existing_ table that has automated backup enabled, set both Retention Period and Frequency to 0.
|
215
215
|
|
216
216
|
-----
|
217
217
|
"""
|
@@ -410,7 +410,7 @@ class Table(pulumi.CustomResource):
|
|
410
410
|
|
411
411
|
:param str resource_name: The name of the resource.
|
412
412
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
413
|
-
:param pulumi.Input[Union['TableAutomatedBackupPolicyArgs', 'TableAutomatedBackupPolicyArgsDict']] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
|
413
|
+
:param pulumi.Input[Union['TableAutomatedBackupPolicyArgs', 'TableAutomatedBackupPolicyArgsDict']] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, omit this argument. To disable automated backup on an _existing_ table that has automated backup enabled, set both Retention Period and Frequency to 0.
|
414
414
|
|
415
415
|
-----
|
416
416
|
:param pulumi.Input[str] change_stream_retention: Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
|
@@ -582,7 +582,7 @@ class Table(pulumi.CustomResource):
|
|
582
582
|
:param str resource_name: The unique name of the resulting resource.
|
583
583
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
584
584
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
585
|
-
:param pulumi.Input[Union['TableAutomatedBackupPolicyArgs', 'TableAutomatedBackupPolicyArgsDict']] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
|
585
|
+
:param pulumi.Input[Union['TableAutomatedBackupPolicyArgs', 'TableAutomatedBackupPolicyArgsDict']] automated_backup_policy: Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, omit this argument. To disable automated backup on an _existing_ table that has automated backup enabled, set both Retention Period and Frequency to 0.
|
586
586
|
|
587
587
|
-----
|
588
588
|
:param pulumi.Input[str] change_stream_retention: Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
|
@@ -614,7 +614,7 @@ class Table(pulumi.CustomResource):
|
|
614
614
|
@pulumi.getter(name="automatedBackupPolicy")
|
615
615
|
def automated_backup_policy(self) -> pulumi.Output[Optional['outputs.TableAutomatedBackupPolicy']]:
|
616
616
|
"""
|
617
|
-
Defines an automated backup policy for a table, specified by Retention Period and Frequency. To disable, set both Retention Period and Frequency to 0.
|
617
|
+
Defines an automated backup policy for a table, specified by Retention Period and Frequency. To _create_ a table with automated backup disabled, omit this argument. To disable automated backup on an _existing_ table that has automated backup enabled, set both Retention Period and Frequency to 0.
|
618
618
|
|
619
619
|
-----
|
620
620
|
"""
|
@@ -2917,6 +2917,10 @@ if not MYPY:
|
|
2917
2917
|
"""
|
2918
2918
|
Information specifying a GKE Cluster. Format is `projects/{project_id}/locations/{location_id}/clusters/{cluster_id}.
|
2919
2919
|
"""
|
2920
|
+
dns_endpoint: NotRequired[pulumi.Input[bool]]
|
2921
|
+
"""
|
2922
|
+
Optional. If set, the cluster will be accessed using the DNS endpoint. Note that both `dns_endpoint` and `internal_ip` cannot be set to true.
|
2923
|
+
"""
|
2920
2924
|
internal_ip: NotRequired[pulumi.Input[bool]]
|
2921
2925
|
"""
|
2922
2926
|
Optional. If true, `cluster` is accessed using the private IP address of the control plane endpoint. Otherwise, the default IP address of the control plane endpoint is used. The default IP address is the private IP address for clusters with private control-plane endpoints and the public IP address otherwise. Only specify this option when `cluster` is a [private GKE cluster](https://cloud.google.com/kubernetes-engine/docs/concepts/private-cluster-concept).
|
@@ -2932,15 +2936,19 @@ elif False:
|
|
2932
2936
|
class TargetGkeArgs:
|
2933
2937
|
def __init__(__self__, *,
|
2934
2938
|
cluster: Optional[pulumi.Input[str]] = None,
|
2939
|
+
dns_endpoint: Optional[pulumi.Input[bool]] = None,
|
2935
2940
|
internal_ip: Optional[pulumi.Input[bool]] = None,
|
2936
2941
|
proxy_url: Optional[pulumi.Input[str]] = None):
|
2937
2942
|
"""
|
2938
2943
|
:param pulumi.Input[str] cluster: Information specifying a GKE Cluster. Format is `projects/{project_id}/locations/{location_id}/clusters/{cluster_id}.
|
2944
|
+
:param pulumi.Input[bool] dns_endpoint: Optional. If set, the cluster will be accessed using the DNS endpoint. Note that both `dns_endpoint` and `internal_ip` cannot be set to true.
|
2939
2945
|
:param pulumi.Input[bool] internal_ip: Optional. If true, `cluster` is accessed using the private IP address of the control plane endpoint. Otherwise, the default IP address of the control plane endpoint is used. The default IP address is the private IP address for clusters with private control-plane endpoints and the public IP address otherwise. Only specify this option when `cluster` is a [private GKE cluster](https://cloud.google.com/kubernetes-engine/docs/concepts/private-cluster-concept).
|
2940
2946
|
:param pulumi.Input[str] proxy_url: Optional. If set, used to configure a [proxy](https://kubernetes.io/docs/concepts/configuration/organize-cluster-access-kubeconfig/#proxy) to the Kubernetes server.
|
2941
2947
|
"""
|
2942
2948
|
if cluster is not None:
|
2943
2949
|
pulumi.set(__self__, "cluster", cluster)
|
2950
|
+
if dns_endpoint is not None:
|
2951
|
+
pulumi.set(__self__, "dns_endpoint", dns_endpoint)
|
2944
2952
|
if internal_ip is not None:
|
2945
2953
|
pulumi.set(__self__, "internal_ip", internal_ip)
|
2946
2954
|
if proxy_url is not None:
|
@@ -2958,6 +2966,18 @@ class TargetGkeArgs:
|
|
2958
2966
|
def cluster(self, value: Optional[pulumi.Input[str]]):
|
2959
2967
|
pulumi.set(self, "cluster", value)
|
2960
2968
|
|
2969
|
+
@property
|
2970
|
+
@pulumi.getter(name="dnsEndpoint")
|
2971
|
+
def dns_endpoint(self) -> Optional[pulumi.Input[bool]]:
|
2972
|
+
"""
|
2973
|
+
Optional. If set, the cluster will be accessed using the DNS endpoint. Note that both `dns_endpoint` and `internal_ip` cannot be set to true.
|
2974
|
+
"""
|
2975
|
+
return pulumi.get(self, "dns_endpoint")
|
2976
|
+
|
2977
|
+
@dns_endpoint.setter
|
2978
|
+
def dns_endpoint(self, value: Optional[pulumi.Input[bool]]):
|
2979
|
+
pulumi.set(self, "dns_endpoint", value)
|
2980
|
+
|
2961
2981
|
@property
|
2962
2982
|
@pulumi.getter(name="internalIp")
|
2963
2983
|
def internal_ip(self) -> Optional[pulumi.Input[bool]]:
|