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
@@ -27,7 +27,7 @@ class GetRegionBackendServiceResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getRegionBackendService.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, affinity_cookie_ttl_sec=None, backends=None, cdn_policies=None, circuit_breakers=None, connection_draining_timeout_sec=None, connection_tracking_policies=None, consistent_hashes=None, creation_timestamp=None, custom_metrics=None, description=None, dynamic_forwardings=None, enable_cdn=None, failover_policies=None, fingerprint=None, generated_id=None, ha_policies=None, health_checks=None, iaps=None, id=None, ip_address_selection_policy=None, load_balancing_scheme=None, locality_lb_policy=None, log_configs=None, name=None, network=None, outlier_detections=None, port_name=None, project=None, protocol=None, region=None, security_policy=None, self_link=None, session_affinity=None, strong_session_affinity_cookies=None, subsettings=None, timeout_sec=None):
|
30
|
+
def __init__(__self__, affinity_cookie_ttl_sec=None, backends=None, cdn_policies=None, circuit_breakers=None, connection_draining_timeout_sec=None, connection_tracking_policies=None, consistent_hashes=None, creation_timestamp=None, custom_metrics=None, description=None, dynamic_forwardings=None, enable_cdn=None, failover_policies=None, fingerprint=None, generated_id=None, ha_policies=None, health_checks=None, iaps=None, id=None, ip_address_selection_policy=None, load_balancing_scheme=None, locality_lb_policy=None, log_configs=None, name=None, network=None, outlier_detections=None, params=None, port_name=None, project=None, protocol=None, region=None, security_policy=None, self_link=None, session_affinity=None, strong_session_affinity_cookies=None, subsettings=None, timeout_sec=None):
|
31
31
|
if affinity_cookie_ttl_sec and not isinstance(affinity_cookie_ttl_sec, int):
|
32
32
|
raise TypeError("Expected argument 'affinity_cookie_ttl_sec' to be a int")
|
33
33
|
pulumi.set(__self__, "affinity_cookie_ttl_sec", affinity_cookie_ttl_sec)
|
@@ -106,6 +106,9 @@ class GetRegionBackendServiceResult:
|
|
106
106
|
if outlier_detections and not isinstance(outlier_detections, list):
|
107
107
|
raise TypeError("Expected argument 'outlier_detections' to be a list")
|
108
108
|
pulumi.set(__self__, "outlier_detections", outlier_detections)
|
109
|
+
if params and not isinstance(params, list):
|
110
|
+
raise TypeError("Expected argument 'params' to be a list")
|
111
|
+
pulumi.set(__self__, "params", params)
|
109
112
|
if port_name and not isinstance(port_name, str):
|
110
113
|
raise TypeError("Expected argument 'port_name' to be a str")
|
111
114
|
pulumi.set(__self__, "port_name", port_name)
|
@@ -270,6 +273,11 @@ class GetRegionBackendServiceResult:
|
|
270
273
|
def outlier_detections(self) -> Sequence['outputs.GetRegionBackendServiceOutlierDetectionResult']:
|
271
274
|
return pulumi.get(self, "outlier_detections")
|
272
275
|
|
276
|
+
@_builtins.property
|
277
|
+
@pulumi.getter
|
278
|
+
def params(self) -> Sequence['outputs.GetRegionBackendServiceParamResult']:
|
279
|
+
return pulumi.get(self, "params")
|
280
|
+
|
273
281
|
@_builtins.property
|
274
282
|
@pulumi.getter(name="portName")
|
275
283
|
def port_name(self) -> _builtins.str:
|
@@ -353,6 +361,7 @@ class AwaitableGetRegionBackendServiceResult(GetRegionBackendServiceResult):
|
|
353
361
|
name=self.name,
|
354
362
|
network=self.network,
|
355
363
|
outlier_detections=self.outlier_detections,
|
364
|
+
params=self.params,
|
356
365
|
port_name=self.port_name,
|
357
366
|
project=self.project,
|
358
367
|
protocol=self.protocol,
|
@@ -424,6 +433,7 @@ def get_region_backend_service(name: Optional[_builtins.str] = None,
|
|
424
433
|
name=pulumi.get(__ret__, 'name'),
|
425
434
|
network=pulumi.get(__ret__, 'network'),
|
426
435
|
outlier_detections=pulumi.get(__ret__, 'outlier_detections'),
|
436
|
+
params=pulumi.get(__ret__, 'params'),
|
427
437
|
port_name=pulumi.get(__ret__, 'port_name'),
|
428
438
|
project=pulumi.get(__ret__, 'project'),
|
429
439
|
protocol=pulumi.get(__ret__, 'protocol'),
|
@@ -492,6 +502,7 @@ def get_region_backend_service_output(name: Optional[pulumi.Input[_builtins.str]
|
|
492
502
|
name=pulumi.get(__response__, 'name'),
|
493
503
|
network=pulumi.get(__response__, 'network'),
|
494
504
|
outlier_detections=pulumi.get(__response__, 'outlier_detections'),
|
505
|
+
params=pulumi.get(__response__, 'params'),
|
495
506
|
port_name=pulumi.get(__response__, 'port_name'),
|
496
507
|
project=pulumi.get(__response__, 'project'),
|
497
508
|
protocol=pulumi.get(__response__, 'protocol'),
|
@@ -151,16 +151,7 @@ def get_resource_policy(name: Optional[_builtins.str] = None,
|
|
151
151
|
region: Optional[_builtins.str] = None,
|
152
152
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetResourcePolicyResult:
|
153
153
|
"""
|
154
|
-
|
155
|
-
|
156
|
-
```python
|
157
|
-
import pulumi
|
158
|
-
import pulumi_gcp as gcp
|
159
|
-
|
160
|
-
daily = gcp.compute.get_resource_policy(name="daily",
|
161
|
-
region="us-central1")
|
162
|
-
```
|
163
|
-
|
154
|
+
Use this data source to access information about an existing resource.
|
164
155
|
|
165
156
|
:param _builtins.str name: The name of the Resource Policy.
|
166
157
|
:param _builtins.str project: Project from which to list the Resource Policy. Defaults to project declared in the provider.
|
@@ -190,16 +181,7 @@ def get_resource_policy_output(name: Optional[pulumi.Input[_builtins.str]] = Non
|
|
190
181
|
region: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
191
182
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetResourcePolicyResult]:
|
192
183
|
"""
|
193
|
-
|
194
|
-
|
195
|
-
```python
|
196
|
-
import pulumi
|
197
|
-
import pulumi_gcp as gcp
|
198
|
-
|
199
|
-
daily = gcp.compute.get_resource_policy(name="daily",
|
200
|
-
region="us-central1")
|
201
|
-
```
|
202
|
-
|
184
|
+
Use this data source to access information about an existing resource.
|
203
185
|
|
204
186
|
:param _builtins.str name: The name of the Resource Policy.
|
205
187
|
:param _builtins.str project: Project from which to list the Resource Policy. Defaults to project declared in the provider.
|
@@ -291,7 +291,8 @@ class MachineImageIamBinding(pulumi.CustomResource):
|
|
291
291
|
> **Note:** `compute.MachineImageIamBinding` resources **can be** used in conjunction with `compute.MachineImageIamMember` resources **only if** they do not grant privilege to the same role.
|
292
292
|
|
293
293
|
> **Note:** This resource supports IAM Conditions but they have some known limitations which can be found [here](https://cloud.google.com/iam/docs/conditions-overview#limitations). Please review this article if you are having issues with IAM Conditions.
|
294
|
-
|
294
|
+
|
295
|
+
## compute.MachineImageIamPolicy
|
295
296
|
|
296
297
|
```python
|
297
298
|
import pulumi
|
@@ -409,7 +410,8 @@ class MachineImageIamBinding(pulumi.CustomResource):
|
|
409
410
|
> **Note:** `compute.MachineImageIamBinding` resources **can be** used in conjunction with `compute.MachineImageIamMember` resources **only if** they do not grant privilege to the same role.
|
410
411
|
|
411
412
|
> **Note:** This resource supports IAM Conditions but they have some known limitations which can be found [here](https://cloud.google.com/iam/docs/conditions-overview#limitations). Please review this article if you are having issues with IAM Conditions.
|
412
|
-
|
413
|
+
|
414
|
+
## compute.MachineImageIamPolicy
|
413
415
|
|
414
416
|
```python
|
415
417
|
import pulumi
|
@@ -586,7 +588,8 @@ class MachineImageIamBinding(pulumi.CustomResource):
|
|
586
588
|
> **Note:** `compute.MachineImageIamBinding` resources **can be** used in conjunction with `compute.MachineImageIamMember` resources **only if** they do not grant privilege to the same role.
|
587
589
|
|
588
590
|
> **Note:** This resource supports IAM Conditions but they have some known limitations which can be found [here](https://cloud.google.com/iam/docs/conditions-overview#limitations). Please review this article if you are having issues with IAM Conditions.
|
589
|
-
|
591
|
+
|
592
|
+
## compute.MachineImageIamPolicy
|
590
593
|
|
591
594
|
```python
|
592
595
|
import pulumi
|
@@ -704,7 +707,8 @@ class MachineImageIamBinding(pulumi.CustomResource):
|
|
704
707
|
> **Note:** `compute.MachineImageIamBinding` resources **can be** used in conjunction with `compute.MachineImageIamMember` resources **only if** they do not grant privilege to the same role.
|
705
708
|
|
706
709
|
> **Note:** This resource supports IAM Conditions but they have some known limitations which can be found [here](https://cloud.google.com/iam/docs/conditions-overview#limitations). Please review this article if you are having issues with IAM Conditions.
|
707
|
-
|
710
|
+
|
711
|
+
## compute.MachineImageIamPolicy
|
708
712
|
|
709
713
|
```python
|
710
714
|
import pulumi
|
@@ -291,7 +291,8 @@ class MachineImageIamMember(pulumi.CustomResource):
|
|
291
291
|
> **Note:** `compute.MachineImageIamBinding` resources **can be** used in conjunction with `compute.MachineImageIamMember` resources **only if** they do not grant privilege to the same role.
|
292
292
|
|
293
293
|
> **Note:** This resource supports IAM Conditions but they have some known limitations which can be found [here](https://cloud.google.com/iam/docs/conditions-overview#limitations). Please review this article if you are having issues with IAM Conditions.
|
294
|
-
|
294
|
+
|
295
|
+
## compute.MachineImageIamPolicy
|
295
296
|
|
296
297
|
```python
|
297
298
|
import pulumi
|
@@ -409,7 +410,8 @@ class MachineImageIamMember(pulumi.CustomResource):
|
|
409
410
|
> **Note:** `compute.MachineImageIamBinding` resources **can be** used in conjunction with `compute.MachineImageIamMember` resources **only if** they do not grant privilege to the same role.
|
410
411
|
|
411
412
|
> **Note:** This resource supports IAM Conditions but they have some known limitations which can be found [here](https://cloud.google.com/iam/docs/conditions-overview#limitations). Please review this article if you are having issues with IAM Conditions.
|
412
|
-
|
413
|
+
|
414
|
+
## compute.MachineImageIamPolicy
|
413
415
|
|
414
416
|
```python
|
415
417
|
import pulumi
|
@@ -586,7 +588,8 @@ class MachineImageIamMember(pulumi.CustomResource):
|
|
586
588
|
> **Note:** `compute.MachineImageIamBinding` resources **can be** used in conjunction with `compute.MachineImageIamMember` resources **only if** they do not grant privilege to the same role.
|
587
589
|
|
588
590
|
> **Note:** This resource supports IAM Conditions but they have some known limitations which can be found [here](https://cloud.google.com/iam/docs/conditions-overview#limitations). Please review this article if you are having issues with IAM Conditions.
|
589
|
-
|
591
|
+
|
592
|
+
## compute.MachineImageIamPolicy
|
590
593
|
|
591
594
|
```python
|
592
595
|
import pulumi
|
@@ -704,7 +707,8 @@ class MachineImageIamMember(pulumi.CustomResource):
|
|
704
707
|
> **Note:** `compute.MachineImageIamBinding` resources **can be** used in conjunction with `compute.MachineImageIamMember` resources **only if** they do not grant privilege to the same role.
|
705
708
|
|
706
709
|
> **Note:** This resource supports IAM Conditions but they have some known limitations which can be found [here](https://cloud.google.com/iam/docs/conditions-overview#limitations). Please review this article if you are having issues with IAM Conditions.
|
707
|
-
|
710
|
+
|
711
|
+
## compute.MachineImageIamPolicy
|
708
712
|
|
709
713
|
```python
|
710
714
|
import pulumi
|
@@ -176,7 +176,8 @@ class MachineImageIamPolicy(pulumi.CustomResource):
|
|
176
176
|
> **Note:** `compute.MachineImageIamBinding` resources **can be** used in conjunction with `compute.MachineImageIamMember` resources **only if** they do not grant privilege to the same role.
|
177
177
|
|
178
178
|
> **Note:** This resource supports IAM Conditions but they have some known limitations which can be found [here](https://cloud.google.com/iam/docs/conditions-overview#limitations). Please review this article if you are having issues with IAM Conditions.
|
179
|
-
|
179
|
+
|
180
|
+
## compute.MachineImageIamPolicy
|
180
181
|
|
181
182
|
```python
|
182
183
|
import pulumi
|
@@ -294,7 +295,8 @@ class MachineImageIamPolicy(pulumi.CustomResource):
|
|
294
295
|
> **Note:** `compute.MachineImageIamBinding` resources **can be** used in conjunction with `compute.MachineImageIamMember` resources **only if** they do not grant privilege to the same role.
|
295
296
|
|
296
297
|
> **Note:** This resource supports IAM Conditions but they have some known limitations which can be found [here](https://cloud.google.com/iam/docs/conditions-overview#limitations). Please review this article if you are having issues with IAM Conditions.
|
297
|
-
|
298
|
+
|
299
|
+
## compute.MachineImageIamPolicy
|
298
300
|
|
299
301
|
```python
|
300
302
|
import pulumi
|
@@ -457,7 +459,8 @@ class MachineImageIamPolicy(pulumi.CustomResource):
|
|
457
459
|
> **Note:** `compute.MachineImageIamBinding` resources **can be** used in conjunction with `compute.MachineImageIamMember` resources **only if** they do not grant privilege to the same role.
|
458
460
|
|
459
461
|
> **Note:** This resource supports IAM Conditions but they have some known limitations which can be found [here](https://cloud.google.com/iam/docs/conditions-overview#limitations). Please review this article if you are having issues with IAM Conditions.
|
460
|
-
|
462
|
+
|
463
|
+
## compute.MachineImageIamPolicy
|
461
464
|
|
462
465
|
```python
|
463
466
|
import pulumi
|
@@ -575,7 +578,8 @@ class MachineImageIamPolicy(pulumi.CustomResource):
|
|
575
578
|
> **Note:** `compute.MachineImageIamBinding` resources **can be** used in conjunction with `compute.MachineImageIamMember` resources **only if** they do not grant privilege to the same role.
|
576
579
|
|
577
580
|
> **Note:** This resource supports IAM Conditions but they have some known limitations which can be found [here](https://cloud.google.com/iam/docs/conditions-overview#limitations). Please review this article if you are having issues with IAM Conditions.
|
578
|
-
|
581
|
+
|
582
|
+
## compute.MachineImageIamPolicy
|
579
583
|
|
580
584
|
```python
|
581
585
|
import pulumi
|
@@ -291,6 +291,14 @@ class NetworkEdgeSecurityService(pulumi.CustomResource):
|
|
291
291
|
security_policy: Optional[pulumi.Input[_builtins.str]] = None,
|
292
292
|
__props__=None):
|
293
293
|
"""
|
294
|
+
Google Cloud Armor network edge security service resource.
|
295
|
+
|
296
|
+
To get more information about NetworkEdgeSecurityService, see:
|
297
|
+
|
298
|
+
* [API documentation](https://cloud.google.com/compute/docs/reference/rest/v1/networkEdgeSecurityServices)
|
299
|
+
* How-to Guides
|
300
|
+
* [Official Documentation](https://cloud.google.com/armor/docs/advanced-network-ddos)
|
301
|
+
|
294
302
|
## Example Usage
|
295
303
|
|
296
304
|
### Compute Network Edge Security Service Basic
|
@@ -351,6 +359,14 @@ class NetworkEdgeSecurityService(pulumi.CustomResource):
|
|
351
359
|
args: Optional[NetworkEdgeSecurityServiceArgs] = None,
|
352
360
|
opts: Optional[pulumi.ResourceOptions] = None):
|
353
361
|
"""
|
362
|
+
Google Cloud Armor network edge security service resource.
|
363
|
+
|
364
|
+
To get more information about NetworkEdgeSecurityService, see:
|
365
|
+
|
366
|
+
* [API documentation](https://cloud.google.com/compute/docs/reference/rest/v1/networkEdgeSecurityServices)
|
367
|
+
* How-to Guides
|
368
|
+
* [Official Documentation](https://cloud.google.com/armor/docs/advanced-network-ddos)
|
369
|
+
|
354
370
|
## Example Usage
|
355
371
|
|
356
372
|
### Compute Network Edge Security Service Basic
|
@@ -533,6 +533,12 @@ class NetworkFirewallPolicyPacketMirroringRule(pulumi.CustomResource):
|
|
533
533
|
tls_inspect: Optional[pulumi.Input[_builtins.bool]] = None,
|
534
534
|
__props__=None):
|
535
535
|
"""
|
536
|
+
Represents a packet mirroring rule that describes one or more match conditions along with the action to be taken when traffic matches this condition (mirror or do_not_mirror).
|
537
|
+
|
538
|
+
To get more information about NetworkFirewallPolicyPacketMirroringRule, see:
|
539
|
+
|
540
|
+
* [API documentation](https://cloud.google.com/compute/docs/reference/rest/beta/networkFirewallPolicies/addPacketMirroringRule)
|
541
|
+
|
536
542
|
## Example Usage
|
537
543
|
|
538
544
|
### Compute Network Firewall Policy Packet Mirroring Rule
|
@@ -661,6 +667,12 @@ class NetworkFirewallPolicyPacketMirroringRule(pulumi.CustomResource):
|
|
661
667
|
args: NetworkFirewallPolicyPacketMirroringRuleArgs,
|
662
668
|
opts: Optional[pulumi.ResourceOptions] = None):
|
663
669
|
"""
|
670
|
+
Represents a packet mirroring rule that describes one or more match conditions along with the action to be taken when traffic matches this condition (mirror or do_not_mirror).
|
671
|
+
|
672
|
+
To get more information about NetworkFirewallPolicyPacketMirroringRule, see:
|
673
|
+
|
674
|
+
* [API documentation](https://cloud.google.com/compute/docs/reference/rest/beta/networkFirewallPolicies/addPacketMirroringRule)
|
675
|
+
|
664
676
|
## Example Usage
|
665
677
|
|
666
678
|
### Compute Network Firewall Policy Packet Mirroring Rule
|
@@ -332,56 +332,6 @@ class NetworkPeeringRoutesConfig(pulumi.CustomResource):
|
|
332
332
|
network=network_secondary.id,
|
333
333
|
peer_network=network_primary.id)
|
334
334
|
```
|
335
|
-
### Network Peering Routes Config Gke
|
336
|
-
|
337
|
-
```python
|
338
|
-
import pulumi
|
339
|
-
import pulumi_gcp as gcp
|
340
|
-
|
341
|
-
container_network = gcp.compute.Network("container_network",
|
342
|
-
name="container-network",
|
343
|
-
auto_create_subnetworks=False)
|
344
|
-
container_subnetwork = gcp.compute.Subnetwork("container_subnetwork",
|
345
|
-
name="container-subnetwork",
|
346
|
-
region="us-central1",
|
347
|
-
network=container_network.name,
|
348
|
-
ip_cidr_range="10.0.36.0/24",
|
349
|
-
private_ip_google_access=True,
|
350
|
-
secondary_ip_ranges=[
|
351
|
-
{
|
352
|
-
"range_name": "pod",
|
353
|
-
"ip_cidr_range": "10.0.0.0/19",
|
354
|
-
},
|
355
|
-
{
|
356
|
-
"range_name": "svc",
|
357
|
-
"ip_cidr_range": "10.0.32.0/22",
|
358
|
-
},
|
359
|
-
])
|
360
|
-
private_cluster = gcp.container.Cluster("private_cluster",
|
361
|
-
name="private-cluster",
|
362
|
-
location="us-central1-a",
|
363
|
-
initial_node_count=1,
|
364
|
-
network=container_network.name,
|
365
|
-
subnetwork=container_subnetwork.name,
|
366
|
-
private_cluster_config={
|
367
|
-
"enable_private_endpoint": True,
|
368
|
-
"enable_private_nodes": True,
|
369
|
-
"master_ipv4_cidr_block": "10.42.0.0/28",
|
370
|
-
},
|
371
|
-
master_authorized_networks_config={},
|
372
|
-
ip_allocation_policy={
|
373
|
-
"cluster_secondary_range_name": container_subnetwork.secondary_ip_ranges[0].range_name,
|
374
|
-
"services_secondary_range_name": container_subnetwork.secondary_ip_ranges[1].range_name,
|
375
|
-
},
|
376
|
-
deletion_protection=True)
|
377
|
-
peering_gke_routes = gcp.compute.NetworkPeeringRoutesConfig("peering_gke_routes",
|
378
|
-
peering=private_cluster.private_cluster_config.peering_name,
|
379
|
-
network=container_network.name,
|
380
|
-
import_custom_routes=True,
|
381
|
-
export_custom_routes=True,
|
382
|
-
import_subnet_routes_with_public_ip=True,
|
383
|
-
export_subnet_routes_with_public_ip=True)
|
384
|
-
```
|
385
335
|
|
386
336
|
## Import
|
387
337
|
|
@@ -474,56 +424,6 @@ class NetworkPeeringRoutesConfig(pulumi.CustomResource):
|
|
474
424
|
network=network_secondary.id,
|
475
425
|
peer_network=network_primary.id)
|
476
426
|
```
|
477
|
-
### Network Peering Routes Config Gke
|
478
|
-
|
479
|
-
```python
|
480
|
-
import pulumi
|
481
|
-
import pulumi_gcp as gcp
|
482
|
-
|
483
|
-
container_network = gcp.compute.Network("container_network",
|
484
|
-
name="container-network",
|
485
|
-
auto_create_subnetworks=False)
|
486
|
-
container_subnetwork = gcp.compute.Subnetwork("container_subnetwork",
|
487
|
-
name="container-subnetwork",
|
488
|
-
region="us-central1",
|
489
|
-
network=container_network.name,
|
490
|
-
ip_cidr_range="10.0.36.0/24",
|
491
|
-
private_ip_google_access=True,
|
492
|
-
secondary_ip_ranges=[
|
493
|
-
{
|
494
|
-
"range_name": "pod",
|
495
|
-
"ip_cidr_range": "10.0.0.0/19",
|
496
|
-
},
|
497
|
-
{
|
498
|
-
"range_name": "svc",
|
499
|
-
"ip_cidr_range": "10.0.32.0/22",
|
500
|
-
},
|
501
|
-
])
|
502
|
-
private_cluster = gcp.container.Cluster("private_cluster",
|
503
|
-
name="private-cluster",
|
504
|
-
location="us-central1-a",
|
505
|
-
initial_node_count=1,
|
506
|
-
network=container_network.name,
|
507
|
-
subnetwork=container_subnetwork.name,
|
508
|
-
private_cluster_config={
|
509
|
-
"enable_private_endpoint": True,
|
510
|
-
"enable_private_nodes": True,
|
511
|
-
"master_ipv4_cidr_block": "10.42.0.0/28",
|
512
|
-
},
|
513
|
-
master_authorized_networks_config={},
|
514
|
-
ip_allocation_policy={
|
515
|
-
"cluster_secondary_range_name": container_subnetwork.secondary_ip_ranges[0].range_name,
|
516
|
-
"services_secondary_range_name": container_subnetwork.secondary_ip_ranges[1].range_name,
|
517
|
-
},
|
518
|
-
deletion_protection=True)
|
519
|
-
peering_gke_routes = gcp.compute.NetworkPeeringRoutesConfig("peering_gke_routes",
|
520
|
-
peering=private_cluster.private_cluster_config.peering_name,
|
521
|
-
network=container_network.name,
|
522
|
-
import_custom_routes=True,
|
523
|
-
export_custom_routes=True,
|
524
|
-
import_subnet_routes_with_public_ip=True,
|
525
|
-
export_subnet_routes_with_public_ip=True)
|
526
|
-
```
|
527
427
|
|
528
428
|
## Import
|
529
429
|
|