pulumi-gcp 7.28.0__py3-none-any.whl → 7.28.0a1718754929__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.
Files changed (58) hide show
  1. pulumi_gcp/__init__.py +0 -59
  2. pulumi_gcp/accesscontextmanager/_inputs.py +74 -58
  3. pulumi_gcp/accesscontextmanager/access_levels.py +20 -0
  4. pulumi_gcp/accesscontextmanager/outputs.py +74 -58
  5. pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
  6. pulumi_gcp/bigtable/_inputs.py +0 -40
  7. pulumi_gcp/bigtable/outputs.py +0 -49
  8. pulumi_gcp/bigtable/table.py +0 -54
  9. pulumi_gcp/cloudbuildv2/_inputs.py +0 -383
  10. pulumi_gcp/cloudbuildv2/connection.py +2 -110
  11. pulumi_gcp/cloudbuildv2/outputs.py +0 -421
  12. pulumi_gcp/composer/__init__.py +0 -3
  13. pulumi_gcp/compute/_inputs.py +2 -4
  14. pulumi_gcp/compute/backend_service.py +48 -28
  15. pulumi_gcp/compute/interconnect.py +4 -4
  16. pulumi_gcp/compute/outputs.py +4 -10
  17. pulumi_gcp/compute/region_backend_service.py +48 -35
  18. pulumi_gcp/compute/region_network_endpoint.py +0 -187
  19. pulumi_gcp/compute/region_network_endpoint_group.py +9 -49
  20. pulumi_gcp/compute/region_target_https_proxy.py +14 -7
  21. pulumi_gcp/compute/target_https_proxy.py +14 -28
  22. pulumi_gcp/config/__init__.pyi +0 -2
  23. pulumi_gcp/config/vars.py +0 -4
  24. pulumi_gcp/container/_inputs.py +2 -2
  25. pulumi_gcp/container/outputs.py +4 -4
  26. pulumi_gcp/discoveryengine/_inputs.py +0 -227
  27. pulumi_gcp/discoveryengine/data_store.py +0 -108
  28. pulumi_gcp/discoveryengine/outputs.py +0 -280
  29. pulumi_gcp/edgecontainer/_inputs.py +1 -107
  30. pulumi_gcp/edgecontainer/outputs.py +1 -123
  31. pulumi_gcp/gkehub/_inputs.py +0 -16
  32. pulumi_gcp/gkehub/outputs.py +1 -15
  33. pulumi_gcp/logging/folder_sink.py +14 -14
  34. pulumi_gcp/logging/organization_sink.py +14 -14
  35. pulumi_gcp/netapp/__init__.py +0 -1
  36. pulumi_gcp/netapp/active_directory.py +0 -55
  37. pulumi_gcp/provider.py +0 -20
  38. pulumi_gcp/pulumi-plugin.json +1 -1
  39. pulumi_gcp/securitycenter/__init__.py +0 -3
  40. pulumi_gcp/securitycenter/_inputs.py +0 -1105
  41. pulumi_gcp/securitycenter/outputs.py +0 -1048
  42. pulumi_gcp/vertex/ai_feature_online_store.py +8 -37
  43. {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718754929.dist-info}/METADATA +1 -1
  44. {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718754929.dist-info}/RECORD +46 -58
  45. {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718754929.dist-info}/WHEEL +1 -1
  46. pulumi_gcp/composer/get_user_workloads_config_map.py +0 -190
  47. pulumi_gcp/composer/get_user_workloads_secret.py +0 -188
  48. pulumi_gcp/composer/user_workloads_config_map.py +0 -475
  49. pulumi_gcp/managedkafka/__init__.py +0 -11
  50. pulumi_gcp/managedkafka/_inputs.py +0 -169
  51. pulumi_gcp/managedkafka/cluster.py +0 -807
  52. pulumi_gcp/managedkafka/outputs.py +0 -197
  53. pulumi_gcp/managedkafka/topic.py +0 -599
  54. pulumi_gcp/netapp/backup.py +0 -903
  55. pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py +0 -725
  56. pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py +0 -713
  57. pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_module.py +0 -706
  58. {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718754929.dist-info}/top_level.txt +0 -0
