pulumi-gcp 8.21.0a1741070272__py3-none-any.whl → 8.21.0a1741103856__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.0a1741103856.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.21.0a1741070272.dist-info → pulumi_gcp-8.21.0a1741103856.dist-info}/RECORD +50 -46
- {pulumi_gcp-8.21.0a1741070272.dist-info → pulumi_gcp-8.21.0a1741103856.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.21.0a1741070272.dist-info → pulumi_gcp-8.21.0a1741103856.dist-info}/top_level.txt +0 -0
@@ -15,6 +15,20 @@ else:
|
|
15
15
|
from .. import _utilities
|
16
16
|
|
17
17
|
__all__ = [
|
18
|
+
'ConnectionBitbucketCloudConfigArgs',
|
19
|
+
'ConnectionBitbucketCloudConfigArgsDict',
|
20
|
+
'ConnectionBitbucketCloudConfigAuthorizerCredentialArgs',
|
21
|
+
'ConnectionBitbucketCloudConfigAuthorizerCredentialArgsDict',
|
22
|
+
'ConnectionBitbucketCloudConfigReadAuthorizerCredentialArgs',
|
23
|
+
'ConnectionBitbucketCloudConfigReadAuthorizerCredentialArgsDict',
|
24
|
+
'ConnectionBitbucketDataCenterConfigArgs',
|
25
|
+
'ConnectionBitbucketDataCenterConfigArgsDict',
|
26
|
+
'ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgs',
|
27
|
+
'ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgsDict',
|
28
|
+
'ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgs',
|
29
|
+
'ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgsDict',
|
30
|
+
'ConnectionBitbucketDataCenterConfigServiceDirectoryConfigArgs',
|
31
|
+
'ConnectionBitbucketDataCenterConfigServiceDirectoryConfigArgsDict',
|
18
32
|
'ConnectionCryptoKeyConfigArgs',
|
19
33
|
'ConnectionCryptoKeyConfigArgsDict',
|
20
34
|
'ConnectionGithubConfigArgs',
|
@@ -45,6 +59,567 @@ __all__ = [
|
|
45
59
|
|
46
60
|
MYPY = False
|
47
61
|
|
62
|
+
if not MYPY:
|
63
|
+
class ConnectionBitbucketCloudConfigArgsDict(TypedDict):
|
64
|
+
authorizer_credential: pulumi.Input['ConnectionBitbucketCloudConfigAuthorizerCredentialArgsDict']
|
65
|
+
"""
|
66
|
+
Represents a personal access token that authorized the Connection,
|
67
|
+
and associated metadata.
|
68
|
+
Structure is documented below.
|
69
|
+
"""
|
70
|
+
read_authorizer_credential: pulumi.Input['ConnectionBitbucketCloudConfigReadAuthorizerCredentialArgsDict']
|
71
|
+
"""
|
72
|
+
Represents a personal access token that authorized the Connection,
|
73
|
+
and associated metadata.
|
74
|
+
Structure is documented below.
|
75
|
+
"""
|
76
|
+
webhook_secret_secret_version: pulumi.Input[str]
|
77
|
+
"""
|
78
|
+
Required. Immutable. SecretManager resource containing the webhook secret used to verify webhook
|
79
|
+
events, formatted as `projects/*/secrets/*/versions/*`. This is used to
|
80
|
+
validate and create webhooks.
|
81
|
+
"""
|
82
|
+
workspace: pulumi.Input[str]
|
83
|
+
"""
|
84
|
+
Required. The Bitbucket Cloud Workspace ID to be connected to Google Cloud Platform.
|
85
|
+
"""
|
86
|
+
elif False:
|
87
|
+
ConnectionBitbucketCloudConfigArgsDict: TypeAlias = Mapping[str, Any]
|
88
|
+
|
89
|
+
@pulumi.input_type
|
90
|
+
class ConnectionBitbucketCloudConfigArgs:
|
91
|
+
def __init__(__self__, *,
|
92
|
+
authorizer_credential: pulumi.Input['ConnectionBitbucketCloudConfigAuthorizerCredentialArgs'],
|
93
|
+
read_authorizer_credential: pulumi.Input['ConnectionBitbucketCloudConfigReadAuthorizerCredentialArgs'],
|
94
|
+
webhook_secret_secret_version: pulumi.Input[str],
|
95
|
+
workspace: pulumi.Input[str]):
|
96
|
+
"""
|
97
|
+
:param pulumi.Input['ConnectionBitbucketCloudConfigAuthorizerCredentialArgs'] authorizer_credential: Represents a personal access token that authorized the Connection,
|
98
|
+
and associated metadata.
|
99
|
+
Structure is documented below.
|
100
|
+
:param pulumi.Input['ConnectionBitbucketCloudConfigReadAuthorizerCredentialArgs'] read_authorizer_credential: Represents a personal access token that authorized the Connection,
|
101
|
+
and associated metadata.
|
102
|
+
Structure is documented below.
|
103
|
+
:param pulumi.Input[str] webhook_secret_secret_version: Required. Immutable. SecretManager resource containing the webhook secret used to verify webhook
|
104
|
+
events, formatted as `projects/*/secrets/*/versions/*`. This is used to
|
105
|
+
validate and create webhooks.
|
106
|
+
:param pulumi.Input[str] workspace: Required. The Bitbucket Cloud Workspace ID to be connected to Google Cloud Platform.
|
107
|
+
"""
|
108
|
+
pulumi.set(__self__, "authorizer_credential", authorizer_credential)
|
109
|
+
pulumi.set(__self__, "read_authorizer_credential", read_authorizer_credential)
|
110
|
+
pulumi.set(__self__, "webhook_secret_secret_version", webhook_secret_secret_version)
|
111
|
+
pulumi.set(__self__, "workspace", workspace)
|
112
|
+
|
113
|
+
@property
|
114
|
+
@pulumi.getter(name="authorizerCredential")
|
115
|
+
def authorizer_credential(self) -> pulumi.Input['ConnectionBitbucketCloudConfigAuthorizerCredentialArgs']:
|
116
|
+
"""
|
117
|
+
Represents a personal access token that authorized the Connection,
|
118
|
+
and associated metadata.
|
119
|
+
Structure is documented below.
|
120
|
+
"""
|
121
|
+
return pulumi.get(self, "authorizer_credential")
|
122
|
+
|
123
|
+
@authorizer_credential.setter
|
124
|
+
def authorizer_credential(self, value: pulumi.Input['ConnectionBitbucketCloudConfigAuthorizerCredentialArgs']):
|
125
|
+
pulumi.set(self, "authorizer_credential", value)
|
126
|
+
|
127
|
+
@property
|
128
|
+
@pulumi.getter(name="readAuthorizerCredential")
|
129
|
+
def read_authorizer_credential(self) -> pulumi.Input['ConnectionBitbucketCloudConfigReadAuthorizerCredentialArgs']:
|
130
|
+
"""
|
131
|
+
Represents a personal access token that authorized the Connection,
|
132
|
+
and associated metadata.
|
133
|
+
Structure is documented below.
|
134
|
+
"""
|
135
|
+
return pulumi.get(self, "read_authorizer_credential")
|
136
|
+
|
137
|
+
@read_authorizer_credential.setter
|
138
|
+
def read_authorizer_credential(self, value: pulumi.Input['ConnectionBitbucketCloudConfigReadAuthorizerCredentialArgs']):
|
139
|
+
pulumi.set(self, "read_authorizer_credential", value)
|
140
|
+
|
141
|
+
@property
|
142
|
+
@pulumi.getter(name="webhookSecretSecretVersion")
|
143
|
+
def webhook_secret_secret_version(self) -> pulumi.Input[str]:
|
144
|
+
"""
|
145
|
+
Required. Immutable. SecretManager resource containing the webhook secret used to verify webhook
|
146
|
+
events, formatted as `projects/*/secrets/*/versions/*`. This is used to
|
147
|
+
validate and create webhooks.
|
148
|
+
"""
|
149
|
+
return pulumi.get(self, "webhook_secret_secret_version")
|
150
|
+
|
151
|
+
@webhook_secret_secret_version.setter
|
152
|
+
def webhook_secret_secret_version(self, value: pulumi.Input[str]):
|
153
|
+
pulumi.set(self, "webhook_secret_secret_version", value)
|
154
|
+
|
155
|
+
@property
|
156
|
+
@pulumi.getter
|
157
|
+
def workspace(self) -> pulumi.Input[str]:
|
158
|
+
"""
|
159
|
+
Required. The Bitbucket Cloud Workspace ID to be connected to Google Cloud Platform.
|
160
|
+
"""
|
161
|
+
return pulumi.get(self, "workspace")
|
162
|
+
|
163
|
+
@workspace.setter
|
164
|
+
def workspace(self, value: pulumi.Input[str]):
|
165
|
+
pulumi.set(self, "workspace", value)
|
166
|
+
|
167
|
+
|
168
|
+
if not MYPY:
|
169
|
+
class ConnectionBitbucketCloudConfigAuthorizerCredentialArgsDict(TypedDict):
|
170
|
+
user_token_secret_version: pulumi.Input[str]
|
171
|
+
"""
|
172
|
+
Required. A SecretManager resource containing the user token that authorizes
|
173
|
+
the Developer Connect connection. Format:
|
174
|
+
`projects/*/secrets/*/versions/*`.
|
175
|
+
"""
|
176
|
+
username: NotRequired[pulumi.Input[str]]
|
177
|
+
"""
|
178
|
+
(Output)
|
179
|
+
Output only. The username associated with this token.
|
180
|
+
"""
|
181
|
+
elif False:
|
182
|
+
ConnectionBitbucketCloudConfigAuthorizerCredentialArgsDict: TypeAlias = Mapping[str, Any]
|
183
|
+
|
184
|
+
@pulumi.input_type
|
185
|
+
class ConnectionBitbucketCloudConfigAuthorizerCredentialArgs:
|
186
|
+
def __init__(__self__, *,
|
187
|
+
user_token_secret_version: pulumi.Input[str],
|
188
|
+
username: Optional[pulumi.Input[str]] = None):
|
189
|
+
"""
|
190
|
+
:param pulumi.Input[str] user_token_secret_version: Required. A SecretManager resource containing the user token that authorizes
|
191
|
+
the Developer Connect connection. Format:
|
192
|
+
`projects/*/secrets/*/versions/*`.
|
193
|
+
:param pulumi.Input[str] username: (Output)
|
194
|
+
Output only. The username associated with this token.
|
195
|
+
"""
|
196
|
+
pulumi.set(__self__, "user_token_secret_version", user_token_secret_version)
|
197
|
+
if username is not None:
|
198
|
+
pulumi.set(__self__, "username", username)
|
199
|
+
|
200
|
+
@property
|
201
|
+
@pulumi.getter(name="userTokenSecretVersion")
|
202
|
+
def user_token_secret_version(self) -> pulumi.Input[str]:
|
203
|
+
"""
|
204
|
+
Required. A SecretManager resource containing the user token that authorizes
|
205
|
+
the Developer Connect connection. Format:
|
206
|
+
`projects/*/secrets/*/versions/*`.
|
207
|
+
"""
|
208
|
+
return pulumi.get(self, "user_token_secret_version")
|
209
|
+
|
210
|
+
@user_token_secret_version.setter
|
211
|
+
def user_token_secret_version(self, value: pulumi.Input[str]):
|
212
|
+
pulumi.set(self, "user_token_secret_version", value)
|
213
|
+
|
214
|
+
@property
|
215
|
+
@pulumi.getter
|
216
|
+
def username(self) -> Optional[pulumi.Input[str]]:
|
217
|
+
"""
|
218
|
+
(Output)
|
219
|
+
Output only. The username associated with this token.
|
220
|
+
"""
|
221
|
+
return pulumi.get(self, "username")
|
222
|
+
|
223
|
+
@username.setter
|
224
|
+
def username(self, value: Optional[pulumi.Input[str]]):
|
225
|
+
pulumi.set(self, "username", value)
|
226
|
+
|
227
|
+
|
228
|
+
if not MYPY:
|
229
|
+
class ConnectionBitbucketCloudConfigReadAuthorizerCredentialArgsDict(TypedDict):
|
230
|
+
user_token_secret_version: pulumi.Input[str]
|
231
|
+
"""
|
232
|
+
Required. A SecretManager resource containing the user token that authorizes
|
233
|
+
the Developer Connect connection. Format:
|
234
|
+
`projects/*/secrets/*/versions/*`.
|
235
|
+
"""
|
236
|
+
username: NotRequired[pulumi.Input[str]]
|
237
|
+
"""
|
238
|
+
(Output)
|
239
|
+
Output only. The username associated with this token.
|
240
|
+
"""
|
241
|
+
elif False:
|
242
|
+
ConnectionBitbucketCloudConfigReadAuthorizerCredentialArgsDict: TypeAlias = Mapping[str, Any]
|
243
|
+
|
244
|
+
@pulumi.input_type
|
245
|
+
class ConnectionBitbucketCloudConfigReadAuthorizerCredentialArgs:
|
246
|
+
def __init__(__self__, *,
|
247
|
+
user_token_secret_version: pulumi.Input[str],
|
248
|
+
username: Optional[pulumi.Input[str]] = None):
|
249
|
+
"""
|
250
|
+
:param pulumi.Input[str] user_token_secret_version: Required. A SecretManager resource containing the user token that authorizes
|
251
|
+
the Developer Connect connection. Format:
|
252
|
+
`projects/*/secrets/*/versions/*`.
|
253
|
+
:param pulumi.Input[str] username: (Output)
|
254
|
+
Output only. The username associated with this token.
|
255
|
+
"""
|
256
|
+
pulumi.set(__self__, "user_token_secret_version", user_token_secret_version)
|
257
|
+
if username is not None:
|
258
|
+
pulumi.set(__self__, "username", username)
|
259
|
+
|
260
|
+
@property
|
261
|
+
@pulumi.getter(name="userTokenSecretVersion")
|
262
|
+
def user_token_secret_version(self) -> pulumi.Input[str]:
|
263
|
+
"""
|
264
|
+
Required. A SecretManager resource containing the user token that authorizes
|
265
|
+
the Developer Connect connection. Format:
|
266
|
+
`projects/*/secrets/*/versions/*`.
|
267
|
+
"""
|
268
|
+
return pulumi.get(self, "user_token_secret_version")
|
269
|
+
|
270
|
+
@user_token_secret_version.setter
|
271
|
+
def user_token_secret_version(self, value: pulumi.Input[str]):
|
272
|
+
pulumi.set(self, "user_token_secret_version", value)
|
273
|
+
|
274
|
+
@property
|
275
|
+
@pulumi.getter
|
276
|
+
def username(self) -> Optional[pulumi.Input[str]]:
|
277
|
+
"""
|
278
|
+
(Output)
|
279
|
+
Output only. The username associated with this token.
|
280
|
+
"""
|
281
|
+
return pulumi.get(self, "username")
|
282
|
+
|
283
|
+
@username.setter
|
284
|
+
def username(self, value: Optional[pulumi.Input[str]]):
|
285
|
+
pulumi.set(self, "username", value)
|
286
|
+
|
287
|
+
|
288
|
+
if not MYPY:
|
289
|
+
class ConnectionBitbucketDataCenterConfigArgsDict(TypedDict):
|
290
|
+
authorizer_credential: pulumi.Input['ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgsDict']
|
291
|
+
"""
|
292
|
+
Represents a personal access token that authorized the Connection,
|
293
|
+
and associated metadata.
|
294
|
+
Structure is documented below.
|
295
|
+
"""
|
296
|
+
host_uri: pulumi.Input[str]
|
297
|
+
"""
|
298
|
+
Required. The URI of the Bitbucket Data Center host this connection is for.
|
299
|
+
"""
|
300
|
+
read_authorizer_credential: pulumi.Input['ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgsDict']
|
301
|
+
"""
|
302
|
+
Represents a personal access token that authorized the Connection,
|
303
|
+
and associated metadata.
|
304
|
+
Structure is documented below.
|
305
|
+
"""
|
306
|
+
webhook_secret_secret_version: pulumi.Input[str]
|
307
|
+
"""
|
308
|
+
Required. Immutable. SecretManager resource containing the webhook secret used to verify webhook
|
309
|
+
events, formatted as `projects/*/secrets/*/versions/*`. This is used to
|
310
|
+
validate webhooks.
|
311
|
+
"""
|
312
|
+
server_version: NotRequired[pulumi.Input[str]]
|
313
|
+
"""
|
314
|
+
(Output)
|
315
|
+
Output only. Version of the Bitbucket Data Center server running on the `host_uri`.
|
316
|
+
"""
|
317
|
+
service_directory_config: NotRequired[pulumi.Input['ConnectionBitbucketDataCenterConfigServiceDirectoryConfigArgsDict']]
|
318
|
+
"""
|
319
|
+
ServiceDirectoryConfig represents Service Directory configuration for a
|
320
|
+
connection.
|
321
|
+
Structure is documented below.
|
322
|
+
"""
|
323
|
+
ssl_ca_certificate: NotRequired[pulumi.Input[str]]
|
324
|
+
"""
|
325
|
+
Optional. SSL certificate authority to trust when making requests to Bitbucket Data
|
326
|
+
Center.
|
327
|
+
"""
|
328
|
+
elif False:
|
329
|
+
ConnectionBitbucketDataCenterConfigArgsDict: TypeAlias = Mapping[str, Any]
|
330
|
+
|
331
|
+
@pulumi.input_type
|
332
|
+
class ConnectionBitbucketDataCenterConfigArgs:
|
333
|
+
def __init__(__self__, *,
|
334
|
+
authorizer_credential: pulumi.Input['ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgs'],
|
335
|
+
host_uri: pulumi.Input[str],
|
336
|
+
read_authorizer_credential: pulumi.Input['ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgs'],
|
337
|
+
webhook_secret_secret_version: pulumi.Input[str],
|
338
|
+
server_version: Optional[pulumi.Input[str]] = None,
|
339
|
+
service_directory_config: Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigServiceDirectoryConfigArgs']] = None,
|
340
|
+
ssl_ca_certificate: Optional[pulumi.Input[str]] = None):
|
341
|
+
"""
|
342
|
+
:param pulumi.Input['ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgs'] authorizer_credential: Represents a personal access token that authorized the Connection,
|
343
|
+
and associated metadata.
|
344
|
+
Structure is documented below.
|
345
|
+
:param pulumi.Input[str] host_uri: Required. The URI of the Bitbucket Data Center host this connection is for.
|
346
|
+
:param pulumi.Input['ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgs'] read_authorizer_credential: Represents a personal access token that authorized the Connection,
|
347
|
+
and associated metadata.
|
348
|
+
Structure is documented below.
|
349
|
+
:param pulumi.Input[str] webhook_secret_secret_version: Required. Immutable. SecretManager resource containing the webhook secret used to verify webhook
|
350
|
+
events, formatted as `projects/*/secrets/*/versions/*`. This is used to
|
351
|
+
validate webhooks.
|
352
|
+
:param pulumi.Input[str] server_version: (Output)
|
353
|
+
Output only. Version of the Bitbucket Data Center server running on the `host_uri`.
|
354
|
+
:param pulumi.Input['ConnectionBitbucketDataCenterConfigServiceDirectoryConfigArgs'] service_directory_config: ServiceDirectoryConfig represents Service Directory configuration for a
|
355
|
+
connection.
|
356
|
+
Structure is documented below.
|
357
|
+
:param pulumi.Input[str] ssl_ca_certificate: Optional. SSL certificate authority to trust when making requests to Bitbucket Data
|
358
|
+
Center.
|
359
|
+
"""
|
360
|
+
pulumi.set(__self__, "authorizer_credential", authorizer_credential)
|
361
|
+
pulumi.set(__self__, "host_uri", host_uri)
|
362
|
+
pulumi.set(__self__, "read_authorizer_credential", read_authorizer_credential)
|
363
|
+
pulumi.set(__self__, "webhook_secret_secret_version", webhook_secret_secret_version)
|
364
|
+
if server_version is not None:
|
365
|
+
pulumi.set(__self__, "server_version", server_version)
|
366
|
+
if service_directory_config is not None:
|
367
|
+
pulumi.set(__self__, "service_directory_config", service_directory_config)
|
368
|
+
if ssl_ca_certificate is not None:
|
369
|
+
pulumi.set(__self__, "ssl_ca_certificate", ssl_ca_certificate)
|
370
|
+
|
371
|
+
@property
|
372
|
+
@pulumi.getter(name="authorizerCredential")
|
373
|
+
def authorizer_credential(self) -> pulumi.Input['ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgs']:
|
374
|
+
"""
|
375
|
+
Represents a personal access token that authorized the Connection,
|
376
|
+
and associated metadata.
|
377
|
+
Structure is documented below.
|
378
|
+
"""
|
379
|
+
return pulumi.get(self, "authorizer_credential")
|
380
|
+
|
381
|
+
@authorizer_credential.setter
|
382
|
+
def authorizer_credential(self, value: pulumi.Input['ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgs']):
|
383
|
+
pulumi.set(self, "authorizer_credential", value)
|
384
|
+
|
385
|
+
@property
|
386
|
+
@pulumi.getter(name="hostUri")
|
387
|
+
def host_uri(self) -> pulumi.Input[str]:
|
388
|
+
"""
|
389
|
+
Required. The URI of the Bitbucket Data Center host this connection is for.
|
390
|
+
"""
|
391
|
+
return pulumi.get(self, "host_uri")
|
392
|
+
|
393
|
+
@host_uri.setter
|
394
|
+
def host_uri(self, value: pulumi.Input[str]):
|
395
|
+
pulumi.set(self, "host_uri", value)
|
396
|
+
|
397
|
+
@property
|
398
|
+
@pulumi.getter(name="readAuthorizerCredential")
|
399
|
+
def read_authorizer_credential(self) -> pulumi.Input['ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgs']:
|
400
|
+
"""
|
401
|
+
Represents a personal access token that authorized the Connection,
|
402
|
+
and associated metadata.
|
403
|
+
Structure is documented below.
|
404
|
+
"""
|
405
|
+
return pulumi.get(self, "read_authorizer_credential")
|
406
|
+
|
407
|
+
@read_authorizer_credential.setter
|
408
|
+
def read_authorizer_credential(self, value: pulumi.Input['ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgs']):
|
409
|
+
pulumi.set(self, "read_authorizer_credential", value)
|
410
|
+
|
411
|
+
@property
|
412
|
+
@pulumi.getter(name="webhookSecretSecretVersion")
|
413
|
+
def webhook_secret_secret_version(self) -> pulumi.Input[str]:
|
414
|
+
"""
|
415
|
+
Required. Immutable. SecretManager resource containing the webhook secret used to verify webhook
|
416
|
+
events, formatted as `projects/*/secrets/*/versions/*`. This is used to
|
417
|
+
validate webhooks.
|
418
|
+
"""
|
419
|
+
return pulumi.get(self, "webhook_secret_secret_version")
|
420
|
+
|
421
|
+
@webhook_secret_secret_version.setter
|
422
|
+
def webhook_secret_secret_version(self, value: pulumi.Input[str]):
|
423
|
+
pulumi.set(self, "webhook_secret_secret_version", value)
|
424
|
+
|
425
|
+
@property
|
426
|
+
@pulumi.getter(name="serverVersion")
|
427
|
+
def server_version(self) -> Optional[pulumi.Input[str]]:
|
428
|
+
"""
|
429
|
+
(Output)
|
430
|
+
Output only. Version of the Bitbucket Data Center server running on the `host_uri`.
|
431
|
+
"""
|
432
|
+
return pulumi.get(self, "server_version")
|
433
|
+
|
434
|
+
@server_version.setter
|
435
|
+
def server_version(self, value: Optional[pulumi.Input[str]]):
|
436
|
+
pulumi.set(self, "server_version", value)
|
437
|
+
|
438
|
+
@property
|
439
|
+
@pulumi.getter(name="serviceDirectoryConfig")
|
440
|
+
def service_directory_config(self) -> Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigServiceDirectoryConfigArgs']]:
|
441
|
+
"""
|
442
|
+
ServiceDirectoryConfig represents Service Directory configuration for a
|
443
|
+
connection.
|
444
|
+
Structure is documented below.
|
445
|
+
"""
|
446
|
+
return pulumi.get(self, "service_directory_config")
|
447
|
+
|
448
|
+
@service_directory_config.setter
|
449
|
+
def service_directory_config(self, value: Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigServiceDirectoryConfigArgs']]):
|
450
|
+
pulumi.set(self, "service_directory_config", value)
|
451
|
+
|
452
|
+
@property
|
453
|
+
@pulumi.getter(name="sslCaCertificate")
|
454
|
+
def ssl_ca_certificate(self) -> Optional[pulumi.Input[str]]:
|
455
|
+
"""
|
456
|
+
Optional. SSL certificate authority to trust when making requests to Bitbucket Data
|
457
|
+
Center.
|
458
|
+
"""
|
459
|
+
return pulumi.get(self, "ssl_ca_certificate")
|
460
|
+
|
461
|
+
@ssl_ca_certificate.setter
|
462
|
+
def ssl_ca_certificate(self, value: Optional[pulumi.Input[str]]):
|
463
|
+
pulumi.set(self, "ssl_ca_certificate", value)
|
464
|
+
|
465
|
+
|
466
|
+
if not MYPY:
|
467
|
+
class ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgsDict(TypedDict):
|
468
|
+
user_token_secret_version: pulumi.Input[str]
|
469
|
+
"""
|
470
|
+
Required. A SecretManager resource containing the user token that authorizes
|
471
|
+
the Developer Connect connection. Format:
|
472
|
+
`projects/*/secrets/*/versions/*`.
|
473
|
+
"""
|
474
|
+
username: NotRequired[pulumi.Input[str]]
|
475
|
+
"""
|
476
|
+
(Output)
|
477
|
+
Output only. The username associated with this token.
|
478
|
+
"""
|
479
|
+
elif False:
|
480
|
+
ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgsDict: TypeAlias = Mapping[str, Any]
|
481
|
+
|
482
|
+
@pulumi.input_type
|
483
|
+
class ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgs:
|
484
|
+
def __init__(__self__, *,
|
485
|
+
user_token_secret_version: pulumi.Input[str],
|
486
|
+
username: Optional[pulumi.Input[str]] = None):
|
487
|
+
"""
|
488
|
+
:param pulumi.Input[str] user_token_secret_version: Required. A SecretManager resource containing the user token that authorizes
|
489
|
+
the Developer Connect connection. Format:
|
490
|
+
`projects/*/secrets/*/versions/*`.
|
491
|
+
:param pulumi.Input[str] username: (Output)
|
492
|
+
Output only. The username associated with this token.
|
493
|
+
"""
|
494
|
+
pulumi.set(__self__, "user_token_secret_version", user_token_secret_version)
|
495
|
+
if username is not None:
|
496
|
+
pulumi.set(__self__, "username", username)
|
497
|
+
|
498
|
+
@property
|
499
|
+
@pulumi.getter(name="userTokenSecretVersion")
|
500
|
+
def user_token_secret_version(self) -> pulumi.Input[str]:
|
501
|
+
"""
|
502
|
+
Required. A SecretManager resource containing the user token that authorizes
|
503
|
+
the Developer Connect connection. Format:
|
504
|
+
`projects/*/secrets/*/versions/*`.
|
505
|
+
"""
|
506
|
+
return pulumi.get(self, "user_token_secret_version")
|
507
|
+
|
508
|
+
@user_token_secret_version.setter
|
509
|
+
def user_token_secret_version(self, value: pulumi.Input[str]):
|
510
|
+
pulumi.set(self, "user_token_secret_version", value)
|
511
|
+
|
512
|
+
@property
|
513
|
+
@pulumi.getter
|
514
|
+
def username(self) -> Optional[pulumi.Input[str]]:
|
515
|
+
"""
|
516
|
+
(Output)
|
517
|
+
Output only. The username associated with this token.
|
518
|
+
"""
|
519
|
+
return pulumi.get(self, "username")
|
520
|
+
|
521
|
+
@username.setter
|
522
|
+
def username(self, value: Optional[pulumi.Input[str]]):
|
523
|
+
pulumi.set(self, "username", value)
|
524
|
+
|
525
|
+
|
526
|
+
if not MYPY:
|
527
|
+
class ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgsDict(TypedDict):
|
528
|
+
user_token_secret_version: pulumi.Input[str]
|
529
|
+
"""
|
530
|
+
Required. A SecretManager resource containing the user token that authorizes
|
531
|
+
the Developer Connect connection. Format:
|
532
|
+
`projects/*/secrets/*/versions/*`.
|
533
|
+
"""
|
534
|
+
username: NotRequired[pulumi.Input[str]]
|
535
|
+
"""
|
536
|
+
(Output)
|
537
|
+
Output only. The username associated with this token.
|
538
|
+
"""
|
539
|
+
elif False:
|
540
|
+
ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgsDict: TypeAlias = Mapping[str, Any]
|
541
|
+
|
542
|
+
@pulumi.input_type
|
543
|
+
class ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgs:
|
544
|
+
def __init__(__self__, *,
|
545
|
+
user_token_secret_version: pulumi.Input[str],
|
546
|
+
username: Optional[pulumi.Input[str]] = None):
|
547
|
+
"""
|
548
|
+
:param pulumi.Input[str] user_token_secret_version: Required. A SecretManager resource containing the user token that authorizes
|
549
|
+
the Developer Connect connection. Format:
|
550
|
+
`projects/*/secrets/*/versions/*`.
|
551
|
+
:param pulumi.Input[str] username: (Output)
|
552
|
+
Output only. The username associated with this token.
|
553
|
+
"""
|
554
|
+
pulumi.set(__self__, "user_token_secret_version", user_token_secret_version)
|
555
|
+
if username is not None:
|
556
|
+
pulumi.set(__self__, "username", username)
|
557
|
+
|
558
|
+
@property
|
559
|
+
@pulumi.getter(name="userTokenSecretVersion")
|
560
|
+
def user_token_secret_version(self) -> pulumi.Input[str]:
|
561
|
+
"""
|
562
|
+
Required. A SecretManager resource containing the user token that authorizes
|
563
|
+
the Developer Connect connection. Format:
|
564
|
+
`projects/*/secrets/*/versions/*`.
|
565
|
+
"""
|
566
|
+
return pulumi.get(self, "user_token_secret_version")
|
567
|
+
|
568
|
+
@user_token_secret_version.setter
|
569
|
+
def user_token_secret_version(self, value: pulumi.Input[str]):
|
570
|
+
pulumi.set(self, "user_token_secret_version", value)
|
571
|
+
|
572
|
+
@property
|
573
|
+
@pulumi.getter
|
574
|
+
def username(self) -> Optional[pulumi.Input[str]]:
|
575
|
+
"""
|
576
|
+
(Output)
|
577
|
+
Output only. The username associated with this token.
|
578
|
+
"""
|
579
|
+
return pulumi.get(self, "username")
|
580
|
+
|
581
|
+
@username.setter
|
582
|
+
def username(self, value: Optional[pulumi.Input[str]]):
|
583
|
+
pulumi.set(self, "username", value)
|
584
|
+
|
585
|
+
|
586
|
+
if not MYPY:
|
587
|
+
class ConnectionBitbucketDataCenterConfigServiceDirectoryConfigArgsDict(TypedDict):
|
588
|
+
service: pulumi.Input[str]
|
589
|
+
"""
|
590
|
+
Required. The Service Directory service name.
|
591
|
+
Format:
|
592
|
+
projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
|
593
|
+
"""
|
594
|
+
elif False:
|
595
|
+
ConnectionBitbucketDataCenterConfigServiceDirectoryConfigArgsDict: TypeAlias = Mapping[str, Any]
|
596
|
+
|
597
|
+
@pulumi.input_type
|
598
|
+
class ConnectionBitbucketDataCenterConfigServiceDirectoryConfigArgs:
|
599
|
+
def __init__(__self__, *,
|
600
|
+
service: pulumi.Input[str]):
|
601
|
+
"""
|
602
|
+
:param pulumi.Input[str] service: Required. The Service Directory service name.
|
603
|
+
Format:
|
604
|
+
projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
|
605
|
+
"""
|
606
|
+
pulumi.set(__self__, "service", service)
|
607
|
+
|
608
|
+
@property
|
609
|
+
@pulumi.getter
|
610
|
+
def service(self) -> pulumi.Input[str]:
|
611
|
+
"""
|
612
|
+
Required. The Service Directory service name.
|
613
|
+
Format:
|
614
|
+
projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
|
615
|
+
"""
|
616
|
+
return pulumi.get(self, "service")
|
617
|
+
|
618
|
+
@service.setter
|
619
|
+
def service(self, value: pulumi.Input[str]):
|
620
|
+
pulumi.set(self, "service", value)
|
621
|
+
|
622
|
+
|
48
623
|
if not MYPY:
|
49
624
|
class ConnectionCryptoKeyConfigArgsDict(TypedDict):
|
50
625
|
key_reference: pulumi.Input[str]
|