pulumi-gcp 8.7.0a1730183903__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.0a1730183903.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.7.0a1730183903.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/RECORD +111 -89
- {pulumi_gcp-8.7.0a1730183903.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.7.0a1730183903.dist-info → pulumi_gcp-8.7.0a1730196225.dist-info}/top_level.txt +0 -0
@@ -35,6 +35,7 @@ class BackendServiceArgs:
|
|
35
35
|
enable_cdn: Optional[pulumi.Input[bool]] = None,
|
36
36
|
health_checks: Optional[pulumi.Input[str]] = None,
|
37
37
|
iap: Optional[pulumi.Input['BackendServiceIapArgs']] = None,
|
38
|
+
ip_address_selection_policy: Optional[pulumi.Input[str]] = None,
|
38
39
|
load_balancing_scheme: Optional[pulumi.Input[str]] = None,
|
39
40
|
locality_lb_policies: Optional[pulumi.Input[Sequence[pulumi.Input['BackendServiceLocalityLbPolicyArgs']]]] = None,
|
40
41
|
locality_lb_policy: Optional[pulumi.Input[str]] = None,
|
@@ -92,6 +93,8 @@ class BackendServiceArgs:
|
|
92
93
|
For internal load balancing, a URL to a HealthCheck resource must be specified instead.
|
93
94
|
:param pulumi.Input['BackendServiceIapArgs'] iap: Settings for enabling Cloud Identity Aware Proxy
|
94
95
|
Structure is documented below.
|
96
|
+
: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).
|
97
|
+
Possible values are: `IPV4_ONLY`, `PREFER_IPV6`, `IPV6_ONLY`.
|
95
98
|
:param pulumi.Input[str] load_balancing_scheme: Indicates whether the backend service will be used with internal or
|
96
99
|
external load balancing. A backend service created for one type of
|
97
100
|
load balancing cannot be used with the other. For more information, refer to
|
@@ -225,6 +228,8 @@ class BackendServiceArgs:
|
|
225
228
|
pulumi.set(__self__, "health_checks", health_checks)
|
226
229
|
if iap is not None:
|
227
230
|
pulumi.set(__self__, "iap", iap)
|
231
|
+
if ip_address_selection_policy is not None:
|
232
|
+
pulumi.set(__self__, "ip_address_selection_policy", ip_address_selection_policy)
|
228
233
|
if load_balancing_scheme is not None:
|
229
234
|
pulumi.set(__self__, "load_balancing_scheme", load_balancing_scheme)
|
230
235
|
if locality_lb_policies is not None:
|
@@ -450,6 +455,19 @@ class BackendServiceArgs:
|
|
450
455
|
def iap(self, value: Optional[pulumi.Input['BackendServiceIapArgs']]):
|
451
456
|
pulumi.set(self, "iap", value)
|
452
457
|
|
458
|
+
@property
|
459
|
+
@pulumi.getter(name="ipAddressSelectionPolicy")
|
460
|
+
def ip_address_selection_policy(self) -> Optional[pulumi.Input[str]]:
|
461
|
+
"""
|
462
|
+
Specifies preference of traffic to the backend (from the proxy and from the client for proxyless gRPC).
|
463
|
+
Possible values are: `IPV4_ONLY`, `PREFER_IPV6`, `IPV6_ONLY`.
|
464
|
+
"""
|
465
|
+
return pulumi.get(self, "ip_address_selection_policy")
|
466
|
+
|
467
|
+
@ip_address_selection_policy.setter
|
468
|
+
def ip_address_selection_policy(self, value: Optional[pulumi.Input[str]]):
|
469
|
+
pulumi.set(self, "ip_address_selection_policy", value)
|
470
|
+
|
453
471
|
@property
|
454
472
|
@pulumi.getter(name="loadBalancingScheme")
|
455
473
|
def load_balancing_scheme(self) -> Optional[pulumi.Input[str]]:
|
@@ -740,6 +758,7 @@ class _BackendServiceState:
|
|
740
758
|
generated_id: Optional[pulumi.Input[int]] = None,
|
741
759
|
health_checks: Optional[pulumi.Input[str]] = None,
|
742
760
|
iap: Optional[pulumi.Input['BackendServiceIapArgs']] = None,
|
761
|
+
ip_address_selection_policy: Optional[pulumi.Input[str]] = None,
|
743
762
|
load_balancing_scheme: Optional[pulumi.Input[str]] = None,
|
744
763
|
locality_lb_policies: Optional[pulumi.Input[Sequence[pulumi.Input['BackendServiceLocalityLbPolicyArgs']]]] = None,
|
745
764
|
locality_lb_policy: Optional[pulumi.Input[str]] = None,
|
@@ -802,6 +821,8 @@ class _BackendServiceState:
|
|
802
821
|
For internal load balancing, a URL to a HealthCheck resource must be specified instead.
|
803
822
|
:param pulumi.Input['BackendServiceIapArgs'] iap: Settings for enabling Cloud Identity Aware Proxy
|
804
823
|
Structure is documented below.
|
824
|
+
: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).
|
825
|
+
Possible values are: `IPV4_ONLY`, `PREFER_IPV6`, `IPV6_ONLY`.
|
805
826
|
:param pulumi.Input[str] load_balancing_scheme: Indicates whether the backend service will be used with internal or
|
806
827
|
external load balancing. A backend service created for one type of
|
807
828
|
load balancing cannot be used with the other. For more information, refer to
|
@@ -942,6 +963,8 @@ class _BackendServiceState:
|
|
942
963
|
pulumi.set(__self__, "health_checks", health_checks)
|
943
964
|
if iap is not None:
|
944
965
|
pulumi.set(__self__, "iap", iap)
|
966
|
+
if ip_address_selection_policy is not None:
|
967
|
+
pulumi.set(__self__, "ip_address_selection_policy", ip_address_selection_policy)
|
945
968
|
if load_balancing_scheme is not None:
|
946
969
|
pulumi.set(__self__, "load_balancing_scheme", load_balancing_scheme)
|
947
970
|
if locality_lb_policies is not None:
|
@@ -1206,6 +1229,19 @@ class _BackendServiceState:
|
|
1206
1229
|
def iap(self, value: Optional[pulumi.Input['BackendServiceIapArgs']]):
|
1207
1230
|
pulumi.set(self, "iap", value)
|
1208
1231
|
|
1232
|
+
@property
|
1233
|
+
@pulumi.getter(name="ipAddressSelectionPolicy")
|
1234
|
+
def ip_address_selection_policy(self) -> Optional[pulumi.Input[str]]:
|
1235
|
+
"""
|
1236
|
+
Specifies preference of traffic to the backend (from the proxy and from the client for proxyless gRPC).
|
1237
|
+
Possible values are: `IPV4_ONLY`, `PREFER_IPV6`, `IPV6_ONLY`.
|
1238
|
+
"""
|
1239
|
+
return pulumi.get(self, "ip_address_selection_policy")
|
1240
|
+
|
1241
|
+
@ip_address_selection_policy.setter
|
1242
|
+
def ip_address_selection_policy(self, value: Optional[pulumi.Input[str]]):
|
1243
|
+
pulumi.set(self, "ip_address_selection_policy", value)
|
1244
|
+
|
1209
1245
|
@property
|
1210
1246
|
@pulumi.getter(name="loadBalancingScheme")
|
1211
1247
|
def load_balancing_scheme(self) -> Optional[pulumi.Input[str]]:
|
@@ -1507,6 +1543,7 @@ class BackendService(pulumi.CustomResource):
|
|
1507
1543
|
enable_cdn: Optional[pulumi.Input[bool]] = None,
|
1508
1544
|
health_checks: Optional[pulumi.Input[str]] = None,
|
1509
1545
|
iap: Optional[pulumi.Input[Union['BackendServiceIapArgs', 'BackendServiceIapArgsDict']]] = None,
|
1546
|
+
ip_address_selection_policy: Optional[pulumi.Input[str]] = None,
|
1510
1547
|
load_balancing_scheme: Optional[pulumi.Input[str]] = None,
|
1511
1548
|
locality_lb_policies: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BackendServiceLocalityLbPolicyArgs', 'BackendServiceLocalityLbPolicyArgsDict']]]]] = None,
|
1512
1549
|
locality_lb_policy: Optional[pulumi.Input[str]] = None,
|
@@ -1816,6 +1853,17 @@ class BackendService(pulumi.CustomResource):
|
|
1816
1853
|
health_checks=default_health_check.id,
|
1817
1854
|
load_balancing_scheme="EXTERNAL_MANAGED")
|
1818
1855
|
```
|
1856
|
+
### Backend Service Ip Address Selection Policy
|
1857
|
+
|
1858
|
+
```python
|
1859
|
+
import pulumi
|
1860
|
+
import pulumi_gcp as gcp
|
1861
|
+
|
1862
|
+
default = gcp.compute.BackendService("default",
|
1863
|
+
name="backend-service",
|
1864
|
+
load_balancing_scheme="EXTERNAL_MANAGED",
|
1865
|
+
ip_address_selection_policy="IPV6_ONLY")
|
1866
|
+
```
|
1819
1867
|
|
1820
1868
|
## Import
|
1821
1869
|
|
@@ -1883,6 +1931,8 @@ class BackendService(pulumi.CustomResource):
|
|
1883
1931
|
For internal load balancing, a URL to a HealthCheck resource must be specified instead.
|
1884
1932
|
:param pulumi.Input[Union['BackendServiceIapArgs', 'BackendServiceIapArgsDict']] iap: Settings for enabling Cloud Identity Aware Proxy
|
1885
1933
|
Structure is documented below.
|
1934
|
+
: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).
|
1935
|
+
Possible values are: `IPV4_ONLY`, `PREFER_IPV6`, `IPV6_ONLY`.
|
1886
1936
|
:param pulumi.Input[str] load_balancing_scheme: Indicates whether the backend service will be used with internal or
|
1887
1937
|
external load balancing. A backend service created for one type of
|
1888
1938
|
load balancing cannot be used with the other. For more information, refer to
|
@@ -2287,6 +2337,17 @@ class BackendService(pulumi.CustomResource):
|
|
2287
2337
|
health_checks=default_health_check.id,
|
2288
2338
|
load_balancing_scheme="EXTERNAL_MANAGED")
|
2289
2339
|
```
|
2340
|
+
### Backend Service Ip Address Selection Policy
|
2341
|
+
|
2342
|
+
```python
|
2343
|
+
import pulumi
|
2344
|
+
import pulumi_gcp as gcp
|
2345
|
+
|
2346
|
+
default = gcp.compute.BackendService("default",
|
2347
|
+
name="backend-service",
|
2348
|
+
load_balancing_scheme="EXTERNAL_MANAGED",
|
2349
|
+
ip_address_selection_policy="IPV6_ONLY")
|
2350
|
+
```
|
2290
2351
|
|
2291
2352
|
## Import
|
2292
2353
|
|
@@ -2341,6 +2402,7 @@ class BackendService(pulumi.CustomResource):
|
|
2341
2402
|
enable_cdn: Optional[pulumi.Input[bool]] = None,
|
2342
2403
|
health_checks: Optional[pulumi.Input[str]] = None,
|
2343
2404
|
iap: Optional[pulumi.Input[Union['BackendServiceIapArgs', 'BackendServiceIapArgsDict']]] = None,
|
2405
|
+
ip_address_selection_policy: Optional[pulumi.Input[str]] = None,
|
2344
2406
|
load_balancing_scheme: Optional[pulumi.Input[str]] = None,
|
2345
2407
|
locality_lb_policies: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BackendServiceLocalityLbPolicyArgs', 'BackendServiceLocalityLbPolicyArgsDict']]]]] = None,
|
2346
2408
|
locality_lb_policy: Optional[pulumi.Input[str]] = None,
|
@@ -2379,6 +2441,7 @@ class BackendService(pulumi.CustomResource):
|
|
2379
2441
|
__props__.__dict__["enable_cdn"] = enable_cdn
|
2380
2442
|
__props__.__dict__["health_checks"] = health_checks
|
2381
2443
|
__props__.__dict__["iap"] = iap
|
2444
|
+
__props__.__dict__["ip_address_selection_policy"] = ip_address_selection_policy
|
2382
2445
|
__props__.__dict__["load_balancing_scheme"] = load_balancing_scheme
|
2383
2446
|
__props__.__dict__["locality_lb_policies"] = locality_lb_policies
|
2384
2447
|
__props__.__dict__["locality_lb_policy"] = locality_lb_policy
|
@@ -2425,6 +2488,7 @@ class BackendService(pulumi.CustomResource):
|
|
2425
2488
|
generated_id: Optional[pulumi.Input[int]] = None,
|
2426
2489
|
health_checks: Optional[pulumi.Input[str]] = None,
|
2427
2490
|
iap: Optional[pulumi.Input[Union['BackendServiceIapArgs', 'BackendServiceIapArgsDict']]] = None,
|
2491
|
+
ip_address_selection_policy: Optional[pulumi.Input[str]] = None,
|
2428
2492
|
load_balancing_scheme: Optional[pulumi.Input[str]] = None,
|
2429
2493
|
locality_lb_policies: Optional[pulumi.Input[Sequence[pulumi.Input[Union['BackendServiceLocalityLbPolicyArgs', 'BackendServiceLocalityLbPolicyArgsDict']]]]] = None,
|
2430
2494
|
locality_lb_policy: Optional[pulumi.Input[str]] = None,
|
@@ -2492,6 +2556,8 @@ class BackendService(pulumi.CustomResource):
|
|
2492
2556
|
For internal load balancing, a URL to a HealthCheck resource must be specified instead.
|
2493
2557
|
:param pulumi.Input[Union['BackendServiceIapArgs', 'BackendServiceIapArgsDict']] iap: Settings for enabling Cloud Identity Aware Proxy
|
2494
2558
|
Structure is documented below.
|
2559
|
+
: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).
|
2560
|
+
Possible values are: `IPV4_ONLY`, `PREFER_IPV6`, `IPV6_ONLY`.
|
2495
2561
|
:param pulumi.Input[str] load_balancing_scheme: Indicates whether the backend service will be used with internal or
|
2496
2562
|
external load balancing. A backend service created for one type of
|
2497
2563
|
load balancing cannot be used with the other. For more information, refer to
|
@@ -2619,6 +2685,7 @@ class BackendService(pulumi.CustomResource):
|
|
2619
2685
|
__props__.__dict__["generated_id"] = generated_id
|
2620
2686
|
__props__.__dict__["health_checks"] = health_checks
|
2621
2687
|
__props__.__dict__["iap"] = iap
|
2688
|
+
__props__.__dict__["ip_address_selection_policy"] = ip_address_selection_policy
|
2622
2689
|
__props__.__dict__["load_balancing_scheme"] = load_balancing_scheme
|
2623
2690
|
__props__.__dict__["locality_lb_policies"] = locality_lb_policies
|
2624
2691
|
__props__.__dict__["locality_lb_policy"] = locality_lb_policy
|
@@ -2800,6 +2867,15 @@ class BackendService(pulumi.CustomResource):
|
|
2800
2867
|
"""
|
2801
2868
|
return pulumi.get(self, "iap")
|
2802
2869
|
|
2870
|
+
@property
|
2871
|
+
@pulumi.getter(name="ipAddressSelectionPolicy")
|
2872
|
+
def ip_address_selection_policy(self) -> pulumi.Output[Optional[str]]:
|
2873
|
+
"""
|
2874
|
+
Specifies preference of traffic to the backend (from the proxy and from the client for proxyless gRPC).
|
2875
|
+
Possible values are: `IPV4_ONLY`, `PREFER_IPV6`, `IPV6_ONLY`.
|
2876
|
+
"""
|
2877
|
+
return pulumi.get(self, "ip_address_selection_policy")
|
2878
|
+
|
2803
2879
|
@property
|
2804
2880
|
@pulumi.getter(name="loadBalancingScheme")
|
2805
2881
|
def load_balancing_scheme(self) -> pulumi.Output[Optional[str]]:
|
@@ -27,7 +27,7 @@ class GetBackendServiceResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getBackendService.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, affinity_cookie_ttl_sec=None, backends=None, cdn_policies=None, circuit_breakers=None, compression_mode=None, connection_draining_timeout_sec=None, consistent_hash=None, creation_timestamp=None, custom_request_headers=None, custom_response_headers=None, description=None, edge_security_policy=None, enable_cdn=None, fingerprint=None, generated_id=None, health_checks=None, iaps=None, id=None, load_balancing_scheme=None, locality_lb_policies=None, locality_lb_policy=None, log_configs=None, name=None, outlier_detections=None, port_name=None, project=None, protocol=None, security_policy=None, security_settings=None, self_link=None, service_lb_policy=None, session_affinity=None, strong_session_affinity_cookies=None, timeout_sec=None):
|
30
|
+
def __init__(__self__, affinity_cookie_ttl_sec=None, backends=None, cdn_policies=None, circuit_breakers=None, compression_mode=None, connection_draining_timeout_sec=None, consistent_hash=None, creation_timestamp=None, custom_request_headers=None, custom_response_headers=None, description=None, edge_security_policy=None, enable_cdn=None, fingerprint=None, generated_id=None, health_checks=None, iaps=None, id=None, ip_address_selection_policy=None, load_balancing_scheme=None, locality_lb_policies=None, locality_lb_policy=None, log_configs=None, name=None, outlier_detections=None, port_name=None, project=None, protocol=None, security_policy=None, security_settings=None, self_link=None, service_lb_policy=None, session_affinity=None, strong_session_affinity_cookies=None, timeout_sec=None):
|
31
31
|
if affinity_cookie_ttl_sec and not isinstance(affinity_cookie_ttl_sec, int):
|
32
32
|
raise TypeError("Expected argument 'affinity_cookie_ttl_sec' to be a int")
|
33
33
|
pulumi.set(__self__, "affinity_cookie_ttl_sec", affinity_cookie_ttl_sec)
|
@@ -82,6 +82,9 @@ class GetBackendServiceResult:
|
|
82
82
|
if id and not isinstance(id, str):
|
83
83
|
raise TypeError("Expected argument 'id' to be a str")
|
84
84
|
pulumi.set(__self__, "id", id)
|
85
|
+
if ip_address_selection_policy and not isinstance(ip_address_selection_policy, str):
|
86
|
+
raise TypeError("Expected argument 'ip_address_selection_policy' to be a str")
|
87
|
+
pulumi.set(__self__, "ip_address_selection_policy", ip_address_selection_policy)
|
85
88
|
if load_balancing_scheme and not isinstance(load_balancing_scheme, str):
|
86
89
|
raise TypeError("Expected argument 'load_balancing_scheme' to be a str")
|
87
90
|
pulumi.set(__self__, "load_balancing_scheme", load_balancing_scheme)
|
@@ -245,6 +248,11 @@ class GetBackendServiceResult:
|
|
245
248
|
"""
|
246
249
|
return pulumi.get(self, "id")
|
247
250
|
|
251
|
+
@property
|
252
|
+
@pulumi.getter(name="ipAddressSelectionPolicy")
|
253
|
+
def ip_address_selection_policy(self) -> str:
|
254
|
+
return pulumi.get(self, "ip_address_selection_policy")
|
255
|
+
|
248
256
|
@property
|
249
257
|
@pulumi.getter(name="loadBalancingScheme")
|
250
258
|
def load_balancing_scheme(self) -> str:
|
@@ -365,6 +373,7 @@ class AwaitableGetBackendServiceResult(GetBackendServiceResult):
|
|
365
373
|
health_checks=self.health_checks,
|
366
374
|
iaps=self.iaps,
|
367
375
|
id=self.id,
|
376
|
+
ip_address_selection_policy=self.ip_address_selection_policy,
|
368
377
|
load_balancing_scheme=self.load_balancing_scheme,
|
369
378
|
locality_lb_policies=self.locality_lb_policies,
|
370
379
|
locality_lb_policy=self.locality_lb_policy,
|
@@ -434,6 +443,7 @@ def get_backend_service(name: Optional[str] = None,
|
|
434
443
|
health_checks=pulumi.get(__ret__, 'health_checks'),
|
435
444
|
iaps=pulumi.get(__ret__, 'iaps'),
|
436
445
|
id=pulumi.get(__ret__, 'id'),
|
446
|
+
ip_address_selection_policy=pulumi.get(__ret__, 'ip_address_selection_policy'),
|
437
447
|
load_balancing_scheme=pulumi.get(__ret__, 'load_balancing_scheme'),
|
438
448
|
locality_lb_policies=pulumi.get(__ret__, 'locality_lb_policies'),
|
439
449
|
locality_lb_policy=pulumi.get(__ret__, 'locality_lb_policy'),
|
@@ -500,6 +510,7 @@ def get_backend_service_output(name: Optional[pulumi.Input[str]] = None,
|
|
500
510
|
health_checks=pulumi.get(__response__, 'health_checks'),
|
501
511
|
iaps=pulumi.get(__response__, 'iaps'),
|
502
512
|
id=pulumi.get(__response__, 'id'),
|
513
|
+
ip_address_selection_policy=pulumi.get(__response__, 'ip_address_selection_policy'),
|
503
514
|
load_balancing_scheme=pulumi.get(__response__, 'load_balancing_scheme'),
|
504
515
|
locality_lb_policies=pulumi.get(__response__, 'locality_lb_policies'),
|
505
516
|
locality_lb_policy=pulumi.get(__response__, 'locality_lb_policy'),
|
@@ -27,7 +27,7 @@ class GetInstanceResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getInstance.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, advanced_machine_features=None, allow_stopping_for_update=None, attached_disks=None, boot_disks=None, can_ip_forward=None, confidential_instance_configs=None, cpu_platform=None, current_status=None, deletion_protection=None, description=None, desired_status=None, effective_labels=None, enable_display=None, guest_accelerators=None, hostname=None, id=None, instance_id=None, label_fingerprint=None, labels=None, machine_type=None, metadata=None, metadata_fingerprint=None, metadata_startup_script=None, min_cpu_platform=None, name=None, network_interfaces=None, network_performance_configs=None, params=None, partner_metadata=None, project=None, pulumi_labels=None, reservation_affinities=None, resource_policies=None, schedulings=None, scratch_disks=None, self_link=None, service_accounts=None, shielded_instance_configs=None, tags=None, tags_fingerprint=None, zone=None):
|
30
|
+
def __init__(__self__, advanced_machine_features=None, allow_stopping_for_update=None, attached_disks=None, boot_disks=None, can_ip_forward=None, confidential_instance_configs=None, cpu_platform=None, creation_timestamp=None, current_status=None, deletion_protection=None, description=None, desired_status=None, effective_labels=None, enable_display=None, guest_accelerators=None, hostname=None, id=None, instance_id=None, key_revocation_action_type=None, label_fingerprint=None, labels=None, machine_type=None, metadata=None, metadata_fingerprint=None, metadata_startup_script=None, min_cpu_platform=None, name=None, network_interfaces=None, network_performance_configs=None, params=None, partner_metadata=None, project=None, pulumi_labels=None, reservation_affinities=None, resource_policies=None, schedulings=None, scratch_disks=None, self_link=None, service_accounts=None, shielded_instance_configs=None, tags=None, tags_fingerprint=None, zone=None):
|
31
31
|
if advanced_machine_features and not isinstance(advanced_machine_features, list):
|
32
32
|
raise TypeError("Expected argument 'advanced_machine_features' to be a list")
|
33
33
|
pulumi.set(__self__, "advanced_machine_features", advanced_machine_features)
|
@@ -49,6 +49,9 @@ class GetInstanceResult:
|
|
49
49
|
if cpu_platform and not isinstance(cpu_platform, str):
|
50
50
|
raise TypeError("Expected argument 'cpu_platform' to be a str")
|
51
51
|
pulumi.set(__self__, "cpu_platform", cpu_platform)
|
52
|
+
if creation_timestamp and not isinstance(creation_timestamp, str):
|
53
|
+
raise TypeError("Expected argument 'creation_timestamp' to be a str")
|
54
|
+
pulumi.set(__self__, "creation_timestamp", creation_timestamp)
|
52
55
|
if current_status and not isinstance(current_status, str):
|
53
56
|
raise TypeError("Expected argument 'current_status' to be a str")
|
54
57
|
pulumi.set(__self__, "current_status", current_status)
|
@@ -79,6 +82,9 @@ class GetInstanceResult:
|
|
79
82
|
if instance_id and not isinstance(instance_id, str):
|
80
83
|
raise TypeError("Expected argument 'instance_id' to be a str")
|
81
84
|
pulumi.set(__self__, "instance_id", instance_id)
|
85
|
+
if key_revocation_action_type and not isinstance(key_revocation_action_type, str):
|
86
|
+
raise TypeError("Expected argument 'key_revocation_action_type' to be a str")
|
87
|
+
pulumi.set(__self__, "key_revocation_action_type", key_revocation_action_type)
|
82
88
|
if label_fingerprint and not isinstance(label_fingerprint, str):
|
83
89
|
raise TypeError("Expected argument 'label_fingerprint' to be a str")
|
84
90
|
pulumi.set(__self__, "label_fingerprint", label_fingerprint)
|
@@ -199,6 +205,14 @@ class GetInstanceResult:
|
|
199
205
|
"""
|
200
206
|
return pulumi.get(self, "cpu_platform")
|
201
207
|
|
208
|
+
@property
|
209
|
+
@pulumi.getter(name="creationTimestamp")
|
210
|
+
def creation_timestamp(self) -> str:
|
211
|
+
"""
|
212
|
+
Creation timestamp in RFC3339 text format.
|
213
|
+
"""
|
214
|
+
return pulumi.get(self, "creation_timestamp")
|
215
|
+
|
202
216
|
@property
|
203
217
|
@pulumi.getter(name="currentStatus")
|
204
218
|
def current_status(self) -> str:
|
@@ -270,6 +284,14 @@ class GetInstanceResult:
|
|
270
284
|
"""
|
271
285
|
return pulumi.get(self, "instance_id")
|
272
286
|
|
287
|
+
@property
|
288
|
+
@pulumi.getter(name="keyRevocationActionType")
|
289
|
+
def key_revocation_action_type(self) -> str:
|
290
|
+
"""
|
291
|
+
Action to be taken when a customer's encryption key is revoked.
|
292
|
+
"""
|
293
|
+
return pulumi.get(self, "key_revocation_action_type")
|
294
|
+
|
273
295
|
@property
|
274
296
|
@pulumi.getter(name="labelFingerprint")
|
275
297
|
def label_fingerprint(self) -> str:
|
@@ -452,6 +474,7 @@ class AwaitableGetInstanceResult(GetInstanceResult):
|
|
452
474
|
can_ip_forward=self.can_ip_forward,
|
453
475
|
confidential_instance_configs=self.confidential_instance_configs,
|
454
476
|
cpu_platform=self.cpu_platform,
|
477
|
+
creation_timestamp=self.creation_timestamp,
|
455
478
|
current_status=self.current_status,
|
456
479
|
deletion_protection=self.deletion_protection,
|
457
480
|
description=self.description,
|
@@ -462,6 +485,7 @@ class AwaitableGetInstanceResult(GetInstanceResult):
|
|
462
485
|
hostname=self.hostname,
|
463
486
|
id=self.id,
|
464
487
|
instance_id=self.instance_id,
|
488
|
+
key_revocation_action_type=self.key_revocation_action_type,
|
465
489
|
label_fingerprint=self.label_fingerprint,
|
466
490
|
labels=self.labels,
|
467
491
|
machine_type=self.machine_type,
|
@@ -535,6 +559,7 @@ def get_instance(name: Optional[str] = None,
|
|
535
559
|
can_ip_forward=pulumi.get(__ret__, 'can_ip_forward'),
|
536
560
|
confidential_instance_configs=pulumi.get(__ret__, 'confidential_instance_configs'),
|
537
561
|
cpu_platform=pulumi.get(__ret__, 'cpu_platform'),
|
562
|
+
creation_timestamp=pulumi.get(__ret__, 'creation_timestamp'),
|
538
563
|
current_status=pulumi.get(__ret__, 'current_status'),
|
539
564
|
deletion_protection=pulumi.get(__ret__, 'deletion_protection'),
|
540
565
|
description=pulumi.get(__ret__, 'description'),
|
@@ -545,6 +570,7 @@ def get_instance(name: Optional[str] = None,
|
|
545
570
|
hostname=pulumi.get(__ret__, 'hostname'),
|
546
571
|
id=pulumi.get(__ret__, 'id'),
|
547
572
|
instance_id=pulumi.get(__ret__, 'instance_id'),
|
573
|
+
key_revocation_action_type=pulumi.get(__ret__, 'key_revocation_action_type'),
|
548
574
|
label_fingerprint=pulumi.get(__ret__, 'label_fingerprint'),
|
549
575
|
labels=pulumi.get(__ret__, 'labels'),
|
550
576
|
machine_type=pulumi.get(__ret__, 'machine_type'),
|
@@ -615,6 +641,7 @@ def get_instance_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
615
641
|
can_ip_forward=pulumi.get(__response__, 'can_ip_forward'),
|
616
642
|
confidential_instance_configs=pulumi.get(__response__, 'confidential_instance_configs'),
|
617
643
|
cpu_platform=pulumi.get(__response__, 'cpu_platform'),
|
644
|
+
creation_timestamp=pulumi.get(__response__, 'creation_timestamp'),
|
618
645
|
current_status=pulumi.get(__response__, 'current_status'),
|
619
646
|
deletion_protection=pulumi.get(__response__, 'deletion_protection'),
|
620
647
|
description=pulumi.get(__response__, 'description'),
|
@@ -625,6 +652,7 @@ def get_instance_output(name: Optional[pulumi.Input[Optional[str]]] = None,
|
|
625
652
|
hostname=pulumi.get(__response__, 'hostname'),
|
626
653
|
id=pulumi.get(__response__, 'id'),
|
627
654
|
instance_id=pulumi.get(__response__, 'instance_id'),
|
655
|
+
key_revocation_action_type=pulumi.get(__response__, 'key_revocation_action_type'),
|
628
656
|
label_fingerprint=pulumi.get(__response__, 'label_fingerprint'),
|
629
657
|
labels=pulumi.get(__response__, 'labels'),
|
630
658
|
machine_type=pulumi.get(__response__, 'machine_type'),
|
@@ -27,7 +27,7 @@ class GetInstanceTemplateResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getInstanceTemplate.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, advanced_machine_features=None, can_ip_forward=None, confidential_instance_configs=None, description=None, disks=None, effective_labels=None, enable_display=None, filter=None, guest_accelerators=None, id=None, instance_description=None, labels=None, machine_type=None, metadata=None, metadata_fingerprint=None, metadata_startup_script=None, min_cpu_platform=None, most_recent=None, name=None, name_prefix=None, network_interfaces=None, network_performance_configs=None, partner_metadata=None, project=None, pulumi_labels=None, region=None, reservation_affinities=None, resource_manager_tags=None, resource_policies=None, schedulings=None, self_link=None, self_link_unique=None, service_accounts=None, shielded_instance_configs=None, tags=None, tags_fingerprint=None):
|
30
|
+
def __init__(__self__, advanced_machine_features=None, can_ip_forward=None, confidential_instance_configs=None, creation_timestamp=None, description=None, disks=None, effective_labels=None, enable_display=None, filter=None, guest_accelerators=None, id=None, instance_description=None, key_revocation_action_type=None, labels=None, machine_type=None, metadata=None, metadata_fingerprint=None, metadata_startup_script=None, min_cpu_platform=None, most_recent=None, name=None, name_prefix=None, network_interfaces=None, network_performance_configs=None, partner_metadata=None, project=None, pulumi_labels=None, region=None, reservation_affinities=None, resource_manager_tags=None, resource_policies=None, schedulings=None, self_link=None, self_link_unique=None, service_accounts=None, shielded_instance_configs=None, tags=None, tags_fingerprint=None):
|
31
31
|
if advanced_machine_features and not isinstance(advanced_machine_features, list):
|
32
32
|
raise TypeError("Expected argument 'advanced_machine_features' to be a list")
|
33
33
|
pulumi.set(__self__, "advanced_machine_features", advanced_machine_features)
|
@@ -37,6 +37,9 @@ class GetInstanceTemplateResult:
|
|
37
37
|
if confidential_instance_configs and not isinstance(confidential_instance_configs, list):
|
38
38
|
raise TypeError("Expected argument 'confidential_instance_configs' to be a list")
|
39
39
|
pulumi.set(__self__, "confidential_instance_configs", confidential_instance_configs)
|
40
|
+
if creation_timestamp and not isinstance(creation_timestamp, str):
|
41
|
+
raise TypeError("Expected argument 'creation_timestamp' to be a str")
|
42
|
+
pulumi.set(__self__, "creation_timestamp", creation_timestamp)
|
40
43
|
if description and not isinstance(description, str):
|
41
44
|
raise TypeError("Expected argument 'description' to be a str")
|
42
45
|
pulumi.set(__self__, "description", description)
|
@@ -61,6 +64,9 @@ class GetInstanceTemplateResult:
|
|
61
64
|
if instance_description and not isinstance(instance_description, str):
|
62
65
|
raise TypeError("Expected argument 'instance_description' to be a str")
|
63
66
|
pulumi.set(__self__, "instance_description", instance_description)
|
67
|
+
if key_revocation_action_type and not isinstance(key_revocation_action_type, str):
|
68
|
+
raise TypeError("Expected argument 'key_revocation_action_type' to be a str")
|
69
|
+
pulumi.set(__self__, "key_revocation_action_type", key_revocation_action_type)
|
64
70
|
if labels and not isinstance(labels, dict):
|
65
71
|
raise TypeError("Expected argument 'labels' to be a dict")
|
66
72
|
pulumi.set(__self__, "labels", labels)
|
@@ -159,6 +165,14 @@ class GetInstanceTemplateResult:
|
|
159
165
|
"""
|
160
166
|
return pulumi.get(self, "confidential_instance_configs")
|
161
167
|
|
168
|
+
@property
|
169
|
+
@pulumi.getter(name="creationTimestamp")
|
170
|
+
def creation_timestamp(self) -> str:
|
171
|
+
"""
|
172
|
+
Creation timestamp in RFC3339 text format.
|
173
|
+
"""
|
174
|
+
return pulumi.get(self, "creation_timestamp")
|
175
|
+
|
162
176
|
@property
|
163
177
|
@pulumi.getter
|
164
178
|
def description(self) -> str:
|
@@ -221,6 +235,14 @@ class GetInstanceTemplateResult:
|
|
221
235
|
"""
|
222
236
|
return pulumi.get(self, "instance_description")
|
223
237
|
|
238
|
+
@property
|
239
|
+
@pulumi.getter(name="keyRevocationActionType")
|
240
|
+
def key_revocation_action_type(self) -> str:
|
241
|
+
"""
|
242
|
+
Action to be taken when a customer's encryption key is revoked.
|
243
|
+
"""
|
244
|
+
return pulumi.get(self, "key_revocation_action_type")
|
245
|
+
|
224
246
|
@property
|
225
247
|
@pulumi.getter
|
226
248
|
def labels(self) -> Mapping[str, str]:
|
@@ -434,6 +456,7 @@ class AwaitableGetInstanceTemplateResult(GetInstanceTemplateResult):
|
|
434
456
|
advanced_machine_features=self.advanced_machine_features,
|
435
457
|
can_ip_forward=self.can_ip_forward,
|
436
458
|
confidential_instance_configs=self.confidential_instance_configs,
|
459
|
+
creation_timestamp=self.creation_timestamp,
|
437
460
|
description=self.description,
|
438
461
|
disks=self.disks,
|
439
462
|
effective_labels=self.effective_labels,
|
@@ -442,6 +465,7 @@ class AwaitableGetInstanceTemplateResult(GetInstanceTemplateResult):
|
|
442
465
|
guest_accelerators=self.guest_accelerators,
|
443
466
|
id=self.id,
|
444
467
|
instance_description=self.instance_description,
|
468
|
+
key_revocation_action_type=self.key_revocation_action_type,
|
445
469
|
labels=self.labels,
|
446
470
|
machine_type=self.machine_type,
|
447
471
|
metadata=self.metadata,
|
@@ -507,6 +531,7 @@ def get_instance_template(filter: Optional[str] = None,
|
|
507
531
|
advanced_machine_features=pulumi.get(__ret__, 'advanced_machine_features'),
|
508
532
|
can_ip_forward=pulumi.get(__ret__, 'can_ip_forward'),
|
509
533
|
confidential_instance_configs=pulumi.get(__ret__, 'confidential_instance_configs'),
|
534
|
+
creation_timestamp=pulumi.get(__ret__, 'creation_timestamp'),
|
510
535
|
description=pulumi.get(__ret__, 'description'),
|
511
536
|
disks=pulumi.get(__ret__, 'disks'),
|
512
537
|
effective_labels=pulumi.get(__ret__, 'effective_labels'),
|
@@ -515,6 +540,7 @@ def get_instance_template(filter: Optional[str] = None,
|
|
515
540
|
guest_accelerators=pulumi.get(__ret__, 'guest_accelerators'),
|
516
541
|
id=pulumi.get(__ret__, 'id'),
|
517
542
|
instance_description=pulumi.get(__ret__, 'instance_description'),
|
543
|
+
key_revocation_action_type=pulumi.get(__ret__, 'key_revocation_action_type'),
|
518
544
|
labels=pulumi.get(__ret__, 'labels'),
|
519
545
|
machine_type=pulumi.get(__ret__, 'machine_type'),
|
520
546
|
metadata=pulumi.get(__ret__, 'metadata'),
|
@@ -577,6 +603,7 @@ def get_instance_template_output(filter: Optional[pulumi.Input[Optional[str]]] =
|
|
577
603
|
advanced_machine_features=pulumi.get(__response__, 'advanced_machine_features'),
|
578
604
|
can_ip_forward=pulumi.get(__response__, 'can_ip_forward'),
|
579
605
|
confidential_instance_configs=pulumi.get(__response__, 'confidential_instance_configs'),
|
606
|
+
creation_timestamp=pulumi.get(__response__, 'creation_timestamp'),
|
580
607
|
description=pulumi.get(__response__, 'description'),
|
581
608
|
disks=pulumi.get(__response__, 'disks'),
|
582
609
|
effective_labels=pulumi.get(__response__, 'effective_labels'),
|
@@ -585,6 +612,7 @@ def get_instance_template_output(filter: Optional[pulumi.Input[Optional[str]]] =
|
|
585
612
|
guest_accelerators=pulumi.get(__response__, 'guest_accelerators'),
|
586
613
|
id=pulumi.get(__response__, 'id'),
|
587
614
|
instance_description=pulumi.get(__response__, 'instance_description'),
|
615
|
+
key_revocation_action_type=pulumi.get(__response__, 'key_revocation_action_type'),
|
588
616
|
labels=pulumi.get(__response__, 'labels'),
|
589
617
|
machine_type=pulumi.get(__response__, 'machine_type'),
|
590
618
|
metadata=pulumi.get(__response__, 'metadata'),
|
@@ -326,15 +326,6 @@ def get_region_instance_group_manager(name: Optional[str] = None,
|
|
326
326
|
self_link: Optional[str] = None,
|
327
327
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetRegionInstanceGroupManagerResult:
|
328
328
|
"""
|
329
|
-
## subcategory: "Compute Engine"
|
330
|
-
|
331
|
-
page_title: "Google: compute.RegionInstanceGroupManager"
|
332
|
-
description: |-
|
333
|
-
Get a Compute Region Instance Group within GCE.
|
334
|
-
---
|
335
|
-
|
336
|
-
# google\\_compute\\_region\\_instance\\_group\\_manager
|
337
|
-
|
338
329
|
Get a Compute Region Instance Group Manager within GCE.
|
339
330
|
For more information, see [the official documentation](https://cloud.google.com/compute/docs/instance-groups/distributing-instances-with-regional-instance-groups)
|
340
331
|
and [API](https://cloud.google.com/compute/docs/reference/rest/v1/regionInstanceGroupManagers)
|
@@ -402,15 +393,6 @@ def get_region_instance_group_manager_output(name: Optional[pulumi.Input[Optiona
|
|
402
393
|
self_link: Optional[pulumi.Input[Optional[str]]] = None,
|
403
394
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetRegionInstanceGroupManagerResult]:
|
404
395
|
"""
|
405
|
-
## subcategory: "Compute Engine"
|
406
|
-
|
407
|
-
page_title: "Google: compute.RegionInstanceGroupManager"
|
408
|
-
description: |-
|
409
|
-
Get a Compute Region Instance Group within GCE.
|
410
|
-
---
|
411
|
-
|
412
|
-
# google\\_compute\\_region\\_instance\\_group\\_manager
|
413
|
-
|
414
396
|
Get a Compute Region Instance Group Manager within GCE.
|
415
397
|
For more information, see [the official documentation](https://cloud.google.com/compute/docs/instance-groups/distributing-instances-with-regional-instance-groups)
|
416
398
|
and [API](https://cloud.google.com/compute/docs/reference/rest/v1/regionInstanceGroupManagers)
|
@@ -27,7 +27,7 @@ class GetRegionInstanceTemplateResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getRegionInstanceTemplate.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, advanced_machine_features=None, can_ip_forward=None, confidential_instance_configs=None, description=None, disks=None, effective_labels=None, enable_display=None, filter=None, guest_accelerators=None, id=None, instance_description=None, labels=None, machine_type=None, metadata=None, metadata_fingerprint=None, metadata_startup_script=None, min_cpu_platform=None, most_recent=None, name=None, name_prefix=None, network_interfaces=None, network_performance_configs=None, partner_metadata=None, project=None, pulumi_labels=None, region=None, reservation_affinities=None, resource_manager_tags=None, resource_policies=None, schedulings=None, self_link=None, service_accounts=None, shielded_instance_configs=None, tags=None, tags_fingerprint=None):
|
30
|
+
def __init__(__self__, advanced_machine_features=None, can_ip_forward=None, confidential_instance_configs=None, creation_timestamp=None, description=None, disks=None, effective_labels=None, enable_display=None, filter=None, guest_accelerators=None, id=None, instance_description=None, key_revocation_action_type=None, labels=None, machine_type=None, metadata=None, metadata_fingerprint=None, metadata_startup_script=None, min_cpu_platform=None, most_recent=None, name=None, name_prefix=None, network_interfaces=None, network_performance_configs=None, partner_metadata=None, project=None, pulumi_labels=None, region=None, reservation_affinities=None, resource_manager_tags=None, resource_policies=None, schedulings=None, self_link=None, service_accounts=None, shielded_instance_configs=None, tags=None, tags_fingerprint=None):
|
31
31
|
if advanced_machine_features and not isinstance(advanced_machine_features, list):
|
32
32
|
raise TypeError("Expected argument 'advanced_machine_features' to be a list")
|
33
33
|
pulumi.set(__self__, "advanced_machine_features", advanced_machine_features)
|
@@ -37,6 +37,9 @@ class GetRegionInstanceTemplateResult:
|
|
37
37
|
if confidential_instance_configs and not isinstance(confidential_instance_configs, list):
|
38
38
|
raise TypeError("Expected argument 'confidential_instance_configs' to be a list")
|
39
39
|
pulumi.set(__self__, "confidential_instance_configs", confidential_instance_configs)
|
40
|
+
if creation_timestamp and not isinstance(creation_timestamp, str):
|
41
|
+
raise TypeError("Expected argument 'creation_timestamp' to be a str")
|
42
|
+
pulumi.set(__self__, "creation_timestamp", creation_timestamp)
|
40
43
|
if description and not isinstance(description, str):
|
41
44
|
raise TypeError("Expected argument 'description' to be a str")
|
42
45
|
pulumi.set(__self__, "description", description)
|
@@ -61,6 +64,9 @@ class GetRegionInstanceTemplateResult:
|
|
61
64
|
if instance_description and not isinstance(instance_description, str):
|
62
65
|
raise TypeError("Expected argument 'instance_description' to be a str")
|
63
66
|
pulumi.set(__self__, "instance_description", instance_description)
|
67
|
+
if key_revocation_action_type and not isinstance(key_revocation_action_type, str):
|
68
|
+
raise TypeError("Expected argument 'key_revocation_action_type' to be a str")
|
69
|
+
pulumi.set(__self__, "key_revocation_action_type", key_revocation_action_type)
|
64
70
|
if labels and not isinstance(labels, dict):
|
65
71
|
raise TypeError("Expected argument 'labels' to be a dict")
|
66
72
|
pulumi.set(__self__, "labels", labels)
|
@@ -156,6 +162,14 @@ class GetRegionInstanceTemplateResult:
|
|
156
162
|
"""
|
157
163
|
return pulumi.get(self, "confidential_instance_configs")
|
158
164
|
|
165
|
+
@property
|
166
|
+
@pulumi.getter(name="creationTimestamp")
|
167
|
+
def creation_timestamp(self) -> str:
|
168
|
+
"""
|
169
|
+
Creation timestamp in RFC3339 text format.
|
170
|
+
"""
|
171
|
+
return pulumi.get(self, "creation_timestamp")
|
172
|
+
|
159
173
|
@property
|
160
174
|
@pulumi.getter
|
161
175
|
def description(self) -> str:
|
@@ -218,6 +232,14 @@ class GetRegionInstanceTemplateResult:
|
|
218
232
|
"""
|
219
233
|
return pulumi.get(self, "instance_description")
|
220
234
|
|
235
|
+
@property
|
236
|
+
@pulumi.getter(name="keyRevocationActionType")
|
237
|
+
def key_revocation_action_type(self) -> str:
|
238
|
+
"""
|
239
|
+
Action to be taken when a customer's encryption key is revoked.
|
240
|
+
"""
|
241
|
+
return pulumi.get(self, "key_revocation_action_type")
|
242
|
+
|
221
243
|
@property
|
222
244
|
@pulumi.getter
|
223
245
|
def labels(self) -> Mapping[str, str]:
|
@@ -412,6 +434,7 @@ class AwaitableGetRegionInstanceTemplateResult(GetRegionInstanceTemplateResult):
|
|
412
434
|
advanced_machine_features=self.advanced_machine_features,
|
413
435
|
can_ip_forward=self.can_ip_forward,
|
414
436
|
confidential_instance_configs=self.confidential_instance_configs,
|
437
|
+
creation_timestamp=self.creation_timestamp,
|
415
438
|
description=self.description,
|
416
439
|
disks=self.disks,
|
417
440
|
effective_labels=self.effective_labels,
|
@@ -420,6 +443,7 @@ class AwaitableGetRegionInstanceTemplateResult(GetRegionInstanceTemplateResult):
|
|
420
443
|
guest_accelerators=self.guest_accelerators,
|
421
444
|
id=self.id,
|
422
445
|
instance_description=self.instance_description,
|
446
|
+
key_revocation_action_type=self.key_revocation_action_type,
|
423
447
|
labels=self.labels,
|
424
448
|
machine_type=self.machine_type,
|
425
449
|
metadata=self.metadata,
|
@@ -495,6 +519,7 @@ def get_region_instance_template(filter: Optional[str] = None,
|
|
495
519
|
advanced_machine_features=pulumi.get(__ret__, 'advanced_machine_features'),
|
496
520
|
can_ip_forward=pulumi.get(__ret__, 'can_ip_forward'),
|
497
521
|
confidential_instance_configs=pulumi.get(__ret__, 'confidential_instance_configs'),
|
522
|
+
creation_timestamp=pulumi.get(__ret__, 'creation_timestamp'),
|
498
523
|
description=pulumi.get(__ret__, 'description'),
|
499
524
|
disks=pulumi.get(__ret__, 'disks'),
|
500
525
|
effective_labels=pulumi.get(__ret__, 'effective_labels'),
|
@@ -503,6 +528,7 @@ def get_region_instance_template(filter: Optional[str] = None,
|
|
503
528
|
guest_accelerators=pulumi.get(__ret__, 'guest_accelerators'),
|
504
529
|
id=pulumi.get(__ret__, 'id'),
|
505
530
|
instance_description=pulumi.get(__ret__, 'instance_description'),
|
531
|
+
key_revocation_action_type=pulumi.get(__ret__, 'key_revocation_action_type'),
|
506
532
|
labels=pulumi.get(__ret__, 'labels'),
|
507
533
|
machine_type=pulumi.get(__ret__, 'machine_type'),
|
508
534
|
metadata=pulumi.get(__ret__, 'metadata'),
|
@@ -575,6 +601,7 @@ def get_region_instance_template_output(filter: Optional[pulumi.Input[Optional[s
|
|
575
601
|
advanced_machine_features=pulumi.get(__response__, 'advanced_machine_features'),
|
576
602
|
can_ip_forward=pulumi.get(__response__, 'can_ip_forward'),
|
577
603
|
confidential_instance_configs=pulumi.get(__response__, 'confidential_instance_configs'),
|
604
|
+
creation_timestamp=pulumi.get(__response__, 'creation_timestamp'),
|
578
605
|
description=pulumi.get(__response__, 'description'),
|
579
606
|
disks=pulumi.get(__response__, 'disks'),
|
580
607
|
effective_labels=pulumi.get(__response__, 'effective_labels'),
|
@@ -583,6 +610,7 @@ def get_region_instance_template_output(filter: Optional[pulumi.Input[Optional[s
|
|
583
610
|
guest_accelerators=pulumi.get(__response__, 'guest_accelerators'),
|
584
611
|
id=pulumi.get(__response__, 'id'),
|
585
612
|
instance_description=pulumi.get(__response__, 'instance_description'),
|
613
|
+
key_revocation_action_type=pulumi.get(__response__, 'key_revocation_action_type'),
|
586
614
|
labels=pulumi.get(__response__, 'labels'),
|
587
615
|
machine_type=pulumi.get(__response__, 'machine_type'),
|
588
616
|
metadata=pulumi.get(__response__, 'metadata'),
|