pulumi-gcp 7.28.0a1718950249__py3-none-any.whl → 7.29.0__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 +67 -0
- pulumi_gcp/_utilities.py +35 -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/activedirectory/domain.py +14 -14
- pulumi_gcp/activedirectory/domain_trust.py +14 -14
- pulumi_gcp/alloydb/backup.py +8 -8
- pulumi_gcp/alloydb/cluster.py +11 -17
- pulumi_gcp/alloydb/instance.py +8 -8
- pulumi_gcp/alloydb/user.py +8 -8
- pulumi_gcp/apigee/addons_config.py +4 -4
- pulumi_gcp/apigee/endpoint_attachment.py +2 -2
- pulumi_gcp/apigee/env_group.py +2 -2
- pulumi_gcp/apigee/environment.py +2 -2
- pulumi_gcp/apigee/instance.py +8 -8
- pulumi_gcp/apigee/keystores_aliases_self_signed_cert.py +10 -10
- pulumi_gcp/apigee/nat_address.py +2 -2
- pulumi_gcp/apigee/organization.py +6 -6
- pulumi_gcp/apigee/sync_authorization.py +4 -4
- pulumi_gcp/apigee/target_server.py +10 -10
- pulumi_gcp/apphub/service.py +20 -20
- pulumi_gcp/apphub/service_project_attachment.py +8 -8
- pulumi_gcp/applicationintegration/auth_config.py +2 -2
- pulumi_gcp/applicationintegration/client.py +6 -18
- pulumi_gcp/artifactregistry/__init__.py +1 -0
- pulumi_gcp/artifactregistry/_inputs.py +4 -4
- pulumi_gcp/artifactregistry/get_docker_image.py +244 -0
- pulumi_gcp/artifactregistry/outputs.py +6 -6
- pulumi_gcp/artifactregistry/repository.py +10 -10
- pulumi_gcp/backupdisasterrecovery/management_server.py +2 -2
- pulumi_gcp/bigquery/_inputs.py +2 -6
- pulumi_gcp/bigquery/data_transfer_config.py +4 -4
- pulumi_gcp/bigquery/dataset.py +75 -0
- pulumi_gcp/bigquery/get_dataset.py +11 -1
- pulumi_gcp/bigquery/job.py +6 -6
- pulumi_gcp/bigquery/outputs.py +2 -6
- pulumi_gcp/bigtable/_inputs.py +41 -3
- pulumi_gcp/bigtable/instance.py +3 -9
- pulumi_gcp/bigtable/outputs.py +50 -3
- pulumi_gcp/bigtable/table.py +54 -0
- pulumi_gcp/billing/_inputs.py +22 -0
- pulumi_gcp/billing/budget.py +50 -0
- pulumi_gcp/billing/outputs.py +20 -0
- pulumi_gcp/certificateauthority/authority.py +2 -2
- pulumi_gcp/certificateauthority/certificate.py +4 -4
- pulumi_gcp/certificatemanager/_inputs.py +2 -6
- pulumi_gcp/certificatemanager/certificate.py +4 -4
- pulumi_gcp/certificatemanager/certificate_issuance_config.py +2 -2
- pulumi_gcp/certificatemanager/outputs.py +2 -6
- pulumi_gcp/cloudbuild/bitbucket_server_config.py +6 -6
- pulumi_gcp/cloudbuild/trigger.py +2 -2
- pulumi_gcp/cloudbuild/worker_pool.py +6 -6
- pulumi_gcp/cloudbuildv2/_inputs.py +383 -0
- pulumi_gcp/cloudbuildv2/connection.py +112 -4
- pulumi_gcp/cloudbuildv2/outputs.py +421 -0
- pulumi_gcp/cloudbuildv2/repository.py +2 -2
- pulumi_gcp/cloudfunctionsv2/function.py +28 -28
- pulumi_gcp/cloudids/endpoint.py +2 -2
- pulumi_gcp/cloudrun/_inputs.py +3 -9
- pulumi_gcp/cloudrun/outputs.py +3 -9
- pulumi_gcp/cloudrunv2/get_job.py +21 -1
- pulumi_gcp/cloudrunv2/job.py +163 -19
- pulumi_gcp/cloudrunv2/service.py +8 -8
- 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 +87 -2
- pulumi_gcp/compute/backend_service.py +28 -48
- pulumi_gcp/compute/disk.py +3 -9
- pulumi_gcp/compute/firewall.py +3 -9
- pulumi_gcp/compute/forwarding_rule.py +22 -22
- pulumi_gcp/compute/interconnect.py +4 -4
- pulumi_gcp/compute/outputs.py +176 -5
- pulumi_gcp/compute/packet_mirroring.py +2 -2
- pulumi_gcp/compute/project_cloud_armor_tier.py +2 -2
- pulumi_gcp/compute/region_backend_service.py +35 -48
- pulumi_gcp/compute/region_disk.py +3 -9
- pulumi_gcp/compute/region_network_endpoint.py +187 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +49 -9
- pulumi_gcp/compute/region_security_policy_rule.py +2 -2
- pulumi_gcp/compute/region_target_https_proxy.py +7 -14
- pulumi_gcp/compute/route.py +2 -2
- pulumi_gcp/compute/subnetwork.py +2 -6
- pulumi_gcp/compute/target_https_proxy.py +28 -14
- pulumi_gcp/compute/target_instance.py +2 -2
- pulumi_gcp/compute/vpn_gateway.py +2 -2
- pulumi_gcp/compute/vpn_tunnel.py +2 -2
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +4 -8
- pulumi_gcp/container/outputs.py +6 -10
- pulumi_gcp/databasemigrationservice/connection_profile.py +16 -16
- pulumi_gcp/datacatalog/policy_tag.py +2 -2
- pulumi_gcp/datafusion/instance.py +4 -8
- pulumi_gcp/dataplex/asset.py +2 -2
- pulumi_gcp/dataplex/datascan.py +2 -2
- pulumi_gcp/dataproc/_inputs.py +100 -0
- pulumi_gcp/dataproc/metastore_service.py +172 -0
- pulumi_gcp/dataproc/outputs.py +192 -1
- pulumi_gcp/dataproc/workflow_template.py +3 -9
- pulumi_gcp/datastore/data_store_index.py +2 -2
- pulumi_gcp/datastream/stream.py +6 -6
- pulumi_gcp/diagflow/entity_type.py +2 -2
- pulumi_gcp/diagflow/fulfillment.py +2 -2
- pulumi_gcp/diagflow/intent.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/node_pool.py +2 -2
- pulumi_gcp/edgecontainer/outputs.py +123 -1
- pulumi_gcp/edgecontainer/vpn_connection.py +2 -2
- pulumi_gcp/eventarc/channel.py +2 -2
- pulumi_gcp/eventarc/google_channel_config.py +2 -2
- pulumi_gcp/filestore/instance.py +3 -9
- pulumi_gcp/firebase/app_check_app_attest_config.py +8 -8
- pulumi_gcp/firebase/app_check_debug_token.py +4 -4
- pulumi_gcp/firebase/app_check_device_check_config.py +4 -4
- pulumi_gcp/firebase/app_check_play_integrity_config.py +8 -8
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +4 -4
- pulumi_gcp/firebase/app_check_recaptcha_v3_config.py +4 -4
- pulumi_gcp/firebase/app_check_service_config.py +6 -6
- pulumi_gcp/firebase/database_instance.py +2 -2
- pulumi_gcp/firestore/database.py +4 -4
- pulumi_gcp/firestore/document.py +12 -12
- pulumi_gcp/folder/access_approval_settings.py +2 -2
- pulumi_gcp/gkehub/_inputs.py +20 -8
- pulumi_gcp/gkehub/membership.py +3 -9
- pulumi_gcp/gkehub/membership_binding.py +4 -4
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +2 -2
- pulumi_gcp/gkehub/outputs.py +19 -9
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +2 -2
- pulumi_gcp/healthcare/fhir_store.py +3 -9
- pulumi_gcp/healthcare/hl7_store.py +3 -9
- pulumi_gcp/integrationconnectors/connection.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +6 -6
- pulumi_gcp/kms/_inputs.py +1 -3
- pulumi_gcp/kms/autokey_config.py +16 -16
- pulumi_gcp/kms/key_handle.py +22 -22
- pulumi_gcp/kms/outputs.py +1 -3
- pulumi_gcp/logging/folder_settings.py +2 -2
- pulumi_gcp/logging/folder_sink.py +14 -14
- pulumi_gcp/logging/linked_dataset.py +2 -2
- pulumi_gcp/logging/organization_settings.py +2 -2
- pulumi_gcp/logging/organization_sink.py +14 -14
- pulumi_gcp/logging/project_bucket_config.py +2 -2
- pulumi_gcp/looker/instance.py +2 -2
- 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/netapp/volume_replication.py +2 -2
- pulumi_gcp/netapp/volume_snapshot.py +2 -2
- pulumi_gcp/networkconnectivity/internal_range.py +2 -2
- pulumi_gcp/networksecurity/gateway_security_policy.py +4 -4
- pulumi_gcp/networksecurity/tls_inspection_policy.py +4 -4
- pulumi_gcp/networkservices/gateway.py +6 -6
- pulumi_gcp/organizations/access_approval_settings.py +2 -2
- pulumi_gcp/parallelstore/instance.py +2 -2
- pulumi_gcp/projects/access_approval_settings.py +5 -11
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/_inputs.py +40 -0
- pulumi_gcp/pubsub/outputs.py +66 -0
- pulumi_gcp/pubsub/schema.py +2 -2
- pulumi_gcp/pubsub/subscription.py +174 -8
- pulumi_gcp/pubsub/topic.py +2 -2
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/cluster.py +4 -4
- pulumi_gcp/redis/get_instance.py +11 -1
- pulumi_gcp/redis/instance.py +49 -2
- pulumi_gcp/secretmanager/secret.py +2 -2
- pulumi_gcp/securesourcemanager/instance.py +6 -6
- pulumi_gcp/securitycenter/__init__.py +3 -0
- pulumi_gcp/securitycenter/_inputs.py +1105 -0
- pulumi_gcp/securitycenter/instance_iam_binding.py +2 -2
- pulumi_gcp/securitycenter/instance_iam_member.py +2 -2
- pulumi_gcp/securitycenter/instance_iam_policy.py +2 -2
- 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/servicenetworking/__init__.py +1 -0
- pulumi_gcp/servicenetworking/vpc_service_controls.py +511 -0
- pulumi_gcp/sql/_inputs.py +1 -3
- pulumi_gcp/sql/database_instance.py +2 -2
- pulumi_gcp/sql/outputs.py +1 -3
- pulumi_gcp/sql/user.py +21 -7
- pulumi_gcp/storage/get_project_service_account.py +2 -2
- pulumi_gcp/storage/insights_report_config.py +2 -2
- pulumi_gcp/storage/notification.py +2 -2
- pulumi_gcp/storage/transfer_agent_pool.py +2 -2
- pulumi_gcp/storage/transfer_job.py +4 -4
- pulumi_gcp/tpu/v2_vm.py +4 -4
- pulumi_gcp/vertex/_inputs.py +1 -3
- pulumi_gcp/vertex/ai_endpoint.py +2 -2
- pulumi_gcp/vertex/ai_feature_online_store.py +31 -8
- pulumi_gcp/vertex/ai_index_endpoint.py +2 -2
- pulumi_gcp/vertex/ai_tensorboard.py +2 -2
- pulumi_gcp/vertex/outputs.py +1 -3
- pulumi_gcp/vmwareengine/external_address.py +2 -2
- pulumi_gcp/vmwareengine/network.py +4 -4
- pulumi_gcp/vpcaccess/connector.py +2 -8
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/RECORD +214 -200
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/top_level.txt +0 -0
@@ -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
|
|
pulumi_gcp/compute/disk.py
CHANGED
@@ -297,15 +297,13 @@ class DiskArgs:
|
|
297
297
|
|
298
298
|
@property
|
299
299
|
@pulumi.getter
|
300
|
+
@_utilities.deprecated("""`interface` is deprecated and will be removed in a future major release. This field is no longer used and can be safely removed from your configurations; disk interfaces are automatically determined on attachment.""")
|
300
301
|
def interface(self) -> Optional[pulumi.Input[str]]:
|
301
302
|
"""
|
302
303
|
Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.
|
303
304
|
|
304
305
|
> **Warning:** `interface` is deprecated and will be removed in a future major release. This field is no longer used and can be safely removed from your configurations; disk interfaces are automatically determined on attachment.
|
305
306
|
"""
|
306
|
-
warnings.warn("""`interface` is deprecated and will be removed in a future major release. This field is no longer used and can be safely removed from your configurations; disk interfaces are automatically determined on attachment.""", DeprecationWarning)
|
307
|
-
pulumi.log.warn("""interface is deprecated: `interface` is deprecated and will be removed in a future major release. This field is no longer used and can be safely removed from your configurations; disk interfaces are automatically determined on attachment.""")
|
308
|
-
|
309
307
|
return pulumi.get(self, "interface")
|
310
308
|
|
311
309
|
@interface.setter
|
@@ -957,15 +955,13 @@ class _DiskState:
|
|
957
955
|
|
958
956
|
@property
|
959
957
|
@pulumi.getter
|
958
|
+
@_utilities.deprecated("""`interface` is deprecated and will be removed in a future major release. This field is no longer used and can be safely removed from your configurations; disk interfaces are automatically determined on attachment.""")
|
960
959
|
def interface(self) -> Optional[pulumi.Input[str]]:
|
961
960
|
"""
|
962
961
|
Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.
|
963
962
|
|
964
963
|
> **Warning:** `interface` is deprecated and will be removed in a future major release. This field is no longer used and can be safely removed from your configurations; disk interfaces are automatically determined on attachment.
|
965
964
|
"""
|
966
|
-
warnings.warn("""`interface` is deprecated and will be removed in a future major release. This field is no longer used and can be safely removed from your configurations; disk interfaces are automatically determined on attachment.""", DeprecationWarning)
|
967
|
-
pulumi.log.warn("""interface is deprecated: `interface` is deprecated and will be removed in a future major release. This field is no longer used and can be safely removed from your configurations; disk interfaces are automatically determined on attachment.""")
|
968
|
-
|
969
965
|
return pulumi.get(self, "interface")
|
970
966
|
|
971
967
|
@interface.setter
|
@@ -2150,15 +2146,13 @@ class Disk(pulumi.CustomResource):
|
|
2150
2146
|
|
2151
2147
|
@property
|
2152
2148
|
@pulumi.getter
|
2149
|
+
@_utilities.deprecated("""`interface` is deprecated and will be removed in a future major release. This field is no longer used and can be safely removed from your configurations; disk interfaces are automatically determined on attachment.""")
|
2153
2150
|
def interface(self) -> pulumi.Output[Optional[str]]:
|
2154
2151
|
"""
|
2155
2152
|
Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.
|
2156
2153
|
|
2157
2154
|
> **Warning:** `interface` is deprecated and will be removed in a future major release. This field is no longer used and can be safely removed from your configurations; disk interfaces are automatically determined on attachment.
|
2158
2155
|
"""
|
2159
|
-
warnings.warn("""`interface` is deprecated and will be removed in a future major release. This field is no longer used and can be safely removed from your configurations; disk interfaces are automatically determined on attachment.""", DeprecationWarning)
|
2160
|
-
pulumi.log.warn("""interface is deprecated: `interface` is deprecated and will be removed in a future major release. This field is no longer used and can be safely removed from your configurations; disk interfaces are automatically determined on attachment.""")
|
2161
|
-
|
2162
2156
|
return pulumi.get(self, "interface")
|
2163
2157
|
|
2164
2158
|
@property
|
pulumi_gcp/compute/firewall.py
CHANGED
@@ -261,14 +261,12 @@ class FirewallArgs:
|
|
261
261
|
|
262
262
|
@property
|
263
263
|
@pulumi.getter(name="enableLogging")
|
264
|
+
@_utilities.deprecated("""Deprecated in favor of log_config""")
|
264
265
|
def enable_logging(self) -> Optional[pulumi.Input[bool]]:
|
265
266
|
"""
|
266
267
|
This field denotes whether to enable logging for a particular firewall rule.
|
267
268
|
If logging is enabled, logs will be exported to Stackdriver. Deprecated in favor of `log_config`
|
268
269
|
"""
|
269
|
-
warnings.warn("""Deprecated in favor of log_config""", DeprecationWarning)
|
270
|
-
pulumi.log.warn("""enable_logging is deprecated: Deprecated in favor of log_config""")
|
271
|
-
|
272
270
|
return pulumi.get(self, "enable_logging")
|
273
271
|
|
274
272
|
@enable_logging.setter
|
@@ -688,14 +686,12 @@ class _FirewallState:
|
|
688
686
|
|
689
687
|
@property
|
690
688
|
@pulumi.getter(name="enableLogging")
|
689
|
+
@_utilities.deprecated("""Deprecated in favor of log_config""")
|
691
690
|
def enable_logging(self) -> Optional[pulumi.Input[bool]]:
|
692
691
|
"""
|
693
692
|
This field denotes whether to enable logging for a particular firewall rule.
|
694
693
|
If logging is enabled, logs will be exported to Stackdriver. Deprecated in favor of `log_config`
|
695
694
|
"""
|
696
|
-
warnings.warn("""Deprecated in favor of log_config""", DeprecationWarning)
|
697
|
-
pulumi.log.warn("""enable_logging is deprecated: Deprecated in favor of log_config""")
|
698
|
-
|
699
695
|
return pulumi.get(self, "enable_logging")
|
700
696
|
|
701
697
|
@enable_logging.setter
|
@@ -1476,14 +1472,12 @@ class Firewall(pulumi.CustomResource):
|
|
1476
1472
|
|
1477
1473
|
@property
|
1478
1474
|
@pulumi.getter(name="enableLogging")
|
1475
|
+
@_utilities.deprecated("""Deprecated in favor of log_config""")
|
1479
1476
|
def enable_logging(self) -> pulumi.Output[bool]:
|
1480
1477
|
"""
|
1481
1478
|
This field denotes whether to enable logging for a particular firewall rule.
|
1482
1479
|
If logging is enabled, logs will be exported to Stackdriver. Deprecated in favor of `log_config`
|
1483
1480
|
"""
|
1484
|
-
warnings.warn("""Deprecated in favor of log_config""", DeprecationWarning)
|
1485
|
-
pulumi.log.warn("""enable_logging is deprecated: Deprecated in favor of log_config""")
|
1486
|
-
|
1487
1481
|
return pulumi.get(self, "enable_logging")
|
1488
1482
|
|
1489
1483
|
@property
|
@@ -1901,7 +1901,7 @@ class ForwardingRule(pulumi.CustomResource):
|
|
1901
1901
|
)],
|
1902
1902
|
target_tags=["allow-ssh"],
|
1903
1903
|
direction="INGRESS",
|
1904
|
-
opts=pulumi.ResourceOptions(depends_on=[fw1]))
|
1904
|
+
opts = pulumi.ResourceOptions(depends_on=[fw1]))
|
1905
1905
|
fw3 = gcp.compute.Firewall("fw3",
|
1906
1906
|
name="website-fw-3",
|
1907
1907
|
network=default_network.id,
|
@@ -1914,7 +1914,7 @@ class ForwardingRule(pulumi.CustomResource):
|
|
1914
1914
|
)],
|
1915
1915
|
target_tags=["load-balanced-backend"],
|
1916
1916
|
direction="INGRESS",
|
1917
|
-
opts=pulumi.ResourceOptions(depends_on=[fw2]))
|
1917
|
+
opts = pulumi.ResourceOptions(depends_on=[fw2]))
|
1918
1918
|
fw4 = gcp.compute.Firewall("fw4",
|
1919
1919
|
name="website-fw-4",
|
1920
1920
|
network=default_network.id,
|
@@ -1935,14 +1935,14 @@ class ForwardingRule(pulumi.CustomResource):
|
|
1935
1935
|
),
|
1936
1936
|
],
|
1937
1937
|
direction="INGRESS",
|
1938
|
-
opts=pulumi.ResourceOptions(depends_on=[fw3]))
|
1938
|
+
opts = pulumi.ResourceOptions(depends_on=[fw3]))
|
1939
1939
|
default_region_health_check = gcp.compute.RegionHealthCheck("default",
|
1940
1940
|
region="us-central1",
|
1941
1941
|
name="website-hc",
|
1942
1942
|
http_health_check=gcp.compute.RegionHealthCheckHttpHealthCheckArgs(
|
1943
1943
|
port_specification="USE_SERVING_PORT",
|
1944
1944
|
),
|
1945
|
-
opts=pulumi.ResourceOptions(depends_on=[fw4]))
|
1945
|
+
opts = pulumi.ResourceOptions(depends_on=[fw4]))
|
1946
1946
|
default_region_backend_service = gcp.compute.RegionBackendService("default",
|
1947
1947
|
load_balancing_scheme="INTERNAL_MANAGED",
|
1948
1948
|
backends=[gcp.compute.RegionBackendServiceBackendArgs(
|
@@ -1981,7 +1981,7 @@ class ForwardingRule(pulumi.CustomResource):
|
|
1981
1981
|
network=default_network.id,
|
1982
1982
|
subnetwork=default_subnetwork.id,
|
1983
1983
|
network_tier="PREMIUM",
|
1984
|
-
opts=pulumi.ResourceOptions(depends_on=[proxy]))
|
1984
|
+
opts = pulumi.ResourceOptions(depends_on=[proxy]))
|
1985
1985
|
```
|
1986
1986
|
### Forwarding Rule Regional Http Xlb
|
1987
1987
|
|
@@ -2051,7 +2051,7 @@ class ForwardingRule(pulumi.CustomResource):
|
|
2051
2051
|
)],
|
2052
2052
|
target_tags=["allow-ssh"],
|
2053
2053
|
direction="INGRESS",
|
2054
|
-
opts=pulumi.ResourceOptions(depends_on=[fw1]))
|
2054
|
+
opts = pulumi.ResourceOptions(depends_on=[fw1]))
|
2055
2055
|
fw3 = gcp.compute.Firewall("fw3",
|
2056
2056
|
name="website-fw-3",
|
2057
2057
|
network=default_network.id,
|
@@ -2064,7 +2064,7 @@ class ForwardingRule(pulumi.CustomResource):
|
|
2064
2064
|
)],
|
2065
2065
|
target_tags=["load-balanced-backend"],
|
2066
2066
|
direction="INGRESS",
|
2067
|
-
opts=pulumi.ResourceOptions(depends_on=[fw2]))
|
2067
|
+
opts = pulumi.ResourceOptions(depends_on=[fw2]))
|
2068
2068
|
fw4 = gcp.compute.Firewall("fw4",
|
2069
2069
|
name="website-fw-4",
|
2070
2070
|
network=default_network.id,
|
@@ -2085,14 +2085,14 @@ class ForwardingRule(pulumi.CustomResource):
|
|
2085
2085
|
),
|
2086
2086
|
],
|
2087
2087
|
direction="INGRESS",
|
2088
|
-
opts=pulumi.ResourceOptions(depends_on=[fw3]))
|
2088
|
+
opts = pulumi.ResourceOptions(depends_on=[fw3]))
|
2089
2089
|
default_region_health_check = gcp.compute.RegionHealthCheck("default",
|
2090
2090
|
region="us-central1",
|
2091
2091
|
name="website-hc",
|
2092
2092
|
http_health_check=gcp.compute.RegionHealthCheckHttpHealthCheckArgs(
|
2093
2093
|
port_specification="USE_SERVING_PORT",
|
2094
2094
|
),
|
2095
|
-
opts=pulumi.ResourceOptions(depends_on=[fw4]))
|
2095
|
+
opts = pulumi.ResourceOptions(depends_on=[fw4]))
|
2096
2096
|
default_region_backend_service = gcp.compute.RegionBackendService("default",
|
2097
2097
|
load_balancing_scheme="EXTERNAL_MANAGED",
|
2098
2098
|
backends=[gcp.compute.RegionBackendServiceBackendArgs(
|
@@ -2135,7 +2135,7 @@ class ForwardingRule(pulumi.CustomResource):
|
|
2135
2135
|
network=default_network.id,
|
2136
2136
|
ip_address=default_address.address,
|
2137
2137
|
network_tier="STANDARD",
|
2138
|
-
opts=pulumi.ResourceOptions(depends_on=[proxy]))
|
2138
|
+
opts = pulumi.ResourceOptions(depends_on=[proxy]))
|
2139
2139
|
```
|
2140
2140
|
### Forwarding Rule Vpc Psc
|
2141
2141
|
|
@@ -2308,7 +2308,7 @@ class ForwardingRule(pulumi.CustomResource):
|
|
2308
2308
|
"34.121.88.0/24",
|
2309
2309
|
"35.187.239.137",
|
2310
2310
|
],
|
2311
|
-
opts=pulumi.ResourceOptions(depends_on=[external_forwarding_rule]))
|
2311
|
+
opts = pulumi.ResourceOptions(depends_on=[external_forwarding_rule]))
|
2312
2312
|
```
|
2313
2313
|
### Forwarding Rule Internallb Ipv6
|
2314
2314
|
|
@@ -2799,7 +2799,7 @@ class ForwardingRule(pulumi.CustomResource):
|
|
2799
2799
|
)],
|
2800
2800
|
target_tags=["allow-ssh"],
|
2801
2801
|
direction="INGRESS",
|
2802
|
-
opts=pulumi.ResourceOptions(depends_on=[fw1]))
|
2802
|
+
opts = pulumi.ResourceOptions(depends_on=[fw1]))
|
2803
2803
|
fw3 = gcp.compute.Firewall("fw3",
|
2804
2804
|
name="website-fw-3",
|
2805
2805
|
network=default_network.id,
|
@@ -2812,7 +2812,7 @@ class ForwardingRule(pulumi.CustomResource):
|
|
2812
2812
|
)],
|
2813
2813
|
target_tags=["load-balanced-backend"],
|
2814
2814
|
direction="INGRESS",
|
2815
|
-
opts=pulumi.ResourceOptions(depends_on=[fw2]))
|
2815
|
+
opts = pulumi.ResourceOptions(depends_on=[fw2]))
|
2816
2816
|
fw4 = gcp.compute.Firewall("fw4",
|
2817
2817
|
name="website-fw-4",
|
2818
2818
|
network=default_network.id,
|
@@ -2833,14 +2833,14 @@ class ForwardingRule(pulumi.CustomResource):
|
|
2833
2833
|
),
|
2834
2834
|
],
|
2835
2835
|
direction="INGRESS",
|
2836
|
-
opts=pulumi.ResourceOptions(depends_on=[fw3]))
|
2836
|
+
opts = pulumi.ResourceOptions(depends_on=[fw3]))
|
2837
2837
|
default_region_health_check = gcp.compute.RegionHealthCheck("default",
|
2838
2838
|
region="us-central1",
|
2839
2839
|
name="website-hc",
|
2840
2840
|
http_health_check=gcp.compute.RegionHealthCheckHttpHealthCheckArgs(
|
2841
2841
|
port_specification="USE_SERVING_PORT",
|
2842
2842
|
),
|
2843
|
-
opts=pulumi.ResourceOptions(depends_on=[fw4]))
|
2843
|
+
opts = pulumi.ResourceOptions(depends_on=[fw4]))
|
2844
2844
|
default_region_backend_service = gcp.compute.RegionBackendService("default",
|
2845
2845
|
load_balancing_scheme="INTERNAL_MANAGED",
|
2846
2846
|
backends=[gcp.compute.RegionBackendServiceBackendArgs(
|
@@ -2879,7 +2879,7 @@ class ForwardingRule(pulumi.CustomResource):
|
|
2879
2879
|
network=default_network.id,
|
2880
2880
|
subnetwork=default_subnetwork.id,
|
2881
2881
|
network_tier="PREMIUM",
|
2882
|
-
opts=pulumi.ResourceOptions(depends_on=[proxy]))
|
2882
|
+
opts = pulumi.ResourceOptions(depends_on=[proxy]))
|
2883
2883
|
```
|
2884
2884
|
### Forwarding Rule Regional Http Xlb
|
2885
2885
|
|
@@ -2949,7 +2949,7 @@ class ForwardingRule(pulumi.CustomResource):
|
|
2949
2949
|
)],
|
2950
2950
|
target_tags=["allow-ssh"],
|
2951
2951
|
direction="INGRESS",
|
2952
|
-
opts=pulumi.ResourceOptions(depends_on=[fw1]))
|
2952
|
+
opts = pulumi.ResourceOptions(depends_on=[fw1]))
|
2953
2953
|
fw3 = gcp.compute.Firewall("fw3",
|
2954
2954
|
name="website-fw-3",
|
2955
2955
|
network=default_network.id,
|
@@ -2962,7 +2962,7 @@ class ForwardingRule(pulumi.CustomResource):
|
|
2962
2962
|
)],
|
2963
2963
|
target_tags=["load-balanced-backend"],
|
2964
2964
|
direction="INGRESS",
|
2965
|
-
opts=pulumi.ResourceOptions(depends_on=[fw2]))
|
2965
|
+
opts = pulumi.ResourceOptions(depends_on=[fw2]))
|
2966
2966
|
fw4 = gcp.compute.Firewall("fw4",
|
2967
2967
|
name="website-fw-4",
|
2968
2968
|
network=default_network.id,
|
@@ -2983,14 +2983,14 @@ class ForwardingRule(pulumi.CustomResource):
|
|
2983
2983
|
),
|
2984
2984
|
],
|
2985
2985
|
direction="INGRESS",
|
2986
|
-
opts=pulumi.ResourceOptions(depends_on=[fw3]))
|
2986
|
+
opts = pulumi.ResourceOptions(depends_on=[fw3]))
|
2987
2987
|
default_region_health_check = gcp.compute.RegionHealthCheck("default",
|
2988
2988
|
region="us-central1",
|
2989
2989
|
name="website-hc",
|
2990
2990
|
http_health_check=gcp.compute.RegionHealthCheckHttpHealthCheckArgs(
|
2991
2991
|
port_specification="USE_SERVING_PORT",
|
2992
2992
|
),
|
2993
|
-
opts=pulumi.ResourceOptions(depends_on=[fw4]))
|
2993
|
+
opts = pulumi.ResourceOptions(depends_on=[fw4]))
|
2994
2994
|
default_region_backend_service = gcp.compute.RegionBackendService("default",
|
2995
2995
|
load_balancing_scheme="EXTERNAL_MANAGED",
|
2996
2996
|
backends=[gcp.compute.RegionBackendServiceBackendArgs(
|
@@ -3033,7 +3033,7 @@ class ForwardingRule(pulumi.CustomResource):
|
|
3033
3033
|
network=default_network.id,
|
3034
3034
|
ip_address=default_address.address,
|
3035
3035
|
network_tier="STANDARD",
|
3036
|
-
opts=pulumi.ResourceOptions(depends_on=[proxy]))
|
3036
|
+
opts = pulumi.ResourceOptions(depends_on=[proxy]))
|
3037
3037
|
```
|
3038
3038
|
### Forwarding Rule Vpc Psc
|
3039
3039
|
|
@@ -3206,7 +3206,7 @@ class ForwardingRule(pulumi.CustomResource):
|
|
3206
3206
|
"34.121.88.0/24",
|
3207
3207
|
"35.187.239.137",
|
3208
3208
|
],
|
3209
|
-
opts=pulumi.ResourceOptions(depends_on=[external_forwarding_rule]))
|
3209
|
+
opts = pulumi.ResourceOptions(depends_on=[external_forwarding_rule]))
|
3210
3210
|
```
|
3211
3211
|
### Forwarding Rule Internallb Ipv6
|
3212
3212
|
|
@@ -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
|