pulumi-gcp 8.25.0a1743489606__py3-none-any.whl → 8.25.0a1743706148__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 +104 -0
- pulumi_gcp/_inputs.py +48 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +324 -12
- pulumi_gcp/accesscontextmanager/outputs.py +204 -12
- pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
- pulumi_gcp/apigee/__init__.py +1 -0
- pulumi_gcp/apigee/_inputs.py +58 -0
- pulumi_gcp/apigee/dns_zone.py +491 -0
- pulumi_gcp/apigee/outputs.py +53 -0
- pulumi_gcp/bigquery/reservation_assignment.py +7 -7
- pulumi_gcp/bigtable/table.py +8 -8
- pulumi_gcp/chronicle/data_access_label.py +2 -2
- pulumi_gcp/chronicle/data_access_scope.py +16 -0
- pulumi_gcp/chronicle/reference_list.py +16 -0
- pulumi_gcp/chronicle/retrohunt.py +16 -0
- pulumi_gcp/chronicle/rule.py +16 -0
- pulumi_gcp/chronicle/rule_deployment.py +16 -0
- pulumi_gcp/chronicle/watchlist.py +16 -0
- pulumi_gcp/cloudfunctionsv2/_inputs.py +20 -0
- pulumi_gcp/cloudfunctionsv2/outputs.py +25 -0
- pulumi_gcp/cloudrunv2/_inputs.py +20 -0
- pulumi_gcp/cloudrunv2/outputs.py +25 -0
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +2011 -43
- pulumi_gcp/compute/backend_service.py +121 -3
- pulumi_gcp/compute/get_backend_service.py +15 -4
- pulumi_gcp/compute/get_instance.py +12 -1
- pulumi_gcp/compute/get_region_backend_service.py +482 -0
- pulumi_gcp/compute/get_router.py +12 -1
- pulumi_gcp/compute/get_subnetwork.py +43 -1
- pulumi_gcp/compute/instance.py +47 -0
- pulumi_gcp/compute/instance_from_machine_image.py +94 -0
- pulumi_gcp/compute/instance_from_template.py +47 -0
- pulumi_gcp/compute/outputs.py +3578 -139
- pulumi_gcp/compute/public_delegated_prefix.py +69 -15
- pulumi_gcp/compute/router.py +54 -0
- pulumi_gcp/compute/subnetwork.py +35 -5
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/outputs.py +27 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +12 -12
- pulumi_gcp/container/cluster.py +47 -0
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/get_registry_image.py +4 -0
- pulumi_gcp/container/get_registry_repository.py +4 -0
- pulumi_gcp/container/outputs.py +8 -8
- pulumi_gcp/container/registry.py +4 -0
- pulumi_gcp/datafusion/instance.py +68 -0
- pulumi_gcp/dataproc/__init__.py +8 -0
- pulumi_gcp/dataproc/_inputs.py +196 -0
- pulumi_gcp/dataproc/get_metastore_database_iam_policy.py +193 -0
- pulumi_gcp/dataproc/get_metastore_table_iam_policy.py +210 -0
- pulumi_gcp/dataproc/metastore_database_iam_binding.py +848 -0
- pulumi_gcp/dataproc/metastore_database_iam_member.py +848 -0
- pulumi_gcp/dataproc/metastore_database_iam_policy.py +687 -0
- pulumi_gcp/dataproc/metastore_federation.py +38 -2
- pulumi_gcp/dataproc/metastore_table_iam_binding.py +895 -0
- pulumi_gcp/dataproc/metastore_table_iam_member.py +895 -0
- pulumi_gcp/dataproc/metastore_table_iam_policy.py +734 -0
- pulumi_gcp/dataproc/outputs.py +112 -0
- pulumi_gcp/datastream/_inputs.py +311 -94
- pulumi_gcp/datastream/connection_profile.py +40 -0
- pulumi_gcp/datastream/outputs.py +244 -51
- pulumi_gcp/datastream/stream.py +216 -0
- pulumi_gcp/discoveryengine/__init__.py +1 -0
- pulumi_gcp/discoveryengine/sitemap.py +504 -0
- pulumi_gcp/eventarc/__init__.py +1 -0
- pulumi_gcp/eventarc/enrollment.py +980 -0
- pulumi_gcp/firebase/__init__.py +1 -0
- pulumi_gcp/firebase/_inputs.py +484 -0
- pulumi_gcp/firebase/app_hosting_build.py +1232 -0
- pulumi_gcp/firebase/outputs.py +333 -0
- pulumi_gcp/identityplatform/_inputs.py +91 -0
- pulumi_gcp/identityplatform/outputs.py +73 -0
- pulumi_gcp/identityplatform/tenant.py +56 -0
- pulumi_gcp/managedkafka/cluster.py +2 -2
- pulumi_gcp/memorystore/__init__.py +1 -0
- pulumi_gcp/memorystore/_inputs.py +826 -0
- pulumi_gcp/memorystore/get_instance.py +23 -1
- pulumi_gcp/memorystore/instance.py +344 -23
- pulumi_gcp/memorystore/instance_desired_user_created_endpoints.py +843 -0
- pulumi_gcp/memorystore/outputs.py +889 -8
- pulumi_gcp/networksecurity/_inputs.py +473 -0
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +44 -16
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +94 -36
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +53 -8
- pulumi_gcp/networksecurity/outputs.py +291 -1
- pulumi_gcp/networksecurity/security_profile.py +8 -0
- pulumi_gcp/organizations/__init__.py +1 -0
- pulumi_gcp/organizations/get_iam_custom_roles.py +164 -0
- pulumi_gcp/organizations/outputs.py +96 -0
- pulumi_gcp/parametermanager/get_parameter.py +16 -1
- pulumi_gcp/parametermanager/get_parameter_version.py +19 -1
- pulumi_gcp/parametermanager/get_parameter_version_render.py +4 -0
- pulumi_gcp/parametermanager/get_parameters.py +4 -0
- pulumi_gcp/parametermanager/get_regional_parameter.py +4 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version.py +4 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version_render.py +8 -0
- pulumi_gcp/parametermanager/get_regional_parameters.py +4 -0
- pulumi_gcp/parametermanager/outputs.py +11 -0
- pulumi_gcp/parametermanager/parameter.py +88 -0
- pulumi_gcp/parametermanager/parameter_version.py +74 -0
- pulumi_gcp/parametermanager/regional_parameter.py +12 -0
- pulumi_gcp/parametermanager/regional_parameter_version.py +12 -0
- pulumi_gcp/provider.py +15 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +136 -0
- pulumi_gcp/redis/cluster.py +54 -0
- pulumi_gcp/redis/outputs.py +114 -0
- pulumi_gcp/secretmanager/regional_secret_version.py +0 -16
- pulumi_gcp/storage/__init__.py +4 -0
- pulumi_gcp/storage/_inputs.py +596 -0
- pulumi_gcp/storage/bucket.py +7 -7
- pulumi_gcp/storage/control_folder_intelligence_config.py +420 -0
- pulumi_gcp/storage/control_organization_intelligence_config.py +420 -0
- pulumi_gcp/storage/control_project_intelligence_config.py +49 -7
- pulumi_gcp/storage/get_bucket_object_content.py +16 -1
- pulumi_gcp/storage/get_control_folder_intelligence_config.py +160 -0
- pulumi_gcp/storage/get_control_organization_intelligence_config.py +160 -0
- pulumi_gcp/storage/get_control_project_intelligence_config.py +32 -2
- pulumi_gcp/storage/outputs.py +2132 -1312
- pulumi_gcp/workbench/instance.py +14 -2
- {pulumi_gcp-8.25.0a1743489606.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.25.0a1743489606.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/RECORD +126 -107
- {pulumi_gcp-8.25.0a1743489606.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.25.0a1743489606.dist-info → pulumi_gcp-8.25.0a1743706148.dist-info}/top_level.txt +0 -0
pulumi_gcp/firebase/outputs.py
CHANGED
@@ -19,6 +19,11 @@ __all__ = [
|
|
19
19
|
'AppHostingBackendCodebase',
|
20
20
|
'AppHostingBackendManagedResource',
|
21
21
|
'AppHostingBackendManagedResourceRunService',
|
22
|
+
'AppHostingBuildError',
|
23
|
+
'AppHostingBuildSource',
|
24
|
+
'AppHostingBuildSourceCodebase',
|
25
|
+
'AppHostingBuildSourceCodebaseAuthor',
|
26
|
+
'AppHostingBuildSourceContainer',
|
22
27
|
'ExtensionsInstanceConfig',
|
23
28
|
'ExtensionsInstanceErrorStatus',
|
24
29
|
'ExtensionsInstanceRuntimeData',
|
@@ -169,6 +174,334 @@ class AppHostingBackendManagedResourceRunService(dict):
|
|
169
174
|
return pulumi.get(self, "service")
|
170
175
|
|
171
176
|
|
177
|
+
@pulumi.output_type
|
178
|
+
class AppHostingBuildError(dict):
|
179
|
+
def __init__(__self__, *,
|
180
|
+
code: Optional[int] = None,
|
181
|
+
details: Optional[Sequence[Mapping[str, str]]] = None,
|
182
|
+
message: Optional[str] = None):
|
183
|
+
"""
|
184
|
+
:param int code: (Output)
|
185
|
+
The status code, which should be an enum value of google.rpc.Code.
|
186
|
+
:param Sequence[Mapping[str, str]] details: (Output)
|
187
|
+
A list of messages that carry the error details. There is a common set of
|
188
|
+
message types for APIs to use.
|
189
|
+
:param str message: (Output)
|
190
|
+
A developer-facing error message, which should be in English. Any
|
191
|
+
user-facing error message should be localized and sent in the
|
192
|
+
google.rpc.Status.details field, or localized by the client.
|
193
|
+
"""
|
194
|
+
if code is not None:
|
195
|
+
pulumi.set(__self__, "code", code)
|
196
|
+
if details is not None:
|
197
|
+
pulumi.set(__self__, "details", details)
|
198
|
+
if message is not None:
|
199
|
+
pulumi.set(__self__, "message", message)
|
200
|
+
|
201
|
+
@property
|
202
|
+
@pulumi.getter
|
203
|
+
def code(self) -> Optional[int]:
|
204
|
+
"""
|
205
|
+
(Output)
|
206
|
+
The status code, which should be an enum value of google.rpc.Code.
|
207
|
+
"""
|
208
|
+
return pulumi.get(self, "code")
|
209
|
+
|
210
|
+
@property
|
211
|
+
@pulumi.getter
|
212
|
+
def details(self) -> Optional[Sequence[Mapping[str, str]]]:
|
213
|
+
"""
|
214
|
+
(Output)
|
215
|
+
A list of messages that carry the error details. There is a common set of
|
216
|
+
message types for APIs to use.
|
217
|
+
"""
|
218
|
+
return pulumi.get(self, "details")
|
219
|
+
|
220
|
+
@property
|
221
|
+
@pulumi.getter
|
222
|
+
def message(self) -> Optional[str]:
|
223
|
+
"""
|
224
|
+
(Output)
|
225
|
+
A developer-facing error message, which should be in English. Any
|
226
|
+
user-facing error message should be localized and sent in the
|
227
|
+
google.rpc.Status.details field, or localized by the client.
|
228
|
+
"""
|
229
|
+
return pulumi.get(self, "message")
|
230
|
+
|
231
|
+
|
232
|
+
@pulumi.output_type
|
233
|
+
class AppHostingBuildSource(dict):
|
234
|
+
def __init__(__self__, *,
|
235
|
+
codebase: Optional['outputs.AppHostingBuildSourceCodebase'] = None,
|
236
|
+
container: Optional['outputs.AppHostingBuildSourceContainer'] = None):
|
237
|
+
"""
|
238
|
+
:param 'AppHostingBuildSourceCodebaseArgs' codebase: A codebase source, representing the state of the codebase
|
239
|
+
that the build will be created at.
|
240
|
+
Structure is documented below.
|
241
|
+
:param 'AppHostingBuildSourceContainerArgs' container: The URI of an Artifact Registry
|
242
|
+
[container
|
243
|
+
image](https://cloud.google.com/artifact-registry/docs/reference/rest/v1/projects.locations.repositories.dockerImages)
|
244
|
+
to use as the build source.
|
245
|
+
Structure is documented below.
|
246
|
+
"""
|
247
|
+
if codebase is not None:
|
248
|
+
pulumi.set(__self__, "codebase", codebase)
|
249
|
+
if container is not None:
|
250
|
+
pulumi.set(__self__, "container", container)
|
251
|
+
|
252
|
+
@property
|
253
|
+
@pulumi.getter
|
254
|
+
def codebase(self) -> Optional['outputs.AppHostingBuildSourceCodebase']:
|
255
|
+
"""
|
256
|
+
A codebase source, representing the state of the codebase
|
257
|
+
that the build will be created at.
|
258
|
+
Structure is documented below.
|
259
|
+
"""
|
260
|
+
return pulumi.get(self, "codebase")
|
261
|
+
|
262
|
+
@property
|
263
|
+
@pulumi.getter
|
264
|
+
def container(self) -> Optional['outputs.AppHostingBuildSourceContainer']:
|
265
|
+
"""
|
266
|
+
The URI of an Artifact Registry
|
267
|
+
[container
|
268
|
+
image](https://cloud.google.com/artifact-registry/docs/reference/rest/v1/projects.locations.repositories.dockerImages)
|
269
|
+
to use as the build source.
|
270
|
+
Structure is documented below.
|
271
|
+
"""
|
272
|
+
return pulumi.get(self, "container")
|
273
|
+
|
274
|
+
|
275
|
+
@pulumi.output_type
|
276
|
+
class AppHostingBuildSourceCodebase(dict):
|
277
|
+
@staticmethod
|
278
|
+
def __key_warning(key: str):
|
279
|
+
suggest = None
|
280
|
+
if key == "commitMessage":
|
281
|
+
suggest = "commit_message"
|
282
|
+
elif key == "commitTime":
|
283
|
+
suggest = "commit_time"
|
284
|
+
elif key == "displayName":
|
285
|
+
suggest = "display_name"
|
286
|
+
|
287
|
+
if suggest:
|
288
|
+
pulumi.log.warn(f"Key '{key}' not found in AppHostingBuildSourceCodebase. Access the value via the '{suggest}' property getter instead.")
|
289
|
+
|
290
|
+
def __getitem__(self, key: str) -> Any:
|
291
|
+
AppHostingBuildSourceCodebase.__key_warning(key)
|
292
|
+
return super().__getitem__(key)
|
293
|
+
|
294
|
+
def get(self, key: str, default = None) -> Any:
|
295
|
+
AppHostingBuildSourceCodebase.__key_warning(key)
|
296
|
+
return super().get(key, default)
|
297
|
+
|
298
|
+
def __init__(__self__, *,
|
299
|
+
authors: Optional[Sequence['outputs.AppHostingBuildSourceCodebaseAuthor']] = None,
|
300
|
+
branch: Optional[str] = None,
|
301
|
+
commit: Optional[str] = None,
|
302
|
+
commit_message: Optional[str] = None,
|
303
|
+
commit_time: Optional[str] = None,
|
304
|
+
display_name: Optional[str] = None,
|
305
|
+
hash: Optional[str] = None,
|
306
|
+
uri: Optional[str] = None):
|
307
|
+
"""
|
308
|
+
:param Sequence['AppHostingBuildSourceCodebaseAuthorArgs'] authors: (Output)
|
309
|
+
Version control metadata for a user associated with a resolved codebase.
|
310
|
+
Currently assumes a Git user.
|
311
|
+
Structure is documented below.
|
312
|
+
:param str branch: The branch in the codebase to build from, using the latest commit.
|
313
|
+
:param str commit: The commit in the codebase to build from.
|
314
|
+
|
315
|
+
|
316
|
+
<a name="nested_source_codebase_author"></a>The `author` block contains:
|
317
|
+
:param str commit_message: (Output)
|
318
|
+
The message of a codebase change.
|
319
|
+
:param str commit_time: (Output)
|
320
|
+
The time the change was made.
|
321
|
+
:param str display_name: Human-readable name. 63 character limit.
|
322
|
+
:param str hash: (Output)
|
323
|
+
The full SHA-1 hash of a Git commit, if available.
|
324
|
+
:param str uri: (Output)
|
325
|
+
A URI linking to the codebase on an hosting provider's website. May
|
326
|
+
not be valid if the commit has been rebased or force-pushed out of
|
327
|
+
existence in the linked repository.
|
328
|
+
"""
|
329
|
+
if authors is not None:
|
330
|
+
pulumi.set(__self__, "authors", authors)
|
331
|
+
if branch is not None:
|
332
|
+
pulumi.set(__self__, "branch", branch)
|
333
|
+
if commit is not None:
|
334
|
+
pulumi.set(__self__, "commit", commit)
|
335
|
+
if commit_message is not None:
|
336
|
+
pulumi.set(__self__, "commit_message", commit_message)
|
337
|
+
if commit_time is not None:
|
338
|
+
pulumi.set(__self__, "commit_time", commit_time)
|
339
|
+
if display_name is not None:
|
340
|
+
pulumi.set(__self__, "display_name", display_name)
|
341
|
+
if hash is not None:
|
342
|
+
pulumi.set(__self__, "hash", hash)
|
343
|
+
if uri is not None:
|
344
|
+
pulumi.set(__self__, "uri", uri)
|
345
|
+
|
346
|
+
@property
|
347
|
+
@pulumi.getter
|
348
|
+
def authors(self) -> Optional[Sequence['outputs.AppHostingBuildSourceCodebaseAuthor']]:
|
349
|
+
"""
|
350
|
+
(Output)
|
351
|
+
Version control metadata for a user associated with a resolved codebase.
|
352
|
+
Currently assumes a Git user.
|
353
|
+
Structure is documented below.
|
354
|
+
"""
|
355
|
+
return pulumi.get(self, "authors")
|
356
|
+
|
357
|
+
@property
|
358
|
+
@pulumi.getter
|
359
|
+
def branch(self) -> Optional[str]:
|
360
|
+
"""
|
361
|
+
The branch in the codebase to build from, using the latest commit.
|
362
|
+
"""
|
363
|
+
return pulumi.get(self, "branch")
|
364
|
+
|
365
|
+
@property
|
366
|
+
@pulumi.getter
|
367
|
+
def commit(self) -> Optional[str]:
|
368
|
+
"""
|
369
|
+
The commit in the codebase to build from.
|
370
|
+
|
371
|
+
|
372
|
+
<a name="nested_source_codebase_author"></a>The `author` block contains:
|
373
|
+
"""
|
374
|
+
return pulumi.get(self, "commit")
|
375
|
+
|
376
|
+
@property
|
377
|
+
@pulumi.getter(name="commitMessage")
|
378
|
+
def commit_message(self) -> Optional[str]:
|
379
|
+
"""
|
380
|
+
(Output)
|
381
|
+
The message of a codebase change.
|
382
|
+
"""
|
383
|
+
return pulumi.get(self, "commit_message")
|
384
|
+
|
385
|
+
@property
|
386
|
+
@pulumi.getter(name="commitTime")
|
387
|
+
def commit_time(self) -> Optional[str]:
|
388
|
+
"""
|
389
|
+
(Output)
|
390
|
+
The time the change was made.
|
391
|
+
"""
|
392
|
+
return pulumi.get(self, "commit_time")
|
393
|
+
|
394
|
+
@property
|
395
|
+
@pulumi.getter(name="displayName")
|
396
|
+
def display_name(self) -> Optional[str]:
|
397
|
+
"""
|
398
|
+
Human-readable name. 63 character limit.
|
399
|
+
"""
|
400
|
+
return pulumi.get(self, "display_name")
|
401
|
+
|
402
|
+
@property
|
403
|
+
@pulumi.getter
|
404
|
+
def hash(self) -> Optional[str]:
|
405
|
+
"""
|
406
|
+
(Output)
|
407
|
+
The full SHA-1 hash of a Git commit, if available.
|
408
|
+
"""
|
409
|
+
return pulumi.get(self, "hash")
|
410
|
+
|
411
|
+
@property
|
412
|
+
@pulumi.getter
|
413
|
+
def uri(self) -> Optional[str]:
|
414
|
+
"""
|
415
|
+
(Output)
|
416
|
+
A URI linking to the codebase on an hosting provider's website. May
|
417
|
+
not be valid if the commit has been rebased or force-pushed out of
|
418
|
+
existence in the linked repository.
|
419
|
+
"""
|
420
|
+
return pulumi.get(self, "uri")
|
421
|
+
|
422
|
+
|
423
|
+
@pulumi.output_type
|
424
|
+
class AppHostingBuildSourceCodebaseAuthor(dict):
|
425
|
+
@staticmethod
|
426
|
+
def __key_warning(key: str):
|
427
|
+
suggest = None
|
428
|
+
if key == "displayName":
|
429
|
+
suggest = "display_name"
|
430
|
+
elif key == "imageUri":
|
431
|
+
suggest = "image_uri"
|
432
|
+
|
433
|
+
if suggest:
|
434
|
+
pulumi.log.warn(f"Key '{key}' not found in AppHostingBuildSourceCodebaseAuthor. Access the value via the '{suggest}' property getter instead.")
|
435
|
+
|
436
|
+
def __getitem__(self, key: str) -> Any:
|
437
|
+
AppHostingBuildSourceCodebaseAuthor.__key_warning(key)
|
438
|
+
return super().__getitem__(key)
|
439
|
+
|
440
|
+
def get(self, key: str, default = None) -> Any:
|
441
|
+
AppHostingBuildSourceCodebaseAuthor.__key_warning(key)
|
442
|
+
return super().get(key, default)
|
443
|
+
|
444
|
+
def __init__(__self__, *,
|
445
|
+
display_name: Optional[str] = None,
|
446
|
+
email: Optional[str] = None,
|
447
|
+
image_uri: Optional[str] = None):
|
448
|
+
"""
|
449
|
+
:param str display_name: The 'name' field in a Git user's git.config. Required by Git.
|
450
|
+
:param str email: The 'email' field in a Git user's git.config, if available.
|
451
|
+
:param str image_uri: The URI of an image file associated with the user's account in an
|
452
|
+
external source control provider, if available.
|
453
|
+
"""
|
454
|
+
if display_name is not None:
|
455
|
+
pulumi.set(__self__, "display_name", display_name)
|
456
|
+
if email is not None:
|
457
|
+
pulumi.set(__self__, "email", email)
|
458
|
+
if image_uri is not None:
|
459
|
+
pulumi.set(__self__, "image_uri", image_uri)
|
460
|
+
|
461
|
+
@property
|
462
|
+
@pulumi.getter(name="displayName")
|
463
|
+
def display_name(self) -> Optional[str]:
|
464
|
+
"""
|
465
|
+
The 'name' field in a Git user's git.config. Required by Git.
|
466
|
+
"""
|
467
|
+
return pulumi.get(self, "display_name")
|
468
|
+
|
469
|
+
@property
|
470
|
+
@pulumi.getter
|
471
|
+
def email(self) -> Optional[str]:
|
472
|
+
"""
|
473
|
+
The 'email' field in a Git user's git.config, if available.
|
474
|
+
"""
|
475
|
+
return pulumi.get(self, "email")
|
476
|
+
|
477
|
+
@property
|
478
|
+
@pulumi.getter(name="imageUri")
|
479
|
+
def image_uri(self) -> Optional[str]:
|
480
|
+
"""
|
481
|
+
The URI of an image file associated with the user's account in an
|
482
|
+
external source control provider, if available.
|
483
|
+
"""
|
484
|
+
return pulumi.get(self, "image_uri")
|
485
|
+
|
486
|
+
|
487
|
+
@pulumi.output_type
|
488
|
+
class AppHostingBuildSourceContainer(dict):
|
489
|
+
def __init__(__self__, *,
|
490
|
+
image: str):
|
491
|
+
"""
|
492
|
+
:param str image: A URI representing a container for the backend to use.
|
493
|
+
"""
|
494
|
+
pulumi.set(__self__, "image", image)
|
495
|
+
|
496
|
+
@property
|
497
|
+
@pulumi.getter
|
498
|
+
def image(self) -> str:
|
499
|
+
"""
|
500
|
+
A URI representing a container for the backend to use.
|
501
|
+
"""
|
502
|
+
return pulumi.get(self, "image")
|
503
|
+
|
504
|
+
|
172
505
|
@pulumi.output_type
|
173
506
|
class ExtensionsInstanceConfig(dict):
|
174
507
|
@staticmethod
|
@@ -65,6 +65,10 @@ __all__ = [
|
|
65
65
|
'InboundSamlConfigSpConfigArgsDict',
|
66
66
|
'InboundSamlConfigSpConfigSpCertificateArgs',
|
67
67
|
'InboundSamlConfigSpConfigSpCertificateArgsDict',
|
68
|
+
'TenantClientArgs',
|
69
|
+
'TenantClientArgsDict',
|
70
|
+
'TenantClientPermissionsArgs',
|
71
|
+
'TenantClientPermissionsArgsDict',
|
68
72
|
'TenantInboundSamlConfigIdpConfigArgs',
|
69
73
|
'TenantInboundSamlConfigIdpConfigArgsDict',
|
70
74
|
'TenantInboundSamlConfigIdpConfigIdpCertificateArgs',
|
@@ -1570,6 +1574,93 @@ class InboundSamlConfigSpConfigSpCertificateArgs:
|
|
1570
1574
|
pulumi.set(self, "x509_certificate", value)
|
1571
1575
|
|
1572
1576
|
|
1577
|
+
if not MYPY:
|
1578
|
+
class TenantClientArgsDict(TypedDict):
|
1579
|
+
permissions: NotRequired[pulumi.Input['TenantClientPermissionsArgsDict']]
|
1580
|
+
"""
|
1581
|
+
Configuration related to restricting a user's ability to affect their account.
|
1582
|
+
Structure is documented below.
|
1583
|
+
"""
|
1584
|
+
elif False:
|
1585
|
+
TenantClientArgsDict: TypeAlias = Mapping[str, Any]
|
1586
|
+
|
1587
|
+
@pulumi.input_type
|
1588
|
+
class TenantClientArgs:
|
1589
|
+
def __init__(__self__, *,
|
1590
|
+
permissions: Optional[pulumi.Input['TenantClientPermissionsArgs']] = None):
|
1591
|
+
"""
|
1592
|
+
:param pulumi.Input['TenantClientPermissionsArgs'] permissions: Configuration related to restricting a user's ability to affect their account.
|
1593
|
+
Structure is documented below.
|
1594
|
+
"""
|
1595
|
+
if permissions is not None:
|
1596
|
+
pulumi.set(__self__, "permissions", permissions)
|
1597
|
+
|
1598
|
+
@property
|
1599
|
+
@pulumi.getter
|
1600
|
+
def permissions(self) -> Optional[pulumi.Input['TenantClientPermissionsArgs']]:
|
1601
|
+
"""
|
1602
|
+
Configuration related to restricting a user's ability to affect their account.
|
1603
|
+
Structure is documented below.
|
1604
|
+
"""
|
1605
|
+
return pulumi.get(self, "permissions")
|
1606
|
+
|
1607
|
+
@permissions.setter
|
1608
|
+
def permissions(self, value: Optional[pulumi.Input['TenantClientPermissionsArgs']]):
|
1609
|
+
pulumi.set(self, "permissions", value)
|
1610
|
+
|
1611
|
+
|
1612
|
+
if not MYPY:
|
1613
|
+
class TenantClientPermissionsArgsDict(TypedDict):
|
1614
|
+
disabled_user_deletion: NotRequired[pulumi.Input[bool]]
|
1615
|
+
"""
|
1616
|
+
When true, end users cannot delete their account on the associated project through any of our API methods.
|
1617
|
+
"""
|
1618
|
+
disabled_user_signup: NotRequired[pulumi.Input[bool]]
|
1619
|
+
"""
|
1620
|
+
When true, end users cannot sign up for a new account on the associated project through any of our API methods.
|
1621
|
+
"""
|
1622
|
+
elif False:
|
1623
|
+
TenantClientPermissionsArgsDict: TypeAlias = Mapping[str, Any]
|
1624
|
+
|
1625
|
+
@pulumi.input_type
|
1626
|
+
class TenantClientPermissionsArgs:
|
1627
|
+
def __init__(__self__, *,
|
1628
|
+
disabled_user_deletion: Optional[pulumi.Input[bool]] = None,
|
1629
|
+
disabled_user_signup: Optional[pulumi.Input[bool]] = None):
|
1630
|
+
"""
|
1631
|
+
:param pulumi.Input[bool] disabled_user_deletion: When true, end users cannot delete their account on the associated project through any of our API methods.
|
1632
|
+
:param pulumi.Input[bool] disabled_user_signup: When true, end users cannot sign up for a new account on the associated project through any of our API methods.
|
1633
|
+
"""
|
1634
|
+
if disabled_user_deletion is not None:
|
1635
|
+
pulumi.set(__self__, "disabled_user_deletion", disabled_user_deletion)
|
1636
|
+
if disabled_user_signup is not None:
|
1637
|
+
pulumi.set(__self__, "disabled_user_signup", disabled_user_signup)
|
1638
|
+
|
1639
|
+
@property
|
1640
|
+
@pulumi.getter(name="disabledUserDeletion")
|
1641
|
+
def disabled_user_deletion(self) -> Optional[pulumi.Input[bool]]:
|
1642
|
+
"""
|
1643
|
+
When true, end users cannot delete their account on the associated project through any of our API methods.
|
1644
|
+
"""
|
1645
|
+
return pulumi.get(self, "disabled_user_deletion")
|
1646
|
+
|
1647
|
+
@disabled_user_deletion.setter
|
1648
|
+
def disabled_user_deletion(self, value: Optional[pulumi.Input[bool]]):
|
1649
|
+
pulumi.set(self, "disabled_user_deletion", value)
|
1650
|
+
|
1651
|
+
@property
|
1652
|
+
@pulumi.getter(name="disabledUserSignup")
|
1653
|
+
def disabled_user_signup(self) -> Optional[pulumi.Input[bool]]:
|
1654
|
+
"""
|
1655
|
+
When true, end users cannot sign up for a new account on the associated project through any of our API methods.
|
1656
|
+
"""
|
1657
|
+
return pulumi.get(self, "disabled_user_signup")
|
1658
|
+
|
1659
|
+
@disabled_user_signup.setter
|
1660
|
+
def disabled_user_signup(self, value: Optional[pulumi.Input[bool]]):
|
1661
|
+
pulumi.set(self, "disabled_user_signup", value)
|
1662
|
+
|
1663
|
+
|
1573
1664
|
if not MYPY:
|
1574
1665
|
class TenantInboundSamlConfigIdpConfigArgsDict(TypedDict):
|
1575
1666
|
idp_certificates: pulumi.Input[Sequence[pulumi.Input['TenantInboundSamlConfigIdpConfigIdpCertificateArgsDict']]]
|
@@ -41,6 +41,8 @@ __all__ = [
|
|
41
41
|
'InboundSamlConfigIdpConfigIdpCertificate',
|
42
42
|
'InboundSamlConfigSpConfig',
|
43
43
|
'InboundSamlConfigSpConfigSpCertificate',
|
44
|
+
'TenantClient',
|
45
|
+
'TenantClientPermissions',
|
44
46
|
'TenantInboundSamlConfigIdpConfig',
|
45
47
|
'TenantInboundSamlConfigIdpConfigIdpCertificate',
|
46
48
|
'TenantInboundSamlConfigSpConfig',
|
@@ -1370,6 +1372,77 @@ class InboundSamlConfigSpConfigSpCertificate(dict):
|
|
1370
1372
|
return pulumi.get(self, "x509_certificate")
|
1371
1373
|
|
1372
1374
|
|
1375
|
+
@pulumi.output_type
|
1376
|
+
class TenantClient(dict):
|
1377
|
+
def __init__(__self__, *,
|
1378
|
+
permissions: Optional['outputs.TenantClientPermissions'] = None):
|
1379
|
+
"""
|
1380
|
+
:param 'TenantClientPermissionsArgs' permissions: Configuration related to restricting a user's ability to affect their account.
|
1381
|
+
Structure is documented below.
|
1382
|
+
"""
|
1383
|
+
if permissions is not None:
|
1384
|
+
pulumi.set(__self__, "permissions", permissions)
|
1385
|
+
|
1386
|
+
@property
|
1387
|
+
@pulumi.getter
|
1388
|
+
def permissions(self) -> Optional['outputs.TenantClientPermissions']:
|
1389
|
+
"""
|
1390
|
+
Configuration related to restricting a user's ability to affect their account.
|
1391
|
+
Structure is documented below.
|
1392
|
+
"""
|
1393
|
+
return pulumi.get(self, "permissions")
|
1394
|
+
|
1395
|
+
|
1396
|
+
@pulumi.output_type
|
1397
|
+
class TenantClientPermissions(dict):
|
1398
|
+
@staticmethod
|
1399
|
+
def __key_warning(key: str):
|
1400
|
+
suggest = None
|
1401
|
+
if key == "disabledUserDeletion":
|
1402
|
+
suggest = "disabled_user_deletion"
|
1403
|
+
elif key == "disabledUserSignup":
|
1404
|
+
suggest = "disabled_user_signup"
|
1405
|
+
|
1406
|
+
if suggest:
|
1407
|
+
pulumi.log.warn(f"Key '{key}' not found in TenantClientPermissions. Access the value via the '{suggest}' property getter instead.")
|
1408
|
+
|
1409
|
+
def __getitem__(self, key: str) -> Any:
|
1410
|
+
TenantClientPermissions.__key_warning(key)
|
1411
|
+
return super().__getitem__(key)
|
1412
|
+
|
1413
|
+
def get(self, key: str, default = None) -> Any:
|
1414
|
+
TenantClientPermissions.__key_warning(key)
|
1415
|
+
return super().get(key, default)
|
1416
|
+
|
1417
|
+
def __init__(__self__, *,
|
1418
|
+
disabled_user_deletion: Optional[bool] = None,
|
1419
|
+
disabled_user_signup: Optional[bool] = None):
|
1420
|
+
"""
|
1421
|
+
:param bool disabled_user_deletion: When true, end users cannot delete their account on the associated project through any of our API methods.
|
1422
|
+
:param bool disabled_user_signup: When true, end users cannot sign up for a new account on the associated project through any of our API methods.
|
1423
|
+
"""
|
1424
|
+
if disabled_user_deletion is not None:
|
1425
|
+
pulumi.set(__self__, "disabled_user_deletion", disabled_user_deletion)
|
1426
|
+
if disabled_user_signup is not None:
|
1427
|
+
pulumi.set(__self__, "disabled_user_signup", disabled_user_signup)
|
1428
|
+
|
1429
|
+
@property
|
1430
|
+
@pulumi.getter(name="disabledUserDeletion")
|
1431
|
+
def disabled_user_deletion(self) -> Optional[bool]:
|
1432
|
+
"""
|
1433
|
+
When true, end users cannot delete their account on the associated project through any of our API methods.
|
1434
|
+
"""
|
1435
|
+
return pulumi.get(self, "disabled_user_deletion")
|
1436
|
+
|
1437
|
+
@property
|
1438
|
+
@pulumi.getter(name="disabledUserSignup")
|
1439
|
+
def disabled_user_signup(self) -> Optional[bool]:
|
1440
|
+
"""
|
1441
|
+
When true, end users cannot sign up for a new account on the associated project through any of our API methods.
|
1442
|
+
"""
|
1443
|
+
return pulumi.get(self, "disabled_user_signup")
|
1444
|
+
|
1445
|
+
|
1373
1446
|
@pulumi.output_type
|
1374
1447
|
class TenantInboundSamlConfigIdpConfig(dict):
|
1375
1448
|
@staticmethod
|