pulumi-gcp 8.42.0a1758178363__py3-none-any.whl → 9.0.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 +83 -48
- pulumi_gcp/activedirectory/peering.py +16 -0
- pulumi_gcp/alloydb/backup.py +8 -4
- pulumi_gcp/alloydb/cluster.py +56 -10
- pulumi_gcp/alloydb/get_cluster.py +12 -1
- pulumi_gcp/alloydb/instance.py +10 -4
- pulumi_gcp/alloydb/user.py +8 -4
- pulumi_gcp/apigateway/api_config_iam_binding.py +4 -4
- pulumi_gcp/apigateway/api_config_iam_member.py +4 -4
- pulumi_gcp/apigateway/api_config_iam_policy.py +4 -4
- pulumi_gcp/apigateway/api_iam_binding.py +4 -4
- pulumi_gcp/apigateway/api_iam_member.py +4 -4
- pulumi_gcp/apigateway/api_iam_policy.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_binding.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_member.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_policy.py +4 -4
- pulumi_gcp/apigee/_inputs.py +151 -108
- pulumi_gcp/apigee/keystores_aliases_key_cert_file.py +52 -40
- pulumi_gcp/apigee/outputs.py +92 -88
- pulumi_gcp/artifactregistry/__init__.py +2 -0
- pulumi_gcp/artifactregistry/_inputs.py +0 -12
- pulumi_gcp/artifactregistry/get_npm_package.py +251 -0
- pulumi_gcp/artifactregistry/get_python_package.py +237 -0
- pulumi_gcp/artifactregistry/get_repository.py +12 -1
- pulumi_gcp/artifactregistry/outputs.py +8 -16
- pulumi_gcp/artifactregistry/repository.py +28 -0
- pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +4 -4
- pulumi_gcp/backupdisasterrecovery/get_backup.py +12 -1
- pulumi_gcp/backupdisasterrecovery/get_backup_plan_association.py +4 -0
- pulumi_gcp/backupdisasterrecovery/get_data_source_references.py +135 -0
- pulumi_gcp/backupdisasterrecovery/get_management_server.py +4 -0
- pulumi_gcp/backupdisasterrecovery/outputs.py +103 -0
- pulumi_gcp/beyondcorp/__init__.py +0 -5
- pulumi_gcp/beyondcorp/_inputs.py +0 -312
- pulumi_gcp/beyondcorp/outputs.py +0 -200
- pulumi_gcp/bigquery/_inputs.py +114 -4
- pulumi_gcp/bigquery/app_profile.py +3 -5
- pulumi_gcp/bigquery/outputs.py +75 -5
- pulumi_gcp/bigqueryanalyticshub/data_exchange_subscription.py +20 -0
- pulumi_gcp/bigtable/app_profile.py +1 -1
- pulumi_gcp/bigtable/get_table_iam_policy.py +16 -18
- pulumi_gcp/bigtable/table_iam_binding.py +43 -43
- pulumi_gcp/bigtable/table_iam_member.py +43 -43
- pulumi_gcp/bigtable/table_iam_policy.py +43 -43
- pulumi_gcp/billing/_inputs.py +0 -6
- pulumi_gcp/billing/outputs.py +0 -4
- pulumi_gcp/certificatemanager/__init__.py +1 -0
- pulumi_gcp/certificatemanager/certificate_map_entry.py +7 -7
- pulumi_gcp/certificatemanager/get_dns_authorization.py +229 -0
- pulumi_gcp/certificatemanager/outputs.py +41 -0
- pulumi_gcp/chronicle/_inputs.py +6 -5
- pulumi_gcp/chronicle/outputs.py +4 -3
- pulumi_gcp/chronicle/reference_list.py +53 -5
- pulumi_gcp/cloudasset/get_resources_search_all.py +8 -0
- pulumi_gcp/cloudbuild/_inputs.py +309 -45
- pulumi_gcp/cloudbuild/bitbucket_server_config.py +2 -6
- pulumi_gcp/cloudbuild/get_trigger.py +12 -1
- pulumi_gcp/cloudbuild/outputs.py +380 -30
- pulumi_gcp/cloudbuild/trigger.py +160 -2
- pulumi_gcp/cloudbuild/worker_pool.py +2 -6
- pulumi_gcp/cloudfunctionsv2/_inputs.py +23 -21
- pulumi_gcp/cloudfunctionsv2/outputs.py +17 -16
- pulumi_gcp/cloudquota/s_quota_adjuster_settings.py +16 -0
- pulumi_gcp/cloudrunv2/_inputs.py +80 -26
- pulumi_gcp/cloudrunv2/get_service.py +12 -1
- pulumi_gcp/cloudrunv2/outputs.py +109 -30
- pulumi_gcp/cloudrunv2/service.py +72 -12
- pulumi_gcp/cloudrunv2/worker_pool.py +2 -2
- pulumi_gcp/cloudtasks/queue.py +98 -2
- pulumi_gcp/colab/_inputs.py +1 -114
- pulumi_gcp/colab/outputs.py +1 -106
- pulumi_gcp/compute/_inputs.py +884 -24
- pulumi_gcp/compute/backend_bucket.py +68 -0
- pulumi_gcp/compute/backend_bucket_iam_binding.py +236 -0
- pulumi_gcp/compute/backend_bucket_iam_member.py +236 -0
- pulumi_gcp/compute/backend_bucket_iam_policy.py +236 -0
- pulumi_gcp/compute/backend_service.py +54 -0
- pulumi_gcp/compute/backend_service_iam_binding.py +464 -0
- pulumi_gcp/compute/backend_service_iam_member.py +464 -0
- pulumi_gcp/compute/backend_service_iam_policy.py +464 -0
- pulumi_gcp/compute/cross_site_network.py +16 -0
- pulumi_gcp/compute/future_reservation.py +32 -0
- pulumi_gcp/compute/get_backend_bucket.py +12 -1
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_region_backend_service.py +12 -1
- pulumi_gcp/compute/get_resource_policy.py +2 -20
- pulumi_gcp/compute/machine_image_iam_binding.py +8 -4
- pulumi_gcp/compute/machine_image_iam_member.py +8 -4
- pulumi_gcp/compute/machine_image_iam_policy.py +8 -4
- pulumi_gcp/compute/network_edge_security_service.py +16 -0
- pulumi_gcp/compute/network_firewall_policy_packet_mirroring_rule.py +12 -0
- pulumi_gcp/compute/network_peering_routes_config.py +0 -100
- pulumi_gcp/compute/organization_security_policy.py +83 -51
- pulumi_gcp/compute/outputs.py +799 -16
- pulumi_gcp/compute/packet_mirroring.py +6 -0
- pulumi_gcp/compute/preview_feature.py +16 -0
- pulumi_gcp/compute/public_delegated_prefix.py +42 -0
- pulumi_gcp/compute/region_backend_service.py +54 -0
- pulumi_gcp/compute/region_backend_service_iam_binding.py +488 -0
- pulumi_gcp/compute/region_backend_service_iam_member.py +488 -0
- pulumi_gcp/compute/region_backend_service_iam_policy.py +488 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +1 -3
- pulumi_gcp/compute/region_resize_request.py +24 -0
- pulumi_gcp/compute/region_url_map.py +75 -0
- pulumi_gcp/compute/subnetwork.py +0 -98
- pulumi_gcp/compute/wire_group.py +16 -0
- pulumi_gcp/config/__init__.pyi +2 -2
- pulumi_gcp/config/vars.py +4 -4
- pulumi_gcp/container/_inputs.py +466 -18
- pulumi_gcp/container/cluster.py +16 -7
- pulumi_gcp/container/outputs.py +448 -15
- pulumi_gcp/databasemigrationservice/connection_profile.py +4 -2
- pulumi_gcp/databasemigrationservice/migration_job.py +4 -2
- pulumi_gcp/dataflow/flex_template_job.py +10 -0
- pulumi_gcp/dataform/repository.py +16 -0
- pulumi_gcp/dataform/repository_release_config.py +16 -0
- pulumi_gcp/dataform/repository_workflow_config.py +16 -0
- pulumi_gcp/diagflow/_inputs.py +152 -0
- pulumi_gcp/diagflow/cx_agent.py +425 -0
- pulumi_gcp/diagflow/outputs.py +143 -0
- pulumi_gcp/discoveryengine/__init__.py +1 -0
- pulumi_gcp/discoveryengine/_inputs.py +94 -0
- pulumi_gcp/discoveryengine/acl_config.py +393 -0
- pulumi_gcp/discoveryengine/outputs.py +92 -0
- pulumi_gcp/firebase/android_app.py +16 -0
- pulumi_gcp/firebase/app_check_play_integrity_config.py +4 -8
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +2 -4
- pulumi_gcp/firebase/app_check_service_config.py +6 -12
- pulumi_gcp/firebase/app_hosting_backend.py +4 -8
- pulumi_gcp/firebase/app_hosting_build.py +4 -8
- pulumi_gcp/firebase/app_hosting_traffic.py +6 -12
- pulumi_gcp/firebase/apple_app.py +16 -0
- pulumi_gcp/firebase/data_connect_service.py +4 -8
- pulumi_gcp/firebase/database_instance.py +20 -8
- pulumi_gcp/firebase/extensions_instance.py +12 -0
- pulumi_gcp/firebase/get_android_app.py +4 -2
- pulumi_gcp/firebase/get_apple_app.py +4 -2
- pulumi_gcp/firebase/get_apple_app_config.py +16 -2
- pulumi_gcp/firebase/get_hosting_channel.py +4 -2
- pulumi_gcp/firebase/hosting_channel.py +20 -0
- pulumi_gcp/firebase/hosting_custom_domain.py +20 -0
- pulumi_gcp/firebase/hosting_release.py +16 -0
- pulumi_gcp/firebase/hosting_site.py +16 -0
- pulumi_gcp/firebase/hosting_version.py +16 -0
- pulumi_gcp/firebase/storage_bucket.py +18 -0
- pulumi_gcp/firestore/index.py +118 -3
- pulumi_gcp/folder/service_identity.py +26 -0
- pulumi_gcp/gkehub/_inputs.py +0 -60
- pulumi_gcp/gkehub/get_membership.py +1 -12
- pulumi_gcp/gkehub/membership.py +0 -70
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +16 -0
- pulumi_gcp/gkehub/outputs.py +0 -36
- pulumi_gcp/healthcare/_inputs.py +205 -0
- pulumi_gcp/healthcare/fhir_store.py +128 -0
- pulumi_gcp/healthcare/outputs.py +163 -0
- pulumi_gcp/iam/workload_identity_pool_iam_binding.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_iam_member.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_iam_policy.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_managed_identity.py +18 -0
- pulumi_gcp/iam/workload_identity_pool_namespace.py +20 -0
- pulumi_gcp/iap/__init__.py +8 -0
- pulumi_gcp/iap/_inputs.py +260 -0
- pulumi_gcp/iap/get_web_forwarding_rule_service_iam_policy.py +159 -0
- pulumi_gcp/iap/get_web_region_forwarding_rule_service_iam_policy.py +182 -0
- pulumi_gcp/iap/outputs.py +152 -0
- pulumi_gcp/{beyondcorp/application_iam_binding.py → iap/web_forwarding_rule_service_iam_binding.py} +233 -315
- pulumi_gcp/{beyondcorp/application_iam_member.py → iap/web_forwarding_rule_service_iam_member.py} +233 -315
- pulumi_gcp/{beyondcorp/application_iam_policy.py → iap/web_forwarding_rule_service_iam_policy.py} +212 -294
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_binding.py +1091 -0
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_member.py +1091 -0
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_policy.py +910 -0
- pulumi_gcp/kms/autokey_config.py +0 -2
- pulumi_gcp/kms/get_kms_secret_asymmetric.py +22 -0
- pulumi_gcp/kms/key_handle.py +0 -2
- pulumi_gcp/logging/organization_sink.py +7 -7
- pulumi_gcp/managedkafka/connect_cluster.py +4 -0
- pulumi_gcp/managedkafka/connector.py +4 -0
- pulumi_gcp/memorystore/get_instance.py +1 -12
- pulumi_gcp/memorystore/instance.py +14 -84
- pulumi_gcp/netapp/storage_pool.py +91 -2
- pulumi_gcp/netapp/volume.py +47 -0
- pulumi_gcp/networkmanagement/__init__.py +1 -0
- pulumi_gcp/networkmanagement/organization_vpc_flow_logs_config.py +1028 -0
- pulumi_gcp/networksecurity/authorization_policy.py +12 -0
- pulumi_gcp/networkservices/gateway.py +7 -7
- pulumi_gcp/networkservices/lb_traffic_extension.py +24 -23
- pulumi_gcp/networkservices/service_lb_policies.py +12 -0
- pulumi_gcp/notebooks/__init__.py +0 -1
- pulumi_gcp/oracledatabase/autonomous_database.py +2 -2
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +3 -3
- pulumi_gcp/projects/service.py +2 -11
- pulumi_gcp/provider.py +20 -20
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/cluster.py +0 -70
- pulumi_gcp/redis/get_cluster.py +1 -12
- pulumi_gcp/resourcemanager/capability.py +16 -0
- pulumi_gcp/runtimeconfig/config.py +16 -0
- pulumi_gcp/runtimeconfig/config_iam_binding.py +236 -0
- pulumi_gcp/runtimeconfig/config_iam_member.py +236 -0
- pulumi_gcp/runtimeconfig/config_iam_policy.py +236 -0
- pulumi_gcp/runtimeconfig/variable.py +10 -0
- pulumi_gcp/saasruntime/__init__.py +12 -0
- pulumi_gcp/saasruntime/_inputs.py +513 -0
- pulumi_gcp/saasruntime/outputs.py +431 -0
- pulumi_gcp/saasruntime/saa_s.py +819 -0
- pulumi_gcp/saasruntime/unit_kind.py +1024 -0
- pulumi_gcp/securesourcemanager/_inputs.py +20 -19
- pulumi_gcp/securesourcemanager/instance.py +7 -7
- pulumi_gcp/securesourcemanager/outputs.py +15 -14
- pulumi_gcp/securesourcemanager/repository.py +7 -7
- pulumi_gcp/serviceaccount/get_account_key.py +1 -21
- pulumi_gcp/servicedirectory/namespace_iam_binding.py +4 -4
- pulumi_gcp/servicedirectory/namespace_iam_member.py +4 -4
- pulumi_gcp/servicedirectory/namespace_iam_policy.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_binding.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_member.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_policy.py +4 -4
- pulumi_gcp/sql/_inputs.py +135 -1
- pulumi_gcp/sql/database_instance.py +94 -0
- pulumi_gcp/sql/get_database_instance.py +23 -1
- pulumi_gcp/sql/outputs.py +276 -3
- pulumi_gcp/sql/user.py +61 -0
- pulumi_gcp/storage/_inputs.py +253 -7
- pulumi_gcp/storage/bucket_object.py +0 -9
- pulumi_gcp/storage/outputs.py +198 -8
- pulumi_gcp/storage/transfer_job.py +47 -0
- pulumi_gcp/tpu/__init__.py +0 -2
- pulumi_gcp/tpu/_inputs.py +0 -93
- pulumi_gcp/tpu/outputs.py +0 -72
- pulumi_gcp/tpu/v2_queued_resource.py +16 -0
- pulumi_gcp/tpu/v2_vm.py +16 -0
- pulumi_gcp/vertex/_inputs.py +8 -9
- pulumi_gcp/vertex/ai_endpoint.py +2 -4
- pulumi_gcp/vertex/ai_feature_group_iam_binding.py +236 -0
- pulumi_gcp/vertex/ai_feature_group_iam_member.py +236 -0
- pulumi_gcp/vertex/ai_feature_group_iam_policy.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +0 -2
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_binding.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_member.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_policy.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_binding.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_member.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_policy.py +236 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_binding.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_member.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_policy.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_iam_binding.py +248 -0
- pulumi_gcp/vertex/ai_feature_store_iam_member.py +248 -0
- pulumi_gcp/vertex/ai_feature_store_iam_policy.py +248 -0
- pulumi_gcp/vertex/ai_index.py +24 -23
- pulumi_gcp/vertex/ai_metadata_store.py +16 -0
- pulumi_gcp/vertex/outputs.py +7 -8
- pulumi_gcp/workstations/workstation.py +16 -0
- pulumi_gcp/workstations/workstation_cluster.py +16 -0
- pulumi_gcp/workstations/workstation_config.py +16 -0
- pulumi_gcp/workstations/workstation_config_iam_binding.py +260 -0
- pulumi_gcp/workstations/workstation_config_iam_member.py +260 -0
- pulumi_gcp/workstations/workstation_config_iam_policy.py +260 -0
- pulumi_gcp/workstations/workstation_iam_binding.py +272 -0
- pulumi_gcp/workstations/workstation_iam_member.py +272 -0
- pulumi_gcp/workstations/workstation_iam_policy.py +272 -0
- {pulumi_gcp-8.42.0a1758178363.dist-info → pulumi_gcp-9.0.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.42.0a1758178363.dist-info → pulumi_gcp-9.0.0.dist-info}/RECORD +266 -255
- pulumi_gcp/beyondcorp/application.py +0 -746
- pulumi_gcp/beyondcorp/get_application_iam_policy.py +0 -182
- pulumi_gcp/notebooks/location.py +0 -285
- pulumi_gcp/tpu/get_tensorflow_versions.py +0 -184
- pulumi_gcp/tpu/node.py +0 -1062
- {pulumi_gcp-8.42.0a1758178363.dist-info → pulumi_gcp-9.0.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.42.0a1758178363.dist-info → pulumi_gcp-9.0.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/compute/outputs.py
CHANGED
@@ -31,6 +31,7 @@ __all__ = [
|
|
31
31
|
'BackendBucketCdnPolicyNegativeCachingPolicy',
|
32
32
|
'BackendBucketIamBindingCondition',
|
33
33
|
'BackendBucketIamMemberCondition',
|
34
|
+
'BackendBucketParams',
|
34
35
|
'BackendServiceBackend',
|
35
36
|
'BackendServiceBackendCustomMetric',
|
36
37
|
'BackendServiceCdnPolicy',
|
@@ -58,6 +59,7 @@ __all__ = [
|
|
58
59
|
'BackendServiceOutlierDetection',
|
59
60
|
'BackendServiceOutlierDetectionBaseEjectionTime',
|
60
61
|
'BackendServiceOutlierDetectionInterval',
|
62
|
+
'BackendServiceParams',
|
61
63
|
'BackendServiceSecuritySettings',
|
62
64
|
'BackendServiceSecuritySettingsAwsV4Authentication',
|
63
65
|
'BackendServiceStrongSessionAffinityCookie',
|
@@ -354,6 +356,7 @@ __all__ = [
|
|
354
356
|
'PerInstanceConfigPreservedStateInternalIpIpAddress',
|
355
357
|
'PreviewFeatureRolloutOperation',
|
356
358
|
'PreviewFeatureRolloutOperationRolloutInput',
|
359
|
+
'PublicDelegatedPrefixPublicDelegatedSubPrefix',
|
357
360
|
'RegionAutoscalerAutoscalingPolicy',
|
358
361
|
'RegionAutoscalerAutoscalingPolicyCpuUtilization',
|
359
362
|
'RegionAutoscalerAutoscalingPolicyLoadBalancingUtilization',
|
@@ -388,6 +391,7 @@ __all__ = [
|
|
388
391
|
'RegionBackendServiceOutlierDetection',
|
389
392
|
'RegionBackendServiceOutlierDetectionBaseEjectionTime',
|
390
393
|
'RegionBackendServiceOutlierDetectionInterval',
|
394
|
+
'RegionBackendServiceParams',
|
391
395
|
'RegionBackendServiceStrongSessionAffinityCookie',
|
392
396
|
'RegionBackendServiceStrongSessionAffinityCookieTtl',
|
393
397
|
'RegionBackendServiceSubsetting',
|
@@ -529,6 +533,9 @@ __all__ = [
|
|
529
533
|
'RegionUrlMapDefaultRouteActionWeightedBackendServiceHeaderActionRequestHeadersToAdd',
|
530
534
|
'RegionUrlMapDefaultRouteActionWeightedBackendServiceHeaderActionResponseHeadersToAdd',
|
531
535
|
'RegionUrlMapDefaultUrlRedirect',
|
536
|
+
'RegionUrlMapHeaderAction',
|
537
|
+
'RegionUrlMapHeaderActionRequestHeadersToAdd',
|
538
|
+
'RegionUrlMapHeaderActionResponseHeadersToAdd',
|
532
539
|
'RegionUrlMapHostRule',
|
533
540
|
'RegionUrlMapPathMatcher',
|
534
541
|
'RegionUrlMapPathMatcherDefaultRouteAction',
|
@@ -548,6 +555,9 @@ __all__ = [
|
|
548
555
|
'RegionUrlMapPathMatcherDefaultRouteActionWeightedBackendServiceHeaderActionRequestHeadersToAdd',
|
549
556
|
'RegionUrlMapPathMatcherDefaultRouteActionWeightedBackendServiceHeaderActionResponseHeadersToAdd',
|
550
557
|
'RegionUrlMapPathMatcherDefaultUrlRedirect',
|
558
|
+
'RegionUrlMapPathMatcherHeaderAction',
|
559
|
+
'RegionUrlMapPathMatcherHeaderActionRequestHeadersToAdd',
|
560
|
+
'RegionUrlMapPathMatcherHeaderActionResponseHeadersToAdd',
|
551
561
|
'RegionUrlMapPathMatcherPathRule',
|
552
562
|
'RegionUrlMapPathMatcherPathRuleRouteAction',
|
553
563
|
'RegionUrlMapPathMatcherPathRuleRouteActionCorsPolicy',
|
@@ -828,6 +838,7 @@ __all__ = [
|
|
828
838
|
'GetBackendBucketCdnPolicyBypassCacheOnRequestHeaderResult',
|
829
839
|
'GetBackendBucketCdnPolicyCacheKeyPolicyResult',
|
830
840
|
'GetBackendBucketCdnPolicyNegativeCachingPolicyResult',
|
841
|
+
'GetBackendBucketParamResult',
|
831
842
|
'GetBackendServiceBackendResult',
|
832
843
|
'GetBackendServiceBackendCustomMetricResult',
|
833
844
|
'GetBackendServiceCdnPolicyResult',
|
@@ -853,6 +864,7 @@ __all__ = [
|
|
853
864
|
'GetBackendServiceOutlierDetectionResult',
|
854
865
|
'GetBackendServiceOutlierDetectionBaseEjectionTimeResult',
|
855
866
|
'GetBackendServiceOutlierDetectionIntervalResult',
|
867
|
+
'GetBackendServiceParamResult',
|
856
868
|
'GetBackendServiceSecuritySettingResult',
|
857
869
|
'GetBackendServiceSecuritySettingAwsV4AuthenticationResult',
|
858
870
|
'GetBackendServiceStrongSessionAffinityCookyResult',
|
@@ -979,6 +991,7 @@ __all__ = [
|
|
979
991
|
'GetRegionBackendServiceOutlierDetectionResult',
|
980
992
|
'GetRegionBackendServiceOutlierDetectionBaseEjectionTimeResult',
|
981
993
|
'GetRegionBackendServiceOutlierDetectionIntervalResult',
|
994
|
+
'GetRegionBackendServiceParamResult',
|
982
995
|
'GetRegionBackendServiceStrongSessionAffinityCookyResult',
|
983
996
|
'GetRegionBackendServiceStrongSessionAffinityCookyTtlResult',
|
984
997
|
'GetRegionBackendServiceSubsettingResult',
|
@@ -2268,6 +2281,46 @@ class BackendBucketIamMemberCondition(dict):
|
|
2268
2281
|
return pulumi.get(self, "description")
|
2269
2282
|
|
2270
2283
|
|
2284
|
+
@pulumi.output_type
|
2285
|
+
class BackendBucketParams(dict):
|
2286
|
+
@staticmethod
|
2287
|
+
def __key_warning(key: str):
|
2288
|
+
suggest = None
|
2289
|
+
if key == "resourceManagerTags":
|
2290
|
+
suggest = "resource_manager_tags"
|
2291
|
+
|
2292
|
+
if suggest:
|
2293
|
+
pulumi.log.warn(f"Key '{key}' not found in BackendBucketParams. Access the value via the '{suggest}' property getter instead.")
|
2294
|
+
|
2295
|
+
def __getitem__(self, key: str) -> Any:
|
2296
|
+
BackendBucketParams.__key_warning(key)
|
2297
|
+
return super().__getitem__(key)
|
2298
|
+
|
2299
|
+
def get(self, key: str, default = None) -> Any:
|
2300
|
+
BackendBucketParams.__key_warning(key)
|
2301
|
+
return super().get(key, default)
|
2302
|
+
|
2303
|
+
def __init__(__self__, *,
|
2304
|
+
resource_manager_tags: Optional[Mapping[str, _builtins.str]] = None):
|
2305
|
+
"""
|
2306
|
+
:param Mapping[str, _builtins.str] resource_manager_tags: Resource manager tags to be bound to the backend bucket. Tag keys and values have the
|
2307
|
+
same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id},
|
2308
|
+
and values are in the format tagValues/456.
|
2309
|
+
"""
|
2310
|
+
if resource_manager_tags is not None:
|
2311
|
+
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
2312
|
+
|
2313
|
+
@_builtins.property
|
2314
|
+
@pulumi.getter(name="resourceManagerTags")
|
2315
|
+
def resource_manager_tags(self) -> Optional[Mapping[str, _builtins.str]]:
|
2316
|
+
"""
|
2317
|
+
Resource manager tags to be bound to the backend bucket. Tag keys and values have the
|
2318
|
+
same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id},
|
2319
|
+
and values are in the format tagValues/456.
|
2320
|
+
"""
|
2321
|
+
return pulumi.get(self, "resource_manager_tags")
|
2322
|
+
|
2323
|
+
|
2271
2324
|
@pulumi.output_type
|
2272
2325
|
class BackendServiceBackend(dict):
|
2273
2326
|
@staticmethod
|
@@ -4382,6 +4435,46 @@ class BackendServiceOutlierDetectionInterval(dict):
|
|
4382
4435
|
return pulumi.get(self, "nanos")
|
4383
4436
|
|
4384
4437
|
|
4438
|
+
@pulumi.output_type
|
4439
|
+
class BackendServiceParams(dict):
|
4440
|
+
@staticmethod
|
4441
|
+
def __key_warning(key: str):
|
4442
|
+
suggest = None
|
4443
|
+
if key == "resourceManagerTags":
|
4444
|
+
suggest = "resource_manager_tags"
|
4445
|
+
|
4446
|
+
if suggest:
|
4447
|
+
pulumi.log.warn(f"Key '{key}' not found in BackendServiceParams. Access the value via the '{suggest}' property getter instead.")
|
4448
|
+
|
4449
|
+
def __getitem__(self, key: str) -> Any:
|
4450
|
+
BackendServiceParams.__key_warning(key)
|
4451
|
+
return super().__getitem__(key)
|
4452
|
+
|
4453
|
+
def get(self, key: str, default = None) -> Any:
|
4454
|
+
BackendServiceParams.__key_warning(key)
|
4455
|
+
return super().get(key, default)
|
4456
|
+
|
4457
|
+
def __init__(__self__, *,
|
4458
|
+
resource_manager_tags: Optional[Mapping[str, _builtins.str]] = None):
|
4459
|
+
"""
|
4460
|
+
:param Mapping[str, _builtins.str] resource_manager_tags: Resource manager tags to be bound to the backend service. Tag keys and values have the
|
4461
|
+
same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id},
|
4462
|
+
and values are in the format tagValues/456.
|
4463
|
+
"""
|
4464
|
+
if resource_manager_tags is not None:
|
4465
|
+
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
4466
|
+
|
4467
|
+
@_builtins.property
|
4468
|
+
@pulumi.getter(name="resourceManagerTags")
|
4469
|
+
def resource_manager_tags(self) -> Optional[Mapping[str, _builtins.str]]:
|
4470
|
+
"""
|
4471
|
+
Resource manager tags to be bound to the backend service. Tag keys and values have the
|
4472
|
+
same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id},
|
4473
|
+
and values are in the format tagValues/456.
|
4474
|
+
"""
|
4475
|
+
return pulumi.get(self, "resource_manager_tags")
|
4476
|
+
|
4477
|
+
|
4385
4478
|
@pulumi.output_type
|
4386
4479
|
class BackendServiceSecuritySettings(dict):
|
4387
4480
|
@staticmethod
|
@@ -19197,10 +19290,7 @@ class InstanceTemplateDisk(dict):
|
|
19197
19290
|
:param _builtins.str mode: The mode in which to attach this disk, either READ_WRITE
|
19198
19291
|
or READ_ONLY. If you are attaching or creating a boot disk, this must
|
19199
19292
|
read-write mode.
|
19200
|
-
:param _builtins.int provisioned_iops: Indicates how many IOPS to provision for the disk. This
|
19201
|
-
sets the number of I/O operations per second that the disk can handle.
|
19202
|
-
Values must be between 10,000 and 120,000. For more details, see the
|
19203
|
-
[Extreme persistent disk documentation](https://cloud.google.com/compute/docs/disks/extreme-persistent-disk).
|
19293
|
+
:param _builtins.int provisioned_iops: Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second that the disk can handle. For more details, see the [Extreme persistent disk documentation](https://cloud.google.com/compute/docs/disks/extreme-persistent-disk) or the [Hyperdisk documentation](https://cloud.google.com/compute/docs/disks/hyperdisks) depending on the selected disk_type.
|
19204
19294
|
:param _builtins.int provisioned_throughput: Indicates how much throughput to provision for the disk, in MB/s. This sets the amount of data that can be read or written from the disk per second. Values must greater than or equal to 1. For more details, see the [Hyperdisk documentation](https://cloud.google.com/compute/docs/disks/hyperdisks).
|
19205
19295
|
:param Mapping[str, _builtins.str] resource_manager_tags: A set of key/value resource manager tag pairs to bind to this disk. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456.
|
19206
19296
|
:param _builtins.str resource_policies: - A list (short name or id) of resource policies to attach to this disk for automatic snapshot creations. Currently a max of 1 resource policy is supported.
|
@@ -19396,10 +19486,7 @@ class InstanceTemplateDisk(dict):
|
|
19396
19486
|
@pulumi.getter(name="provisionedIops")
|
19397
19487
|
def provisioned_iops(self) -> Optional[_builtins.int]:
|
19398
19488
|
"""
|
19399
|
-
Indicates how many IOPS to provision for the disk. This
|
19400
|
-
sets the number of I/O operations per second that the disk can handle.
|
19401
|
-
Values must be between 10,000 and 120,000. For more details, see the
|
19402
|
-
[Extreme persistent disk documentation](https://cloud.google.com/compute/docs/disks/extreme-persistent-disk).
|
19489
|
+
Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second that the disk can handle. For more details, see the [Extreme persistent disk documentation](https://cloud.google.com/compute/docs/disks/extreme-persistent-disk) or the [Hyperdisk documentation](https://cloud.google.com/compute/docs/disks/hyperdisks) depending on the selected disk_type.
|
19403
19490
|
"""
|
19404
19491
|
return pulumi.get(self, "provisioned_iops")
|
19405
19492
|
|
@@ -26277,6 +26364,160 @@ class PreviewFeatureRolloutOperationRolloutInput(dict):
|
|
26277
26364
|
return pulumi.get(self, "predefined_rollout_plan")
|
26278
26365
|
|
26279
26366
|
|
26367
|
+
@pulumi.output_type
|
26368
|
+
class PublicDelegatedPrefixPublicDelegatedSubPrefix(dict):
|
26369
|
+
@staticmethod
|
26370
|
+
def __key_warning(key: str):
|
26371
|
+
suggest = None
|
26372
|
+
if key == "allocatablePrefixLength":
|
26373
|
+
suggest = "allocatable_prefix_length"
|
26374
|
+
elif key == "delegateeProject":
|
26375
|
+
suggest = "delegatee_project"
|
26376
|
+
elif key == "ipCidrRange":
|
26377
|
+
suggest = "ip_cidr_range"
|
26378
|
+
elif key == "isAddress":
|
26379
|
+
suggest = "is_address"
|
26380
|
+
|
26381
|
+
if suggest:
|
26382
|
+
pulumi.log.warn(f"Key '{key}' not found in PublicDelegatedPrefixPublicDelegatedSubPrefix. Access the value via the '{suggest}' property getter instead.")
|
26383
|
+
|
26384
|
+
def __getitem__(self, key: str) -> Any:
|
26385
|
+
PublicDelegatedPrefixPublicDelegatedSubPrefix.__key_warning(key)
|
26386
|
+
return super().__getitem__(key)
|
26387
|
+
|
26388
|
+
def get(self, key: str, default = None) -> Any:
|
26389
|
+
PublicDelegatedPrefixPublicDelegatedSubPrefix.__key_warning(key)
|
26390
|
+
return super().get(key, default)
|
26391
|
+
|
26392
|
+
def __init__(__self__, *,
|
26393
|
+
allocatable_prefix_length: Optional[_builtins.int] = None,
|
26394
|
+
delegatee_project: Optional[_builtins.str] = None,
|
26395
|
+
description: Optional[_builtins.str] = None,
|
26396
|
+
ip_cidr_range: Optional[_builtins.str] = None,
|
26397
|
+
is_address: Optional[_builtins.bool] = None,
|
26398
|
+
mode: Optional[_builtins.str] = None,
|
26399
|
+
name: Optional[_builtins.str] = None,
|
26400
|
+
region: Optional[_builtins.str] = None,
|
26401
|
+
status: Optional[_builtins.str] = None):
|
26402
|
+
"""
|
26403
|
+
:param _builtins.int allocatable_prefix_length: The allocatable prefix length supported by this public delegated prefix. This field is optional and cannot be set for prefixes in DELEGATION mode. It cannot be set for IPv4 prefixes either, and it always defaults to 32.
|
26404
|
+
:param _builtins.str delegatee_project: Name of the project scoping this PublicDelegatedSubPrefix.
|
26405
|
+
:param _builtins.str description: An optional description of this resource.
|
26406
|
+
:param _builtins.str ip_cidr_range: The IP address range, in CIDR format, represented by this public delegated prefix.
|
26407
|
+
:param _builtins.bool is_address: Whether the sub prefix is delegated for address creation.
|
26408
|
+
:param _builtins.str mode: Specifies the mode of this IPv6 PDP. MODE must be one of: DELEGATION,
|
26409
|
+
EXTERNAL_IPV6_FORWARDING_RULE_CREATION and EXTERNAL_IPV6_SUBNETWORK_CREATION.
|
26410
|
+
Possible values are: `DELEGATION`, `EXTERNAL_IPV6_FORWARDING_RULE_CREATION`, `EXTERNAL_IPV6_SUBNETWORK_CREATION`.
|
26411
|
+
:param _builtins.str name: Name of the resource. The name must be 1-63 characters long, and
|
26412
|
+
comply with RFC1035. Specifically, the name must be 1-63 characters
|
26413
|
+
long and match the regular expression `a-z?`
|
26414
|
+
which means the first character must be a lowercase letter, and all
|
26415
|
+
following characters must be a dash, lowercase letter, or digit,
|
26416
|
+
except the last character, which cannot be a dash.
|
26417
|
+
:param _builtins.str region: A region where the prefix will reside.
|
26418
|
+
:param _builtins.str status: The status of the sub public delegated prefix.
|
26419
|
+
Possible values are: `INITIALIZING`, `READY_TO_ANNOUNCE`, `ANNOUNCED`, `DELETING`.
|
26420
|
+
"""
|
26421
|
+
if allocatable_prefix_length is not None:
|
26422
|
+
pulumi.set(__self__, "allocatable_prefix_length", allocatable_prefix_length)
|
26423
|
+
if delegatee_project is not None:
|
26424
|
+
pulumi.set(__self__, "delegatee_project", delegatee_project)
|
26425
|
+
if description is not None:
|
26426
|
+
pulumi.set(__self__, "description", description)
|
26427
|
+
if ip_cidr_range is not None:
|
26428
|
+
pulumi.set(__self__, "ip_cidr_range", ip_cidr_range)
|
26429
|
+
if is_address is not None:
|
26430
|
+
pulumi.set(__self__, "is_address", is_address)
|
26431
|
+
if mode is not None:
|
26432
|
+
pulumi.set(__self__, "mode", mode)
|
26433
|
+
if name is not None:
|
26434
|
+
pulumi.set(__self__, "name", name)
|
26435
|
+
if region is not None:
|
26436
|
+
pulumi.set(__self__, "region", region)
|
26437
|
+
if status is not None:
|
26438
|
+
pulumi.set(__self__, "status", status)
|
26439
|
+
|
26440
|
+
@_builtins.property
|
26441
|
+
@pulumi.getter(name="allocatablePrefixLength")
|
26442
|
+
def allocatable_prefix_length(self) -> Optional[_builtins.int]:
|
26443
|
+
"""
|
26444
|
+
The allocatable prefix length supported by this public delegated prefix. This field is optional and cannot be set for prefixes in DELEGATION mode. It cannot be set for IPv4 prefixes either, and it always defaults to 32.
|
26445
|
+
"""
|
26446
|
+
return pulumi.get(self, "allocatable_prefix_length")
|
26447
|
+
|
26448
|
+
@_builtins.property
|
26449
|
+
@pulumi.getter(name="delegateeProject")
|
26450
|
+
def delegatee_project(self) -> Optional[_builtins.str]:
|
26451
|
+
"""
|
26452
|
+
Name of the project scoping this PublicDelegatedSubPrefix.
|
26453
|
+
"""
|
26454
|
+
return pulumi.get(self, "delegatee_project")
|
26455
|
+
|
26456
|
+
@_builtins.property
|
26457
|
+
@pulumi.getter
|
26458
|
+
def description(self) -> Optional[_builtins.str]:
|
26459
|
+
"""
|
26460
|
+
An optional description of this resource.
|
26461
|
+
"""
|
26462
|
+
return pulumi.get(self, "description")
|
26463
|
+
|
26464
|
+
@_builtins.property
|
26465
|
+
@pulumi.getter(name="ipCidrRange")
|
26466
|
+
def ip_cidr_range(self) -> Optional[_builtins.str]:
|
26467
|
+
"""
|
26468
|
+
The IP address range, in CIDR format, represented by this public delegated prefix.
|
26469
|
+
"""
|
26470
|
+
return pulumi.get(self, "ip_cidr_range")
|
26471
|
+
|
26472
|
+
@_builtins.property
|
26473
|
+
@pulumi.getter(name="isAddress")
|
26474
|
+
def is_address(self) -> Optional[_builtins.bool]:
|
26475
|
+
"""
|
26476
|
+
Whether the sub prefix is delegated for address creation.
|
26477
|
+
"""
|
26478
|
+
return pulumi.get(self, "is_address")
|
26479
|
+
|
26480
|
+
@_builtins.property
|
26481
|
+
@pulumi.getter
|
26482
|
+
def mode(self) -> Optional[_builtins.str]:
|
26483
|
+
"""
|
26484
|
+
Specifies the mode of this IPv6 PDP. MODE must be one of: DELEGATION,
|
26485
|
+
EXTERNAL_IPV6_FORWARDING_RULE_CREATION and EXTERNAL_IPV6_SUBNETWORK_CREATION.
|
26486
|
+
Possible values are: `DELEGATION`, `EXTERNAL_IPV6_FORWARDING_RULE_CREATION`, `EXTERNAL_IPV6_SUBNETWORK_CREATION`.
|
26487
|
+
"""
|
26488
|
+
return pulumi.get(self, "mode")
|
26489
|
+
|
26490
|
+
@_builtins.property
|
26491
|
+
@pulumi.getter
|
26492
|
+
def name(self) -> Optional[_builtins.str]:
|
26493
|
+
"""
|
26494
|
+
Name of the resource. The name must be 1-63 characters long, and
|
26495
|
+
comply with RFC1035. Specifically, the name must be 1-63 characters
|
26496
|
+
long and match the regular expression `a-z?`
|
26497
|
+
which means the first character must be a lowercase letter, and all
|
26498
|
+
following characters must be a dash, lowercase letter, or digit,
|
26499
|
+
except the last character, which cannot be a dash.
|
26500
|
+
"""
|
26501
|
+
return pulumi.get(self, "name")
|
26502
|
+
|
26503
|
+
@_builtins.property
|
26504
|
+
@pulumi.getter
|
26505
|
+
def region(self) -> Optional[_builtins.str]:
|
26506
|
+
"""
|
26507
|
+
A region where the prefix will reside.
|
26508
|
+
"""
|
26509
|
+
return pulumi.get(self, "region")
|
26510
|
+
|
26511
|
+
@_builtins.property
|
26512
|
+
@pulumi.getter
|
26513
|
+
def status(self) -> Optional[_builtins.str]:
|
26514
|
+
"""
|
26515
|
+
The status of the sub public delegated prefix.
|
26516
|
+
Possible values are: `INITIALIZING`, `READY_TO_ANNOUNCE`, `ANNOUNCED`, `DELETING`.
|
26517
|
+
"""
|
26518
|
+
return pulumi.get(self, "status")
|
26519
|
+
|
26520
|
+
|
26280
26521
|
@pulumi.output_type
|
26281
26522
|
class RegionAutoscalerAutoscalingPolicy(dict):
|
26282
26523
|
@staticmethod
|
@@ -29145,6 +29386,46 @@ class RegionBackendServiceOutlierDetectionInterval(dict):
|
|
29145
29386
|
return pulumi.get(self, "nanos")
|
29146
29387
|
|
29147
29388
|
|
29389
|
+
@pulumi.output_type
|
29390
|
+
class RegionBackendServiceParams(dict):
|
29391
|
+
@staticmethod
|
29392
|
+
def __key_warning(key: str):
|
29393
|
+
suggest = None
|
29394
|
+
if key == "resourceManagerTags":
|
29395
|
+
suggest = "resource_manager_tags"
|
29396
|
+
|
29397
|
+
if suggest:
|
29398
|
+
pulumi.log.warn(f"Key '{key}' not found in RegionBackendServiceParams. Access the value via the '{suggest}' property getter instead.")
|
29399
|
+
|
29400
|
+
def __getitem__(self, key: str) -> Any:
|
29401
|
+
RegionBackendServiceParams.__key_warning(key)
|
29402
|
+
return super().__getitem__(key)
|
29403
|
+
|
29404
|
+
def get(self, key: str, default = None) -> Any:
|
29405
|
+
RegionBackendServiceParams.__key_warning(key)
|
29406
|
+
return super().get(key, default)
|
29407
|
+
|
29408
|
+
def __init__(__self__, *,
|
29409
|
+
resource_manager_tags: Optional[Mapping[str, _builtins.str]] = None):
|
29410
|
+
"""
|
29411
|
+
:param Mapping[str, _builtins.str] resource_manager_tags: Resource manager tags to be bound to the region backend service. Tag keys and values have the
|
29412
|
+
same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id},
|
29413
|
+
and values are in the format tagValues/456.
|
29414
|
+
"""
|
29415
|
+
if resource_manager_tags is not None:
|
29416
|
+
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
29417
|
+
|
29418
|
+
@_builtins.property
|
29419
|
+
@pulumi.getter(name="resourceManagerTags")
|
29420
|
+
def resource_manager_tags(self) -> Optional[Mapping[str, _builtins.str]]:
|
29421
|
+
"""
|
29422
|
+
Resource manager tags to be bound to the region backend service. Tag keys and values have the
|
29423
|
+
same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id},
|
29424
|
+
and values are in the format tagValues/456.
|
29425
|
+
"""
|
29426
|
+
return pulumi.get(self, "resource_manager_tags")
|
29427
|
+
|
29428
|
+
|
29148
29429
|
@pulumi.output_type
|
29149
29430
|
class RegionBackendServiceStrongSessionAffinityCookie(dict):
|
29150
29431
|
def __init__(__self__, *,
|
@@ -31920,10 +32201,7 @@ class RegionInstanceTemplateDisk(dict):
|
|
31920
32201
|
:param _builtins.str mode: The mode in which to attach this disk, either READ_WRITE
|
31921
32202
|
or READ_ONLY. If you are attaching or creating a boot disk, this must
|
31922
32203
|
read-write mode.
|
31923
|
-
:param _builtins.int provisioned_iops: Indicates how many IOPS to provision for the disk. This
|
31924
|
-
sets the number of I/O operations per second that the disk can handle.
|
31925
|
-
Values must be between 10,000 and 120,000. For more details, see the
|
31926
|
-
[Extreme persistent disk documentation](https://cloud.google.com/compute/docs/disks/extreme-persistent-disk).
|
32204
|
+
:param _builtins.int provisioned_iops: Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second that the disk can handle. For more details, see the [Extreme persistent disk documentation](https://cloud.google.com/compute/docs/disks/extreme-persistent-disk) or the [Hyperdisk documentation](https://cloud.google.com/compute/docs/disks/hyperdisks) depending on the selected disk_type.
|
31927
32205
|
:param _builtins.int provisioned_throughput: Indicates how much throughput to provision for the disk, in MB/s. This sets the amount of data that can be read or written from the disk per second. Values must greater than or equal to 1. For more details, see the [Hyperdisk documentation](https://cloud.google.com/compute/docs/disks/hyperdisks).
|
31928
32206
|
:param Mapping[str, _builtins.str] resource_manager_tags: A set of key/value resource manager tag pairs to bind to this disk. Keys must be in the format tagKeys/{tag_key_id}, and values are in the format tagValues/456.
|
31929
32207
|
:param _builtins.str resource_policies: - A list (short name or id) of resource policies to attach to this disk for automatic snapshot creations. Currently a max of 1 resource policy is supported.
|
@@ -32119,10 +32397,7 @@ class RegionInstanceTemplateDisk(dict):
|
|
32119
32397
|
@pulumi.getter(name="provisionedIops")
|
32120
32398
|
def provisioned_iops(self) -> Optional[_builtins.int]:
|
32121
32399
|
"""
|
32122
|
-
Indicates how many IOPS to provision for the disk. This
|
32123
|
-
sets the number of I/O operations per second that the disk can handle.
|
32124
|
-
Values must be between 10,000 and 120,000. For more details, see the
|
32125
|
-
[Extreme persistent disk documentation](https://cloud.google.com/compute/docs/disks/extreme-persistent-disk).
|
32400
|
+
Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second that the disk can handle. For more details, see the [Extreme persistent disk documentation](https://cloud.google.com/compute/docs/disks/extreme-persistent-disk) or the [Hyperdisk documentation](https://cloud.google.com/compute/docs/disks/hyperdisks) depending on the selected disk_type.
|
32126
32401
|
"""
|
32127
32402
|
return pulumi.get(self, "provisioned_iops")
|
32128
32403
|
|
@@ -39602,6 +39877,216 @@ class RegionUrlMapDefaultUrlRedirect(dict):
|
|
39602
39877
|
return pulumi.get(self, "redirect_response_code")
|
39603
39878
|
|
39604
39879
|
|
39880
|
+
@pulumi.output_type
|
39881
|
+
class RegionUrlMapHeaderAction(dict):
|
39882
|
+
@staticmethod
|
39883
|
+
def __key_warning(key: str):
|
39884
|
+
suggest = None
|
39885
|
+
if key == "requestHeadersToAdds":
|
39886
|
+
suggest = "request_headers_to_adds"
|
39887
|
+
elif key == "requestHeadersToRemoves":
|
39888
|
+
suggest = "request_headers_to_removes"
|
39889
|
+
elif key == "responseHeadersToAdds":
|
39890
|
+
suggest = "response_headers_to_adds"
|
39891
|
+
elif key == "responseHeadersToRemoves":
|
39892
|
+
suggest = "response_headers_to_removes"
|
39893
|
+
|
39894
|
+
if suggest:
|
39895
|
+
pulumi.log.warn(f"Key '{key}' not found in RegionUrlMapHeaderAction. Access the value via the '{suggest}' property getter instead.")
|
39896
|
+
|
39897
|
+
def __getitem__(self, key: str) -> Any:
|
39898
|
+
RegionUrlMapHeaderAction.__key_warning(key)
|
39899
|
+
return super().__getitem__(key)
|
39900
|
+
|
39901
|
+
def get(self, key: str, default = None) -> Any:
|
39902
|
+
RegionUrlMapHeaderAction.__key_warning(key)
|
39903
|
+
return super().get(key, default)
|
39904
|
+
|
39905
|
+
def __init__(__self__, *,
|
39906
|
+
request_headers_to_adds: Optional[Sequence['outputs.RegionUrlMapHeaderActionRequestHeadersToAdd']] = None,
|
39907
|
+
request_headers_to_removes: Optional[Sequence[_builtins.str]] = None,
|
39908
|
+
response_headers_to_adds: Optional[Sequence['outputs.RegionUrlMapHeaderActionResponseHeadersToAdd']] = None,
|
39909
|
+
response_headers_to_removes: Optional[Sequence[_builtins.str]] = None):
|
39910
|
+
"""
|
39911
|
+
:param Sequence['RegionUrlMapHeaderActionRequestHeadersToAddArgs'] request_headers_to_adds: Headers to add to a matching request before forwarding the request to the backendService.
|
39912
|
+
Structure is documented below.
|
39913
|
+
:param Sequence[_builtins.str] request_headers_to_removes: A list of header names for headers that need to be removed from the request before forwarding the request to the backendService.
|
39914
|
+
:param Sequence['RegionUrlMapHeaderActionResponseHeadersToAddArgs'] response_headers_to_adds: Headers to add the response before sending the response back to the client.
|
39915
|
+
Structure is documented below.
|
39916
|
+
:param Sequence[_builtins.str] response_headers_to_removes: A list of header names for headers that need to be removed from the response before sending the response back to the client.
|
39917
|
+
"""
|
39918
|
+
if request_headers_to_adds is not None:
|
39919
|
+
pulumi.set(__self__, "request_headers_to_adds", request_headers_to_adds)
|
39920
|
+
if request_headers_to_removes is not None:
|
39921
|
+
pulumi.set(__self__, "request_headers_to_removes", request_headers_to_removes)
|
39922
|
+
if response_headers_to_adds is not None:
|
39923
|
+
pulumi.set(__self__, "response_headers_to_adds", response_headers_to_adds)
|
39924
|
+
if response_headers_to_removes is not None:
|
39925
|
+
pulumi.set(__self__, "response_headers_to_removes", response_headers_to_removes)
|
39926
|
+
|
39927
|
+
@_builtins.property
|
39928
|
+
@pulumi.getter(name="requestHeadersToAdds")
|
39929
|
+
def request_headers_to_adds(self) -> Optional[Sequence['outputs.RegionUrlMapHeaderActionRequestHeadersToAdd']]:
|
39930
|
+
"""
|
39931
|
+
Headers to add to a matching request before forwarding the request to the backendService.
|
39932
|
+
Structure is documented below.
|
39933
|
+
"""
|
39934
|
+
return pulumi.get(self, "request_headers_to_adds")
|
39935
|
+
|
39936
|
+
@_builtins.property
|
39937
|
+
@pulumi.getter(name="requestHeadersToRemoves")
|
39938
|
+
def request_headers_to_removes(self) -> Optional[Sequence[_builtins.str]]:
|
39939
|
+
"""
|
39940
|
+
A list of header names for headers that need to be removed from the request before forwarding the request to the backendService.
|
39941
|
+
"""
|
39942
|
+
return pulumi.get(self, "request_headers_to_removes")
|
39943
|
+
|
39944
|
+
@_builtins.property
|
39945
|
+
@pulumi.getter(name="responseHeadersToAdds")
|
39946
|
+
def response_headers_to_adds(self) -> Optional[Sequence['outputs.RegionUrlMapHeaderActionResponseHeadersToAdd']]:
|
39947
|
+
"""
|
39948
|
+
Headers to add the response before sending the response back to the client.
|
39949
|
+
Structure is documented below.
|
39950
|
+
"""
|
39951
|
+
return pulumi.get(self, "response_headers_to_adds")
|
39952
|
+
|
39953
|
+
@_builtins.property
|
39954
|
+
@pulumi.getter(name="responseHeadersToRemoves")
|
39955
|
+
def response_headers_to_removes(self) -> Optional[Sequence[_builtins.str]]:
|
39956
|
+
"""
|
39957
|
+
A list of header names for headers that need to be removed from the response before sending the response back to the client.
|
39958
|
+
"""
|
39959
|
+
return pulumi.get(self, "response_headers_to_removes")
|
39960
|
+
|
39961
|
+
|
39962
|
+
@pulumi.output_type
|
39963
|
+
class RegionUrlMapHeaderActionRequestHeadersToAdd(dict):
|
39964
|
+
@staticmethod
|
39965
|
+
def __key_warning(key: str):
|
39966
|
+
suggest = None
|
39967
|
+
if key == "headerName":
|
39968
|
+
suggest = "header_name"
|
39969
|
+
elif key == "headerValue":
|
39970
|
+
suggest = "header_value"
|
39971
|
+
|
39972
|
+
if suggest:
|
39973
|
+
pulumi.log.warn(f"Key '{key}' not found in RegionUrlMapHeaderActionRequestHeadersToAdd. Access the value via the '{suggest}' property getter instead.")
|
39974
|
+
|
39975
|
+
def __getitem__(self, key: str) -> Any:
|
39976
|
+
RegionUrlMapHeaderActionRequestHeadersToAdd.__key_warning(key)
|
39977
|
+
return super().__getitem__(key)
|
39978
|
+
|
39979
|
+
def get(self, key: str, default = None) -> Any:
|
39980
|
+
RegionUrlMapHeaderActionRequestHeadersToAdd.__key_warning(key)
|
39981
|
+
return super().get(key, default)
|
39982
|
+
|
39983
|
+
def __init__(__self__, *,
|
39984
|
+
header_name: Optional[_builtins.str] = None,
|
39985
|
+
header_value: Optional[_builtins.str] = None,
|
39986
|
+
replace: Optional[_builtins.bool] = None):
|
39987
|
+
"""
|
39988
|
+
:param _builtins.str header_name: The name of the header.
|
39989
|
+
:param _builtins.str header_value: The value of the header to add.
|
39990
|
+
:param _builtins.bool replace: If false, headerValue is appended to any values that already exist for the header. If true, headerValue is set for the header, discarding any values that were set for that header.
|
39991
|
+
The default value is false.
|
39992
|
+
"""
|
39993
|
+
if header_name is not None:
|
39994
|
+
pulumi.set(__self__, "header_name", header_name)
|
39995
|
+
if header_value is not None:
|
39996
|
+
pulumi.set(__self__, "header_value", header_value)
|
39997
|
+
if replace is not None:
|
39998
|
+
pulumi.set(__self__, "replace", replace)
|
39999
|
+
|
40000
|
+
@_builtins.property
|
40001
|
+
@pulumi.getter(name="headerName")
|
40002
|
+
def header_name(self) -> Optional[_builtins.str]:
|
40003
|
+
"""
|
40004
|
+
The name of the header.
|
40005
|
+
"""
|
40006
|
+
return pulumi.get(self, "header_name")
|
40007
|
+
|
40008
|
+
@_builtins.property
|
40009
|
+
@pulumi.getter(name="headerValue")
|
40010
|
+
def header_value(self) -> Optional[_builtins.str]:
|
40011
|
+
"""
|
40012
|
+
The value of the header to add.
|
40013
|
+
"""
|
40014
|
+
return pulumi.get(self, "header_value")
|
40015
|
+
|
40016
|
+
@_builtins.property
|
40017
|
+
@pulumi.getter
|
40018
|
+
def replace(self) -> Optional[_builtins.bool]:
|
40019
|
+
"""
|
40020
|
+
If false, headerValue is appended to any values that already exist for the header. If true, headerValue is set for the header, discarding any values that were set for that header.
|
40021
|
+
The default value is false.
|
40022
|
+
"""
|
40023
|
+
return pulumi.get(self, "replace")
|
40024
|
+
|
40025
|
+
|
40026
|
+
@pulumi.output_type
|
40027
|
+
class RegionUrlMapHeaderActionResponseHeadersToAdd(dict):
|
40028
|
+
@staticmethod
|
40029
|
+
def __key_warning(key: str):
|
40030
|
+
suggest = None
|
40031
|
+
if key == "headerName":
|
40032
|
+
suggest = "header_name"
|
40033
|
+
elif key == "headerValue":
|
40034
|
+
suggest = "header_value"
|
40035
|
+
|
40036
|
+
if suggest:
|
40037
|
+
pulumi.log.warn(f"Key '{key}' not found in RegionUrlMapHeaderActionResponseHeadersToAdd. Access the value via the '{suggest}' property getter instead.")
|
40038
|
+
|
40039
|
+
def __getitem__(self, key: str) -> Any:
|
40040
|
+
RegionUrlMapHeaderActionResponseHeadersToAdd.__key_warning(key)
|
40041
|
+
return super().__getitem__(key)
|
40042
|
+
|
40043
|
+
def get(self, key: str, default = None) -> Any:
|
40044
|
+
RegionUrlMapHeaderActionResponseHeadersToAdd.__key_warning(key)
|
40045
|
+
return super().get(key, default)
|
40046
|
+
|
40047
|
+
def __init__(__self__, *,
|
40048
|
+
header_name: Optional[_builtins.str] = None,
|
40049
|
+
header_value: Optional[_builtins.str] = None,
|
40050
|
+
replace: Optional[_builtins.bool] = None):
|
40051
|
+
"""
|
40052
|
+
:param _builtins.str header_name: The name of the header.
|
40053
|
+
:param _builtins.str header_value: The value of the header to add.
|
40054
|
+
:param _builtins.bool replace: If false, headerValue is appended to any values that already exist for the header. If true, headerValue is set for the header, discarding any values that were set for that header.
|
40055
|
+
The default value is false.
|
40056
|
+
"""
|
40057
|
+
if header_name is not None:
|
40058
|
+
pulumi.set(__self__, "header_name", header_name)
|
40059
|
+
if header_value is not None:
|
40060
|
+
pulumi.set(__self__, "header_value", header_value)
|
40061
|
+
if replace is not None:
|
40062
|
+
pulumi.set(__self__, "replace", replace)
|
40063
|
+
|
40064
|
+
@_builtins.property
|
40065
|
+
@pulumi.getter(name="headerName")
|
40066
|
+
def header_name(self) -> Optional[_builtins.str]:
|
40067
|
+
"""
|
40068
|
+
The name of the header.
|
40069
|
+
"""
|
40070
|
+
return pulumi.get(self, "header_name")
|
40071
|
+
|
40072
|
+
@_builtins.property
|
40073
|
+
@pulumi.getter(name="headerValue")
|
40074
|
+
def header_value(self) -> Optional[_builtins.str]:
|
40075
|
+
"""
|
40076
|
+
The value of the header to add.
|
40077
|
+
"""
|
40078
|
+
return pulumi.get(self, "header_value")
|
40079
|
+
|
40080
|
+
@_builtins.property
|
40081
|
+
@pulumi.getter
|
40082
|
+
def replace(self) -> Optional[_builtins.bool]:
|
40083
|
+
"""
|
40084
|
+
If false, headerValue is appended to any values that already exist for the header. If true, headerValue is set for the header, discarding any values that were set for that header.
|
40085
|
+
The default value is false.
|
40086
|
+
"""
|
40087
|
+
return pulumi.get(self, "replace")
|
40088
|
+
|
40089
|
+
|
39605
40090
|
@pulumi.output_type
|
39606
40091
|
class RegionUrlMapHostRule(dict):
|
39607
40092
|
@staticmethod
|
@@ -39681,6 +40166,8 @@ class RegionUrlMapPathMatcher(dict):
|
|
39681
40166
|
suggest = "default_service"
|
39682
40167
|
elif key == "defaultUrlRedirect":
|
39683
40168
|
suggest = "default_url_redirect"
|
40169
|
+
elif key == "headerAction":
|
40170
|
+
suggest = "header_action"
|
39684
40171
|
elif key == "pathRules":
|
39685
40172
|
suggest = "path_rules"
|
39686
40173
|
elif key == "routeRules":
|
@@ -39703,6 +40190,7 @@ class RegionUrlMapPathMatcher(dict):
|
|
39703
40190
|
default_service: Optional[_builtins.str] = None,
|
39704
40191
|
default_url_redirect: Optional['outputs.RegionUrlMapPathMatcherDefaultUrlRedirect'] = None,
|
39705
40192
|
description: Optional[_builtins.str] = None,
|
40193
|
+
header_action: Optional['outputs.RegionUrlMapPathMatcherHeaderAction'] = None,
|
39706
40194
|
path_rules: Optional[Sequence['outputs.RegionUrlMapPathMatcherPathRule']] = None,
|
39707
40195
|
route_rules: Optional[Sequence['outputs.RegionUrlMapPathMatcherRouteRule']] = None):
|
39708
40196
|
"""
|
@@ -39721,6 +40209,11 @@ class RegionUrlMapPathMatcher(dict):
|
|
39721
40209
|
defaultRouteAction must not be set.
|
39722
40210
|
Structure is documented below.
|
39723
40211
|
:param _builtins.str description: An optional description of this resource.
|
40212
|
+
:param 'RegionUrlMapPathMatcherHeaderActionArgs' header_action: Specifies changes to request and response headers that need to take effect for the selected backendService.
|
40213
|
+
headerAction specified here take effect before headerAction in the enclosing HttpRouteRule, PathMatcher and UrlMap.
|
40214
|
+
headerAction is not supported for load balancers that have their loadBalancingScheme set to EXTERNAL.
|
40215
|
+
Not supported when the URL map is bound to a target gRPC proxy that has validateForProxyless field set to true.
|
40216
|
+
Structure is documented below.
|
39724
40217
|
:param Sequence['RegionUrlMapPathMatcherPathRuleArgs'] path_rules: The list of path rules. Use this list instead of routeRules when routing based
|
39725
40218
|
on simple path matching is all that's required. The order by which path rules
|
39726
40219
|
are specified does not matter. Matches are always done on the longest-path-first
|
@@ -39745,6 +40238,8 @@ class RegionUrlMapPathMatcher(dict):
|
|
39745
40238
|
pulumi.set(__self__, "default_url_redirect", default_url_redirect)
|
39746
40239
|
if description is not None:
|
39747
40240
|
pulumi.set(__self__, "description", description)
|
40241
|
+
if header_action is not None:
|
40242
|
+
pulumi.set(__self__, "header_action", header_action)
|
39748
40243
|
if path_rules is not None:
|
39749
40244
|
pulumi.set(__self__, "path_rules", path_rules)
|
39750
40245
|
if route_rules is not None:
|
@@ -39800,6 +40295,18 @@ class RegionUrlMapPathMatcher(dict):
|
|
39800
40295
|
"""
|
39801
40296
|
return pulumi.get(self, "description")
|
39802
40297
|
|
40298
|
+
@_builtins.property
|
40299
|
+
@pulumi.getter(name="headerAction")
|
40300
|
+
def header_action(self) -> Optional['outputs.RegionUrlMapPathMatcherHeaderAction']:
|
40301
|
+
"""
|
40302
|
+
Specifies changes to request and response headers that need to take effect for the selected backendService.
|
40303
|
+
headerAction specified here take effect before headerAction in the enclosing HttpRouteRule, PathMatcher and UrlMap.
|
40304
|
+
headerAction is not supported for load balancers that have their loadBalancingScheme set to EXTERNAL.
|
40305
|
+
Not supported when the URL map is bound to a target gRPC proxy that has validateForProxyless field set to true.
|
40306
|
+
Structure is documented below.
|
40307
|
+
"""
|
40308
|
+
return pulumi.get(self, "header_action")
|
40309
|
+
|
39803
40310
|
@_builtins.property
|
39804
40311
|
@pulumi.getter(name="pathRules")
|
39805
40312
|
def path_rules(self) -> Optional[Sequence['outputs.RegionUrlMapPathMatcherPathRule']]:
|
@@ -41091,6 +41598,216 @@ class RegionUrlMapPathMatcherDefaultUrlRedirect(dict):
|
|
41091
41598
|
return pulumi.get(self, "redirect_response_code")
|
41092
41599
|
|
41093
41600
|
|
41601
|
+
@pulumi.output_type
|
41602
|
+
class RegionUrlMapPathMatcherHeaderAction(dict):
|
41603
|
+
@staticmethod
|
41604
|
+
def __key_warning(key: str):
|
41605
|
+
suggest = None
|
41606
|
+
if key == "requestHeadersToAdds":
|
41607
|
+
suggest = "request_headers_to_adds"
|
41608
|
+
elif key == "requestHeadersToRemoves":
|
41609
|
+
suggest = "request_headers_to_removes"
|
41610
|
+
elif key == "responseHeadersToAdds":
|
41611
|
+
suggest = "response_headers_to_adds"
|
41612
|
+
elif key == "responseHeadersToRemoves":
|
41613
|
+
suggest = "response_headers_to_removes"
|
41614
|
+
|
41615
|
+
if suggest:
|
41616
|
+
pulumi.log.warn(f"Key '{key}' not found in RegionUrlMapPathMatcherHeaderAction. Access the value via the '{suggest}' property getter instead.")
|
41617
|
+
|
41618
|
+
def __getitem__(self, key: str) -> Any:
|
41619
|
+
RegionUrlMapPathMatcherHeaderAction.__key_warning(key)
|
41620
|
+
return super().__getitem__(key)
|
41621
|
+
|
41622
|
+
def get(self, key: str, default = None) -> Any:
|
41623
|
+
RegionUrlMapPathMatcherHeaderAction.__key_warning(key)
|
41624
|
+
return super().get(key, default)
|
41625
|
+
|
41626
|
+
def __init__(__self__, *,
|
41627
|
+
request_headers_to_adds: Optional[Sequence['outputs.RegionUrlMapPathMatcherHeaderActionRequestHeadersToAdd']] = None,
|
41628
|
+
request_headers_to_removes: Optional[Sequence[_builtins.str]] = None,
|
41629
|
+
response_headers_to_adds: Optional[Sequence['outputs.RegionUrlMapPathMatcherHeaderActionResponseHeadersToAdd']] = None,
|
41630
|
+
response_headers_to_removes: Optional[Sequence[_builtins.str]] = None):
|
41631
|
+
"""
|
41632
|
+
:param Sequence['RegionUrlMapPathMatcherHeaderActionRequestHeadersToAddArgs'] request_headers_to_adds: Headers to add to a matching request before forwarding the request to the backendService.
|
41633
|
+
Structure is documented below.
|
41634
|
+
:param Sequence[_builtins.str] request_headers_to_removes: A list of header names for headers that need to be removed from the request before forwarding the request to the backendService.
|
41635
|
+
:param Sequence['RegionUrlMapPathMatcherHeaderActionResponseHeadersToAddArgs'] response_headers_to_adds: Headers to add the response before sending the response back to the client.
|
41636
|
+
Structure is documented below.
|
41637
|
+
:param Sequence[_builtins.str] response_headers_to_removes: A list of header names for headers that need to be removed from the response before sending the response back to the client.
|
41638
|
+
"""
|
41639
|
+
if request_headers_to_adds is not None:
|
41640
|
+
pulumi.set(__self__, "request_headers_to_adds", request_headers_to_adds)
|
41641
|
+
if request_headers_to_removes is not None:
|
41642
|
+
pulumi.set(__self__, "request_headers_to_removes", request_headers_to_removes)
|
41643
|
+
if response_headers_to_adds is not None:
|
41644
|
+
pulumi.set(__self__, "response_headers_to_adds", response_headers_to_adds)
|
41645
|
+
if response_headers_to_removes is not None:
|
41646
|
+
pulumi.set(__self__, "response_headers_to_removes", response_headers_to_removes)
|
41647
|
+
|
41648
|
+
@_builtins.property
|
41649
|
+
@pulumi.getter(name="requestHeadersToAdds")
|
41650
|
+
def request_headers_to_adds(self) -> Optional[Sequence['outputs.RegionUrlMapPathMatcherHeaderActionRequestHeadersToAdd']]:
|
41651
|
+
"""
|
41652
|
+
Headers to add to a matching request before forwarding the request to the backendService.
|
41653
|
+
Structure is documented below.
|
41654
|
+
"""
|
41655
|
+
return pulumi.get(self, "request_headers_to_adds")
|
41656
|
+
|
41657
|
+
@_builtins.property
|
41658
|
+
@pulumi.getter(name="requestHeadersToRemoves")
|
41659
|
+
def request_headers_to_removes(self) -> Optional[Sequence[_builtins.str]]:
|
41660
|
+
"""
|
41661
|
+
A list of header names for headers that need to be removed from the request before forwarding the request to the backendService.
|
41662
|
+
"""
|
41663
|
+
return pulumi.get(self, "request_headers_to_removes")
|
41664
|
+
|
41665
|
+
@_builtins.property
|
41666
|
+
@pulumi.getter(name="responseHeadersToAdds")
|
41667
|
+
def response_headers_to_adds(self) -> Optional[Sequence['outputs.RegionUrlMapPathMatcherHeaderActionResponseHeadersToAdd']]:
|
41668
|
+
"""
|
41669
|
+
Headers to add the response before sending the response back to the client.
|
41670
|
+
Structure is documented below.
|
41671
|
+
"""
|
41672
|
+
return pulumi.get(self, "response_headers_to_adds")
|
41673
|
+
|
41674
|
+
@_builtins.property
|
41675
|
+
@pulumi.getter(name="responseHeadersToRemoves")
|
41676
|
+
def response_headers_to_removes(self) -> Optional[Sequence[_builtins.str]]:
|
41677
|
+
"""
|
41678
|
+
A list of header names for headers that need to be removed from the response before sending the response back to the client.
|
41679
|
+
"""
|
41680
|
+
return pulumi.get(self, "response_headers_to_removes")
|
41681
|
+
|
41682
|
+
|
41683
|
+
@pulumi.output_type
|
41684
|
+
class RegionUrlMapPathMatcherHeaderActionRequestHeadersToAdd(dict):
|
41685
|
+
@staticmethod
|
41686
|
+
def __key_warning(key: str):
|
41687
|
+
suggest = None
|
41688
|
+
if key == "headerName":
|
41689
|
+
suggest = "header_name"
|
41690
|
+
elif key == "headerValue":
|
41691
|
+
suggest = "header_value"
|
41692
|
+
|
41693
|
+
if suggest:
|
41694
|
+
pulumi.log.warn(f"Key '{key}' not found in RegionUrlMapPathMatcherHeaderActionRequestHeadersToAdd. Access the value via the '{suggest}' property getter instead.")
|
41695
|
+
|
41696
|
+
def __getitem__(self, key: str) -> Any:
|
41697
|
+
RegionUrlMapPathMatcherHeaderActionRequestHeadersToAdd.__key_warning(key)
|
41698
|
+
return super().__getitem__(key)
|
41699
|
+
|
41700
|
+
def get(self, key: str, default = None) -> Any:
|
41701
|
+
RegionUrlMapPathMatcherHeaderActionRequestHeadersToAdd.__key_warning(key)
|
41702
|
+
return super().get(key, default)
|
41703
|
+
|
41704
|
+
def __init__(__self__, *,
|
41705
|
+
header_name: Optional[_builtins.str] = None,
|
41706
|
+
header_value: Optional[_builtins.str] = None,
|
41707
|
+
replace: Optional[_builtins.bool] = None):
|
41708
|
+
"""
|
41709
|
+
:param _builtins.str header_name: The name of the header.
|
41710
|
+
:param _builtins.str header_value: The value of the header to add.
|
41711
|
+
:param _builtins.bool replace: If false, headerValue is appended to any values that already exist for the header. If true, headerValue is set for the header, discarding any values that were set for that header.
|
41712
|
+
The default value is false.
|
41713
|
+
"""
|
41714
|
+
if header_name is not None:
|
41715
|
+
pulumi.set(__self__, "header_name", header_name)
|
41716
|
+
if header_value is not None:
|
41717
|
+
pulumi.set(__self__, "header_value", header_value)
|
41718
|
+
if replace is not None:
|
41719
|
+
pulumi.set(__self__, "replace", replace)
|
41720
|
+
|
41721
|
+
@_builtins.property
|
41722
|
+
@pulumi.getter(name="headerName")
|
41723
|
+
def header_name(self) -> Optional[_builtins.str]:
|
41724
|
+
"""
|
41725
|
+
The name of the header.
|
41726
|
+
"""
|
41727
|
+
return pulumi.get(self, "header_name")
|
41728
|
+
|
41729
|
+
@_builtins.property
|
41730
|
+
@pulumi.getter(name="headerValue")
|
41731
|
+
def header_value(self) -> Optional[_builtins.str]:
|
41732
|
+
"""
|
41733
|
+
The value of the header to add.
|
41734
|
+
"""
|
41735
|
+
return pulumi.get(self, "header_value")
|
41736
|
+
|
41737
|
+
@_builtins.property
|
41738
|
+
@pulumi.getter
|
41739
|
+
def replace(self) -> Optional[_builtins.bool]:
|
41740
|
+
"""
|
41741
|
+
If false, headerValue is appended to any values that already exist for the header. If true, headerValue is set for the header, discarding any values that were set for that header.
|
41742
|
+
The default value is false.
|
41743
|
+
"""
|
41744
|
+
return pulumi.get(self, "replace")
|
41745
|
+
|
41746
|
+
|
41747
|
+
@pulumi.output_type
|
41748
|
+
class RegionUrlMapPathMatcherHeaderActionResponseHeadersToAdd(dict):
|
41749
|
+
@staticmethod
|
41750
|
+
def __key_warning(key: str):
|
41751
|
+
suggest = None
|
41752
|
+
if key == "headerName":
|
41753
|
+
suggest = "header_name"
|
41754
|
+
elif key == "headerValue":
|
41755
|
+
suggest = "header_value"
|
41756
|
+
|
41757
|
+
if suggest:
|
41758
|
+
pulumi.log.warn(f"Key '{key}' not found in RegionUrlMapPathMatcherHeaderActionResponseHeadersToAdd. Access the value via the '{suggest}' property getter instead.")
|
41759
|
+
|
41760
|
+
def __getitem__(self, key: str) -> Any:
|
41761
|
+
RegionUrlMapPathMatcherHeaderActionResponseHeadersToAdd.__key_warning(key)
|
41762
|
+
return super().__getitem__(key)
|
41763
|
+
|
41764
|
+
def get(self, key: str, default = None) -> Any:
|
41765
|
+
RegionUrlMapPathMatcherHeaderActionResponseHeadersToAdd.__key_warning(key)
|
41766
|
+
return super().get(key, default)
|
41767
|
+
|
41768
|
+
def __init__(__self__, *,
|
41769
|
+
header_name: Optional[_builtins.str] = None,
|
41770
|
+
header_value: Optional[_builtins.str] = None,
|
41771
|
+
replace: Optional[_builtins.bool] = None):
|
41772
|
+
"""
|
41773
|
+
:param _builtins.str header_name: The name of the header.
|
41774
|
+
:param _builtins.str header_value: The value of the header to add.
|
41775
|
+
:param _builtins.bool replace: If false, headerValue is appended to any values that already exist for the header. If true, headerValue is set for the header, discarding any values that were set for that header.
|
41776
|
+
The default value is false.
|
41777
|
+
"""
|
41778
|
+
if header_name is not None:
|
41779
|
+
pulumi.set(__self__, "header_name", header_name)
|
41780
|
+
if header_value is not None:
|
41781
|
+
pulumi.set(__self__, "header_value", header_value)
|
41782
|
+
if replace is not None:
|
41783
|
+
pulumi.set(__self__, "replace", replace)
|
41784
|
+
|
41785
|
+
@_builtins.property
|
41786
|
+
@pulumi.getter(name="headerName")
|
41787
|
+
def header_name(self) -> Optional[_builtins.str]:
|
41788
|
+
"""
|
41789
|
+
The name of the header.
|
41790
|
+
"""
|
41791
|
+
return pulumi.get(self, "header_name")
|
41792
|
+
|
41793
|
+
@_builtins.property
|
41794
|
+
@pulumi.getter(name="headerValue")
|
41795
|
+
def header_value(self) -> Optional[_builtins.str]:
|
41796
|
+
"""
|
41797
|
+
The value of the header to add.
|
41798
|
+
"""
|
41799
|
+
return pulumi.get(self, "header_value")
|
41800
|
+
|
41801
|
+
@_builtins.property
|
41802
|
+
@pulumi.getter
|
41803
|
+
def replace(self) -> Optional[_builtins.bool]:
|
41804
|
+
"""
|
41805
|
+
If false, headerValue is appended to any values that already exist for the header. If true, headerValue is set for the header, discarding any values that were set for that header.
|
41806
|
+
The default value is false.
|
41807
|
+
"""
|
41808
|
+
return pulumi.get(self, "replace")
|
41809
|
+
|
41810
|
+
|
41094
41811
|
@pulumi.output_type
|
41095
41812
|
class RegionUrlMapPathMatcherPathRule(dict):
|
41096
41813
|
@staticmethod
|
@@ -61000,6 +61717,28 @@ class GetBackendBucketCdnPolicyNegativeCachingPolicyResult(dict):
|
|
61000
61717
|
return pulumi.get(self, "ttl")
|
61001
61718
|
|
61002
61719
|
|
61720
|
+
@pulumi.output_type
|
61721
|
+
class GetBackendBucketParamResult(dict):
|
61722
|
+
def __init__(__self__, *,
|
61723
|
+
resource_manager_tags: Mapping[str, _builtins.str]):
|
61724
|
+
"""
|
61725
|
+
:param Mapping[str, _builtins.str] resource_manager_tags: Resource manager tags to be bound to the backend bucket. Tag keys and values have the
|
61726
|
+
same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id},
|
61727
|
+
and values are in the format tagValues/456.
|
61728
|
+
"""
|
61729
|
+
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
61730
|
+
|
61731
|
+
@_builtins.property
|
61732
|
+
@pulumi.getter(name="resourceManagerTags")
|
61733
|
+
def resource_manager_tags(self) -> Mapping[str, _builtins.str]:
|
61734
|
+
"""
|
61735
|
+
Resource manager tags to be bound to the backend bucket. Tag keys and values have the
|
61736
|
+
same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id},
|
61737
|
+
and values are in the format tagValues/456.
|
61738
|
+
"""
|
61739
|
+
return pulumi.get(self, "resource_manager_tags")
|
61740
|
+
|
61741
|
+
|
61003
61742
|
@pulumi.output_type
|
61004
61743
|
class GetBackendServiceBackendResult(dict):
|
61005
61744
|
def __init__(__self__, *,
|
@@ -62523,6 +63262,28 @@ class GetBackendServiceOutlierDetectionIntervalResult(dict):
|
|
62523
63262
|
return pulumi.get(self, "seconds")
|
62524
63263
|
|
62525
63264
|
|
63265
|
+
@pulumi.output_type
|
63266
|
+
class GetBackendServiceParamResult(dict):
|
63267
|
+
def __init__(__self__, *,
|
63268
|
+
resource_manager_tags: Mapping[str, _builtins.str]):
|
63269
|
+
"""
|
63270
|
+
:param Mapping[str, _builtins.str] resource_manager_tags: Resource manager tags to be bound to the backend service. Tag keys and values have the
|
63271
|
+
same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id},
|
63272
|
+
and values are in the format tagValues/456.
|
63273
|
+
"""
|
63274
|
+
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
63275
|
+
|
63276
|
+
@_builtins.property
|
63277
|
+
@pulumi.getter(name="resourceManagerTags")
|
63278
|
+
def resource_manager_tags(self) -> Mapping[str, _builtins.str]:
|
63279
|
+
"""
|
63280
|
+
Resource manager tags to be bound to the backend service. Tag keys and values have the
|
63281
|
+
same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id},
|
63282
|
+
and values are in the format tagValues/456.
|
63283
|
+
"""
|
63284
|
+
return pulumi.get(self, "resource_manager_tags")
|
63285
|
+
|
63286
|
+
|
62526
63287
|
@pulumi.output_type
|
62527
63288
|
class GetBackendServiceSecuritySettingResult(dict):
|
62528
63289
|
def __init__(__self__, *,
|
@@ -70694,6 +71455,28 @@ class GetRegionBackendServiceOutlierDetectionIntervalResult(dict):
|
|
70694
71455
|
return pulumi.get(self, "seconds")
|
70695
71456
|
|
70696
71457
|
|
71458
|
+
@pulumi.output_type
|
71459
|
+
class GetRegionBackendServiceParamResult(dict):
|
71460
|
+
def __init__(__self__, *,
|
71461
|
+
resource_manager_tags: Mapping[str, _builtins.str]):
|
71462
|
+
"""
|
71463
|
+
:param Mapping[str, _builtins.str] resource_manager_tags: Resource manager tags to be bound to the region backend service. Tag keys and values have the
|
71464
|
+
same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id},
|
71465
|
+
and values are in the format tagValues/456.
|
71466
|
+
"""
|
71467
|
+
pulumi.set(__self__, "resource_manager_tags", resource_manager_tags)
|
71468
|
+
|
71469
|
+
@_builtins.property
|
71470
|
+
@pulumi.getter(name="resourceManagerTags")
|
71471
|
+
def resource_manager_tags(self) -> Mapping[str, _builtins.str]:
|
71472
|
+
"""
|
71473
|
+
Resource manager tags to be bound to the region backend service. Tag keys and values have the
|
71474
|
+
same definition as resource manager tags. Keys must be in the format tagKeys/{tag_key_id},
|
71475
|
+
and values are in the format tagValues/456.
|
71476
|
+
"""
|
71477
|
+
return pulumi.get(self, "resource_manager_tags")
|
71478
|
+
|
71479
|
+
|
70697
71480
|
@pulumi.output_type
|
70698
71481
|
class GetRegionBackendServiceStrongSessionAffinityCookyResult(dict):
|
70699
71482
|
def __init__(__self__, *,
|