pulumi-gcp 8.42.0a1758178363__py3-none-any.whl → 9.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/__init__.py +83 -48
- pulumi_gcp/activedirectory/peering.py +16 -0
- pulumi_gcp/alloydb/backup.py +8 -4
- pulumi_gcp/alloydb/cluster.py +56 -10
- pulumi_gcp/alloydb/get_cluster.py +12 -1
- pulumi_gcp/alloydb/instance.py +10 -4
- pulumi_gcp/alloydb/user.py +8 -4
- pulumi_gcp/apigateway/api_config_iam_binding.py +4 -4
- pulumi_gcp/apigateway/api_config_iam_member.py +4 -4
- pulumi_gcp/apigateway/api_config_iam_policy.py +4 -4
- pulumi_gcp/apigateway/api_iam_binding.py +4 -4
- pulumi_gcp/apigateway/api_iam_member.py +4 -4
- pulumi_gcp/apigateway/api_iam_policy.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_binding.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_member.py +4 -4
- pulumi_gcp/apigateway/gateway_iam_policy.py +4 -4
- pulumi_gcp/apigee/_inputs.py +151 -108
- pulumi_gcp/apigee/keystores_aliases_key_cert_file.py +52 -40
- pulumi_gcp/apigee/outputs.py +92 -88
- pulumi_gcp/artifactregistry/__init__.py +2 -0
- pulumi_gcp/artifactregistry/_inputs.py +0 -12
- pulumi_gcp/artifactregistry/get_npm_package.py +251 -0
- pulumi_gcp/artifactregistry/get_python_package.py +237 -0
- pulumi_gcp/artifactregistry/get_repository.py +12 -1
- pulumi_gcp/artifactregistry/outputs.py +8 -16
- pulumi_gcp/artifactregistry/repository.py +28 -0
- pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +4 -4
- pulumi_gcp/backupdisasterrecovery/get_backup.py +12 -1
- pulumi_gcp/backupdisasterrecovery/get_backup_plan_association.py +4 -0
- pulumi_gcp/backupdisasterrecovery/get_data_source_references.py +135 -0
- pulumi_gcp/backupdisasterrecovery/get_management_server.py +4 -0
- pulumi_gcp/backupdisasterrecovery/outputs.py +103 -0
- pulumi_gcp/beyondcorp/__init__.py +0 -5
- pulumi_gcp/beyondcorp/_inputs.py +0 -312
- pulumi_gcp/beyondcorp/outputs.py +0 -200
- pulumi_gcp/bigquery/_inputs.py +114 -4
- pulumi_gcp/bigquery/app_profile.py +3 -5
- pulumi_gcp/bigquery/outputs.py +75 -5
- pulumi_gcp/bigqueryanalyticshub/data_exchange_subscription.py +20 -0
- pulumi_gcp/bigtable/app_profile.py +1 -1
- pulumi_gcp/bigtable/get_table_iam_policy.py +16 -18
- pulumi_gcp/bigtable/table_iam_binding.py +43 -43
- pulumi_gcp/bigtable/table_iam_member.py +43 -43
- pulumi_gcp/bigtable/table_iam_policy.py +43 -43
- pulumi_gcp/billing/_inputs.py +0 -6
- pulumi_gcp/billing/outputs.py +0 -4
- pulumi_gcp/certificatemanager/__init__.py +1 -0
- pulumi_gcp/certificatemanager/certificate_map_entry.py +7 -7
- pulumi_gcp/certificatemanager/get_dns_authorization.py +229 -0
- pulumi_gcp/certificatemanager/outputs.py +41 -0
- pulumi_gcp/chronicle/_inputs.py +6 -5
- pulumi_gcp/chronicle/outputs.py +4 -3
- pulumi_gcp/chronicle/reference_list.py +53 -5
- pulumi_gcp/cloudasset/get_resources_search_all.py +8 -0
- pulumi_gcp/cloudbuild/_inputs.py +309 -45
- pulumi_gcp/cloudbuild/bitbucket_server_config.py +2 -6
- pulumi_gcp/cloudbuild/get_trigger.py +12 -1
- pulumi_gcp/cloudbuild/outputs.py +380 -30
- pulumi_gcp/cloudbuild/trigger.py +160 -2
- pulumi_gcp/cloudbuild/worker_pool.py +2 -6
- pulumi_gcp/cloudfunctionsv2/_inputs.py +23 -21
- pulumi_gcp/cloudfunctionsv2/outputs.py +17 -16
- pulumi_gcp/cloudquota/s_quota_adjuster_settings.py +16 -0
- pulumi_gcp/cloudrunv2/_inputs.py +80 -26
- pulumi_gcp/cloudrunv2/get_service.py +12 -1
- pulumi_gcp/cloudrunv2/outputs.py +109 -30
- pulumi_gcp/cloudrunv2/service.py +72 -12
- pulumi_gcp/cloudrunv2/worker_pool.py +2 -2
- pulumi_gcp/cloudtasks/queue.py +98 -2
- pulumi_gcp/colab/_inputs.py +1 -114
- pulumi_gcp/colab/outputs.py +1 -106
- pulumi_gcp/compute/_inputs.py +884 -24
- pulumi_gcp/compute/backend_bucket.py +68 -0
- pulumi_gcp/compute/backend_bucket_iam_binding.py +236 -0
- pulumi_gcp/compute/backend_bucket_iam_member.py +236 -0
- pulumi_gcp/compute/backend_bucket_iam_policy.py +236 -0
- pulumi_gcp/compute/backend_service.py +54 -0
- pulumi_gcp/compute/backend_service_iam_binding.py +464 -0
- pulumi_gcp/compute/backend_service_iam_member.py +464 -0
- pulumi_gcp/compute/backend_service_iam_policy.py +464 -0
- pulumi_gcp/compute/cross_site_network.py +16 -0
- pulumi_gcp/compute/future_reservation.py +32 -0
- pulumi_gcp/compute/get_backend_bucket.py +12 -1
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_region_backend_service.py +12 -1
- pulumi_gcp/compute/get_resource_policy.py +2 -20
- pulumi_gcp/compute/machine_image_iam_binding.py +8 -4
- pulumi_gcp/compute/machine_image_iam_member.py +8 -4
- pulumi_gcp/compute/machine_image_iam_policy.py +8 -4
- pulumi_gcp/compute/network_edge_security_service.py +16 -0
- pulumi_gcp/compute/network_firewall_policy_packet_mirroring_rule.py +12 -0
- pulumi_gcp/compute/network_peering_routes_config.py +0 -100
- pulumi_gcp/compute/organization_security_policy.py +83 -51
- pulumi_gcp/compute/outputs.py +799 -16
- pulumi_gcp/compute/packet_mirroring.py +6 -0
- pulumi_gcp/compute/preview_feature.py +16 -0
- pulumi_gcp/compute/public_delegated_prefix.py +42 -0
- pulumi_gcp/compute/region_backend_service.py +54 -0
- pulumi_gcp/compute/region_backend_service_iam_binding.py +488 -0
- pulumi_gcp/compute/region_backend_service_iam_member.py +488 -0
- pulumi_gcp/compute/region_backend_service_iam_policy.py +488 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +1 -3
- pulumi_gcp/compute/region_resize_request.py +24 -0
- pulumi_gcp/compute/region_url_map.py +75 -0
- pulumi_gcp/compute/subnetwork.py +0 -98
- pulumi_gcp/compute/wire_group.py +16 -0
- pulumi_gcp/config/__init__.pyi +2 -2
- pulumi_gcp/config/vars.py +4 -4
- pulumi_gcp/container/_inputs.py +466 -18
- pulumi_gcp/container/cluster.py +16 -7
- pulumi_gcp/container/outputs.py +448 -15
- pulumi_gcp/databasemigrationservice/connection_profile.py +4 -2
- pulumi_gcp/databasemigrationservice/migration_job.py +4 -2
- pulumi_gcp/dataflow/flex_template_job.py +10 -0
- pulumi_gcp/dataform/repository.py +16 -0
- pulumi_gcp/dataform/repository_release_config.py +16 -0
- pulumi_gcp/dataform/repository_workflow_config.py +16 -0
- pulumi_gcp/diagflow/_inputs.py +152 -0
- pulumi_gcp/diagflow/cx_agent.py +425 -0
- pulumi_gcp/diagflow/outputs.py +143 -0
- pulumi_gcp/discoveryengine/__init__.py +1 -0
- pulumi_gcp/discoveryengine/_inputs.py +94 -0
- pulumi_gcp/discoveryengine/acl_config.py +393 -0
- pulumi_gcp/discoveryengine/outputs.py +92 -0
- pulumi_gcp/firebase/android_app.py +16 -0
- pulumi_gcp/firebase/app_check_play_integrity_config.py +4 -8
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +2 -4
- pulumi_gcp/firebase/app_check_service_config.py +6 -12
- pulumi_gcp/firebase/app_hosting_backend.py +4 -8
- pulumi_gcp/firebase/app_hosting_build.py +4 -8
- pulumi_gcp/firebase/app_hosting_traffic.py +6 -12
- pulumi_gcp/firebase/apple_app.py +16 -0
- pulumi_gcp/firebase/data_connect_service.py +4 -8
- pulumi_gcp/firebase/database_instance.py +20 -8
- pulumi_gcp/firebase/extensions_instance.py +12 -0
- pulumi_gcp/firebase/get_android_app.py +4 -2
- pulumi_gcp/firebase/get_apple_app.py +4 -2
- pulumi_gcp/firebase/get_apple_app_config.py +16 -2
- pulumi_gcp/firebase/get_hosting_channel.py +4 -2
- pulumi_gcp/firebase/hosting_channel.py +20 -0
- pulumi_gcp/firebase/hosting_custom_domain.py +20 -0
- pulumi_gcp/firebase/hosting_release.py +16 -0
- pulumi_gcp/firebase/hosting_site.py +16 -0
- pulumi_gcp/firebase/hosting_version.py +16 -0
- pulumi_gcp/firebase/storage_bucket.py +18 -0
- pulumi_gcp/firestore/index.py +118 -3
- pulumi_gcp/folder/service_identity.py +26 -0
- pulumi_gcp/gkehub/_inputs.py +0 -60
- pulumi_gcp/gkehub/get_membership.py +1 -12
- pulumi_gcp/gkehub/membership.py +0 -70
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +16 -0
- pulumi_gcp/gkehub/outputs.py +0 -36
- pulumi_gcp/healthcare/_inputs.py +205 -0
- pulumi_gcp/healthcare/fhir_store.py +128 -0
- pulumi_gcp/healthcare/outputs.py +163 -0
- pulumi_gcp/iam/workload_identity_pool_iam_binding.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_iam_member.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_iam_policy.py +464 -0
- pulumi_gcp/iam/workload_identity_pool_managed_identity.py +18 -0
- pulumi_gcp/iam/workload_identity_pool_namespace.py +20 -0
- pulumi_gcp/iap/__init__.py +8 -0
- pulumi_gcp/iap/_inputs.py +260 -0
- pulumi_gcp/iap/get_web_forwarding_rule_service_iam_policy.py +159 -0
- pulumi_gcp/iap/get_web_region_forwarding_rule_service_iam_policy.py +182 -0
- pulumi_gcp/iap/outputs.py +152 -0
- pulumi_gcp/{beyondcorp/application_iam_binding.py → iap/web_forwarding_rule_service_iam_binding.py} +233 -315
- pulumi_gcp/{beyondcorp/application_iam_member.py → iap/web_forwarding_rule_service_iam_member.py} +233 -315
- pulumi_gcp/{beyondcorp/application_iam_policy.py → iap/web_forwarding_rule_service_iam_policy.py} +212 -294
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_binding.py +1091 -0
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_member.py +1091 -0
- pulumi_gcp/iap/web_region_forwarding_rule_service_iam_policy.py +910 -0
- pulumi_gcp/kms/autokey_config.py +0 -2
- pulumi_gcp/kms/get_kms_secret_asymmetric.py +22 -0
- pulumi_gcp/kms/key_handle.py +0 -2
- pulumi_gcp/logging/organization_sink.py +7 -7
- pulumi_gcp/managedkafka/connect_cluster.py +4 -0
- pulumi_gcp/managedkafka/connector.py +4 -0
- pulumi_gcp/memorystore/get_instance.py +1 -12
- pulumi_gcp/memorystore/instance.py +14 -84
- pulumi_gcp/netapp/storage_pool.py +91 -2
- pulumi_gcp/netapp/volume.py +47 -0
- pulumi_gcp/networkmanagement/__init__.py +1 -0
- pulumi_gcp/networkmanagement/organization_vpc_flow_logs_config.py +1028 -0
- pulumi_gcp/networksecurity/authorization_policy.py +12 -0
- pulumi_gcp/networkservices/gateway.py +7 -7
- pulumi_gcp/networkservices/lb_traffic_extension.py +24 -23
- pulumi_gcp/networkservices/service_lb_policies.py +12 -0
- pulumi_gcp/notebooks/__init__.py +0 -1
- pulumi_gcp/oracledatabase/autonomous_database.py +2 -2
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +3 -3
- pulumi_gcp/projects/service.py +2 -11
- pulumi_gcp/provider.py +20 -20
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/cluster.py +0 -70
- pulumi_gcp/redis/get_cluster.py +1 -12
- pulumi_gcp/resourcemanager/capability.py +16 -0
- pulumi_gcp/runtimeconfig/config.py +16 -0
- pulumi_gcp/runtimeconfig/config_iam_binding.py +236 -0
- pulumi_gcp/runtimeconfig/config_iam_member.py +236 -0
- pulumi_gcp/runtimeconfig/config_iam_policy.py +236 -0
- pulumi_gcp/runtimeconfig/variable.py +10 -0
- pulumi_gcp/saasruntime/__init__.py +12 -0
- pulumi_gcp/saasruntime/_inputs.py +513 -0
- pulumi_gcp/saasruntime/outputs.py +431 -0
- pulumi_gcp/saasruntime/saa_s.py +819 -0
- pulumi_gcp/saasruntime/unit_kind.py +1024 -0
- pulumi_gcp/securesourcemanager/_inputs.py +20 -19
- pulumi_gcp/securesourcemanager/instance.py +7 -7
- pulumi_gcp/securesourcemanager/outputs.py +15 -14
- pulumi_gcp/securesourcemanager/repository.py +7 -7
- pulumi_gcp/serviceaccount/get_account_key.py +1 -21
- pulumi_gcp/servicedirectory/namespace_iam_binding.py +4 -4
- pulumi_gcp/servicedirectory/namespace_iam_member.py +4 -4
- pulumi_gcp/servicedirectory/namespace_iam_policy.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_binding.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_member.py +4 -4
- pulumi_gcp/servicedirectory/service_iam_policy.py +4 -4
- pulumi_gcp/sql/_inputs.py +135 -1
- pulumi_gcp/sql/database_instance.py +94 -0
- pulumi_gcp/sql/get_database_instance.py +23 -1
- pulumi_gcp/sql/outputs.py +276 -3
- pulumi_gcp/sql/user.py +61 -0
- pulumi_gcp/storage/_inputs.py +253 -7
- pulumi_gcp/storage/bucket_object.py +0 -9
- pulumi_gcp/storage/outputs.py +198 -8
- pulumi_gcp/storage/transfer_job.py +47 -0
- pulumi_gcp/tpu/__init__.py +0 -2
- pulumi_gcp/tpu/_inputs.py +0 -93
- pulumi_gcp/tpu/outputs.py +0 -72
- pulumi_gcp/tpu/v2_queued_resource.py +16 -0
- pulumi_gcp/tpu/v2_vm.py +16 -0
- pulumi_gcp/vertex/_inputs.py +8 -9
- pulumi_gcp/vertex/ai_endpoint.py +2 -4
- pulumi_gcp/vertex/ai_feature_group_iam_binding.py +236 -0
- pulumi_gcp/vertex/ai_feature_group_iam_member.py +236 -0
- pulumi_gcp/vertex/ai_feature_group_iam_policy.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +0 -2
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_binding.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_member.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_policy.py +248 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_binding.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_member.py +236 -0
- pulumi_gcp/vertex/ai_feature_online_store_iam_policy.py +236 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_binding.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_member.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_entity_type_iam_policy.py +238 -0
- pulumi_gcp/vertex/ai_feature_store_iam_binding.py +248 -0
- pulumi_gcp/vertex/ai_feature_store_iam_member.py +248 -0
- pulumi_gcp/vertex/ai_feature_store_iam_policy.py +248 -0
- pulumi_gcp/vertex/ai_index.py +24 -23
- pulumi_gcp/vertex/ai_metadata_store.py +16 -0
- pulumi_gcp/vertex/outputs.py +7 -8
- pulumi_gcp/workstations/workstation.py +16 -0
- pulumi_gcp/workstations/workstation_cluster.py +16 -0
- pulumi_gcp/workstations/workstation_config.py +16 -0
- pulumi_gcp/workstations/workstation_config_iam_binding.py +260 -0
- pulumi_gcp/workstations/workstation_config_iam_member.py +260 -0
- pulumi_gcp/workstations/workstation_config_iam_policy.py +260 -0
- pulumi_gcp/workstations/workstation_iam_binding.py +272 -0
- pulumi_gcp/workstations/workstation_iam_member.py +272 -0
- pulumi_gcp/workstations/workstation_iam_policy.py +272 -0
- {pulumi_gcp-8.42.0a1758178363.dist-info → pulumi_gcp-9.0.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.42.0a1758178363.dist-info → pulumi_gcp-9.0.0.dist-info}/RECORD +266 -255
- pulumi_gcp/beyondcorp/application.py +0 -746
- pulumi_gcp/beyondcorp/get_application_iam_policy.py +0 -182
- pulumi_gcp/notebooks/location.py +0 -285
- pulumi_gcp/tpu/get_tensorflow_versions.py +0 -184
- pulumi_gcp/tpu/node.py +0 -1062
- {pulumi_gcp-8.42.0a1758178363.dist-info → pulumi_gcp-9.0.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.42.0a1758178363.dist-info → pulumi_gcp-9.0.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/cloudbuild/_inputs.py
CHANGED
@@ -61,6 +61,12 @@ __all__ = [
|
|
61
61
|
'TriggerBuildStepArgsDict',
|
62
62
|
'TriggerBuildStepVolumeArgs',
|
63
63
|
'TriggerBuildStepVolumeArgsDict',
|
64
|
+
'TriggerDeveloperConnectEventConfigArgs',
|
65
|
+
'TriggerDeveloperConnectEventConfigArgsDict',
|
66
|
+
'TriggerDeveloperConnectEventConfigPullRequestArgs',
|
67
|
+
'TriggerDeveloperConnectEventConfigPullRequestArgsDict',
|
68
|
+
'TriggerDeveloperConnectEventConfigPushArgs',
|
69
|
+
'TriggerDeveloperConnectEventConfigPushArgsDict',
|
64
70
|
'TriggerGitFileSourceArgs',
|
65
71
|
'TriggerGitFileSourceArgsDict',
|
66
72
|
'TriggerGithubArgs',
|
@@ -373,11 +379,10 @@ if not MYPY:
|
|
373
379
|
branch: pulumi.Input[_builtins.str]
|
374
380
|
"""
|
375
381
|
Regex of branches to match.
|
376
|
-
The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
|
377
382
|
"""
|
378
383
|
comment_control: NotRequired[pulumi.Input[_builtins.str]]
|
379
384
|
"""
|
380
|
-
Configure builds to run whether a repository owner or collaborator need to comment
|
385
|
+
Configure builds to run whether a repository owner or collaborator need to comment `/gcbrun`.
|
381
386
|
Possible values are: `COMMENTS_DISABLED`, `COMMENTS_ENABLED`, `COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY`.
|
382
387
|
"""
|
383
388
|
invert_regex: NotRequired[pulumi.Input[_builtins.bool]]
|
@@ -395,8 +400,7 @@ class TriggerBitbucketServerTriggerConfigPullRequestArgs:
|
|
395
400
|
invert_regex: Optional[pulumi.Input[_builtins.bool]] = None):
|
396
401
|
"""
|
397
402
|
:param pulumi.Input[_builtins.str] branch: Regex of branches to match.
|
398
|
-
|
399
|
-
:param pulumi.Input[_builtins.str] comment_control: Configure builds to run whether a repository owner or collaborator need to comment /gcbrun.
|
403
|
+
:param pulumi.Input[_builtins.str] comment_control: Configure builds to run whether a repository owner or collaborator need to comment `/gcbrun`.
|
400
404
|
Possible values are: `COMMENTS_DISABLED`, `COMMENTS_ENABLED`, `COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY`.
|
401
405
|
:param pulumi.Input[_builtins.bool] invert_regex: If true, branches that do NOT match the git_ref will trigger a build.
|
402
406
|
"""
|
@@ -411,7 +415,6 @@ class TriggerBitbucketServerTriggerConfigPullRequestArgs:
|
|
411
415
|
def branch(self) -> pulumi.Input[_builtins.str]:
|
412
416
|
"""
|
413
417
|
Regex of branches to match.
|
414
|
-
The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
|
415
418
|
"""
|
416
419
|
return pulumi.get(self, "branch")
|
417
420
|
|
@@ -423,7 +426,7 @@ class TriggerBitbucketServerTriggerConfigPullRequestArgs:
|
|
423
426
|
@pulumi.getter(name="commentControl")
|
424
427
|
def comment_control(self) -> Optional[pulumi.Input[_builtins.str]]:
|
425
428
|
"""
|
426
|
-
Configure builds to run whether a repository owner or collaborator need to comment
|
429
|
+
Configure builds to run whether a repository owner or collaborator need to comment `/gcbrun`.
|
427
430
|
Possible values are: `COMMENTS_DISABLED`, `COMMENTS_ENABLED`, `COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY`.
|
428
431
|
"""
|
429
432
|
return pulumi.get(self, "comment_control")
|
@@ -449,15 +452,15 @@ if not MYPY:
|
|
449
452
|
class TriggerBitbucketServerTriggerConfigPushArgsDict(TypedDict):
|
450
453
|
branch: NotRequired[pulumi.Input[_builtins.str]]
|
451
454
|
"""
|
452
|
-
Regex of branches to match.
|
455
|
+
Regex of branches to match.
|
453
456
|
"""
|
454
457
|
invert_regex: NotRequired[pulumi.Input[_builtins.bool]]
|
455
458
|
"""
|
456
|
-
|
459
|
+
If true, only trigger a build if the revision regex does NOT match the git_ref regex.
|
457
460
|
"""
|
458
461
|
tag: NotRequired[pulumi.Input[_builtins.str]]
|
459
462
|
"""
|
460
|
-
Regex of tags to match.
|
463
|
+
Regex of tags to match.
|
461
464
|
"""
|
462
465
|
elif False:
|
463
466
|
TriggerBitbucketServerTriggerConfigPushArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -469,9 +472,9 @@ class TriggerBitbucketServerTriggerConfigPushArgs:
|
|
469
472
|
invert_regex: Optional[pulumi.Input[_builtins.bool]] = None,
|
470
473
|
tag: Optional[pulumi.Input[_builtins.str]] = None):
|
471
474
|
"""
|
472
|
-
:param pulumi.Input[_builtins.str] branch: Regex of branches to match.
|
473
|
-
:param pulumi.Input[_builtins.bool] invert_regex:
|
474
|
-
:param pulumi.Input[_builtins.str] tag: Regex of tags to match.
|
475
|
+
:param pulumi.Input[_builtins.str] branch: Regex of branches to match.
|
476
|
+
:param pulumi.Input[_builtins.bool] invert_regex: If true, only trigger a build if the revision regex does NOT match the git_ref regex.
|
477
|
+
:param pulumi.Input[_builtins.str] tag: Regex of tags to match.
|
475
478
|
"""
|
476
479
|
if branch is not None:
|
477
480
|
pulumi.set(__self__, "branch", branch)
|
@@ -484,7 +487,7 @@ class TriggerBitbucketServerTriggerConfigPushArgs:
|
|
484
487
|
@pulumi.getter
|
485
488
|
def branch(self) -> Optional[pulumi.Input[_builtins.str]]:
|
486
489
|
"""
|
487
|
-
Regex of branches to match.
|
490
|
+
Regex of branches to match.
|
488
491
|
"""
|
489
492
|
return pulumi.get(self, "branch")
|
490
493
|
|
@@ -496,7 +499,7 @@ class TriggerBitbucketServerTriggerConfigPushArgs:
|
|
496
499
|
@pulumi.getter(name="invertRegex")
|
497
500
|
def invert_regex(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
498
501
|
"""
|
499
|
-
|
502
|
+
If true, only trigger a build if the revision regex does NOT match the git_ref regex.
|
500
503
|
"""
|
501
504
|
return pulumi.get(self, "invert_regex")
|
502
505
|
|
@@ -508,7 +511,7 @@ class TriggerBitbucketServerTriggerConfigPushArgs:
|
|
508
511
|
@pulumi.getter
|
509
512
|
def tag(self) -> Optional[pulumi.Input[_builtins.str]]:
|
510
513
|
"""
|
511
|
-
Regex of tags to match.
|
514
|
+
Regex of tags to match.
|
512
515
|
"""
|
513
516
|
return pulumi.get(self, "tag")
|
514
517
|
|
@@ -2752,6 +2755,253 @@ class TriggerBuildStepVolumeArgs:
|
|
2752
2755
|
pulumi.set(self, "path", value)
|
2753
2756
|
|
2754
2757
|
|
2758
|
+
if not MYPY:
|
2759
|
+
class TriggerDeveloperConnectEventConfigArgsDict(TypedDict):
|
2760
|
+
git_repository_link: pulumi.Input[_builtins.str]
|
2761
|
+
"""
|
2762
|
+
The Developer Connect Git repository link, formatted as `projects/*/locations/*/connections/*/gitRepositoryLink/*`.
|
2763
|
+
"""
|
2764
|
+
git_repository_link_type: NotRequired[pulumi.Input[_builtins.str]]
|
2765
|
+
"""
|
2766
|
+
(Output)
|
2767
|
+
The type of DeveloperConnect GitRepositoryLink.
|
2768
|
+
"""
|
2769
|
+
pull_request: NotRequired[pulumi.Input['TriggerDeveloperConnectEventConfigPullRequestArgsDict']]
|
2770
|
+
"""
|
2771
|
+
Filter to match changes in pull requests.
|
2772
|
+
Structure is documented below.
|
2773
|
+
"""
|
2774
|
+
push: NotRequired[pulumi.Input['TriggerDeveloperConnectEventConfigPushArgsDict']]
|
2775
|
+
"""
|
2776
|
+
Filter to match changes in refs like branches and tags.
|
2777
|
+
Structure is documented below.
|
2778
|
+
"""
|
2779
|
+
elif False:
|
2780
|
+
TriggerDeveloperConnectEventConfigArgsDict: TypeAlias = Mapping[str, Any]
|
2781
|
+
|
2782
|
+
@pulumi.input_type
|
2783
|
+
class TriggerDeveloperConnectEventConfigArgs:
|
2784
|
+
def __init__(__self__, *,
|
2785
|
+
git_repository_link: pulumi.Input[_builtins.str],
|
2786
|
+
git_repository_link_type: Optional[pulumi.Input[_builtins.str]] = None,
|
2787
|
+
pull_request: Optional[pulumi.Input['TriggerDeveloperConnectEventConfigPullRequestArgs']] = None,
|
2788
|
+
push: Optional[pulumi.Input['TriggerDeveloperConnectEventConfigPushArgs']] = None):
|
2789
|
+
"""
|
2790
|
+
:param pulumi.Input[_builtins.str] git_repository_link: The Developer Connect Git repository link, formatted as `projects/*/locations/*/connections/*/gitRepositoryLink/*`.
|
2791
|
+
:param pulumi.Input[_builtins.str] git_repository_link_type: (Output)
|
2792
|
+
The type of DeveloperConnect GitRepositoryLink.
|
2793
|
+
:param pulumi.Input['TriggerDeveloperConnectEventConfigPullRequestArgs'] pull_request: Filter to match changes in pull requests.
|
2794
|
+
Structure is documented below.
|
2795
|
+
:param pulumi.Input['TriggerDeveloperConnectEventConfigPushArgs'] push: Filter to match changes in refs like branches and tags.
|
2796
|
+
Structure is documented below.
|
2797
|
+
"""
|
2798
|
+
pulumi.set(__self__, "git_repository_link", git_repository_link)
|
2799
|
+
if git_repository_link_type is not None:
|
2800
|
+
pulumi.set(__self__, "git_repository_link_type", git_repository_link_type)
|
2801
|
+
if pull_request is not None:
|
2802
|
+
pulumi.set(__self__, "pull_request", pull_request)
|
2803
|
+
if push is not None:
|
2804
|
+
pulumi.set(__self__, "push", push)
|
2805
|
+
|
2806
|
+
@_builtins.property
|
2807
|
+
@pulumi.getter(name="gitRepositoryLink")
|
2808
|
+
def git_repository_link(self) -> pulumi.Input[_builtins.str]:
|
2809
|
+
"""
|
2810
|
+
The Developer Connect Git repository link, formatted as `projects/*/locations/*/connections/*/gitRepositoryLink/*`.
|
2811
|
+
"""
|
2812
|
+
return pulumi.get(self, "git_repository_link")
|
2813
|
+
|
2814
|
+
@git_repository_link.setter
|
2815
|
+
def git_repository_link(self, value: pulumi.Input[_builtins.str]):
|
2816
|
+
pulumi.set(self, "git_repository_link", value)
|
2817
|
+
|
2818
|
+
@_builtins.property
|
2819
|
+
@pulumi.getter(name="gitRepositoryLinkType")
|
2820
|
+
def git_repository_link_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
2821
|
+
"""
|
2822
|
+
(Output)
|
2823
|
+
The type of DeveloperConnect GitRepositoryLink.
|
2824
|
+
"""
|
2825
|
+
return pulumi.get(self, "git_repository_link_type")
|
2826
|
+
|
2827
|
+
@git_repository_link_type.setter
|
2828
|
+
def git_repository_link_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
2829
|
+
pulumi.set(self, "git_repository_link_type", value)
|
2830
|
+
|
2831
|
+
@_builtins.property
|
2832
|
+
@pulumi.getter(name="pullRequest")
|
2833
|
+
def pull_request(self) -> Optional[pulumi.Input['TriggerDeveloperConnectEventConfigPullRequestArgs']]:
|
2834
|
+
"""
|
2835
|
+
Filter to match changes in pull requests.
|
2836
|
+
Structure is documented below.
|
2837
|
+
"""
|
2838
|
+
return pulumi.get(self, "pull_request")
|
2839
|
+
|
2840
|
+
@pull_request.setter
|
2841
|
+
def pull_request(self, value: Optional[pulumi.Input['TriggerDeveloperConnectEventConfigPullRequestArgs']]):
|
2842
|
+
pulumi.set(self, "pull_request", value)
|
2843
|
+
|
2844
|
+
@_builtins.property
|
2845
|
+
@pulumi.getter
|
2846
|
+
def push(self) -> Optional[pulumi.Input['TriggerDeveloperConnectEventConfigPushArgs']]:
|
2847
|
+
"""
|
2848
|
+
Filter to match changes in refs like branches and tags.
|
2849
|
+
Structure is documented below.
|
2850
|
+
"""
|
2851
|
+
return pulumi.get(self, "push")
|
2852
|
+
|
2853
|
+
@push.setter
|
2854
|
+
def push(self, value: Optional[pulumi.Input['TriggerDeveloperConnectEventConfigPushArgs']]):
|
2855
|
+
pulumi.set(self, "push", value)
|
2856
|
+
|
2857
|
+
|
2858
|
+
if not MYPY:
|
2859
|
+
class TriggerDeveloperConnectEventConfigPullRequestArgsDict(TypedDict):
|
2860
|
+
branch: NotRequired[pulumi.Input[_builtins.str]]
|
2861
|
+
"""
|
2862
|
+
Regex of branches to match.
|
2863
|
+
"""
|
2864
|
+
comment_control: NotRequired[pulumi.Input[_builtins.str]]
|
2865
|
+
"""
|
2866
|
+
Configure builds to run whether a repository owner or collaborator need to comment `/gcbrun`.
|
2867
|
+
Possible values are: `COMMENTS_DISABLED`, `COMMENTS_ENABLED`, `COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY`.
|
2868
|
+
"""
|
2869
|
+
invert_regex: NotRequired[pulumi.Input[_builtins.bool]]
|
2870
|
+
"""
|
2871
|
+
If true, branches that do NOT match the git_ref will trigger a build.
|
2872
|
+
"""
|
2873
|
+
elif False:
|
2874
|
+
TriggerDeveloperConnectEventConfigPullRequestArgsDict: TypeAlias = Mapping[str, Any]
|
2875
|
+
|
2876
|
+
@pulumi.input_type
|
2877
|
+
class TriggerDeveloperConnectEventConfigPullRequestArgs:
|
2878
|
+
def __init__(__self__, *,
|
2879
|
+
branch: Optional[pulumi.Input[_builtins.str]] = None,
|
2880
|
+
comment_control: Optional[pulumi.Input[_builtins.str]] = None,
|
2881
|
+
invert_regex: Optional[pulumi.Input[_builtins.bool]] = None):
|
2882
|
+
"""
|
2883
|
+
:param pulumi.Input[_builtins.str] branch: Regex of branches to match.
|
2884
|
+
:param pulumi.Input[_builtins.str] comment_control: Configure builds to run whether a repository owner or collaborator need to comment `/gcbrun`.
|
2885
|
+
Possible values are: `COMMENTS_DISABLED`, `COMMENTS_ENABLED`, `COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY`.
|
2886
|
+
:param pulumi.Input[_builtins.bool] invert_regex: If true, branches that do NOT match the git_ref will trigger a build.
|
2887
|
+
"""
|
2888
|
+
if branch is not None:
|
2889
|
+
pulumi.set(__self__, "branch", branch)
|
2890
|
+
if comment_control is not None:
|
2891
|
+
pulumi.set(__self__, "comment_control", comment_control)
|
2892
|
+
if invert_regex is not None:
|
2893
|
+
pulumi.set(__self__, "invert_regex", invert_regex)
|
2894
|
+
|
2895
|
+
@_builtins.property
|
2896
|
+
@pulumi.getter
|
2897
|
+
def branch(self) -> Optional[pulumi.Input[_builtins.str]]:
|
2898
|
+
"""
|
2899
|
+
Regex of branches to match.
|
2900
|
+
"""
|
2901
|
+
return pulumi.get(self, "branch")
|
2902
|
+
|
2903
|
+
@branch.setter
|
2904
|
+
def branch(self, value: Optional[pulumi.Input[_builtins.str]]):
|
2905
|
+
pulumi.set(self, "branch", value)
|
2906
|
+
|
2907
|
+
@_builtins.property
|
2908
|
+
@pulumi.getter(name="commentControl")
|
2909
|
+
def comment_control(self) -> Optional[pulumi.Input[_builtins.str]]:
|
2910
|
+
"""
|
2911
|
+
Configure builds to run whether a repository owner or collaborator need to comment `/gcbrun`.
|
2912
|
+
Possible values are: `COMMENTS_DISABLED`, `COMMENTS_ENABLED`, `COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY`.
|
2913
|
+
"""
|
2914
|
+
return pulumi.get(self, "comment_control")
|
2915
|
+
|
2916
|
+
@comment_control.setter
|
2917
|
+
def comment_control(self, value: Optional[pulumi.Input[_builtins.str]]):
|
2918
|
+
pulumi.set(self, "comment_control", value)
|
2919
|
+
|
2920
|
+
@_builtins.property
|
2921
|
+
@pulumi.getter(name="invertRegex")
|
2922
|
+
def invert_regex(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
2923
|
+
"""
|
2924
|
+
If true, branches that do NOT match the git_ref will trigger a build.
|
2925
|
+
"""
|
2926
|
+
return pulumi.get(self, "invert_regex")
|
2927
|
+
|
2928
|
+
@invert_regex.setter
|
2929
|
+
def invert_regex(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
2930
|
+
pulumi.set(self, "invert_regex", value)
|
2931
|
+
|
2932
|
+
|
2933
|
+
if not MYPY:
|
2934
|
+
class TriggerDeveloperConnectEventConfigPushArgsDict(TypedDict):
|
2935
|
+
branch: NotRequired[pulumi.Input[_builtins.str]]
|
2936
|
+
"""
|
2937
|
+
Regex of branches to match.
|
2938
|
+
"""
|
2939
|
+
invert_regex: NotRequired[pulumi.Input[_builtins.bool]]
|
2940
|
+
"""
|
2941
|
+
If true, only trigger a build if the revision regex does NOT match the git_ref regex.
|
2942
|
+
"""
|
2943
|
+
tag: NotRequired[pulumi.Input[_builtins.str]]
|
2944
|
+
"""
|
2945
|
+
Regex of tags to match.
|
2946
|
+
"""
|
2947
|
+
elif False:
|
2948
|
+
TriggerDeveloperConnectEventConfigPushArgsDict: TypeAlias = Mapping[str, Any]
|
2949
|
+
|
2950
|
+
@pulumi.input_type
|
2951
|
+
class TriggerDeveloperConnectEventConfigPushArgs:
|
2952
|
+
def __init__(__self__, *,
|
2953
|
+
branch: Optional[pulumi.Input[_builtins.str]] = None,
|
2954
|
+
invert_regex: Optional[pulumi.Input[_builtins.bool]] = None,
|
2955
|
+
tag: Optional[pulumi.Input[_builtins.str]] = None):
|
2956
|
+
"""
|
2957
|
+
:param pulumi.Input[_builtins.str] branch: Regex of branches to match.
|
2958
|
+
:param pulumi.Input[_builtins.bool] invert_regex: If true, only trigger a build if the revision regex does NOT match the git_ref regex.
|
2959
|
+
:param pulumi.Input[_builtins.str] tag: Regex of tags to match.
|
2960
|
+
"""
|
2961
|
+
if branch is not None:
|
2962
|
+
pulumi.set(__self__, "branch", branch)
|
2963
|
+
if invert_regex is not None:
|
2964
|
+
pulumi.set(__self__, "invert_regex", invert_regex)
|
2965
|
+
if tag is not None:
|
2966
|
+
pulumi.set(__self__, "tag", tag)
|
2967
|
+
|
2968
|
+
@_builtins.property
|
2969
|
+
@pulumi.getter
|
2970
|
+
def branch(self) -> Optional[pulumi.Input[_builtins.str]]:
|
2971
|
+
"""
|
2972
|
+
Regex of branches to match.
|
2973
|
+
"""
|
2974
|
+
return pulumi.get(self, "branch")
|
2975
|
+
|
2976
|
+
@branch.setter
|
2977
|
+
def branch(self, value: Optional[pulumi.Input[_builtins.str]]):
|
2978
|
+
pulumi.set(self, "branch", value)
|
2979
|
+
|
2980
|
+
@_builtins.property
|
2981
|
+
@pulumi.getter(name="invertRegex")
|
2982
|
+
def invert_regex(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
2983
|
+
"""
|
2984
|
+
If true, only trigger a build if the revision regex does NOT match the git_ref regex.
|
2985
|
+
"""
|
2986
|
+
return pulumi.get(self, "invert_regex")
|
2987
|
+
|
2988
|
+
@invert_regex.setter
|
2989
|
+
def invert_regex(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
2990
|
+
pulumi.set(self, "invert_regex", value)
|
2991
|
+
|
2992
|
+
@_builtins.property
|
2993
|
+
@pulumi.getter
|
2994
|
+
def tag(self) -> Optional[pulumi.Input[_builtins.str]]:
|
2995
|
+
"""
|
2996
|
+
Regex of tags to match.
|
2997
|
+
"""
|
2998
|
+
return pulumi.get(self, "tag")
|
2999
|
+
|
3000
|
+
@tag.setter
|
3001
|
+
def tag(self, value: Optional[pulumi.Input[_builtins.str]]):
|
3002
|
+
pulumi.set(self, "tag", value)
|
3003
|
+
|
3004
|
+
|
2755
3005
|
if not MYPY:
|
2756
3006
|
class TriggerGitFileSourceArgsDict(TypedDict):
|
2757
3007
|
path: pulumi.Input[_builtins.str]
|
@@ -3058,11 +3308,10 @@ if not MYPY:
|
|
3058
3308
|
branch: pulumi.Input[_builtins.str]
|
3059
3309
|
"""
|
3060
3310
|
Regex of branches to match.
|
3061
|
-
The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
|
3062
3311
|
"""
|
3063
3312
|
comment_control: NotRequired[pulumi.Input[_builtins.str]]
|
3064
3313
|
"""
|
3065
|
-
Configure builds to run whether a repository owner or collaborator need to comment
|
3314
|
+
Configure builds to run whether a repository owner or collaborator need to comment `/gcbrun`.
|
3066
3315
|
Possible values are: `COMMENTS_DISABLED`, `COMMENTS_ENABLED`, `COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY`.
|
3067
3316
|
"""
|
3068
3317
|
invert_regex: NotRequired[pulumi.Input[_builtins.bool]]
|
@@ -3080,8 +3329,7 @@ class TriggerGithubPullRequestArgs:
|
|
3080
3329
|
invert_regex: Optional[pulumi.Input[_builtins.bool]] = None):
|
3081
3330
|
"""
|
3082
3331
|
:param pulumi.Input[_builtins.str] branch: Regex of branches to match.
|
3083
|
-
|
3084
|
-
:param pulumi.Input[_builtins.str] comment_control: Configure builds to run whether a repository owner or collaborator need to comment /gcbrun.
|
3332
|
+
:param pulumi.Input[_builtins.str] comment_control: Configure builds to run whether a repository owner or collaborator need to comment `/gcbrun`.
|
3085
3333
|
Possible values are: `COMMENTS_DISABLED`, `COMMENTS_ENABLED`, `COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY`.
|
3086
3334
|
:param pulumi.Input[_builtins.bool] invert_regex: If true, branches that do NOT match the git_ref will trigger a build.
|
3087
3335
|
"""
|
@@ -3096,7 +3344,6 @@ class TriggerGithubPullRequestArgs:
|
|
3096
3344
|
def branch(self) -> pulumi.Input[_builtins.str]:
|
3097
3345
|
"""
|
3098
3346
|
Regex of branches to match.
|
3099
|
-
The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
|
3100
3347
|
"""
|
3101
3348
|
return pulumi.get(self, "branch")
|
3102
3349
|
|
@@ -3108,7 +3355,7 @@ class TriggerGithubPullRequestArgs:
|
|
3108
3355
|
@pulumi.getter(name="commentControl")
|
3109
3356
|
def comment_control(self) -> Optional[pulumi.Input[_builtins.str]]:
|
3110
3357
|
"""
|
3111
|
-
Configure builds to run whether a repository owner or collaborator need to comment
|
3358
|
+
Configure builds to run whether a repository owner or collaborator need to comment `/gcbrun`.
|
3112
3359
|
Possible values are: `COMMENTS_DISABLED`, `COMMENTS_ENABLED`, `COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY`.
|
3113
3360
|
"""
|
3114
3361
|
return pulumi.get(self, "comment_control")
|
@@ -3134,15 +3381,15 @@ if not MYPY:
|
|
3134
3381
|
class TriggerGithubPushArgsDict(TypedDict):
|
3135
3382
|
branch: NotRequired[pulumi.Input[_builtins.str]]
|
3136
3383
|
"""
|
3137
|
-
Regex of branches to match.
|
3384
|
+
Regex of branches to match.
|
3138
3385
|
"""
|
3139
3386
|
invert_regex: NotRequired[pulumi.Input[_builtins.bool]]
|
3140
3387
|
"""
|
3141
|
-
|
3388
|
+
If true, only trigger a build if the revision regex does NOT match the git_ref regex.
|
3142
3389
|
"""
|
3143
3390
|
tag: NotRequired[pulumi.Input[_builtins.str]]
|
3144
3391
|
"""
|
3145
|
-
Regex of tags to match.
|
3392
|
+
Regex of tags to match.
|
3146
3393
|
"""
|
3147
3394
|
elif False:
|
3148
3395
|
TriggerGithubPushArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -3154,9 +3401,9 @@ class TriggerGithubPushArgs:
|
|
3154
3401
|
invert_regex: Optional[pulumi.Input[_builtins.bool]] = None,
|
3155
3402
|
tag: Optional[pulumi.Input[_builtins.str]] = None):
|
3156
3403
|
"""
|
3157
|
-
:param pulumi.Input[_builtins.str] branch: Regex of branches to match.
|
3158
|
-
:param pulumi.Input[_builtins.bool] invert_regex:
|
3159
|
-
:param pulumi.Input[_builtins.str] tag: Regex of tags to match.
|
3404
|
+
:param pulumi.Input[_builtins.str] branch: Regex of branches to match.
|
3405
|
+
:param pulumi.Input[_builtins.bool] invert_regex: If true, only trigger a build if the revision regex does NOT match the git_ref regex.
|
3406
|
+
:param pulumi.Input[_builtins.str] tag: Regex of tags to match.
|
3160
3407
|
"""
|
3161
3408
|
if branch is not None:
|
3162
3409
|
pulumi.set(__self__, "branch", branch)
|
@@ -3169,7 +3416,7 @@ class TriggerGithubPushArgs:
|
|
3169
3416
|
@pulumi.getter
|
3170
3417
|
def branch(self) -> Optional[pulumi.Input[_builtins.str]]:
|
3171
3418
|
"""
|
3172
|
-
Regex of branches to match.
|
3419
|
+
Regex of branches to match.
|
3173
3420
|
"""
|
3174
3421
|
return pulumi.get(self, "branch")
|
3175
3422
|
|
@@ -3181,7 +3428,7 @@ class TriggerGithubPushArgs:
|
|
3181
3428
|
@pulumi.getter(name="invertRegex")
|
3182
3429
|
def invert_regex(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
3183
3430
|
"""
|
3184
|
-
|
3431
|
+
If true, only trigger a build if the revision regex does NOT match the git_ref regex.
|
3185
3432
|
"""
|
3186
3433
|
return pulumi.get(self, "invert_regex")
|
3187
3434
|
|
@@ -3193,7 +3440,7 @@ class TriggerGithubPushArgs:
|
|
3193
3440
|
@pulumi.getter
|
3194
3441
|
def tag(self) -> Optional[pulumi.Input[_builtins.str]]:
|
3195
3442
|
"""
|
3196
|
-
Regex of tags to match.
|
3443
|
+
Regex of tags to match.
|
3197
3444
|
"""
|
3198
3445
|
return pulumi.get(self, "tag")
|
3199
3446
|
|
@@ -3385,11 +3632,10 @@ if not MYPY:
|
|
3385
3632
|
branch: NotRequired[pulumi.Input[_builtins.str]]
|
3386
3633
|
"""
|
3387
3634
|
Regex of branches to match.
|
3388
|
-
The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
|
3389
3635
|
"""
|
3390
3636
|
comment_control: NotRequired[pulumi.Input[_builtins.str]]
|
3391
3637
|
"""
|
3392
|
-
Configure builds to run whether a repository owner or collaborator need to comment
|
3638
|
+
Configure builds to run whether a repository owner or collaborator need to comment `/gcbrun`.
|
3393
3639
|
Possible values are: `COMMENTS_DISABLED`, `COMMENTS_ENABLED`, `COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY`.
|
3394
3640
|
"""
|
3395
3641
|
invert_regex: NotRequired[pulumi.Input[_builtins.bool]]
|
@@ -3407,8 +3653,7 @@ class TriggerRepositoryEventConfigPullRequestArgs:
|
|
3407
3653
|
invert_regex: Optional[pulumi.Input[_builtins.bool]] = None):
|
3408
3654
|
"""
|
3409
3655
|
:param pulumi.Input[_builtins.str] branch: Regex of branches to match.
|
3410
|
-
|
3411
|
-
:param pulumi.Input[_builtins.str] comment_control: Configure builds to run whether a repository owner or collaborator need to comment /gcbrun.
|
3656
|
+
:param pulumi.Input[_builtins.str] comment_control: Configure builds to run whether a repository owner or collaborator need to comment `/gcbrun`.
|
3412
3657
|
Possible values are: `COMMENTS_DISABLED`, `COMMENTS_ENABLED`, `COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY`.
|
3413
3658
|
:param pulumi.Input[_builtins.bool] invert_regex: If true, branches that do NOT match the git_ref will trigger a build.
|
3414
3659
|
"""
|
@@ -3424,7 +3669,6 @@ class TriggerRepositoryEventConfigPullRequestArgs:
|
|
3424
3669
|
def branch(self) -> Optional[pulumi.Input[_builtins.str]]:
|
3425
3670
|
"""
|
3426
3671
|
Regex of branches to match.
|
3427
|
-
The syntax of the regular expressions accepted is the syntax accepted by RE2 and described at https://github.com/google/re2/wiki/Syntax
|
3428
3672
|
"""
|
3429
3673
|
return pulumi.get(self, "branch")
|
3430
3674
|
|
@@ -3436,7 +3680,7 @@ class TriggerRepositoryEventConfigPullRequestArgs:
|
|
3436
3680
|
@pulumi.getter(name="commentControl")
|
3437
3681
|
def comment_control(self) -> Optional[pulumi.Input[_builtins.str]]:
|
3438
3682
|
"""
|
3439
|
-
Configure builds to run whether a repository owner or collaborator need to comment
|
3683
|
+
Configure builds to run whether a repository owner or collaborator need to comment `/gcbrun`.
|
3440
3684
|
Possible values are: `COMMENTS_DISABLED`, `COMMENTS_ENABLED`, `COMMENTS_ENABLED_FOR_EXTERNAL_CONTRIBUTORS_ONLY`.
|
3441
3685
|
"""
|
3442
3686
|
return pulumi.get(self, "comment_control")
|
@@ -3462,15 +3706,15 @@ if not MYPY:
|
|
3462
3706
|
class TriggerRepositoryEventConfigPushArgsDict(TypedDict):
|
3463
3707
|
branch: NotRequired[pulumi.Input[_builtins.str]]
|
3464
3708
|
"""
|
3465
|
-
Regex of branches to match.
|
3709
|
+
Regex of branches to match.
|
3466
3710
|
"""
|
3467
3711
|
invert_regex: NotRequired[pulumi.Input[_builtins.bool]]
|
3468
3712
|
"""
|
3469
|
-
|
3713
|
+
If true, only trigger a build if the revision regex does NOT match the git_ref regex.
|
3470
3714
|
"""
|
3471
3715
|
tag: NotRequired[pulumi.Input[_builtins.str]]
|
3472
3716
|
"""
|
3473
|
-
Regex of tags to match.
|
3717
|
+
Regex of tags to match.
|
3474
3718
|
"""
|
3475
3719
|
elif False:
|
3476
3720
|
TriggerRepositoryEventConfigPushArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -3482,9 +3726,9 @@ class TriggerRepositoryEventConfigPushArgs:
|
|
3482
3726
|
invert_regex: Optional[pulumi.Input[_builtins.bool]] = None,
|
3483
3727
|
tag: Optional[pulumi.Input[_builtins.str]] = None):
|
3484
3728
|
"""
|
3485
|
-
:param pulumi.Input[_builtins.str] branch: Regex of branches to match.
|
3486
|
-
:param pulumi.Input[_builtins.bool] invert_regex:
|
3487
|
-
:param pulumi.Input[_builtins.str] tag: Regex of tags to match.
|
3729
|
+
:param pulumi.Input[_builtins.str] branch: Regex of branches to match.
|
3730
|
+
:param pulumi.Input[_builtins.bool] invert_regex: If true, only trigger a build if the revision regex does NOT match the git_ref regex.
|
3731
|
+
:param pulumi.Input[_builtins.str] tag: Regex of tags to match.
|
3488
3732
|
"""
|
3489
3733
|
if branch is not None:
|
3490
3734
|
pulumi.set(__self__, "branch", branch)
|
@@ -3497,7 +3741,7 @@ class TriggerRepositoryEventConfigPushArgs:
|
|
3497
3741
|
@pulumi.getter
|
3498
3742
|
def branch(self) -> Optional[pulumi.Input[_builtins.str]]:
|
3499
3743
|
"""
|
3500
|
-
Regex of branches to match.
|
3744
|
+
Regex of branches to match.
|
3501
3745
|
"""
|
3502
3746
|
return pulumi.get(self, "branch")
|
3503
3747
|
|
@@ -3509,7 +3753,7 @@ class TriggerRepositoryEventConfigPushArgs:
|
|
3509
3753
|
@pulumi.getter(name="invertRegex")
|
3510
3754
|
def invert_regex(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
3511
3755
|
"""
|
3512
|
-
|
3756
|
+
If true, only trigger a build if the revision regex does NOT match the git_ref regex.
|
3513
3757
|
"""
|
3514
3758
|
return pulumi.get(self, "invert_regex")
|
3515
3759
|
|
@@ -3521,7 +3765,7 @@ class TriggerRepositoryEventConfigPushArgs:
|
|
3521
3765
|
@pulumi.getter
|
3522
3766
|
def tag(self) -> Optional[pulumi.Input[_builtins.str]]:
|
3523
3767
|
"""
|
3524
|
-
Regex of tags to match.
|
3768
|
+
Regex of tags to match.
|
3525
3769
|
"""
|
3526
3770
|
return pulumi.get(self, "tag")
|
3527
3771
|
|
@@ -4010,6 +4254,10 @@ if not MYPY:
|
|
4010
4254
|
"""
|
4011
4255
|
Size of the disk attached to the worker, in GB. See [diskSizeGb](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#disksizegb). Specify a value of up to 1000. If `0` is specified, Cloud Build will use a standard disk size.
|
4012
4256
|
"""
|
4257
|
+
enable_nested_virtualization: NotRequired[pulumi.Input[_builtins.bool]]
|
4258
|
+
"""
|
4259
|
+
Enable nested virtualization on the worker, if supported by the machine type. See [Worker pool config file](https://cloud.google.com/build/docs/private-pools/worker-pool-config-file-schema). If left blank, Cloud Build will set this to false.
|
4260
|
+
"""
|
4013
4261
|
machine_type: NotRequired[pulumi.Input[_builtins.str]]
|
4014
4262
|
"""
|
4015
4263
|
Machine type of a worker, such as `n1-standard-1`. See [machineType](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#machinetype). If left blank, Cloud Build will use `n1-standard-1`.
|
@@ -4025,15 +4273,19 @@ elif False:
|
|
4025
4273
|
class WorkerPoolWorkerConfigArgs:
|
4026
4274
|
def __init__(__self__, *,
|
4027
4275
|
disk_size_gb: Optional[pulumi.Input[_builtins.int]] = None,
|
4276
|
+
enable_nested_virtualization: Optional[pulumi.Input[_builtins.bool]] = None,
|
4028
4277
|
machine_type: Optional[pulumi.Input[_builtins.str]] = None,
|
4029
4278
|
no_external_ip: Optional[pulumi.Input[_builtins.bool]] = None):
|
4030
4279
|
"""
|
4031
4280
|
:param pulumi.Input[_builtins.int] disk_size_gb: Size of the disk attached to the worker, in GB. See [diskSizeGb](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#disksizegb). Specify a value of up to 1000. If `0` is specified, Cloud Build will use a standard disk size.
|
4281
|
+
:param pulumi.Input[_builtins.bool] enable_nested_virtualization: Enable nested virtualization on the worker, if supported by the machine type. See [Worker pool config file](https://cloud.google.com/build/docs/private-pools/worker-pool-config-file-schema). If left blank, Cloud Build will set this to false.
|
4032
4282
|
:param pulumi.Input[_builtins.str] machine_type: Machine type of a worker, such as `n1-standard-1`. See [machineType](https://cloud.google.com/build/docs/private-pools/private-pool-config-file-schema#machinetype). If left blank, Cloud Build will use `n1-standard-1`.
|
4033
4283
|
:param pulumi.Input[_builtins.bool] no_external_ip: If true, workers are created without any public address, which prevents network egress to public IPs.
|
4034
4284
|
"""
|
4035
4285
|
if disk_size_gb is not None:
|
4036
4286
|
pulumi.set(__self__, "disk_size_gb", disk_size_gb)
|
4287
|
+
if enable_nested_virtualization is not None:
|
4288
|
+
pulumi.set(__self__, "enable_nested_virtualization", enable_nested_virtualization)
|
4037
4289
|
if machine_type is not None:
|
4038
4290
|
pulumi.set(__self__, "machine_type", machine_type)
|
4039
4291
|
if no_external_ip is not None:
|
@@ -4051,6 +4303,18 @@ class WorkerPoolWorkerConfigArgs:
|
|
4051
4303
|
def disk_size_gb(self, value: Optional[pulumi.Input[_builtins.int]]):
|
4052
4304
|
pulumi.set(self, "disk_size_gb", value)
|
4053
4305
|
|
4306
|
+
@_builtins.property
|
4307
|
+
@pulumi.getter(name="enableNestedVirtualization")
|
4308
|
+
def enable_nested_virtualization(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
4309
|
+
"""
|
4310
|
+
Enable nested virtualization on the worker, if supported by the machine type. See [Worker pool config file](https://cloud.google.com/build/docs/private-pools/worker-pool-config-file-schema). If left blank, Cloud Build will set this to false.
|
4311
|
+
"""
|
4312
|
+
return pulumi.get(self, "enable_nested_virtualization")
|
4313
|
+
|
4314
|
+
@enable_nested_virtualization.setter
|
4315
|
+
def enable_nested_virtualization(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
4316
|
+
pulumi.set(self, "enable_nested_virtualization", value)
|
4317
|
+
|
4054
4318
|
@_builtins.property
|
4055
4319
|
@pulumi.getter(name="machineType")
|
4056
4320
|
def machine_type(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -494,9 +494,7 @@ class BitbucketServerConfig(pulumi.CustomResource):
|
|
494
494
|
import pulumi_std as std
|
495
495
|
|
496
496
|
project = gcp.organizations.get_project()
|
497
|
-
servicenetworking = gcp.projects.Service("servicenetworking",
|
498
|
-
service="servicenetworking.googleapis.com",
|
499
|
-
disable_on_destroy=False)
|
497
|
+
servicenetworking = gcp.projects.Service("servicenetworking", service="servicenetworking.googleapis.com")
|
500
498
|
vpc_network = gcp.compute.Network("vpc_network", name="vpc-network",
|
501
499
|
opts = pulumi.ResourceOptions(depends_on=[servicenetworking]))
|
502
500
|
private_ip_alloc = gcp.compute.GlobalAddress("private_ip_alloc",
|
@@ -648,9 +646,7 @@ class BitbucketServerConfig(pulumi.CustomResource):
|
|
648
646
|
import pulumi_std as std
|
649
647
|
|
650
648
|
project = gcp.organizations.get_project()
|
651
|
-
servicenetworking = gcp.projects.Service("servicenetworking",
|
652
|
-
service="servicenetworking.googleapis.com",
|
653
|
-
disable_on_destroy=False)
|
649
|
+
servicenetworking = gcp.projects.Service("servicenetworking", service="servicenetworking.googleapis.com")
|
654
650
|
vpc_network = gcp.compute.Network("vpc_network", name="vpc-network",
|
655
651
|
opts = pulumi.ResourceOptions(depends_on=[servicenetworking]))
|
656
652
|
private_ip_alloc = gcp.compute.GlobalAddress("private_ip_alloc",
|