pulumi-gcp 7.28.0__py3-none-any.whl → 7.28.0a1718431623__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 +0 -59
- pulumi_gcp/accesscontextmanager/_inputs.py +74 -58
- pulumi_gcp/accesscontextmanager/access_levels.py +20 -0
- pulumi_gcp/accesscontextmanager/outputs.py +74 -58
- pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
- pulumi_gcp/bigtable/_inputs.py +0 -40
- pulumi_gcp/bigtable/outputs.py +0 -49
- pulumi_gcp/bigtable/table.py +0 -54
- pulumi_gcp/cloudbuildv2/_inputs.py +0 -383
- pulumi_gcp/cloudbuildv2/connection.py +2 -110
- pulumi_gcp/cloudbuildv2/outputs.py +0 -421
- pulumi_gcp/composer/__init__.py +0 -3
- pulumi_gcp/compute/_inputs.py +2 -4
- pulumi_gcp/compute/backend_service.py +48 -28
- pulumi_gcp/compute/interconnect.py +4 -4
- pulumi_gcp/compute/outputs.py +4 -10
- pulumi_gcp/compute/region_backend_service.py +48 -35
- pulumi_gcp/compute/region_network_endpoint.py +0 -187
- pulumi_gcp/compute/region_network_endpoint_group.py +9 -49
- pulumi_gcp/compute/region_target_https_proxy.py +14 -7
- pulumi_gcp/compute/target_https_proxy.py +14 -28
- pulumi_gcp/config/__init__.pyi +0 -2
- pulumi_gcp/config/vars.py +0 -4
- pulumi_gcp/container/_inputs.py +2 -2
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/discoveryengine/_inputs.py +0 -227
- pulumi_gcp/discoveryengine/data_store.py +0 -108
- pulumi_gcp/discoveryengine/outputs.py +0 -280
- pulumi_gcp/edgecontainer/_inputs.py +1 -107
- pulumi_gcp/edgecontainer/outputs.py +1 -123
- pulumi_gcp/gkehub/_inputs.py +0 -16
- pulumi_gcp/gkehub/outputs.py +1 -15
- pulumi_gcp/kms/crypto_key.py +6 -2
- pulumi_gcp/logging/folder_sink.py +14 -14
- pulumi_gcp/logging/organization_sink.py +14 -14
- pulumi_gcp/netapp/__init__.py +0 -1
- pulumi_gcp/netapp/active_directory.py +0 -55
- pulumi_gcp/provider.py +0 -20
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/__init__.py +0 -3
- pulumi_gcp/securitycenter/_inputs.py +0 -1105
- pulumi_gcp/securitycenter/outputs.py +0 -1048
- pulumi_gcp/vertex/ai_feature_online_store.py +8 -37
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718431623.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718431623.dist-info}/RECORD +47 -59
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718431623.dist-info}/WHEEL +1 -1
- pulumi_gcp/composer/get_user_workloads_config_map.py +0 -190
- pulumi_gcp/composer/get_user_workloads_secret.py +0 -188
- pulumi_gcp/composer/user_workloads_config_map.py +0 -475
- pulumi_gcp/managedkafka/__init__.py +0 -11
- pulumi_gcp/managedkafka/_inputs.py +0 -169
- pulumi_gcp/managedkafka/cluster.py +0 -807
- pulumi_gcp/managedkafka/outputs.py +0 -197
- pulumi_gcp/managedkafka/topic.py +0 -599
- pulumi_gcp/netapp/backup.py +0 -903
- pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py +0 -725
- pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py +0 -713
- pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_module.py +0 -706
- {pulumi_gcp-7.28.0.dist-info → pulumi_gcp-7.28.0a1718431623.dist-info}/top_level.txt +0 -0
@@ -11,13 +11,6 @@ from .. import _utilities
|
|
11
11
|
from . import outputs
|
12
12
|
|
13
13
|
__all__ = [
|
14
|
-
'ConnectionBitbucketCloudConfig',
|
15
|
-
'ConnectionBitbucketCloudConfigAuthorizerCredential',
|
16
|
-
'ConnectionBitbucketCloudConfigReadAuthorizerCredential',
|
17
|
-
'ConnectionBitbucketDataCenterConfig',
|
18
|
-
'ConnectionBitbucketDataCenterConfigAuthorizerCredential',
|
19
|
-
'ConnectionBitbucketDataCenterConfigReadAuthorizerCredential',
|
20
|
-
'ConnectionBitbucketDataCenterConfigServiceDirectoryConfig',
|
21
14
|
'ConnectionGithubConfig',
|
22
15
|
'ConnectionGithubConfigAuthorizerCredential',
|
23
16
|
'ConnectionGithubEnterpriseConfig',
|
@@ -31,420 +24,6 @@ __all__ = [
|
|
31
24
|
'ConnectionInstallationState',
|
32
25
|
]
|
33
26
|
|
34
|
-
@pulumi.output_type
|
35
|
-
class ConnectionBitbucketCloudConfig(dict):
|
36
|
-
@staticmethod
|
37
|
-
def __key_warning(key: str):
|
38
|
-
suggest = None
|
39
|
-
if key == "authorizerCredential":
|
40
|
-
suggest = "authorizer_credential"
|
41
|
-
elif key == "readAuthorizerCredential":
|
42
|
-
suggest = "read_authorizer_credential"
|
43
|
-
elif key == "webhookSecretSecretVersion":
|
44
|
-
suggest = "webhook_secret_secret_version"
|
45
|
-
|
46
|
-
if suggest:
|
47
|
-
pulumi.log.warn(f"Key '{key}' not found in ConnectionBitbucketCloudConfig. Access the value via the '{suggest}' property getter instead.")
|
48
|
-
|
49
|
-
def __getitem__(self, key: str) -> Any:
|
50
|
-
ConnectionBitbucketCloudConfig.__key_warning(key)
|
51
|
-
return super().__getitem__(key)
|
52
|
-
|
53
|
-
def get(self, key: str, default = None) -> Any:
|
54
|
-
ConnectionBitbucketCloudConfig.__key_warning(key)
|
55
|
-
return super().get(key, default)
|
56
|
-
|
57
|
-
def __init__(__self__, *,
|
58
|
-
authorizer_credential: 'outputs.ConnectionBitbucketCloudConfigAuthorizerCredential',
|
59
|
-
read_authorizer_credential: 'outputs.ConnectionBitbucketCloudConfigReadAuthorizerCredential',
|
60
|
-
webhook_secret_secret_version: str,
|
61
|
-
workspace: str):
|
62
|
-
"""
|
63
|
-
:param '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.
|
64
|
-
Structure is documented below.
|
65
|
-
:param '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.
|
66
|
-
Structure is documented below.
|
67
|
-
:param str webhook_secret_secret_version: Required. Immutable. SecretManager resource containing the webhook secret used to verify webhook events, formatted as `projects/*/secrets/*/versions/*`.
|
68
|
-
:param str workspace: The Bitbucket Cloud Workspace ID to be connected to Google Cloud Platform.
|
69
|
-
"""
|
70
|
-
pulumi.set(__self__, "authorizer_credential", authorizer_credential)
|
71
|
-
pulumi.set(__self__, "read_authorizer_credential", read_authorizer_credential)
|
72
|
-
pulumi.set(__self__, "webhook_secret_secret_version", webhook_secret_secret_version)
|
73
|
-
pulumi.set(__self__, "workspace", workspace)
|
74
|
-
|
75
|
-
@property
|
76
|
-
@pulumi.getter(name="authorizerCredential")
|
77
|
-
def authorizer_credential(self) -> 'outputs.ConnectionBitbucketCloudConfigAuthorizerCredential':
|
78
|
-
"""
|
79
|
-
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.
|
80
|
-
Structure is documented below.
|
81
|
-
"""
|
82
|
-
return pulumi.get(self, "authorizer_credential")
|
83
|
-
|
84
|
-
@property
|
85
|
-
@pulumi.getter(name="readAuthorizerCredential")
|
86
|
-
def read_authorizer_credential(self) -> 'outputs.ConnectionBitbucketCloudConfigReadAuthorizerCredential':
|
87
|
-
"""
|
88
|
-
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.
|
89
|
-
Structure is documented below.
|
90
|
-
"""
|
91
|
-
return pulumi.get(self, "read_authorizer_credential")
|
92
|
-
|
93
|
-
@property
|
94
|
-
@pulumi.getter(name="webhookSecretSecretVersion")
|
95
|
-
def webhook_secret_secret_version(self) -> str:
|
96
|
-
"""
|
97
|
-
Required. Immutable. SecretManager resource containing the webhook secret used to verify webhook events, formatted as `projects/*/secrets/*/versions/*`.
|
98
|
-
"""
|
99
|
-
return pulumi.get(self, "webhook_secret_secret_version")
|
100
|
-
|
101
|
-
@property
|
102
|
-
@pulumi.getter
|
103
|
-
def workspace(self) -> str:
|
104
|
-
"""
|
105
|
-
The Bitbucket Cloud Workspace ID to be connected to Google Cloud Platform.
|
106
|
-
"""
|
107
|
-
return pulumi.get(self, "workspace")
|
108
|
-
|
109
|
-
|
110
|
-
@pulumi.output_type
|
111
|
-
class ConnectionBitbucketCloudConfigAuthorizerCredential(dict):
|
112
|
-
@staticmethod
|
113
|
-
def __key_warning(key: str):
|
114
|
-
suggest = None
|
115
|
-
if key == "userTokenSecretVersion":
|
116
|
-
suggest = "user_token_secret_version"
|
117
|
-
|
118
|
-
if suggest:
|
119
|
-
pulumi.log.warn(f"Key '{key}' not found in ConnectionBitbucketCloudConfigAuthorizerCredential. Access the value via the '{suggest}' property getter instead.")
|
120
|
-
|
121
|
-
def __getitem__(self, key: str) -> Any:
|
122
|
-
ConnectionBitbucketCloudConfigAuthorizerCredential.__key_warning(key)
|
123
|
-
return super().__getitem__(key)
|
124
|
-
|
125
|
-
def get(self, key: str, default = None) -> Any:
|
126
|
-
ConnectionBitbucketCloudConfigAuthorizerCredential.__key_warning(key)
|
127
|
-
return super().get(key, default)
|
128
|
-
|
129
|
-
def __init__(__self__, *,
|
130
|
-
user_token_secret_version: str,
|
131
|
-
username: Optional[str] = None):
|
132
|
-
"""
|
133
|
-
:param str user_token_secret_version: Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
134
|
-
:param str username: (Output)
|
135
|
-
Output only. The username associated to this token.
|
136
|
-
"""
|
137
|
-
pulumi.set(__self__, "user_token_secret_version", user_token_secret_version)
|
138
|
-
if username is not None:
|
139
|
-
pulumi.set(__self__, "username", username)
|
140
|
-
|
141
|
-
@property
|
142
|
-
@pulumi.getter(name="userTokenSecretVersion")
|
143
|
-
def user_token_secret_version(self) -> str:
|
144
|
-
"""
|
145
|
-
Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
146
|
-
"""
|
147
|
-
return pulumi.get(self, "user_token_secret_version")
|
148
|
-
|
149
|
-
@property
|
150
|
-
@pulumi.getter
|
151
|
-
def username(self) -> Optional[str]:
|
152
|
-
"""
|
153
|
-
(Output)
|
154
|
-
Output only. The username associated to this token.
|
155
|
-
"""
|
156
|
-
return pulumi.get(self, "username")
|
157
|
-
|
158
|
-
|
159
|
-
@pulumi.output_type
|
160
|
-
class ConnectionBitbucketCloudConfigReadAuthorizerCredential(dict):
|
161
|
-
@staticmethod
|
162
|
-
def __key_warning(key: str):
|
163
|
-
suggest = None
|
164
|
-
if key == "userTokenSecretVersion":
|
165
|
-
suggest = "user_token_secret_version"
|
166
|
-
|
167
|
-
if suggest:
|
168
|
-
pulumi.log.warn(f"Key '{key}' not found in ConnectionBitbucketCloudConfigReadAuthorizerCredential. Access the value via the '{suggest}' property getter instead.")
|
169
|
-
|
170
|
-
def __getitem__(self, key: str) -> Any:
|
171
|
-
ConnectionBitbucketCloudConfigReadAuthorizerCredential.__key_warning(key)
|
172
|
-
return super().__getitem__(key)
|
173
|
-
|
174
|
-
def get(self, key: str, default = None) -> Any:
|
175
|
-
ConnectionBitbucketCloudConfigReadAuthorizerCredential.__key_warning(key)
|
176
|
-
return super().get(key, default)
|
177
|
-
|
178
|
-
def __init__(__self__, *,
|
179
|
-
user_token_secret_version: str,
|
180
|
-
username: Optional[str] = None):
|
181
|
-
"""
|
182
|
-
:param str user_token_secret_version: Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
183
|
-
:param str username: (Output)
|
184
|
-
Output only. The username associated to this token.
|
185
|
-
"""
|
186
|
-
pulumi.set(__self__, "user_token_secret_version", user_token_secret_version)
|
187
|
-
if username is not None:
|
188
|
-
pulumi.set(__self__, "username", username)
|
189
|
-
|
190
|
-
@property
|
191
|
-
@pulumi.getter(name="userTokenSecretVersion")
|
192
|
-
def user_token_secret_version(self) -> str:
|
193
|
-
"""
|
194
|
-
Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
195
|
-
"""
|
196
|
-
return pulumi.get(self, "user_token_secret_version")
|
197
|
-
|
198
|
-
@property
|
199
|
-
@pulumi.getter
|
200
|
-
def username(self) -> Optional[str]:
|
201
|
-
"""
|
202
|
-
(Output)
|
203
|
-
Output only. The username associated to this token.
|
204
|
-
"""
|
205
|
-
return pulumi.get(self, "username")
|
206
|
-
|
207
|
-
|
208
|
-
@pulumi.output_type
|
209
|
-
class ConnectionBitbucketDataCenterConfig(dict):
|
210
|
-
@staticmethod
|
211
|
-
def __key_warning(key: str):
|
212
|
-
suggest = None
|
213
|
-
if key == "authorizerCredential":
|
214
|
-
suggest = "authorizer_credential"
|
215
|
-
elif key == "hostUri":
|
216
|
-
suggest = "host_uri"
|
217
|
-
elif key == "readAuthorizerCredential":
|
218
|
-
suggest = "read_authorizer_credential"
|
219
|
-
elif key == "webhookSecretSecretVersion":
|
220
|
-
suggest = "webhook_secret_secret_version"
|
221
|
-
elif key == "serverVersion":
|
222
|
-
suggest = "server_version"
|
223
|
-
elif key == "serviceDirectoryConfig":
|
224
|
-
suggest = "service_directory_config"
|
225
|
-
elif key == "sslCa":
|
226
|
-
suggest = "ssl_ca"
|
227
|
-
|
228
|
-
if suggest:
|
229
|
-
pulumi.log.warn(f"Key '{key}' not found in ConnectionBitbucketDataCenterConfig. Access the value via the '{suggest}' property getter instead.")
|
230
|
-
|
231
|
-
def __getitem__(self, key: str) -> Any:
|
232
|
-
ConnectionBitbucketDataCenterConfig.__key_warning(key)
|
233
|
-
return super().__getitem__(key)
|
234
|
-
|
235
|
-
def get(self, key: str, default = None) -> Any:
|
236
|
-
ConnectionBitbucketDataCenterConfig.__key_warning(key)
|
237
|
-
return super().get(key, default)
|
238
|
-
|
239
|
-
def __init__(__self__, *,
|
240
|
-
authorizer_credential: 'outputs.ConnectionBitbucketDataCenterConfigAuthorizerCredential',
|
241
|
-
host_uri: str,
|
242
|
-
read_authorizer_credential: 'outputs.ConnectionBitbucketDataCenterConfigReadAuthorizerCredential',
|
243
|
-
webhook_secret_secret_version: str,
|
244
|
-
server_version: Optional[str] = None,
|
245
|
-
service_directory_config: Optional['outputs.ConnectionBitbucketDataCenterConfigServiceDirectoryConfig'] = None,
|
246
|
-
ssl_ca: Optional[str] = None):
|
247
|
-
"""
|
248
|
-
:param 'ConnectionBitbucketDataCenterConfigAuthorizerCredentialArgs' authorizer_credential: Required. A http access token with the `REPO_ADMIN` scope access.
|
249
|
-
Structure is documented below.
|
250
|
-
:param str host_uri: The URI of the Bitbucket Data Center host this connection is for.
|
251
|
-
:param 'ConnectionBitbucketDataCenterConfigReadAuthorizerCredentialArgs' read_authorizer_credential: Required. A http access token with the `REPO_READ` access.
|
252
|
-
Structure is documented below.
|
253
|
-
:param str webhook_secret_secret_version: Required. Immutable. SecretManager resource containing the webhook secret used to verify webhook events, formatted as `projects/*/secrets/*/versions/*`.
|
254
|
-
:param str server_version: (Output)
|
255
|
-
Output only. Version of the Bitbucket Data Center running on the `host_uri`.
|
256
|
-
:param '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.
|
257
|
-
Structure is documented below.
|
258
|
-
:param str ssl_ca: SSL certificate to use for requests to the Bitbucket Data Center.
|
259
|
-
"""
|
260
|
-
pulumi.set(__self__, "authorizer_credential", authorizer_credential)
|
261
|
-
pulumi.set(__self__, "host_uri", host_uri)
|
262
|
-
pulumi.set(__self__, "read_authorizer_credential", read_authorizer_credential)
|
263
|
-
pulumi.set(__self__, "webhook_secret_secret_version", webhook_secret_secret_version)
|
264
|
-
if server_version is not None:
|
265
|
-
pulumi.set(__self__, "server_version", server_version)
|
266
|
-
if service_directory_config is not None:
|
267
|
-
pulumi.set(__self__, "service_directory_config", service_directory_config)
|
268
|
-
if ssl_ca is not None:
|
269
|
-
pulumi.set(__self__, "ssl_ca", ssl_ca)
|
270
|
-
|
271
|
-
@property
|
272
|
-
@pulumi.getter(name="authorizerCredential")
|
273
|
-
def authorizer_credential(self) -> 'outputs.ConnectionBitbucketDataCenterConfigAuthorizerCredential':
|
274
|
-
"""
|
275
|
-
Required. A http access token with the `REPO_ADMIN` scope access.
|
276
|
-
Structure is documented below.
|
277
|
-
"""
|
278
|
-
return pulumi.get(self, "authorizer_credential")
|
279
|
-
|
280
|
-
@property
|
281
|
-
@pulumi.getter(name="hostUri")
|
282
|
-
def host_uri(self) -> str:
|
283
|
-
"""
|
284
|
-
The URI of the Bitbucket Data Center host this connection is for.
|
285
|
-
"""
|
286
|
-
return pulumi.get(self, "host_uri")
|
287
|
-
|
288
|
-
@property
|
289
|
-
@pulumi.getter(name="readAuthorizerCredential")
|
290
|
-
def read_authorizer_credential(self) -> 'outputs.ConnectionBitbucketDataCenterConfigReadAuthorizerCredential':
|
291
|
-
"""
|
292
|
-
Required. A http access token with the `REPO_READ` access.
|
293
|
-
Structure is documented below.
|
294
|
-
"""
|
295
|
-
return pulumi.get(self, "read_authorizer_credential")
|
296
|
-
|
297
|
-
@property
|
298
|
-
@pulumi.getter(name="webhookSecretSecretVersion")
|
299
|
-
def webhook_secret_secret_version(self) -> str:
|
300
|
-
"""
|
301
|
-
Required. Immutable. SecretManager resource containing the webhook secret used to verify webhook events, formatted as `projects/*/secrets/*/versions/*`.
|
302
|
-
"""
|
303
|
-
return pulumi.get(self, "webhook_secret_secret_version")
|
304
|
-
|
305
|
-
@property
|
306
|
-
@pulumi.getter(name="serverVersion")
|
307
|
-
def server_version(self) -> Optional[str]:
|
308
|
-
"""
|
309
|
-
(Output)
|
310
|
-
Output only. Version of the Bitbucket Data Center running on the `host_uri`.
|
311
|
-
"""
|
312
|
-
return pulumi.get(self, "server_version")
|
313
|
-
|
314
|
-
@property
|
315
|
-
@pulumi.getter(name="serviceDirectoryConfig")
|
316
|
-
def service_directory_config(self) -> Optional['outputs.ConnectionBitbucketDataCenterConfigServiceDirectoryConfig']:
|
317
|
-
"""
|
318
|
-
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.
|
319
|
-
Structure is documented below.
|
320
|
-
"""
|
321
|
-
return pulumi.get(self, "service_directory_config")
|
322
|
-
|
323
|
-
@property
|
324
|
-
@pulumi.getter(name="sslCa")
|
325
|
-
def ssl_ca(self) -> Optional[str]:
|
326
|
-
"""
|
327
|
-
SSL certificate to use for requests to the Bitbucket Data Center.
|
328
|
-
"""
|
329
|
-
return pulumi.get(self, "ssl_ca")
|
330
|
-
|
331
|
-
|
332
|
-
@pulumi.output_type
|
333
|
-
class ConnectionBitbucketDataCenterConfigAuthorizerCredential(dict):
|
334
|
-
@staticmethod
|
335
|
-
def __key_warning(key: str):
|
336
|
-
suggest = None
|
337
|
-
if key == "userTokenSecretVersion":
|
338
|
-
suggest = "user_token_secret_version"
|
339
|
-
|
340
|
-
if suggest:
|
341
|
-
pulumi.log.warn(f"Key '{key}' not found in ConnectionBitbucketDataCenterConfigAuthorizerCredential. Access the value via the '{suggest}' property getter instead.")
|
342
|
-
|
343
|
-
def __getitem__(self, key: str) -> Any:
|
344
|
-
ConnectionBitbucketDataCenterConfigAuthorizerCredential.__key_warning(key)
|
345
|
-
return super().__getitem__(key)
|
346
|
-
|
347
|
-
def get(self, key: str, default = None) -> Any:
|
348
|
-
ConnectionBitbucketDataCenterConfigAuthorizerCredential.__key_warning(key)
|
349
|
-
return super().get(key, default)
|
350
|
-
|
351
|
-
def __init__(__self__, *,
|
352
|
-
user_token_secret_version: str,
|
353
|
-
username: Optional[str] = None):
|
354
|
-
"""
|
355
|
-
:param str user_token_secret_version: Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
356
|
-
:param str username: (Output)
|
357
|
-
Output only. The username associated to this token.
|
358
|
-
"""
|
359
|
-
pulumi.set(__self__, "user_token_secret_version", user_token_secret_version)
|
360
|
-
if username is not None:
|
361
|
-
pulumi.set(__self__, "username", username)
|
362
|
-
|
363
|
-
@property
|
364
|
-
@pulumi.getter(name="userTokenSecretVersion")
|
365
|
-
def user_token_secret_version(self) -> str:
|
366
|
-
"""
|
367
|
-
Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
368
|
-
"""
|
369
|
-
return pulumi.get(self, "user_token_secret_version")
|
370
|
-
|
371
|
-
@property
|
372
|
-
@pulumi.getter
|
373
|
-
def username(self) -> Optional[str]:
|
374
|
-
"""
|
375
|
-
(Output)
|
376
|
-
Output only. The username associated to this token.
|
377
|
-
"""
|
378
|
-
return pulumi.get(self, "username")
|
379
|
-
|
380
|
-
|
381
|
-
@pulumi.output_type
|
382
|
-
class ConnectionBitbucketDataCenterConfigReadAuthorizerCredential(dict):
|
383
|
-
@staticmethod
|
384
|
-
def __key_warning(key: str):
|
385
|
-
suggest = None
|
386
|
-
if key == "userTokenSecretVersion":
|
387
|
-
suggest = "user_token_secret_version"
|
388
|
-
|
389
|
-
if suggest:
|
390
|
-
pulumi.log.warn(f"Key '{key}' not found in ConnectionBitbucketDataCenterConfigReadAuthorizerCredential. Access the value via the '{suggest}' property getter instead.")
|
391
|
-
|
392
|
-
def __getitem__(self, key: str) -> Any:
|
393
|
-
ConnectionBitbucketDataCenterConfigReadAuthorizerCredential.__key_warning(key)
|
394
|
-
return super().__getitem__(key)
|
395
|
-
|
396
|
-
def get(self, key: str, default = None) -> Any:
|
397
|
-
ConnectionBitbucketDataCenterConfigReadAuthorizerCredential.__key_warning(key)
|
398
|
-
return super().get(key, default)
|
399
|
-
|
400
|
-
def __init__(__self__, *,
|
401
|
-
user_token_secret_version: str,
|
402
|
-
username: Optional[str] = None):
|
403
|
-
"""
|
404
|
-
:param str user_token_secret_version: Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
405
|
-
:param str username: (Output)
|
406
|
-
Output only. The username associated to this token.
|
407
|
-
"""
|
408
|
-
pulumi.set(__self__, "user_token_secret_version", user_token_secret_version)
|
409
|
-
if username is not None:
|
410
|
-
pulumi.set(__self__, "username", username)
|
411
|
-
|
412
|
-
@property
|
413
|
-
@pulumi.getter(name="userTokenSecretVersion")
|
414
|
-
def user_token_secret_version(self) -> str:
|
415
|
-
"""
|
416
|
-
Required. A SecretManager resource containing the user token that authorizes the Cloud Build connection. Format: `projects/*/secrets/*/versions/*`.
|
417
|
-
"""
|
418
|
-
return pulumi.get(self, "user_token_secret_version")
|
419
|
-
|
420
|
-
@property
|
421
|
-
@pulumi.getter
|
422
|
-
def username(self) -> Optional[str]:
|
423
|
-
"""
|
424
|
-
(Output)
|
425
|
-
Output only. The username associated to this token.
|
426
|
-
"""
|
427
|
-
return pulumi.get(self, "username")
|
428
|
-
|
429
|
-
|
430
|
-
@pulumi.output_type
|
431
|
-
class ConnectionBitbucketDataCenterConfigServiceDirectoryConfig(dict):
|
432
|
-
def __init__(__self__, *,
|
433
|
-
service: str):
|
434
|
-
"""
|
435
|
-
:param str service: Required. The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
|
436
|
-
"""
|
437
|
-
pulumi.set(__self__, "service", service)
|
438
|
-
|
439
|
-
@property
|
440
|
-
@pulumi.getter
|
441
|
-
def service(self) -> str:
|
442
|
-
"""
|
443
|
-
Required. The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
|
444
|
-
"""
|
445
|
-
return pulumi.get(self, "service")
|
446
|
-
|
447
|
-
|
448
27
|
@pulumi.output_type
|
449
28
|
class ConnectionGithubConfig(dict):
|
450
29
|
@staticmethod
|
pulumi_gcp/composer/__init__.py
CHANGED
@@ -8,9 +8,6 @@ import typing
|
|
8
8
|
from .environment import *
|
9
9
|
from .get_environment import *
|
10
10
|
from .get_image_versions import *
|
11
|
-
from .get_user_workloads_config_map import *
|
12
|
-
from .get_user_workloads_secret import *
|
13
|
-
from .user_workloads_config_map import *
|
14
11
|
from .user_workloads_secret import *
|
15
12
|
from ._inputs import *
|
16
13
|
from . import outputs
|
pulumi_gcp/compute/_inputs.py
CHANGED
@@ -1758,7 +1758,6 @@ class BackendServiceBackendArgs:
|
|
1758
1758
|
and CONNECTION (for TCP/SSL).
|
1759
1759
|
See the [Backend Services Overview](https://cloud.google.com/load-balancing/docs/backend-service#balancing-mode)
|
1760
1760
|
for an explanation of load balancing modes.
|
1761
|
-
From version 6.0.0 default value will be UTILIZATION to match default GCP value.
|
1762
1761
|
Default value is `UTILIZATION`.
|
1763
1762
|
Possible values are: `UTILIZATION`, `RATE`, `CONNECTION`.
|
1764
1763
|
:param pulumi.Input[float] capacity_scaler: A multiplier applied to the group's maximum servicing capacity
|
@@ -1859,7 +1858,6 @@ class BackendServiceBackendArgs:
|
|
1859
1858
|
and CONNECTION (for TCP/SSL).
|
1860
1859
|
See the [Backend Services Overview](https://cloud.google.com/load-balancing/docs/backend-service#balancing-mode)
|
1861
1860
|
for an explanation of load balancing modes.
|
1862
|
-
From version 6.0.0 default value will be UTILIZATION to match default GCP value.
|
1863
1861
|
Default value is `UTILIZATION`.
|
1864
1862
|
Possible values are: `UTILIZATION`, `RATE`, `CONNECTION`.
|
1865
1863
|
"""
|
@@ -3689,6 +3687,7 @@ class DiskGuestOsFeatureArgs:
|
|
3689
3687
|
type: pulumi.Input[str]):
|
3690
3688
|
"""
|
3691
3689
|
:param pulumi.Input[str] type: The type of supported feature. Read [Enabling guest operating system features](https://cloud.google.com/compute/docs/images/create-delete-deprecate-private-images#guest-os-features) to see a list of available options.
|
3690
|
+
Possible values are: `MULTI_IP_SUBNET`, `SECURE_BOOT`, `SEV_CAPABLE`, `UEFI_COMPATIBLE`, `VIRTIO_SCSI_MULTIQUEUE`, `WINDOWS`, `GVNIC`, `SEV_LIVE_MIGRATABLE`, `SEV_SNP_CAPABLE`, `SUSPEND_RESUME_COMPATIBLE`, `TDX_CAPABLE`, `SEV_LIVE_MIGRATABLE_V2`.
|
3692
3691
|
"""
|
3693
3692
|
pulumi.set(__self__, "type", type)
|
3694
3693
|
|
@@ -3697,6 +3696,7 @@ class DiskGuestOsFeatureArgs:
|
|
3697
3696
|
def type(self) -> pulumi.Input[str]:
|
3698
3697
|
"""
|
3699
3698
|
The type of supported feature. Read [Enabling guest operating system features](https://cloud.google.com/compute/docs/images/create-delete-deprecate-private-images#guest-os-features) to see a list of available options.
|
3699
|
+
Possible values are: `MULTI_IP_SUBNET`, `SECURE_BOOT`, `SEV_CAPABLE`, `UEFI_COMPATIBLE`, `VIRTIO_SCSI_MULTIQUEUE`, `WINDOWS`, `GVNIC`, `SEV_LIVE_MIGRATABLE`, `SEV_SNP_CAPABLE`, `SUSPEND_RESUME_COMPATIBLE`, `TDX_CAPABLE`, `SEV_LIVE_MIGRATABLE_V2`.
|
3700
3700
|
"""
|
3701
3701
|
return pulumi.get(self, "type")
|
3702
3702
|
|
@@ -16337,7 +16337,6 @@ class RegionBackendServiceBackendArgs:
|
|
16337
16337
|
:param pulumi.Input[str] balancing_mode: Specifies the balancing mode for this backend.
|
16338
16338
|
See the [Backend Services Overview](https://cloud.google.com/load-balancing/docs/backend-service#balancing-mode)
|
16339
16339
|
for an explanation of load balancing modes.
|
16340
|
-
From version 6.0.0 default value will be UTILIZATION to match default GCP value.
|
16341
16340
|
Default value is `CONNECTION`.
|
16342
16341
|
Possible values are: `UTILIZATION`, `RATE`, `CONNECTION`.
|
16343
16342
|
:param pulumi.Input[float] capacity_scaler: A multiplier applied to the group's maximum servicing capacity
|
@@ -16450,7 +16449,6 @@ class RegionBackendServiceBackendArgs:
|
|
16450
16449
|
Specifies the balancing mode for this backend.
|
16451
16450
|
See the [Backend Services Overview](https://cloud.google.com/load-balancing/docs/backend-service#balancing-mode)
|
16452
16451
|
for an explanation of load balancing modes.
|
16453
|
-
From version 6.0.0 default value will be UTILIZATION to match default GCP value.
|
16454
16452
|
Default value is `CONNECTION`.
|
16455
16453
|
Possible values are: `UTILIZATION`, `RATE`, `CONNECTION`.
|
16456
16454
|
"""
|
@@ -159,6 +159,10 @@ class BackendServiceArgs:
|
|
159
159
|
|
160
160
|
|
161
161
|
- - -
|
162
|
+
:param pulumi.Input['BackendServiceOutlierDetectionArgs'] outlier_detection: Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
163
|
+
Applicable backend service types can be a global backend service with the
|
164
|
+
loadBalancingScheme set to INTERNAL_SELF_MANAGED or EXTERNAL_MANAGED.
|
165
|
+
Structure is documented below.
|
162
166
|
:param pulumi.Input[str] port_name: Name of backend port. The same name should appear in the instance
|
163
167
|
groups referenced by this service. Required when the load balancing
|
164
168
|
scheme is EXTERNAL.
|
@@ -181,10 +185,8 @@ class BackendServiceArgs:
|
|
181
185
|
:param pulumi.Input[str] session_affinity: Type of session affinity to use. The default is NONE. Session affinity is
|
182
186
|
not applicable if the protocol is UDP.
|
183
187
|
Possible values are: `NONE`, `CLIENT_IP`, `CLIENT_IP_PORT_PROTO`, `CLIENT_IP_PROTO`, `GENERATED_COOKIE`, `HEADER_FIELD`, `HTTP_COOKIE`.
|
184
|
-
:param pulumi.Input[int] timeout_sec:
|
185
|
-
|
186
|
-
The default is 30 seconds.
|
187
|
-
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
188
|
+
:param pulumi.Input[int] timeout_sec: How many seconds to wait for the backend before considering it a
|
189
|
+
failed request. Default is 30 seconds. Valid range is [1, 86400].
|
188
190
|
"""
|
189
191
|
if affinity_cookie_ttl_sec is not None:
|
190
192
|
pulumi.set(__self__, "affinity_cookie_ttl_sec", affinity_cookie_ttl_sec)
|
@@ -568,6 +570,12 @@ class BackendServiceArgs:
|
|
568
570
|
@property
|
569
571
|
@pulumi.getter(name="outlierDetection")
|
570
572
|
def outlier_detection(self) -> Optional[pulumi.Input['BackendServiceOutlierDetectionArgs']]:
|
573
|
+
"""
|
574
|
+
Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
575
|
+
Applicable backend service types can be a global backend service with the
|
576
|
+
loadBalancingScheme set to INTERNAL_SELF_MANAGED or EXTERNAL_MANAGED.
|
577
|
+
Structure is documented below.
|
578
|
+
"""
|
571
579
|
return pulumi.get(self, "outlier_detection")
|
572
580
|
|
573
581
|
@outlier_detection.setter
|
@@ -677,10 +685,8 @@ class BackendServiceArgs:
|
|
677
685
|
@pulumi.getter(name="timeoutSec")
|
678
686
|
def timeout_sec(self) -> Optional[pulumi.Input[int]]:
|
679
687
|
"""
|
680
|
-
|
681
|
-
|
682
|
-
The default is 30 seconds.
|
683
|
-
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
688
|
+
How many seconds to wait for the backend before considering it a
|
689
|
+
failed request. Default is 30 seconds. Valid range is [1, 86400].
|
684
690
|
"""
|
685
691
|
return pulumi.get(self, "timeout_sec")
|
686
692
|
|
@@ -843,6 +849,10 @@ class _BackendServiceState:
|
|
843
849
|
|
844
850
|
|
845
851
|
- - -
|
852
|
+
:param pulumi.Input['BackendServiceOutlierDetectionArgs'] outlier_detection: Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
853
|
+
Applicable backend service types can be a global backend service with the
|
854
|
+
loadBalancingScheme set to INTERNAL_SELF_MANAGED or EXTERNAL_MANAGED.
|
855
|
+
Structure is documented below.
|
846
856
|
:param pulumi.Input[str] port_name: Name of backend port. The same name should appear in the instance
|
847
857
|
groups referenced by this service. Required when the load balancing
|
848
858
|
scheme is EXTERNAL.
|
@@ -866,10 +876,8 @@ class _BackendServiceState:
|
|
866
876
|
:param pulumi.Input[str] session_affinity: Type of session affinity to use. The default is NONE. Session affinity is
|
867
877
|
not applicable if the protocol is UDP.
|
868
878
|
Possible values are: `NONE`, `CLIENT_IP`, `CLIENT_IP_PORT_PROTO`, `CLIENT_IP_PROTO`, `GENERATED_COOKIE`, `HEADER_FIELD`, `HTTP_COOKIE`.
|
869
|
-
:param pulumi.Input[int] timeout_sec:
|
870
|
-
|
871
|
-
The default is 30 seconds.
|
872
|
-
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
879
|
+
:param pulumi.Input[int] timeout_sec: How many seconds to wait for the backend before considering it a
|
880
|
+
failed request. Default is 30 seconds. Valid range is [1, 86400].
|
873
881
|
"""
|
874
882
|
if affinity_cookie_ttl_sec is not None:
|
875
883
|
pulumi.set(__self__, "affinity_cookie_ttl_sec", affinity_cookie_ttl_sec)
|
@@ -1298,6 +1306,12 @@ class _BackendServiceState:
|
|
1298
1306
|
@property
|
1299
1307
|
@pulumi.getter(name="outlierDetection")
|
1300
1308
|
def outlier_detection(self) -> Optional[pulumi.Input['BackendServiceOutlierDetectionArgs']]:
|
1309
|
+
"""
|
1310
|
+
Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
1311
|
+
Applicable backend service types can be a global backend service with the
|
1312
|
+
loadBalancingScheme set to INTERNAL_SELF_MANAGED or EXTERNAL_MANAGED.
|
1313
|
+
Structure is documented below.
|
1314
|
+
"""
|
1301
1315
|
return pulumi.get(self, "outlier_detection")
|
1302
1316
|
|
1303
1317
|
@outlier_detection.setter
|
@@ -1419,10 +1433,8 @@ class _BackendServiceState:
|
|
1419
1433
|
@pulumi.getter(name="timeoutSec")
|
1420
1434
|
def timeout_sec(self) -> Optional[pulumi.Input[int]]:
|
1421
1435
|
"""
|
1422
|
-
|
1423
|
-
|
1424
|
-
The default is 30 seconds.
|
1425
|
-
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
1436
|
+
How many seconds to wait for the backend before considering it a
|
1437
|
+
failed request. Default is 30 seconds. Valid range is [1, 86400].
|
1426
1438
|
"""
|
1427
1439
|
return pulumi.get(self, "timeout_sec")
|
1428
1440
|
|
@@ -1861,6 +1873,10 @@ class BackendService(pulumi.CustomResource):
|
|
1861
1873
|
|
1862
1874
|
|
1863
1875
|
- - -
|
1876
|
+
:param pulumi.Input[pulumi.InputType['BackendServiceOutlierDetectionArgs']] outlier_detection: Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
1877
|
+
Applicable backend service types can be a global backend service with the
|
1878
|
+
loadBalancingScheme set to INTERNAL_SELF_MANAGED or EXTERNAL_MANAGED.
|
1879
|
+
Structure is documented below.
|
1864
1880
|
:param pulumi.Input[str] port_name: Name of backend port. The same name should appear in the instance
|
1865
1881
|
groups referenced by this service. Required when the load balancing
|
1866
1882
|
scheme is EXTERNAL.
|
@@ -1883,10 +1899,8 @@ class BackendService(pulumi.CustomResource):
|
|
1883
1899
|
:param pulumi.Input[str] session_affinity: Type of session affinity to use. The default is NONE. Session affinity is
|
1884
1900
|
not applicable if the protocol is UDP.
|
1885
1901
|
Possible values are: `NONE`, `CLIENT_IP`, `CLIENT_IP_PORT_PROTO`, `CLIENT_IP_PROTO`, `GENERATED_COOKIE`, `HEADER_FIELD`, `HTTP_COOKIE`.
|
1886
|
-
:param pulumi.Input[int] timeout_sec:
|
1887
|
-
|
1888
|
-
The default is 30 seconds.
|
1889
|
-
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
1902
|
+
:param pulumi.Input[int] timeout_sec: How many seconds to wait for the backend before considering it a
|
1903
|
+
failed request. Default is 30 seconds. Valid range is [1, 86400].
|
1890
1904
|
"""
|
1891
1905
|
...
|
1892
1906
|
@overload
|
@@ -2425,6 +2439,10 @@ class BackendService(pulumi.CustomResource):
|
|
2425
2439
|
|
2426
2440
|
|
2427
2441
|
- - -
|
2442
|
+
:param pulumi.Input[pulumi.InputType['BackendServiceOutlierDetectionArgs']] outlier_detection: Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
2443
|
+
Applicable backend service types can be a global backend service with the
|
2444
|
+
loadBalancingScheme set to INTERNAL_SELF_MANAGED or EXTERNAL_MANAGED.
|
2445
|
+
Structure is documented below.
|
2428
2446
|
:param pulumi.Input[str] port_name: Name of backend port. The same name should appear in the instance
|
2429
2447
|
groups referenced by this service. Required when the load balancing
|
2430
2448
|
scheme is EXTERNAL.
|
@@ -2448,10 +2466,8 @@ class BackendService(pulumi.CustomResource):
|
|
2448
2466
|
:param pulumi.Input[str] session_affinity: Type of session affinity to use. The default is NONE. Session affinity is
|
2449
2467
|
not applicable if the protocol is UDP.
|
2450
2468
|
Possible values are: `NONE`, `CLIENT_IP`, `CLIENT_IP_PORT_PROTO`, `CLIENT_IP_PROTO`, `GENERATED_COOKIE`, `HEADER_FIELD`, `HTTP_COOKIE`.
|
2451
|
-
:param pulumi.Input[int] timeout_sec:
|
2452
|
-
|
2453
|
-
The default is 30 seconds.
|
2454
|
-
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
2469
|
+
:param pulumi.Input[int] timeout_sec: How many seconds to wait for the backend before considering it a
|
2470
|
+
failed request. Default is 30 seconds. Valid range is [1, 86400].
|
2455
2471
|
"""
|
2456
2472
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
2457
2473
|
|
@@ -2765,6 +2781,12 @@ class BackendService(pulumi.CustomResource):
|
|
2765
2781
|
@property
|
2766
2782
|
@pulumi.getter(name="outlierDetection")
|
2767
2783
|
def outlier_detection(self) -> pulumi.Output[Optional['outputs.BackendServiceOutlierDetection']]:
|
2784
|
+
"""
|
2785
|
+
Settings controlling eviction of unhealthy hosts from the load balancing pool.
|
2786
|
+
Applicable backend service types can be a global backend service with the
|
2787
|
+
loadBalancingScheme set to INTERNAL_SELF_MANAGED or EXTERNAL_MANAGED.
|
2788
|
+
Structure is documented below.
|
2789
|
+
"""
|
2768
2790
|
return pulumi.get(self, "outlier_detection")
|
2769
2791
|
|
2770
2792
|
@property
|
@@ -2850,10 +2872,8 @@ class BackendService(pulumi.CustomResource):
|
|
2850
2872
|
@pulumi.getter(name="timeoutSec")
|
2851
2873
|
def timeout_sec(self) -> pulumi.Output[int]:
|
2852
2874
|
"""
|
2853
|
-
|
2854
|
-
|
2855
|
-
The default is 30 seconds.
|
2856
|
-
The full range of timeout values allowed goes from 1 through 2,147,483,647 seconds.
|
2875
|
+
How many seconds to wait for the backend before considering it a
|
2876
|
+
failed request. Default is 30 seconds. Valid range is [1, 86400].
|
2857
2877
|
"""
|
2858
2878
|
return pulumi.get(self, "timeout_sec")
|
2859
2879
|
|