pulumi-gcp 7.27.0a1718247696__py3-none-any.whl → 7.28.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_gcp/__init__.py +59 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +58 -74
- pulumi_gcp/accesscontextmanager/access_levels.py +0 -20
- pulumi_gcp/accesscontextmanager/outputs.py +58 -74
- pulumi_gcp/accesscontextmanager/service_perimeter.py +2 -0
- pulumi_gcp/bigtable/_inputs.py +40 -0
- pulumi_gcp/bigtable/outputs.py +49 -0
- pulumi_gcp/bigtable/table.py +54 -0
- pulumi_gcp/cloudbuildv2/_inputs.py +383 -0
- pulumi_gcp/cloudbuildv2/connection.py +110 -2
- pulumi_gcp/cloudbuildv2/outputs.py +421 -0
- pulumi_gcp/composer/__init__.py +3 -0
- pulumi_gcp/composer/get_user_workloads_config_map.py +190 -0
- pulumi_gcp/composer/get_user_workloads_secret.py +188 -0
- pulumi_gcp/composer/user_workloads_config_map.py +475 -0
- pulumi_gcp/compute/_inputs.py +4 -2
- pulumi_gcp/compute/backend_service.py +28 -48
- pulumi_gcp/compute/interconnect.py +4 -4
- pulumi_gcp/compute/outputs.py +10 -4
- pulumi_gcp/compute/region_backend_service.py +35 -48
- pulumi_gcp/compute/region_network_endpoint.py +187 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +49 -9
- pulumi_gcp/compute/region_target_https_proxy.py +7 -14
- pulumi_gcp/compute/target_https_proxy.py +28 -14
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +2 -2
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/discoveryengine/_inputs.py +227 -0
- pulumi_gcp/discoveryengine/data_store.py +108 -0
- pulumi_gcp/discoveryengine/outputs.py +280 -0
- pulumi_gcp/edgecontainer/_inputs.py +107 -1
- pulumi_gcp/edgecontainer/outputs.py +123 -1
- pulumi_gcp/gkehub/_inputs.py +16 -0
- pulumi_gcp/gkehub/outputs.py +15 -1
- pulumi_gcp/kms/crypto_key.py +2 -6
- pulumi_gcp/logging/folder_sink.py +14 -14
- pulumi_gcp/logging/organization_sink.py +14 -14
- pulumi_gcp/managedkafka/__init__.py +11 -0
- pulumi_gcp/managedkafka/_inputs.py +169 -0
- pulumi_gcp/managedkafka/cluster.py +807 -0
- pulumi_gcp/managedkafka/outputs.py +197 -0
- pulumi_gcp/managedkafka/topic.py +599 -0
- pulumi_gcp/netapp/__init__.py +1 -0
- pulumi_gcp/netapp/active_directory.py +55 -0
- pulumi_gcp/netapp/backup.py +903 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/__init__.py +3 -0
- pulumi_gcp/securitycenter/_inputs.py +1105 -0
- pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py +725 -0
- pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py +713 -0
- pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_module.py +706 -0
- pulumi_gcp/securitycenter/outputs.py +1048 -0
- pulumi_gcp/vertex/ai_feature_online_store.py +37 -8
- {pulumi_gcp-7.27.0a1718247696.dist-info → pulumi_gcp-7.28.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.27.0a1718247696.dist-info → pulumi_gcp-7.28.0.dist-info}/RECORD +59 -47
- {pulumi_gcp-7.27.0a1718247696.dist-info → pulumi_gcp-7.28.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-7.27.0a1718247696.dist-info → pulumi_gcp-7.28.0.dist-info}/top_level.txt +0 -0
@@ -10,6 +10,13 @@ from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
10
|
from .. import _utilities
|
11
11
|
|
12
12
|
__all__ = [
|
13
|
+
'ConnectionBitbucketCloudConfigArgs',
|
14
|
+
'ConnectionBitbucketCloudConfigAuthorizerCredentialArgs',
|
15
|
+
'ConnectionBitbucketCloudConfigReadAuthorizerCredentialArgs',
|
16
|
+
'ConnectionBitbucketDataCenterConfigArgs',
|
17
|
+
'ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgs',
|
18
|
+
'ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgs',
|
19
|
+
'ConnectionBitbucketDataCenterConfigServiceDirectoryConfigArgs',
|
13
20
|
'ConnectionGithubConfigArgs',
|
14
21
|
'ConnectionGithubConfigAuthorizerCredentialArgs',
|
15
22
|
'ConnectionGithubEnterpriseConfigArgs',
|
@@ -23,6 +30,382 @@ __all__ = [
|
|
23
30
|
'ConnectionInstallationStateArgs',
|
24
31
|
]
|
25
32
|
|
33
|
+
@pulumi.input_type
|
34
|
+
class ConnectionBitbucketCloudConfigArgs:
|
35
|
+
def __init__(__self__, *,
|
36
|
+
authorizer_credential: pulumi.Input['ConnectionBitbucketCloudConfigAuthorizerCredentialArgs'],
|
37
|
+
read_authorizer_credential: pulumi.Input['ConnectionBitbucketCloudConfigReadAuthorizerCredentialArgs'],
|
38
|
+
webhook_secret_secret_version: pulumi.Input[str],
|
39
|
+
workspace: pulumi.Input[str]):
|
40
|
+
"""
|
41
|
+
:param pulumi.Input['ConnectionBitbucketCloudConfigAuthorizerCredentialArgs'] authorizer_credential: Required. An access token with the `webhook`, `repository`, `repository:admin` and `pullrequest` scope access. It can be either a workspace, project or repository access token. It's recommended to use a system account to generate these credentials.
|
42
|
+
Structure is documented below.
|
43
|
+
:param pulumi.Input['ConnectionBitbucketCloudConfigReadAuthorizerCredentialArgs'] read_authorizer_credential: Required. An access token with the `repository` access. It can be either a workspace, project or repository access token. It's recommended to use a system account to generate the credentials.
|
44
|
+
Structure is documented below.
|
45
|
+
:param pulumi.Input[str] webhook_secret_secret_version: Required. Immutable. SecretManager resource containing the webhook secret used to verify webhook events, formatted as `projects/*/secrets/*/versions/*`.
|
46
|
+
:param pulumi.Input[str] workspace: The Bitbucket Cloud Workspace ID to be connected to Google Cloud Platform.
|
47
|
+
"""
|
48
|
+
pulumi.set(__self__, "authorizer_credential", authorizer_credential)
|
49
|
+
pulumi.set(__self__, "read_authorizer_credential", read_authorizer_credential)
|
50
|
+
pulumi.set(__self__, "webhook_secret_secret_version", webhook_secret_secret_version)
|
51
|
+
pulumi.set(__self__, "workspace", workspace)
|
52
|
+
|
53
|
+
@property
|
54
|
+
@pulumi.getter(name="authorizerCredential")
|
55
|
+
def authorizer_credential(self) -> pulumi.Input['ConnectionBitbucketCloudConfigAuthorizerCredentialArgs']:
|
56
|
+
"""
|
57
|
+
Required. An access token with the `webhook`, `repository`, `repository:admin` and `pullrequest` scope access. It can be either a workspace, project or repository access token. It's recommended to use a system account to generate these credentials.
|
58
|
+
Structure is documented below.
|
59
|
+
"""
|
60
|
+
return pulumi.get(self, "authorizer_credential")
|
61
|
+
|
62
|
+
@authorizer_credential.setter
|
63
|
+
def authorizer_credential(self, value: pulumi.Input['ConnectionBitbucketCloudConfigAuthorizerCredentialArgs']):
|
64
|
+
pulumi.set(self, "authorizer_credential", value)
|
65
|
+
|
66
|
+
@property
|
67
|
+
@pulumi.getter(name="readAuthorizerCredential")
|
68
|
+
def read_authorizer_credential(self) -> pulumi.Input['ConnectionBitbucketCloudConfigReadAuthorizerCredentialArgs']:
|
69
|
+
"""
|
70
|
+
Required. An access token with the `repository` access. It can be either a workspace, project or repository access token. It's recommended to use a system account to generate the credentials.
|
71
|
+
Structure is documented below.
|
72
|
+
"""
|
73
|
+
return pulumi.get(self, "read_authorizer_credential")
|
74
|
+
|
75
|
+
@read_authorizer_credential.setter
|
76
|
+
def read_authorizer_credential(self, value: pulumi.Input['ConnectionBitbucketCloudConfigReadAuthorizerCredentialArgs']):
|
77
|
+
pulumi.set(self, "read_authorizer_credential", value)
|
78
|
+
|
79
|
+
@property
|
80
|
+
@pulumi.getter(name="webhookSecretSecretVersion")
|
81
|
+
def webhook_secret_secret_version(self) -> pulumi.Input[str]:
|
82
|
+
"""
|
83
|
+
Required. Immutable. SecretManager resource containing the webhook secret used to verify webhook events, formatted as `projects/*/secrets/*/versions/*`.
|
84
|
+
"""
|
85
|
+
return pulumi.get(self, "webhook_secret_secret_version")
|
86
|
+
|
87
|
+
@webhook_secret_secret_version.setter
|
88
|
+
def webhook_secret_secret_version(self, value: pulumi.Input[str]):
|
89
|
+
pulumi.set(self, "webhook_secret_secret_version", value)
|
90
|
+
|
91
|
+
@property
|
92
|
+
@pulumi.getter
|
93
|
+
def workspace(self) -> pulumi.Input[str]:
|
94
|
+
"""
|
95
|
+
The Bitbucket Cloud Workspace ID to be connected to Google Cloud Platform.
|
96
|
+
"""
|
97
|
+
return pulumi.get(self, "workspace")
|
98
|
+
|
99
|
+
@workspace.setter
|
100
|
+
def workspace(self, value: pulumi.Input[str]):
|
101
|
+
pulumi.set(self, "workspace", value)
|
102
|
+
|
103
|
+
|
104
|
+
@pulumi.input_type
|
105
|
+
class ConnectionBitbucketCloudConfigAuthorizerCredentialArgs:
|
106
|
+
def __init__(__self__, *,
|
107
|
+
user_token_secret_version: pulumi.Input[str],
|
108
|
+
username: Optional[pulumi.Input[str]] = None):
|
109
|
+
"""
|
110
|
+
:param pulumi.Input[str] user_token_secret_version: Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
111
|
+
:param pulumi.Input[str] username: (Output)
|
112
|
+
Output only. The username associated to this token.
|
113
|
+
"""
|
114
|
+
pulumi.set(__self__, "user_token_secret_version", user_token_secret_version)
|
115
|
+
if username is not None:
|
116
|
+
pulumi.set(__self__, "username", username)
|
117
|
+
|
118
|
+
@property
|
119
|
+
@pulumi.getter(name="userTokenSecretVersion")
|
120
|
+
def user_token_secret_version(self) -> pulumi.Input[str]:
|
121
|
+
"""
|
122
|
+
Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
123
|
+
"""
|
124
|
+
return pulumi.get(self, "user_token_secret_version")
|
125
|
+
|
126
|
+
@user_token_secret_version.setter
|
127
|
+
def user_token_secret_version(self, value: pulumi.Input[str]):
|
128
|
+
pulumi.set(self, "user_token_secret_version", value)
|
129
|
+
|
130
|
+
@property
|
131
|
+
@pulumi.getter
|
132
|
+
def username(self) -> Optional[pulumi.Input[str]]:
|
133
|
+
"""
|
134
|
+
(Output)
|
135
|
+
Output only. The username associated to this token.
|
136
|
+
"""
|
137
|
+
return pulumi.get(self, "username")
|
138
|
+
|
139
|
+
@username.setter
|
140
|
+
def username(self, value: Optional[pulumi.Input[str]]):
|
141
|
+
pulumi.set(self, "username", value)
|
142
|
+
|
143
|
+
|
144
|
+
@pulumi.input_type
|
145
|
+
class ConnectionBitbucketCloudConfigReadAuthorizerCredentialArgs:
|
146
|
+
def __init__(__self__, *,
|
147
|
+
user_token_secret_version: pulumi.Input[str],
|
148
|
+
username: Optional[pulumi.Input[str]] = None):
|
149
|
+
"""
|
150
|
+
:param pulumi.Input[str] user_token_secret_version: Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
151
|
+
:param pulumi.Input[str] username: (Output)
|
152
|
+
Output only. The username associated to this token.
|
153
|
+
"""
|
154
|
+
pulumi.set(__self__, "user_token_secret_version", user_token_secret_version)
|
155
|
+
if username is not None:
|
156
|
+
pulumi.set(__self__, "username", username)
|
157
|
+
|
158
|
+
@property
|
159
|
+
@pulumi.getter(name="userTokenSecretVersion")
|
160
|
+
def user_token_secret_version(self) -> pulumi.Input[str]:
|
161
|
+
"""
|
162
|
+
Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
163
|
+
"""
|
164
|
+
return pulumi.get(self, "user_token_secret_version")
|
165
|
+
|
166
|
+
@user_token_secret_version.setter
|
167
|
+
def user_token_secret_version(self, value: pulumi.Input[str]):
|
168
|
+
pulumi.set(self, "user_token_secret_version", value)
|
169
|
+
|
170
|
+
@property
|
171
|
+
@pulumi.getter
|
172
|
+
def username(self) -> Optional[pulumi.Input[str]]:
|
173
|
+
"""
|
174
|
+
(Output)
|
175
|
+
Output only. The username associated to this token.
|
176
|
+
"""
|
177
|
+
return pulumi.get(self, "username")
|
178
|
+
|
179
|
+
@username.setter
|
180
|
+
def username(self, value: Optional[pulumi.Input[str]]):
|
181
|
+
pulumi.set(self, "username", value)
|
182
|
+
|
183
|
+
|
184
|
+
@pulumi.input_type
|
185
|
+
class ConnectionBitbucketDataCenterConfigArgs:
|
186
|
+
def __init__(__self__, *,
|
187
|
+
authorizer_credential: pulumi.Input['ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgs'],
|
188
|
+
host_uri: pulumi.Input[str],
|
189
|
+
read_authorizer_credential: pulumi.Input['ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgs'],
|
190
|
+
webhook_secret_secret_version: pulumi.Input[str],
|
191
|
+
server_version: Optional[pulumi.Input[str]] = None,
|
192
|
+
service_directory_config: Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigServiceDirectoryConfigArgs']] = None,
|
193
|
+
ssl_ca: Optional[pulumi.Input[str]] = None):
|
194
|
+
"""
|
195
|
+
:param pulumi.Input['ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgs'] authorizer_credential: Required. A http access token with the `REPO_ADMIN` scope access.
|
196
|
+
Structure is documented below.
|
197
|
+
:param pulumi.Input[str] host_uri: The URI of the Bitbucket Data Center host this connection is for.
|
198
|
+
:param pulumi.Input['ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgs'] read_authorizer_credential: Required. A http access token with the `REPO_READ` access.
|
199
|
+
Structure is documented below.
|
200
|
+
:param pulumi.Input[str] webhook_secret_secret_version: Required. Immutable. SecretManager resource containing the webhook secret used to verify webhook events, formatted as `projects/*/secrets/*/versions/*`.
|
201
|
+
:param pulumi.Input[str] server_version: (Output)
|
202
|
+
Output only. Version of the Bitbucket Data Center running on the `host_uri`.
|
203
|
+
:param pulumi.Input['ConnectionBitbucketDataCenterConfigServiceDirectoryConfigArgs'] service_directory_config: Configuration for using Service Directory to privately connect to a Bitbucket Data Center. This should only be set if the Bitbucket Data Center is hosted on-premises and not reachable by public internet. If this field is left empty, calls to the Bitbucket Data Center will be made over the public internet.
|
204
|
+
Structure is documented below.
|
205
|
+
:param pulumi.Input[str] ssl_ca: SSL certificate to use for requests to the Bitbucket Data Center.
|
206
|
+
"""
|
207
|
+
pulumi.set(__self__, "authorizer_credential", authorizer_credential)
|
208
|
+
pulumi.set(__self__, "host_uri", host_uri)
|
209
|
+
pulumi.set(__self__, "read_authorizer_credential", read_authorizer_credential)
|
210
|
+
pulumi.set(__self__, "webhook_secret_secret_version", webhook_secret_secret_version)
|
211
|
+
if server_version is not None:
|
212
|
+
pulumi.set(__self__, "server_version", server_version)
|
213
|
+
if service_directory_config is not None:
|
214
|
+
pulumi.set(__self__, "service_directory_config", service_directory_config)
|
215
|
+
if ssl_ca is not None:
|
216
|
+
pulumi.set(__self__, "ssl_ca", ssl_ca)
|
217
|
+
|
218
|
+
@property
|
219
|
+
@pulumi.getter(name="authorizerCredential")
|
220
|
+
def authorizer_credential(self) -> pulumi.Input['ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgs']:
|
221
|
+
"""
|
222
|
+
Required. A http access token with the `REPO_ADMIN` scope access.
|
223
|
+
Structure is documented below.
|
224
|
+
"""
|
225
|
+
return pulumi.get(self, "authorizer_credential")
|
226
|
+
|
227
|
+
@authorizer_credential.setter
|
228
|
+
def authorizer_credential(self, value: pulumi.Input['ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgs']):
|
229
|
+
pulumi.set(self, "authorizer_credential", value)
|
230
|
+
|
231
|
+
@property
|
232
|
+
@pulumi.getter(name="hostUri")
|
233
|
+
def host_uri(self) -> pulumi.Input[str]:
|
234
|
+
"""
|
235
|
+
The URI of the Bitbucket Data Center host this connection is for.
|
236
|
+
"""
|
237
|
+
return pulumi.get(self, "host_uri")
|
238
|
+
|
239
|
+
@host_uri.setter
|
240
|
+
def host_uri(self, value: pulumi.Input[str]):
|
241
|
+
pulumi.set(self, "host_uri", value)
|
242
|
+
|
243
|
+
@property
|
244
|
+
@pulumi.getter(name="readAuthorizerCredential")
|
245
|
+
def read_authorizer_credential(self) -> pulumi.Input['ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgs']:
|
246
|
+
"""
|
247
|
+
Required. A http access token with the `REPO_READ` access.
|
248
|
+
Structure is documented below.
|
249
|
+
"""
|
250
|
+
return pulumi.get(self, "read_authorizer_credential")
|
251
|
+
|
252
|
+
@read_authorizer_credential.setter
|
253
|
+
def read_authorizer_credential(self, value: pulumi.Input['ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgs']):
|
254
|
+
pulumi.set(self, "read_authorizer_credential", value)
|
255
|
+
|
256
|
+
@property
|
257
|
+
@pulumi.getter(name="webhookSecretSecretVersion")
|
258
|
+
def webhook_secret_secret_version(self) -> pulumi.Input[str]:
|
259
|
+
"""
|
260
|
+
Required. Immutable. SecretManager resource containing the webhook secret used to verify webhook events, formatted as `projects/*/secrets/*/versions/*`.
|
261
|
+
"""
|
262
|
+
return pulumi.get(self, "webhook_secret_secret_version")
|
263
|
+
|
264
|
+
@webhook_secret_secret_version.setter
|
265
|
+
def webhook_secret_secret_version(self, value: pulumi.Input[str]):
|
266
|
+
pulumi.set(self, "webhook_secret_secret_version", value)
|
267
|
+
|
268
|
+
@property
|
269
|
+
@pulumi.getter(name="serverVersion")
|
270
|
+
def server_version(self) -> Optional[pulumi.Input[str]]:
|
271
|
+
"""
|
272
|
+
(Output)
|
273
|
+
Output only. Version of the Bitbucket Data Center running on the `host_uri`.
|
274
|
+
"""
|
275
|
+
return pulumi.get(self, "server_version")
|
276
|
+
|
277
|
+
@server_version.setter
|
278
|
+
def server_version(self, value: Optional[pulumi.Input[str]]):
|
279
|
+
pulumi.set(self, "server_version", value)
|
280
|
+
|
281
|
+
@property
|
282
|
+
@pulumi.getter(name="serviceDirectoryConfig")
|
283
|
+
def service_directory_config(self) -> Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigServiceDirectoryConfigArgs']]:
|
284
|
+
"""
|
285
|
+
Configuration for using Service Directory to privately connect to a Bitbucket Data Center. This should only be set if the Bitbucket Data Center is hosted on-premises and not reachable by public internet. If this field is left empty, calls to the Bitbucket Data Center will be made over the public internet.
|
286
|
+
Structure is documented below.
|
287
|
+
"""
|
288
|
+
return pulumi.get(self, "service_directory_config")
|
289
|
+
|
290
|
+
@service_directory_config.setter
|
291
|
+
def service_directory_config(self, value: Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigServiceDirectoryConfigArgs']]):
|
292
|
+
pulumi.set(self, "service_directory_config", value)
|
293
|
+
|
294
|
+
@property
|
295
|
+
@pulumi.getter(name="sslCa")
|
296
|
+
def ssl_ca(self) -> Optional[pulumi.Input[str]]:
|
297
|
+
"""
|
298
|
+
SSL certificate to use for requests to the Bitbucket Data Center.
|
299
|
+
"""
|
300
|
+
return pulumi.get(self, "ssl_ca")
|
301
|
+
|
302
|
+
@ssl_ca.setter
|
303
|
+
def ssl_ca(self, value: Optional[pulumi.Input[str]]):
|
304
|
+
pulumi.set(self, "ssl_ca", value)
|
305
|
+
|
306
|
+
|
307
|
+
@pulumi.input_type
|
308
|
+
class ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgs:
|
309
|
+
def __init__(__self__, *,
|
310
|
+
user_token_secret_version: pulumi.Input[str],
|
311
|
+
username: Optional[pulumi.Input[str]] = None):
|
312
|
+
"""
|
313
|
+
:param pulumi.Input[str] user_token_secret_version: Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
314
|
+
:param pulumi.Input[str] username: (Output)
|
315
|
+
Output only. The username associated to this token.
|
316
|
+
"""
|
317
|
+
pulumi.set(__self__, "user_token_secret_version", user_token_secret_version)
|
318
|
+
if username is not None:
|
319
|
+
pulumi.set(__self__, "username", username)
|
320
|
+
|
321
|
+
@property
|
322
|
+
@pulumi.getter(name="userTokenSecretVersion")
|
323
|
+
def user_token_secret_version(self) -> pulumi.Input[str]:
|
324
|
+
"""
|
325
|
+
Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
326
|
+
"""
|
327
|
+
return pulumi.get(self, "user_token_secret_version")
|
328
|
+
|
329
|
+
@user_token_secret_version.setter
|
330
|
+
def user_token_secret_version(self, value: pulumi.Input[str]):
|
331
|
+
pulumi.set(self, "user_token_secret_version", value)
|
332
|
+
|
333
|
+
@property
|
334
|
+
@pulumi.getter
|
335
|
+
def username(self) -> Optional[pulumi.Input[str]]:
|
336
|
+
"""
|
337
|
+
(Output)
|
338
|
+
Output only. The username associated to this token.
|
339
|
+
"""
|
340
|
+
return pulumi.get(self, "username")
|
341
|
+
|
342
|
+
@username.setter
|
343
|
+
def username(self, value: Optional[pulumi.Input[str]]):
|
344
|
+
pulumi.set(self, "username", value)
|
345
|
+
|
346
|
+
|
347
|
+
@pulumi.input_type
|
348
|
+
class ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgs:
|
349
|
+
def __init__(__self__, *,
|
350
|
+
user_token_secret_version: pulumi.Input[str],
|
351
|
+
username: Optional[pulumi.Input[str]] = None):
|
352
|
+
"""
|
353
|
+
:param pulumi.Input[str] user_token_secret_version: Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
354
|
+
:param pulumi.Input[str] username: (Output)
|
355
|
+
Output only. The username associated to this token.
|
356
|
+
"""
|
357
|
+
pulumi.set(__self__, "user_token_secret_version", user_token_secret_version)
|
358
|
+
if username is not None:
|
359
|
+
pulumi.set(__self__, "username", username)
|
360
|
+
|
361
|
+
@property
|
362
|
+
@pulumi.getter(name="userTokenSecretVersion")
|
363
|
+
def user_token_secret_version(self) -> pulumi.Input[str]:
|
364
|
+
"""
|
365
|
+
Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
366
|
+
"""
|
367
|
+
return pulumi.get(self, "user_token_secret_version")
|
368
|
+
|
369
|
+
@user_token_secret_version.setter
|
370
|
+
def user_token_secret_version(self, value: pulumi.Input[str]):
|
371
|
+
pulumi.set(self, "user_token_secret_version", value)
|
372
|
+
|
373
|
+
@property
|
374
|
+
@pulumi.getter
|
375
|
+
def username(self) -> Optional[pulumi.Input[str]]:
|
376
|
+
"""
|
377
|
+
(Output)
|
378
|
+
Output only. The username associated to this token.
|
379
|
+
"""
|
380
|
+
return pulumi.get(self, "username")
|
381
|
+
|
382
|
+
@username.setter
|
383
|
+
def username(self, value: Optional[pulumi.Input[str]]):
|
384
|
+
pulumi.set(self, "username", value)
|
385
|
+
|
386
|
+
|
387
|
+
@pulumi.input_type
|
388
|
+
class ConnectionBitbucketDataCenterConfigServiceDirectoryConfigArgs:
|
389
|
+
def __init__(__self__, *,
|
390
|
+
service: pulumi.Input[str]):
|
391
|
+
"""
|
392
|
+
:param pulumi.Input[str] service: Required. The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
|
393
|
+
"""
|
394
|
+
pulumi.set(__self__, "service", service)
|
395
|
+
|
396
|
+
@property
|
397
|
+
@pulumi.getter
|
398
|
+
def service(self) -> pulumi.Input[str]:
|
399
|
+
"""
|
400
|
+
Required. The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
|
401
|
+
"""
|
402
|
+
return pulumi.get(self, "service")
|
403
|
+
|
404
|
+
@service.setter
|
405
|
+
def service(self, value: pulumi.Input[str]):
|
406
|
+
pulumi.set(self, "service", value)
|
407
|
+
|
408
|
+
|
26
409
|
@pulumi.input_type
|
27
410
|
class ConnectionGithubConfigArgs:
|
28
411
|
def __init__(__self__, *,
|
@@ -18,6 +18,8 @@ class ConnectionArgs:
|
|
18
18
|
def __init__(__self__, *,
|
19
19
|
location: pulumi.Input[str],
|
20
20
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
21
|
+
bitbucket_cloud_config: Optional[pulumi.Input['ConnectionBitbucketCloudConfigArgs']] = None,
|
22
|
+
bitbucket_data_center_config: Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigArgs']] = None,
|
21
23
|
disabled: Optional[pulumi.Input[bool]] = None,
|
22
24
|
github_config: Optional[pulumi.Input['ConnectionGithubConfigArgs']] = None,
|
23
25
|
github_enterprise_config: Optional[pulumi.Input['ConnectionGithubEnterpriseConfigArgs']] = None,
|
@@ -33,6 +35,10 @@ class ConnectionArgs:
|
|
33
35
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: Allows clients to store small amounts of arbitrary data.
|
34
36
|
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
35
37
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
38
|
+
:param pulumi.Input['ConnectionBitbucketCloudConfigArgs'] bitbucket_cloud_config: Configuration for connections to Bitbucket Cloud.
|
39
|
+
Structure is documented below.
|
40
|
+
:param pulumi.Input['ConnectionBitbucketDataCenterConfigArgs'] bitbucket_data_center_config: Configuration for connections to Bitbucket Data Center.
|
41
|
+
Structure is documented below.
|
36
42
|
:param pulumi.Input[bool] disabled: If disabled is set to true, functionality is disabled for this connection. Repository based API methods and webhooks processing for repositories in this connection will be disabled.
|
37
43
|
:param pulumi.Input['ConnectionGithubConfigArgs'] github_config: Configuration for connections to github.com.
|
38
44
|
Structure is documented below.
|
@@ -47,6 +53,10 @@ class ConnectionArgs:
|
|
47
53
|
pulumi.set(__self__, "location", location)
|
48
54
|
if annotations is not None:
|
49
55
|
pulumi.set(__self__, "annotations", annotations)
|
56
|
+
if bitbucket_cloud_config is not None:
|
57
|
+
pulumi.set(__self__, "bitbucket_cloud_config", bitbucket_cloud_config)
|
58
|
+
if bitbucket_data_center_config is not None:
|
59
|
+
pulumi.set(__self__, "bitbucket_data_center_config", bitbucket_data_center_config)
|
50
60
|
if disabled is not None:
|
51
61
|
pulumi.set(__self__, "disabled", disabled)
|
52
62
|
if github_config is not None:
|
@@ -89,6 +99,32 @@ class ConnectionArgs:
|
|
89
99
|
def annotations(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
90
100
|
pulumi.set(self, "annotations", value)
|
91
101
|
|
102
|
+
@property
|
103
|
+
@pulumi.getter(name="bitbucketCloudConfig")
|
104
|
+
def bitbucket_cloud_config(self) -> Optional[pulumi.Input['ConnectionBitbucketCloudConfigArgs']]:
|
105
|
+
"""
|
106
|
+
Configuration for connections to Bitbucket Cloud.
|
107
|
+
Structure is documented below.
|
108
|
+
"""
|
109
|
+
return pulumi.get(self, "bitbucket_cloud_config")
|
110
|
+
|
111
|
+
@bitbucket_cloud_config.setter
|
112
|
+
def bitbucket_cloud_config(self, value: Optional[pulumi.Input['ConnectionBitbucketCloudConfigArgs']]):
|
113
|
+
pulumi.set(self, "bitbucket_cloud_config", value)
|
114
|
+
|
115
|
+
@property
|
116
|
+
@pulumi.getter(name="bitbucketDataCenterConfig")
|
117
|
+
def bitbucket_data_center_config(self) -> Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigArgs']]:
|
118
|
+
"""
|
119
|
+
Configuration for connections to Bitbucket Data Center.
|
120
|
+
Structure is documented below.
|
121
|
+
"""
|
122
|
+
return pulumi.get(self, "bitbucket_data_center_config")
|
123
|
+
|
124
|
+
@bitbucket_data_center_config.setter
|
125
|
+
def bitbucket_data_center_config(self, value: Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigArgs']]):
|
126
|
+
pulumi.set(self, "bitbucket_data_center_config", value)
|
127
|
+
|
92
128
|
@property
|
93
129
|
@pulumi.getter
|
94
130
|
def disabled(self) -> Optional[pulumi.Input[bool]]:
|
@@ -170,6 +206,8 @@ class ConnectionArgs:
|
|
170
206
|
class _ConnectionState:
|
171
207
|
def __init__(__self__, *,
|
172
208
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
209
|
+
bitbucket_cloud_config: Optional[pulumi.Input['ConnectionBitbucketCloudConfigArgs']] = None,
|
210
|
+
bitbucket_data_center_config: Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigArgs']] = None,
|
173
211
|
create_time: Optional[pulumi.Input[str]] = None,
|
174
212
|
disabled: Optional[pulumi.Input[bool]] = None,
|
175
213
|
effective_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -188,6 +226,10 @@ class _ConnectionState:
|
|
188
226
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: Allows clients to store small amounts of arbitrary data.
|
189
227
|
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
190
228
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
229
|
+
:param pulumi.Input['ConnectionBitbucketCloudConfigArgs'] bitbucket_cloud_config: Configuration for connections to Bitbucket Cloud.
|
230
|
+
Structure is documented below.
|
231
|
+
:param pulumi.Input['ConnectionBitbucketDataCenterConfigArgs'] bitbucket_data_center_config: Configuration for connections to Bitbucket Data Center.
|
232
|
+
Structure is documented below.
|
191
233
|
:param pulumi.Input[str] create_time: Output only. Server assigned timestamp for when the connection was created.
|
192
234
|
:param pulumi.Input[bool] disabled: If disabled is set to true, functionality is disabled for this connection. Repository based API methods and webhooks processing for repositories in this connection will be disabled.
|
193
235
|
:param pulumi.Input[str] etag: This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
|
@@ -211,6 +253,10 @@ class _ConnectionState:
|
|
211
253
|
"""
|
212
254
|
if annotations is not None:
|
213
255
|
pulumi.set(__self__, "annotations", annotations)
|
256
|
+
if bitbucket_cloud_config is not None:
|
257
|
+
pulumi.set(__self__, "bitbucket_cloud_config", bitbucket_cloud_config)
|
258
|
+
if bitbucket_data_center_config is not None:
|
259
|
+
pulumi.set(__self__, "bitbucket_data_center_config", bitbucket_data_center_config)
|
214
260
|
if create_time is not None:
|
215
261
|
pulumi.set(__self__, "create_time", create_time)
|
216
262
|
if disabled is not None:
|
@@ -252,6 +298,32 @@ class _ConnectionState:
|
|
252
298
|
def annotations(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
253
299
|
pulumi.set(self, "annotations", value)
|
254
300
|
|
301
|
+
@property
|
302
|
+
@pulumi.getter(name="bitbucketCloudConfig")
|
303
|
+
def bitbucket_cloud_config(self) -> Optional[pulumi.Input['ConnectionBitbucketCloudConfigArgs']]:
|
304
|
+
"""
|
305
|
+
Configuration for connections to Bitbucket Cloud.
|
306
|
+
Structure is documented below.
|
307
|
+
"""
|
308
|
+
return pulumi.get(self, "bitbucket_cloud_config")
|
309
|
+
|
310
|
+
@bitbucket_cloud_config.setter
|
311
|
+
def bitbucket_cloud_config(self, value: Optional[pulumi.Input['ConnectionBitbucketCloudConfigArgs']]):
|
312
|
+
pulumi.set(self, "bitbucket_cloud_config", value)
|
313
|
+
|
314
|
+
@property
|
315
|
+
@pulumi.getter(name="bitbucketDataCenterConfig")
|
316
|
+
def bitbucket_data_center_config(self) -> Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigArgs']]:
|
317
|
+
"""
|
318
|
+
Configuration for connections to Bitbucket Data Center.
|
319
|
+
Structure is documented below.
|
320
|
+
"""
|
321
|
+
return pulumi.get(self, "bitbucket_data_center_config")
|
322
|
+
|
323
|
+
@bitbucket_data_center_config.setter
|
324
|
+
def bitbucket_data_center_config(self, value: Optional[pulumi.Input['ConnectionBitbucketDataCenterConfigArgs']]):
|
325
|
+
pulumi.set(self, "bitbucket_data_center_config", value)
|
326
|
+
|
255
327
|
@property
|
256
328
|
@pulumi.getter(name="createTime")
|
257
329
|
def create_time(self) -> Optional[pulumi.Input[str]]:
|
@@ -420,6 +492,8 @@ class Connection(pulumi.CustomResource):
|
|
420
492
|
resource_name: str,
|
421
493
|
opts: Optional[pulumi.ResourceOptions] = None,
|
422
494
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
495
|
+
bitbucket_cloud_config: Optional[pulumi.Input[pulumi.InputType['ConnectionBitbucketCloudConfigArgs']]] = None,
|
496
|
+
bitbucket_data_center_config: Optional[pulumi.Input[pulumi.InputType['ConnectionBitbucketDataCenterConfigArgs']]] = None,
|
423
497
|
disabled: Optional[pulumi.Input[bool]] = None,
|
424
498
|
github_config: Optional[pulumi.Input[pulumi.InputType['ConnectionGithubConfigArgs']]] = None,
|
425
499
|
github_enterprise_config: Optional[pulumi.Input[pulumi.InputType['ConnectionGithubEnterpriseConfigArgs']]] = None,
|
@@ -429,7 +503,7 @@ class Connection(pulumi.CustomResource):
|
|
429
503
|
project: Optional[pulumi.Input[str]] = None,
|
430
504
|
__props__=None):
|
431
505
|
"""
|
432
|
-
A connection to a SCM like GitHub, GitHub Enterprise, Bitbucket Data Center or GitLab.
|
506
|
+
A connection to a SCM like GitHub, GitHub Enterprise, Bitbucket Data Center/Cloud or GitLab.
|
433
507
|
|
434
508
|
To get more information about Connection, see:
|
435
509
|
|
@@ -572,6 +646,10 @@ class Connection(pulumi.CustomResource):
|
|
572
646
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: Allows clients to store small amounts of arbitrary data.
|
573
647
|
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
574
648
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
649
|
+
:param pulumi.Input[pulumi.InputType['ConnectionBitbucketCloudConfigArgs']] bitbucket_cloud_config: Configuration for connections to Bitbucket Cloud.
|
650
|
+
Structure is documented below.
|
651
|
+
:param pulumi.Input[pulumi.InputType['ConnectionBitbucketDataCenterConfigArgs']] bitbucket_data_center_config: Configuration for connections to Bitbucket Data Center.
|
652
|
+
Structure is documented below.
|
575
653
|
:param pulumi.Input[bool] disabled: If disabled is set to true, functionality is disabled for this connection. Repository based API methods and webhooks processing for repositories in this connection will be disabled.
|
576
654
|
:param pulumi.Input[pulumi.InputType['ConnectionGithubConfigArgs']] github_config: Configuration for connections to github.com.
|
577
655
|
Structure is documented below.
|
@@ -594,7 +672,7 @@ class Connection(pulumi.CustomResource):
|
|
594
672
|
args: ConnectionArgs,
|
595
673
|
opts: Optional[pulumi.ResourceOptions] = None):
|
596
674
|
"""
|
597
|
-
A connection to a SCM like GitHub, GitHub Enterprise, Bitbucket Data Center or GitLab.
|
675
|
+
A connection to a SCM like GitHub, GitHub Enterprise, Bitbucket Data Center/Cloud or GitLab.
|
598
676
|
|
599
677
|
To get more information about Connection, see:
|
600
678
|
|
@@ -748,6 +826,8 @@ class Connection(pulumi.CustomResource):
|
|
748
826
|
resource_name: str,
|
749
827
|
opts: Optional[pulumi.ResourceOptions] = None,
|
750
828
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
829
|
+
bitbucket_cloud_config: Optional[pulumi.Input[pulumi.InputType['ConnectionBitbucketCloudConfigArgs']]] = None,
|
830
|
+
bitbucket_data_center_config: Optional[pulumi.Input[pulumi.InputType['ConnectionBitbucketDataCenterConfigArgs']]] = None,
|
751
831
|
disabled: Optional[pulumi.Input[bool]] = None,
|
752
832
|
github_config: Optional[pulumi.Input[pulumi.InputType['ConnectionGithubConfigArgs']]] = None,
|
753
833
|
github_enterprise_config: Optional[pulumi.Input[pulumi.InputType['ConnectionGithubEnterpriseConfigArgs']]] = None,
|
@@ -765,6 +845,8 @@ class Connection(pulumi.CustomResource):
|
|
765
845
|
__props__ = ConnectionArgs.__new__(ConnectionArgs)
|
766
846
|
|
767
847
|
__props__.__dict__["annotations"] = annotations
|
848
|
+
__props__.__dict__["bitbucket_cloud_config"] = bitbucket_cloud_config
|
849
|
+
__props__.__dict__["bitbucket_data_center_config"] = bitbucket_data_center_config
|
768
850
|
__props__.__dict__["disabled"] = disabled
|
769
851
|
__props__.__dict__["github_config"] = github_config
|
770
852
|
__props__.__dict__["github_enterprise_config"] = github_enterprise_config
|
@@ -791,6 +873,8 @@ class Connection(pulumi.CustomResource):
|
|
791
873
|
id: pulumi.Input[str],
|
792
874
|
opts: Optional[pulumi.ResourceOptions] = None,
|
793
875
|
annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
876
|
+
bitbucket_cloud_config: Optional[pulumi.Input[pulumi.InputType['ConnectionBitbucketCloudConfigArgs']]] = None,
|
877
|
+
bitbucket_data_center_config: Optional[pulumi.Input[pulumi.InputType['ConnectionBitbucketDataCenterConfigArgs']]] = None,
|
794
878
|
create_time: Optional[pulumi.Input[str]] = None,
|
795
879
|
disabled: Optional[pulumi.Input[bool]] = None,
|
796
880
|
effective_annotations: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -814,6 +898,10 @@ class Connection(pulumi.CustomResource):
|
|
814
898
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] annotations: Allows clients to store small amounts of arbitrary data.
|
815
899
|
**Note**: This field is non-authoritative, and will only manage the annotations present in your configuration.
|
816
900
|
Please refer to the field `effective_annotations` for all of the annotations present on the resource.
|
901
|
+
:param pulumi.Input[pulumi.InputType['ConnectionBitbucketCloudConfigArgs']] bitbucket_cloud_config: Configuration for connections to Bitbucket Cloud.
|
902
|
+
Structure is documented below.
|
903
|
+
:param pulumi.Input[pulumi.InputType['ConnectionBitbucketDataCenterConfigArgs']] bitbucket_data_center_config: Configuration for connections to Bitbucket Data Center.
|
904
|
+
Structure is documented below.
|
817
905
|
:param pulumi.Input[str] create_time: Output only. Server assigned timestamp for when the connection was created.
|
818
906
|
:param pulumi.Input[bool] disabled: If disabled is set to true, functionality is disabled for this connection. Repository based API methods and webhooks processing for repositories in this connection will be disabled.
|
819
907
|
:param pulumi.Input[str] etag: This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.
|
@@ -840,6 +928,8 @@ class Connection(pulumi.CustomResource):
|
|
840
928
|
__props__ = _ConnectionState.__new__(_ConnectionState)
|
841
929
|
|
842
930
|
__props__.__dict__["annotations"] = annotations
|
931
|
+
__props__.__dict__["bitbucket_cloud_config"] = bitbucket_cloud_config
|
932
|
+
__props__.__dict__["bitbucket_data_center_config"] = bitbucket_data_center_config
|
843
933
|
__props__.__dict__["create_time"] = create_time
|
844
934
|
__props__.__dict__["disabled"] = disabled
|
845
935
|
__props__.__dict__["effective_annotations"] = effective_annotations
|
@@ -865,6 +955,24 @@ class Connection(pulumi.CustomResource):
|
|
865
955
|
"""
|
866
956
|
return pulumi.get(self, "annotations")
|
867
957
|
|
958
|
+
@property
|
959
|
+
@pulumi.getter(name="bitbucketCloudConfig")
|
960
|
+
def bitbucket_cloud_config(self) -> pulumi.Output[Optional['outputs.ConnectionBitbucketCloudConfig']]:
|
961
|
+
"""
|
962
|
+
Configuration for connections to Bitbucket Cloud.
|
963
|
+
Structure is documented below.
|
964
|
+
"""
|
965
|
+
return pulumi.get(self, "bitbucket_cloud_config")
|
966
|
+
|
967
|
+
@property
|
968
|
+
@pulumi.getter(name="bitbucketDataCenterConfig")
|
969
|
+
def bitbucket_data_center_config(self) -> pulumi.Output[Optional['outputs.ConnectionBitbucketDataCenterConfig']]:
|
970
|
+
"""
|
971
|
+
Configuration for connections to Bitbucket Data Center.
|
972
|
+
Structure is documented below.
|
973
|
+
"""
|
974
|
+
return pulumi.get(self, "bitbucket_data_center_config")
|
975
|
+
|
868
976
|
@property
|
869
977
|
@pulumi.getter(name="createTime")
|
870
978
|
def create_time(self) -> pulumi.Output[str]:
|