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
pulumi_gcp/compute/outputs.py
CHANGED
@@ -440,6 +440,8 @@ __all__ = [
|
|
440
440
|
'SecurityPolicyRuleMatch',
|
441
441
|
'SecurityPolicyRuleMatchConfig',
|
442
442
|
'SecurityPolicyRuleMatchExpr',
|
443
|
+
'SecurityPolicyRuleMatchExprOptions',
|
444
|
+
'SecurityPolicyRuleMatchExprOptionsRecaptchaOptions',
|
443
445
|
'SecurityPolicyRulePreconfiguredWafConfig',
|
444
446
|
'SecurityPolicyRulePreconfiguredWafConfigExclusion',
|
445
447
|
'SecurityPolicyRulePreconfiguredWafConfigExclusionRequestCooky',
|
@@ -728,6 +730,8 @@ __all__ = [
|
|
728
730
|
'GetSecurityPolicyRuleMatchResult',
|
729
731
|
'GetSecurityPolicyRuleMatchConfigResult',
|
730
732
|
'GetSecurityPolicyRuleMatchExprResult',
|
733
|
+
'GetSecurityPolicyRuleMatchExprOptionResult',
|
734
|
+
'GetSecurityPolicyRuleMatchExprOptionRecaptchaOptionResult',
|
731
735
|
'GetSecurityPolicyRulePreconfiguredWafConfigResult',
|
732
736
|
'GetSecurityPolicyRulePreconfiguredWafConfigExclusionResult',
|
733
737
|
'GetSecurityPolicyRulePreconfiguredWafConfigExclusionRequestCookyResult',
|
@@ -1965,6 +1969,7 @@ class BackendServiceBackend(dict):
|
|
1965
1969
|
and CONNECTION (for TCP/SSL).
|
1966
1970
|
See the [Backend Services Overview](https://cloud.google.com/load-balancing/docs/backend-service#balancing-mode)
|
1967
1971
|
for an explanation of load balancing modes.
|
1972
|
+
From version 6.0.0 default value will be UTILIZATION to match default GCP value.
|
1968
1973
|
Default value is `UTILIZATION`.
|
1969
1974
|
Possible values are: `UTILIZATION`, `RATE`, `CONNECTION`.
|
1970
1975
|
:param float capacity_scaler: A multiplier applied to the group's maximum servicing capacity
|
@@ -2061,6 +2066,7 @@ class BackendServiceBackend(dict):
|
|
2061
2066
|
and CONNECTION (for TCP/SSL).
|
2062
2067
|
See the [Backend Services Overview](https://cloud.google.com/load-balancing/docs/backend-service#balancing-mode)
|
2063
2068
|
for an explanation of load balancing modes.
|
2069
|
+
From version 6.0.0 default value will be UTILIZATION to match default GCP value.
|
2064
2070
|
Default value is `UTILIZATION`.
|
2065
2071
|
Possible values are: `UTILIZATION`, `RATE`, `CONNECTION`.
|
2066
2072
|
"""
|
@@ -3803,7 +3809,6 @@ class DiskGuestOsFeature(dict):
|
|
3803
3809
|
type: str):
|
3804
3810
|
"""
|
3805
3811
|
:param str type: The type of supported feature. Read [Enabling guest operating system features](https://cloud.google.com/compute/docs/images/create-delete-deprecate-private-images#guest-os-features) to see a list of available options.
|
3806
|
-
Possible values are: `MULTI_IP_SUBNET`, `SECURE_BOOT`, `SEV_CAPABLE`, `UEFI_COMPATIBLE`, `VIRTIO_SCSI_MULTIQUEUE`, `WINDOWS`, `GVNIC`, `SEV_LIVE_MIGRATABLE`, `SEV_SNP_CAPABLE`, `SUSPEND_RESUME_COMPATIBLE`, `TDX_CAPABLE`, `SEV_LIVE_MIGRATABLE_V2`.
|
3807
3812
|
"""
|
3808
3813
|
pulumi.set(__self__, "type", type)
|
3809
3814
|
|
@@ -3812,7 +3817,6 @@ class DiskGuestOsFeature(dict):
|
|
3812
3817
|
def type(self) -> str:
|
3813
3818
|
"""
|
3814
3819
|
The type of supported feature. Read [Enabling guest operating system features](https://cloud.google.com/compute/docs/images/create-delete-deprecate-private-images#guest-os-features) to see a list of available options.
|
3815
|
-
Possible values are: `MULTI_IP_SUBNET`, `SECURE_BOOT`, `SEV_CAPABLE`, `UEFI_COMPATIBLE`, `VIRTIO_SCSI_MULTIQUEUE`, `WINDOWS`, `GVNIC`, `SEV_LIVE_MIGRATABLE`, `SEV_SNP_CAPABLE`, `SUSPEND_RESUME_COMPATIBLE`, `TDX_CAPABLE`, `SEV_LIVE_MIGRATABLE_V2`.
|
3816
3820
|
"""
|
3817
3821
|
return pulumi.get(self, "type")
|
3818
3822
|
|
@@ -16549,6 +16553,7 @@ class RegionBackendServiceBackend(dict):
|
|
16549
16553
|
:param str balancing_mode: Specifies the balancing mode for this backend.
|
16550
16554
|
See the [Backend Services Overview](https://cloud.google.com/load-balancing/docs/backend-service#balancing-mode)
|
16551
16555
|
for an explanation of load balancing modes.
|
16556
|
+
From version 6.0.0 default value will be UTILIZATION to match default GCP value.
|
16552
16557
|
Default value is `CONNECTION`.
|
16553
16558
|
Possible values are: `UTILIZATION`, `RATE`, `CONNECTION`.
|
16554
16559
|
:param float capacity_scaler: A multiplier applied to the group's maximum servicing capacity
|
@@ -16657,6 +16662,7 @@ class RegionBackendServiceBackend(dict):
|
|
16657
16662
|
Specifies the balancing mode for this backend.
|
16658
16663
|
See the [Backend Services Overview](https://cloud.google.com/load-balancing/docs/backend-service#balancing-mode)
|
16659
16664
|
for an explanation of load balancing modes.
|
16665
|
+
From version 6.0.0 default value will be UTILIZATION to match default GCP value.
|
16660
16666
|
Default value is `CONNECTION`.
|
16661
16667
|
Possible values are: `UTILIZATION`, `RATE`, `CONNECTION`.
|
16662
16668
|
"""
|
@@ -31879,7 +31885,9 @@ class SecurityPolicyRuleMatch(dict):
|
|
31879
31885
|
@staticmethod
|
31880
31886
|
def __key_warning(key: str):
|
31881
31887
|
suggest = None
|
31882
|
-
if key == "
|
31888
|
+
if key == "exprOptions":
|
31889
|
+
suggest = "expr_options"
|
31890
|
+
elif key == "versionedExpr":
|
31883
31891
|
suggest = "versioned_expr"
|
31884
31892
|
|
31885
31893
|
if suggest:
|
@@ -31896,6 +31904,7 @@ class SecurityPolicyRuleMatch(dict):
|
|
31896
31904
|
def __init__(__self__, *,
|
31897
31905
|
config: Optional['outputs.SecurityPolicyRuleMatchConfig'] = None,
|
31898
31906
|
expr: Optional['outputs.SecurityPolicyRuleMatchExpr'] = None,
|
31907
|
+
expr_options: Optional['outputs.SecurityPolicyRuleMatchExprOptions'] = None,
|
31899
31908
|
versioned_expr: Optional[str] = None):
|
31900
31909
|
"""
|
31901
31910
|
:param 'SecurityPolicyRuleMatchConfigArgs' config: The configuration options available when specifying versionedExpr.
|
@@ -31903,6 +31912,8 @@ class SecurityPolicyRuleMatch(dict):
|
|
31903
31912
|
Structure is documented below.
|
31904
31913
|
:param 'SecurityPolicyRuleMatchExprArgs' expr: User defined CEVAL expression. A CEVAL expression is used to specify match criteria such as origin.ip, source.region_code and contents in the request header.
|
31905
31914
|
Structure is documented below.
|
31915
|
+
:param 'SecurityPolicyRuleMatchExprOptionsArgs' expr_options: The configuration options available when specifying a user defined CEVAL expression (i.e., 'expr').
|
31916
|
+
Structure is documented below.
|
31906
31917
|
:param str versioned_expr: Preconfigured versioned expression. If this field is specified, config must also be specified.
|
31907
31918
|
Available preconfigured expressions along with their requirements are: SRC_IPS_V1 - must specify the corresponding srcIpRange field in config.
|
31908
31919
|
Possible values are: `SRC_IPS_V1`.
|
@@ -31911,6 +31922,8 @@ class SecurityPolicyRuleMatch(dict):
|
|
31911
31922
|
pulumi.set(__self__, "config", config)
|
31912
31923
|
if expr is not None:
|
31913
31924
|
pulumi.set(__self__, "expr", expr)
|
31925
|
+
if expr_options is not None:
|
31926
|
+
pulumi.set(__self__, "expr_options", expr_options)
|
31914
31927
|
if versioned_expr is not None:
|
31915
31928
|
pulumi.set(__self__, "versioned_expr", versioned_expr)
|
31916
31929
|
|
@@ -31933,6 +31946,15 @@ class SecurityPolicyRuleMatch(dict):
|
|
31933
31946
|
"""
|
31934
31947
|
return pulumi.get(self, "expr")
|
31935
31948
|
|
31949
|
+
@property
|
31950
|
+
@pulumi.getter(name="exprOptions")
|
31951
|
+
def expr_options(self) -> Optional['outputs.SecurityPolicyRuleMatchExprOptions']:
|
31952
|
+
"""
|
31953
|
+
The configuration options available when specifying a user defined CEVAL expression (i.e., 'expr').
|
31954
|
+
Structure is documented below.
|
31955
|
+
"""
|
31956
|
+
return pulumi.get(self, "expr_options")
|
31957
|
+
|
31936
31958
|
@property
|
31937
31959
|
@pulumi.getter(name="versionedExpr")
|
31938
31960
|
def versioned_expr(self) -> Optional[str]:
|
@@ -31998,6 +32020,93 @@ class SecurityPolicyRuleMatchExpr(dict):
|
|
31998
32020
|
return pulumi.get(self, "expression")
|
31999
32021
|
|
32000
32022
|
|
32023
|
+
@pulumi.output_type
|
32024
|
+
class SecurityPolicyRuleMatchExprOptions(dict):
|
32025
|
+
@staticmethod
|
32026
|
+
def __key_warning(key: str):
|
32027
|
+
suggest = None
|
32028
|
+
if key == "recaptchaOptions":
|
32029
|
+
suggest = "recaptcha_options"
|
32030
|
+
|
32031
|
+
if suggest:
|
32032
|
+
pulumi.log.warn(f"Key '{key}' not found in SecurityPolicyRuleMatchExprOptions. Access the value via the '{suggest}' property getter instead.")
|
32033
|
+
|
32034
|
+
def __getitem__(self, key: str) -> Any:
|
32035
|
+
SecurityPolicyRuleMatchExprOptions.__key_warning(key)
|
32036
|
+
return super().__getitem__(key)
|
32037
|
+
|
32038
|
+
def get(self, key: str, default = None) -> Any:
|
32039
|
+
SecurityPolicyRuleMatchExprOptions.__key_warning(key)
|
32040
|
+
return super().get(key, default)
|
32041
|
+
|
32042
|
+
def __init__(__self__, *,
|
32043
|
+
recaptcha_options: 'outputs.SecurityPolicyRuleMatchExprOptionsRecaptchaOptions'):
|
32044
|
+
"""
|
32045
|
+
:param 'SecurityPolicyRuleMatchExprOptionsRecaptchaOptionsArgs' recaptcha_options: reCAPTCHA configuration options to be applied for the rule. If the rule does not evaluate reCAPTCHA tokens, this field has no effect.
|
32046
|
+
Structure is documented below.
|
32047
|
+
"""
|
32048
|
+
pulumi.set(__self__, "recaptcha_options", recaptcha_options)
|
32049
|
+
|
32050
|
+
@property
|
32051
|
+
@pulumi.getter(name="recaptchaOptions")
|
32052
|
+
def recaptcha_options(self) -> 'outputs.SecurityPolicyRuleMatchExprOptionsRecaptchaOptions':
|
32053
|
+
"""
|
32054
|
+
reCAPTCHA configuration options to be applied for the rule. If the rule does not evaluate reCAPTCHA tokens, this field has no effect.
|
32055
|
+
Structure is documented below.
|
32056
|
+
"""
|
32057
|
+
return pulumi.get(self, "recaptcha_options")
|
32058
|
+
|
32059
|
+
|
32060
|
+
@pulumi.output_type
|
32061
|
+
class SecurityPolicyRuleMatchExprOptionsRecaptchaOptions(dict):
|
32062
|
+
@staticmethod
|
32063
|
+
def __key_warning(key: str):
|
32064
|
+
suggest = None
|
32065
|
+
if key == "actionTokenSiteKeys":
|
32066
|
+
suggest = "action_token_site_keys"
|
32067
|
+
elif key == "sessionTokenSiteKeys":
|
32068
|
+
suggest = "session_token_site_keys"
|
32069
|
+
|
32070
|
+
if suggest:
|
32071
|
+
pulumi.log.warn(f"Key '{key}' not found in SecurityPolicyRuleMatchExprOptionsRecaptchaOptions. Access the value via the '{suggest}' property getter instead.")
|
32072
|
+
|
32073
|
+
def __getitem__(self, key: str) -> Any:
|
32074
|
+
SecurityPolicyRuleMatchExprOptionsRecaptchaOptions.__key_warning(key)
|
32075
|
+
return super().__getitem__(key)
|
32076
|
+
|
32077
|
+
def get(self, key: str, default = None) -> Any:
|
32078
|
+
SecurityPolicyRuleMatchExprOptionsRecaptchaOptions.__key_warning(key)
|
32079
|
+
return super().get(key, default)
|
32080
|
+
|
32081
|
+
def __init__(__self__, *,
|
32082
|
+
action_token_site_keys: Optional[Sequence[str]] = None,
|
32083
|
+
session_token_site_keys: Optional[Sequence[str]] = None):
|
32084
|
+
"""
|
32085
|
+
:param Sequence[str] action_token_site_keys: A list of site keys to be used during the validation of reCAPTCHA action-tokens. The provided site keys need to be created from reCAPTCHA API under the same project where the security policy is created.
|
32086
|
+
:param Sequence[str] session_token_site_keys: A list of site keys to be used during the validation of reCAPTCHA session-tokens. The provided site keys need to be created from reCAPTCHA API under the same project where the security policy is created.
|
32087
|
+
"""
|
32088
|
+
if action_token_site_keys is not None:
|
32089
|
+
pulumi.set(__self__, "action_token_site_keys", action_token_site_keys)
|
32090
|
+
if session_token_site_keys is not None:
|
32091
|
+
pulumi.set(__self__, "session_token_site_keys", session_token_site_keys)
|
32092
|
+
|
32093
|
+
@property
|
32094
|
+
@pulumi.getter(name="actionTokenSiteKeys")
|
32095
|
+
def action_token_site_keys(self) -> Optional[Sequence[str]]:
|
32096
|
+
"""
|
32097
|
+
A list of site keys to be used during the validation of reCAPTCHA action-tokens. The provided site keys need to be created from reCAPTCHA API under the same project where the security policy is created.
|
32098
|
+
"""
|
32099
|
+
return pulumi.get(self, "action_token_site_keys")
|
32100
|
+
|
32101
|
+
@property
|
32102
|
+
@pulumi.getter(name="sessionTokenSiteKeys")
|
32103
|
+
def session_token_site_keys(self) -> Optional[Sequence[str]]:
|
32104
|
+
"""
|
32105
|
+
A list of site keys to be used during the validation of reCAPTCHA session-tokens. The provided site keys need to be created from reCAPTCHA API under the same project where the security policy is created.
|
32106
|
+
"""
|
32107
|
+
return pulumi.get(self, "session_token_site_keys")
|
32108
|
+
|
32109
|
+
|
32001
32110
|
@pulumi.output_type
|
32002
32111
|
class SecurityPolicyRulePreconfiguredWafConfig(dict):
|
32003
32112
|
def __init__(__self__, *,
|
@@ -40426,7 +40535,9 @@ class GetBackendServiceBackendResult(dict):
|
|
40426
40535
|
and CONNECTION (for TCP/SSL).
|
40427
40536
|
|
40428
40537
|
See the [Backend Services Overview](https://cloud.google.com/load-balancing/docs/backend-service#balancing-mode)
|
40429
|
-
for an explanation of load balancing modes.
|
40538
|
+
for an explanation of load balancing modes.
|
40539
|
+
|
40540
|
+
From version 6.0.0 default value will be UTILIZATION to match default GCP value. Default value: "UTILIZATION" Possible values: ["UTILIZATION", "RATE", "CONNECTION"]
|
40430
40541
|
:param float capacity_scaler: A multiplier applied to the group's maximum servicing capacity
|
40431
40542
|
(based on UTILIZATION, RATE or CONNECTION).
|
40432
40543
|
|
@@ -40512,7 +40623,9 @@ class GetBackendServiceBackendResult(dict):
|
|
40512
40623
|
and CONNECTION (for TCP/SSL).
|
40513
40624
|
|
40514
40625
|
See the [Backend Services Overview](https://cloud.google.com/load-balancing/docs/backend-service#balancing-mode)
|
40515
|
-
for an explanation of load balancing modes.
|
40626
|
+
for an explanation of load balancing modes.
|
40627
|
+
|
40628
|
+
From version 6.0.0 default value will be UTILIZATION to match default GCP value. Default value: "UTILIZATION" Possible values: ["UTILIZATION", "RATE", "CONNECTION"]
|
40516
40629
|
"""
|
40517
40630
|
return pulumi.get(self, "balancing_mode")
|
40518
40631
|
|
@@ -50457,14 +50570,17 @@ class GetSecurityPolicyRuleHeaderActionRequestHeadersToAddResult(dict):
|
|
50457
50570
|
class GetSecurityPolicyRuleMatchResult(dict):
|
50458
50571
|
def __init__(__self__, *,
|
50459
50572
|
configs: Sequence['outputs.GetSecurityPolicyRuleMatchConfigResult'],
|
50573
|
+
expr_options: Sequence['outputs.GetSecurityPolicyRuleMatchExprOptionResult'],
|
50460
50574
|
exprs: Sequence['outputs.GetSecurityPolicyRuleMatchExprResult'],
|
50461
50575
|
versioned_expr: str):
|
50462
50576
|
"""
|
50463
50577
|
:param Sequence['GetSecurityPolicyRuleMatchConfigArgs'] configs: The configuration options available when specifying versioned_expr. This field must be specified if versioned_expr is specified and cannot be specified if versioned_expr is not specified.
|
50578
|
+
:param Sequence['GetSecurityPolicyRuleMatchExprOptionArgs'] expr_options: The configuration options available when specifying a user defined CEVAL expression (i.e., 'expr').
|
50464
50579
|
:param Sequence['GetSecurityPolicyRuleMatchExprArgs'] exprs: User defined CEVAL expression. A CEVAL expression is used to specify match criteria such as origin.ip, source.region_code and contents in the request header.
|
50465
50580
|
:param str versioned_expr: Predefined rule expression. If this field is specified, config must also be specified. Available options: SRC_IPS_V1: Must specify the corresponding src_ip_ranges field in config.
|
50466
50581
|
"""
|
50467
50582
|
pulumi.set(__self__, "configs", configs)
|
50583
|
+
pulumi.set(__self__, "expr_options", expr_options)
|
50468
50584
|
pulumi.set(__self__, "exprs", exprs)
|
50469
50585
|
pulumi.set(__self__, "versioned_expr", versioned_expr)
|
50470
50586
|
|
@@ -50476,6 +50592,14 @@ class GetSecurityPolicyRuleMatchResult(dict):
|
|
50476
50592
|
"""
|
50477
50593
|
return pulumi.get(self, "configs")
|
50478
50594
|
|
50595
|
+
@property
|
50596
|
+
@pulumi.getter(name="exprOptions")
|
50597
|
+
def expr_options(self) -> Sequence['outputs.GetSecurityPolicyRuleMatchExprOptionResult']:
|
50598
|
+
"""
|
50599
|
+
The configuration options available when specifying a user defined CEVAL expression (i.e., 'expr').
|
50600
|
+
"""
|
50601
|
+
return pulumi.get(self, "expr_options")
|
50602
|
+
|
50479
50603
|
@property
|
50480
50604
|
@pulumi.getter
|
50481
50605
|
def exprs(self) -> Sequence['outputs.GetSecurityPolicyRuleMatchExprResult']:
|
@@ -50529,6 +50653,53 @@ class GetSecurityPolicyRuleMatchExprResult(dict):
|
|
50529
50653
|
return pulumi.get(self, "expression")
|
50530
50654
|
|
50531
50655
|
|
50656
|
+
@pulumi.output_type
|
50657
|
+
class GetSecurityPolicyRuleMatchExprOptionResult(dict):
|
50658
|
+
def __init__(__self__, *,
|
50659
|
+
recaptcha_options: Sequence['outputs.GetSecurityPolicyRuleMatchExprOptionRecaptchaOptionResult']):
|
50660
|
+
"""
|
50661
|
+
:param Sequence['GetSecurityPolicyRuleMatchExprOptionRecaptchaOptionArgs'] recaptcha_options: reCAPTCHA configuration options to be applied for the rule. If the rule does not evaluate reCAPTCHA tokens, this field has no effect.
|
50662
|
+
"""
|
50663
|
+
pulumi.set(__self__, "recaptcha_options", recaptcha_options)
|
50664
|
+
|
50665
|
+
@property
|
50666
|
+
@pulumi.getter(name="recaptchaOptions")
|
50667
|
+
def recaptcha_options(self) -> Sequence['outputs.GetSecurityPolicyRuleMatchExprOptionRecaptchaOptionResult']:
|
50668
|
+
"""
|
50669
|
+
reCAPTCHA configuration options to be applied for the rule. If the rule does not evaluate reCAPTCHA tokens, this field has no effect.
|
50670
|
+
"""
|
50671
|
+
return pulumi.get(self, "recaptcha_options")
|
50672
|
+
|
50673
|
+
|
50674
|
+
@pulumi.output_type
|
50675
|
+
class GetSecurityPolicyRuleMatchExprOptionRecaptchaOptionResult(dict):
|
50676
|
+
def __init__(__self__, *,
|
50677
|
+
action_token_site_keys: Sequence[str],
|
50678
|
+
session_token_site_keys: Sequence[str]):
|
50679
|
+
"""
|
50680
|
+
:param Sequence[str] action_token_site_keys: A list of site keys to be used during the validation of reCAPTCHA action-tokens. The provided site keys need to be created from reCAPTCHA API under the same project where the security policy is created
|
50681
|
+
:param Sequence[str] session_token_site_keys: A list of site keys to be used during the validation of reCAPTCHA session-tokens. The provided site keys need to be created from reCAPTCHA API under the same project where the security policy is created.
|
50682
|
+
"""
|
50683
|
+
pulumi.set(__self__, "action_token_site_keys", action_token_site_keys)
|
50684
|
+
pulumi.set(__self__, "session_token_site_keys", session_token_site_keys)
|
50685
|
+
|
50686
|
+
@property
|
50687
|
+
@pulumi.getter(name="actionTokenSiteKeys")
|
50688
|
+
def action_token_site_keys(self) -> Sequence[str]:
|
50689
|
+
"""
|
50690
|
+
A list of site keys to be used during the validation of reCAPTCHA action-tokens. The provided site keys need to be created from reCAPTCHA API under the same project where the security policy is created
|
50691
|
+
"""
|
50692
|
+
return pulumi.get(self, "action_token_site_keys")
|
50693
|
+
|
50694
|
+
@property
|
50695
|
+
@pulumi.getter(name="sessionTokenSiteKeys")
|
50696
|
+
def session_token_site_keys(self) -> Sequence[str]:
|
50697
|
+
"""
|
50698
|
+
A list of site keys to be used during the validation of reCAPTCHA session-tokens. The provided site keys need to be created from reCAPTCHA API under the same project where the security policy is created.
|
50699
|
+
"""
|
50700
|
+
return pulumi.get(self, "session_token_site_keys")
|
50701
|
+
|
50702
|
+
|
50532
50703
|
@pulumi.output_type
|
50533
50704
|
class GetSecurityPolicyRulePreconfiguredWafConfigResult(dict):
|
50534
50705
|
def __init__(__self__, *,
|
@@ -413,7 +413,7 @@ class PacketMirroring(pulumi.CustomResource):
|
|
413
413
|
network=default.id,
|
414
414
|
subnetwork=default_subnetwork.id,
|
415
415
|
network_tier="PREMIUM",
|
416
|
-
opts=pulumi.ResourceOptions(depends_on=[default_subnetwork]))
|
416
|
+
opts = pulumi.ResourceOptions(depends_on=[default_subnetwork]))
|
417
417
|
foobar = gcp.compute.PacketMirroring("foobar",
|
418
418
|
name="my-mirroring",
|
419
419
|
description="bar",
|
@@ -548,7 +548,7 @@ class PacketMirroring(pulumi.CustomResource):
|
|
548
548
|
network=default.id,
|
549
549
|
subnetwork=default_subnetwork.id,
|
550
550
|
network_tier="PREMIUM",
|
551
|
-
opts=pulumi.ResourceOptions(depends_on=[default_subnetwork]))
|
551
|
+
opts = pulumi.ResourceOptions(depends_on=[default_subnetwork]))
|
552
552
|
foobar = gcp.compute.PacketMirroring("foobar",
|
553
553
|
name="my-mirroring",
|
554
554
|
description="bar",
|
@@ -154,7 +154,7 @@ class ProjectCloudArmorTier(pulumi.CustomResource):
|
|
154
154
|
cloud_armor_tier_config = gcp.compute.ProjectCloudArmorTier("cloud_armor_tier_config",
|
155
155
|
project=project.project_id,
|
156
156
|
cloud_armor_tier="CA_STANDARD",
|
157
|
-
opts=pulumi.ResourceOptions(depends_on=[compute]))
|
157
|
+
opts = pulumi.ResourceOptions(depends_on=[compute]))
|
158
158
|
```
|
159
159
|
|
160
160
|
## Import
|
@@ -227,7 +227,7 @@ class ProjectCloudArmorTier(pulumi.CustomResource):
|
|
227
227
|
cloud_armor_tier_config = gcp.compute.ProjectCloudArmorTier("cloud_armor_tier_config",
|
228
228
|
project=project.project_id,
|
229
229
|
cloud_armor_tier="CA_STANDARD",
|
230
|
-
opts=pulumi.ResourceOptions(depends_on=[compute]))
|
230
|
+
opts = pulumi.ResourceOptions(depends_on=[compute]))
|
231
231
|
```
|
232
232
|
|
233
233
|
## Import
|
@@ -59,6 +59,7 @@ class RegionBackendServiceArgs:
|
|
59
59
|
Structure is documented below.
|
60
60
|
:param pulumi.Input[int] connection_draining_timeout_sec: Time for which instance will be drained (not accept new
|
61
61
|
connections, but still work to finish started).
|
62
|
+
From version 6.0.0 ConnectionDrainingTimeoutSec default value will be 300 to match default GCP value.
|
62
63
|
:param pulumi.Input['RegionBackendServiceConnectionTrackingPolicyArgs'] connection_tracking_policy: Connection Tracking configuration for this BackendService.
|
63
64
|
This is available only for Layer 4 Internal Load Balancing and
|
64
65
|
Network Load Balancing.
|
@@ -149,10 +150,6 @@ class RegionBackendServiceArgs:
|
|
149
150
|
- - -
|
150
151
|
:param pulumi.Input[str] network: The URL of the network to which this backend service belongs.
|
151
152
|
This field can only be specified when the load balancing scheme is set to INTERNAL.
|
152
|
-
:param pulumi.Input['RegionBackendServiceOutlierDetectionArgs'] outlier_detection: Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
153
|
-
This field is applicable only when the `load_balancing_scheme` is set
|
154
|
-
to INTERNAL_MANAGED and the `protocol` is set to HTTP, HTTPS, or HTTP2.
|
155
|
-
Structure is documented below.
|
156
153
|
:param pulumi.Input[str] port_name: A named port on a backend instance group representing the port for
|
157
154
|
communication to the backend VMs in that group. Required when the
|
158
155
|
loadBalancingScheme is EXTERNAL, EXTERNAL_MANAGED, INTERNAL_MANAGED, or INTERNAL_SELF_MANAGED
|
@@ -174,8 +171,10 @@ class RegionBackendServiceArgs:
|
|
174
171
|
Possible values are: `NONE`, `CLIENT_IP`, `CLIENT_IP_PORT_PROTO`, `CLIENT_IP_PROTO`, `GENERATED_COOKIE`, `HEADER_FIELD`, `HTTP_COOKIE`, `CLIENT_IP_NO_DESTINATION`.
|
175
172
|
:param pulumi.Input['RegionBackendServiceSubsettingArgs'] subsetting: Subsetting configuration for this BackendService. Currently this is applicable only for Internal TCP/UDP load balancing and Internal HTTP(S) load balancing.
|
176
173
|
Structure is documented below.
|
177
|
-
:param pulumi.Input[int] timeout_sec:
|
178
|
-
|
174
|
+
:param pulumi.Input[int] timeout_sec: The backend service timeout has a different meaning depending on the type of load balancer.
|
175
|
+
For more information see, [Backend service settings](https://cloud.google.com/compute/docs/reference/rest/v1/backendServices).
|
176
|
+
The default is 30 seconds.
|
177
|
+
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
179
178
|
"""
|
180
179
|
if affinity_cookie_ttl_sec is not None:
|
181
180
|
pulumi.set(__self__, "affinity_cookie_ttl_sec", affinity_cookie_ttl_sec)
|
@@ -293,6 +292,7 @@ class RegionBackendServiceArgs:
|
|
293
292
|
"""
|
294
293
|
Time for which instance will be drained (not accept new
|
295
294
|
connections, but still work to finish started).
|
295
|
+
From version 6.0.0 ConnectionDrainingTimeoutSec default value will be 300 to match default GCP value.
|
296
296
|
"""
|
297
297
|
return pulumi.get(self, "connection_draining_timeout_sec")
|
298
298
|
|
@@ -525,12 +525,6 @@ class RegionBackendServiceArgs:
|
|
525
525
|
@property
|
526
526
|
@pulumi.getter(name="outlierDetection")
|
527
527
|
def outlier_detection(self) -> Optional[pulumi.Input['RegionBackendServiceOutlierDetectionArgs']]:
|
528
|
-
"""
|
529
|
-
Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
530
|
-
This field is applicable only when the `load_balancing_scheme` is set
|
531
|
-
to INTERNAL_MANAGED and the `protocol` is set to HTTP, HTTPS, or HTTP2.
|
532
|
-
Structure is documented below.
|
533
|
-
"""
|
534
528
|
return pulumi.get(self, "outlier_detection")
|
535
529
|
|
536
530
|
@outlier_detection.setter
|
@@ -639,8 +633,10 @@ class RegionBackendServiceArgs:
|
|
639
633
|
@pulumi.getter(name="timeoutSec")
|
640
634
|
def timeout_sec(self) -> Optional[pulumi.Input[int]]:
|
641
635
|
"""
|
642
|
-
|
643
|
-
|
636
|
+
The backend service timeout has a different meaning depending on the type of load balancer.
|
637
|
+
For more information see, [Backend service settings](https://cloud.google.com/compute/docs/reference/rest/v1/backendServices).
|
638
|
+
The default is 30 seconds.
|
639
|
+
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
644
640
|
"""
|
645
641
|
return pulumi.get(self, "timeout_sec")
|
646
642
|
|
@@ -699,6 +695,7 @@ class _RegionBackendServiceState:
|
|
699
695
|
Structure is documented below.
|
700
696
|
:param pulumi.Input[int] connection_draining_timeout_sec: Time for which instance will be drained (not accept new
|
701
697
|
connections, but still work to finish started).
|
698
|
+
From version 6.0.0 ConnectionDrainingTimeoutSec default value will be 300 to match default GCP value.
|
702
699
|
:param pulumi.Input['RegionBackendServiceConnectionTrackingPolicyArgs'] connection_tracking_policy: Connection Tracking configuration for this BackendService.
|
703
700
|
This is available only for Layer 4 Internal Load Balancing and
|
704
701
|
Network Load Balancing.
|
@@ -793,10 +790,6 @@ class _RegionBackendServiceState:
|
|
793
790
|
- - -
|
794
791
|
:param pulumi.Input[str] network: The URL of the network to which this backend service belongs.
|
795
792
|
This field can only be specified when the load balancing scheme is set to INTERNAL.
|
796
|
-
:param pulumi.Input['RegionBackendServiceOutlierDetectionArgs'] outlier_detection: Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
797
|
-
This field is applicable only when the `load_balancing_scheme` is set
|
798
|
-
to INTERNAL_MANAGED and the `protocol` is set to HTTP, HTTPS, or HTTP2.
|
799
|
-
Structure is documented below.
|
800
793
|
:param pulumi.Input[str] port_name: A named port on a backend instance group representing the port for
|
801
794
|
communication to the backend VMs in that group. Required when the
|
802
795
|
loadBalancingScheme is EXTERNAL, EXTERNAL_MANAGED, INTERNAL_MANAGED, or INTERNAL_SELF_MANAGED
|
@@ -819,8 +812,10 @@ class _RegionBackendServiceState:
|
|
819
812
|
Possible values are: `NONE`, `CLIENT_IP`, `CLIENT_IP_PORT_PROTO`, `CLIENT_IP_PROTO`, `GENERATED_COOKIE`, `HEADER_FIELD`, `HTTP_COOKIE`, `CLIENT_IP_NO_DESTINATION`.
|
820
813
|
:param pulumi.Input['RegionBackendServiceSubsettingArgs'] subsetting: Subsetting configuration for this BackendService. Currently this is applicable only for Internal TCP/UDP load balancing and Internal HTTP(S) load balancing.
|
821
814
|
Structure is documented below.
|
822
|
-
:param pulumi.Input[int] timeout_sec:
|
823
|
-
|
815
|
+
:param pulumi.Input[int] timeout_sec: The backend service timeout has a different meaning depending on the type of load balancer.
|
816
|
+
For more information see, [Backend service settings](https://cloud.google.com/compute/docs/reference/rest/v1/backendServices).
|
817
|
+
The default is 30 seconds.
|
818
|
+
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
824
819
|
"""
|
825
820
|
if affinity_cookie_ttl_sec is not None:
|
826
821
|
pulumi.set(__self__, "affinity_cookie_ttl_sec", affinity_cookie_ttl_sec)
|
@@ -946,6 +941,7 @@ class _RegionBackendServiceState:
|
|
946
941
|
"""
|
947
942
|
Time for which instance will be drained (not accept new
|
948
943
|
connections, but still work to finish started).
|
944
|
+
From version 6.0.0 ConnectionDrainingTimeoutSec default value will be 300 to match default GCP value.
|
949
945
|
"""
|
950
946
|
return pulumi.get(self, "connection_draining_timeout_sec")
|
951
947
|
|
@@ -1215,12 +1211,6 @@ class _RegionBackendServiceState:
|
|
1215
1211
|
@property
|
1216
1212
|
@pulumi.getter(name="outlierDetection")
|
1217
1213
|
def outlier_detection(self) -> Optional[pulumi.Input['RegionBackendServiceOutlierDetectionArgs']]:
|
1218
|
-
"""
|
1219
|
-
Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
1220
|
-
This field is applicable only when the `load_balancing_scheme` is set
|
1221
|
-
to INTERNAL_MANAGED and the `protocol` is set to HTTP, HTTPS, or HTTP2.
|
1222
|
-
Structure is documented below.
|
1223
|
-
"""
|
1224
1214
|
return pulumi.get(self, "outlier_detection")
|
1225
1215
|
|
1226
1216
|
@outlier_detection.setter
|
@@ -1341,8 +1331,10 @@ class _RegionBackendServiceState:
|
|
1341
1331
|
@pulumi.getter(name="timeoutSec")
|
1342
1332
|
def timeout_sec(self) -> Optional[pulumi.Input[int]]:
|
1343
1333
|
"""
|
1344
|
-
|
1345
|
-
|
1334
|
+
The backend service timeout has a different meaning depending on the type of load balancer.
|
1335
|
+
For more information see, [Backend service settings](https://cloud.google.com/compute/docs/reference/rest/v1/backendServices).
|
1336
|
+
The default is 30 seconds.
|
1337
|
+
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
1346
1338
|
"""
|
1347
1339
|
return pulumi.get(self, "timeout_sec")
|
1348
1340
|
|
@@ -1688,6 +1680,7 @@ class RegionBackendService(pulumi.CustomResource):
|
|
1688
1680
|
Structure is documented below.
|
1689
1681
|
:param pulumi.Input[int] connection_draining_timeout_sec: Time for which instance will be drained (not accept new
|
1690
1682
|
connections, but still work to finish started).
|
1683
|
+
From version 6.0.0 ConnectionDrainingTimeoutSec default value will be 300 to match default GCP value.
|
1691
1684
|
:param pulumi.Input[pulumi.InputType['RegionBackendServiceConnectionTrackingPolicyArgs']] connection_tracking_policy: Connection Tracking configuration for this BackendService.
|
1692
1685
|
This is available only for Layer 4 Internal Load Balancing and
|
1693
1686
|
Network Load Balancing.
|
@@ -1778,10 +1771,6 @@ class RegionBackendService(pulumi.CustomResource):
|
|
1778
1771
|
- - -
|
1779
1772
|
:param pulumi.Input[str] network: The URL of the network to which this backend service belongs.
|
1780
1773
|
This field can only be specified when the load balancing scheme is set to INTERNAL.
|
1781
|
-
:param pulumi.Input[pulumi.InputType['RegionBackendServiceOutlierDetectionArgs']] outlier_detection: Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
1782
|
-
This field is applicable only when the `load_balancing_scheme` is set
|
1783
|
-
to INTERNAL_MANAGED and the `protocol` is set to HTTP, HTTPS, or HTTP2.
|
1784
|
-
Structure is documented below.
|
1785
1774
|
:param pulumi.Input[str] port_name: A named port on a backend instance group representing the port for
|
1786
1775
|
communication to the backend VMs in that group. Required when the
|
1787
1776
|
loadBalancingScheme is EXTERNAL, EXTERNAL_MANAGED, INTERNAL_MANAGED, or INTERNAL_SELF_MANAGED
|
@@ -1803,8 +1792,10 @@ class RegionBackendService(pulumi.CustomResource):
|
|
1803
1792
|
Possible values are: `NONE`, `CLIENT_IP`, `CLIENT_IP_PORT_PROTO`, `CLIENT_IP_PROTO`, `GENERATED_COOKIE`, `HEADER_FIELD`, `HTTP_COOKIE`, `CLIENT_IP_NO_DESTINATION`.
|
1804
1793
|
:param pulumi.Input[pulumi.InputType['RegionBackendServiceSubsettingArgs']] subsetting: Subsetting configuration for this BackendService. Currently this is applicable only for Internal TCP/UDP load balancing and Internal HTTP(S) load balancing.
|
1805
1794
|
Structure is documented below.
|
1806
|
-
:param pulumi.Input[int] timeout_sec:
|
1807
|
-
|
1795
|
+
:param pulumi.Input[int] timeout_sec: The backend service timeout has a different meaning depending on the type of load balancer.
|
1796
|
+
For more information see, [Backend service settings](https://cloud.google.com/compute/docs/reference/rest/v1/backendServices).
|
1797
|
+
The default is 30 seconds.
|
1798
|
+
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
1808
1799
|
"""
|
1809
1800
|
...
|
1810
1801
|
@overload
|
@@ -2242,6 +2233,7 @@ class RegionBackendService(pulumi.CustomResource):
|
|
2242
2233
|
Structure is documented below.
|
2243
2234
|
:param pulumi.Input[int] connection_draining_timeout_sec: Time for which instance will be drained (not accept new
|
2244
2235
|
connections, but still work to finish started).
|
2236
|
+
From version 6.0.0 ConnectionDrainingTimeoutSec default value will be 300 to match default GCP value.
|
2245
2237
|
:param pulumi.Input[pulumi.InputType['RegionBackendServiceConnectionTrackingPolicyArgs']] connection_tracking_policy: Connection Tracking configuration for this BackendService.
|
2246
2238
|
This is available only for Layer 4 Internal Load Balancing and
|
2247
2239
|
Network Load Balancing.
|
@@ -2336,10 +2328,6 @@ class RegionBackendService(pulumi.CustomResource):
|
|
2336
2328
|
- - -
|
2337
2329
|
:param pulumi.Input[str] network: The URL of the network to which this backend service belongs.
|
2338
2330
|
This field can only be specified when the load balancing scheme is set to INTERNAL.
|
2339
|
-
:param pulumi.Input[pulumi.InputType['RegionBackendServiceOutlierDetectionArgs']] outlier_detection: Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
2340
|
-
This field is applicable only when the `load_balancing_scheme` is set
|
2341
|
-
to INTERNAL_MANAGED and the `protocol` is set to HTTP, HTTPS, or HTTP2.
|
2342
|
-
Structure is documented below.
|
2343
2331
|
:param pulumi.Input[str] port_name: A named port on a backend instance group representing the port for
|
2344
2332
|
communication to the backend VMs in that group. Required when the
|
2345
2333
|
loadBalancingScheme is EXTERNAL, EXTERNAL_MANAGED, INTERNAL_MANAGED, or INTERNAL_SELF_MANAGED
|
@@ -2362,8 +2350,10 @@ class RegionBackendService(pulumi.CustomResource):
|
|
2362
2350
|
Possible values are: `NONE`, `CLIENT_IP`, `CLIENT_IP_PORT_PROTO`, `CLIENT_IP_PROTO`, `GENERATED_COOKIE`, `HEADER_FIELD`, `HTTP_COOKIE`, `CLIENT_IP_NO_DESTINATION`.
|
2363
2351
|
:param pulumi.Input[pulumi.InputType['RegionBackendServiceSubsettingArgs']] subsetting: Subsetting configuration for this BackendService. Currently this is applicable only for Internal TCP/UDP load balancing and Internal HTTP(S) load balancing.
|
2364
2352
|
Structure is documented below.
|
2365
|
-
:param pulumi.Input[int] timeout_sec:
|
2366
|
-
|
2353
|
+
:param pulumi.Input[int] timeout_sec: The backend service timeout has a different meaning depending on the type of load balancer.
|
2354
|
+
For more information see, [Backend service settings](https://cloud.google.com/compute/docs/reference/rest/v1/backendServices).
|
2355
|
+
The default is 30 seconds.
|
2356
|
+
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
2367
2357
|
"""
|
2368
2358
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
2369
2359
|
|
@@ -2448,6 +2438,7 @@ class RegionBackendService(pulumi.CustomResource):
|
|
2448
2438
|
"""
|
2449
2439
|
Time for which instance will be drained (not accept new
|
2450
2440
|
connections, but still work to finish started).
|
2441
|
+
From version 6.0.0 ConnectionDrainingTimeoutSec default value will be 300 to match default GCP value.
|
2451
2442
|
"""
|
2452
2443
|
return pulumi.get(self, "connection_draining_timeout_sec")
|
2453
2444
|
|
@@ -2653,12 +2644,6 @@ class RegionBackendService(pulumi.CustomResource):
|
|
2653
2644
|
@property
|
2654
2645
|
@pulumi.getter(name="outlierDetection")
|
2655
2646
|
def outlier_detection(self) -> pulumi.Output[Optional['outputs.RegionBackendServiceOutlierDetection']]:
|
2656
|
-
"""
|
2657
|
-
Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
2658
|
-
This field is applicable only when the `load_balancing_scheme` is set
|
2659
|
-
to INTERNAL_MANAGED and the `protocol` is set to HTTP, HTTPS, or HTTP2.
|
2660
|
-
Structure is documented below.
|
2661
|
-
"""
|
2662
2647
|
return pulumi.get(self, "outlier_detection")
|
2663
2648
|
|
2664
2649
|
@property
|
@@ -2743,8 +2728,10 @@ class RegionBackendService(pulumi.CustomResource):
|
|
2743
2728
|
@pulumi.getter(name="timeoutSec")
|
2744
2729
|
def timeout_sec(self) -> pulumi.Output[int]:
|
2745
2730
|
"""
|
2746
|
-
|
2747
|
-
|
2731
|
+
The backend service timeout has a different meaning depending on the type of load balancer.
|
2732
|
+
For more information see, [Backend service settings](https://cloud.google.com/compute/docs/reference/rest/v1/backendServices).
|
2733
|
+
The default is 30 seconds.
|
2734
|
+
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
2748
2735
|
"""
|
2749
2736
|
return pulumi.get(self, "timeout_sec")
|
2750
2737
|
|
@@ -222,15 +222,13 @@ class RegionDiskArgs:
|
|
222
222
|
|
223
223
|
@property
|
224
224
|
@pulumi.getter
|
225
|
+
@_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.""")
|
225
226
|
def interface(self) -> Optional[pulumi.Input[str]]:
|
226
227
|
"""
|
227
228
|
Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.
|
228
229
|
|
229
230
|
> **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.
|
230
231
|
"""
|
231
|
-
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)
|
232
|
-
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.""")
|
233
|
-
|
234
232
|
return pulumi.get(self, "interface")
|
235
233
|
|
236
234
|
@interface.setter
|
@@ -675,15 +673,13 @@ class _RegionDiskState:
|
|
675
673
|
|
676
674
|
@property
|
677
675
|
@pulumi.getter
|
676
|
+
@_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.""")
|
678
677
|
def interface(self) -> Optional[pulumi.Input[str]]:
|
679
678
|
"""
|
680
679
|
Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.
|
681
680
|
|
682
681
|
> **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.
|
683
682
|
"""
|
684
|
-
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)
|
685
|
-
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.""")
|
686
|
-
|
687
683
|
return pulumi.get(self, "interface")
|
688
684
|
|
689
685
|
@interface.setter
|
@@ -1665,15 +1661,13 @@ class RegionDisk(pulumi.CustomResource):
|
|
1665
1661
|
|
1666
1662
|
@property
|
1667
1663
|
@pulumi.getter
|
1664
|
+
@_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.""")
|
1668
1665
|
def interface(self) -> pulumi.Output[Optional[str]]:
|
1669
1666
|
"""
|
1670
1667
|
Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI.
|
1671
1668
|
|
1672
1669
|
> **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.
|
1673
1670
|
"""
|
1674
|
-
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)
|
1675
|
-
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.""")
|
1676
|
-
|
1677
1671
|
return pulumi.get(self, "interface")
|
1678
1672
|
|
1679
1673
|
@property
|