pulumi-gcp 7.28.0a1718950249__py3-none-any.whl → 7.29.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/__init__.py +67 -0
- pulumi_gcp/_utilities.py +35 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +58 -74
- pulumi_gcp/accesscontextmanager/access_levels.py +0 -20
- pulumi_gcp/accesscontextmanager/outputs.py +58 -74
- pulumi_gcp/accesscontextmanager/service_perimeter.py +2 -0
- pulumi_gcp/activedirectory/domain.py +14 -14
- pulumi_gcp/activedirectory/domain_trust.py +14 -14
- pulumi_gcp/alloydb/backup.py +8 -8
- pulumi_gcp/alloydb/cluster.py +11 -17
- pulumi_gcp/alloydb/instance.py +8 -8
- pulumi_gcp/alloydb/user.py +8 -8
- pulumi_gcp/apigee/addons_config.py +4 -4
- pulumi_gcp/apigee/endpoint_attachment.py +2 -2
- pulumi_gcp/apigee/env_group.py +2 -2
- pulumi_gcp/apigee/environment.py +2 -2
- pulumi_gcp/apigee/instance.py +8 -8
- pulumi_gcp/apigee/keystores_aliases_self_signed_cert.py +10 -10
- pulumi_gcp/apigee/nat_address.py +2 -2
- pulumi_gcp/apigee/organization.py +6 -6
- pulumi_gcp/apigee/sync_authorization.py +4 -4
- pulumi_gcp/apigee/target_server.py +10 -10
- pulumi_gcp/apphub/service.py +20 -20
- pulumi_gcp/apphub/service_project_attachment.py +8 -8
- pulumi_gcp/applicationintegration/auth_config.py +2 -2
- pulumi_gcp/applicationintegration/client.py +6 -18
- pulumi_gcp/artifactregistry/__init__.py +1 -0
- pulumi_gcp/artifactregistry/_inputs.py +4 -4
- pulumi_gcp/artifactregistry/get_docker_image.py +244 -0
- pulumi_gcp/artifactregistry/outputs.py +6 -6
- pulumi_gcp/artifactregistry/repository.py +10 -10
- pulumi_gcp/backupdisasterrecovery/management_server.py +2 -2
- pulumi_gcp/bigquery/_inputs.py +2 -6
- pulumi_gcp/bigquery/data_transfer_config.py +4 -4
- pulumi_gcp/bigquery/dataset.py +75 -0
- pulumi_gcp/bigquery/get_dataset.py +11 -1
- pulumi_gcp/bigquery/job.py +6 -6
- pulumi_gcp/bigquery/outputs.py +2 -6
- pulumi_gcp/bigtable/_inputs.py +41 -3
- pulumi_gcp/bigtable/instance.py +3 -9
- pulumi_gcp/bigtable/outputs.py +50 -3
- pulumi_gcp/bigtable/table.py +54 -0
- pulumi_gcp/billing/_inputs.py +22 -0
- pulumi_gcp/billing/budget.py +50 -0
- pulumi_gcp/billing/outputs.py +20 -0
- pulumi_gcp/certificateauthority/authority.py +2 -2
- pulumi_gcp/certificateauthority/certificate.py +4 -4
- pulumi_gcp/certificatemanager/_inputs.py +2 -6
- pulumi_gcp/certificatemanager/certificate.py +4 -4
- pulumi_gcp/certificatemanager/certificate_issuance_config.py +2 -2
- pulumi_gcp/certificatemanager/outputs.py +2 -6
- pulumi_gcp/cloudbuild/bitbucket_server_config.py +6 -6
- pulumi_gcp/cloudbuild/trigger.py +2 -2
- pulumi_gcp/cloudbuild/worker_pool.py +6 -6
- pulumi_gcp/cloudbuildv2/_inputs.py +383 -0
- pulumi_gcp/cloudbuildv2/connection.py +112 -4
- pulumi_gcp/cloudbuildv2/outputs.py +421 -0
- pulumi_gcp/cloudbuildv2/repository.py +2 -2
- pulumi_gcp/cloudfunctionsv2/function.py +28 -28
- pulumi_gcp/cloudids/endpoint.py +2 -2
- pulumi_gcp/cloudrun/_inputs.py +3 -9
- pulumi_gcp/cloudrun/outputs.py +3 -9
- pulumi_gcp/cloudrunv2/get_job.py +21 -1
- pulumi_gcp/cloudrunv2/job.py +163 -19
- pulumi_gcp/cloudrunv2/service.py +8 -8
- pulumi_gcp/composer/__init__.py +3 -0
- pulumi_gcp/composer/get_user_workloads_config_map.py +190 -0
- pulumi_gcp/composer/get_user_workloads_secret.py +188 -0
- pulumi_gcp/composer/user_workloads_config_map.py +475 -0
- pulumi_gcp/compute/_inputs.py +87 -2
- pulumi_gcp/compute/backend_service.py +28 -48
- pulumi_gcp/compute/disk.py +3 -9
- pulumi_gcp/compute/firewall.py +3 -9
- pulumi_gcp/compute/forwarding_rule.py +22 -22
- pulumi_gcp/compute/interconnect.py +4 -4
- pulumi_gcp/compute/outputs.py +176 -5
- pulumi_gcp/compute/packet_mirroring.py +2 -2
- pulumi_gcp/compute/project_cloud_armor_tier.py +2 -2
- pulumi_gcp/compute/region_backend_service.py +35 -48
- pulumi_gcp/compute/region_disk.py +3 -9
- pulumi_gcp/compute/region_network_endpoint.py +187 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +49 -9
- pulumi_gcp/compute/region_security_policy_rule.py +2 -2
- pulumi_gcp/compute/region_target_https_proxy.py +7 -14
- pulumi_gcp/compute/route.py +2 -2
- pulumi_gcp/compute/subnetwork.py +2 -6
- pulumi_gcp/compute/target_https_proxy.py +28 -14
- pulumi_gcp/compute/target_instance.py +2 -2
- pulumi_gcp/compute/vpn_gateway.py +2 -2
- pulumi_gcp/compute/vpn_tunnel.py +2 -2
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +4 -8
- pulumi_gcp/container/outputs.py +6 -10
- pulumi_gcp/databasemigrationservice/connection_profile.py +16 -16
- pulumi_gcp/datacatalog/policy_tag.py +2 -2
- pulumi_gcp/datafusion/instance.py +4 -8
- pulumi_gcp/dataplex/asset.py +2 -2
- pulumi_gcp/dataplex/datascan.py +2 -2
- pulumi_gcp/dataproc/_inputs.py +100 -0
- pulumi_gcp/dataproc/metastore_service.py +172 -0
- pulumi_gcp/dataproc/outputs.py +192 -1
- pulumi_gcp/dataproc/workflow_template.py +3 -9
- pulumi_gcp/datastore/data_store_index.py +2 -2
- pulumi_gcp/datastream/stream.py +6 -6
- pulumi_gcp/diagflow/entity_type.py +2 -2
- pulumi_gcp/diagflow/fulfillment.py +2 -2
- pulumi_gcp/diagflow/intent.py +4 -4
- pulumi_gcp/discoveryengine/_inputs.py +227 -0
- pulumi_gcp/discoveryengine/data_store.py +108 -0
- pulumi_gcp/discoveryengine/outputs.py +280 -0
- pulumi_gcp/edgecontainer/_inputs.py +107 -1
- pulumi_gcp/edgecontainer/node_pool.py +2 -2
- pulumi_gcp/edgecontainer/outputs.py +123 -1
- pulumi_gcp/edgecontainer/vpn_connection.py +2 -2
- pulumi_gcp/eventarc/channel.py +2 -2
- pulumi_gcp/eventarc/google_channel_config.py +2 -2
- pulumi_gcp/filestore/instance.py +3 -9
- pulumi_gcp/firebase/app_check_app_attest_config.py +8 -8
- pulumi_gcp/firebase/app_check_debug_token.py +4 -4
- pulumi_gcp/firebase/app_check_device_check_config.py +4 -4
- pulumi_gcp/firebase/app_check_play_integrity_config.py +8 -8
- pulumi_gcp/firebase/app_check_recaptcha_enterprise_config.py +4 -4
- pulumi_gcp/firebase/app_check_recaptcha_v3_config.py +4 -4
- pulumi_gcp/firebase/app_check_service_config.py +6 -6
- pulumi_gcp/firebase/database_instance.py +2 -2
- pulumi_gcp/firestore/database.py +4 -4
- pulumi_gcp/firestore/document.py +12 -12
- pulumi_gcp/folder/access_approval_settings.py +2 -2
- pulumi_gcp/gkehub/_inputs.py +20 -8
- pulumi_gcp/gkehub/membership.py +3 -9
- pulumi_gcp/gkehub/membership_binding.py +4 -4
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +2 -2
- pulumi_gcp/gkehub/outputs.py +19 -9
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +2 -2
- pulumi_gcp/healthcare/fhir_store.py +3 -9
- pulumi_gcp/healthcare/hl7_store.py +3 -9
- pulumi_gcp/integrationconnectors/connection.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +6 -6
- pulumi_gcp/kms/_inputs.py +1 -3
- pulumi_gcp/kms/autokey_config.py +16 -16
- pulumi_gcp/kms/key_handle.py +22 -22
- pulumi_gcp/kms/outputs.py +1 -3
- pulumi_gcp/logging/folder_settings.py +2 -2
- pulumi_gcp/logging/folder_sink.py +14 -14
- pulumi_gcp/logging/linked_dataset.py +2 -2
- pulumi_gcp/logging/organization_settings.py +2 -2
- pulumi_gcp/logging/organization_sink.py +14 -14
- pulumi_gcp/logging/project_bucket_config.py +2 -2
- pulumi_gcp/looker/instance.py +2 -2
- pulumi_gcp/managedkafka/__init__.py +11 -0
- pulumi_gcp/managedkafka/_inputs.py +169 -0
- pulumi_gcp/managedkafka/cluster.py +807 -0
- pulumi_gcp/managedkafka/outputs.py +197 -0
- pulumi_gcp/managedkafka/topic.py +599 -0
- pulumi_gcp/netapp/__init__.py +1 -0
- pulumi_gcp/netapp/active_directory.py +55 -0
- pulumi_gcp/netapp/backup.py +903 -0
- pulumi_gcp/netapp/volume_replication.py +2 -2
- pulumi_gcp/netapp/volume_snapshot.py +2 -2
- pulumi_gcp/networkconnectivity/internal_range.py +2 -2
- pulumi_gcp/networksecurity/gateway_security_policy.py +4 -4
- pulumi_gcp/networksecurity/tls_inspection_policy.py +4 -4
- pulumi_gcp/networkservices/gateway.py +6 -6
- pulumi_gcp/organizations/access_approval_settings.py +2 -2
- pulumi_gcp/parallelstore/instance.py +2 -2
- pulumi_gcp/projects/access_approval_settings.py +5 -11
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/_inputs.py +40 -0
- pulumi_gcp/pubsub/outputs.py +66 -0
- pulumi_gcp/pubsub/schema.py +2 -2
- pulumi_gcp/pubsub/subscription.py +174 -8
- pulumi_gcp/pubsub/topic.py +2 -2
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/cluster.py +4 -4
- pulumi_gcp/redis/get_instance.py +11 -1
- pulumi_gcp/redis/instance.py +49 -2
- pulumi_gcp/secretmanager/secret.py +2 -2
- pulumi_gcp/securesourcemanager/instance.py +6 -6
- pulumi_gcp/securitycenter/__init__.py +3 -0
- pulumi_gcp/securitycenter/_inputs.py +1105 -0
- pulumi_gcp/securitycenter/instance_iam_binding.py +2 -2
- pulumi_gcp/securitycenter/instance_iam_member.py +2 -2
- pulumi_gcp/securitycenter/instance_iam_policy.py +2 -2
- pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py +725 -0
- pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py +713 -0
- pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_module.py +706 -0
- pulumi_gcp/securitycenter/outputs.py +1048 -0
- pulumi_gcp/servicenetworking/__init__.py +1 -0
- pulumi_gcp/servicenetworking/vpc_service_controls.py +511 -0
- pulumi_gcp/sql/_inputs.py +1 -3
- pulumi_gcp/sql/database_instance.py +2 -2
- pulumi_gcp/sql/outputs.py +1 -3
- pulumi_gcp/sql/user.py +21 -7
- pulumi_gcp/storage/get_project_service_account.py +2 -2
- pulumi_gcp/storage/insights_report_config.py +2 -2
- pulumi_gcp/storage/notification.py +2 -2
- pulumi_gcp/storage/transfer_agent_pool.py +2 -2
- pulumi_gcp/storage/transfer_job.py +4 -4
- pulumi_gcp/tpu/v2_vm.py +4 -4
- pulumi_gcp/vertex/_inputs.py +1 -3
- pulumi_gcp/vertex/ai_endpoint.py +2 -2
- pulumi_gcp/vertex/ai_feature_online_store.py +31 -8
- pulumi_gcp/vertex/ai_index_endpoint.py +2 -2
- pulumi_gcp/vertex/ai_tensorboard.py +2 -2
- pulumi_gcp/vertex/outputs.py +1 -3
- pulumi_gcp/vmwareengine/external_address.py +2 -2
- pulumi_gcp/vmwareengine/network.py +4 -4
- pulumi_gcp/vpcaccess/connector.py +2 -8
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/RECORD +214 -200
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-7.28.0a1718950249.dist-info → pulumi_gcp-7.29.0.dist-info}/top_level.txt +0 -0
@@ -484,7 +484,7 @@ class BitbucketServerConfig(pulumi.CustomResource):
|
|
484
484
|
service="servicenetworking.googleapis.com",
|
485
485
|
disable_on_destroy=False)
|
486
486
|
vpc_network = gcp.compute.Network("vpc_network", name="vpc-network",
|
487
|
-
opts=pulumi.ResourceOptions(depends_on=[servicenetworking]))
|
487
|
+
opts = pulumi.ResourceOptions(depends_on=[servicenetworking]))
|
488
488
|
private_ip_alloc = gcp.compute.GlobalAddress("private_ip_alloc",
|
489
489
|
name="private-ip-alloc",
|
490
490
|
purpose="VPC_PEERING",
|
@@ -495,7 +495,7 @@ class BitbucketServerConfig(pulumi.CustomResource):
|
|
495
495
|
network=vpc_network.id,
|
496
496
|
service="servicenetworking.googleapis.com",
|
497
497
|
reserved_peering_ranges=[private_ip_alloc.name],
|
498
|
-
opts=pulumi.ResourceOptions(depends_on=[servicenetworking]))
|
498
|
+
opts = pulumi.ResourceOptions(depends_on=[servicenetworking]))
|
499
499
|
bbs_config_with_peered_network = gcp.cloudbuild.BitbucketServerConfig("bbs-config-with-peered-network",
|
500
500
|
config_id="bbs-config",
|
501
501
|
location="us-central1",
|
@@ -515,7 +515,7 @@ class BitbucketServerConfig(pulumi.CustomResource):
|
|
515
515
|
-----BEGIN CERTIFICATE-----
|
516
516
|
-----END CERTIFICATE-----
|
517
517
|
\"\"\",
|
518
|
-
opts=pulumi.ResourceOptions(depends_on=[default]))
|
518
|
+
opts = pulumi.ResourceOptions(depends_on=[default]))
|
519
519
|
```
|
520
520
|
|
521
521
|
## Import
|
@@ -637,7 +637,7 @@ class BitbucketServerConfig(pulumi.CustomResource):
|
|
637
637
|
service="servicenetworking.googleapis.com",
|
638
638
|
disable_on_destroy=False)
|
639
639
|
vpc_network = gcp.compute.Network("vpc_network", name="vpc-network",
|
640
|
-
opts=pulumi.ResourceOptions(depends_on=[servicenetworking]))
|
640
|
+
opts = pulumi.ResourceOptions(depends_on=[servicenetworking]))
|
641
641
|
private_ip_alloc = gcp.compute.GlobalAddress("private_ip_alloc",
|
642
642
|
name="private-ip-alloc",
|
643
643
|
purpose="VPC_PEERING",
|
@@ -648,7 +648,7 @@ class BitbucketServerConfig(pulumi.CustomResource):
|
|
648
648
|
network=vpc_network.id,
|
649
649
|
service="servicenetworking.googleapis.com",
|
650
650
|
reserved_peering_ranges=[private_ip_alloc.name],
|
651
|
-
opts=pulumi.ResourceOptions(depends_on=[servicenetworking]))
|
651
|
+
opts = pulumi.ResourceOptions(depends_on=[servicenetworking]))
|
652
652
|
bbs_config_with_peered_network = gcp.cloudbuild.BitbucketServerConfig("bbs-config-with-peered-network",
|
653
653
|
config_id="bbs-config",
|
654
654
|
location="us-central1",
|
@@ -668,7 +668,7 @@ class BitbucketServerConfig(pulumi.CustomResource):
|
|
668
668
|
-----BEGIN CERTIFICATE-----
|
669
669
|
-----END CERTIFICATE-----
|
670
670
|
\"\"\",
|
671
|
-
opts=pulumi.ResourceOptions(depends_on=[default]))
|
671
|
+
opts = pulumi.ResourceOptions(depends_on=[default]))
|
672
672
|
```
|
673
673
|
|
674
674
|
## Import
|
pulumi_gcp/cloudbuild/trigger.py
CHANGED
@@ -1179,7 +1179,7 @@ class Trigger(pulumi.CustomResource):
|
|
1179
1179
|
),
|
1180
1180
|
service_account=cloudbuild_service_account.id,
|
1181
1181
|
filename="cloudbuild.yaml",
|
1182
|
-
opts=pulumi.ResourceOptions(depends_on=[
|
1182
|
+
opts = pulumi.ResourceOptions(depends_on=[
|
1183
1183
|
act_as,
|
1184
1184
|
logs_writer,
|
1185
1185
|
]))
|
@@ -1893,7 +1893,7 @@ class Trigger(pulumi.CustomResource):
|
|
1893
1893
|
),
|
1894
1894
|
service_account=cloudbuild_service_account.id,
|
1895
1895
|
filename="cloudbuild.yaml",
|
1896
|
-
opts=pulumi.ResourceOptions(depends_on=[
|
1896
|
+
opts = pulumi.ResourceOptions(depends_on=[
|
1897
1897
|
act_as,
|
1898
1898
|
logs_writer,
|
1899
1899
|
]))
|
@@ -408,7 +408,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
408
408
|
network = gcp.compute.Network("network",
|
409
409
|
name="my-network",
|
410
410
|
auto_create_subnetworks=False,
|
411
|
-
opts=pulumi.ResourceOptions(depends_on=[servicenetworking]))
|
411
|
+
opts = pulumi.ResourceOptions(depends_on=[servicenetworking]))
|
412
412
|
worker_range = gcp.compute.GlobalAddress("worker_range",
|
413
413
|
name="worker-pool-range",
|
414
414
|
purpose="VPC_PEERING",
|
@@ -419,7 +419,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
419
419
|
network=network.id,
|
420
420
|
service="servicenetworking.googleapis.com",
|
421
421
|
reserved_peering_ranges=[worker_range.name],
|
422
|
-
opts=pulumi.ResourceOptions(depends_on=[servicenetworking]))
|
422
|
+
opts = pulumi.ResourceOptions(depends_on=[servicenetworking]))
|
423
423
|
pool = gcp.cloudbuild.WorkerPool("pool",
|
424
424
|
name="my-pool",
|
425
425
|
location="europe-west1",
|
@@ -432,7 +432,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
432
432
|
peered_network=network.id,
|
433
433
|
peered_network_ip_range="/29",
|
434
434
|
),
|
435
|
-
opts=pulumi.ResourceOptions(depends_on=[worker_pool_conn]))
|
435
|
+
opts = pulumi.ResourceOptions(depends_on=[worker_pool_conn]))
|
436
436
|
```
|
437
437
|
|
438
438
|
## Import
|
@@ -511,7 +511,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
511
511
|
network = gcp.compute.Network("network",
|
512
512
|
name="my-network",
|
513
513
|
auto_create_subnetworks=False,
|
514
|
-
opts=pulumi.ResourceOptions(depends_on=[servicenetworking]))
|
514
|
+
opts = pulumi.ResourceOptions(depends_on=[servicenetworking]))
|
515
515
|
worker_range = gcp.compute.GlobalAddress("worker_range",
|
516
516
|
name="worker-pool-range",
|
517
517
|
purpose="VPC_PEERING",
|
@@ -522,7 +522,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
522
522
|
network=network.id,
|
523
523
|
service="servicenetworking.googleapis.com",
|
524
524
|
reserved_peering_ranges=[worker_range.name],
|
525
|
-
opts=pulumi.ResourceOptions(depends_on=[servicenetworking]))
|
525
|
+
opts = pulumi.ResourceOptions(depends_on=[servicenetworking]))
|
526
526
|
pool = gcp.cloudbuild.WorkerPool("pool",
|
527
527
|
name="my-pool",
|
528
528
|
location="europe-west1",
|
@@ -535,7 +535,7 @@ class WorkerPool(pulumi.CustomResource):
|
|
535
535
|
peered_network=network.id,
|
536
536
|
peered_network_ip_range="/29",
|
537
537
|
),
|
538
|
-
opts=pulumi.ResourceOptions(depends_on=[worker_pool_conn]))
|
538
|
+
opts = pulumi.ResourceOptions(depends_on=[worker_pool_conn]))
|
539
539
|
```
|
540
540
|
|
541
541
|
## Import
|
@@ -10,6 +10,13 @@ from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
10
|
from .. import _utilities
|
11
11
|
|
12
12
|
__all__ = [
|
13
|
+
'ConnectionBitbucketCloudConfigArgs',
|
14
|
+
'ConnectionBitbucketCloudConfigAuthorizerCredentialArgs',
|
15
|
+
'ConnectionBitbucketCloudConfigReadAuthorizerCredentialArgs',
|
16
|
+
'ConnectionBitbucketDataCenterConfigArgs',
|
17
|
+
'ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgs',
|
18
|
+
'ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgs',
|
19
|
+
'ConnectionBitbucketDataCenterConfigServiceDirectoryConfigArgs',
|
13
20
|
'ConnectionGithubConfigArgs',
|
14
21
|
'ConnectionGithubConfigAuthorizerCredentialArgs',
|
15
22
|
'ConnectionGithubEnterpriseConfigArgs',
|
@@ -23,6 +30,382 @@ __all__ = [
|
|
23
30
|
'ConnectionInstallationStateArgs',
|
24
31
|
]
|
25
32
|
|
33
|
+
@pulumi.input_type
|
34
|
+
class ConnectionBitbucketCloudConfigArgs:
|
35
|
+
def __init__(__self__, *,
|
36
|
+
authorizer_credential: pulumi.Input['ConnectionBitbucketCloudConfigAuthorizerCredentialArgs'],
|
37
|
+
read_authorizer_credential: pulumi.Input['ConnectionBitbucketCloudConfigReadAuthorizerCredentialArgs'],
|
38
|
+
webhook_secret_secret_version: pulumi.Input[str],
|
39
|
+
workspace: pulumi.Input[str]):
|
40
|
+
"""
|
41
|
+
:param pulumi.Input['ConnectionBitbucketCloudConfigAuthorizerCredentialArgs'] authorizer_credential: Required. An access token with the `webhook`, `repository`, `repository:admin` and `pullrequest` scope access. It can be either a workspace, project or repository access token. It's recommended to use a system account to generate these credentials.
|
42
|
+
Structure is documented below.
|
43
|
+
:param pulumi.Input['ConnectionBitbucketCloudConfigReadAuthorizerCredentialArgs'] read_authorizer_credential: Required. An access token with the `repository` access. It can be either a workspace, project or repository access token. It's recommended to use a system account to generate the credentials.
|
44
|
+
Structure is documented below.
|
45
|
+
:param pulumi.Input[str] webhook_secret_secret_version: Required. Immutable. SecretManager resource containing the webhook secret used to verify webhook events, formatted as `projects/*/secrets/*/versions/*`.
|
46
|
+
:param pulumi.Input[str] workspace: The Bitbucket Cloud Workspace ID to be connected to Google Cloud Platform.
|
47
|
+
"""
|
48
|
+
pulumi.set(__self__, "authorizer_credential", authorizer_credential)
|
49
|
+
pulumi.set(__self__, "read_authorizer_credential", read_authorizer_credential)
|
50
|
+
pulumi.set(__self__, "webhook_secret_secret_version", webhook_secret_secret_version)
|
51
|
+
pulumi.set(__self__, "workspace", workspace)
|
52
|
+
|
53
|
+
@property
|
54
|
+
@pulumi.getter(name="authorizerCredential")
|
55
|
+
def authorizer_credential(self) -> pulumi.Input['ConnectionBitbucketCloudConfigAuthorizerCredentialArgs']:
|
56
|
+
"""
|
57
|
+
Required. An access token with the `webhook`, `repository`, `repository:admin` and `pullrequest` scope access. It can be either a workspace, project or repository access token. It's recommended to use a system account to generate these credentials.
|
58
|
+
Structure is documented below.
|
59
|
+
"""
|
60
|
+
return pulumi.get(self, "authorizer_credential")
|
61
|
+
|
62
|
+
@authorizer_credential.setter
|
63
|
+
def authorizer_credential(self, value: pulumi.Input['ConnectionBitbucketCloudConfigAuthorizerCredentialArgs']):
|
64
|
+
pulumi.set(self, "authorizer_credential", value)
|
65
|
+
|
66
|
+
@property
|
67
|
+
@pulumi.getter(name="readAuthorizerCredential")
|
68
|
+
def read_authorizer_credential(self) -> pulumi.Input['ConnectionBitbucketCloudConfigReadAuthorizerCredentialArgs']:
|
69
|
+
"""
|
70
|
+
Required. An access token with the `repository` access. It can be either a workspace, project or repository access token. It's recommended to use a system account to generate the credentials.
|
71
|
+
Structure is documented below.
|
72
|
+
"""
|
73
|
+
return pulumi.get(self, "read_authorizer_credential")
|
74
|
+
|
75
|
+
@read_authorizer_credential.setter
|
76
|
+
def read_authorizer_credential(self, value: pulumi.Input['ConnectionBitbucketCloudConfigReadAuthorizerCredentialArgs']):
|
77
|
+
pulumi.set(self, "read_authorizer_credential", value)
|
78
|
+
|
79
|
+
@property
|
80
|
+
@pulumi.getter(name="webhookSecretSecretVersion")
|
81
|
+
def webhook_secret_secret_version(self) -> pulumi.Input[str]:
|
82
|
+
"""
|
83
|
+
Required. Immutable. SecretManager resource containing the webhook secret used to verify webhook events, formatted as `projects/*/secrets/*/versions/*`.
|
84
|
+
"""
|
85
|
+
return pulumi.get(self, "webhook_secret_secret_version")
|
86
|
+
|
87
|
+
@webhook_secret_secret_version.setter
|
88
|
+
def webhook_secret_secret_version(self, value: pulumi.Input[str]):
|
89
|
+
pulumi.set(self, "webhook_secret_secret_version", value)
|
90
|
+
|
91
|
+
@property
|
92
|
+
@pulumi.getter
|
93
|
+
def workspace(self) -> pulumi.Input[str]:
|
94
|
+
"""
|
95
|
+
The Bitbucket Cloud Workspace ID to be connected to Google Cloud Platform.
|
96
|
+
"""
|
97
|
+
return pulumi.get(self, "workspace")
|
98
|
+
|
99
|
+
@workspace.setter
|
100
|
+
def workspace(self, value: pulumi.Input[str]):
|
101
|
+
pulumi.set(self, "workspace", value)
|
102
|
+
|
103
|
+
|
104
|
+
@pulumi.input_type
|
105
|
+
class ConnectionBitbucketCloudConfigAuthorizerCredentialArgs:
|
106
|
+
def __init__(__self__, *,
|
107
|
+
user_token_secret_version: pulumi.Input[str],
|
108
|
+
username: Optional[pulumi.Input[str]] = None):
|
109
|
+
"""
|
110
|
+
:param pulumi.Input[str] user_token_secret_version: Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
111
|
+
:param pulumi.Input[str] username: (Output)
|
112
|
+
Output only. The username associated to this token.
|
113
|
+
"""
|
114
|
+
pulumi.set(__self__, "user_token_secret_version", user_token_secret_version)
|
115
|
+
if username is not None:
|
116
|
+
pulumi.set(__self__, "username", username)
|
117
|
+
|
118
|
+
@property
|
119
|
+
@pulumi.getter(name="userTokenSecretVersion")
|
120
|
+
def user_token_secret_version(self) -> pulumi.Input[str]:
|
121
|
+
"""
|
122
|
+
Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
123
|
+
"""
|
124
|
+
return pulumi.get(self, "user_token_secret_version")
|
125
|
+
|
126
|
+
@user_token_secret_version.setter
|
127
|
+
def user_token_secret_version(self, value: pulumi.Input[str]):
|
128
|
+
pulumi.set(self, "user_token_secret_version", value)
|
129
|
+
|
130
|
+
@property
|
131
|
+
@pulumi.getter
|
132
|
+
def username(self) -> Optional[pulumi.Input[str]]:
|
133
|
+
"""
|
134
|
+
(Output)
|
135
|
+
Output only. The username associated to this token.
|
136
|
+
"""
|
137
|
+
return pulumi.get(self, "username")
|
138
|
+
|
139
|
+
@username.setter
|
140
|
+
def username(self, value: Optional[pulumi.Input[str]]):
|
141
|
+
pulumi.set(self, "username", value)
|
142
|
+
|
143
|
+
|
144
|
+
@pulumi.input_type
|
145
|
+
class ConnectionBitbucketCloudConfigReadAuthorizerCredentialArgs:
|
146
|
+
def __init__(__self__, *,
|
147
|
+
user_token_secret_version: pulumi.Input[str],
|
148
|
+
username: Optional[pulumi.Input[str]] = None):
|
149
|
+
"""
|
150
|
+
:param pulumi.Input[str] user_token_secret_version: Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
151
|
+
:param pulumi.Input[str] username: (Output)
|
152
|
+
Output only. The username associated to this token.
|
153
|
+
"""
|
154
|
+
pulumi.set(__self__, "user_token_secret_version", user_token_secret_version)
|
155
|
+
if username is not None:
|
156
|
+
pulumi.set(__self__, "username", username)
|
157
|
+
|
158
|
+
@property
|
159
|
+
@pulumi.getter(name="userTokenSecretVersion")
|
160
|
+
def user_token_secret_version(self) -> pulumi.Input[str]:
|
161
|
+
"""
|
162
|
+
Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
163
|
+
"""
|
164
|
+
return pulumi.get(self, "user_token_secret_version")
|
165
|
+
|
166
|
+
@user_token_secret_version.setter
|
167
|
+
def user_token_secret_version(self, value: pulumi.Input[str]):
|
168
|
+
pulumi.set(self, "user_token_secret_version", value)
|
169
|
+
|
170
|
+
@property
|
171
|
+
@pulumi.getter
|
172
|
+
def username(self) -> Optional[pulumi.Input[str]]:
|
173
|
+
"""
|
174
|
+
(Output)
|
175
|
+
Output only. The username associated to this token.
|
176
|
+
"""
|
177
|
+
return pulumi.get(self, "username")
|
178
|
+
|
179
|
+
@username.setter
|
180
|
+
def username(self, value: Optional[pulumi.Input[str]]):
|
181
|
+
pulumi.set(self, "username", value)
|
182
|
+
|
183
|
+
|
184
|
+
@pulumi.input_type
|
185
|
+
class ConnectionBitbucketDataCenterConfigArgs:
|
186
|
+
def __init__(__self__, *,
|
187
|
+
authorizer_credential: pulumi.Input['ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgs'],
|
188
|
+
host_uri: pulumi.Input[str],
|
189
|
+
read_authorizer_credential: pulumi.Input['ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgs'],
|
190
|
+
webhook_secret_secret_version: pulumi.Input[str],
|
191
|
+
server_version: Optional[pulumi.Input[str]] = None,
|
192
|
+
service_directory_config: Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigServiceDirectoryConfigArgs']] = None,
|
193
|
+
ssl_ca: Optional[pulumi.Input[str]] = None):
|
194
|
+
"""
|
195
|
+
:param pulumi.Input['ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgs'] authorizer_credential: Required. A http access token with the `REPO_ADMIN` scope access.
|
196
|
+
Structure is documented below.
|
197
|
+
:param pulumi.Input[str] host_uri: The URI of the Bitbucket Data Center host this connection is for.
|
198
|
+
:param pulumi.Input['ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgs'] read_authorizer_credential: Required. A http access token with the `REPO_READ` access.
|
199
|
+
Structure is documented below.
|
200
|
+
:param pulumi.Input[str] webhook_secret_secret_version: Required. Immutable. SecretManager resource containing the webhook secret used to verify webhook events, formatted as `projects/*/secrets/*/versions/*`.
|
201
|
+
:param pulumi.Input[str] server_version: (Output)
|
202
|
+
Output only. Version of the Bitbucket Data Center running on the `host_uri`.
|
203
|
+
:param pulumi.Input['ConnectionBitbucketDataCenterConfigServiceDirectoryConfigArgs'] service_directory_config: Configuration for using Service Directory to privately connect to a Bitbucket Data Center. This should only be set if the Bitbucket Data Center is hosted on-premises and not reachable by public internet. If this field is left empty, calls to the Bitbucket Data Center will be made over the public internet.
|
204
|
+
Structure is documented below.
|
205
|
+
:param pulumi.Input[str] ssl_ca: SSL certificate to use for requests to the Bitbucket Data Center.
|
206
|
+
"""
|
207
|
+
pulumi.set(__self__, "authorizer_credential", authorizer_credential)
|
208
|
+
pulumi.set(__self__, "host_uri", host_uri)
|
209
|
+
pulumi.set(__self__, "read_authorizer_credential", read_authorizer_credential)
|
210
|
+
pulumi.set(__self__, "webhook_secret_secret_version", webhook_secret_secret_version)
|
211
|
+
if server_version is not None:
|
212
|
+
pulumi.set(__self__, "server_version", server_version)
|
213
|
+
if service_directory_config is not None:
|
214
|
+
pulumi.set(__self__, "service_directory_config", service_directory_config)
|
215
|
+
if ssl_ca is not None:
|
216
|
+
pulumi.set(__self__, "ssl_ca", ssl_ca)
|
217
|
+
|
218
|
+
@property
|
219
|
+
@pulumi.getter(name="authorizerCredential")
|
220
|
+
def authorizer_credential(self) -> pulumi.Input['ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgs']:
|
221
|
+
"""
|
222
|
+
Required. A http access token with the `REPO_ADMIN` scope access.
|
223
|
+
Structure is documented below.
|
224
|
+
"""
|
225
|
+
return pulumi.get(self, "authorizer_credential")
|
226
|
+
|
227
|
+
@authorizer_credential.setter
|
228
|
+
def authorizer_credential(self, value: pulumi.Input['ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgs']):
|
229
|
+
pulumi.set(self, "authorizer_credential", value)
|
230
|
+
|
231
|
+
@property
|
232
|
+
@pulumi.getter(name="hostUri")
|
233
|
+
def host_uri(self) -> pulumi.Input[str]:
|
234
|
+
"""
|
235
|
+
The URI of the Bitbucket Data Center host this connection is for.
|
236
|
+
"""
|
237
|
+
return pulumi.get(self, "host_uri")
|
238
|
+
|
239
|
+
@host_uri.setter
|
240
|
+
def host_uri(self, value: pulumi.Input[str]):
|
241
|
+
pulumi.set(self, "host_uri", value)
|
242
|
+
|
243
|
+
@property
|
244
|
+
@pulumi.getter(name="readAuthorizerCredential")
|
245
|
+
def read_authorizer_credential(self) -> pulumi.Input['ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgs']:
|
246
|
+
"""
|
247
|
+
Required. A http access token with the `REPO_READ` access.
|
248
|
+
Structure is documented below.
|
249
|
+
"""
|
250
|
+
return pulumi.get(self, "read_authorizer_credential")
|
251
|
+
|
252
|
+
@read_authorizer_credential.setter
|
253
|
+
def read_authorizer_credential(self, value: pulumi.Input['ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgs']):
|
254
|
+
pulumi.set(self, "read_authorizer_credential", value)
|
255
|
+
|
256
|
+
@property
|
257
|
+
@pulumi.getter(name="webhookSecretSecretVersion")
|
258
|
+
def webhook_secret_secret_version(self) -> pulumi.Input[str]:
|
259
|
+
"""
|
260
|
+
Required. Immutable. SecretManager resource containing the webhook secret used to verify webhook events, formatted as `projects/*/secrets/*/versions/*`.
|
261
|
+
"""
|
262
|
+
return pulumi.get(self, "webhook_secret_secret_version")
|
263
|
+
|
264
|
+
@webhook_secret_secret_version.setter
|
265
|
+
def webhook_secret_secret_version(self, value: pulumi.Input[str]):
|
266
|
+
pulumi.set(self, "webhook_secret_secret_version", value)
|
267
|
+
|
268
|
+
@property
|
269
|
+
@pulumi.getter(name="serverVersion")
|
270
|
+
def server_version(self) -> Optional[pulumi.Input[str]]:
|
271
|
+
"""
|
272
|
+
(Output)
|
273
|
+
Output only. Version of the Bitbucket Data Center running on the `host_uri`.
|
274
|
+
"""
|
275
|
+
return pulumi.get(self, "server_version")
|
276
|
+
|
277
|
+
@server_version.setter
|
278
|
+
def server_version(self, value: Optional[pulumi.Input[str]]):
|
279
|
+
pulumi.set(self, "server_version", value)
|
280
|
+
|
281
|
+
@property
|
282
|
+
@pulumi.getter(name="serviceDirectoryConfig")
|
283
|
+
def service_directory_config(self) -> Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigServiceDirectoryConfigArgs']]:
|
284
|
+
"""
|
285
|
+
Configuration for using Service Directory to privately connect to a Bitbucket Data Center. This should only be set if the Bitbucket Data Center is hosted on-premises and not reachable by public internet. If this field is left empty, calls to the Bitbucket Data Center will be made over the public internet.
|
286
|
+
Structure is documented below.
|
287
|
+
"""
|
288
|
+
return pulumi.get(self, "service_directory_config")
|
289
|
+
|
290
|
+
@service_directory_config.setter
|
291
|
+
def service_directory_config(self, value: Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigServiceDirectoryConfigArgs']]):
|
292
|
+
pulumi.set(self, "service_directory_config", value)
|
293
|
+
|
294
|
+
@property
|
295
|
+
@pulumi.getter(name="sslCa")
|
296
|
+
def ssl_ca(self) -> Optional[pulumi.Input[str]]:
|
297
|
+
"""
|
298
|
+
SSL certificate to use for requests to the Bitbucket Data Center.
|
299
|
+
"""
|
300
|
+
return pulumi.get(self, "ssl_ca")
|
301
|
+
|
302
|
+
@ssl_ca.setter
|
303
|
+
def ssl_ca(self, value: Optional[pulumi.Input[str]]):
|
304
|
+
pulumi.set(self, "ssl_ca", value)
|
305
|
+
|
306
|
+
|
307
|
+
@pulumi.input_type
|
308
|
+
class ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgs:
|
309
|
+
def __init__(__self__, *,
|
310
|
+
user_token_secret_version: pulumi.Input[str],
|
311
|
+
username: Optional[pulumi.Input[str]] = None):
|
312
|
+
"""
|
313
|
+
:param pulumi.Input[str] user_token_secret_version: Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
314
|
+
:param pulumi.Input[str] username: (Output)
|
315
|
+
Output only. The username associated to this token.
|
316
|
+
"""
|
317
|
+
pulumi.set(__self__, "user_token_secret_version", user_token_secret_version)
|
318
|
+
if username is not None:
|
319
|
+
pulumi.set(__self__, "username", username)
|
320
|
+
|
321
|
+
@property
|
322
|
+
@pulumi.getter(name="userTokenSecretVersion")
|
323
|
+
def user_token_secret_version(self) -> pulumi.Input[str]:
|
324
|
+
"""
|
325
|
+
Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
326
|
+
"""
|
327
|
+
return pulumi.get(self, "user_token_secret_version")
|
328
|
+
|
329
|
+
@user_token_secret_version.setter
|
330
|
+
def user_token_secret_version(self, value: pulumi.Input[str]):
|
331
|
+
pulumi.set(self, "user_token_secret_version", value)
|
332
|
+
|
333
|
+
@property
|
334
|
+
@pulumi.getter
|
335
|
+
def username(self) -> Optional[pulumi.Input[str]]:
|
336
|
+
"""
|
337
|
+
(Output)
|
338
|
+
Output only. The username associated to this token.
|
339
|
+
"""
|
340
|
+
return pulumi.get(self, "username")
|
341
|
+
|
342
|
+
@username.setter
|
343
|
+
def username(self, value: Optional[pulumi.Input[str]]):
|
344
|
+
pulumi.set(self, "username", value)
|
345
|
+
|
346
|
+
|
347
|
+
@pulumi.input_type
|
348
|
+
class ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgs:
|
349
|
+
def __init__(__self__, *,
|
350
|
+
user_token_secret_version: pulumi.Input[str],
|
351
|
+
username: Optional[pulumi.Input[str]] = None):
|
352
|
+
"""
|
353
|
+
:param pulumi.Input[str] user_token_secret_version: Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
354
|
+
:param pulumi.Input[str] username: (Output)
|
355
|
+
Output only. The username associated to this token.
|
356
|
+
"""
|
357
|
+
pulumi.set(__self__, "user_token_secret_version", user_token_secret_version)
|
358
|
+
if username is not None:
|
359
|
+
pulumi.set(__self__, "username", username)
|
360
|
+
|
361
|
+
@property
|
362
|
+
@pulumi.getter(name="userTokenSecretVersion")
|
363
|
+
def user_token_secret_version(self) -> pulumi.Input[str]:
|
364
|
+
"""
|
365
|
+
Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
366
|
+
"""
|
367
|
+
return pulumi.get(self, "user_token_secret_version")
|
368
|
+
|
369
|
+
@user_token_secret_version.setter
|
370
|
+
def user_token_secret_version(self, value: pulumi.Input[str]):
|
371
|
+
pulumi.set(self, "user_token_secret_version", value)
|
372
|
+
|
373
|
+
@property
|
374
|
+
@pulumi.getter
|
375
|
+
def username(self) -> Optional[pulumi.Input[str]]:
|
376
|
+
"""
|
377
|
+
(Output)
|
378
|
+
Output only. The username associated to this token.
|
379
|
+
"""
|
380
|
+
return pulumi.get(self, "username")
|
381
|
+
|
382
|
+
@username.setter
|
383
|
+
def username(self, value: Optional[pulumi.Input[str]]):
|
384
|
+
pulumi.set(self, "username", value)
|
385
|
+
|
386
|
+
|
387
|
+
@pulumi.input_type
|
388
|
+
class ConnectionBitbucketDataCenterConfigServiceDirectoryConfigArgs:
|
389
|
+
def __init__(__self__, *,
|
390
|
+
service: pulumi.Input[str]):
|
391
|
+
"""
|
392
|
+
:param pulumi.Input[str] service: Required. The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
|
393
|
+
"""
|
394
|
+
pulumi.set(__self__, "service", service)
|
395
|
+
|
396
|
+
@property
|
397
|
+
@pulumi.getter
|
398
|
+
def service(self) -> pulumi.Input[str]:
|
399
|
+
"""
|
400
|
+
Required. The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
|
401
|
+
"""
|
402
|
+
return pulumi.get(self, "service")
|
403
|
+
|
404
|
+
@service.setter
|
405
|
+
def service(self, value: pulumi.Input[str]):
|
406
|
+
pulumi.set(self, "service", value)
|
407
|
+
|
408
|
+
|
26
409
|
@pulumi.input_type
|
27
410
|
class ConnectionGithubConfigArgs:
|
28
411
|
def __init__(__self__, *,
|