pulumi-gcp 8.21.0a1741070272__py3-none-any.whl → 8.21.0a1741156431__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 +16 -0
- pulumi_gcp/alloydb/__init__.py +1 -0
- pulumi_gcp/alloydb/get_cluster.py +491 -0
- pulumi_gcp/alloydb/outputs.py +808 -0
- pulumi_gcp/appengine/_inputs.py +3 -3
- pulumi_gcp/appengine/outputs.py +2 -2
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +16 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan_association.py +16 -0
- pulumi_gcp/backupdisasterrecovery/management_server.py +16 -0
- pulumi_gcp/bigquery/_inputs.py +6 -8
- pulumi_gcp/bigquery/data_transfer_config.py +28 -0
- pulumi_gcp/bigquery/outputs.py +4 -5
- pulumi_gcp/chronicle/rule_deployment.py +21 -7
- pulumi_gcp/composer/get_environment.py +12 -0
- pulumi_gcp/composer/get_image_versions.py +12 -0
- pulumi_gcp/composer/get_user_workloads_config_map.py +12 -0
- pulumi_gcp/composer/get_user_workloads_secret.py +12 -0
- pulumi_gcp/compute/network_peering_routes_config.py +140 -6
- pulumi_gcp/datacatalog/entry_group.py +4 -0
- pulumi_gcp/datacatalog/tag_template.py +4 -0
- pulumi_gcp/developerconnect/_inputs.py +575 -0
- pulumi_gcp/developerconnect/connection.py +200 -0
- pulumi_gcp/developerconnect/git_repository_link.py +12 -0
- pulumi_gcp/developerconnect/outputs.py +461 -0
- pulumi_gcp/gemini/__init__.py +1 -0
- pulumi_gcp/gemini/data_sharing_with_google_setting.py +6 -0
- pulumi_gcp/gemini/data_sharing_with_google_setting_binding.py +722 -0
- pulumi_gcp/gemini/logging_setting.py +4 -0
- pulumi_gcp/gemini/logging_setting_binding.py +12 -0
- pulumi_gcp/iam/organizations_policy_binding.py +10 -2
- pulumi_gcp/iam/projects_policy_binding.py +10 -2
- pulumi_gcp/iam/workforce_pool_provider.py +63 -11
- pulumi_gcp/parametermanager/get_parameter_version_render.py +3 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version_render.py +3 -0
- pulumi_gcp/projects/__init__.py +1 -0
- pulumi_gcp/projects/get_ancestry.py +150 -0
- pulumi_gcp/projects/outputs.py +30 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/cluster.py +211 -94
- pulumi_gcp/secretmanager/secret_version.py +73 -23
- pulumi_gcp/spanner/__init__.py +1 -0
- pulumi_gcp/spanner/instance_partition.py +658 -0
- pulumi_gcp/sql/user.py +20 -14
- pulumi_gcp/tpu/_inputs.py +150 -1
- pulumi_gcp/tpu/outputs.py +114 -1
- pulumi_gcp/tpu/v2_queued_resource.py +74 -0
- {pulumi_gcp-8.21.0a1741070272.dist-info → pulumi_gcp-8.21.0a1741156431.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.21.0a1741070272.dist-info → pulumi_gcp-8.21.0a1741156431.dist-info}/RECORD +50 -46
- {pulumi_gcp-8.21.0a1741070272.dist-info → pulumi_gcp-8.21.0a1741156431.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.21.0a1741070272.dist-info → pulumi_gcp-8.21.0a1741156431.dist-info}/top_level.txt +0 -0
@@ -24,6 +24,8 @@ class ConnectionArgs:
|
|
24
24
|
connection_id: pulumi.Input[str],
|
25
25
|
location: pulumi.Input[str],
|
26
26
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
27
|
+
bitbucket_cloud_config: Optional[pulumi.Input['ConnectionBitbucketCloudConfigArgs']] = None,
|
28
|
+
bitbucket_data_center_config: Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigArgs']] = None,
|
27
29
|
crypto_key_config: Optional[pulumi.Input['ConnectionCryptoKeyConfigArgs']] = None,
|
28
30
|
disabled: Optional[pulumi.Input[bool]] = None,
|
29
31
|
etag: Optional[pulumi.Input[str]] = None,
|
@@ -45,6 +47,10 @@ class ConnectionArgs:
|
|
45
47
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: Optional. Allows clients to store small amounts of arbitrary data.
|
46
48
|
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
47
49
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
50
|
+
:param pulumi.Input['ConnectionBitbucketCloudConfigArgs'] bitbucket_cloud_config: Configuration for connections to an instance of Bitbucket Cloud.
|
51
|
+
Structure is documented below.
|
52
|
+
:param pulumi.Input['ConnectionBitbucketDataCenterConfigArgs'] bitbucket_data_center_config: Configuration for connections to an instance of Bitbucket Data Center.
|
53
|
+
Structure is documented below.
|
48
54
|
:param pulumi.Input['ConnectionCryptoKeyConfigArgs'] crypto_key_config: The crypto key configuration. This field is used by the Customer-managed
|
49
55
|
encryption keys (CMEK) feature.
|
50
56
|
Structure is documented below.
|
@@ -72,6 +78,10 @@ class ConnectionArgs:
|
|
72
78
|
pulumi.set(__self__, "location", location)
|
73
79
|
if annotations is not None:
|
74
80
|
pulumi.set(__self__, "annotations", annotations)
|
81
|
+
if bitbucket_cloud_config is not None:
|
82
|
+
pulumi.set(__self__, "bitbucket_cloud_config", bitbucket_cloud_config)
|
83
|
+
if bitbucket_data_center_config is not None:
|
84
|
+
pulumi.set(__self__, "bitbucket_data_center_config", bitbucket_data_center_config)
|
75
85
|
if crypto_key_config is not None:
|
76
86
|
pulumi.set(__self__, "crypto_key_config", crypto_key_config)
|
77
87
|
if disabled is not None:
|
@@ -134,6 +144,32 @@ class ConnectionArgs:
|
|
134
144
|
def annotations(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
135
145
|
pulumi.set(self, "annotations", value)
|
136
146
|
|
147
|
+
@property
|
148
|
+
@pulumi.getter(name="bitbucketCloudConfig")
|
149
|
+
def bitbucket_cloud_config(self) -> Optional[pulumi.Input['ConnectionBitbucketCloudConfigArgs']]:
|
150
|
+
"""
|
151
|
+
Configuration for connections to an instance of Bitbucket Cloud.
|
152
|
+
Structure is documented below.
|
153
|
+
"""
|
154
|
+
return pulumi.get(self, "bitbucket_cloud_config")
|
155
|
+
|
156
|
+
@bitbucket_cloud_config.setter
|
157
|
+
def bitbucket_cloud_config(self, value: Optional[pulumi.Input['ConnectionBitbucketCloudConfigArgs']]):
|
158
|
+
pulumi.set(self, "bitbucket_cloud_config", value)
|
159
|
+
|
160
|
+
@property
|
161
|
+
@pulumi.getter(name="bitbucketDataCenterConfig")
|
162
|
+
def bitbucket_data_center_config(self) -> Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigArgs']]:
|
163
|
+
"""
|
164
|
+
Configuration for connections to an instance of Bitbucket Data Center.
|
165
|
+
Structure is documented below.
|
166
|
+
"""
|
167
|
+
return pulumi.get(self, "bitbucket_data_center_config")
|
168
|
+
|
169
|
+
@bitbucket_data_center_config.setter
|
170
|
+
def bitbucket_data_center_config(self, value: Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigArgs']]):
|
171
|
+
pulumi.set(self, "bitbucket_data_center_config", value)
|
172
|
+
|
137
173
|
@property
|
138
174
|
@pulumi.getter(name="cryptoKeyConfig")
|
139
175
|
def crypto_key_config(self) -> Optional[pulumi.Input['ConnectionCryptoKeyConfigArgs']]:
|
@@ -260,6 +296,8 @@ class ConnectionArgs:
|
|
260
296
|
class _ConnectionState:
|
261
297
|
def __init__(__self__, *,
|
262
298
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
299
|
+
bitbucket_cloud_config: Optional[pulumi.Input['ConnectionBitbucketCloudConfigArgs']] = None,
|
300
|
+
bitbucket_data_center_config: Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigArgs']] = None,
|
263
301
|
connection_id: Optional[pulumi.Input[str]] = None,
|
264
302
|
create_time: Optional[pulumi.Input[str]] = None,
|
265
303
|
crypto_key_config: Optional[pulumi.Input['ConnectionCryptoKeyConfigArgs']] = None,
|
@@ -286,6 +324,10 @@ class _ConnectionState:
|
|
286
324
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: Optional. Allows clients to store small amounts of arbitrary data.
|
287
325
|
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
288
326
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
327
|
+
:param pulumi.Input['ConnectionBitbucketCloudConfigArgs'] bitbucket_cloud_config: Configuration for connections to an instance of Bitbucket Cloud.
|
328
|
+
Structure is documented below.
|
329
|
+
:param pulumi.Input['ConnectionBitbucketDataCenterConfigArgs'] bitbucket_data_center_config: Configuration for connections to an instance of Bitbucket Data Center.
|
330
|
+
Structure is documented below.
|
289
331
|
:param pulumi.Input[str] connection_id: Required. Id of the requesting object
|
290
332
|
If auto-generating Id server-side, remove this field and
|
291
333
|
connection_id from the method_signature of Create RPC
|
@@ -333,6 +375,10 @@ class _ConnectionState:
|
|
333
375
|
"""
|
334
376
|
if annotations is not None:
|
335
377
|
pulumi.set(__self__, "annotations", annotations)
|
378
|
+
if bitbucket_cloud_config is not None:
|
379
|
+
pulumi.set(__self__, "bitbucket_cloud_config", bitbucket_cloud_config)
|
380
|
+
if bitbucket_data_center_config is not None:
|
381
|
+
pulumi.set(__self__, "bitbucket_data_center_config", bitbucket_data_center_config)
|
336
382
|
if connection_id is not None:
|
337
383
|
pulumi.set(__self__, "connection_id", connection_id)
|
338
384
|
if create_time is not None:
|
@@ -390,6 +436,32 @@ class _ConnectionState:
|
|
390
436
|
def annotations(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
391
437
|
pulumi.set(self, "annotations", value)
|
392
438
|
|
439
|
+
@property
|
440
|
+
@pulumi.getter(name="bitbucketCloudConfig")
|
441
|
+
def bitbucket_cloud_config(self) -> Optional[pulumi.Input['ConnectionBitbucketCloudConfigArgs']]:
|
442
|
+
"""
|
443
|
+
Configuration for connections to an instance of Bitbucket Cloud.
|
444
|
+
Structure is documented below.
|
445
|
+
"""
|
446
|
+
return pulumi.get(self, "bitbucket_cloud_config")
|
447
|
+
|
448
|
+
@bitbucket_cloud_config.setter
|
449
|
+
def bitbucket_cloud_config(self, value: Optional[pulumi.Input['ConnectionBitbucketCloudConfigArgs']]):
|
450
|
+
pulumi.set(self, "bitbucket_cloud_config", value)
|
451
|
+
|
452
|
+
@property
|
453
|
+
@pulumi.getter(name="bitbucketDataCenterConfig")
|
454
|
+
def bitbucket_data_center_config(self) -> Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigArgs']]:
|
455
|
+
"""
|
456
|
+
Configuration for connections to an instance of Bitbucket Data Center.
|
457
|
+
Structure is documented below.
|
458
|
+
"""
|
459
|
+
return pulumi.get(self, "bitbucket_data_center_config")
|
460
|
+
|
461
|
+
@bitbucket_data_center_config.setter
|
462
|
+
def bitbucket_data_center_config(self, value: Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigArgs']]):
|
463
|
+
pulumi.set(self, "bitbucket_data_center_config", value)
|
464
|
+
|
393
465
|
@property
|
394
466
|
@pulumi.getter(name="connectionId")
|
395
467
|
def connection_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -670,6 +742,8 @@ class Connection(pulumi.CustomResource):
|
|
670
742
|
resource_name: str,
|
671
743
|
opts: Optional[pulumi.ResourceOptions] = None,
|
672
744
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
745
|
+
bitbucket_cloud_config: Optional[pulumi.Input[Union['ConnectionBitbucketCloudConfigArgs', 'ConnectionBitbucketCloudConfigArgsDict']]] = None,
|
746
|
+
bitbucket_data_center_config: Optional[pulumi.Input[Union['ConnectionBitbucketDataCenterConfigArgs', 'ConnectionBitbucketDataCenterConfigArgsDict']]] = None,
|
673
747
|
connection_id: Optional[pulumi.Input[str]] = None,
|
674
748
|
crypto_key_config: Optional[pulumi.Input[Union['ConnectionCryptoKeyConfigArgs', 'ConnectionCryptoKeyConfigArgsDict']]] = None,
|
675
749
|
disabled: Optional[pulumi.Input[bool]] = None,
|
@@ -685,6 +759,12 @@ class Connection(pulumi.CustomResource):
|
|
685
759
|
"""
|
686
760
|
A connection for GitHub, GitHub Enterprise, GitLab, and GitLab Enterprise.
|
687
761
|
|
762
|
+
To get more information about Connection, see:
|
763
|
+
|
764
|
+
* [API documentation](https://cloud.google.com/developer-connect/docs/api/reference/rest/v1/projects.locations.connections)
|
765
|
+
* How-to Guides
|
766
|
+
* [Official Documentation](https://cloud.google.com/developer-connect/docs/overview)
|
767
|
+
|
688
768
|
## Example Usage
|
689
769
|
|
690
770
|
### Developer Connect Connection New
|
@@ -912,6 +992,46 @@ class Connection(pulumi.CustomResource):
|
|
912
992
|
},
|
913
993
|
})
|
914
994
|
```
|
995
|
+
### Developer Connect Connection Bbc
|
996
|
+
|
997
|
+
```python
|
998
|
+
import pulumi
|
999
|
+
import pulumi_gcp as gcp
|
1000
|
+
|
1001
|
+
my_connection = gcp.developerconnect.Connection("my-connection",
|
1002
|
+
location="us-central1",
|
1003
|
+
connection_id="tf-test-connection",
|
1004
|
+
bitbucket_cloud_config={
|
1005
|
+
"workspace": "proctor-test",
|
1006
|
+
"webhook_secret_secret_version": "projects/devconnect-terraform-creds/secrets/bbc-webhook/versions/latest",
|
1007
|
+
"read_authorizer_credential": {
|
1008
|
+
"user_token_secret_version": "projects/devconnect-terraform-creds/secrets/bbc-read-token/versions/latest",
|
1009
|
+
},
|
1010
|
+
"authorizer_credential": {
|
1011
|
+
"user_token_secret_version": "projects/devconnect-terraform-creds/secrets/bbc-auth-token/versions/latest",
|
1012
|
+
},
|
1013
|
+
})
|
1014
|
+
```
|
1015
|
+
### Developer Connect Connection Bbdc
|
1016
|
+
|
1017
|
+
```python
|
1018
|
+
import pulumi
|
1019
|
+
import pulumi_gcp as gcp
|
1020
|
+
|
1021
|
+
my_connection = gcp.developerconnect.Connection("my-connection",
|
1022
|
+
location="us-central1",
|
1023
|
+
connection_id="tf-test-connection",
|
1024
|
+
bitbucket_data_center_config={
|
1025
|
+
"host_uri": "https://bitbucket-us-central.gcb-test.com",
|
1026
|
+
"webhook_secret_secret_version": "projects/devconnect-terraform-creds/secrets/bbdc-webhook/versions/latest",
|
1027
|
+
"read_authorizer_credential": {
|
1028
|
+
"user_token_secret_version": "projects/devconnect-terraform-creds/secrets/bbdc-read-token/versions/latest",
|
1029
|
+
},
|
1030
|
+
"authorizer_credential": {
|
1031
|
+
"user_token_secret_version": "projects/devconnect-terraform-creds/secrets/bbdc-auth-token/versions/latest",
|
1032
|
+
},
|
1033
|
+
})
|
1034
|
+
```
|
915
1035
|
## Import
|
916
1036
|
|
917
1037
|
Connection can be imported using any of these accepted formats:
|
@@ -941,6 +1061,10 @@ class Connection(pulumi.CustomResource):
|
|
941
1061
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: Optional. Allows clients to store small amounts of arbitrary data.
|
942
1062
|
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
943
1063
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
1064
|
+
:param pulumi.Input[Union['ConnectionBitbucketCloudConfigArgs', 'ConnectionBitbucketCloudConfigArgsDict']] bitbucket_cloud_config: Configuration for connections to an instance of Bitbucket Cloud.
|
1065
|
+
Structure is documented below.
|
1066
|
+
:param pulumi.Input[Union['ConnectionBitbucketDataCenterConfigArgs', 'ConnectionBitbucketDataCenterConfigArgsDict']] bitbucket_data_center_config: Configuration for connections to an instance of Bitbucket Data Center.
|
1067
|
+
Structure is documented below.
|
944
1068
|
:param pulumi.Input[str] connection_id: Required. Id of the requesting object
|
945
1069
|
If auto-generating Id server-side, remove this field and
|
946
1070
|
connection_id from the method_signature of Create RPC
|
@@ -980,6 +1104,12 @@ class Connection(pulumi.CustomResource):
|
|
980
1104
|
"""
|
981
1105
|
A connection for GitHub, GitHub Enterprise, GitLab, and GitLab Enterprise.
|
982
1106
|
|
1107
|
+
To get more information about Connection, see:
|
1108
|
+
|
1109
|
+
* [API documentation](https://cloud.google.com/developer-connect/docs/api/reference/rest/v1/projects.locations.connections)
|
1110
|
+
* How-to Guides
|
1111
|
+
* [Official Documentation](https://cloud.google.com/developer-connect/docs/overview)
|
1112
|
+
|
983
1113
|
## Example Usage
|
984
1114
|
|
985
1115
|
### Developer Connect Connection New
|
@@ -1207,6 +1337,46 @@ class Connection(pulumi.CustomResource):
|
|
1207
1337
|
},
|
1208
1338
|
})
|
1209
1339
|
```
|
1340
|
+
### Developer Connect Connection Bbc
|
1341
|
+
|
1342
|
+
```python
|
1343
|
+
import pulumi
|
1344
|
+
import pulumi_gcp as gcp
|
1345
|
+
|
1346
|
+
my_connection = gcp.developerconnect.Connection("my-connection",
|
1347
|
+
location="us-central1",
|
1348
|
+
connection_id="tf-test-connection",
|
1349
|
+
bitbucket_cloud_config={
|
1350
|
+
"workspace": "proctor-test",
|
1351
|
+
"webhook_secret_secret_version": "projects/devconnect-terraform-creds/secrets/bbc-webhook/versions/latest",
|
1352
|
+
"read_authorizer_credential": {
|
1353
|
+
"user_token_secret_version": "projects/devconnect-terraform-creds/secrets/bbc-read-token/versions/latest",
|
1354
|
+
},
|
1355
|
+
"authorizer_credential": {
|
1356
|
+
"user_token_secret_version": "projects/devconnect-terraform-creds/secrets/bbc-auth-token/versions/latest",
|
1357
|
+
},
|
1358
|
+
})
|
1359
|
+
```
|
1360
|
+
### Developer Connect Connection Bbdc
|
1361
|
+
|
1362
|
+
```python
|
1363
|
+
import pulumi
|
1364
|
+
import pulumi_gcp as gcp
|
1365
|
+
|
1366
|
+
my_connection = gcp.developerconnect.Connection("my-connection",
|
1367
|
+
location="us-central1",
|
1368
|
+
connection_id="tf-test-connection",
|
1369
|
+
bitbucket_data_center_config={
|
1370
|
+
"host_uri": "https://bitbucket-us-central.gcb-test.com",
|
1371
|
+
"webhook_secret_secret_version": "projects/devconnect-terraform-creds/secrets/bbdc-webhook/versions/latest",
|
1372
|
+
"read_authorizer_credential": {
|
1373
|
+
"user_token_secret_version": "projects/devconnect-terraform-creds/secrets/bbdc-read-token/versions/latest",
|
1374
|
+
},
|
1375
|
+
"authorizer_credential": {
|
1376
|
+
"user_token_secret_version": "projects/devconnect-terraform-creds/secrets/bbdc-auth-token/versions/latest",
|
1377
|
+
},
|
1378
|
+
})
|
1379
|
+
```
|
1210
1380
|
## Import
|
1211
1381
|
|
1212
1382
|
Connection can be imported using any of these accepted formats:
|
@@ -1247,6 +1417,8 @@ class Connection(pulumi.CustomResource):
|
|
1247
1417
|
resource_name: str,
|
1248
1418
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1249
1419
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1420
|
+
bitbucket_cloud_config: Optional[pulumi.Input[Union['ConnectionBitbucketCloudConfigArgs', 'ConnectionBitbucketCloudConfigArgsDict']]] = None,
|
1421
|
+
bitbucket_data_center_config: Optional[pulumi.Input[Union['ConnectionBitbucketDataCenterConfigArgs', 'ConnectionBitbucketDataCenterConfigArgsDict']]] = None,
|
1250
1422
|
connection_id: Optional[pulumi.Input[str]] = None,
|
1251
1423
|
crypto_key_config: Optional[pulumi.Input[Union['ConnectionCryptoKeyConfigArgs', 'ConnectionCryptoKeyConfigArgsDict']]] = None,
|
1252
1424
|
disabled: Optional[pulumi.Input[bool]] = None,
|
@@ -1268,6 +1440,8 @@ class Connection(pulumi.CustomResource):
|
|
1268
1440
|
__props__ = ConnectionArgs.__new__(ConnectionArgs)
|
1269
1441
|
|
1270
1442
|
__props__.__dict__["annotations"] = annotations
|
1443
|
+
__props__.__dict__["bitbucket_cloud_config"] = bitbucket_cloud_config
|
1444
|
+
__props__.__dict__["bitbucket_data_center_config"] = bitbucket_data_center_config
|
1271
1445
|
if connection_id is None and not opts.urn:
|
1272
1446
|
raise TypeError("Missing required property 'connection_id'")
|
1273
1447
|
__props__.__dict__["connection_id"] = connection_id
|
@@ -1306,6 +1480,8 @@ class Connection(pulumi.CustomResource):
|
|
1306
1480
|
id: pulumi.Input[str],
|
1307
1481
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1308
1482
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1483
|
+
bitbucket_cloud_config: Optional[pulumi.Input[Union['ConnectionBitbucketCloudConfigArgs', 'ConnectionBitbucketCloudConfigArgsDict']]] = None,
|
1484
|
+
bitbucket_data_center_config: Optional[pulumi.Input[Union['ConnectionBitbucketDataCenterConfigArgs', 'ConnectionBitbucketDataCenterConfigArgsDict']]] = None,
|
1309
1485
|
connection_id: Optional[pulumi.Input[str]] = None,
|
1310
1486
|
create_time: Optional[pulumi.Input[str]] = None,
|
1311
1487
|
crypto_key_config: Optional[pulumi.Input[Union['ConnectionCryptoKeyConfigArgs', 'ConnectionCryptoKeyConfigArgsDict']]] = None,
|
@@ -1337,6 +1513,10 @@ class Connection(pulumi.CustomResource):
|
|
1337
1513
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: Optional. Allows clients to store small amounts of arbitrary data.
|
1338
1514
|
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
1339
1515
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
1516
|
+
:param pulumi.Input[Union['ConnectionBitbucketCloudConfigArgs', 'ConnectionBitbucketCloudConfigArgsDict']] bitbucket_cloud_config: Configuration for connections to an instance of Bitbucket Cloud.
|
1517
|
+
Structure is documented below.
|
1518
|
+
:param pulumi.Input[Union['ConnectionBitbucketDataCenterConfigArgs', 'ConnectionBitbucketDataCenterConfigArgsDict']] bitbucket_data_center_config: Configuration for connections to an instance of Bitbucket Data Center.
|
1519
|
+
Structure is documented below.
|
1340
1520
|
:param pulumi.Input[str] connection_id: Required. Id of the requesting object
|
1341
1521
|
If auto-generating Id server-side, remove this field and
|
1342
1522
|
connection_id from the method_signature of Create RPC
|
@@ -1387,6 +1567,8 @@ class Connection(pulumi.CustomResource):
|
|
1387
1567
|
__props__ = _ConnectionState.__new__(_ConnectionState)
|
1388
1568
|
|
1389
1569
|
__props__.__dict__["annotations"] = annotations
|
1570
|
+
__props__.__dict__["bitbucket_cloud_config"] = bitbucket_cloud_config
|
1571
|
+
__props__.__dict__["bitbucket_data_center_config"] = bitbucket_data_center_config
|
1390
1572
|
__props__.__dict__["connection_id"] = connection_id
|
1391
1573
|
__props__.__dict__["create_time"] = create_time
|
1392
1574
|
__props__.__dict__["crypto_key_config"] = crypto_key_config
|
@@ -1420,6 +1602,24 @@ class Connection(pulumi.CustomResource):
|
|
1420
1602
|
"""
|
1421
1603
|
return pulumi.get(self, "annotations")
|
1422
1604
|
|
1605
|
+
@property
|
1606
|
+
@pulumi.getter(name="bitbucketCloudConfig")
|
1607
|
+
def bitbucket_cloud_config(self) -> pulumi.Output[Optional['outputs.ConnectionBitbucketCloudConfig']]:
|
1608
|
+
"""
|
1609
|
+
Configuration for connections to an instance of Bitbucket Cloud.
|
1610
|
+
Structure is documented below.
|
1611
|
+
"""
|
1612
|
+
return pulumi.get(self, "bitbucket_cloud_config")
|
1613
|
+
|
1614
|
+
@property
|
1615
|
+
@pulumi.getter(name="bitbucketDataCenterConfig")
|
1616
|
+
def bitbucket_data_center_config(self) -> pulumi.Output[Optional['outputs.ConnectionBitbucketDataCenterConfig']]:
|
1617
|
+
"""
|
1618
|
+
Configuration for connections to an instance of Bitbucket Data Center.
|
1619
|
+
Structure is documented below.
|
1620
|
+
"""
|
1621
|
+
return pulumi.get(self, "bitbucket_data_center_config")
|
1622
|
+
|
1423
1623
|
@property
|
1424
1624
|
@pulumi.getter(name="connectionId")
|
1425
1625
|
def connection_id(self) -> pulumi.Output[str]:
|
@@ -495,6 +495,12 @@ class GitRepositoryLink(pulumi.CustomResource):
|
|
495
495
|
"""
|
496
496
|
A git repository link to a parent connection.
|
497
497
|
|
498
|
+
To get more information about GitRepositoryLink, see:
|
499
|
+
|
500
|
+
* [API documentation](https://cloud.google.com/developer-connect/docs/api/reference/rest/v1/projects.locations.connections.gitRepositoryLinks)
|
501
|
+
* How-to Guides
|
502
|
+
* [Official Documentation](https://cloud.google.com/developer-connect/docs/overview)
|
503
|
+
|
498
504
|
## Example Usage
|
499
505
|
|
500
506
|
## Import
|
@@ -553,6 +559,12 @@ class GitRepositoryLink(pulumi.CustomResource):
|
|
553
559
|
"""
|
554
560
|
A git repository link to a parent connection.
|
555
561
|
|
562
|
+
To get more information about GitRepositoryLink, see:
|
563
|
+
|
564
|
+
* [API documentation](https://cloud.google.com/developer-connect/docs/api/reference/rest/v1/projects.locations.connections.gitRepositoryLinks)
|
565
|
+
* How-to Guides
|
566
|
+
* [Official Documentation](https://cloud.google.com/developer-connect/docs/overview)
|
567
|
+
|
556
568
|
## Example Usage
|
557
569
|
|
558
570
|
## Import
|