pulumi-gcp 8.11.0a1734157575__py3-none-any.whl → 8.11.0a1734385115__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 +91 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +29 -0
- pulumi_gcp/accesscontextmanager/outputs.py +18 -0
- pulumi_gcp/accesscontextmanager/service_perimeter.py +36 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +6 -0
- pulumi_gcp/apigee/app_group.py +7 -7
- pulumi_gcp/applicationintegration/client.py +8 -6
- pulumi_gcp/artifactregistry/_inputs.py +24 -15
- pulumi_gcp/artifactregistry/outputs.py +32 -20
- pulumi_gcp/artifactregistry/repository.py +128 -0
- pulumi_gcp/assuredworkloads/workload.py +7 -7
- pulumi_gcp/backupdisasterrecovery/__init__.py +2 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +2 -2
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +12 -8
- pulumi_gcp/backupdisasterrecovery/get_backup.py +153 -0
- pulumi_gcp/backupdisasterrecovery/get_backup_vault.py +415 -0
- pulumi_gcp/backupdisasterrecovery/outputs.py +63 -0
- pulumi_gcp/bigquery/app_profile.py +75 -0
- pulumi_gcp/billing/_inputs.py +6 -6
- pulumi_gcp/billing/outputs.py +4 -4
- pulumi_gcp/certificateauthority/_inputs.py +9 -9
- pulumi_gcp/certificateauthority/outputs.py +8 -8
- pulumi_gcp/cloudbuild/_inputs.py +53 -0
- pulumi_gcp/cloudbuild/outputs.py +50 -0
- pulumi_gcp/cloudbuild/worker_pool.py +47 -0
- pulumi_gcp/clouddeploy/_inputs.py +254 -0
- pulumi_gcp/clouddeploy/outputs.py +211 -0
- pulumi_gcp/clouddeploy/target.py +47 -0
- pulumi_gcp/cloudfunctionsv2/_inputs.py +6 -6
- pulumi_gcp/cloudfunctionsv2/outputs.py +8 -8
- pulumi_gcp/cloudrunv2/job.py +4 -4
- pulumi_gcp/cloudrunv2/service.py +4 -4
- pulumi_gcp/composer/get_user_workloads_config_map.py +4 -0
- pulumi_gcp/composer/get_user_workloads_secret.py +4 -0
- pulumi_gcp/composer/user_workloads_config_map.py +14 -0
- pulumi_gcp/composer/user_workloads_secret.py +6 -0
- pulumi_gcp/compute/_inputs.py +566 -25
- pulumi_gcp/compute/disk.py +21 -7
- pulumi_gcp/compute/firewall_policy_rule.py +12 -0
- pulumi_gcp/compute/get_forwarding_rules.py +2 -2
- pulumi_gcp/compute/get_global_forwarding_rule.py +12 -1
- pulumi_gcp/compute/get_instance_group_manager.py +12 -1
- pulumi_gcp/compute/get_network.py +35 -1
- pulumi_gcp/compute/get_region_instance_group_manager.py +12 -1
- pulumi_gcp/compute/get_region_network_endpoint_group.py +12 -1
- pulumi_gcp/compute/global_forwarding_rule.py +28 -0
- pulumi_gcp/compute/instance_group_manager.py +28 -0
- pulumi_gcp/compute/network.py +75 -0
- pulumi_gcp/compute/outputs.py +655 -26
- pulumi_gcp/compute/region_health_check.py +28 -0
- pulumi_gcp/compute/region_instance_group_manager.py +28 -0
- pulumi_gcp/compute/region_network_endpoint.py +28 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +70 -2
- pulumi_gcp/compute/subnetwork.py +30 -2
- pulumi_gcp/compute/url_map.py +7 -7
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +201 -3
- pulumi_gcp/container/cluster.py +68 -14
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/outputs.py +249 -3
- pulumi_gcp/dataproc/_inputs.py +209 -1
- pulumi_gcp/dataproc/batch.py +76 -0
- pulumi_gcp/dataproc/outputs.py +169 -3
- pulumi_gcp/diagflow/_inputs.py +3 -3
- pulumi_gcp/diagflow/outputs.py +2 -2
- pulumi_gcp/discoveryengine/search_engine.py +7 -7
- pulumi_gcp/firebaserules/release.py +76 -0
- pulumi_gcp/firestore/field.py +4 -4
- pulumi_gcp/gemini/__init__.py +15 -0
- pulumi_gcp/gemini/_inputs.py +183 -0
- pulumi_gcp/gemini/code_repository_index.py +659 -0
- pulumi_gcp/gemini/get_repository_group_iam_policy.py +171 -0
- pulumi_gcp/gemini/outputs.py +130 -0
- pulumi_gcp/gemini/repository_group.py +586 -0
- pulumi_gcp/gemini/repository_group_iam_binding.py +604 -0
- pulumi_gcp/gemini/repository_group_iam_member.py +604 -0
- pulumi_gcp/gemini/repository_group_iam_policy.py +443 -0
- pulumi_gcp/gkehub/_inputs.py +30 -10
- pulumi_gcp/gkehub/membership_binding.py +6 -6
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +4 -4
- pulumi_gcp/gkehub/outputs.py +21 -7
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
- pulumi_gcp/iam/__init__.py +1 -0
- pulumi_gcp/iam/_inputs.py +137 -0
- pulumi_gcp/iam/folders_policy_binding.py +16 -0
- pulumi_gcp/iam/organizations_policy_binding.py +16 -0
- pulumi_gcp/iam/outputs.py +99 -0
- pulumi_gcp/iam/principal_access_boundary_policy.py +16 -0
- pulumi_gcp/iam/projects_policy_binding.py +917 -0
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/_inputs.py +15 -15
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/integrationconnectors/outputs.py +10 -10
- pulumi_gcp/monitoring/_inputs.py +13 -6
- pulumi_gcp/monitoring/outputs.py +10 -4
- pulumi_gcp/netapp/_inputs.py +3 -3
- pulumi_gcp/netapp/active_directory.py +7 -7
- pulumi_gcp/netapp/outputs.py +2 -2
- pulumi_gcp/netapp/volume.py +11 -11
- pulumi_gcp/networkconnectivity/spoke.py +10 -10
- pulumi_gcp/networksecurity/__init__.py +4 -0
- pulumi_gcp/networksecurity/_inputs.py +115 -0
- pulumi_gcp/networksecurity/mirroring_deployment.py +848 -0
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +752 -0
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +737 -0
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +840 -0
- pulumi_gcp/networksecurity/outputs.py +70 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +42 -4
- pulumi_gcp/oracledatabase/cloud_exadata_infrastructure.py +42 -4
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +50 -8
- pulumi_gcp/oracledatabase/get_autonomous_database.py +12 -1
- pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructure.py +12 -1
- pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +12 -1
- pulumi_gcp/oracledatabase/outputs.py +21 -0
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/parallelstore/instance.py +4 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +435 -3
- pulumi_gcp/redis/cluster.py +287 -16
- pulumi_gcp/redis/outputs.py +304 -2
- pulumi_gcp/serviceaccount/get_account_id_token.py +2 -2
- pulumi_gcp/serviceaccount/get_account_key.py +2 -2
- pulumi_gcp/storage/get_bucket.py +2 -2
- pulumi_gcp/storage/get_bucket_object_content.py +2 -2
- pulumi_gcp/tpu/__init__.py +1 -0
- pulumi_gcp/tpu/_inputs.py +188 -6
- pulumi_gcp/tpu/outputs.py +164 -4
- pulumi_gcp/tpu/v2_queued_resource.py +434 -0
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/ai_index_endpoint.py +2 -2
- {pulumi_gcp-8.11.0a1734157575.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/METADATA +3 -3
- {pulumi_gcp-8.11.0a1734157575.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/RECORD +142 -125
- {pulumi_gcp-8.11.0a1734157575.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.11.0a1734157575.dist-info → pulumi_gcp-8.11.0a1734385115.dist-info}/top_level.txt +0 -0
@@ -321,6 +321,7 @@ class _RegionHealthCheckState:
|
|
321
321
|
creation_timestamp: Optional[pulumi.Input[str]] = None,
|
322
322
|
description: Optional[pulumi.Input[str]] = None,
|
323
323
|
grpc_health_check: Optional[pulumi.Input['RegionHealthCheckGrpcHealthCheckArgs']] = None,
|
324
|
+
health_check_id: Optional[pulumi.Input[int]] = None,
|
324
325
|
healthy_threshold: Optional[pulumi.Input[int]] = None,
|
325
326
|
http2_health_check: Optional[pulumi.Input['RegionHealthCheckHttp2HealthCheckArgs']] = None,
|
326
327
|
http_health_check: Optional[pulumi.Input['RegionHealthCheckHttpHealthCheckArgs']] = None,
|
@@ -344,6 +345,7 @@ class _RegionHealthCheckState:
|
|
344
345
|
you create the resource.
|
345
346
|
:param pulumi.Input['RegionHealthCheckGrpcHealthCheckArgs'] grpc_health_check: A nested object resource.
|
346
347
|
Structure is documented below.
|
348
|
+
:param pulumi.Input[int] health_check_id: The unique identifier number for the resource. This identifier is defined by the server.
|
347
349
|
:param pulumi.Input[int] healthy_threshold: A so-far unhealthy instance will be marked healthy after this many
|
348
350
|
consecutive successes. The default value is 2.
|
349
351
|
:param pulumi.Input['RegionHealthCheckHttp2HealthCheckArgs'] http2_health_check: A nested object resource.
|
@@ -388,6 +390,8 @@ class _RegionHealthCheckState:
|
|
388
390
|
pulumi.set(__self__, "description", description)
|
389
391
|
if grpc_health_check is not None:
|
390
392
|
pulumi.set(__self__, "grpc_health_check", grpc_health_check)
|
393
|
+
if health_check_id is not None:
|
394
|
+
pulumi.set(__self__, "health_check_id", health_check_id)
|
391
395
|
if healthy_threshold is not None:
|
392
396
|
pulumi.set(__self__, "healthy_threshold", healthy_threshold)
|
393
397
|
if http2_health_check is not None:
|
@@ -468,6 +472,18 @@ class _RegionHealthCheckState:
|
|
468
472
|
def grpc_health_check(self, value: Optional[pulumi.Input['RegionHealthCheckGrpcHealthCheckArgs']]):
|
469
473
|
pulumi.set(self, "grpc_health_check", value)
|
470
474
|
|
475
|
+
@property
|
476
|
+
@pulumi.getter(name="healthCheckId")
|
477
|
+
def health_check_id(self) -> Optional[pulumi.Input[int]]:
|
478
|
+
"""
|
479
|
+
The unique identifier number for the resource. This identifier is defined by the server.
|
480
|
+
"""
|
481
|
+
return pulumi.get(self, "health_check_id")
|
482
|
+
|
483
|
+
@health_check_id.setter
|
484
|
+
def health_check_id(self, value: Optional[pulumi.Input[int]]):
|
485
|
+
pulumi.set(self, "health_check_id", value)
|
486
|
+
|
471
487
|
@property
|
472
488
|
@pulumi.getter(name="healthyThreshold")
|
473
489
|
def healthy_threshold(self) -> Optional[pulumi.Input[int]]:
|
@@ -1336,6 +1352,7 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
1336
1352
|
__props__.__dict__["timeout_sec"] = timeout_sec
|
1337
1353
|
__props__.__dict__["unhealthy_threshold"] = unhealthy_threshold
|
1338
1354
|
__props__.__dict__["creation_timestamp"] = None
|
1355
|
+
__props__.__dict__["health_check_id"] = None
|
1339
1356
|
__props__.__dict__["self_link"] = None
|
1340
1357
|
__props__.__dict__["type"] = None
|
1341
1358
|
super(RegionHealthCheck, __self__).__init__(
|
@@ -1352,6 +1369,7 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
1352
1369
|
creation_timestamp: Optional[pulumi.Input[str]] = None,
|
1353
1370
|
description: Optional[pulumi.Input[str]] = None,
|
1354
1371
|
grpc_health_check: Optional[pulumi.Input[Union['RegionHealthCheckGrpcHealthCheckArgs', 'RegionHealthCheckGrpcHealthCheckArgsDict']]] = None,
|
1372
|
+
health_check_id: Optional[pulumi.Input[int]] = None,
|
1355
1373
|
healthy_threshold: Optional[pulumi.Input[int]] = None,
|
1356
1374
|
http2_health_check: Optional[pulumi.Input[Union['RegionHealthCheckHttp2HealthCheckArgs', 'RegionHealthCheckHttp2HealthCheckArgsDict']]] = None,
|
1357
1375
|
http_health_check: Optional[pulumi.Input[Union['RegionHealthCheckHttpHealthCheckArgs', 'RegionHealthCheckHttpHealthCheckArgsDict']]] = None,
|
@@ -1380,6 +1398,7 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
1380
1398
|
you create the resource.
|
1381
1399
|
:param pulumi.Input[Union['RegionHealthCheckGrpcHealthCheckArgs', 'RegionHealthCheckGrpcHealthCheckArgsDict']] grpc_health_check: A nested object resource.
|
1382
1400
|
Structure is documented below.
|
1401
|
+
:param pulumi.Input[int] health_check_id: The unique identifier number for the resource. This identifier is defined by the server.
|
1383
1402
|
:param pulumi.Input[int] healthy_threshold: A so-far unhealthy instance will be marked healthy after this many
|
1384
1403
|
consecutive successes. The default value is 2.
|
1385
1404
|
:param pulumi.Input[Union['RegionHealthCheckHttp2HealthCheckArgs', 'RegionHealthCheckHttp2HealthCheckArgsDict']] http2_health_check: A nested object resource.
|
@@ -1424,6 +1443,7 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
1424
1443
|
__props__.__dict__["creation_timestamp"] = creation_timestamp
|
1425
1444
|
__props__.__dict__["description"] = description
|
1426
1445
|
__props__.__dict__["grpc_health_check"] = grpc_health_check
|
1446
|
+
__props__.__dict__["health_check_id"] = health_check_id
|
1427
1447
|
__props__.__dict__["healthy_threshold"] = healthy_threshold
|
1428
1448
|
__props__.__dict__["http2_health_check"] = http2_health_check
|
1429
1449
|
__props__.__dict__["http_health_check"] = http_health_check
|
@@ -1475,6 +1495,14 @@ class RegionHealthCheck(pulumi.CustomResource):
|
|
1475
1495
|
"""
|
1476
1496
|
return pulumi.get(self, "grpc_health_check")
|
1477
1497
|
|
1498
|
+
@property
|
1499
|
+
@pulumi.getter(name="healthCheckId")
|
1500
|
+
def health_check_id(self) -> pulumi.Output[int]:
|
1501
|
+
"""
|
1502
|
+
The unique identifier number for the resource. This identifier is defined by the server.
|
1503
|
+
"""
|
1504
|
+
return pulumi.get(self, "health_check_id")
|
1505
|
+
|
1478
1506
|
@property
|
1479
1507
|
@pulumi.getter(name="healthyThreshold")
|
1480
1508
|
def healthy_threshold(self) -> pulumi.Output[Optional[int]]:
|
@@ -519,6 +519,7 @@ class _RegionInstanceGroupManagerState:
|
|
519
519
|
fingerprint: Optional[pulumi.Input[str]] = None,
|
520
520
|
instance_flexibility_policy: Optional[pulumi.Input['RegionInstanceGroupManagerInstanceFlexibilityPolicyArgs']] = None,
|
521
521
|
instance_group: Optional[pulumi.Input[str]] = None,
|
522
|
+
instance_group_manager_id: Optional[pulumi.Input[int]] = None,
|
522
523
|
instance_lifecycle_policy: Optional[pulumi.Input['RegionInstanceGroupManagerInstanceLifecyclePolicyArgs']] = None,
|
523
524
|
list_managed_instances_results: Optional[pulumi.Input[str]] = None,
|
524
525
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -563,6 +564,7 @@ class _RegionInstanceGroupManagerState:
|
|
563
564
|
:param pulumi.Input['RegionInstanceGroupManagerInstanceFlexibilityPolicyArgs'] instance_flexibility_policy: The flexibility policy for managed instance group. Instance flexibility allows managed instance group to create VMs from multiple types of machines. Instance flexibility configuration on managed instance group overrides instance template configuration. Structure is documented below.
|
564
565
|
- - -
|
565
566
|
:param pulumi.Input[str] instance_group: The full URL of the instance group created by the manager.
|
567
|
+
:param pulumi.Input[int] instance_group_manager_id: The unique identifier number for the resource. This identifier is defined by the server.
|
566
568
|
:param pulumi.Input['RegionInstanceGroupManagerInstanceLifecyclePolicyArgs'] instance_lifecycle_policy: The instance lifecycle policy for this managed instance group.
|
567
569
|
:param pulumi.Input[str] list_managed_instances_results: Pagination behavior of the `listManagedInstances` API
|
568
570
|
method for this managed instance group. Valid values are: `PAGELESS`, `PAGINATED`.
|
@@ -627,6 +629,8 @@ class _RegionInstanceGroupManagerState:
|
|
627
629
|
pulumi.set(__self__, "instance_flexibility_policy", instance_flexibility_policy)
|
628
630
|
if instance_group is not None:
|
629
631
|
pulumi.set(__self__, "instance_group", instance_group)
|
632
|
+
if instance_group_manager_id is not None:
|
633
|
+
pulumi.set(__self__, "instance_group_manager_id", instance_group_manager_id)
|
630
634
|
if instance_lifecycle_policy is not None:
|
631
635
|
pulumi.set(__self__, "instance_lifecycle_policy", instance_lifecycle_policy)
|
632
636
|
if list_managed_instances_results is not None:
|
@@ -801,6 +805,18 @@ class _RegionInstanceGroupManagerState:
|
|
801
805
|
def instance_group(self, value: Optional[pulumi.Input[str]]):
|
802
806
|
pulumi.set(self, "instance_group", value)
|
803
807
|
|
808
|
+
@property
|
809
|
+
@pulumi.getter(name="instanceGroupManagerId")
|
810
|
+
def instance_group_manager_id(self) -> Optional[pulumi.Input[int]]:
|
811
|
+
"""
|
812
|
+
The unique identifier number for the resource. This identifier is defined by the server.
|
813
|
+
"""
|
814
|
+
return pulumi.get(self, "instance_group_manager_id")
|
815
|
+
|
816
|
+
@instance_group_manager_id.setter
|
817
|
+
def instance_group_manager_id(self, value: Optional[pulumi.Input[int]]):
|
818
|
+
pulumi.set(self, "instance_group_manager_id", value)
|
819
|
+
|
804
820
|
@property
|
805
821
|
@pulumi.getter(name="instanceLifecyclePolicy")
|
806
822
|
def instance_lifecycle_policy(self) -> Optional[pulumi.Input['RegionInstanceGroupManagerInstanceLifecyclePolicyArgs']]:
|
@@ -1497,6 +1513,7 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
|
|
1497
1513
|
__props__.__dict__["creation_timestamp"] = None
|
1498
1514
|
__props__.__dict__["fingerprint"] = None
|
1499
1515
|
__props__.__dict__["instance_group"] = None
|
1516
|
+
__props__.__dict__["instance_group_manager_id"] = None
|
1500
1517
|
__props__.__dict__["self_link"] = None
|
1501
1518
|
__props__.__dict__["statuses"] = None
|
1502
1519
|
super(RegionInstanceGroupManager, __self__).__init__(
|
@@ -1519,6 +1536,7 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
|
|
1519
1536
|
fingerprint: Optional[pulumi.Input[str]] = None,
|
1520
1537
|
instance_flexibility_policy: Optional[pulumi.Input[Union['RegionInstanceGroupManagerInstanceFlexibilityPolicyArgs', 'RegionInstanceGroupManagerInstanceFlexibilityPolicyArgsDict']]] = None,
|
1521
1538
|
instance_group: Optional[pulumi.Input[str]] = None,
|
1539
|
+
instance_group_manager_id: Optional[pulumi.Input[int]] = None,
|
1522
1540
|
instance_lifecycle_policy: Optional[pulumi.Input[Union['RegionInstanceGroupManagerInstanceLifecyclePolicyArgs', 'RegionInstanceGroupManagerInstanceLifecyclePolicyArgsDict']]] = None,
|
1523
1541
|
list_managed_instances_results: Optional[pulumi.Input[str]] = None,
|
1524
1542
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -1568,6 +1586,7 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
|
|
1568
1586
|
:param pulumi.Input[Union['RegionInstanceGroupManagerInstanceFlexibilityPolicyArgs', 'RegionInstanceGroupManagerInstanceFlexibilityPolicyArgsDict']] instance_flexibility_policy: The flexibility policy for managed instance group. Instance flexibility allows managed instance group to create VMs from multiple types of machines. Instance flexibility configuration on managed instance group overrides instance template configuration. Structure is documented below.
|
1569
1587
|
- - -
|
1570
1588
|
:param pulumi.Input[str] instance_group: The full URL of the instance group created by the manager.
|
1589
|
+
:param pulumi.Input[int] instance_group_manager_id: The unique identifier number for the resource. This identifier is defined by the server.
|
1571
1590
|
:param pulumi.Input[Union['RegionInstanceGroupManagerInstanceLifecyclePolicyArgs', 'RegionInstanceGroupManagerInstanceLifecyclePolicyArgsDict']] instance_lifecycle_policy: The instance lifecycle policy for this managed instance group.
|
1572
1591
|
:param pulumi.Input[str] list_managed_instances_results: Pagination behavior of the `listManagedInstances` API
|
1573
1592
|
method for this managed instance group. Valid values are: `PAGELESS`, `PAGINATED`.
|
@@ -1626,6 +1645,7 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
|
|
1626
1645
|
__props__.__dict__["fingerprint"] = fingerprint
|
1627
1646
|
__props__.__dict__["instance_flexibility_policy"] = instance_flexibility_policy
|
1628
1647
|
__props__.__dict__["instance_group"] = instance_group
|
1648
|
+
__props__.__dict__["instance_group_manager_id"] = instance_group_manager_id
|
1629
1649
|
__props__.__dict__["instance_lifecycle_policy"] = instance_lifecycle_policy
|
1630
1650
|
__props__.__dict__["list_managed_instances_results"] = list_managed_instances_results
|
1631
1651
|
__props__.__dict__["name"] = name
|
@@ -1740,6 +1760,14 @@ class RegionInstanceGroupManager(pulumi.CustomResource):
|
|
1740
1760
|
"""
|
1741
1761
|
return pulumi.get(self, "instance_group")
|
1742
1762
|
|
1763
|
+
@property
|
1764
|
+
@pulumi.getter(name="instanceGroupManagerId")
|
1765
|
+
def instance_group_manager_id(self) -> pulumi.Output[int]:
|
1766
|
+
"""
|
1767
|
+
The unique identifier number for the resource. This identifier is defined by the server.
|
1768
|
+
"""
|
1769
|
+
return pulumi.get(self, "instance_group_manager_id")
|
1770
|
+
|
1743
1771
|
@property
|
1744
1772
|
@pulumi.getter(name="instanceLifecyclePolicy")
|
1745
1773
|
def instance_lifecycle_policy(self) -> pulumi.Output['outputs.RegionInstanceGroupManagerInstanceLifecyclePolicy']:
|
@@ -171,6 +171,7 @@ class _RegionNetworkEndpointState:
|
|
171
171
|
fqdn: Optional[pulumi.Input[str]] = None,
|
172
172
|
instance: Optional[pulumi.Input[str]] = None,
|
173
173
|
ip_address: Optional[pulumi.Input[str]] = None,
|
174
|
+
network_endpoint_id: Optional[pulumi.Input[int]] = None,
|
174
175
|
port: Optional[pulumi.Input[int]] = None,
|
175
176
|
project: Optional[pulumi.Input[str]] = None,
|
176
177
|
region: Optional[pulumi.Input[str]] = None,
|
@@ -184,6 +185,7 @@ class _RegionNetworkEndpointState:
|
|
184
185
|
This is required for network endpoints of type GCE_VM_IP_PORTMAP.
|
185
186
|
:param pulumi.Input[str] ip_address: IPv4 address external endpoint.
|
186
187
|
This can only be specified when network_endpoint_type of the NEG is INTERNET_IP_PORT.
|
188
|
+
:param pulumi.Input[int] network_endpoint_id: The unique identifier number for the resource. This identifier is defined by the server.
|
187
189
|
:param pulumi.Input[int] port: Port number of network endpoint.
|
188
190
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
189
191
|
If it is not provided, the provider project is used.
|
@@ -201,6 +203,8 @@ class _RegionNetworkEndpointState:
|
|
201
203
|
pulumi.set(__self__, "instance", instance)
|
202
204
|
if ip_address is not None:
|
203
205
|
pulumi.set(__self__, "ip_address", ip_address)
|
206
|
+
if network_endpoint_id is not None:
|
207
|
+
pulumi.set(__self__, "network_endpoint_id", network_endpoint_id)
|
204
208
|
if port is not None:
|
205
209
|
pulumi.set(__self__, "port", port)
|
206
210
|
if project is not None:
|
@@ -261,6 +265,18 @@ class _RegionNetworkEndpointState:
|
|
261
265
|
def ip_address(self, value: Optional[pulumi.Input[str]]):
|
262
266
|
pulumi.set(self, "ip_address", value)
|
263
267
|
|
268
|
+
@property
|
269
|
+
@pulumi.getter(name="networkEndpointId")
|
270
|
+
def network_endpoint_id(self) -> Optional[pulumi.Input[int]]:
|
271
|
+
"""
|
272
|
+
The unique identifier number for the resource. This identifier is defined by the server.
|
273
|
+
"""
|
274
|
+
return pulumi.get(self, "network_endpoint_id")
|
275
|
+
|
276
|
+
@network_endpoint_id.setter
|
277
|
+
def network_endpoint_id(self, value: Optional[pulumi.Input[int]]):
|
278
|
+
pulumi.set(self, "network_endpoint_id", value)
|
279
|
+
|
264
280
|
@property
|
265
281
|
@pulumi.getter
|
266
282
|
def port(self) -> Optional[pulumi.Input[int]]:
|
@@ -654,6 +670,7 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
654
670
|
if region_network_endpoint_group is None and not opts.urn:
|
655
671
|
raise TypeError("Missing required property 'region_network_endpoint_group'")
|
656
672
|
__props__.__dict__["region_network_endpoint_group"] = region_network_endpoint_group
|
673
|
+
__props__.__dict__["network_endpoint_id"] = None
|
657
674
|
super(RegionNetworkEndpoint, __self__).__init__(
|
658
675
|
'gcp:compute/regionNetworkEndpoint:RegionNetworkEndpoint',
|
659
676
|
resource_name,
|
@@ -668,6 +685,7 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
668
685
|
fqdn: Optional[pulumi.Input[str]] = None,
|
669
686
|
instance: Optional[pulumi.Input[str]] = None,
|
670
687
|
ip_address: Optional[pulumi.Input[str]] = None,
|
688
|
+
network_endpoint_id: Optional[pulumi.Input[int]] = None,
|
671
689
|
port: Optional[pulumi.Input[int]] = None,
|
672
690
|
project: Optional[pulumi.Input[str]] = None,
|
673
691
|
region: Optional[pulumi.Input[str]] = None,
|
@@ -686,6 +704,7 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
686
704
|
This is required for network endpoints of type GCE_VM_IP_PORTMAP.
|
687
705
|
:param pulumi.Input[str] ip_address: IPv4 address external endpoint.
|
688
706
|
This can only be specified when network_endpoint_type of the NEG is INTERNET_IP_PORT.
|
707
|
+
:param pulumi.Input[int] network_endpoint_id: The unique identifier number for the resource. This identifier is defined by the server.
|
689
708
|
:param pulumi.Input[int] port: Port number of network endpoint.
|
690
709
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
691
710
|
If it is not provided, the provider project is used.
|
@@ -703,6 +722,7 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
703
722
|
__props__.__dict__["fqdn"] = fqdn
|
704
723
|
__props__.__dict__["instance"] = instance
|
705
724
|
__props__.__dict__["ip_address"] = ip_address
|
725
|
+
__props__.__dict__["network_endpoint_id"] = network_endpoint_id
|
706
726
|
__props__.__dict__["port"] = port
|
707
727
|
__props__.__dict__["project"] = project
|
708
728
|
__props__.__dict__["region"] = region
|
@@ -744,6 +764,14 @@ class RegionNetworkEndpoint(pulumi.CustomResource):
|
|
744
764
|
"""
|
745
765
|
return pulumi.get(self, "ip_address")
|
746
766
|
|
767
|
+
@property
|
768
|
+
@pulumi.getter(name="networkEndpointId")
|
769
|
+
def network_endpoint_id(self) -> pulumi.Output[int]:
|
770
|
+
"""
|
771
|
+
The unique identifier number for the resource. This identifier is defined by the server.
|
772
|
+
"""
|
773
|
+
return pulumi.get(self, "network_endpoint_id")
|
774
|
+
|
747
775
|
@property
|
748
776
|
@pulumi.getter
|
749
777
|
def port(self) -> pulumi.Output[int]:
|
@@ -30,6 +30,7 @@ class RegionNetworkEndpointGroupArgs:
|
|
30
30
|
network: Optional[pulumi.Input[str]] = None,
|
31
31
|
network_endpoint_type: Optional[pulumi.Input[str]] = None,
|
32
32
|
project: Optional[pulumi.Input[str]] = None,
|
33
|
+
psc_data: Optional[pulumi.Input['RegionNetworkEndpointGroupPscDataArgs']] = None,
|
33
34
|
psc_target_service: Optional[pulumi.Input[str]] = None,
|
34
35
|
serverless_deployment: Optional[pulumi.Input['RegionNetworkEndpointGroupServerlessDeploymentArgs']] = None,
|
35
36
|
subnetwork: Optional[pulumi.Input[str]] = None):
|
@@ -65,6 +66,8 @@ class RegionNetworkEndpointGroupArgs:
|
|
65
66
|
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`, `GCE_VM_IP_PORTMAP`.
|
66
67
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
67
68
|
If it is not provided, the provider project is used.
|
69
|
+
:param pulumi.Input['RegionNetworkEndpointGroupPscDataArgs'] psc_data: This field is only used for PSC NEGs.
|
70
|
+
Structure is documented below.
|
68
71
|
:param pulumi.Input[str] psc_target_service: This field is only used for PSC and INTERNET NEGs.
|
69
72
|
The target service url used to set up private service connection to
|
70
73
|
a Google API or a PSC Producer Service Attachment.
|
@@ -91,6 +94,8 @@ class RegionNetworkEndpointGroupArgs:
|
|
91
94
|
pulumi.set(__self__, "network_endpoint_type", network_endpoint_type)
|
92
95
|
if project is not None:
|
93
96
|
pulumi.set(__self__, "project", project)
|
97
|
+
if psc_data is not None:
|
98
|
+
pulumi.set(__self__, "psc_data", psc_data)
|
94
99
|
if psc_target_service is not None:
|
95
100
|
pulumi.set(__self__, "psc_target_service", psc_target_service)
|
96
101
|
if serverless_deployment is not None:
|
@@ -227,6 +232,19 @@ class RegionNetworkEndpointGroupArgs:
|
|
227
232
|
def project(self, value: Optional[pulumi.Input[str]]):
|
228
233
|
pulumi.set(self, "project", value)
|
229
234
|
|
235
|
+
@property
|
236
|
+
@pulumi.getter(name="pscData")
|
237
|
+
def psc_data(self) -> Optional[pulumi.Input['RegionNetworkEndpointGroupPscDataArgs']]:
|
238
|
+
"""
|
239
|
+
This field is only used for PSC NEGs.
|
240
|
+
Structure is documented below.
|
241
|
+
"""
|
242
|
+
return pulumi.get(self, "psc_data")
|
243
|
+
|
244
|
+
@psc_data.setter
|
245
|
+
def psc_data(self, value: Optional[pulumi.Input['RegionNetworkEndpointGroupPscDataArgs']]):
|
246
|
+
pulumi.set(self, "psc_data", value)
|
247
|
+
|
230
248
|
@property
|
231
249
|
@pulumi.getter(name="pscTargetService")
|
232
250
|
def psc_target_service(self) -> Optional[pulumi.Input[str]]:
|
@@ -280,6 +298,7 @@ class _RegionNetworkEndpointGroupState:
|
|
280
298
|
network: Optional[pulumi.Input[str]] = None,
|
281
299
|
network_endpoint_type: Optional[pulumi.Input[str]] = None,
|
282
300
|
project: Optional[pulumi.Input[str]] = None,
|
301
|
+
psc_data: Optional[pulumi.Input['RegionNetworkEndpointGroupPscDataArgs']] = None,
|
283
302
|
psc_target_service: Optional[pulumi.Input[str]] = None,
|
284
303
|
region: Optional[pulumi.Input[str]] = None,
|
285
304
|
self_link: Optional[pulumi.Input[str]] = None,
|
@@ -313,6 +332,8 @@ class _RegionNetworkEndpointGroupState:
|
|
313
332
|
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`, `GCE_VM_IP_PORTMAP`.
|
314
333
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
315
334
|
If it is not provided, the provider project is used.
|
335
|
+
:param pulumi.Input['RegionNetworkEndpointGroupPscDataArgs'] psc_data: This field is only used for PSC NEGs.
|
336
|
+
Structure is documented below.
|
316
337
|
:param pulumi.Input[str] psc_target_service: This field is only used for PSC and INTERNET NEGs.
|
317
338
|
The target service url used to set up private service connection to
|
318
339
|
a Google API or a PSC Producer Service Attachment.
|
@@ -343,6 +364,8 @@ class _RegionNetworkEndpointGroupState:
|
|
343
364
|
pulumi.set(__self__, "network_endpoint_type", network_endpoint_type)
|
344
365
|
if project is not None:
|
345
366
|
pulumi.set(__self__, "project", project)
|
367
|
+
if psc_data is not None:
|
368
|
+
pulumi.set(__self__, "psc_data", psc_data)
|
346
369
|
if psc_target_service is not None:
|
347
370
|
pulumi.set(__self__, "psc_target_service", psc_target_service)
|
348
371
|
if region is not None:
|
@@ -468,6 +491,19 @@ class _RegionNetworkEndpointGroupState:
|
|
468
491
|
def project(self, value: Optional[pulumi.Input[str]]):
|
469
492
|
pulumi.set(self, "project", value)
|
470
493
|
|
494
|
+
@property
|
495
|
+
@pulumi.getter(name="pscData")
|
496
|
+
def psc_data(self) -> Optional[pulumi.Input['RegionNetworkEndpointGroupPscDataArgs']]:
|
497
|
+
"""
|
498
|
+
This field is only used for PSC NEGs.
|
499
|
+
Structure is documented below.
|
500
|
+
"""
|
501
|
+
return pulumi.get(self, "psc_data")
|
502
|
+
|
503
|
+
@psc_data.setter
|
504
|
+
def psc_data(self, value: Optional[pulumi.Input['RegionNetworkEndpointGroupPscDataArgs']]):
|
505
|
+
pulumi.set(self, "psc_data", value)
|
506
|
+
|
471
507
|
@property
|
472
508
|
@pulumi.getter(name="pscTargetService")
|
473
509
|
def psc_target_service(self) -> Optional[pulumi.Input[str]]:
|
@@ -550,6 +586,7 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
550
586
|
network: Optional[pulumi.Input[str]] = None,
|
551
587
|
network_endpoint_type: Optional[pulumi.Input[str]] = None,
|
552
588
|
project: Optional[pulumi.Input[str]] = None,
|
589
|
+
psc_data: Optional[pulumi.Input[Union['RegionNetworkEndpointGroupPscDataArgs', 'RegionNetworkEndpointGroupPscDataArgsDict']]] = None,
|
553
590
|
psc_target_service: Optional[pulumi.Input[str]] = None,
|
554
591
|
region: Optional[pulumi.Input[str]] = None,
|
555
592
|
serverless_deployment: Optional[pulumi.Input[Union['RegionNetworkEndpointGroupServerlessDeploymentArgs', 'RegionNetworkEndpointGroupServerlessDeploymentArgsDict']]] = None,
|
@@ -758,7 +795,11 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
758
795
|
region="europe-west4",
|
759
796
|
load_balancing_scheme="INTERNAL",
|
760
797
|
backend_service=default_region_backend_service.id,
|
761
|
-
|
798
|
+
ports=[
|
799
|
+
"80",
|
800
|
+
"88",
|
801
|
+
"443",
|
802
|
+
],
|
762
803
|
network=default.name,
|
763
804
|
subnetwork=default_subnetwork.name)
|
764
805
|
default_service_attachment = gcp.compute.ServiceAttachment("default",
|
@@ -774,6 +815,9 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
774
815
|
region="europe-west4",
|
775
816
|
network_endpoint_type="PRIVATE_SERVICE_CONNECT",
|
776
817
|
psc_target_service=default_service_attachment.self_link,
|
818
|
+
psc_data={
|
819
|
+
"producer_port": "88",
|
820
|
+
},
|
777
821
|
network=default.self_link,
|
778
822
|
subnetwork=default_subnetwork.self_link)
|
779
823
|
```
|
@@ -881,6 +925,8 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
881
925
|
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`, `GCE_VM_IP_PORTMAP`.
|
882
926
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
883
927
|
If it is not provided, the provider project is used.
|
928
|
+
:param pulumi.Input[Union['RegionNetworkEndpointGroupPscDataArgs', 'RegionNetworkEndpointGroupPscDataArgsDict']] psc_data: This field is only used for PSC NEGs.
|
929
|
+
Structure is documented below.
|
884
930
|
:param pulumi.Input[str] psc_target_service: This field is only used for PSC and INTERNET NEGs.
|
885
931
|
The target service url used to set up private service connection to
|
886
932
|
a Google API or a PSC Producer Service Attachment.
|
@@ -1103,7 +1149,11 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
1103
1149
|
region="europe-west4",
|
1104
1150
|
load_balancing_scheme="INTERNAL",
|
1105
1151
|
backend_service=default_region_backend_service.id,
|
1106
|
-
|
1152
|
+
ports=[
|
1153
|
+
"80",
|
1154
|
+
"88",
|
1155
|
+
"443",
|
1156
|
+
],
|
1107
1157
|
network=default.name,
|
1108
1158
|
subnetwork=default_subnetwork.name)
|
1109
1159
|
default_service_attachment = gcp.compute.ServiceAttachment("default",
|
@@ -1119,6 +1169,9 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
1119
1169
|
region="europe-west4",
|
1120
1170
|
network_endpoint_type="PRIVATE_SERVICE_CONNECT",
|
1121
1171
|
psc_target_service=default_service_attachment.self_link,
|
1172
|
+
psc_data={
|
1173
|
+
"producer_port": "88",
|
1174
|
+
},
|
1122
1175
|
network=default.self_link,
|
1123
1176
|
subnetwork=default_subnetwork.self_link)
|
1124
1177
|
```
|
@@ -1221,6 +1274,7 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
1221
1274
|
network: Optional[pulumi.Input[str]] = None,
|
1222
1275
|
network_endpoint_type: Optional[pulumi.Input[str]] = None,
|
1223
1276
|
project: Optional[pulumi.Input[str]] = None,
|
1277
|
+
psc_data: Optional[pulumi.Input[Union['RegionNetworkEndpointGroupPscDataArgs', 'RegionNetworkEndpointGroupPscDataArgsDict']]] = None,
|
1224
1278
|
psc_target_service: Optional[pulumi.Input[str]] = None,
|
1225
1279
|
region: Optional[pulumi.Input[str]] = None,
|
1226
1280
|
serverless_deployment: Optional[pulumi.Input[Union['RegionNetworkEndpointGroupServerlessDeploymentArgs', 'RegionNetworkEndpointGroupServerlessDeploymentArgsDict']]] = None,
|
@@ -1242,6 +1296,7 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
1242
1296
|
__props__.__dict__["network"] = network
|
1243
1297
|
__props__.__dict__["network_endpoint_type"] = network_endpoint_type
|
1244
1298
|
__props__.__dict__["project"] = project
|
1299
|
+
__props__.__dict__["psc_data"] = psc_data
|
1245
1300
|
__props__.__dict__["psc_target_service"] = psc_target_service
|
1246
1301
|
if region is None and not opts.urn:
|
1247
1302
|
raise TypeError("Missing required property 'region'")
|
@@ -1267,6 +1322,7 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
1267
1322
|
network: Optional[pulumi.Input[str]] = None,
|
1268
1323
|
network_endpoint_type: Optional[pulumi.Input[str]] = None,
|
1269
1324
|
project: Optional[pulumi.Input[str]] = None,
|
1325
|
+
psc_data: Optional[pulumi.Input[Union['RegionNetworkEndpointGroupPscDataArgs', 'RegionNetworkEndpointGroupPscDataArgsDict']]] = None,
|
1270
1326
|
psc_target_service: Optional[pulumi.Input[str]] = None,
|
1271
1327
|
region: Optional[pulumi.Input[str]] = None,
|
1272
1328
|
self_link: Optional[pulumi.Input[str]] = None,
|
@@ -1305,6 +1361,8 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
1305
1361
|
Possible values are: `SERVERLESS`, `PRIVATE_SERVICE_CONNECT`, `INTERNET_IP_PORT`, `INTERNET_FQDN_PORT`, `GCE_VM_IP_PORTMAP`.
|
1306
1362
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
1307
1363
|
If it is not provided, the provider project is used.
|
1364
|
+
:param pulumi.Input[Union['RegionNetworkEndpointGroupPscDataArgs', 'RegionNetworkEndpointGroupPscDataArgsDict']] psc_data: This field is only used for PSC NEGs.
|
1365
|
+
Structure is documented below.
|
1308
1366
|
:param pulumi.Input[str] psc_target_service: This field is only used for PSC and INTERNET NEGs.
|
1309
1367
|
The target service url used to set up private service connection to
|
1310
1368
|
a Google API or a PSC Producer Service Attachment.
|
@@ -1331,6 +1389,7 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
1331
1389
|
__props__.__dict__["network"] = network
|
1332
1390
|
__props__.__dict__["network_endpoint_type"] = network_endpoint_type
|
1333
1391
|
__props__.__dict__["project"] = project
|
1392
|
+
__props__.__dict__["psc_data"] = psc_data
|
1334
1393
|
__props__.__dict__["psc_target_service"] = psc_target_service
|
1335
1394
|
__props__.__dict__["region"] = region
|
1336
1395
|
__props__.__dict__["self_link"] = self_link
|
@@ -1420,6 +1479,15 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
1420
1479
|
"""
|
1421
1480
|
return pulumi.get(self, "project")
|
1422
1481
|
|
1482
|
+
@property
|
1483
|
+
@pulumi.getter(name="pscData")
|
1484
|
+
def psc_data(self) -> pulumi.Output[Optional['outputs.RegionNetworkEndpointGroupPscData']]:
|
1485
|
+
"""
|
1486
|
+
This field is only used for PSC NEGs.
|
1487
|
+
Structure is documented below.
|
1488
|
+
"""
|
1489
|
+
return pulumi.get(self, "psc_data")
|
1490
|
+
|
1423
1491
|
@property
|
1424
1492
|
@pulumi.getter(name="pscTargetService")
|
1425
1493
|
def psc_target_service(self) -> pulumi.Output[Optional[str]]:
|
pulumi_gcp/compute/subnetwork.py
CHANGED
@@ -441,7 +441,8 @@ class _SubnetworkState:
|
|
441
441
|
secondary_ip_ranges: Optional[pulumi.Input[Sequence[pulumi.Input['SubnetworkSecondaryIpRangeArgs']]]] = None,
|
442
442
|
self_link: Optional[pulumi.Input[str]] = None,
|
443
443
|
send_secondary_ip_range_if_empty: Optional[pulumi.Input[bool]] = None,
|
444
|
-
stack_type: Optional[pulumi.Input[str]] = None
|
444
|
+
stack_type: Optional[pulumi.Input[str]] = None,
|
445
|
+
subnetwork_id: Optional[pulumi.Input[int]] = None):
|
445
446
|
"""
|
446
447
|
Input properties used for looking up and filtering Subnetwork resources.
|
447
448
|
:param pulumi.Input[bool] allow_subnet_cidr_routes_overlap: Typically packets destined to IPs within the subnetwork range that do not match
|
@@ -520,6 +521,7 @@ class _SubnetworkState:
|
|
520
521
|
:param pulumi.Input[str] stack_type: The stack type for this subnet to identify whether the IPv6 feature is enabled or not.
|
521
522
|
If not specified IPV4_ONLY will be used.
|
522
523
|
Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
|
524
|
+
:param pulumi.Input[int] subnetwork_id: The unique identifier number for the resource. This identifier is defined by the server.
|
523
525
|
"""
|
524
526
|
if allow_subnet_cidr_routes_overlap is not None:
|
525
527
|
pulumi.set(__self__, "allow_subnet_cidr_routes_overlap", allow_subnet_cidr_routes_overlap)
|
@@ -572,6 +574,8 @@ class _SubnetworkState:
|
|
572
574
|
pulumi.set(__self__, "send_secondary_ip_range_if_empty", send_secondary_ip_range_if_empty)
|
573
575
|
if stack_type is not None:
|
574
576
|
pulumi.set(__self__, "stack_type", stack_type)
|
577
|
+
if subnetwork_id is not None:
|
578
|
+
pulumi.set(__self__, "subnetwork_id", subnetwork_id)
|
575
579
|
|
576
580
|
@property
|
577
581
|
@pulumi.getter(name="allowSubnetCidrRoutesOverlap")
|
@@ -914,6 +918,18 @@ class _SubnetworkState:
|
|
914
918
|
def stack_type(self, value: Optional[pulumi.Input[str]]):
|
915
919
|
pulumi.set(self, "stack_type", value)
|
916
920
|
|
921
|
+
@property
|
922
|
+
@pulumi.getter(name="subnetworkId")
|
923
|
+
def subnetwork_id(self) -> Optional[pulumi.Input[int]]:
|
924
|
+
"""
|
925
|
+
The unique identifier number for the resource. This identifier is defined by the server.
|
926
|
+
"""
|
927
|
+
return pulumi.get(self, "subnetwork_id")
|
928
|
+
|
929
|
+
@subnetwork_id.setter
|
930
|
+
def subnetwork_id(self, value: Optional[pulumi.Input[int]]):
|
931
|
+
pulumi.set(self, "subnetwork_id", value)
|
932
|
+
|
917
933
|
|
918
934
|
class Subnetwork(pulumi.CustomResource):
|
919
935
|
@overload
|
@@ -1569,6 +1585,7 @@ class Subnetwork(pulumi.CustomResource):
|
|
1569
1585
|
__props__.__dict__["internal_ipv6_prefix"] = None
|
1570
1586
|
__props__.__dict__["ipv6_cidr_range"] = None
|
1571
1587
|
__props__.__dict__["self_link"] = None
|
1588
|
+
__props__.__dict__["subnetwork_id"] = None
|
1572
1589
|
super(Subnetwork, __self__).__init__(
|
1573
1590
|
'gcp:compute/subnetwork:Subnetwork',
|
1574
1591
|
resource_name,
|
@@ -1602,7 +1619,8 @@ class Subnetwork(pulumi.CustomResource):
|
|
1602
1619
|
secondary_ip_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SubnetworkSecondaryIpRangeArgs', 'SubnetworkSecondaryIpRangeArgsDict']]]]] = None,
|
1603
1620
|
self_link: Optional[pulumi.Input[str]] = None,
|
1604
1621
|
send_secondary_ip_range_if_empty: Optional[pulumi.Input[bool]] = None,
|
1605
|
-
stack_type: Optional[pulumi.Input[str]] = None
|
1622
|
+
stack_type: Optional[pulumi.Input[str]] = None,
|
1623
|
+
subnetwork_id: Optional[pulumi.Input[int]] = None) -> 'Subnetwork':
|
1606
1624
|
"""
|
1607
1625
|
Get an existing Subnetwork resource's state with the given name, id, and optional extra
|
1608
1626
|
properties used to qualify the lookup.
|
@@ -1686,6 +1704,7 @@ class Subnetwork(pulumi.CustomResource):
|
|
1686
1704
|
:param pulumi.Input[str] stack_type: The stack type for this subnet to identify whether the IPv6 feature is enabled or not.
|
1687
1705
|
If not specified IPV4_ONLY will be used.
|
1688
1706
|
Possible values are: `IPV4_ONLY`, `IPV4_IPV6`.
|
1707
|
+
:param pulumi.Input[int] subnetwork_id: The unique identifier number for the resource. This identifier is defined by the server.
|
1689
1708
|
"""
|
1690
1709
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
1691
1710
|
|
@@ -1715,6 +1734,7 @@ class Subnetwork(pulumi.CustomResource):
|
|
1715
1734
|
__props__.__dict__["self_link"] = self_link
|
1716
1735
|
__props__.__dict__["send_secondary_ip_range_if_empty"] = send_secondary_ip_range_if_empty
|
1717
1736
|
__props__.__dict__["stack_type"] = stack_type
|
1737
|
+
__props__.__dict__["subnetwork_id"] = subnetwork_id
|
1718
1738
|
return Subnetwork(resource_name, opts=opts, __props__=__props__)
|
1719
1739
|
|
1720
1740
|
@property
|
@@ -1962,3 +1982,11 @@ class Subnetwork(pulumi.CustomResource):
|
|
1962
1982
|
"""
|
1963
1983
|
return pulumi.get(self, "stack_type")
|
1964
1984
|
|
1985
|
+
@property
|
1986
|
+
@pulumi.getter(name="subnetworkId")
|
1987
|
+
def subnetwork_id(self) -> pulumi.Output[int]:
|
1988
|
+
"""
|
1989
|
+
The unique identifier number for the resource. This identifier is defined by the server.
|
1990
|
+
"""
|
1991
|
+
return pulumi.get(self, "subnetwork_id")
|
1992
|
+
|
pulumi_gcp/compute/url_map.py
CHANGED
@@ -34,7 +34,7 @@ class URLMapArgs:
|
|
34
34
|
tests: Optional[pulumi.Input[Sequence[pulumi.Input['URLMapTestArgs']]]] = None):
|
35
35
|
"""
|
36
36
|
The set of arguments for constructing a URLMap resource.
|
37
|
-
:param pulumi.Input['URLMapDefaultCustomErrorResponsePolicyArgs'] default_custom_error_response_policy: defaultCustomErrorResponsePolicy specifies how the Load Balancer returns error responses when
|
37
|
+
:param pulumi.Input['URLMapDefaultCustomErrorResponsePolicyArgs'] default_custom_error_response_policy: defaultCustomErrorResponsePolicy specifies how the Load Balancer returns error responses when BackendService or BackendBucket responds with an error.
|
38
38
|
This policy takes effect at the PathMatcher level and applies only when no policy has been defined for the error code at lower levels like RouteRule and PathRule within this PathMatcher. If an error code does not have a policy defined in defaultCustomErrorResponsePolicy, then a policy defined for the error code in UrlMap.defaultCustomErrorResponsePolicy takes effect.
|
39
39
|
For example, consider a UrlMap with the following configuration:
|
40
40
|
UrlMap.defaultCustomErrorResponsePolicy is configured with policies for 5xx and 4xx errors
|
@@ -107,7 +107,7 @@ class URLMapArgs:
|
|
107
107
|
@pulumi.getter(name="defaultCustomErrorResponsePolicy")
|
108
108
|
def default_custom_error_response_policy(self) -> Optional[pulumi.Input['URLMapDefaultCustomErrorResponsePolicyArgs']]:
|
109
109
|
"""
|
110
|
-
defaultCustomErrorResponsePolicy specifies how the Load Balancer returns error responses when
|
110
|
+
defaultCustomErrorResponsePolicy specifies how the Load Balancer returns error responses when BackendService or BackendBucket responds with an error.
|
111
111
|
This policy takes effect at the PathMatcher level and applies only when no policy has been defined for the error code at lower levels like RouteRule and PathRule within this PathMatcher. If an error code does not have a policy defined in defaultCustomErrorResponsePolicy, then a policy defined for the error code in UrlMap.defaultCustomErrorResponsePolicy takes effect.
|
112
112
|
For example, consider a UrlMap with the following configuration:
|
113
113
|
UrlMap.defaultCustomErrorResponsePolicy is configured with policies for 5xx and 4xx errors
|
@@ -291,7 +291,7 @@ class _URLMapState:
|
|
291
291
|
"""
|
292
292
|
Input properties used for looking up and filtering URLMap resources.
|
293
293
|
:param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
|
294
|
-
:param pulumi.Input['URLMapDefaultCustomErrorResponsePolicyArgs'] default_custom_error_response_policy: defaultCustomErrorResponsePolicy specifies how the Load Balancer returns error responses when
|
294
|
+
:param pulumi.Input['URLMapDefaultCustomErrorResponsePolicyArgs'] default_custom_error_response_policy: defaultCustomErrorResponsePolicy specifies how the Load Balancer returns error responses when BackendService or BackendBucket responds with an error.
|
295
295
|
This policy takes effect at the PathMatcher level and applies only when no policy has been defined for the error code at lower levels like RouteRule and PathRule within this PathMatcher. If an error code does not have a policy defined in defaultCustomErrorResponsePolicy, then a policy defined for the error code in UrlMap.defaultCustomErrorResponsePolicy takes effect.
|
296
296
|
For example, consider a UrlMap with the following configuration:
|
297
297
|
UrlMap.defaultCustomErrorResponsePolicy is configured with policies for 5xx and 4xx errors
|
@@ -388,7 +388,7 @@ class _URLMapState:
|
|
388
388
|
@pulumi.getter(name="defaultCustomErrorResponsePolicy")
|
389
389
|
def default_custom_error_response_policy(self) -> Optional[pulumi.Input['URLMapDefaultCustomErrorResponsePolicyArgs']]:
|
390
390
|
"""
|
391
|
-
defaultCustomErrorResponsePolicy specifies how the Load Balancer returns error responses when
|
391
|
+
defaultCustomErrorResponsePolicy specifies how the Load Balancer returns error responses when BackendService or BackendBucket responds with an error.
|
392
392
|
This policy takes effect at the PathMatcher level and applies only when no policy has been defined for the error code at lower levels like RouteRule and PathRule within this PathMatcher. If an error code does not have a policy defined in defaultCustomErrorResponsePolicy, then a policy defined for the error code in UrlMap.defaultCustomErrorResponsePolicy takes effect.
|
393
393
|
For example, consider a UrlMap with the following configuration:
|
394
394
|
UrlMap.defaultCustomErrorResponsePolicy is configured with policies for 5xx and 4xx errors
|
@@ -1291,7 +1291,7 @@ class URLMap(pulumi.CustomResource):
|
|
1291
1291
|
|
1292
1292
|
:param str resource_name: The name of the resource.
|
1293
1293
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1294
|
-
:param pulumi.Input[Union['URLMapDefaultCustomErrorResponsePolicyArgs', 'URLMapDefaultCustomErrorResponsePolicyArgsDict']] default_custom_error_response_policy: defaultCustomErrorResponsePolicy specifies how the Load Balancer returns error responses when
|
1294
|
+
:param pulumi.Input[Union['URLMapDefaultCustomErrorResponsePolicyArgs', 'URLMapDefaultCustomErrorResponsePolicyArgsDict']] default_custom_error_response_policy: defaultCustomErrorResponsePolicy specifies how the Load Balancer returns error responses when BackendService or BackendBucket responds with an error.
|
1295
1295
|
This policy takes effect at the PathMatcher level and applies only when no policy has been defined for the error code at lower levels like RouteRule and PathRule within this PathMatcher. If an error code does not have a policy defined in defaultCustomErrorResponsePolicy, then a policy defined for the error code in UrlMap.defaultCustomErrorResponsePolicy takes effect.
|
1296
1296
|
For example, consider a UrlMap with the following configuration:
|
1297
1297
|
UrlMap.defaultCustomErrorResponsePolicy is configured with policies for 5xx and 4xx errors
|
@@ -2110,7 +2110,7 @@ class URLMap(pulumi.CustomResource):
|
|
2110
2110
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
2111
2111
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
2112
2112
|
:param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
|
2113
|
-
:param pulumi.Input[Union['URLMapDefaultCustomErrorResponsePolicyArgs', 'URLMapDefaultCustomErrorResponsePolicyArgsDict']] default_custom_error_response_policy: defaultCustomErrorResponsePolicy specifies how the Load Balancer returns error responses when
|
2113
|
+
:param pulumi.Input[Union['URLMapDefaultCustomErrorResponsePolicyArgs', 'URLMapDefaultCustomErrorResponsePolicyArgsDict']] default_custom_error_response_policy: defaultCustomErrorResponsePolicy specifies how the Load Balancer returns error responses when BackendService or BackendBucket responds with an error.
|
2114
2114
|
This policy takes effect at the PathMatcher level and applies only when no policy has been defined for the error code at lower levels like RouteRule and PathRule within this PathMatcher. If an error code does not have a policy defined in defaultCustomErrorResponsePolicy, then a policy defined for the error code in UrlMap.defaultCustomErrorResponsePolicy takes effect.
|
2115
2115
|
For example, consider a UrlMap with the following configuration:
|
2116
2116
|
UrlMap.defaultCustomErrorResponsePolicy is configured with policies for 5xx and 4xx errors
|
@@ -2193,7 +2193,7 @@ class URLMap(pulumi.CustomResource):
|
|
2193
2193
|
@pulumi.getter(name="defaultCustomErrorResponsePolicy")
|
2194
2194
|
def default_custom_error_response_policy(self) -> pulumi.Output[Optional['outputs.URLMapDefaultCustomErrorResponsePolicy']]:
|
2195
2195
|
"""
|
2196
|
-
defaultCustomErrorResponsePolicy specifies how the Load Balancer returns error responses when
|
2196
|
+
defaultCustomErrorResponsePolicy specifies how the Load Balancer returns error responses when BackendService or BackendBucket responds with an error.
|
2197
2197
|
This policy takes effect at the PathMatcher level and applies only when no policy has been defined for the error code at lower levels like RouteRule and PathRule within this PathMatcher. If an error code does not have a policy defined in defaultCustomErrorResponsePolicy, then a policy defined for the error code in UrlMap.defaultCustomErrorResponsePolicy takes effect.
|
2198
2198
|
For example, consider a UrlMap with the following configuration:
|
2199
2199
|
UrlMap.defaultCustomErrorResponsePolicy is configured with policies for 5xx and 4xx errors
|
pulumi_gcp/config/__init__.pyi
CHANGED