pulumi-gcp 8.7.0a1729200523__py3-none-any.whl → 8.7.0a1730196225__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 +70 -0
- pulumi_gcp/accesscontextmanager/service_perimeter.py +2 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +4 -0
- pulumi_gcp/accesscontextmanager/service_perimeters.py +2 -0
- pulumi_gcp/apigee/__init__.py +2 -0
- pulumi_gcp/apigee/_inputs.py +108 -0
- pulumi_gcp/apigee/app_group.py +811 -0
- pulumi_gcp/apigee/developer.py +757 -0
- pulumi_gcp/apigee/outputs.py +64 -0
- pulumi_gcp/artifactregistry/get_docker_image.py +40 -0
- pulumi_gcp/bigquery/connection.py +12 -12
- pulumi_gcp/bigquery/job.py +6 -6
- pulumi_gcp/cloudrunv2/get_service.py +12 -1
- pulumi_gcp/cloudrunv2/service.py +92 -0
- pulumi_gcp/compute/_inputs.py +214 -116
- pulumi_gcp/compute/backend_service.py +76 -0
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_instance.py +29 -1
- pulumi_gcp/compute/get_instance_template.py +29 -1
- pulumi_gcp/compute/get_region_instance_group_manager.py +0 -18
- pulumi_gcp/compute/get_region_instance_template.py +29 -1
- pulumi_gcp/compute/instance.py +89 -0
- pulumi_gcp/compute/instance_from_machine_image.py +82 -0
- pulumi_gcp/compute/instance_from_template.py +82 -0
- pulumi_gcp/compute/instance_template.py +75 -0
- pulumi_gcp/compute/network_firewall_policy_association.py +76 -50
- pulumi_gcp/compute/network_firewall_policy_rule.py +149 -103
- pulumi_gcp/compute/outputs.py +170 -80
- pulumi_gcp/compute/region_backend_service.py +94 -0
- pulumi_gcp/compute/region_instance_template.py +75 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +6 -4
- pulumi_gcp/compute/region_network_firewall_policy_association.py +104 -54
- pulumi_gcp/compute/region_network_firewall_policy_rule.py +160 -107
- pulumi_gcp/config/__init__.pyi +4 -0
- pulumi_gcp/config/vars.py +8 -0
- pulumi_gcp/container/attached_cluster.py +9 -6
- pulumi_gcp/container/outputs.py +2 -2
- pulumi_gcp/datastream/stream.py +2 -2
- pulumi_gcp/diagflow/_inputs.py +472 -2
- pulumi_gcp/diagflow/cx_agent.py +64 -4
- pulumi_gcp/diagflow/cx_flow.py +30 -0
- pulumi_gcp/diagflow/outputs.py +378 -2
- pulumi_gcp/gkehub/feature.py +2 -4
- pulumi_gcp/iam/workload_identity_pool_provider.py +56 -0
- pulumi_gcp/looker/instance.py +104 -2
- pulumi_gcp/monitoring/_inputs.py +23 -0
- pulumi_gcp/monitoring/get_secret_version.py +22 -3
- pulumi_gcp/monitoring/outputs.py +16 -0
- pulumi_gcp/networkconnectivity/__init__.py +1 -0
- pulumi_gcp/networkconnectivity/_inputs.py +148 -0
- pulumi_gcp/networkconnectivity/group.py +764 -0
- pulumi_gcp/networkconnectivity/outputs.py +125 -0
- pulumi_gcp/networkconnectivity/spoke.py +144 -0
- pulumi_gcp/networksecurity/server_tls_policy.py +2 -2
- pulumi_gcp/oracledatabase/__init__.py +20 -0
- pulumi_gcp/oracledatabase/_inputs.py +4745 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +983 -0
- pulumi_gcp/oracledatabase/cloud_exadata_infrastructure.py +842 -0
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +1086 -0
- pulumi_gcp/oracledatabase/get_autonomous_database.py +290 -0
- pulumi_gcp/oracledatabase/get_autonomous_databases.py +150 -0
- pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructure.py +257 -0
- pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructures.py +150 -0
- pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +290 -0
- pulumi_gcp/oracledatabase/get_cloud_vm_clusters.py +150 -0
- pulumi_gcp/oracledatabase/get_db_nodes.py +245 -0
- pulumi_gcp/oracledatabase/get_db_servers.py +245 -0
- pulumi_gcp/oracledatabase/outputs.py +9304 -0
- pulumi_gcp/organizations/folder.py +7 -7
- pulumi_gcp/organizations/project.py +7 -7
- pulumi_gcp/orgpolicy/_inputs.py +3 -3
- pulumi_gcp/orgpolicy/outputs.py +2 -2
- pulumi_gcp/privilegedaccessmanager/get_entitlement.py +46 -2
- pulumi_gcp/provider.py +40 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/secretmanager/get_regional_secret_version.py +24 -5
- pulumi_gcp/secretmanager/get_regional_secret_version_access.py +24 -5
- pulumi_gcp/secretmanager/get_secret_version.py +22 -3
- pulumi_gcp/secretmanager/get_secret_version_access.py +22 -3
- pulumi_gcp/secretmanager/regional_secret.py +2 -2
- pulumi_gcp/siteverification/get_token.py +0 -16
- pulumi_gcp/siteverification/owner.py +0 -16
- pulumi_gcp/spanner/_inputs.py +29 -5
- pulumi_gcp/spanner/outputs.py +20 -3
- pulumi_gcp/sql/_inputs.py +6 -6
- pulumi_gcp/sql/outputs.py +4 -4
- pulumi_gcp/sql/user.py +28 -21
- pulumi_gcp/storage/_inputs.py +36 -0
- pulumi_gcp/storage/bucket.py +47 -0
- pulumi_gcp/storage/get_bucket.py +12 -1
- pulumi_gcp/storage/outputs.py +40 -0
- pulumi_gcp/transcoder/__init__.py +11 -0
- pulumi_gcp/transcoder/_inputs.py +3991 -0
- pulumi_gcp/transcoder/job.py +2134 -0
- pulumi_gcp/transcoder/job_template.py +1524 -0
- pulumi_gcp/transcoder/outputs.py +2918 -0
- pulumi_gcp/vertex/ai_deployment_resource_pool.py +2 -2
- pulumi_gcp/vmwareengine/_inputs.py +440 -0
- pulumi_gcp/vmwareengine/cluster.py +100 -2
- pulumi_gcp/vmwareengine/get_cluster.py +12 -1
- pulumi_gcp/vmwareengine/outputs.py +615 -0
- pulumi_gcp/workstations/_inputs.py +54 -0
- pulumi_gcp/workstations/outputs.py +32 -0
- pulumi_gcp/workstations/workstation_config.py +205 -0
- {pulumi_gcp-8.7.0a1729200523.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.7.0a1729200523.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/RECORD +111 -89
- {pulumi_gcp-8.7.0a1729200523.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.7.0a1729200523.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/top_level.txt +0 -0
@@ -33,6 +33,7 @@ class RegionBackendServiceArgs:
|
|
33
33
|
failover_policy: Optional[pulumi.Input['RegionBackendServiceFailoverPolicyArgs']] = None,
|
34
34
|
health_checks: Optional[pulumi.Input[str]] = None,
|
35
35
|
iap: Optional[pulumi.Input['RegionBackendServiceIapArgs']] = None,
|
36
|
+
ip_address_selection_policy: Optional[pulumi.Input[str]] = None,
|
36
37
|
load_balancing_scheme: Optional[pulumi.Input[str]] = None,
|
37
38
|
locality_lb_policy: Optional[pulumi.Input[str]] = None,
|
38
39
|
log_config: Optional[pulumi.Input['RegionBackendServiceLogConfigArgs']] = None,
|
@@ -87,6 +88,8 @@ class RegionBackendServiceArgs:
|
|
87
88
|
or serverless NEG as a backend.
|
88
89
|
:param pulumi.Input['RegionBackendServiceIapArgs'] iap: Settings for enabling Cloud Identity Aware Proxy
|
89
90
|
Structure is documented below.
|
91
|
+
:param pulumi.Input[str] ip_address_selection_policy: Specifies preference of traffic to the backend (from the proxy and from the client for proxyless gRPC).
|
92
|
+
Possible values are: `IPV4_ONLY`, `PREFER_IPV6`, `IPV6_ONLY`.
|
90
93
|
:param pulumi.Input[str] load_balancing_scheme: Indicates what kind of load balancing this regional backend service
|
91
94
|
will be used for. A backend service created for one type of load
|
92
95
|
balancing cannot be used with the other(s). For more information, refer to
|
@@ -210,6 +213,8 @@ class RegionBackendServiceArgs:
|
|
210
213
|
pulumi.set(__self__, "health_checks", health_checks)
|
211
214
|
if iap is not None:
|
212
215
|
pulumi.set(__self__, "iap", iap)
|
216
|
+
if ip_address_selection_policy is not None:
|
217
|
+
pulumi.set(__self__, "ip_address_selection_policy", ip_address_selection_policy)
|
213
218
|
if load_balancing_scheme is not None:
|
214
219
|
pulumi.set(__self__, "load_balancing_scheme", load_balancing_scheme)
|
215
220
|
if locality_lb_policy is not None:
|
@@ -410,6 +415,19 @@ class RegionBackendServiceArgs:
|
|
410
415
|
def iap(self, value: Optional[pulumi.Input['RegionBackendServiceIapArgs']]):
|
411
416
|
pulumi.set(self, "iap", value)
|
412
417
|
|
418
|
+
@property
|
419
|
+
@pulumi.getter(name="ipAddressSelectionPolicy")
|
420
|
+
def ip_address_selection_policy(self) -> Optional[pulumi.Input[str]]:
|
421
|
+
"""
|
422
|
+
Specifies preference of traffic to the backend (from the proxy and from the client for proxyless gRPC).
|
423
|
+
Possible values are: `IPV4_ONLY`, `PREFER_IPV6`, `IPV6_ONLY`.
|
424
|
+
"""
|
425
|
+
return pulumi.get(self, "ip_address_selection_policy")
|
426
|
+
|
427
|
+
@ip_address_selection_policy.setter
|
428
|
+
def ip_address_selection_policy(self, value: Optional[pulumi.Input[str]]):
|
429
|
+
pulumi.set(self, "ip_address_selection_policy", value)
|
430
|
+
|
413
431
|
@property
|
414
432
|
@pulumi.getter(name="loadBalancingScheme")
|
415
433
|
def load_balancing_scheme(self) -> Optional[pulumi.Input[str]]:
|
@@ -692,6 +710,7 @@ class _RegionBackendServiceState:
|
|
692
710
|
generated_id: Optional[pulumi.Input[int]] = None,
|
693
711
|
health_checks: Optional[pulumi.Input[str]] = None,
|
694
712
|
iap: Optional[pulumi.Input['RegionBackendServiceIapArgs']] = None,
|
713
|
+
ip_address_selection_policy: Optional[pulumi.Input[str]] = None,
|
695
714
|
load_balancing_scheme: Optional[pulumi.Input[str]] = None,
|
696
715
|
locality_lb_policy: Optional[pulumi.Input[str]] = None,
|
697
716
|
log_config: Optional[pulumi.Input['RegionBackendServiceLogConfigArgs']] = None,
|
@@ -751,6 +770,8 @@ class _RegionBackendServiceState:
|
|
751
770
|
or serverless NEG as a backend.
|
752
771
|
:param pulumi.Input['RegionBackendServiceIapArgs'] iap: Settings for enabling Cloud Identity Aware Proxy
|
753
772
|
Structure is documented below.
|
773
|
+
:param pulumi.Input[str] ip_address_selection_policy: Specifies preference of traffic to the backend (from the proxy and from the client for proxyless gRPC).
|
774
|
+
Possible values are: `IPV4_ONLY`, `PREFER_IPV6`, `IPV6_ONLY`.
|
754
775
|
:param pulumi.Input[str] load_balancing_scheme: Indicates what kind of load balancing this regional backend service
|
755
776
|
will be used for. A backend service created for one type of load
|
756
777
|
balancing cannot be used with the other(s). For more information, refer to
|
@@ -881,6 +902,8 @@ class _RegionBackendServiceState:
|
|
881
902
|
pulumi.set(__self__, "health_checks", health_checks)
|
882
903
|
if iap is not None:
|
883
904
|
pulumi.set(__self__, "iap", iap)
|
905
|
+
if ip_address_selection_policy is not None:
|
906
|
+
pulumi.set(__self__, "ip_address_selection_policy", ip_address_selection_policy)
|
884
907
|
if load_balancing_scheme is not None:
|
885
908
|
pulumi.set(__self__, "load_balancing_scheme", load_balancing_scheme)
|
886
909
|
if locality_lb_policy is not None:
|
@@ -1120,6 +1143,19 @@ class _RegionBackendServiceState:
|
|
1120
1143
|
def iap(self, value: Optional[pulumi.Input['RegionBackendServiceIapArgs']]):
|
1121
1144
|
pulumi.set(self, "iap", value)
|
1122
1145
|
|
1146
|
+
@property
|
1147
|
+
@pulumi.getter(name="ipAddressSelectionPolicy")
|
1148
|
+
def ip_address_selection_policy(self) -> Optional[pulumi.Input[str]]:
|
1149
|
+
"""
|
1150
|
+
Specifies preference of traffic to the backend (from the proxy and from the client for proxyless gRPC).
|
1151
|
+
Possible values are: `IPV4_ONLY`, `PREFER_IPV6`, `IPV6_ONLY`.
|
1152
|
+
"""
|
1153
|
+
return pulumi.get(self, "ip_address_selection_policy")
|
1154
|
+
|
1155
|
+
@ip_address_selection_policy.setter
|
1156
|
+
def ip_address_selection_policy(self, value: Optional[pulumi.Input[str]]):
|
1157
|
+
pulumi.set(self, "ip_address_selection_policy", value)
|
1158
|
+
|
1123
1159
|
@property
|
1124
1160
|
@pulumi.getter(name="loadBalancingScheme")
|
1125
1161
|
def load_balancing_scheme(self) -> Optional[pulumi.Input[str]]:
|
@@ -1413,6 +1449,7 @@ class RegionBackendService(pulumi.CustomResource):
|
|
1413
1449
|
failover_policy: Optional[pulumi.Input[Union['RegionBackendServiceFailoverPolicyArgs', 'RegionBackendServiceFailoverPolicyArgsDict']]] = None,
|
1414
1450
|
health_checks: Optional[pulumi.Input[str]] = None,
|
1415
1451
|
iap: Optional[pulumi.Input[Union['RegionBackendServiceIapArgs', 'RegionBackendServiceIapArgsDict']]] = None,
|
1452
|
+
ip_address_selection_policy: Optional[pulumi.Input[str]] = None,
|
1416
1453
|
load_balancing_scheme: Optional[pulumi.Input[str]] = None,
|
1417
1454
|
locality_lb_policy: Optional[pulumi.Input[str]] = None,
|
1418
1455
|
log_config: Optional[pulumi.Input[Union['RegionBackendServiceLogConfigArgs', 'RegionBackendServiceLogConfigArgsDict']]] = None,
|
@@ -1714,6 +1751,26 @@ class RegionBackendService(pulumi.CustomResource):
|
|
1714
1751
|
"enable_strong_affinity": True,
|
1715
1752
|
})
|
1716
1753
|
```
|
1754
|
+
### Region Backend Service Ip Address Selection Policy
|
1755
|
+
|
1756
|
+
```python
|
1757
|
+
import pulumi
|
1758
|
+
import pulumi_gcp as gcp
|
1759
|
+
|
1760
|
+
health_check = gcp.compute.RegionHealthCheck("health_check",
|
1761
|
+
name="rbs-health-check",
|
1762
|
+
region="us-central1",
|
1763
|
+
tcp_health_check={
|
1764
|
+
"port": 80,
|
1765
|
+
})
|
1766
|
+
default = gcp.compute.RegionBackendService("default",
|
1767
|
+
name="region-service",
|
1768
|
+
region="us-central1",
|
1769
|
+
health_checks=health_check.id,
|
1770
|
+
load_balancing_scheme="EXTERNAL_MANAGED",
|
1771
|
+
protocol="HTTP",
|
1772
|
+
ip_address_selection_policy="IPV6_ONLY")
|
1773
|
+
```
|
1717
1774
|
|
1718
1775
|
## Import
|
1719
1776
|
|
@@ -1784,6 +1841,8 @@ class RegionBackendService(pulumi.CustomResource):
|
|
1784
1841
|
or serverless NEG as a backend.
|
1785
1842
|
:param pulumi.Input[Union['RegionBackendServiceIapArgs', 'RegionBackendServiceIapArgsDict']] iap: Settings for enabling Cloud Identity Aware Proxy
|
1786
1843
|
Structure is documented below.
|
1844
|
+
:param pulumi.Input[str] ip_address_selection_policy: Specifies preference of traffic to the backend (from the proxy and from the client for proxyless gRPC).
|
1845
|
+
Possible values are: `IPV4_ONLY`, `PREFER_IPV6`, `IPV6_ONLY`.
|
1787
1846
|
:param pulumi.Input[str] load_balancing_scheme: Indicates what kind of load balancing this regional backend service
|
1788
1847
|
will be used for. A backend service created for one type of load
|
1789
1848
|
balancing cannot be used with the other(s). For more information, refer to
|
@@ -2174,6 +2233,26 @@ class RegionBackendService(pulumi.CustomResource):
|
|
2174
2233
|
"enable_strong_affinity": True,
|
2175
2234
|
})
|
2176
2235
|
```
|
2236
|
+
### Region Backend Service Ip Address Selection Policy
|
2237
|
+
|
2238
|
+
```python
|
2239
|
+
import pulumi
|
2240
|
+
import pulumi_gcp as gcp
|
2241
|
+
|
2242
|
+
health_check = gcp.compute.RegionHealthCheck("health_check",
|
2243
|
+
name="rbs-health-check",
|
2244
|
+
region="us-central1",
|
2245
|
+
tcp_health_check={
|
2246
|
+
"port": 80,
|
2247
|
+
})
|
2248
|
+
default = gcp.compute.RegionBackendService("default",
|
2249
|
+
name="region-service",
|
2250
|
+
region="us-central1",
|
2251
|
+
health_checks=health_check.id,
|
2252
|
+
load_balancing_scheme="EXTERNAL_MANAGED",
|
2253
|
+
protocol="HTTP",
|
2254
|
+
ip_address_selection_policy="IPV6_ONLY")
|
2255
|
+
```
|
2177
2256
|
|
2178
2257
|
## Import
|
2179
2258
|
|
@@ -2232,6 +2311,7 @@ class RegionBackendService(pulumi.CustomResource):
|
|
2232
2311
|
failover_policy: Optional[pulumi.Input[Union['RegionBackendServiceFailoverPolicyArgs', 'RegionBackendServiceFailoverPolicyArgsDict']]] = None,
|
2233
2312
|
health_checks: Optional[pulumi.Input[str]] = None,
|
2234
2313
|
iap: Optional[pulumi.Input[Union['RegionBackendServiceIapArgs', 'RegionBackendServiceIapArgsDict']]] = None,
|
2314
|
+
ip_address_selection_policy: Optional[pulumi.Input[str]] = None,
|
2235
2315
|
load_balancing_scheme: Optional[pulumi.Input[str]] = None,
|
2236
2316
|
locality_lb_policy: Optional[pulumi.Input[str]] = None,
|
2237
2317
|
log_config: Optional[pulumi.Input[Union['RegionBackendServiceLogConfigArgs', 'RegionBackendServiceLogConfigArgsDict']]] = None,
|
@@ -2268,6 +2348,7 @@ class RegionBackendService(pulumi.CustomResource):
|
|
2268
2348
|
__props__.__dict__["failover_policy"] = failover_policy
|
2269
2349
|
__props__.__dict__["health_checks"] = health_checks
|
2270
2350
|
__props__.__dict__["iap"] = iap
|
2351
|
+
__props__.__dict__["ip_address_selection_policy"] = ip_address_selection_policy
|
2271
2352
|
__props__.__dict__["load_balancing_scheme"] = load_balancing_scheme
|
2272
2353
|
__props__.__dict__["locality_lb_policy"] = locality_lb_policy
|
2273
2354
|
__props__.__dict__["log_config"] = log_config
|
@@ -2312,6 +2393,7 @@ class RegionBackendService(pulumi.CustomResource):
|
|
2312
2393
|
generated_id: Optional[pulumi.Input[int]] = None,
|
2313
2394
|
health_checks: Optional[pulumi.Input[str]] = None,
|
2314
2395
|
iap: Optional[pulumi.Input[Union['RegionBackendServiceIapArgs', 'RegionBackendServiceIapArgsDict']]] = None,
|
2396
|
+
ip_address_selection_policy: Optional[pulumi.Input[str]] = None,
|
2315
2397
|
load_balancing_scheme: Optional[pulumi.Input[str]] = None,
|
2316
2398
|
locality_lb_policy: Optional[pulumi.Input[str]] = None,
|
2317
2399
|
log_config: Optional[pulumi.Input[Union['RegionBackendServiceLogConfigArgs', 'RegionBackendServiceLogConfigArgsDict']]] = None,
|
@@ -2376,6 +2458,8 @@ class RegionBackendService(pulumi.CustomResource):
|
|
2376
2458
|
or serverless NEG as a backend.
|
2377
2459
|
:param pulumi.Input[Union['RegionBackendServiceIapArgs', 'RegionBackendServiceIapArgsDict']] iap: Settings for enabling Cloud Identity Aware Proxy
|
2378
2460
|
Structure is documented below.
|
2461
|
+
:param pulumi.Input[str] ip_address_selection_policy: Specifies preference of traffic to the backend (from the proxy and from the client for proxyless gRPC).
|
2462
|
+
Possible values are: `IPV4_ONLY`, `PREFER_IPV6`, `IPV6_ONLY`.
|
2379
2463
|
:param pulumi.Input[str] load_balancing_scheme: Indicates what kind of load balancing this regional backend service
|
2380
2464
|
will be used for. A backend service created for one type of load
|
2381
2465
|
balancing cannot be used with the other(s). For more information, refer to
|
@@ -2495,6 +2579,7 @@ class RegionBackendService(pulumi.CustomResource):
|
|
2495
2579
|
__props__.__dict__["generated_id"] = generated_id
|
2496
2580
|
__props__.__dict__["health_checks"] = health_checks
|
2497
2581
|
__props__.__dict__["iap"] = iap
|
2582
|
+
__props__.__dict__["ip_address_selection_policy"] = ip_address_selection_policy
|
2498
2583
|
__props__.__dict__["load_balancing_scheme"] = load_balancing_scheme
|
2499
2584
|
__props__.__dict__["locality_lb_policy"] = locality_lb_policy
|
2500
2585
|
__props__.__dict__["log_config"] = log_config
|
@@ -2659,6 +2744,15 @@ class RegionBackendService(pulumi.CustomResource):
|
|
2659
2744
|
"""
|
2660
2745
|
return pulumi.get(self, "iap")
|
2661
2746
|
|
2747
|
+
@property
|
2748
|
+
@pulumi.getter(name="ipAddressSelectionPolicy")
|
2749
|
+
def ip_address_selection_policy(self) -> pulumi.Output[Optional[str]]:
|
2750
|
+
"""
|
2751
|
+
Specifies preference of traffic to the backend (from the proxy and from the client for proxyless gRPC).
|
2752
|
+
Possible values are: `IPV4_ONLY`, `PREFER_IPV6`, `IPV6_ONLY`.
|
2753
|
+
"""
|
2754
|
+
return pulumi.get(self, "ip_address_selection_policy")
|
2755
|
+
|
2662
2756
|
@property
|
2663
2757
|
@pulumi.getter(name="loadBalancingScheme")
|
2664
2758
|
def load_balancing_scheme(self) -> pulumi.Output[Optional[str]]:
|
@@ -30,6 +30,7 @@ class RegionInstanceTemplateArgs:
|
|
30
30
|
enable_display: Optional[pulumi.Input[bool]] = None,
|
31
31
|
guest_accelerators: Optional[pulumi.Input[Sequence[pulumi.Input['RegionInstanceTemplateGuestAcceleratorArgs']]]] = None,
|
32
32
|
instance_description: Optional[pulumi.Input[str]] = None,
|
33
|
+
key_revocation_action_type: Optional[pulumi.Input[str]] = None,
|
33
34
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
34
35
|
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
35
36
|
metadata_startup_script: Optional[pulumi.Input[str]] = None,
|
@@ -68,6 +69,7 @@ class RegionInstanceTemplateArgs:
|
|
68
69
|
:param pulumi.Input[Sequence[pulumi.Input['RegionInstanceTemplateGuestAcceleratorArgs']]] guest_accelerators: List of the type and count of accelerator cards attached to the instance. Structure documented below.
|
69
70
|
:param pulumi.Input[str] instance_description: A brief description to use for instances
|
70
71
|
created from this template.
|
72
|
+
:param pulumi.Input[str] key_revocation_action_type: Action to be taken when a customer's encryption key is revoked. Supports `STOP` and `NONE`, with `NONE` being the default.
|
71
73
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: A set of key/value label pairs to assign to instances
|
72
74
|
created from this template.
|
73
75
|
|
@@ -131,6 +133,8 @@ class RegionInstanceTemplateArgs:
|
|
131
133
|
pulumi.set(__self__, "guest_accelerators", guest_accelerators)
|
132
134
|
if instance_description is not None:
|
133
135
|
pulumi.set(__self__, "instance_description", instance_description)
|
136
|
+
if key_revocation_action_type is not None:
|
137
|
+
pulumi.set(__self__, "key_revocation_action_type", key_revocation_action_type)
|
134
138
|
if labels is not None:
|
135
139
|
pulumi.set(__self__, "labels", labels)
|
136
140
|
if metadata is not None:
|
@@ -285,6 +289,18 @@ class RegionInstanceTemplateArgs:
|
|
285
289
|
def instance_description(self, value: Optional[pulumi.Input[str]]):
|
286
290
|
pulumi.set(self, "instance_description", value)
|
287
291
|
|
292
|
+
@property
|
293
|
+
@pulumi.getter(name="keyRevocationActionType")
|
294
|
+
def key_revocation_action_type(self) -> Optional[pulumi.Input[str]]:
|
295
|
+
"""
|
296
|
+
Action to be taken when a customer's encryption key is revoked. Supports `STOP` and `NONE`, with `NONE` being the default.
|
297
|
+
"""
|
298
|
+
return pulumi.get(self, "key_revocation_action_type")
|
299
|
+
|
300
|
+
@key_revocation_action_type.setter
|
301
|
+
def key_revocation_action_type(self, value: Optional[pulumi.Input[str]]):
|
302
|
+
pulumi.set(self, "key_revocation_action_type", value)
|
303
|
+
|
288
304
|
@property
|
289
305
|
@pulumi.getter
|
290
306
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -534,12 +550,14 @@ class _RegionInstanceTemplateState:
|
|
534
550
|
advanced_machine_features: Optional[pulumi.Input['RegionInstanceTemplateAdvancedMachineFeaturesArgs']] = None,
|
535
551
|
can_ip_forward: Optional[pulumi.Input[bool]] = None,
|
536
552
|
confidential_instance_config: Optional[pulumi.Input['RegionInstanceTemplateConfidentialInstanceConfigArgs']] = None,
|
553
|
+
creation_timestamp: Optional[pulumi.Input[str]] = None,
|
537
554
|
description: Optional[pulumi.Input[str]] = None,
|
538
555
|
disks: Optional[pulumi.Input[Sequence[pulumi.Input['RegionInstanceTemplateDiskArgs']]]] = None,
|
539
556
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
540
557
|
enable_display: Optional[pulumi.Input[bool]] = None,
|
541
558
|
guest_accelerators: Optional[pulumi.Input[Sequence[pulumi.Input['RegionInstanceTemplateGuestAcceleratorArgs']]]] = None,
|
542
559
|
instance_description: Optional[pulumi.Input[str]] = None,
|
560
|
+
key_revocation_action_type: Optional[pulumi.Input[str]] = None,
|
543
561
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
544
562
|
machine_type: Optional[pulumi.Input[str]] = None,
|
545
563
|
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -569,6 +587,7 @@ class _RegionInstanceTemplateState:
|
|
569
587
|
:param pulumi.Input[bool] can_ip_forward: Whether to allow sending and receiving of
|
570
588
|
packets with non-matching source or destination IPs. This defaults to false.
|
571
589
|
:param pulumi.Input['RegionInstanceTemplateConfidentialInstanceConfigArgs'] confidential_instance_config: Enable [Confidential Mode](https://cloud.google.com/compute/confidential-vm/docs/about-cvm) on this VM. Structure is documented below
|
590
|
+
:param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
|
572
591
|
:param pulumi.Input[str] description: A brief description of this resource.
|
573
592
|
:param pulumi.Input[Sequence[pulumi.Input['RegionInstanceTemplateDiskArgs']]] disks: Disks to attach to instances created from this template.
|
574
593
|
This can be specified multiple times for multiple disks. Structure is
|
@@ -579,6 +598,7 @@ class _RegionInstanceTemplateState:
|
|
579
598
|
:param pulumi.Input[Sequence[pulumi.Input['RegionInstanceTemplateGuestAcceleratorArgs']]] guest_accelerators: List of the type and count of accelerator cards attached to the instance. Structure documented below.
|
580
599
|
:param pulumi.Input[str] instance_description: A brief description to use for instances
|
581
600
|
created from this template.
|
601
|
+
:param pulumi.Input[str] key_revocation_action_type: Action to be taken when a customer's encryption key is revoked. Supports `STOP` and `NONE`, with `NONE` being the default.
|
582
602
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: A set of key/value label pairs to assign to instances
|
583
603
|
created from this template.
|
584
604
|
|
@@ -641,6 +661,8 @@ class _RegionInstanceTemplateState:
|
|
641
661
|
pulumi.set(__self__, "can_ip_forward", can_ip_forward)
|
642
662
|
if confidential_instance_config is not None:
|
643
663
|
pulumi.set(__self__, "confidential_instance_config", confidential_instance_config)
|
664
|
+
if creation_timestamp is not None:
|
665
|
+
pulumi.set(__self__, "creation_timestamp", creation_timestamp)
|
644
666
|
if description is not None:
|
645
667
|
pulumi.set(__self__, "description", description)
|
646
668
|
if disks is not None:
|
@@ -653,6 +675,8 @@ class _RegionInstanceTemplateState:
|
|
653
675
|
pulumi.set(__self__, "guest_accelerators", guest_accelerators)
|
654
676
|
if instance_description is not None:
|
655
677
|
pulumi.set(__self__, "instance_description", instance_description)
|
678
|
+
if key_revocation_action_type is not None:
|
679
|
+
pulumi.set(__self__, "key_revocation_action_type", key_revocation_action_type)
|
656
680
|
if labels is not None:
|
657
681
|
pulumi.set(__self__, "labels", labels)
|
658
682
|
if machine_type is not None:
|
@@ -737,6 +761,18 @@ class _RegionInstanceTemplateState:
|
|
737
761
|
def confidential_instance_config(self, value: Optional[pulumi.Input['RegionInstanceTemplateConfidentialInstanceConfigArgs']]):
|
738
762
|
pulumi.set(self, "confidential_instance_config", value)
|
739
763
|
|
764
|
+
@property
|
765
|
+
@pulumi.getter(name="creationTimestamp")
|
766
|
+
def creation_timestamp(self) -> Optional[pulumi.Input[str]]:
|
767
|
+
"""
|
768
|
+
Creation timestamp in RFC3339 text format.
|
769
|
+
"""
|
770
|
+
return pulumi.get(self, "creation_timestamp")
|
771
|
+
|
772
|
+
@creation_timestamp.setter
|
773
|
+
def creation_timestamp(self, value: Optional[pulumi.Input[str]]):
|
774
|
+
pulumi.set(self, "creation_timestamp", value)
|
775
|
+
|
740
776
|
@property
|
741
777
|
@pulumi.getter
|
742
778
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -813,6 +849,18 @@ class _RegionInstanceTemplateState:
|
|
813
849
|
def instance_description(self, value: Optional[pulumi.Input[str]]):
|
814
850
|
pulumi.set(self, "instance_description", value)
|
815
851
|
|
852
|
+
@property
|
853
|
+
@pulumi.getter(name="keyRevocationActionType")
|
854
|
+
def key_revocation_action_type(self) -> Optional[pulumi.Input[str]]:
|
855
|
+
"""
|
856
|
+
Action to be taken when a customer's encryption key is revoked. Supports `STOP` and `NONE`, with `NONE` being the default.
|
857
|
+
"""
|
858
|
+
return pulumi.get(self, "key_revocation_action_type")
|
859
|
+
|
860
|
+
@key_revocation_action_type.setter
|
861
|
+
def key_revocation_action_type(self, value: Optional[pulumi.Input[str]]):
|
862
|
+
pulumi.set(self, "key_revocation_action_type", value)
|
863
|
+
|
816
864
|
@property
|
817
865
|
@pulumi.getter
|
818
866
|
def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -1133,6 +1181,7 @@ class RegionInstanceTemplate(pulumi.CustomResource):
|
|
1133
1181
|
enable_display: Optional[pulumi.Input[bool]] = None,
|
1134
1182
|
guest_accelerators: Optional[pulumi.Input[Sequence[pulumi.Input[Union['RegionInstanceTemplateGuestAcceleratorArgs', 'RegionInstanceTemplateGuestAcceleratorArgsDict']]]]] = None,
|
1135
1183
|
instance_description: Optional[pulumi.Input[str]] = None,
|
1184
|
+
key_revocation_action_type: Optional[pulumi.Input[str]] = None,
|
1136
1185
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1137
1186
|
machine_type: Optional[pulumi.Input[str]] = None,
|
1138
1187
|
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -1193,6 +1242,7 @@ class RegionInstanceTemplate(pulumi.CustomResource):
|
|
1193
1242
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RegionInstanceTemplateGuestAcceleratorArgs', 'RegionInstanceTemplateGuestAcceleratorArgsDict']]]] guest_accelerators: List of the type and count of accelerator cards attached to the instance. Structure documented below.
|
1194
1243
|
:param pulumi.Input[str] instance_description: A brief description to use for instances
|
1195
1244
|
created from this template.
|
1245
|
+
:param pulumi.Input[str] key_revocation_action_type: Action to be taken when a customer's encryption key is revoked. Supports `STOP` and `NONE`, with `NONE` being the default.
|
1196
1246
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: A set of key/value label pairs to assign to instances
|
1197
1247
|
created from this template.
|
1198
1248
|
|
@@ -1299,6 +1349,7 @@ class RegionInstanceTemplate(pulumi.CustomResource):
|
|
1299
1349
|
enable_display: Optional[pulumi.Input[bool]] = None,
|
1300
1350
|
guest_accelerators: Optional[pulumi.Input[Sequence[pulumi.Input[Union['RegionInstanceTemplateGuestAcceleratorArgs', 'RegionInstanceTemplateGuestAcceleratorArgsDict']]]]] = None,
|
1301
1351
|
instance_description: Optional[pulumi.Input[str]] = None,
|
1352
|
+
key_revocation_action_type: Optional[pulumi.Input[str]] = None,
|
1302
1353
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1303
1354
|
machine_type: Optional[pulumi.Input[str]] = None,
|
1304
1355
|
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -1337,6 +1388,7 @@ class RegionInstanceTemplate(pulumi.CustomResource):
|
|
1337
1388
|
__props__.__dict__["enable_display"] = enable_display
|
1338
1389
|
__props__.__dict__["guest_accelerators"] = guest_accelerators
|
1339
1390
|
__props__.__dict__["instance_description"] = instance_description
|
1391
|
+
__props__.__dict__["key_revocation_action_type"] = key_revocation_action_type
|
1340
1392
|
__props__.__dict__["labels"] = labels
|
1341
1393
|
if machine_type is None and not opts.urn:
|
1342
1394
|
raise TypeError("Missing required property 'machine_type'")
|
@@ -1358,6 +1410,7 @@ class RegionInstanceTemplate(pulumi.CustomResource):
|
|
1358
1410
|
__props__.__dict__["service_account"] = service_account
|
1359
1411
|
__props__.__dict__["shielded_instance_config"] = shielded_instance_config
|
1360
1412
|
__props__.__dict__["tags"] = tags
|
1413
|
+
__props__.__dict__["creation_timestamp"] = None
|
1361
1414
|
__props__.__dict__["effective_labels"] = None
|
1362
1415
|
__props__.__dict__["metadata_fingerprint"] = None
|
1363
1416
|
__props__.__dict__["pulumi_labels"] = None
|
@@ -1378,12 +1431,14 @@ class RegionInstanceTemplate(pulumi.CustomResource):
|
|
1378
1431
|
advanced_machine_features: Optional[pulumi.Input[Union['RegionInstanceTemplateAdvancedMachineFeaturesArgs', 'RegionInstanceTemplateAdvancedMachineFeaturesArgsDict']]] = None,
|
1379
1432
|
can_ip_forward: Optional[pulumi.Input[bool]] = None,
|
1380
1433
|
confidential_instance_config: Optional[pulumi.Input[Union['RegionInstanceTemplateConfidentialInstanceConfigArgs', 'RegionInstanceTemplateConfidentialInstanceConfigArgsDict']]] = None,
|
1434
|
+
creation_timestamp: Optional[pulumi.Input[str]] = None,
|
1381
1435
|
description: Optional[pulumi.Input[str]] = None,
|
1382
1436
|
disks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['RegionInstanceTemplateDiskArgs', 'RegionInstanceTemplateDiskArgsDict']]]]] = None,
|
1383
1437
|
effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1384
1438
|
enable_display: Optional[pulumi.Input[bool]] = None,
|
1385
1439
|
guest_accelerators: Optional[pulumi.Input[Sequence[pulumi.Input[Union['RegionInstanceTemplateGuestAcceleratorArgs', 'RegionInstanceTemplateGuestAcceleratorArgsDict']]]]] = None,
|
1386
1440
|
instance_description: Optional[pulumi.Input[str]] = None,
|
1441
|
+
key_revocation_action_type: Optional[pulumi.Input[str]] = None,
|
1387
1442
|
labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1388
1443
|
machine_type: Optional[pulumi.Input[str]] = None,
|
1389
1444
|
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -1418,6 +1473,7 @@ class RegionInstanceTemplate(pulumi.CustomResource):
|
|
1418
1473
|
:param pulumi.Input[bool] can_ip_forward: Whether to allow sending and receiving of
|
1419
1474
|
packets with non-matching source or destination IPs. This defaults to false.
|
1420
1475
|
:param pulumi.Input[Union['RegionInstanceTemplateConfidentialInstanceConfigArgs', 'RegionInstanceTemplateConfidentialInstanceConfigArgsDict']] confidential_instance_config: Enable [Confidential Mode](https://cloud.google.com/compute/confidential-vm/docs/about-cvm) on this VM. Structure is documented below
|
1476
|
+
:param pulumi.Input[str] creation_timestamp: Creation timestamp in RFC3339 text format.
|
1421
1477
|
:param pulumi.Input[str] description: A brief description of this resource.
|
1422
1478
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RegionInstanceTemplateDiskArgs', 'RegionInstanceTemplateDiskArgsDict']]]] disks: Disks to attach to instances created from this template.
|
1423
1479
|
This can be specified multiple times for multiple disks. Structure is
|
@@ -1428,6 +1484,7 @@ class RegionInstanceTemplate(pulumi.CustomResource):
|
|
1428
1484
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RegionInstanceTemplateGuestAcceleratorArgs', 'RegionInstanceTemplateGuestAcceleratorArgsDict']]]] guest_accelerators: List of the type and count of accelerator cards attached to the instance. Structure documented below.
|
1429
1485
|
:param pulumi.Input[str] instance_description: A brief description to use for instances
|
1430
1486
|
created from this template.
|
1487
|
+
:param pulumi.Input[str] key_revocation_action_type: Action to be taken when a customer's encryption key is revoked. Supports `STOP` and `NONE`, with `NONE` being the default.
|
1431
1488
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: A set of key/value label pairs to assign to instances
|
1432
1489
|
created from this template.
|
1433
1490
|
|
@@ -1491,12 +1548,14 @@ class RegionInstanceTemplate(pulumi.CustomResource):
|
|
1491
1548
|
__props__.__dict__["advanced_machine_features"] = advanced_machine_features
|
1492
1549
|
__props__.__dict__["can_ip_forward"] = can_ip_forward
|
1493
1550
|
__props__.__dict__["confidential_instance_config"] = confidential_instance_config
|
1551
|
+
__props__.__dict__["creation_timestamp"] = creation_timestamp
|
1494
1552
|
__props__.__dict__["description"] = description
|
1495
1553
|
__props__.__dict__["disks"] = disks
|
1496
1554
|
__props__.__dict__["effective_labels"] = effective_labels
|
1497
1555
|
__props__.__dict__["enable_display"] = enable_display
|
1498
1556
|
__props__.__dict__["guest_accelerators"] = guest_accelerators
|
1499
1557
|
__props__.__dict__["instance_description"] = instance_description
|
1558
|
+
__props__.__dict__["key_revocation_action_type"] = key_revocation_action_type
|
1500
1559
|
__props__.__dict__["labels"] = labels
|
1501
1560
|
__props__.__dict__["machine_type"] = machine_type
|
1502
1561
|
__props__.__dict__["metadata"] = metadata
|
@@ -1547,6 +1606,14 @@ class RegionInstanceTemplate(pulumi.CustomResource):
|
|
1547
1606
|
"""
|
1548
1607
|
return pulumi.get(self, "confidential_instance_config")
|
1549
1608
|
|
1609
|
+
@property
|
1610
|
+
@pulumi.getter(name="creationTimestamp")
|
1611
|
+
def creation_timestamp(self) -> pulumi.Output[str]:
|
1612
|
+
"""
|
1613
|
+
Creation timestamp in RFC3339 text format.
|
1614
|
+
"""
|
1615
|
+
return pulumi.get(self, "creation_timestamp")
|
1616
|
+
|
1550
1617
|
@property
|
1551
1618
|
@pulumi.getter
|
1552
1619
|
def description(self) -> pulumi.Output[Optional[str]]:
|
@@ -1599,6 +1666,14 @@ class RegionInstanceTemplate(pulumi.CustomResource):
|
|
1599
1666
|
"""
|
1600
1667
|
return pulumi.get(self, "instance_description")
|
1601
1668
|
|
1669
|
+
@property
|
1670
|
+
@pulumi.getter(name="keyRevocationActionType")
|
1671
|
+
def key_revocation_action_type(self) -> pulumi.Output[Optional[str]]:
|
1672
|
+
"""
|
1673
|
+
Action to be taken when a customer's encryption key is revoked. Supports `STOP` and `NONE`, with `NONE` being the default.
|
1674
|
+
"""
|
1675
|
+
return pulumi.get(self, "key_revocation_action_type")
|
1676
|
+
|
1602
1677
|
@property
|
1603
1678
|
@pulumi.getter
|
1604
1679
|
def labels(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
@@ -637,14 +637,15 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
637
637
|
|
638
638
|
appengine_neg_bucket = gcp.storage.Bucket("appengine_neg",
|
639
639
|
name="appengine-neg",
|
640
|
-
location="US"
|
640
|
+
location="US",
|
641
|
+
uniform_bucket_level_access=True)
|
641
642
|
appengine_neg_bucket_object = gcp.storage.BucketObject("appengine_neg",
|
642
643
|
name="hello-world.zip",
|
643
644
|
bucket=appengine_neg_bucket.name,
|
644
645
|
source=pulumi.FileAsset("./test-fixtures/hello-world.zip"))
|
645
646
|
appengine_neg_flexible_app_version = gcp.appengine.FlexibleAppVersion("appengine_neg",
|
646
647
|
version_id="v1",
|
647
|
-
service="appengine-
|
648
|
+
service="appengine-neg",
|
648
649
|
runtime="nodejs",
|
649
650
|
flexible_runtime_settings={
|
650
651
|
"operating_system": "ubuntu22",
|
@@ -981,14 +982,15 @@ class RegionNetworkEndpointGroup(pulumi.CustomResource):
|
|
981
982
|
|
982
983
|
appengine_neg_bucket = gcp.storage.Bucket("appengine_neg",
|
983
984
|
name="appengine-neg",
|
984
|
-
location="US"
|
985
|
+
location="US",
|
986
|
+
uniform_bucket_level_access=True)
|
985
987
|
appengine_neg_bucket_object = gcp.storage.BucketObject("appengine_neg",
|
986
988
|
name="hello-world.zip",
|
987
989
|
bucket=appengine_neg_bucket.name,
|
988
990
|
source=pulumi.FileAsset("./test-fixtures/hello-world.zip"))
|
989
991
|
appengine_neg_flexible_app_version = gcp.appengine.FlexibleAppVersion("appengine_neg",
|
990
992
|
version_id="v1",
|
991
|
-
service="appengine-
|
993
|
+
service="appengine-neg",
|
992
994
|
runtime="nodejs",
|
993
995
|
flexible_runtime_settings={
|
994
996
|
"operating_system": "ubuntu22",
|