pulumi-gcp 8.42.0a1758133038__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.0a1758133038.dist-info → pulumi_gcp-9.0.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.42.0a1758133038.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.0a1758133038.dist-info → pulumi_gcp-9.0.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.42.0a1758133038.dist-info → pulumi_gcp-9.0.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/cloudbuild/trigger.py
CHANGED
@@ -25,6 +25,7 @@ class TriggerArgs:
|
|
25
25
|
bitbucket_server_trigger_config: Optional[pulumi.Input['TriggerBitbucketServerTriggerConfigArgs']] = None,
|
26
26
|
build: Optional[pulumi.Input['TriggerBuildArgs']] = None,
|
27
27
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
28
|
+
developer_connect_event_config: Optional[pulumi.Input['TriggerDeveloperConnectEventConfigArgs']] = None,
|
28
29
|
disabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
29
30
|
filename: Optional[pulumi.Input[_builtins.str]] = None,
|
30
31
|
filter: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -55,6 +56,8 @@ class TriggerArgs:
|
|
55
56
|
:param pulumi.Input['TriggerBuildArgs'] build: Contents of the build template. Either a filename or build template must be provided.
|
56
57
|
Structure is documented below.
|
57
58
|
:param pulumi.Input[_builtins.str] description: Human-readable description of the trigger.
|
59
|
+
:param pulumi.Input['TriggerDeveloperConnectEventConfigArgs'] developer_connect_event_config: Configuration for triggers that respond to Developer Connect events.
|
60
|
+
Structure is documented below.
|
58
61
|
:param pulumi.Input[_builtins.bool] disabled: Whether the trigger is disabled or not. If true, the trigger will never result in a build.
|
59
62
|
:param pulumi.Input[_builtins.str] filename: Path, from the source root, to a file whose contents is used for the template.
|
60
63
|
Either a filename or build template must be provided. Set this only when using trigger_template or github.
|
@@ -128,6 +131,8 @@ class TriggerArgs:
|
|
128
131
|
pulumi.set(__self__, "build", build)
|
129
132
|
if description is not None:
|
130
133
|
pulumi.set(__self__, "description", description)
|
134
|
+
if developer_connect_event_config is not None:
|
135
|
+
pulumi.set(__self__, "developer_connect_event_config", developer_connect_event_config)
|
131
136
|
if disabled is not None:
|
132
137
|
pulumi.set(__self__, "disabled", disabled)
|
133
138
|
if filename is not None:
|
@@ -220,6 +225,19 @@ class TriggerArgs:
|
|
220
225
|
def description(self, value: Optional[pulumi.Input[_builtins.str]]):
|
221
226
|
pulumi.set(self, "description", value)
|
222
227
|
|
228
|
+
@_builtins.property
|
229
|
+
@pulumi.getter(name="developerConnectEventConfig")
|
230
|
+
def developer_connect_event_config(self) -> Optional[pulumi.Input['TriggerDeveloperConnectEventConfigArgs']]:
|
231
|
+
"""
|
232
|
+
Configuration for triggers that respond to Developer Connect events.
|
233
|
+
Structure is documented below.
|
234
|
+
"""
|
235
|
+
return pulumi.get(self, "developer_connect_event_config")
|
236
|
+
|
237
|
+
@developer_connect_event_config.setter
|
238
|
+
def developer_connect_event_config(self, value: Optional[pulumi.Input['TriggerDeveloperConnectEventConfigArgs']]):
|
239
|
+
pulumi.set(self, "developer_connect_event_config", value)
|
240
|
+
|
223
241
|
@_builtins.property
|
224
242
|
@pulumi.getter
|
225
243
|
def disabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
@@ -502,6 +520,7 @@ class _TriggerState:
|
|
502
520
|
build: Optional[pulumi.Input['TriggerBuildArgs']] = None,
|
503
521
|
create_time: Optional[pulumi.Input[_builtins.str]] = None,
|
504
522
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
523
|
+
developer_connect_event_config: Optional[pulumi.Input['TriggerDeveloperConnectEventConfigArgs']] = None,
|
505
524
|
disabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
506
525
|
filename: Optional[pulumi.Input[_builtins.str]] = None,
|
507
526
|
filter: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -534,6 +553,8 @@ class _TriggerState:
|
|
534
553
|
Structure is documented below.
|
535
554
|
:param pulumi.Input[_builtins.str] create_time: Time when the trigger was created.
|
536
555
|
:param pulumi.Input[_builtins.str] description: Human-readable description of the trigger.
|
556
|
+
:param pulumi.Input['TriggerDeveloperConnectEventConfigArgs'] developer_connect_event_config: Configuration for triggers that respond to Developer Connect events.
|
557
|
+
Structure is documented below.
|
537
558
|
:param pulumi.Input[_builtins.bool] disabled: Whether the trigger is disabled or not. If true, the trigger will never result in a build.
|
538
559
|
:param pulumi.Input[_builtins.str] filename: Path, from the source root, to a file whose contents is used for the template.
|
539
560
|
Either a filename or build template must be provided. Set this only when using trigger_template or github.
|
@@ -610,6 +631,8 @@ class _TriggerState:
|
|
610
631
|
pulumi.set(__self__, "create_time", create_time)
|
611
632
|
if description is not None:
|
612
633
|
pulumi.set(__self__, "description", description)
|
634
|
+
if developer_connect_event_config is not None:
|
635
|
+
pulumi.set(__self__, "developer_connect_event_config", developer_connect_event_config)
|
613
636
|
if disabled is not None:
|
614
637
|
pulumi.set(__self__, "disabled", disabled)
|
615
638
|
if filename is not None:
|
@@ -716,6 +739,19 @@ class _TriggerState:
|
|
716
739
|
def description(self, value: Optional[pulumi.Input[_builtins.str]]):
|
717
740
|
pulumi.set(self, "description", value)
|
718
741
|
|
742
|
+
@_builtins.property
|
743
|
+
@pulumi.getter(name="developerConnectEventConfig")
|
744
|
+
def developer_connect_event_config(self) -> Optional[pulumi.Input['TriggerDeveloperConnectEventConfigArgs']]:
|
745
|
+
"""
|
746
|
+
Configuration for triggers that respond to Developer Connect events.
|
747
|
+
Structure is documented below.
|
748
|
+
"""
|
749
|
+
return pulumi.get(self, "developer_connect_event_config")
|
750
|
+
|
751
|
+
@developer_connect_event_config.setter
|
752
|
+
def developer_connect_event_config(self, value: Optional[pulumi.Input['TriggerDeveloperConnectEventConfigArgs']]):
|
753
|
+
pulumi.set(self, "developer_connect_event_config", value)
|
754
|
+
|
719
755
|
@_builtins.property
|
720
756
|
@pulumi.getter
|
721
757
|
def disabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
@@ -1012,6 +1048,7 @@ class Trigger(pulumi.CustomResource):
|
|
1012
1048
|
bitbucket_server_trigger_config: Optional[pulumi.Input[Union['TriggerBitbucketServerTriggerConfigArgs', 'TriggerBitbucketServerTriggerConfigArgsDict']]] = None,
|
1013
1049
|
build: Optional[pulumi.Input[Union['TriggerBuildArgs', 'TriggerBuildArgsDict']]] = None,
|
1014
1050
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
1051
|
+
developer_connect_event_config: Optional[pulumi.Input[Union['TriggerDeveloperConnectEventConfigArgs', 'TriggerDeveloperConnectEventConfigArgsDict']]] = None,
|
1015
1052
|
disabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
1016
1053
|
filename: Optional[pulumi.Input[_builtins.str]] = None,
|
1017
1054
|
filter: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -1079,8 +1116,9 @@ class Trigger(pulumi.CustomResource):
|
|
1079
1116
|
build={
|
1080
1117
|
"steps": [
|
1081
1118
|
{
|
1082
|
-
"name": "gcr.io/cloud-builders/
|
1119
|
+
"name": "gcr.io/cloud-builders/gcloud",
|
1083
1120
|
"args": [
|
1121
|
+
"storage",
|
1084
1122
|
"cp",
|
1085
1123
|
"gs://mybucket/remotefile.zip",
|
1086
1124
|
"localfile.zip",
|
@@ -1633,6 +1671,57 @@ class Trigger(pulumi.CustomResource):
|
|
1633
1671
|
"repo_type": "GITHUB",
|
1634
1672
|
})
|
1635
1673
|
```
|
1674
|
+
### Cloudbuild Trigger Developer Connect Pull
|
1675
|
+
|
1676
|
+
```python
|
1677
|
+
import pulumi
|
1678
|
+
import pulumi_gcp as gcp
|
1679
|
+
|
1680
|
+
developer_connect_trigger_pull = gcp.cloudbuild.Trigger("developer-connect-trigger-pull",
|
1681
|
+
location="us-central1",
|
1682
|
+
developer_connect_event_config={
|
1683
|
+
"git_repository_link": "projects/cryptic-tower-286020/locations/us-central1/connections/prod-bbs-push/gitRepositoryLinks/cbprob-prod-us-central1-push1",
|
1684
|
+
"pull_request": {
|
1685
|
+
"branch": "^master$",
|
1686
|
+
"invert_regex": False,
|
1687
|
+
"comment_control": "COMMENTS_ENABLED",
|
1688
|
+
},
|
1689
|
+
},
|
1690
|
+
filename="cloudbuild.yaml")
|
1691
|
+
```
|
1692
|
+
### Cloudbuild Trigger Developer Connect Push
|
1693
|
+
|
1694
|
+
```python
|
1695
|
+
import pulumi
|
1696
|
+
import pulumi_gcp as gcp
|
1697
|
+
|
1698
|
+
developer_connect_trigger_push = gcp.cloudbuild.Trigger("developer-connect-trigger-push",
|
1699
|
+
location="us-central1",
|
1700
|
+
developer_connect_event_config={
|
1701
|
+
"git_repository_link": "projects/cryptic-tower-286020/locations/us-central1/connections/prod-bbs-push/gitRepositoryLinks/cbprob-prod-us-central1-push1",
|
1702
|
+
"push": {
|
1703
|
+
"tag": "^0.1.*",
|
1704
|
+
"invert_regex": True,
|
1705
|
+
},
|
1706
|
+
},
|
1707
|
+
filename="cloudbuild.yaml")
|
1708
|
+
```
|
1709
|
+
### Cloudbuild Trigger Developer Connect Push Branch
|
1710
|
+
|
1711
|
+
```python
|
1712
|
+
import pulumi
|
1713
|
+
import pulumi_gcp as gcp
|
1714
|
+
|
1715
|
+
dc_trigger_regular_push_branch = gcp.cloudbuild.Trigger("dc-trigger-regular-push-branch",
|
1716
|
+
location="us-central1",
|
1717
|
+
developer_connect_event_config={
|
1718
|
+
"git_repository_link": "projects/cryptic-tower-286020/locations/us-central1/connections/prod-bbs-push/gitRepositoryLinks/cbprob-prod-us-central1-push1",
|
1719
|
+
"push": {
|
1720
|
+
"branch": "main",
|
1721
|
+
},
|
1722
|
+
},
|
1723
|
+
filename="cloudbuild.yaml")
|
1724
|
+
```
|
1636
1725
|
|
1637
1726
|
## Import
|
1638
1727
|
|
@@ -1675,6 +1764,8 @@ class Trigger(pulumi.CustomResource):
|
|
1675
1764
|
:param pulumi.Input[Union['TriggerBuildArgs', 'TriggerBuildArgsDict']] build: Contents of the build template. Either a filename or build template must be provided.
|
1676
1765
|
Structure is documented below.
|
1677
1766
|
:param pulumi.Input[_builtins.str] description: Human-readable description of the trigger.
|
1767
|
+
:param pulumi.Input[Union['TriggerDeveloperConnectEventConfigArgs', 'TriggerDeveloperConnectEventConfigArgsDict']] developer_connect_event_config: Configuration for triggers that respond to Developer Connect events.
|
1768
|
+
Structure is documented below.
|
1678
1769
|
:param pulumi.Input[_builtins.bool] disabled: Whether the trigger is disabled or not. If true, the trigger will never result in a build.
|
1679
1770
|
:param pulumi.Input[_builtins.str] filename: Path, from the source root, to a file whose contents is used for the template.
|
1680
1771
|
Either a filename or build template must be provided. Set this only when using trigger_template or github.
|
@@ -1793,8 +1884,9 @@ class Trigger(pulumi.CustomResource):
|
|
1793
1884
|
build={
|
1794
1885
|
"steps": [
|
1795
1886
|
{
|
1796
|
-
"name": "gcr.io/cloud-builders/
|
1887
|
+
"name": "gcr.io/cloud-builders/gcloud",
|
1797
1888
|
"args": [
|
1889
|
+
"storage",
|
1798
1890
|
"cp",
|
1799
1891
|
"gs://mybucket/remotefile.zip",
|
1800
1892
|
"localfile.zip",
|
@@ -2347,6 +2439,57 @@ class Trigger(pulumi.CustomResource):
|
|
2347
2439
|
"repo_type": "GITHUB",
|
2348
2440
|
})
|
2349
2441
|
```
|
2442
|
+
### Cloudbuild Trigger Developer Connect Pull
|
2443
|
+
|
2444
|
+
```python
|
2445
|
+
import pulumi
|
2446
|
+
import pulumi_gcp as gcp
|
2447
|
+
|
2448
|
+
developer_connect_trigger_pull = gcp.cloudbuild.Trigger("developer-connect-trigger-pull",
|
2449
|
+
location="us-central1",
|
2450
|
+
developer_connect_event_config={
|
2451
|
+
"git_repository_link": "projects/cryptic-tower-286020/locations/us-central1/connections/prod-bbs-push/gitRepositoryLinks/cbprob-prod-us-central1-push1",
|
2452
|
+
"pull_request": {
|
2453
|
+
"branch": "^master$",
|
2454
|
+
"invert_regex": False,
|
2455
|
+
"comment_control": "COMMENTS_ENABLED",
|
2456
|
+
},
|
2457
|
+
},
|
2458
|
+
filename="cloudbuild.yaml")
|
2459
|
+
```
|
2460
|
+
### Cloudbuild Trigger Developer Connect Push
|
2461
|
+
|
2462
|
+
```python
|
2463
|
+
import pulumi
|
2464
|
+
import pulumi_gcp as gcp
|
2465
|
+
|
2466
|
+
developer_connect_trigger_push = gcp.cloudbuild.Trigger("developer-connect-trigger-push",
|
2467
|
+
location="us-central1",
|
2468
|
+
developer_connect_event_config={
|
2469
|
+
"git_repository_link": "projects/cryptic-tower-286020/locations/us-central1/connections/prod-bbs-push/gitRepositoryLinks/cbprob-prod-us-central1-push1",
|
2470
|
+
"push": {
|
2471
|
+
"tag": "^0.1.*",
|
2472
|
+
"invert_regex": True,
|
2473
|
+
},
|
2474
|
+
},
|
2475
|
+
filename="cloudbuild.yaml")
|
2476
|
+
```
|
2477
|
+
### Cloudbuild Trigger Developer Connect Push Branch
|
2478
|
+
|
2479
|
+
```python
|
2480
|
+
import pulumi
|
2481
|
+
import pulumi_gcp as gcp
|
2482
|
+
|
2483
|
+
dc_trigger_regular_push_branch = gcp.cloudbuild.Trigger("dc-trigger-regular-push-branch",
|
2484
|
+
location="us-central1",
|
2485
|
+
developer_connect_event_config={
|
2486
|
+
"git_repository_link": "projects/cryptic-tower-286020/locations/us-central1/connections/prod-bbs-push/gitRepositoryLinks/cbprob-prod-us-central1-push1",
|
2487
|
+
"push": {
|
2488
|
+
"branch": "main",
|
2489
|
+
},
|
2490
|
+
},
|
2491
|
+
filename="cloudbuild.yaml")
|
2492
|
+
```
|
2350
2493
|
|
2351
2494
|
## Import
|
2352
2495
|
|
@@ -2397,6 +2540,7 @@ class Trigger(pulumi.CustomResource):
|
|
2397
2540
|
bitbucket_server_trigger_config: Optional[pulumi.Input[Union['TriggerBitbucketServerTriggerConfigArgs', 'TriggerBitbucketServerTriggerConfigArgsDict']]] = None,
|
2398
2541
|
build: Optional[pulumi.Input[Union['TriggerBuildArgs', 'TriggerBuildArgsDict']]] = None,
|
2399
2542
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
2543
|
+
developer_connect_event_config: Optional[pulumi.Input[Union['TriggerDeveloperConnectEventConfigArgs', 'TriggerDeveloperConnectEventConfigArgsDict']]] = None,
|
2400
2544
|
disabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
2401
2545
|
filename: Optional[pulumi.Input[_builtins.str]] = None,
|
2402
2546
|
filter: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -2429,6 +2573,7 @@ class Trigger(pulumi.CustomResource):
|
|
2429
2573
|
__props__.__dict__["bitbucket_server_trigger_config"] = bitbucket_server_trigger_config
|
2430
2574
|
__props__.__dict__["build"] = build
|
2431
2575
|
__props__.__dict__["description"] = description
|
2576
|
+
__props__.__dict__["developer_connect_event_config"] = developer_connect_event_config
|
2432
2577
|
__props__.__dict__["disabled"] = disabled
|
2433
2578
|
__props__.__dict__["filename"] = filename
|
2434
2579
|
__props__.__dict__["filter"] = filter
|
@@ -2465,6 +2610,7 @@ class Trigger(pulumi.CustomResource):
|
|
2465
2610
|
build: Optional[pulumi.Input[Union['TriggerBuildArgs', 'TriggerBuildArgsDict']]] = None,
|
2466
2611
|
create_time: Optional[pulumi.Input[_builtins.str]] = None,
|
2467
2612
|
description: Optional[pulumi.Input[_builtins.str]] = None,
|
2613
|
+
developer_connect_event_config: Optional[pulumi.Input[Union['TriggerDeveloperConnectEventConfigArgs', 'TriggerDeveloperConnectEventConfigArgsDict']]] = None,
|
2468
2614
|
disabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
2469
2615
|
filename: Optional[pulumi.Input[_builtins.str]] = None,
|
2470
2616
|
filter: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -2502,6 +2648,8 @@ class Trigger(pulumi.CustomResource):
|
|
2502
2648
|
Structure is documented below.
|
2503
2649
|
:param pulumi.Input[_builtins.str] create_time: Time when the trigger was created.
|
2504
2650
|
:param pulumi.Input[_builtins.str] description: Human-readable description of the trigger.
|
2651
|
+
:param pulumi.Input[Union['TriggerDeveloperConnectEventConfigArgs', 'TriggerDeveloperConnectEventConfigArgsDict']] developer_connect_event_config: Configuration for triggers that respond to Developer Connect events.
|
2652
|
+
Structure is documented below.
|
2505
2653
|
:param pulumi.Input[_builtins.bool] disabled: Whether the trigger is disabled or not. If true, the trigger will never result in a build.
|
2506
2654
|
:param pulumi.Input[_builtins.str] filename: Path, from the source root, to a file whose contents is used for the template.
|
2507
2655
|
Either a filename or build template must be provided. Set this only when using trigger_template or github.
|
@@ -2577,6 +2725,7 @@ class Trigger(pulumi.CustomResource):
|
|
2577
2725
|
__props__.__dict__["build"] = build
|
2578
2726
|
__props__.__dict__["create_time"] = create_time
|
2579
2727
|
__props__.__dict__["description"] = description
|
2728
|
+
__props__.__dict__["developer_connect_event_config"] = developer_connect_event_config
|
2580
2729
|
__props__.__dict__["disabled"] = disabled
|
2581
2730
|
__props__.__dict__["filename"] = filename
|
2582
2731
|
__props__.__dict__["filter"] = filter
|
@@ -2644,6 +2793,15 @@ class Trigger(pulumi.CustomResource):
|
|
2644
2793
|
"""
|
2645
2794
|
return pulumi.get(self, "description")
|
2646
2795
|
|
2796
|
+
@_builtins.property
|
2797
|
+
@pulumi.getter(name="developerConnectEventConfig")
|
2798
|
+
def developer_connect_event_config(self) -> pulumi.Output[Optional['outputs.TriggerDeveloperConnectEventConfig']]:
|
2799
|
+
"""
|
2800
|
+
Configuration for triggers that respond to Developer Connect events.
|
2801
|
+
Structure is documented below.
|
2802
|
+
"""
|
2803
|
+
return pulumi.get(self, "developer_connect_event_config")
|
2804
|
+
|
2647
2805
|
@_builtins.property
|
2648
2806
|
@pulumi.getter
|
2649
2807
|
def disabled(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
@@ -445,9 +445,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
445
445
|
import pulumi
|
446
446
|
import pulumi_gcp as gcp
|
447
447
|
|
448
|
-
servicenetworking = gcp.projects.Service("servicenetworking",
|
449
|
-
service="servicenetworking.googleapis.com",
|
450
|
-
disable_on_destroy=False)
|
448
|
+
servicenetworking = gcp.projects.Service("servicenetworking", service="servicenetworking.googleapis.com")
|
451
449
|
network = gcp.compute.Network("network",
|
452
450
|
name="my-network",
|
453
451
|
auto_create_subnetworks=False,
|
@@ -550,9 +548,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
550
548
|
import pulumi
|
551
549
|
import pulumi_gcp as gcp
|
552
550
|
|
553
|
-
servicenetworking = gcp.projects.Service("servicenetworking",
|
554
|
-
service="servicenetworking.googleapis.com",
|
555
|
-
disable_on_destroy=False)
|
551
|
+
servicenetworking = gcp.projects.Service("servicenetworking", service="servicenetworking.googleapis.com")
|
556
552
|
network = gcp.compute.Network("network",
|
557
553
|
name="my-network",
|
558
554
|
auto_create_subnetworks=False,
|
@@ -629,15 +629,15 @@ class FunctionBuildConfigSourceStorageSourceArgs:
|
|
629
629
|
|
630
630
|
if not MYPY:
|
631
631
|
class FunctionEventTriggerArgsDict(TypedDict):
|
632
|
+
event_type: pulumi.Input[_builtins.str]
|
633
|
+
"""
|
634
|
+
Required. The type of event to observe.
|
635
|
+
"""
|
632
636
|
event_filters: NotRequired[pulumi.Input[Sequence[pulumi.Input['FunctionEventTriggerEventFilterArgsDict']]]]
|
633
637
|
"""
|
634
638
|
Criteria used to filter events.
|
635
639
|
Structure is documented below.
|
636
640
|
"""
|
637
|
-
event_type: NotRequired[pulumi.Input[_builtins.str]]
|
638
|
-
"""
|
639
|
-
Required. The type of event to observe.
|
640
|
-
"""
|
641
641
|
pubsub_topic: NotRequired[pulumi.Input[_builtins.str]]
|
642
642
|
"""
|
643
643
|
The name of a Pub/Sub topic in the same project that will be used
|
@@ -673,17 +673,17 @@ elif False:
|
|
673
673
|
@pulumi.input_type
|
674
674
|
class FunctionEventTriggerArgs:
|
675
675
|
def __init__(__self__, *,
|
676
|
+
event_type: pulumi.Input[_builtins.str],
|
676
677
|
event_filters: Optional[pulumi.Input[Sequence[pulumi.Input['FunctionEventTriggerEventFilterArgs']]]] = None,
|
677
|
-
event_type: Optional[pulumi.Input[_builtins.str]] = None,
|
678
678
|
pubsub_topic: Optional[pulumi.Input[_builtins.str]] = None,
|
679
679
|
retry_policy: Optional[pulumi.Input[_builtins.str]] = None,
|
680
680
|
service_account_email: Optional[pulumi.Input[_builtins.str]] = None,
|
681
681
|
trigger: Optional[pulumi.Input[_builtins.str]] = None,
|
682
682
|
trigger_region: Optional[pulumi.Input[_builtins.str]] = None):
|
683
683
|
"""
|
684
|
+
:param pulumi.Input[_builtins.str] event_type: Required. The type of event to observe.
|
684
685
|
:param pulumi.Input[Sequence[pulumi.Input['FunctionEventTriggerEventFilterArgs']]] event_filters: Criteria used to filter events.
|
685
686
|
Structure is documented below.
|
686
|
-
:param pulumi.Input[_builtins.str] event_type: Required. The type of event to observe.
|
687
687
|
:param pulumi.Input[_builtins.str] pubsub_topic: The name of a Pub/Sub topic in the same project that will be used
|
688
688
|
as the transport topic for the event delivery.
|
689
689
|
:param pulumi.Input[_builtins.str] retry_policy: Describes the retry policy in case of function's execution failure.
|
@@ -699,10 +699,9 @@ class FunctionEventTriggerArgs:
|
|
699
699
|
region as the function, a different region or multi-region, or the global
|
700
700
|
region. If not provided, defaults to the same region as the function.
|
701
701
|
"""
|
702
|
+
pulumi.set(__self__, "event_type", event_type)
|
702
703
|
if event_filters is not None:
|
703
704
|
pulumi.set(__self__, "event_filters", event_filters)
|
704
|
-
if event_type is not None:
|
705
|
-
pulumi.set(__self__, "event_type", event_type)
|
706
705
|
if pubsub_topic is not None:
|
707
706
|
pulumi.set(__self__, "pubsub_topic", pubsub_topic)
|
708
707
|
if retry_policy is not None:
|
@@ -714,6 +713,18 @@ class FunctionEventTriggerArgs:
|
|
714
713
|
if trigger_region is not None:
|
715
714
|
pulumi.set(__self__, "trigger_region", trigger_region)
|
716
715
|
|
716
|
+
@_builtins.property
|
717
|
+
@pulumi.getter(name="eventType")
|
718
|
+
def event_type(self) -> pulumi.Input[_builtins.str]:
|
719
|
+
"""
|
720
|
+
Required. The type of event to observe.
|
721
|
+
"""
|
722
|
+
return pulumi.get(self, "event_type")
|
723
|
+
|
724
|
+
@event_type.setter
|
725
|
+
def event_type(self, value: pulumi.Input[_builtins.str]):
|
726
|
+
pulumi.set(self, "event_type", value)
|
727
|
+
|
717
728
|
@_builtins.property
|
718
729
|
@pulumi.getter(name="eventFilters")
|
719
730
|
def event_filters(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FunctionEventTriggerEventFilterArgs']]]]:
|
@@ -727,18 +738,6 @@ class FunctionEventTriggerArgs:
|
|
727
738
|
def event_filters(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['FunctionEventTriggerEventFilterArgs']]]]):
|
728
739
|
pulumi.set(self, "event_filters", value)
|
729
740
|
|
730
|
-
@_builtins.property
|
731
|
-
@pulumi.getter(name="eventType")
|
732
|
-
def event_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
733
|
-
"""
|
734
|
-
Required. The type of event to observe.
|
735
|
-
"""
|
736
|
-
return pulumi.get(self, "event_type")
|
737
|
-
|
738
|
-
@event_type.setter
|
739
|
-
def event_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
740
|
-
pulumi.set(self, "event_type", value)
|
741
|
-
|
742
741
|
@_builtins.property
|
743
742
|
@pulumi.getter(name="pubsubTopic")
|
744
743
|
def pubsub_topic(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -1055,6 +1054,7 @@ if not MYPY:
|
|
1055
1054
|
"""
|
1056
1055
|
service: NotRequired[pulumi.Input[_builtins.str]]
|
1057
1056
|
"""
|
1057
|
+
(Output)
|
1058
1058
|
Name of the service associated with a Function.
|
1059
1059
|
"""
|
1060
1060
|
service_account_email: NotRequired[pulumi.Input[_builtins.str]]
|
@@ -1127,7 +1127,8 @@ class FunctionServiceConfigArgs:
|
|
1127
1127
|
Structure is documented below.
|
1128
1128
|
:param pulumi.Input[Sequence[pulumi.Input['FunctionServiceConfigSecretVolumeArgs']]] secret_volumes: Secret volumes configuration.
|
1129
1129
|
Structure is documented below.
|
1130
|
-
:param pulumi.Input[_builtins.str] service:
|
1130
|
+
:param pulumi.Input[_builtins.str] service: (Output)
|
1131
|
+
Name of the service associated with a Function.
|
1131
1132
|
:param pulumi.Input[_builtins.str] service_account_email: The email of the service account for this function.
|
1132
1133
|
:param pulumi.Input[_builtins.int] timeout_seconds: The function execution timeout. Execution is considered failed and
|
1133
1134
|
can be terminated if the function is not completed at the end of the
|
@@ -1332,6 +1333,7 @@ class FunctionServiceConfigArgs:
|
|
1332
1333
|
@pulumi.getter
|
1333
1334
|
def service(self) -> Optional[pulumi.Input[_builtins.str]]:
|
1334
1335
|
"""
|
1336
|
+
(Output)
|
1335
1337
|
Name of the service associated with a Function.
|
1336
1338
|
"""
|
1337
1339
|
return pulumi.get(self, "service")
|
@@ -490,10 +490,10 @@ class FunctionEventTrigger(dict):
|
|
490
490
|
@staticmethod
|
491
491
|
def __key_warning(key: str):
|
492
492
|
suggest = None
|
493
|
-
if key == "
|
494
|
-
suggest = "event_filters"
|
495
|
-
elif key == "eventType":
|
493
|
+
if key == "eventType":
|
496
494
|
suggest = "event_type"
|
495
|
+
elif key == "eventFilters":
|
496
|
+
suggest = "event_filters"
|
497
497
|
elif key == "pubsubTopic":
|
498
498
|
suggest = "pubsub_topic"
|
499
499
|
elif key == "retryPolicy":
|
@@ -515,17 +515,17 @@ class FunctionEventTrigger(dict):
|
|
515
515
|
return super().get(key, default)
|
516
516
|
|
517
517
|
def __init__(__self__, *,
|
518
|
+
event_type: _builtins.str,
|
518
519
|
event_filters: Optional[Sequence['outputs.FunctionEventTriggerEventFilter']] = None,
|
519
|
-
event_type: Optional[_builtins.str] = None,
|
520
520
|
pubsub_topic: Optional[_builtins.str] = None,
|
521
521
|
retry_policy: Optional[_builtins.str] = None,
|
522
522
|
service_account_email: Optional[_builtins.str] = None,
|
523
523
|
trigger: Optional[_builtins.str] = None,
|
524
524
|
trigger_region: Optional[_builtins.str] = None):
|
525
525
|
"""
|
526
|
+
:param _builtins.str event_type: Required. The type of event to observe.
|
526
527
|
:param Sequence['FunctionEventTriggerEventFilterArgs'] event_filters: Criteria used to filter events.
|
527
528
|
Structure is documented below.
|
528
|
-
:param _builtins.str event_type: Required. The type of event to observe.
|
529
529
|
:param _builtins.str pubsub_topic: The name of a Pub/Sub topic in the same project that will be used
|
530
530
|
as the transport topic for the event delivery.
|
531
531
|
:param _builtins.str retry_policy: Describes the retry policy in case of function's execution failure.
|
@@ -541,10 +541,9 @@ class FunctionEventTrigger(dict):
|
|
541
541
|
region as the function, a different region or multi-region, or the global
|
542
542
|
region. If not provided, defaults to the same region as the function.
|
543
543
|
"""
|
544
|
+
pulumi.set(__self__, "event_type", event_type)
|
544
545
|
if event_filters is not None:
|
545
546
|
pulumi.set(__self__, "event_filters", event_filters)
|
546
|
-
if event_type is not None:
|
547
|
-
pulumi.set(__self__, "event_type", event_type)
|
548
547
|
if pubsub_topic is not None:
|
549
548
|
pulumi.set(__self__, "pubsub_topic", pubsub_topic)
|
550
549
|
if retry_policy is not None:
|
@@ -556,6 +555,14 @@ class FunctionEventTrigger(dict):
|
|
556
555
|
if trigger_region is not None:
|
557
556
|
pulumi.set(__self__, "trigger_region", trigger_region)
|
558
557
|
|
558
|
+
@_builtins.property
|
559
|
+
@pulumi.getter(name="eventType")
|
560
|
+
def event_type(self) -> _builtins.str:
|
561
|
+
"""
|
562
|
+
Required. The type of event to observe.
|
563
|
+
"""
|
564
|
+
return pulumi.get(self, "event_type")
|
565
|
+
|
559
566
|
@_builtins.property
|
560
567
|
@pulumi.getter(name="eventFilters")
|
561
568
|
def event_filters(self) -> Optional[Sequence['outputs.FunctionEventTriggerEventFilter']]:
|
@@ -565,14 +572,6 @@ class FunctionEventTrigger(dict):
|
|
565
572
|
"""
|
566
573
|
return pulumi.get(self, "event_filters")
|
567
574
|
|
568
|
-
@_builtins.property
|
569
|
-
@pulumi.getter(name="eventType")
|
570
|
-
def event_type(self) -> Optional[_builtins.str]:
|
571
|
-
"""
|
572
|
-
Required. The type of event to observe.
|
573
|
-
"""
|
574
|
-
return pulumi.get(self, "event_type")
|
575
|
-
|
576
575
|
@_builtins.property
|
577
576
|
@pulumi.getter(name="pubsubTopic")
|
578
577
|
def pubsub_topic(self) -> Optional[_builtins.str]:
|
@@ -822,7 +821,8 @@ class FunctionServiceConfig(dict):
|
|
822
821
|
Structure is documented below.
|
823
822
|
:param Sequence['FunctionServiceConfigSecretVolumeArgs'] secret_volumes: Secret volumes configuration.
|
824
823
|
Structure is documented below.
|
825
|
-
:param _builtins.str service:
|
824
|
+
:param _builtins.str service: (Output)
|
825
|
+
Name of the service associated with a Function.
|
826
826
|
:param _builtins.str service_account_email: The email of the service account for this function.
|
827
827
|
:param _builtins.int timeout_seconds: The function execution timeout. Execution is considered failed and
|
828
828
|
can be terminated if the function is not completed at the end of the
|
@@ -979,6 +979,7 @@ class FunctionServiceConfig(dict):
|
|
979
979
|
@pulumi.getter
|
980
980
|
def service(self) -> Optional[_builtins.str]:
|
981
981
|
"""
|
982
|
+
(Output)
|
982
983
|
Name of the service associated with a Function.
|
983
984
|
"""
|
984
985
|
return pulumi.get(self, "service")
|
@@ -177,6 +177,14 @@ class SQuotaAdjusterSettings(pulumi.CustomResource):
|
|
177
177
|
parent: Optional[pulumi.Input[_builtins.str]] = None,
|
178
178
|
__props__=None):
|
179
179
|
"""
|
180
|
+
QuotaAdjusterSettings resource represents your quota adjuster settings for a particular project. When enabled, the quota adjuster monitors your usage for the specified resources and issues quota adjustment requests when resource usage approaches its quota value.
|
181
|
+
|
182
|
+
To get more information about QuotaAdjusterSettings, see:
|
183
|
+
|
184
|
+
* [API documentation](https://cloud.google.com/docs/quotas/reference/rest/v1beta/projects.locations.quotaAdjusterSettings)
|
185
|
+
* How-to Guides
|
186
|
+
* [Cloud Quotas Overview](https://cloud.google.com/docs/quotas/overview)
|
187
|
+
|
180
188
|
## Example Usage
|
181
189
|
|
182
190
|
### Cloudquotas Quota Adjuster Settings Basic
|
@@ -215,6 +223,14 @@ class SQuotaAdjusterSettings(pulumi.CustomResource):
|
|
215
223
|
args: SQuotaAdjusterSettingsArgs,
|
216
224
|
opts: Optional[pulumi.ResourceOptions] = None):
|
217
225
|
"""
|
226
|
+
QuotaAdjusterSettings resource represents your quota adjuster settings for a particular project. When enabled, the quota adjuster monitors your usage for the specified resources and issues quota adjustment requests when resource usage approaches its quota value.
|
227
|
+
|
228
|
+
To get more information about QuotaAdjusterSettings, see:
|
229
|
+
|
230
|
+
* [API documentation](https://cloud.google.com/docs/quotas/reference/rest/v1beta/projects.locations.quotaAdjusterSettings)
|
231
|
+
* How-to Guides
|
232
|
+
* [Cloud Quotas Overview](https://cloud.google.com/docs/quotas/overview)
|
233
|
+
|
218
234
|
## Example Usage
|
219
235
|
|
220
236
|
### Cloudquotas Quota Adjuster Settings Basic
|