@@ -10,13 +10,6 @@ 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',
20
13
  'ConnectionGithubConfigArgs',
21
14
  'ConnectionGithubConfigAuthorizerCredentialArgs',
22
15
  'ConnectionGithubEnterpriseConfigArgs',
@@ -30,382 +23,6 @@ __all__ = [
30
23
  'ConnectionInstallationStateArgs',
31
24
  ]
32
25
 
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
-
409
26
  @pulumi.input_type
410
27
  class ConnectionGithubConfigArgs:
411
28
  def __init__(__self__, *,
@@ -18,8 +18,6 @@ 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,
23
21
  disabled: Optional[pulumi.Input[bool]] = None,
24
22
  github_config: Optional[pulumi.Input['ConnectionGithubConfigArgs']] = None,
25
23
  github_enterprise_config: Optional[pulumi.Input['ConnectionGithubEnterpriseConfigArgs']] = None,
@@ -35,10 +33,6 @@ class ConnectionArgs:
35
33
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: Allows clients to store small amounts of arbitrary data.
36
34
  **Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
37
35
  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.
42
36
  :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.
43
37
  :param pulumi.Input['ConnectionGithubConfigArgs'] github_config: Configuration for connections to github.com.
44
38
  Structure is documented below.
@@ -53,10 +47,6 @@ class ConnectionArgs:
53
47
  pulumi.set(__self__, "location", location)
54
48
  if annotations is not None:
55
49
  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)
60
50
  if disabled is not None:
61
51
  pulumi.set(__self__, "disabled", disabled)
62
52
  if github_config is not None:
