pulumi-gcp 7.28.0a1718863699__py3-none-any.whl → 7.28.0a1718995220__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 +59 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +58 -74
- pulumi_gcp/accesscontextmanager/access_levels.py +0 -20
- pulumi_gcp/accesscontextmanager/outputs.py +58 -74
- pulumi_gcp/accesscontextmanager/service_perimeter.py +2 -0
- pulumi_gcp/bigtable/_inputs.py +40 -0
- pulumi_gcp/bigtable/outputs.py +49 -0
- pulumi_gcp/bigtable/table.py +54 -0
- pulumi_gcp/cloudbuildv2/_inputs.py +383 -0
- pulumi_gcp/cloudbuildv2/connection.py +110 -2
- pulumi_gcp/cloudbuildv2/outputs.py +421 -0
- pulumi_gcp/composer/__init__.py +3 -0
- pulumi_gcp/composer/get_user_workloads_config_map.py +190 -0
- pulumi_gcp/composer/get_user_workloads_secret.py +188 -0
- pulumi_gcp/composer/user_workloads_config_map.py +475 -0
- pulumi_gcp/compute/_inputs.py +4 -2
- pulumi_gcp/compute/backend_service.py +28 -48
- pulumi_gcp/compute/interconnect.py +4 -4
- pulumi_gcp/compute/outputs.py +10 -4
- pulumi_gcp/compute/region_backend_service.py +35 -48
- pulumi_gcp/compute/region_network_endpoint.py +187 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +49 -9
- pulumi_gcp/compute/region_target_https_proxy.py +7 -14
- pulumi_gcp/compute/target_https_proxy.py +28 -14
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +2 -2
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/discoveryengine/_inputs.py +227 -0
- pulumi_gcp/discoveryengine/data_store.py +108 -0
- pulumi_gcp/discoveryengine/outputs.py +280 -0
- pulumi_gcp/edgecontainer/_inputs.py +107 -1
- pulumi_gcp/edgecontainer/outputs.py +123 -1
- pulumi_gcp/gkehub/_inputs.py +16 -0
- pulumi_gcp/gkehub/outputs.py +15 -1
- pulumi_gcp/logging/folder_sink.py +14 -14
- pulumi_gcp/logging/organization_sink.py +14 -14
- pulumi_gcp/managedkafka/__init__.py +11 -0
- pulumi_gcp/managedkafka/_inputs.py +169 -0
- pulumi_gcp/managedkafka/cluster.py +807 -0
- pulumi_gcp/managedkafka/outputs.py +197 -0
- pulumi_gcp/managedkafka/topic.py +599 -0
- pulumi_gcp/netapp/__init__.py +1 -0
- pulumi_gcp/netapp/active_directory.py +55 -0
- pulumi_gcp/netapp/backup.py +903 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/__init__.py +3 -0
- pulumi_gcp/securitycenter/_inputs.py +1105 -0
- pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py +725 -0
- pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py +713 -0
- pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_module.py +706 -0
- pulumi_gcp/securitycenter/outputs.py +1048 -0
- pulumi_gcp/vertex/ai_feature_online_store.py +37 -8
- {pulumi_gcp-7.28.0a1718863699.dist-info → pulumi_gcp-7.28.0a1718995220.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.28.0a1718863699.dist-info → pulumi_gcp-7.28.0a1718995220.dist-info}/RECORD +58 -46
- {pulumi_gcp-7.28.0a1718863699.dist-info → pulumi_gcp-7.28.0a1718995220.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.28.0a1718863699.dist-info → pulumi_gcp-7.28.0a1718995220.dist-info}/top_level.txt +0 -0
pulumi_gcp/compute/_inputs.py
CHANGED
@@ -1758,6 +1758,7 @@ class BackendServiceBackendArgs:
|
|
1758
1758
|
and CONNECTION (for TCP/SSL).
|
1759
1759
|
See the [Backend Services Overview](https://cloud.google.com/load-balancing/docs/backend-service#balancing-mode)
|
1760
1760
|
for an explanation of load balancing modes.
|
1761
|
+
From version 6.0.0 default value will be UTILIZATION to match default GCP value.
|
1761
1762
|
Default value is `UTILIZATION`.
|
1762
1763
|
Possible values are: `UTILIZATION`, `RATE`, `CONNECTION`.
|
1763
1764
|
:param pulumi.Input[float] capacity_scaler: A multiplier applied to the group's maximum servicing capacity
|
@@ -1858,6 +1859,7 @@ class BackendServiceBackendArgs:
|
|
1858
1859
|
and CONNECTION (for TCP/SSL).
|
1859
1860
|
See the [Backend Services Overview](https://cloud.google.com/load-balancing/docs/backend-service#balancing-mode)
|
1860
1861
|
for an explanation of load balancing modes.
|
1862
|
+
From version 6.0.0 default value will be UTILIZATION to match default GCP value.
|
1861
1863
|
Default value is `UTILIZATION`.
|
1862
1864
|
Possible values are: `UTILIZATION`, `RATE`, `CONNECTION`.
|
1863
1865
|
"""
|
@@ -3687,7 +3689,6 @@ class DiskGuestOsFeatureArgs:
|
|
3687
3689
|
type: pulumi.Input[str]):
|
3688
3690
|
"""
|
3689
3691
|
:param pulumi.Input[str] type: The type of supported feature. Read [Enabling guest operating system features](https://cloud.google.com/compute/docs/images/create-delete-deprecate-private-images#guest-os-features) to see a list of available options.
|
3690
|
-
Possible values are: `MULTI_IP_SUBNET`, `SECURE_BOOT`, `SEV_CAPABLE`, `UEFI_COMPATIBLE`, `VIRTIO_SCSI_MULTIQUEUE`, `WINDOWS`, `GVNIC`, `SEV_LIVE_MIGRATABLE`, `SEV_SNP_CAPABLE`, `SUSPEND_RESUME_COMPATIBLE`, `TDX_CAPABLE`, `SEV_LIVE_MIGRATABLE_V2`.
|
3691
3692
|
"""
|
3692
3693
|
pulumi.set(__self__, "type", type)
|
3693
3694
|
|
@@ -3696,7 +3697,6 @@ class DiskGuestOsFeatureArgs:
|
|
3696
3697
|
def type(self) -> pulumi.Input[str]:
|
3697
3698
|
"""
|
3698
3699
|
The type of supported feature. Read [Enabling guest operating system features](https://cloud.google.com/compute/docs/images/create-delete-deprecate-private-images#guest-os-features) to see a list of available options.
|
3699
|
-
Possible values are: `MULTI_IP_SUBNET`, `SECURE_BOOT`, `SEV_CAPABLE`, `UEFI_COMPATIBLE`, `VIRTIO_SCSI_MULTIQUEUE`, `WINDOWS`, `GVNIC`, `SEV_LIVE_MIGRATABLE`, `SEV_SNP_CAPABLE`, `SUSPEND_RESUME_COMPATIBLE`, `TDX_CAPABLE`, `SEV_LIVE_MIGRATABLE_V2`.
|
3700
3700
|
"""
|
3701
3701
|
return pulumi.get(self, "type")
|
3702
3702
|
|
@@ -16337,6 +16337,7 @@ class RegionBackendServiceBackendArgs:
|
|
16337
16337
|
:param pulumi.Input[str] balancing_mode: Specifies the balancing mode for this backend.
|
16338
16338
|
See the [Backend Services Overview](https://cloud.google.com/load-balancing/docs/backend-service#balancing-mode)
|
16339
16339
|
for an explanation of load balancing modes.
|
16340
|
+
From version 6.0.0 default value will be UTILIZATION to match default GCP value.
|
16340
16341
|
Default value is `CONNECTION`.
|
16341
16342
|
Possible values are: `UTILIZATION`, `RATE`, `CONNECTION`.
|
16342
16343
|
:param pulumi.Input[float] capacity_scaler: A multiplier applied to the group's maximum servicing capacity
|
@@ -16449,6 +16450,7 @@ class RegionBackendServiceBackendArgs:
|
|
16449
16450
|
Specifies the balancing mode for this backend.
|
16450
16451
|
See the [Backend Services Overview](https://cloud.google.com/load-balancing/docs/backend-service#balancing-mode)
|
16451
16452
|
for an explanation of load balancing modes.
|
16453
|
+
From version 6.0.0 default value will be UTILIZATION to match default GCP value.
|
16452
16454
|
Default value is `CONNECTION`.
|
16453
16455
|
Possible values are: `UTILIZATION`, `RATE`, `CONNECTION`.
|
16454
16456
|
"""
|
@@ -159,10 +159,6 @@ class BackendServiceArgs:
|
|
159
159
|
|
160
160
|
|
161
161
|
- - -
|
162
|
-
:param pulumi.Input['BackendServiceOutlierDetectionArgs'] outlier_detection: Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
163
|
-
Applicable backend service types can be a global backend service with the
|
164
|
-
loadBalancingScheme set to INTERNAL_SELF_MANAGED or EXTERNAL_MANAGED.
|
165
|
-
Structure is documented below.
|
166
162
|
:param pulumi.Input[str] port_name: Name of backend port. The same name should appear in the instance
|
167
163
|
groups referenced by this service. Required when the load balancing
|
168
164
|
scheme is EXTERNAL.
|
@@ -185,8 +181,10 @@ class BackendServiceArgs:
|
|
185
181
|
:param pulumi.Input[str] session_affinity: Type of session affinity to use. The default is NONE. Session affinity is
|
186
182
|
not applicable if the protocol is UDP.
|
187
183
|
Possible values are: `NONE`, `CLIENT_IP`, `CLIENT_IP_PORT_PROTO`, `CLIENT_IP_PROTO`, `GENERATED_COOKIE`, `HEADER_FIELD`, `HTTP_COOKIE`.
|
188
|
-
:param pulumi.Input[int] timeout_sec:
|
189
|
-
|
184
|
+
:param pulumi.Input[int] timeout_sec: The backend service timeout has a different meaning depending on the type of load balancer.
|
185
|
+
For more information see, [Backend service settings](https://cloud.google.com/compute/docs/reference/rest/v1/backendServices).
|
186
|
+
The default is 30 seconds.
|
187
|
+
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
190
188
|
"""
|
191
189
|
if affinity_cookie_ttl_sec is not None:
|
192
190
|
pulumi.set(__self__, "affinity_cookie_ttl_sec", affinity_cookie_ttl_sec)
|
@@ -570,12 +568,6 @@ class BackendServiceArgs:
|
|
570
568
|
@property
|
571
569
|
@pulumi.getter(name="outlierDetection")
|
572
570
|
def outlier_detection(self) -> Optional[pulumi.Input['BackendServiceOutlierDetectionArgs']]:
|
573
|
-
"""
|
574
|
-
Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
575
|
-
Applicable backend service types can be a global backend service with the
|
576
|
-
loadBalancingScheme set to INTERNAL_SELF_MANAGED or EXTERNAL_MANAGED.
|
577
|
-
Structure is documented below.
|
578
|
-
"""
|
579
571
|
return pulumi.get(self, "outlier_detection")
|
580
572
|
|
581
573
|
@outlier_detection.setter
|
@@ -685,8 +677,10 @@ class BackendServiceArgs:
|
|
685
677
|
@pulumi.getter(name="timeoutSec")
|
686
678
|
def timeout_sec(self) -> Optional[pulumi.Input[int]]:
|
687
679
|
"""
|
688
|
-
|
689
|
-
|
680
|
+
The backend service timeout has a different meaning depending on the type of load balancer.
|
681
|
+
For more information see, [Backend service settings](https://cloud.google.com/compute/docs/reference/rest/v1/backendServices).
|
682
|
+
The default is 30 seconds.
|
683
|
+
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
690
684
|
"""
|
691
685
|
return pulumi.get(self, "timeout_sec")
|
692
686
|
|
@@ -849,10 +843,6 @@ class _BackendServiceState:
|
|
849
843
|
|
850
844
|
|
851
845
|
- - -
|
852
|
-
:param pulumi.Input['BackendServiceOutlierDetectionArgs'] outlier_detection: Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
853
|
-
Applicable backend service types can be a global backend service with the
|
854
|
-
loadBalancingScheme set to INTERNAL_SELF_MANAGED or EXTERNAL_MANAGED.
|
855
|
-
Structure is documented below.
|
856
846
|
:param pulumi.Input[str] port_name: Name of backend port. The same name should appear in the instance
|
857
847
|
groups referenced by this service. Required when the load balancing
|
858
848
|
scheme is EXTERNAL.
|
@@ -876,8 +866,10 @@ class _BackendServiceState:
|
|
876
866
|
:param pulumi.Input[str] session_affinity: Type of session affinity to use. The default is NONE. Session affinity is
|
877
867
|
not applicable if the protocol is UDP.
|
878
868
|
Possible values are: `NONE`, `CLIENT_IP`, `CLIENT_IP_PORT_PROTO`, `CLIENT_IP_PROTO`, `GENERATED_COOKIE`, `HEADER_FIELD`, `HTTP_COOKIE`.
|
879
|
-
:param pulumi.Input[int] timeout_sec:
|
880
|
-
|
869
|
+
:param pulumi.Input[int] timeout_sec: The backend service timeout has a different meaning depending on the type of load balancer.
|
870
|
+
For more information see, [Backend service settings](https://cloud.google.com/compute/docs/reference/rest/v1/backendServices).
|
871
|
+
The default is 30 seconds.
|
872
|
+
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
881
873
|
"""
|
882
874
|
if affinity_cookie_ttl_sec is not None:
|
883
875
|
pulumi.set(__self__, "affinity_cookie_ttl_sec", affinity_cookie_ttl_sec)
|
@@ -1306,12 +1298,6 @@ class _BackendServiceState:
|
|
1306
1298
|
@property
|
1307
1299
|
@pulumi.getter(name="outlierDetection")
|
1308
1300
|
def outlier_detection(self) -> Optional[pulumi.Input['BackendServiceOutlierDetectionArgs']]:
|
1309
|
-
"""
|
1310
|
-
Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
1311
|
-
Applicable backend service types can be a global backend service with the
|
1312
|
-
loadBalancingScheme set to INTERNAL_SELF_MANAGED or EXTERNAL_MANAGED.
|
1313
|
-
Structure is documented below.
|
1314
|
-
"""
|
1315
1301
|
return pulumi.get(self, "outlier_detection")
|
1316
1302
|
|
1317
1303
|
@outlier_detection.setter
|
@@ -1433,8 +1419,10 @@ class _BackendServiceState:
|
|
1433
1419
|
@pulumi.getter(name="timeoutSec")
|
1434
1420
|
def timeout_sec(self) -> Optional[pulumi.Input[int]]:
|
1435
1421
|
"""
|
1436
|
-
|
1437
|
-
|
1422
|
+
The backend service timeout has a different meaning depending on the type of load balancer.
|
1423
|
+
For more information see, [Backend service settings](https://cloud.google.com/compute/docs/reference/rest/v1/backendServices).
|
1424
|
+
The default is 30 seconds.
|
1425
|
+
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
1438
1426
|
"""
|
1439
1427
|
return pulumi.get(self, "timeout_sec")
|
1440
1428
|
|
@@ -1873,10 +1861,6 @@ class BackendService(pulumi.CustomResource):
|
|
1873
1861
|
|
1874
1862
|
|
1875
1863
|
- - -
|
1876
|
-
:param pulumi.Input[pulumi.InputType['BackendServiceOutlierDetectionArgs']] outlier_detection: Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
1877
|
-
Applicable backend service types can be a global backend service with the
|
1878
|
-
loadBalancingScheme set to INTERNAL_SELF_MANAGED or EXTERNAL_MANAGED.
|
1879
|
-
Structure is documented below.
|
1880
1864
|
:param pulumi.Input[str] port_name: Name of backend port. The same name should appear in the instance
|
1881
1865
|
groups referenced by this service. Required when the load balancing
|
1882
1866
|
scheme is EXTERNAL.
|
@@ -1899,8 +1883,10 @@ class BackendService(pulumi.CustomResource):
|
|
1899
1883
|
:param pulumi.Input[str] session_affinity: Type of session affinity to use. The default is NONE. Session affinity is
|
1900
1884
|
not applicable if the protocol is UDP.
|
1901
1885
|
Possible values are: `NONE`, `CLIENT_IP`, `CLIENT_IP_PORT_PROTO`, `CLIENT_IP_PROTO`, `GENERATED_COOKIE`, `HEADER_FIELD`, `HTTP_COOKIE`.
|
1902
|
-
:param pulumi.Input[int] timeout_sec:
|
1903
|
-
|
1886
|
+
:param pulumi.Input[int] timeout_sec: The backend service timeout has a different meaning depending on the type of load balancer.
|
1887
|
+
For more information see, [Backend service settings](https://cloud.google.com/compute/docs/reference/rest/v1/backendServices).
|
1888
|
+
The default is 30 seconds.
|
1889
|
+
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
1904
1890
|
"""
|
1905
1891
|
...
|
1906
1892
|
@overload
|
@@ -2439,10 +2425,6 @@ class BackendService(pulumi.CustomResource):
|
|
2439
2425
|
|
2440
2426
|
|
2441
2427
|
- - -
|
2442
|
-
:param pulumi.Input[pulumi.InputType['BackendServiceOutlierDetectionArgs']] outlier_detection: Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
2443
|
-
Applicable backend service types can be a global backend service with the
|
2444
|
-
loadBalancingScheme set to INTERNAL_SELF_MANAGED or EXTERNAL_MANAGED.
|
2445
|
-
Structure is documented below.
|
2446
2428
|
:param pulumi.Input[str] port_name: Name of backend port. The same name should appear in the instance
|
2447
2429
|
groups referenced by this service. Required when the load balancing
|
2448
2430
|
scheme is EXTERNAL.
|
@@ -2466,8 +2448,10 @@ class BackendService(pulumi.CustomResource):
|
|
2466
2448
|
:param pulumi.Input[str] session_affinity: Type of session affinity to use. The default is NONE. Session affinity is
|
2467
2449
|
not applicable if the protocol is UDP.
|
2468
2450
|
Possible values are: `NONE`, `CLIENT_IP`, `CLIENT_IP_PORT_PROTO`, `CLIENT_IP_PROTO`, `GENERATED_COOKIE`, `HEADER_FIELD`, `HTTP_COOKIE`.
|
2469
|
-
:param pulumi.Input[int] timeout_sec:
|
2470
|
-
|
2451
|
+
:param pulumi.Input[int] timeout_sec: The backend service timeout has a different meaning depending on the type of load balancer.
|
2452
|
+
For more information see, [Backend service settings](https://cloud.google.com/compute/docs/reference/rest/v1/backendServices).
|
2453
|
+
The default is 30 seconds.
|
2454
|
+
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
2471
2455
|
"""
|
2472
2456
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
2473
2457
|
|
@@ -2781,12 +2765,6 @@ class BackendService(pulumi.CustomResource):
|
|
2781
2765
|
@property
|
2782
2766
|
@pulumi.getter(name="outlierDetection")
|
2783
2767
|
def outlier_detection(self) -> pulumi.Output[Optional['outputs.BackendServiceOutlierDetection']]:
|
2784
|
-
"""
|
2785
|
-
Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
2786
|
-
Applicable backend service types can be a global backend service with the
|
2787
|
-
loadBalancingScheme set to INTERNAL_SELF_MANAGED or EXTERNAL_MANAGED.
|
2788
|
-
Structure is documented below.
|
2789
|
-
"""
|
2790
2768
|
return pulumi.get(self, "outlier_detection")
|
2791
2769
|
|
2792
2770
|
@property
|
@@ -2872,8 +2850,10 @@ class BackendService(pulumi.CustomResource):
|
|
2872
2850
|
@pulumi.getter(name="timeoutSec")
|
2873
2851
|
def timeout_sec(self) -> pulumi.Output[int]:
|
2874
2852
|
"""
|
2875
|
-
|
2876
|
-
|
2853
|
+
The backend service timeout has a different meaning depending on the type of load balancer.
|
2854
|
+
For more information see, [Backend service settings](https://cloud.google.com/compute/docs/reference/rest/v1/backendServices).
|
2855
|
+
The default is 30 seconds.
|
2856
|
+
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
2877
2857
|
"""
|
2878
2858
|
return pulumi.get(self, "timeout_sec")
|
2879
2859
|
|
@@ -421,7 +421,7 @@ class _InterconnectState:
|
|
421
421
|
all other forms described, such as Cloud Monitoring logs alerting and Cloud Notifications.
|
422
422
|
This field is required for users who sign up for Cloud Interconnect using workforce identity
|
423
423
|
federation.
|
424
|
-
:param pulumi.Input[str] operational_status: The current status of this Interconnect's functionality, which can take one of the following
|
424
|
+
:param pulumi.Input[str] operational_status: The current status of this Interconnect's functionality, which can take one of the following:
|
425
425
|
- OS_ACTIVE: A valid Interconnect, which is turned up and is ready to use. Attachments may
|
426
426
|
be provisioned on this Interconnect.
|
427
427
|
- OS_UNPROVISIONED: An Interconnect that has not completed turnup. No attachments may be
|
@@ -799,7 +799,7 @@ class _InterconnectState:
|
|
799
799
|
@pulumi.getter(name="operationalStatus")
|
800
800
|
def operational_status(self) -> Optional[pulumi.Input[str]]:
|
801
801
|
"""
|
802
|
-
The current status of this Interconnect's functionality, which can take one of the following
|
802
|
+
The current status of this Interconnect's functionality, which can take one of the following:
|
803
803
|
- OS_ACTIVE: A valid Interconnect, which is turned up and is ready to use. Attachments may
|
804
804
|
be provisioned on this Interconnect.
|
805
805
|
- OS_UNPROVISIONED: An Interconnect that has not completed turnup. No attachments may be
|
@@ -1310,7 +1310,7 @@ class Interconnect(pulumi.CustomResource):
|
|
1310
1310
|
all other forms described, such as Cloud Monitoring logs alerting and Cloud Notifications.
|
1311
1311
|
This field is required for users who sign up for Cloud Interconnect using workforce identity
|
1312
1312
|
federation.
|
1313
|
-
:param pulumi.Input[str] operational_status: The current status of this Interconnect's functionality, which can take one of the following
|
1313
|
+
:param pulumi.Input[str] operational_status: The current status of this Interconnect's functionality, which can take one of the following:
|
1314
1314
|
- OS_ACTIVE: A valid Interconnect, which is turned up and is ready to use. Attachments may
|
1315
1315
|
be provisioned on this Interconnect.
|
1316
1316
|
- OS_UNPROVISIONED: An Interconnect that has not completed turnup. No attachments may be
|
@@ -1583,7 +1583,7 @@ class Interconnect(pulumi.CustomResource):
|
|
1583
1583
|
@pulumi.getter(name="operationalStatus")
|
1584
1584
|
def operational_status(self) -> pulumi.Output[str]:
|
1585
1585
|
"""
|
1586
|
-
The current status of this Interconnect's functionality, which can take one of the following
|
1586
|
+
The current status of this Interconnect's functionality, which can take one of the following:
|
1587
1587
|
- OS_ACTIVE: A valid Interconnect, which is turned up and is ready to use. Attachments may
|
1588
1588
|
be provisioned on this Interconnect.
|
1589
1589
|
- OS_UNPROVISIONED: An Interconnect that has not completed turnup. No attachments may be
|
pulumi_gcp/compute/outputs.py
CHANGED
@@ -1965,6 +1965,7 @@ class BackendServiceBackend(dict):
|
|
1965
1965
|
and CONNECTION (for TCP/SSL).
|
1966
1966
|
See the [Backend Services Overview](https://cloud.google.com/load-balancing/docs/backend-service#balancing-mode)
|
1967
1967
|
for an explanation of load balancing modes.
|
1968
|
+
From version 6.0.0 default value will be UTILIZATION to match default GCP value.
|
1968
1969
|
Default value is `UTILIZATION`.
|
1969
1970
|
Possible values are: `UTILIZATION`, `RATE`, `CONNECTION`.
|
1970
1971
|
:param float capacity_scaler: A multiplier applied to the group's maximum servicing capacity
|
@@ -2061,6 +2062,7 @@ class BackendServiceBackend(dict):
|
|
2061
2062
|
and CONNECTION (for TCP/SSL).
|
2062
2063
|
See the [Backend Services Overview](https://cloud.google.com/load-balancing/docs/backend-service#balancing-mode)
|
2063
2064
|
for an explanation of load balancing modes.
|
2065
|
+
From version 6.0.0 default value will be UTILIZATION to match default GCP value.
|
2064
2066
|
Default value is `UTILIZATION`.
|
2065
2067
|
Possible values are: `UTILIZATION`, `RATE`, `CONNECTION`.
|
2066
2068
|
"""
|
@@ -3803,7 +3805,6 @@ class DiskGuestOsFeature(dict):
|
|
3803
3805
|
type: str):
|
3804
3806
|
"""
|
3805
3807
|
:param str type: The type of supported feature. Read [Enabling guest operating system features](https://cloud.google.com/compute/docs/images/create-delete-deprecate-private-images#guest-os-features) to see a list of available options.
|
3806
|
-
Possible values are: `MULTI_IP_SUBNET`, `SECURE_BOOT`, `SEV_CAPABLE`, `UEFI_COMPATIBLE`, `VIRTIO_SCSI_MULTIQUEUE`, `WINDOWS`, `GVNIC`, `SEV_LIVE_MIGRATABLE`, `SEV_SNP_CAPABLE`, `SUSPEND_RESUME_COMPATIBLE`, `TDX_CAPABLE`, `SEV_LIVE_MIGRATABLE_V2`.
|
3807
3808
|
"""
|
3808
3809
|
pulumi.set(__self__, "type", type)
|
3809
3810
|
|
@@ -3812,7 +3813,6 @@ class DiskGuestOsFeature(dict):
|
|
3812
3813
|
def type(self) -> str:
|
3813
3814
|
"""
|
3814
3815
|
The type of supported feature. Read [Enabling guest operating system features](https://cloud.google.com/compute/docs/images/create-delete-deprecate-private-images#guest-os-features) to see a list of available options.
|
3815
|
-
Possible values are: `MULTI_IP_SUBNET`, `SECURE_BOOT`, `SEV_CAPABLE`, `UEFI_COMPATIBLE`, `VIRTIO_SCSI_MULTIQUEUE`, `WINDOWS`, `GVNIC`, `SEV_LIVE_MIGRATABLE`, `SEV_SNP_CAPABLE`, `SUSPEND_RESUME_COMPATIBLE`, `TDX_CAPABLE`, `SEV_LIVE_MIGRATABLE_V2`.
|
3816
3816
|
"""
|
3817
3817
|
return pulumi.get(self, "type")
|
3818
3818
|
|
@@ -16549,6 +16549,7 @@ class RegionBackendServiceBackend(dict):
|
|
16549
16549
|
:param str balancing_mode: Specifies the balancing mode for this backend.
|
16550
16550
|
See the [Backend Services Overview](https://cloud.google.com/load-balancing/docs/backend-service#balancing-mode)
|
16551
16551
|
for an explanation of load balancing modes.
|
16552
|
+
From version 6.0.0 default value will be UTILIZATION to match default GCP value.
|
16552
16553
|
Default value is `CONNECTION`.
|
16553
16554
|
Possible values are: `UTILIZATION`, `RATE`, `CONNECTION`.
|
16554
16555
|
:param float capacity_scaler: A multiplier applied to the group's maximum servicing capacity
|
@@ -16657,6 +16658,7 @@ class RegionBackendServiceBackend(dict):
|
|
16657
16658
|
Specifies the balancing mode for this backend.
|
16658
16659
|
See the [Backend Services Overview](https://cloud.google.com/load-balancing/docs/backend-service#balancing-mode)
|
16659
16660
|
for an explanation of load balancing modes.
|
16661
|
+
From version 6.0.0 default value will be UTILIZATION to match default GCP value.
|
16660
16662
|
Default value is `CONNECTION`.
|
16661
16663
|
Possible values are: `UTILIZATION`, `RATE`, `CONNECTION`.
|
16662
16664
|
"""
|
@@ -40426,7 +40428,9 @@ class GetBackendServiceBackendResult(dict):
|
|
40426
40428
|
and CONNECTION (for TCP/SSL).
|
40427
40429
|
|
40428
40430
|
See the [Backend Services Overview](https://cloud.google.com/load-balancing/docs/backend-service#balancing-mode)
|
40429
|
-
for an explanation of load balancing modes.
|
40431
|
+
for an explanation of load balancing modes.
|
40432
|
+
|
40433
|
+
From version 6.0.0 default value will be UTILIZATION to match default GCP value. Default value: "UTILIZATION" Possible values: ["UTILIZATION", "RATE", "CONNECTION"]
|
40430
40434
|
:param float capacity_scaler: A multiplier applied to the group's maximum servicing capacity
|
40431
40435
|
(based on UTILIZATION, RATE or CONNECTION).
|
40432
40436
|
|
@@ -40512,7 +40516,9 @@ class GetBackendServiceBackendResult(dict):
|
|
40512
40516
|
and CONNECTION (for TCP/SSL).
|
40513
40517
|
|
40514
40518
|
See the [Backend Services Overview](https://cloud.google.com/load-balancing/docs/backend-service#balancing-mode)
|
40515
|
-
for an explanation of load balancing modes.
|
40519
|
+
for an explanation of load balancing modes.
|
40520
|
+
|
40521
|
+
From version 6.0.0 default value will be UTILIZATION to match default GCP value. Default value: "UTILIZATION" Possible values: ["UTILIZATION", "RATE", "CONNECTION"]
|
40516
40522
|
"""
|
40517
40523
|
return pulumi.get(self, "balancing_mode")
|
40518
40524
|
|
@@ -59,6 +59,7 @@ class RegionBackendServiceArgs:
|
|
59
59
|
Structure is documented below.
|
60
60
|
:param pulumi.Input[int] connection_draining_timeout_sec: Time for which instance will be drained (not accept new
|
61
61
|
connections, but still work to finish started).
|
62
|
+
From version 6.0.0 ConnectionDrainingTimeoutSec default value will be 300 to match default GCP value.
|
62
63
|
:param pulumi.Input['RegionBackendServiceConnectionTrackingPolicyArgs'] connection_tracking_policy: Connection Tracking configuration for this BackendService.
|
63
64
|
This is available only for Layer 4 Internal Load Balancing and
|
64
65
|
Network Load Balancing.
|
@@ -149,10 +150,6 @@ class RegionBackendServiceArgs:
|
|
149
150
|
- - -
|
150
151
|
:param pulumi.Input[str] network: The URL of the network to which this backend service belongs.
|
151
152
|
This field can only be specified when the load balancing scheme is set to INTERNAL.
|
152
|
-
:param pulumi.Input['RegionBackendServiceOutlierDetectionArgs'] outlier_detection: Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
153
|
-
This field is applicable only when the `load_balancing_scheme` is set
|
154
|
-
to INTERNAL_MANAGED and the `protocol` is set to HTTP, HTTPS, or HTTP2.
|
155
|
-
Structure is documented below.
|
156
153
|
:param pulumi.Input[str] port_name: A named port on a backend instance group representing the port for
|
157
154
|
communication to the backend VMs in that group. Required when the
|
158
155
|
loadBalancingScheme is EXTERNAL, EXTERNAL_MANAGED, INTERNAL_MANAGED, or INTERNAL_SELF_MANAGED
|
@@ -174,8 +171,10 @@ class RegionBackendServiceArgs:
|
|
174
171
|
Possible values are: `NONE`, `CLIENT_IP`, `CLIENT_IP_PORT_PROTO`, `CLIENT_IP_PROTO`, `GENERATED_COOKIE`, `HEADER_FIELD`, `HTTP_COOKIE`, `CLIENT_IP_NO_DESTINATION`.
|
175
172
|
:param pulumi.Input['RegionBackendServiceSubsettingArgs'] subsetting: Subsetting configuration for this BackendService. Currently this is applicable only for Internal TCP/UDP load balancing and Internal HTTP(S) load balancing.
|
176
173
|
Structure is documented below.
|
177
|
-
:param pulumi.Input[int] timeout_sec:
|
178
|
-
|
174
|
+
:param pulumi.Input[int] timeout_sec: The backend service timeout has a different meaning depending on the type of load balancer.
|
175
|
+
For more information see, [Backend service settings](https://cloud.google.com/compute/docs/reference/rest/v1/backendServices).
|
176
|
+
The default is 30 seconds.
|
177
|
+
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
179
178
|
"""
|
180
179
|
if affinity_cookie_ttl_sec is not None:
|
181
180
|
pulumi.set(__self__, "affinity_cookie_ttl_sec", affinity_cookie_ttl_sec)
|
@@ -293,6 +292,7 @@ class RegionBackendServiceArgs:
|
|
293
292
|
"""
|
294
293
|
Time for which instance will be drained (not accept new
|
295
294
|
connections, but still work to finish started).
|
295
|
+
From version 6.0.0 ConnectionDrainingTimeoutSec default value will be 300 to match default GCP value.
|
296
296
|
"""
|
297
297
|
return pulumi.get(self, "connection_draining_timeout_sec")
|
298
298
|
|
@@ -525,12 +525,6 @@ class RegionBackendServiceArgs:
|
|
525
525
|
@property
|
526
526
|
@pulumi.getter(name="outlierDetection")
|
527
527
|
def outlier_detection(self) -> Optional[pulumi.Input['RegionBackendServiceOutlierDetectionArgs']]:
|
528
|
-
"""
|
529
|
-
Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
530
|
-
This field is applicable only when the `load_balancing_scheme` is set
|
531
|
-
to INTERNAL_MANAGED and the `protocol` is set to HTTP, HTTPS, or HTTP2.
|
532
|
-
Structure is documented below.
|
533
|
-
"""
|
534
528
|
return pulumi.get(self, "outlier_detection")
|
535
529
|
|
536
530
|
@outlier_detection.setter
|
@@ -639,8 +633,10 @@ class RegionBackendServiceArgs:
|
|
639
633
|
@pulumi.getter(name="timeoutSec")
|
640
634
|
def timeout_sec(self) -> Optional[pulumi.Input[int]]:
|
641
635
|
"""
|
642
|
-
|
643
|
-
|
636
|
+
The backend service timeout has a different meaning depending on the type of load balancer.
|
637
|
+
For more information see, [Backend service settings](https://cloud.google.com/compute/docs/reference/rest/v1/backendServices).
|
638
|
+
The default is 30 seconds.
|
639
|
+
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
644
640
|
"""
|
645
641
|
return pulumi.get(self, "timeout_sec")
|
646
642
|
|
@@ -699,6 +695,7 @@ class _RegionBackendServiceState:
|
|
699
695
|
Structure is documented below.
|
700
696
|
:param pulumi.Input[int] connection_draining_timeout_sec: Time for which instance will be drained (not accept new
|
701
697
|
connections, but still work to finish started).
|
698
|
+
From version 6.0.0 ConnectionDrainingTimeoutSec default value will be 300 to match default GCP value.
|
702
699
|
:param pulumi.Input['RegionBackendServiceConnectionTrackingPolicyArgs'] connection_tracking_policy: Connection Tracking configuration for this BackendService.
|
703
700
|
This is available only for Layer 4 Internal Load Balancing and
|
704
701
|
Network Load Balancing.
|
@@ -793,10 +790,6 @@ class _RegionBackendServiceState:
|
|
793
790
|
- - -
|
794
791
|
:param pulumi.Input[str] network: The URL of the network to which this backend service belongs.
|
795
792
|
This field can only be specified when the load balancing scheme is set to INTERNAL.
|
796
|
-
:param pulumi.Input['RegionBackendServiceOutlierDetectionArgs'] outlier_detection: Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
797
|
-
This field is applicable only when the `load_balancing_scheme` is set
|
798
|
-
to INTERNAL_MANAGED and the `protocol` is set to HTTP, HTTPS, or HTTP2.
|
799
|
-
Structure is documented below.
|
800
793
|
:param pulumi.Input[str] port_name: A named port on a backend instance group representing the port for
|
801
794
|
communication to the backend VMs in that group. Required when the
|
802
795
|
loadBalancingScheme is EXTERNAL, EXTERNAL_MANAGED, INTERNAL_MANAGED, or INTERNAL_SELF_MANAGED
|
@@ -819,8 +812,10 @@ class _RegionBackendServiceState:
|
|
819
812
|
Possible values are: `NONE`, `CLIENT_IP`, `CLIENT_IP_PORT_PROTO`, `CLIENT_IP_PROTO`, `GENERATED_COOKIE`, `HEADER_FIELD`, `HTTP_COOKIE`, `CLIENT_IP_NO_DESTINATION`.
|
820
813
|
:param pulumi.Input['RegionBackendServiceSubsettingArgs'] subsetting: Subsetting configuration for this BackendService. Currently this is applicable only for Internal TCP/UDP load balancing and Internal HTTP(S) load balancing.
|
821
814
|
Structure is documented below.
|
822
|
-
:param pulumi.Input[int] timeout_sec:
|
823
|
-
|
815
|
+
:param pulumi.Input[int] timeout_sec: The backend service timeout has a different meaning depending on the type of load balancer.
|
816
|
+
For more information see, [Backend service settings](https://cloud.google.com/compute/docs/reference/rest/v1/backendServices).
|
817
|
+
The default is 30 seconds.
|
818
|
+
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
824
819
|
"""
|
825
820
|
if affinity_cookie_ttl_sec is not None:
|
826
821
|
pulumi.set(__self__, "affinity_cookie_ttl_sec", affinity_cookie_ttl_sec)
|
@@ -946,6 +941,7 @@ class _RegionBackendServiceState:
|
|
946
941
|
"""
|
947
942
|
Time for which instance will be drained (not accept new
|
948
943
|
connections, but still work to finish started).
|
944
|
+
From version 6.0.0 ConnectionDrainingTimeoutSec default value will be 300 to match default GCP value.
|
949
945
|
"""
|
950
946
|
return pulumi.get(self, "connection_draining_timeout_sec")
|
951
947
|
|
@@ -1215,12 +1211,6 @@ class _RegionBackendServiceState:
|
|
1215
1211
|
@property
|
1216
1212
|
@pulumi.getter(name="outlierDetection")
|
1217
1213
|
def outlier_detection(self) -> Optional[pulumi.Input['RegionBackendServiceOutlierDetectionArgs']]:
|
1218
|
-
"""
|
1219
|
-
Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
1220
|
-
This field is applicable only when the `load_balancing_scheme` is set
|
1221
|
-
to INTERNAL_MANAGED and the `protocol` is set to HTTP, HTTPS, or HTTP2.
|
1222
|
-
Structure is documented below.
|
1223
|
-
"""
|
1224
1214
|
return pulumi.get(self, "outlier_detection")
|
1225
1215
|
|
1226
1216
|
@outlier_detection.setter
|
@@ -1341,8 +1331,10 @@ class _RegionBackendServiceState:
|
|
1341
1331
|
@pulumi.getter(name="timeoutSec")
|
1342
1332
|
def timeout_sec(self) -> Optional[pulumi.Input[int]]:
|
1343
1333
|
"""
|
1344
|
-
|
1345
|
-
|
1334
|
+
The backend service timeout has a different meaning depending on the type of load balancer.
|
1335
|
+
For more information see, [Backend service settings](https://cloud.google.com/compute/docs/reference/rest/v1/backendServices).
|
1336
|
+
The default is 30 seconds.
|
1337
|
+
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
1346
1338
|
"""
|
1347
1339
|
return pulumi.get(self, "timeout_sec")
|
1348
1340
|
|
@@ -1688,6 +1680,7 @@ class RegionBackendService(pulumi.CustomResource):
|
|
1688
1680
|
Structure is documented below.
|
1689
1681
|
:param pulumi.Input[int] connection_draining_timeout_sec: Time for which instance will be drained (not accept new
|
1690
1682
|
connections, but still work to finish started).
|
1683
|
+
From version 6.0.0 ConnectionDrainingTimeoutSec default value will be 300 to match default GCP value.
|
1691
1684
|
:param pulumi.Input[pulumi.InputType['RegionBackendServiceConnectionTrackingPolicyArgs']] connection_tracking_policy: Connection Tracking configuration for this BackendService.
|
1692
1685
|
This is available only for Layer 4 Internal Load Balancing and
|
1693
1686
|
Network Load Balancing.
|
@@ -1778,10 +1771,6 @@ class RegionBackendService(pulumi.CustomResource):
|
|
1778
1771
|
- - -
|
1779
1772
|
:param pulumi.Input[str] network: The URL of the network to which this backend service belongs.
|
1780
1773
|
This field can only be specified when the load balancing scheme is set to INTERNAL.
|
1781
|
-
:param pulumi.Input[pulumi.InputType['RegionBackendServiceOutlierDetectionArgs']] outlier_detection: Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
1782
|
-
This field is applicable only when the `load_balancing_scheme` is set
|
1783
|
-
to INTERNAL_MANAGED and the `protocol` is set to HTTP, HTTPS, or HTTP2.
|
1784
|
-
Structure is documented below.
|
1785
1774
|
:param pulumi.Input[str] port_name: A named port on a backend instance group representing the port for
|
1786
1775
|
communication to the backend VMs in that group. Required when the
|
1787
1776
|
loadBalancingScheme is EXTERNAL, EXTERNAL_MANAGED, INTERNAL_MANAGED, or INTERNAL_SELF_MANAGED
|
@@ -1803,8 +1792,10 @@ class RegionBackendService(pulumi.CustomResource):
|
|
1803
1792
|
Possible values are: `NONE`, `CLIENT_IP`, `CLIENT_IP_PORT_PROTO`, `CLIENT_IP_PROTO`, `GENERATED_COOKIE`, `HEADER_FIELD`, `HTTP_COOKIE`, `CLIENT_IP_NO_DESTINATION`.
|
1804
1793
|
:param pulumi.Input[pulumi.InputType['RegionBackendServiceSubsettingArgs']] subsetting: Subsetting configuration for this BackendService. Currently this is applicable only for Internal TCP/UDP load balancing and Internal HTTP(S) load balancing.
|
1805
1794
|
Structure is documented below.
|
1806
|
-
:param pulumi.Input[int] timeout_sec:
|
1807
|
-
|
1795
|
+
:param pulumi.Input[int] timeout_sec: The backend service timeout has a different meaning depending on the type of load balancer.
|
1796
|
+
For more information see, [Backend service settings](https://cloud.google.com/compute/docs/reference/rest/v1/backendServices).
|
1797
|
+
The default is 30 seconds.
|
1798
|
+
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
1808
1799
|
"""
|
1809
1800
|
...
|
1810
1801
|
@overload
|
@@ -2242,6 +2233,7 @@ class RegionBackendService(pulumi.CustomResource):
|
|
2242
2233
|
Structure is documented below.
|
2243
2234
|
:param pulumi.Input[int] connection_draining_timeout_sec: Time for which instance will be drained (not accept new
|
2244
2235
|
connections, but still work to finish started).
|
2236
|
+
From version 6.0.0 ConnectionDrainingTimeoutSec default value will be 300 to match default GCP value.
|
2245
2237
|
:param pulumi.Input[pulumi.InputType['RegionBackendServiceConnectionTrackingPolicyArgs']] connection_tracking_policy: Connection Tracking configuration for this BackendService.
|
2246
2238
|
This is available only for Layer 4 Internal Load Balancing and
|
2247
2239
|
Network Load Balancing.
|
@@ -2336,10 +2328,6 @@ class RegionBackendService(pulumi.CustomResource):
|
|
2336
2328
|
- - -
|
2337
2329
|
:param pulumi.Input[str] network: The URL of the network to which this backend service belongs.
|
2338
2330
|
This field can only be specified when the load balancing scheme is set to INTERNAL.
|
2339
|
-
:param pulumi.Input[pulumi.InputType['RegionBackendServiceOutlierDetectionArgs']] outlier_detection: Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
2340
|
-
This field is applicable only when the `load_balancing_scheme` is set
|
2341
|
-
to INTERNAL_MANAGED and the `protocol` is set to HTTP, HTTPS, or HTTP2.
|
2342
|
-
Structure is documented below.
|
2343
2331
|
:param pulumi.Input[str] port_name: A named port on a backend instance group representing the port for
|
2344
2332
|
communication to the backend VMs in that group. Required when the
|
2345
2333
|
loadBalancingScheme is EXTERNAL, EXTERNAL_MANAGED, INTERNAL_MANAGED, or INTERNAL_SELF_MANAGED
|
@@ -2362,8 +2350,10 @@ class RegionBackendService(pulumi.CustomResource):
|
|
2362
2350
|
Possible values are: `NONE`, `CLIENT_IP`, `CLIENT_IP_PORT_PROTO`, `CLIENT_IP_PROTO`, `GENERATED_COOKIE`, `HEADER_FIELD`, `HTTP_COOKIE`, `CLIENT_IP_NO_DESTINATION`.
|
2363
2351
|
:param pulumi.Input[pulumi.InputType['RegionBackendServiceSubsettingArgs']] subsetting: Subsetting configuration for this BackendService. Currently this is applicable only for Internal TCP/UDP load balancing and Internal HTTP(S) load balancing.
|
2364
2352
|
Structure is documented below.
|
2365
|
-
:param pulumi.Input[int] timeout_sec:
|
2366
|
-
|
2353
|
+
:param pulumi.Input[int] timeout_sec: The backend service timeout has a different meaning depending on the type of load balancer.
|
2354
|
+
For more information see, [Backend service settings](https://cloud.google.com/compute/docs/reference/rest/v1/backendServices).
|
2355
|
+
The default is 30 seconds.
|
2356
|
+
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
2367
2357
|
"""
|
2368
2358
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
2369
2359
|
|
@@ -2448,6 +2438,7 @@ class RegionBackendService(pulumi.CustomResource):
|
|
2448
2438
|
"""
|
2449
2439
|
Time for which instance will be drained (not accept new
|
2450
2440
|
connections, but still work to finish started).
|
2441
|
+
From version 6.0.0 ConnectionDrainingTimeoutSec default value will be 300 to match default GCP value.
|
2451
2442
|
"""
|
2452
2443
|
return pulumi.get(self, "connection_draining_timeout_sec")
|
2453
2444
|
|
@@ -2653,12 +2644,6 @@ class RegionBackendService(pulumi.CustomResource):
|
|
2653
2644
|
@property
|
2654
2645
|
@pulumi.getter(name="outlierDetection")
|
2655
2646
|
def outlier_detection(self) -> pulumi.Output[Optional['outputs.RegionBackendServiceOutlierDetection']]:
|
2656
|
-
"""
|
2657
|
-
Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
2658
|
-
This field is applicable only when the `load_balancing_scheme` is set
|
2659
|
-
to INTERNAL_MANAGED and the `protocol` is set to HTTP, HTTPS, or HTTP2.
|
2660
|
-
Structure is documented below.
|
2661
|
-
"""
|
2662
2647
|
return pulumi.get(self, "outlier_detection")
|
2663
2648
|
|
2664
2649
|
@property
|
@@ -2743,8 +2728,10 @@ class RegionBackendService(pulumi.CustomResource):
|
|
2743
2728
|
@pulumi.getter(name="timeoutSec")
|
2744
2729
|
def timeout_sec(self) -> pulumi.Output[int]:
|
2745
2730
|
"""
|
2746
|
-
|
2747
|
-
|
2731
|
+
The backend service timeout has a different meaning depending on the type of load balancer.
|
2732
|
+
For more information see, [Backend service settings](https://cloud.google.com/compute/docs/reference/rest/v1/backendServices).
|
2733
|
+
The default is 30 seconds.
|
2734
|
+
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
2748
2735
|
"""
|
2749
2736
|
return pulumi.get(self, "timeout_sec")
|
2750
2737
|
|