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
@@ -18,6 +18,8 @@ class ConnectionArgs:
|
|
18
18
|
def __init__(__self__, *,
|
19
19
|
location: pulumi.Input[str],
|
20
20
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
21
|
+
bitbucket_cloud_config: Optional[pulumi.Input['ConnectionBitbucketCloudConfigArgs']] = None,
|
22
|
+
bitbucket_data_center_config: Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigArgs']] = None,
|
21
23
|
disabled: Optional[pulumi.Input[bool]] = None,
|
22
24
|
github_config: Optional[pulumi.Input['ConnectionGithubConfigArgs']] = None,
|
23
25
|
github_enterprise_config: Optional[pulumi.Input['ConnectionGithubEnterpriseConfigArgs']] = None,
|
@@ -33,6 +35,10 @@ class ConnectionArgs:
|
|
33
35
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: Allows clients to store small amounts of arbitrary data.
|
34
36
|
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
35
37
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
38
|
+
:param pulumi.Input['ConnectionBitbucketCloudConfigArgs'] bitbucket_cloud_config: Configuration for connections to Bitbucket Cloud.
|
39
|
+
Structure is documented below.
|
40
|
+
:param pulumi.Input['ConnectionBitbucketDataCenterConfigArgs'] bitbucket_data_center_config: Configuration for connections to Bitbucket Data Center.
|
41
|
+
Structure is documented below.
|
36
42
|
:param pulumi.Input[bool] disabled: If disabled is set to true, functionality is disabled for this connection. Repository based API methods and webhooks processing for repositories in this connection will be disabled.
|
37
43
|
:param pulumi.Input['ConnectionGithubConfigArgs'] github_config: Configuration for connections to github.com.
|
38
44
|
Structure is documented below.
|
@@ -47,6 +53,10 @@ class ConnectionArgs:
|
|
47
53
|
pulumi.set(__self__, "location", location)
|
48
54
|
if annotations is not None:
|
49
55
|
pulumi.set(__self__, "annotations", annotations)
|
56
|
+
if bitbucket_cloud_config is not None:
|
57
|
+
pulumi.set(__self__, "bitbucket_cloud_config", bitbucket_cloud_config)
|
58
|
+
if bitbucket_data_center_config is not None:
|
59
|
+
pulumi.set(__self__, "bitbucket_data_center_config", bitbucket_data_center_config)
|
50
60
|
if disabled is not None:
|
51
61
|
pulumi.set(__self__, "disabled", disabled)
|
52
62
|
if github_config is not None:
|
@@ -89,6 +99,32 @@ class ConnectionArgs:
|
|
89
99
|
def annotations(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
90
100
|
pulumi.set(self, "annotations", value)
|
91
101
|
|
102
|
+
@property
|
103
|
+
@pulumi.getter(name="bitbucketCloudConfig")
|
104
|
+
def bitbucket_cloud_config(self) -> Optional[pulumi.Input['ConnectionBitbucketCloudConfigArgs']]:
|
105
|
+
"""
|
106
|
+
Configuration for connections to Bitbucket Cloud.
|
107
|
+
Structure is documented below.
|
108
|
+
"""
|
109
|
+
return pulumi.get(self, "bitbucket_cloud_config")
|
110
|
+
|
111
|
+
@bitbucket_cloud_config.setter
|
112
|
+
def bitbucket_cloud_config(self, value: Optional[pulumi.Input['ConnectionBitbucketCloudConfigArgs']]):
|
113
|
+
pulumi.set(self, "bitbucket_cloud_config", value)
|
114
|
+
|
115
|
+
@property
|
116
|
+
@pulumi.getter(name="bitbucketDataCenterConfig")
|
117
|
+
def bitbucket_data_center_config(self) -> Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigArgs']]:
|
118
|
+
"""
|
119
|
+
Configuration for connections to Bitbucket Data Center.
|
120
|
+
Structure is documented below.
|
121
|
+
"""
|
122
|
+
return pulumi.get(self, "bitbucket_data_center_config")
|
123
|
+
|
124
|
+
@bitbucket_data_center_config.setter
|
125
|
+
def bitbucket_data_center_config(self, value: Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigArgs']]):
|
126
|
+
pulumi.set(self, "bitbucket_data_center_config", value)
|
127
|
+
|
92
128
|
@property
|
93
129
|
@pulumi.getter
|
94
130
|
def disabled(self) -> Optional[pulumi.Input[bool]]:
|
@@ -170,6 +206,8 @@ class ConnectionArgs:
|
|
170
206
|
class _ConnectionState:
|
171
207
|
def __init__(__self__, *,
|
172
208
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
209
|
+
bitbucket_cloud_config: Optional[pulumi.Input['ConnectionBitbucketCloudConfigArgs']] = None,
|
210
|
+
bitbucket_data_center_config: Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigArgs']] = None,
|
173
211
|
create_time: Optional[pulumi.Input[str]] = None,
|
174
212
|
disabled: Optional[pulumi.Input[bool]] = None,
|
175
213
|
effective_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -188,6 +226,10 @@ class _ConnectionState:
|
|
188
226
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: Allows clients to store small amounts of arbitrary data.
|
189
227
|
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
190
228
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
229
|
+
:param pulumi.Input['ConnectionBitbucketCloudConfigArgs'] bitbucket_cloud_config: Configuration for connections to Bitbucket Cloud.
|
230
|
+
Structure is documented below.
|
231
|
+
:param pulumi.Input['ConnectionBitbucketDataCenterConfigArgs'] bitbucket_data_center_config: Configuration for connections to Bitbucket Data Center.
|
232
|
+
Structure is documented below.
|
191
233
|
:param pulumi.Input[str] create_time: Output only. Server assigned timestamp for when the connection was created.
|
192
234
|
:param pulumi.Input[bool] disabled: If disabled is set to true, functionality is disabled for this connection. Repository based API methods and webhooks processing for repositories in this connection will be disabled.
|
193
235
|
:param pulumi.Input[str] etag: This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
|
@@ -211,6 +253,10 @@ class _ConnectionState:
|
|
211
253
|
"""
|
212
254
|
if annotations is not None:
|
213
255
|
pulumi.set(__self__, "annotations", annotations)
|
256
|
+
if bitbucket_cloud_config is not None:
|
257
|
+
pulumi.set(__self__, "bitbucket_cloud_config", bitbucket_cloud_config)
|
258
|
+
if bitbucket_data_center_config is not None:
|
259
|
+
pulumi.set(__self__, "bitbucket_data_center_config", bitbucket_data_center_config)
|
214
260
|
if create_time is not None:
|
215
261
|
pulumi.set(__self__, "create_time", create_time)
|
216
262
|
if disabled is not None:
|
@@ -252,6 +298,32 @@ class _ConnectionState:
|
|
252
298
|
def annotations(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
253
299
|
pulumi.set(self, "annotations", value)
|
254
300
|
|
301
|
+
@property
|
302
|
+
@pulumi.getter(name="bitbucketCloudConfig")
|
303
|
+
def bitbucket_cloud_config(self) -> Optional[pulumi.Input['ConnectionBitbucketCloudConfigArgs']]:
|
304
|
+
"""
|
305
|
+
Configuration for connections to Bitbucket Cloud.
|
306
|
+
Structure is documented below.
|
307
|
+
"""
|
308
|
+
return pulumi.get(self, "bitbucket_cloud_config")
|
309
|
+
|
310
|
+
@bitbucket_cloud_config.setter
|
311
|
+
def bitbucket_cloud_config(self, value: Optional[pulumi.Input['ConnectionBitbucketCloudConfigArgs']]):
|
312
|
+
pulumi.set(self, "bitbucket_cloud_config", value)
|
313
|
+
|
314
|
+
@property
|
315
|
+
@pulumi.getter(name="bitbucketDataCenterConfig")
|
316
|
+
def bitbucket_data_center_config(self) -> Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigArgs']]:
|
317
|
+
"""
|
318
|
+
Configuration for connections to Bitbucket Data Center.
|
319
|
+
Structure is documented below.
|
320
|
+
"""
|
321
|
+
return pulumi.get(self, "bitbucket_data_center_config")
|
322
|
+
|
323
|
+
@bitbucket_data_center_config.setter
|
324
|
+
def bitbucket_data_center_config(self, value: Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigArgs']]):
|
325
|
+
pulumi.set(self, "bitbucket_data_center_config", value)
|
326
|
+
|
255
327
|
@property
|
256
328
|
@pulumi.getter(name="createTime")
|
257
329
|
def create_time(self) -> Optional[pulumi.Input[str]]:
|
@@ -420,6 +492,8 @@ class Connection(pulumi.CustomResource):
|
|
420
492
|
resource_name: str,
|
421
493
|
opts: Optional[pulumi.ResourceOptions] = None,
|
422
494
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
495
|
+
bitbucket_cloud_config: Optional[pulumi.Input[pulumi.InputType['ConnectionBitbucketCloudConfigArgs']]] = None,
|
496
|
+
bitbucket_data_center_config: Optional[pulumi.Input[pulumi.InputType['ConnectionBitbucketDataCenterConfigArgs']]] = None,
|
423
497
|
disabled: Optional[pulumi.Input[bool]] = None,
|
424
498
|
github_config: Optional[pulumi.Input[pulumi.InputType['ConnectionGithubConfigArgs']]] = None,
|
425
499
|
github_enterprise_config: Optional[pulumi.Input[pulumi.InputType['ConnectionGithubEnterpriseConfigArgs']]] = None,
|
@@ -429,7 +503,7 @@ class Connection(pulumi.CustomResource):
|
|
429
503
|
project: Optional[pulumi.Input[str]] = None,
|
430
504
|
__props__=None):
|
431
505
|
"""
|
432
|
-
A connection to a SCM like GitHub, GitHub Enterprise, Bitbucket Data Center or GitLab.
|
506
|
+
A connection to a SCM like GitHub, GitHub Enterprise, Bitbucket Data Center/Cloud or GitLab.
|
433
507
|
|
434
508
|
To get more information about Connection, see:
|
435
509
|
|
@@ -499,7 +573,7 @@ class Connection(pulumi.CustomResource):
|
|
499
573
|
app_slug="gcb-app",
|
500
574
|
app_installation_id=300,
|
501
575
|
),
|
502
|
-
opts=pulumi.ResourceOptions(depends_on=[
|
576
|
+
opts = pulumi.ResourceOptions(depends_on=[
|
503
577
|
policy_pk,
|
504
578
|
policy_whs,
|
505
579
|
]))
|
@@ -572,6 +646,10 @@ class Connection(pulumi.CustomResource):
|
|
572
646
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: Allows clients to store small amounts of arbitrary data.
|
573
647
|
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
574
648
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
649
|
+
:param pulumi.Input[pulumi.InputType['ConnectionBitbucketCloudConfigArgs']] bitbucket_cloud_config: Configuration for connections to Bitbucket Cloud.
|
650
|
+
Structure is documented below.
|
651
|
+
:param pulumi.Input[pulumi.InputType['ConnectionBitbucketDataCenterConfigArgs']] bitbucket_data_center_config: Configuration for connections to Bitbucket Data Center.
|
652
|
+
Structure is documented below.
|
575
653
|
:param pulumi.Input[bool] disabled: If disabled is set to true, functionality is disabled for this connection. Repository based API methods and webhooks processing for repositories in this connection will be disabled.
|
576
654
|
:param pulumi.Input[pulumi.InputType['ConnectionGithubConfigArgs']] github_config: Configuration for connections to github.com.
|
577
655
|
Structure is documented below.
|
@@ -594,7 +672,7 @@ class Connection(pulumi.CustomResource):
|
|
594
672
|
args: ConnectionArgs,
|
595
673
|
opts: Optional[pulumi.ResourceOptions] = None):
|
596
674
|
"""
|
597
|
-
A connection to a SCM like GitHub, GitHub Enterprise, Bitbucket Data Center or GitLab.
|
675
|
+
A connection to a SCM like GitHub, GitHub Enterprise, Bitbucket Data Center/Cloud or GitLab.
|
598
676
|
|
599
677
|
To get more information about Connection, see:
|
600
678
|
|
@@ -664,7 +742,7 @@ class Connection(pulumi.CustomResource):
|
|
664
742
|
app_slug="gcb-app",
|
665
743
|
app_installation_id=300,
|
666
744
|
),
|
667
|
-
opts=pulumi.ResourceOptions(depends_on=[
|
745
|
+
opts = pulumi.ResourceOptions(depends_on=[
|
668
746
|
policy_pk,
|
669
747
|
policy_whs,
|
670
748
|
]))
|
@@ -748,6 +826,8 @@ class Connection(pulumi.CustomResource):
|
|
748
826
|
resource_name: str,
|
749
827
|
opts: Optional[pulumi.ResourceOptions] = None,
|
750
828
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
829
|
+
bitbucket_cloud_config: Optional[pulumi.Input[pulumi.InputType['ConnectionBitbucketCloudConfigArgs']]] = None,
|
830
|
+
bitbucket_data_center_config: Optional[pulumi.Input[pulumi.InputType['ConnectionBitbucketDataCenterConfigArgs']]] = None,
|
751
831
|
disabled: Optional[pulumi.Input[bool]] = None,
|
752
832
|
github_config: Optional[pulumi.Input[pulumi.InputType['ConnectionGithubConfigArgs']]] = None,
|
753
833
|
github_enterprise_config: Optional[pulumi.Input[pulumi.InputType['ConnectionGithubEnterpriseConfigArgs']]] = None,
|
@@ -765,6 +845,8 @@ class Connection(pulumi.CustomResource):
|
|
765
845
|
__props__ = ConnectionArgs.__new__(ConnectionArgs)
|
766
846
|
|
767
847
|
__props__.__dict__["annotations"] = annotations
|
848
|
+
__props__.__dict__["bitbucket_cloud_config"] = bitbucket_cloud_config
|
849
|
+
__props__.__dict__["bitbucket_data_center_config"] = bitbucket_data_center_config
|
768
850
|
__props__.__dict__["disabled"] = disabled
|
769
851
|
__props__.__dict__["github_config"] = github_config
|
770
852
|
__props__.__dict__["github_enterprise_config"] = github_enterprise_config
|
@@ -791,6 +873,8 @@ class Connection(pulumi.CustomResource):
|
|
791
873
|
id: pulumi.Input[str],
|
792
874
|
opts: Optional[pulumi.ResourceOptions] = None,
|
793
875
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
876
|
+
bitbucket_cloud_config: Optional[pulumi.Input[pulumi.InputType['ConnectionBitbucketCloudConfigArgs']]] = None,
|
877
|
+
bitbucket_data_center_config: Optional[pulumi.Input[pulumi.InputType['ConnectionBitbucketDataCenterConfigArgs']]] = None,
|
794
878
|
create_time: Optional[pulumi.Input[str]] = None,
|
795
879
|
disabled: Optional[pulumi.Input[bool]] = None,
|
796
880
|
effective_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -814,6 +898,10 @@ class Connection(pulumi.CustomResource):
|
|
814
898
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: Allows clients to store small amounts of arbitrary data.
|
815
899
|
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
816
900
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
901
|
+
:param pulumi.Input[pulumi.InputType['ConnectionBitbucketCloudConfigArgs']] bitbucket_cloud_config: Configuration for connections to Bitbucket Cloud.
|
902
|
+
Structure is documented below.
|
903
|
+
:param pulumi.Input[pulumi.InputType['ConnectionBitbucketDataCenterConfigArgs']] bitbucket_data_center_config: Configuration for connections to Bitbucket Data Center.
|
904
|
+
Structure is documented below.
|
817
905
|
:param pulumi.Input[str] create_time: Output only. Server assigned timestamp for when the connection was created.
|
818
906
|
:param pulumi.Input[bool] disabled: If disabled is set to true, functionality is disabled for this connection. Repository based API methods and webhooks processing for repositories in this connection will be disabled.
|
819
907
|
:param pulumi.Input[str] etag: This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
|
@@ -840,6 +928,8 @@ class Connection(pulumi.CustomResource):
|
|
840
928
|
__props__ = _ConnectionState.__new__(_ConnectionState)
|
841
929
|
|
842
930
|
__props__.__dict__["annotations"] = annotations
|
931
|
+
__props__.__dict__["bitbucket_cloud_config"] = bitbucket_cloud_config
|
932
|
+
__props__.__dict__["bitbucket_data_center_config"] = bitbucket_data_center_config
|
843
933
|
__props__.__dict__["create_time"] = create_time
|
844
934
|
__props__.__dict__["disabled"] = disabled
|
845
935
|
__props__.__dict__["effective_annotations"] = effective_annotations
|
@@ -865,6 +955,24 @@ class Connection(pulumi.CustomResource):
|
|
865
955
|
"""
|
866
956
|
return pulumi.get(self, "annotations")
|
867
957
|
|
958
|
+
@property
|
959
|
+
@pulumi.getter(name="bitbucketCloudConfig")
|
960
|
+
def bitbucket_cloud_config(self) -> pulumi.Output[Optional['outputs.ConnectionBitbucketCloudConfig']]:
|
961
|
+
"""
|
962
|
+
Configuration for connections to Bitbucket Cloud.
|
963
|
+
Structure is documented below.
|
964
|
+
"""
|
965
|
+
return pulumi.get(self, "bitbucket_cloud_config")
|
966
|
+
|
967
|
+
@property
|
968
|
+
@pulumi.getter(name="bitbucketDataCenterConfig")
|
969
|
+
def bitbucket_data_center_config(self) -> pulumi.Output[Optional['outputs.ConnectionBitbucketDataCenterConfig']]:
|
970
|
+
"""
|
971
|
+
Configuration for connections to Bitbucket Data Center.
|
972
|
+
Structure is documented below.
|
973
|
+
"""
|
974
|
+
return pulumi.get(self, "bitbucket_data_center_config")
|
975
|
+
|
868
976
|
@property
|
869
977
|
@pulumi.getter(name="createTime")
|
870
978
|
def create_time(self) -> pulumi.Output[str]:
|