@@ -99,32 +89,6 @@ class ConnectionArgs:
99
89
  def annotations(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
100
90
  pulumi.set(self, "annotations", value)
101
91
 
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
-
128
92
  @property
129
93
  @pulumi.getter
130
94
  def disabled(self) -> Optional[pulumi.Input[bool]]:
@@ -206,8 +170,6 @@ class ConnectionArgs:
206
170
  class _ConnectionState:
207
171
  def __init__(__self__, *,
208
172
  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,
211
173
  create_time: Optional[pulumi.Input[str]] = None,
212
174
  disabled: Optional[pulumi.Input[bool]] = None,
213
175
  effective_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -226,10 +188,6 @@ class _ConnectionState:
226
188
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: Allows clients to store small amounts of arbitrary data.
227
189
  **Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
228
190
  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.
233
191
  :param pulumi.Input[str] create_time: Output only. Server assigned timestamp for when the connection was created.
234
192
  :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.
235
193
  :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.
@@ -253,10 +211,6 @@ class _ConnectionState:
253
211
  """
254
212
  if annotations is not None:
255
213
  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)
260
214
  if create_time is not None:
261
215
  pulumi.set(__self__, "create_time", create_time)
262
216
  if disabled is not None:
@@ -298,32 +252,6 @@ class _ConnectionState:
298
252
  def annotations(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
299
253
  pulumi.set(self, "annotations", value)
300
254
 
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
-
327
255
  @property
328
256
  @pulumi.getter(name="createTime")
329
257
  def create_time(self) -> Optional[pulumi.Input[str]]:
@@ -492,8 +420,6 @@ class Connection(pulumi.CustomResource):
492
420
  resource_name: str,
493
421
  opts: Optional[pulumi.ResourceOptions] = None,
494
422
  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,
497
423
  disabled: Optional[pulumi.Input[bool]] = None,
498
424
  github_config: Optional[pulumi.Input[pulumi.InputType['ConnectionGithubConfigArgs']]] = None,
499
425
  github_enterprise_config: Optional[pulumi.Input[pulumi.InputType['ConnectionGithubEnterpriseConfigArgs']]] = None,
@@ -503,7 +429,7 @@ class Connection(pulumi.CustomResource):
503
429
  project: Optional[pulumi.Input[str]] = None,
504
430
  __props__=None):
505
431
  """
506
- A connection to a SCM like GitHub, GitHub Enterprise, Bitbucket Data Center/Cloud or GitLab.
432
+ A connection to a SCM like GitHub, GitHub Enterprise, Bitbucket Data Center or GitLab.
507
433
 
508
434
  To get more information about Connection, see:
509
435
 
@@ -646,10 +572,6 @@ class Connection(pulumi.CustomResource):
646
572
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: Allows clients to store small amounts of arbitrary data.
647
573
  **Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
648
574
  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.
653
575
  :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.
654
576
  :param pulumi.Input[pulumi.InputType['ConnectionGithubConfigArgs']] github_config: Configuration for connections to github.com.
655
577
  Structure is documented below.
@@ -672,7 +594,7 @@ class Connection(pulumi.CustomResource):
672
594
  args: ConnectionArgs,
673
595
  opts: Optional[pulumi.ResourceOptions] = None):
674
596
  """
675
- A connection to a SCM like GitHub, GitHub Enterprise, Bitbucket Data Center/Cloud or GitLab.
597
+ A connection to a SCM like GitHub, GitHub Enterprise, Bitbucket Data Center or GitLab.
676
598
 
677
599
  To get more information about Connection, see:
678
600
 
@@ -826,8 +748,6 @@ class Connection(pulumi.CustomResource):
826
748
  resource_name: str,
827
749
  opts: Optional[pulumi.ResourceOptions] = None,
828
750
  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,
831
751
  disabled: Optional[pulumi.Input[bool]] = None,
832
752
  github_config: Optional[pulumi.Input[pulumi.InputType['ConnectionGithubConfigArgs']]] = None,
833
753
  github_enterprise_config: Optional[pulumi.Input[pulumi.InputType['ConnectionGithubEnterpriseConfigArgs']]] = None,
@@ -845,8 +765,6 @@ class Connection(pulumi.CustomResource):
845
765
  __props__ = ConnectionArgs.__new__(ConnectionArgs)
846
766
 
847
767
  __props__.__dict__["annotations"] = annotations
848
- __props__.__dict__["bitbucket_cloud_config"] = bitbucket_cloud_config
849
- __props__.__dict__["bitbucket_data_center_config"] = bitbucket_data_center_config
850
768
  __props__.__dict__["disabled"] = disabled
851
769
  __props__.__dict__["github_config"] = github_config
852
770
  __props__.__dict__["github_enterprise_config"] = github_enterprise_config
@@ -873,8 +791,6 @@ class Connection(pulumi.CustomResource):
873
791
  id: pulumi.Input[str],
874
792
  opts: Optional[pulumi.ResourceOptions] = None,
875
793
  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,
878
794
  create_time: Optional[pulumi.Input[str]] = None,
879
795
  disabled: Optional[pulumi.Input[bool]] = None,
880
796
  effective_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
@@ -898,10 +814,6 @@ class Connection(pulumi.CustomResource):
898
814
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: Allows clients to store small amounts of arbitrary data.
899
815
  **Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
900
816
  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.
905
817
  :param pulumi.Input[str] create_time: Output only. Server assigned timestamp for when the connection was created.
906
818
  :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.
907
819
  :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.
@@ -928,8 +840,6 @@ class Connection(pulumi.CustomResource):
928
840
  __props__ = _ConnectionState.__new__(_ConnectionState)
929
841
 
930
842
  __props__.__dict__["annotations"] = annotations
931
- __props__.__dict__["bitbucket_cloud_config"] = bitbucket_cloud_config
932
- __props__.__dict__["bitbucket_data_center_config"] = bitbucket_data_center_config
933
843
  __props__.__dict__["create_time"] = create_time
934
844
  __props__.__dict__["disabled"] = disabled
935
845
  __props__.__dict__["effective_annotations"] = effective_annotations
@@ -955,24 +865,6 @@ class Connection(pulumi.CustomResource):
955
865
  """
956
866
  return pulumi.get(self, "annotations")
957
867
 
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
-
976
868
  @property
977
869
  @pulumi.getter(name="createTime")
978
870
  def create_time(self) -> pulumi.Output[str]: