pulumi-gcp 8.41.0a1755297349__py3-none-any.whl → 8.41.0a1755638986__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 +16 -0
- pulumi_gcp/artifactregistry/__init__.py +3 -0
- pulumi_gcp/artifactregistry/get_package.py +220 -0
- pulumi_gcp/artifactregistry/get_repositories.py +160 -0
- pulumi_gcp/artifactregistry/get_version.py +261 -0
- pulumi_gcp/artifactregistry/outputs.py +100 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +114 -7
- pulumi_gcp/backupdisasterrecovery/get_backup_plan.py +12 -1
- pulumi_gcp/bigquery/dataset.py +2 -2
- pulumi_gcp/composer/user_workloads_config_map.py +26 -2
- pulumi_gcp/compute/_inputs.py +355 -0
- pulumi_gcp/compute/get_region_backend_service.py +12 -1
- pulumi_gcp/compute/outputs.py +404 -0
- pulumi_gcp/compute/region_backend_service.py +257 -0
- pulumi_gcp/compute/region_security_policy.py +54 -0
- pulumi_gcp/compute/service_attachment.py +126 -0
- pulumi_gcp/container/_inputs.py +435 -15
- pulumi_gcp/container/outputs.py +494 -13
- pulumi_gcp/diagflow/__init__.py +1 -0
- pulumi_gcp/diagflow/_inputs.py +168 -0
- pulumi_gcp/diagflow/cx_playbook.py +967 -0
- pulumi_gcp/diagflow/outputs.py +117 -0
- pulumi_gcp/gkeonprem/vmware_admin_cluster.py +24 -3
- pulumi_gcp/memorystore/get_instance.py +12 -1
- pulumi_gcp/memorystore/instance.py +70 -0
- pulumi_gcp/pubsub/subscription.py +84 -0
- pulumi_gcp/pubsub/topic.py +80 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/sql/_inputs.py +82 -4
- pulumi_gcp/sql/database_instance.py +108 -7
- pulumi_gcp/sql/get_database_instance.py +12 -1
- pulumi_gcp/sql/outputs.py +154 -7
- pulumi_gcp/storage/_inputs.py +104 -12
- pulumi_gcp/storage/outputs.py +84 -7
- pulumi_gcp/vertex/__init__.py +1 -0
- pulumi_gcp/vertex/_inputs.py +122 -0
- pulumi_gcp/vertex/ai_rag_engine_config.py +354 -0
- pulumi_gcp/vertex/outputs.py +69 -0
- {pulumi_gcp-8.41.0a1755297349.dist-info → pulumi_gcp-8.41.0a1755638986.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.41.0a1755297349.dist-info → pulumi_gcp-8.41.0a1755638986.dist-info}/RECORD +42 -37
- {pulumi_gcp-8.41.0a1755297349.dist-info → pulumi_gcp-8.41.0a1755638986.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.41.0a1755297349.dist-info → pulumi_gcp-8.41.0a1755638986.dist-info}/top_level.txt +0 -0
@@ -921,6 +921,69 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
921
921
|
}],
|
922
922
|
reconcile_connections=False)
|
923
923
|
```
|
924
|
+
### Service Attachment Cross Region Ilb
|
925
|
+
|
926
|
+
```python
|
927
|
+
import pulumi
|
928
|
+
import pulumi_gcp as gcp
|
929
|
+
|
930
|
+
health_check = gcp.compute.HealthCheck("health_check",
|
931
|
+
name="sa",
|
932
|
+
check_interval_sec=1,
|
933
|
+
timeout_sec=1,
|
934
|
+
tcp_health_check={
|
935
|
+
"port": 80,
|
936
|
+
})
|
937
|
+
backend_service = gcp.compute.BackendService("backend_service",
|
938
|
+
name="sa",
|
939
|
+
load_balancing_scheme="INTERNAL_MANAGED",
|
940
|
+
health_checks=health_check.id)
|
941
|
+
url_map = gcp.compute.URLMap("url_map",
|
942
|
+
name="sa",
|
943
|
+
description="Url map.",
|
944
|
+
default_service=backend_service.id)
|
945
|
+
http_proxy = gcp.compute.TargetHttpProxy("http_proxy",
|
946
|
+
name="sa",
|
947
|
+
description="a description",
|
948
|
+
url_map=url_map.id)
|
949
|
+
network = gcp.compute.Network("network",
|
950
|
+
name="sa",
|
951
|
+
auto_create_subnetworks=False)
|
952
|
+
subnetwork_proxy = gcp.compute.Subnetwork("subnetwork_proxy",
|
953
|
+
name="sa-proxy",
|
954
|
+
region="us-central1",
|
955
|
+
network=network.id,
|
956
|
+
purpose="GLOBAL_MANAGED_PROXY",
|
957
|
+
role="ACTIVE",
|
958
|
+
ip_cidr_range="10.2.0.0/16")
|
959
|
+
subnetwork = gcp.compute.Subnetwork("subnetwork",
|
960
|
+
name="sa",
|
961
|
+
region="us-central1",
|
962
|
+
network=network.id,
|
963
|
+
ip_cidr_range="10.0.0.0/16")
|
964
|
+
forwarding_rule = gcp.compute.GlobalForwardingRule("forwarding_rule",
|
965
|
+
name="sa",
|
966
|
+
target=http_proxy.id,
|
967
|
+
network=network.id,
|
968
|
+
subnetwork=subnetwork.id,
|
969
|
+
port_range="80",
|
970
|
+
load_balancing_scheme="INTERNAL_MANAGED",
|
971
|
+
opts = pulumi.ResourceOptions(depends_on=[subnetwork_proxy]))
|
972
|
+
subnetwork_psc = gcp.compute.Subnetwork("subnetwork_psc",
|
973
|
+
name="sa-psc",
|
974
|
+
region="us-central1",
|
975
|
+
network=network.id,
|
976
|
+
purpose="PRIVATE_SERVICE_CONNECT",
|
977
|
+
ip_cidr_range="10.1.0.0/16")
|
978
|
+
psc_ilb_service_attachment = gcp.compute.ServiceAttachment("psc_ilb_service_attachment",
|
979
|
+
name="sa",
|
980
|
+
region="us-central1",
|
981
|
+
description="A service attachment configured with Terraform",
|
982
|
+
connection_preference="ACCEPT_AUTOMATIC",
|
983
|
+
enable_proxy_protocol=False,
|
984
|
+
nat_subnets=[subnetwork_psc.id],
|
985
|
+
target_service=forwarding_rule.id)
|
986
|
+
```
|
924
987
|
|
925
988
|
## Import
|
926
989
|
|
@@ -1271,6 +1334,69 @@ class ServiceAttachment(pulumi.CustomResource):
|
|
1271
1334
|
}],
|
1272
1335
|
reconcile_connections=False)
|
1273
1336
|
```
|
1337
|
+
### Service Attachment Cross Region Ilb
|
1338
|
+
|
1339
|
+
```python
|
1340
|
+
import pulumi
|
1341
|
+
import pulumi_gcp as gcp
|
1342
|
+
|
1343
|
+
health_check = gcp.compute.HealthCheck("health_check",
|
1344
|
+
name="sa",
|
1345
|
+
check_interval_sec=1,
|
1346
|
+
timeout_sec=1,
|
1347
|
+
tcp_health_check={
|
1348
|
+
"port": 80,
|
1349
|
+
})
|
1350
|
+
backend_service = gcp.compute.BackendService("backend_service",
|
1351
|
+
name="sa",
|
1352
|
+
load_balancing_scheme="INTERNAL_MANAGED",
|
1353
|
+
health_checks=health_check.id)
|
1354
|
+
url_map = gcp.compute.URLMap("url_map",
|
1355
|
+
name="sa",
|
1356
|
+
description="Url map.",
|
1357
|
+
default_service=backend_service.id)
|
1358
|
+
http_proxy = gcp.compute.TargetHttpProxy("http_proxy",
|
1359
|
+
name="sa",
|
1360
|
+
description="a description",
|
1361
|
+
url_map=url_map.id)
|
1362
|
+
network = gcp.compute.Network("network",
|
1363
|
+
name="sa",
|
1364
|
+
auto_create_subnetworks=False)
|
1365
|
+
subnetwork_proxy = gcp.compute.Subnetwork("subnetwork_proxy",
|
1366
|
+
name="sa-proxy",
|
1367
|
+
region="us-central1",
|
1368
|
+
network=network.id,
|
1369
|
+
purpose="GLOBAL_MANAGED_PROXY",
|
1370
|
+
role="ACTIVE",
|
1371
|
+
ip_cidr_range="10.2.0.0/16")
|
1372
|
+
subnetwork = gcp.compute.Subnetwork("subnetwork",
|
1373
|
+
name="sa",
|
1374
|
+
region="us-central1",
|
1375
|
+
network=network.id,
|
1376
|
+
ip_cidr_range="10.0.0.0/16")
|
1377
|
+
forwarding_rule = gcp.compute.GlobalForwardingRule("forwarding_rule",
|
1378
|
+
name="sa",
|
1379
|
+
target=http_proxy.id,
|
1380
|
+
network=network.id,
|
1381
|
+
subnetwork=subnetwork.id,
|
1382
|
+
port_range="80",
|
1383
|
+
load_balancing_scheme="INTERNAL_MANAGED",
|
1384
|
+
opts = pulumi.ResourceOptions(depends_on=[subnetwork_proxy]))
|
1385
|
+
subnetwork_psc = gcp.compute.Subnetwork("subnetwork_psc",
|
1386
|
+
name="sa-psc",
|
1387
|
+
region="us-central1",
|
1388
|
+
network=network.id,
|
1389
|
+
purpose="PRIVATE_SERVICE_CONNECT",
|
1390
|
+
ip_cidr_range="10.1.0.0/16")
|
1391
|
+
psc_ilb_service_attachment = gcp.compute.ServiceAttachment("psc_ilb_service_attachment",
|
1392
|
+
name="sa",
|
1393
|
+
region="us-central1",
|
1394
|
+
description="A service attachment configured with Terraform",
|
1395
|
+
connection_preference="ACCEPT_AUTOMATIC",
|
1396
|
+
enable_proxy_protocol=False,
|
1397
|
+
nat_subnets=[subnetwork_psc.id],
|
1398
|
+
target_service=forwarding_rule.id)
|
1399
|
+
```
|
1274
1400
|
|
1275
1401
|
## Import
|
1276
1402
|
|