pulumi-gcp 8.24.0a1743177741__py3-none-any.whl → 8.25.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.
Files changed (126) hide show
  1. pulumi_gcp/__init__.py +104 -0
  2. pulumi_gcp/_inputs.py +48 -0
  3. pulumi_gcp/accesscontextmanager/_inputs.py +324 -12
  4. pulumi_gcp/accesscontextmanager/outputs.py +204 -12
  5. pulumi_gcp/accesscontextmanager/service_perimeter.py +0 -2
  6. pulumi_gcp/apigee/__init__.py +1 -0
  7. pulumi_gcp/apigee/_inputs.py +58 -0
  8. pulumi_gcp/apigee/dns_zone.py +491 -0
  9. pulumi_gcp/apigee/outputs.py +53 -0
  10. pulumi_gcp/bigquery/reservation_assignment.py +7 -7
  11. pulumi_gcp/bigtable/table.py +8 -8
  12. pulumi_gcp/chronicle/data_access_label.py +2 -2
  13. pulumi_gcp/chronicle/data_access_scope.py +16 -0
  14. pulumi_gcp/chronicle/reference_list.py +16 -0
  15. pulumi_gcp/chronicle/retrohunt.py +16 -0
  16. pulumi_gcp/chronicle/rule.py +16 -0
  17. pulumi_gcp/chronicle/rule_deployment.py +16 -0
  18. pulumi_gcp/chronicle/watchlist.py +16 -0
  19. pulumi_gcp/cloudfunctionsv2/_inputs.py +20 -0
  20. pulumi_gcp/cloudfunctionsv2/outputs.py +25 -0
  21. pulumi_gcp/cloudrunv2/_inputs.py +20 -0
  22. pulumi_gcp/cloudrunv2/outputs.py +25 -0
  23. pulumi_gcp/compute/__init__.py +1 -0
  24. pulumi_gcp/compute/_inputs.py +2011 -43
  25. pulumi_gcp/compute/backend_service.py +121 -3
  26. pulumi_gcp/compute/get_backend_service.py +15 -4
  27. pulumi_gcp/compute/get_instance.py +12 -1
  28. pulumi_gcp/compute/get_region_backend_service.py +482 -0
  29. pulumi_gcp/compute/get_router.py +12 -1
  30. pulumi_gcp/compute/get_subnetwork.py +43 -1
  31. pulumi_gcp/compute/instance.py +47 -0
  32. pulumi_gcp/compute/instance_from_machine_image.py +94 -0
  33. pulumi_gcp/compute/instance_from_template.py +47 -0
  34. pulumi_gcp/compute/outputs.py +3578 -139
  35. pulumi_gcp/compute/public_delegated_prefix.py +69 -15
  36. pulumi_gcp/compute/router.py +54 -0
  37. pulumi_gcp/compute/subnetwork.py +35 -5
  38. pulumi_gcp/config/__init__.pyi +2 -0
  39. pulumi_gcp/config/outputs.py +27 -0
  40. pulumi_gcp/config/vars.py +4 -0
  41. pulumi_gcp/container/_inputs.py +12 -12
  42. pulumi_gcp/container/cluster.py +47 -0
  43. pulumi_gcp/container/get_cluster.py +12 -1
  44. pulumi_gcp/container/get_registry_image.py +4 -0
  45. pulumi_gcp/container/get_registry_repository.py +4 -0
  46. pulumi_gcp/container/outputs.py +8 -8
  47. pulumi_gcp/container/registry.py +4 -0
  48. pulumi_gcp/datafusion/instance.py +68 -0
  49. pulumi_gcp/dataproc/__init__.py +8 -0
  50. pulumi_gcp/dataproc/_inputs.py +196 -0
  51. pulumi_gcp/dataproc/get_metastore_database_iam_policy.py +193 -0
  52. pulumi_gcp/dataproc/get_metastore_table_iam_policy.py +210 -0
  53. pulumi_gcp/dataproc/metastore_database_iam_binding.py +848 -0
  54. pulumi_gcp/dataproc/metastore_database_iam_member.py +848 -0
  55. pulumi_gcp/dataproc/metastore_database_iam_policy.py +687 -0
  56. pulumi_gcp/dataproc/metastore_federation.py +38 -2
  57. pulumi_gcp/dataproc/metastore_table_iam_binding.py +895 -0
  58. pulumi_gcp/dataproc/metastore_table_iam_member.py +895 -0
  59. pulumi_gcp/dataproc/metastore_table_iam_policy.py +734 -0
  60. pulumi_gcp/dataproc/outputs.py +112 -0
  61. pulumi_gcp/datastream/_inputs.py +311 -94
  62. pulumi_gcp/datastream/connection_profile.py +40 -0
  63. pulumi_gcp/datastream/outputs.py +244 -51
  64. pulumi_gcp/datastream/stream.py +216 -0
  65. pulumi_gcp/discoveryengine/__init__.py +1 -0
  66. pulumi_gcp/discoveryengine/sitemap.py +504 -0
  67. pulumi_gcp/eventarc/__init__.py +1 -0
  68. pulumi_gcp/eventarc/enrollment.py +980 -0
  69. pulumi_gcp/firebase/__init__.py +1 -0
  70. pulumi_gcp/firebase/_inputs.py +484 -0
  71. pulumi_gcp/firebase/app_hosting_build.py +1232 -0
  72. pulumi_gcp/firebase/outputs.py +333 -0
  73. pulumi_gcp/identityplatform/_inputs.py +91 -0
  74. pulumi_gcp/identityplatform/outputs.py +73 -0
  75. pulumi_gcp/identityplatform/tenant.py +56 -0
  76. pulumi_gcp/managedkafka/cluster.py +2 -2
  77. pulumi_gcp/memorystore/__init__.py +1 -0
  78. pulumi_gcp/memorystore/_inputs.py +826 -0
  79. pulumi_gcp/memorystore/get_instance.py +23 -1
  80. pulumi_gcp/memorystore/instance.py +344 -23
  81. pulumi_gcp/memorystore/instance_desired_user_created_endpoints.py +843 -0
  82. pulumi_gcp/memorystore/outputs.py +889 -8
  83. pulumi_gcp/networksecurity/_inputs.py +473 -0
  84. pulumi_gcp/networksecurity/mirroring_deployment_group.py +44 -16
  85. pulumi_gcp/networksecurity/mirroring_endpoint_group.py +94 -36
  86. pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +53 -8
  87. pulumi_gcp/networksecurity/outputs.py +291 -1
  88. pulumi_gcp/networksecurity/security_profile.py +8 -0
  89. pulumi_gcp/organizations/__init__.py +1 -0
  90. pulumi_gcp/organizations/get_iam_custom_roles.py +164 -0
  91. pulumi_gcp/organizations/outputs.py +96 -0
  92. pulumi_gcp/parametermanager/get_parameter.py +16 -1
  93. pulumi_gcp/parametermanager/get_parameter_version.py +19 -1
  94. pulumi_gcp/parametermanager/get_parameter_version_render.py +4 -0
  95. pulumi_gcp/parametermanager/get_parameters.py +4 -0
  96. pulumi_gcp/parametermanager/get_regional_parameter.py +4 -0
  97. pulumi_gcp/parametermanager/get_regional_parameter_version.py +4 -0
  98. pulumi_gcp/parametermanager/get_regional_parameter_version_render.py +8 -0
  99. pulumi_gcp/parametermanager/get_regional_parameters.py +4 -0
  100. pulumi_gcp/parametermanager/outputs.py +11 -0
  101. pulumi_gcp/parametermanager/parameter.py +88 -0
  102. pulumi_gcp/parametermanager/parameter_version.py +74 -0
  103. pulumi_gcp/parametermanager/regional_parameter.py +12 -0
  104. pulumi_gcp/parametermanager/regional_parameter_version.py +12 -0
  105. pulumi_gcp/provider.py +15 -0
  106. pulumi_gcp/pulumi-plugin.json +1 -1
  107. pulumi_gcp/redis/_inputs.py +136 -0
  108. pulumi_gcp/redis/cluster.py +54 -0
  109. pulumi_gcp/redis/outputs.py +114 -0
  110. pulumi_gcp/secretmanager/regional_secret_version.py +0 -16
  111. pulumi_gcp/storage/__init__.py +4 -0
  112. pulumi_gcp/storage/_inputs.py +596 -0
  113. pulumi_gcp/storage/bucket.py +7 -7
  114. pulumi_gcp/storage/control_folder_intelligence_config.py +420 -0
  115. pulumi_gcp/storage/control_organization_intelligence_config.py +420 -0
  116. pulumi_gcp/storage/control_project_intelligence_config.py +49 -7
  117. pulumi_gcp/storage/get_bucket_object_content.py +16 -1
  118. pulumi_gcp/storage/get_control_folder_intelligence_config.py +160 -0
  119. pulumi_gcp/storage/get_control_organization_intelligence_config.py +160 -0
  120. pulumi_gcp/storage/get_control_project_intelligence_config.py +32 -2
  121. pulumi_gcp/storage/outputs.py +2132 -1312
  122. pulumi_gcp/workbench/instance.py +14 -2
  123. {pulumi_gcp-8.24.0a1743177741.dist-info → pulumi_gcp-8.25.0.dist-info}/METADATA +1 -1
  124. {pulumi_gcp-8.24.0a1743177741.dist-info → pulumi_gcp-8.25.0.dist-info}/RECORD +126 -107
  125. {pulumi_gcp-8.24.0a1743177741.dist-info → pulumi_gcp-8.25.0.dist-info}/WHEEL +0 -0
  126. {pulumi_gcp-8.24.0a1743177741.dist-info → pulumi_gcp-8.25.0.dist-info}/top_level.txt +0 -0
@@ -14,6 +14,7 @@ from .app_check_recaptcha_enterprise_config import *
14
14
  from .app_check_recaptcha_v3_config import *
15
15
  from .app_check_service_config import *
16
16
  from .app_hosting_backend import *
17
+ from .app_hosting_build import *
17
18
  from .apple_app import *
18
19
  from .data_connect_service import *
19
20
  from .database_instance import *
@@ -21,6 +21,16 @@ __all__ = [
21
21
  'AppHostingBackendManagedResourceArgsDict',
22
22
  'AppHostingBackendManagedResourceRunServiceArgs',
23
23
  'AppHostingBackendManagedResourceRunServiceArgsDict',
24
+ 'AppHostingBuildErrorArgs',
25
+ 'AppHostingBuildErrorArgsDict',
26
+ 'AppHostingBuildSourceArgs',
27
+ 'AppHostingBuildSourceArgsDict',
28
+ 'AppHostingBuildSourceCodebaseArgs',
29
+ 'AppHostingBuildSourceCodebaseArgsDict',
30
+ 'AppHostingBuildSourceCodebaseAuthorArgs',
31
+ 'AppHostingBuildSourceCodebaseAuthorArgsDict',
32
+ 'AppHostingBuildSourceContainerArgs',
33
+ 'AppHostingBuildSourceContainerArgsDict',
24
34
  'ExtensionsInstanceConfigArgs',
25
35
  'ExtensionsInstanceConfigArgsDict',
26
36
  'ExtensionsInstanceErrorStatusArgs',
@@ -221,6 +231,480 @@ class AppHostingBackendManagedResourceRunServiceArgs:
221
231
  pulumi.set(self, "service", value)
222
232
 
223
233
 
234
+ if not MYPY:
235
+ class AppHostingBuildErrorArgsDict(TypedDict):
236
+ code: NotRequired[pulumi.Input[int]]
237
+ """
238
+ (Output)
239
+ The status code, which should be an enum value of google.rpc.Code.
240
+ """
241
+ details: NotRequired[pulumi.Input[Sequence[pulumi.Input[Mapping[str, pulumi.Input[str]]]]]]
242
+ """
243
+ (Output)
244
+ A list of messages that carry the error details. There is a common set of
245
+ message types for APIs to use.
246
+ """
247
+ message: NotRequired[pulumi.Input[str]]
248
+ """
249
+ (Output)
250
+ A developer-facing error message, which should be in English. Any
251
+ user-facing error message should be localized and sent in the
252
+ google.rpc.Status.details field, or localized by the client.
253
+ """
254
+ elif False:
255
+ AppHostingBuildErrorArgsDict: TypeAlias = Mapping[str, Any]
256
+
257
+ @pulumi.input_type
258
+ class AppHostingBuildErrorArgs:
259
+ def __init__(__self__, *,
260
+ code: Optional[pulumi.Input[int]] = None,
261
+ details: Optional[pulumi.Input[Sequence[pulumi.Input[Mapping[str, pulumi.Input[str]]]]]] = None,
262
+ message: Optional[pulumi.Input[str]] = None):
263
+ """
264
+ :param pulumi.Input[int] code: (Output)
265
+ The status code, which should be an enum value of google.rpc.Code.
266
+ :param pulumi.Input[Sequence[pulumi.Input[Mapping[str, pulumi.Input[str]]]]] details: (Output)
267
+ A list of messages that carry the error details. There is a common set of
268
+ message types for APIs to use.
269
+ :param pulumi.Input[str] message: (Output)
270
+ A developer-facing error message, which should be in English. Any
271
+ user-facing error message should be localized and sent in the
272
+ google.rpc.Status.details field, or localized by the client.
273
+ """
274
+ if code is not None:
275
+ pulumi.set(__self__, "code", code)
276
+ if details is not None:
277
+ pulumi.set(__self__, "details", details)
278
+ if message is not None:
279
+ pulumi.set(__self__, "message", message)
280
+
281
+ @property
282
+ @pulumi.getter
283
+ def code(self) -> Optional[pulumi.Input[int]]:
284
+ """
285
+ (Output)
286
+ The status code, which should be an enum value of google.rpc.Code.
287
+ """
288
+ return pulumi.get(self, "code")
289
+
290
+ @code.setter
291
+ def code(self, value: Optional[pulumi.Input[int]]):
292
+ pulumi.set(self, "code", value)
293
+
294
+ @property
295
+ @pulumi.getter
296
+ def details(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[Mapping[str, pulumi.Input[str]]]]]]:
297
+ """
298
+ (Output)
299
+ A list of messages that carry the error details. There is a common set of
300
+ message types for APIs to use.
301
+ """
302
+ return pulumi.get(self, "details")
303
+
304
+ @details.setter
305
+ def details(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[Mapping[str, pulumi.Input[str]]]]]]):
306
+ pulumi.set(self, "details", value)
307
+
308
+ @property
309
+ @pulumi.getter
310
+ def message(self) -> Optional[pulumi.Input[str]]:
311
+ """
312
+ (Output)
313
+ A developer-facing error message, which should be in English. Any
314
+ user-facing error message should be localized and sent in the
315
+ google.rpc.Status.details field, or localized by the client.
316
+ """
317
+ return pulumi.get(self, "message")
318
+
319
+ @message.setter
320
+ def message(self, value: Optional[pulumi.Input[str]]):
321
+ pulumi.set(self, "message", value)
322
+
323
+
324
+ if not MYPY:
325
+ class AppHostingBuildSourceArgsDict(TypedDict):
326
+ codebase: NotRequired[pulumi.Input['AppHostingBuildSourceCodebaseArgsDict']]
327
+ """
328
+ A codebase source, representing the state of the codebase
329
+ that the build will be created at.
330
+ Structure is documented below.
331
+ """
332
+ container: NotRequired[pulumi.Input['AppHostingBuildSourceContainerArgsDict']]
333
+ """
334
+ The URI of an Artifact Registry
335
+ [container
336
+ image](https://cloud.google.com/artifact-registry/docs/reference/rest/v1/projects.locations.repositories.dockerImages)
337
+ to use as the build source.
338
+ Structure is documented below.
339
+ """
340
+ elif False:
341
+ AppHostingBuildSourceArgsDict: TypeAlias = Mapping[str, Any]
342
+
343
+ @pulumi.input_type
344
+ class AppHostingBuildSourceArgs:
345
+ def __init__(__self__, *,
346
+ codebase: Optional[pulumi.Input['AppHostingBuildSourceCodebaseArgs']] = None,
347
+ container: Optional[pulumi.Input['AppHostingBuildSourceContainerArgs']] = None):
348
+ """
349
+ :param pulumi.Input['AppHostingBuildSourceCodebaseArgs'] codebase: A codebase source, representing the state of the codebase
350
+ that the build will be created at.
351
+ Structure is documented below.
352
+ :param pulumi.Input['AppHostingBuildSourceContainerArgs'] container: The URI of an Artifact Registry
353
+ [container
354
+ image](https://cloud.google.com/artifact-registry/docs/reference/rest/v1/projects.locations.repositories.dockerImages)
355
+ to use as the build source.
356
+ Structure is documented below.
357
+ """
358
+ if codebase is not None:
359
+ pulumi.set(__self__, "codebase", codebase)
360
+ if container is not None:
361
+ pulumi.set(__self__, "container", container)
362
+
363
+ @property
364
+ @pulumi.getter
365
+ def codebase(self) -> Optional[pulumi.Input['AppHostingBuildSourceCodebaseArgs']]:
366
+ """
367
+ A codebase source, representing the state of the codebase
368
+ that the build will be created at.
369
+ Structure is documented below.
370
+ """
371
+ return pulumi.get(self, "codebase")
372
+
373
+ @codebase.setter
374
+ def codebase(self, value: Optional[pulumi.Input['AppHostingBuildSourceCodebaseArgs']]):
375
+ pulumi.set(self, "codebase", value)
376
+
377
+ @property
378
+ @pulumi.getter
379
+ def container(self) -> Optional[pulumi.Input['AppHostingBuildSourceContainerArgs']]:
380
+ """
381
+ The URI of an Artifact Registry
382
+ [container
383
+ image](https://cloud.google.com/artifact-registry/docs/reference/rest/v1/projects.locations.repositories.dockerImages)
384
+ to use as the build source.
385
+ Structure is documented below.
386
+ """
387
+ return pulumi.get(self, "container")
388
+
389
+ @container.setter
390
+ def container(self, value: Optional[pulumi.Input['AppHostingBuildSourceContainerArgs']]):
391
+ pulumi.set(self, "container", value)
392
+
393
+
394
+ if not MYPY:
395
+ class AppHostingBuildSourceCodebaseArgsDict(TypedDict):
396
+ authors: NotRequired[pulumi.Input[Sequence[pulumi.Input['AppHostingBuildSourceCodebaseAuthorArgsDict']]]]
397
+ """
398
+ (Output)
399
+ Version control metadata for a user associated with a resolved codebase.
400
+ Currently assumes a Git user.
401
+ Structure is documented below.
402
+ """
403
+ branch: NotRequired[pulumi.Input[str]]
404
+ """
405
+ The branch in the codebase to build from, using the latest commit.
406
+ """
407
+ commit: NotRequired[pulumi.Input[str]]
408
+ """
409
+ The commit in the codebase to build from.
410
+
411
+
412
+ <a name="nested_source_codebase_author"></a>The `author` block contains:
413
+ """
414
+ commit_message: NotRequired[pulumi.Input[str]]
415
+ """
416
+ (Output)
417
+ The message of a codebase change.
418
+ """
419
+ commit_time: NotRequired[pulumi.Input[str]]
420
+ """
421
+ (Output)
422
+ The time the change was made.
423
+ """
424
+ display_name: NotRequired[pulumi.Input[str]]
425
+ """
426
+ Human-readable name. 63 character limit.
427
+ """
428
+ hash: NotRequired[pulumi.Input[str]]
429
+ """
430
+ (Output)
431
+ The full SHA-1 hash of a Git commit, if available.
432
+ """
433
+ uri: NotRequired[pulumi.Input[str]]
434
+ """
435
+ (Output)
436
+ A URI linking to the codebase on an hosting provider's website. May
437
+ not be valid if the commit has been rebased or force-pushed out of
438
+ existence in the linked repository.
439
+ """
440
+ elif False:
441
+ AppHostingBuildSourceCodebaseArgsDict: TypeAlias = Mapping[str, Any]
442
+
443
+ @pulumi.input_type
444
+ class AppHostingBuildSourceCodebaseArgs:
445
+ def __init__(__self__, *,
446
+ authors: Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingBuildSourceCodebaseAuthorArgs']]]] = None,
447
+ branch: Optional[pulumi.Input[str]] = None,
448
+ commit: Optional[pulumi.Input[str]] = None,
449
+ commit_message: Optional[pulumi.Input[str]] = None,
450
+ commit_time: Optional[pulumi.Input[str]] = None,
451
+ display_name: Optional[pulumi.Input[str]] = None,
452
+ hash: Optional[pulumi.Input[str]] = None,
453
+ uri: Optional[pulumi.Input[str]] = None):
454
+ """
455
+ :param pulumi.Input[Sequence[pulumi.Input['AppHostingBuildSourceCodebaseAuthorArgs']]] authors: (Output)
456
+ Version control metadata for a user associated with a resolved codebase.
457
+ Currently assumes a Git user.
458
+ Structure is documented below.
459
+ :param pulumi.Input[str] branch: The branch in the codebase to build from, using the latest commit.
460
+ :param pulumi.Input[str] commit: The commit in the codebase to build from.
461
+
462
+
463
+ <a name="nested_source_codebase_author"></a>The `author` block contains:
464
+ :param pulumi.Input[str] commit_message: (Output)
465
+ The message of a codebase change.
466
+ :param pulumi.Input[str] commit_time: (Output)
467
+ The time the change was made.
468
+ :param pulumi.Input[str] display_name: Human-readable name. 63 character limit.
469
+ :param pulumi.Input[str] hash: (Output)
470
+ The full SHA-1 hash of a Git commit, if available.
471
+ :param pulumi.Input[str] uri: (Output)
472
+ A URI linking to the codebase on an hosting provider's website. May
473
+ not be valid if the commit has been rebased or force-pushed out of
474
+ existence in the linked repository.
475
+ """
476
+ if authors is not None:
477
+ pulumi.set(__self__, "authors", authors)
478
+ if branch is not None:
479
+ pulumi.set(__self__, "branch", branch)
480
+ if commit is not None:
481
+ pulumi.set(__self__, "commit", commit)
482
+ if commit_message is not None:
483
+ pulumi.set(__self__, "commit_message", commit_message)
484
+ if commit_time is not None:
485
+ pulumi.set(__self__, "commit_time", commit_time)
486
+ if display_name is not None:
487
+ pulumi.set(__self__, "display_name", display_name)
488
+ if hash is not None:
489
+ pulumi.set(__self__, "hash", hash)
490
+ if uri is not None:
491
+ pulumi.set(__self__, "uri", uri)
492
+
493
+ @property
494
+ @pulumi.getter
495
+ def authors(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingBuildSourceCodebaseAuthorArgs']]]]:
496
+ """
497
+ (Output)
498
+ Version control metadata for a user associated with a resolved codebase.
499
+ Currently assumes a Git user.
500
+ Structure is documented below.
501
+ """
502
+ return pulumi.get(self, "authors")
503
+
504
+ @authors.setter
505
+ def authors(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AppHostingBuildSourceCodebaseAuthorArgs']]]]):
506
+ pulumi.set(self, "authors", value)
507
+
508
+ @property
509
+ @pulumi.getter
510
+ def branch(self) -> Optional[pulumi.Input[str]]:
511
+ """
512
+ The branch in the codebase to build from, using the latest commit.
513
+ """
514
+ return pulumi.get(self, "branch")
515
+
516
+ @branch.setter
517
+ def branch(self, value: Optional[pulumi.Input[str]]):
518
+ pulumi.set(self, "branch", value)
519
+
520
+ @property
521
+ @pulumi.getter
522
+ def commit(self) -> Optional[pulumi.Input[str]]:
523
+ """
524
+ The commit in the codebase to build from.
525
+
526
+
527
+ <a name="nested_source_codebase_author"></a>The `author` block contains:
528
+ """
529
+ return pulumi.get(self, "commit")
530
+
531
+ @commit.setter
532
+ def commit(self, value: Optional[pulumi.Input[str]]):
533
+ pulumi.set(self, "commit", value)
534
+
535
+ @property
536
+ @pulumi.getter(name="commitMessage")
537
+ def commit_message(self) -> Optional[pulumi.Input[str]]:
538
+ """
539
+ (Output)
540
+ The message of a codebase change.
541
+ """
542
+ return pulumi.get(self, "commit_message")
543
+
544
+ @commit_message.setter
545
+ def commit_message(self, value: Optional[pulumi.Input[str]]):
546
+ pulumi.set(self, "commit_message", value)
547
+
548
+ @property
549
+ @pulumi.getter(name="commitTime")
550
+ def commit_time(self) -> Optional[pulumi.Input[str]]:
551
+ """
552
+ (Output)
553
+ The time the change was made.
554
+ """
555
+ return pulumi.get(self, "commit_time")
556
+
557
+ @commit_time.setter
558
+ def commit_time(self, value: Optional[pulumi.Input[str]]):
559
+ pulumi.set(self, "commit_time", value)
560
+
561
+ @property
562
+ @pulumi.getter(name="displayName")
563
+ def display_name(self) -> Optional[pulumi.Input[str]]:
564
+ """
565
+ Human-readable name. 63 character limit.
566
+ """
567
+ return pulumi.get(self, "display_name")
568
+
569
+ @display_name.setter
570
+ def display_name(self, value: Optional[pulumi.Input[str]]):
571
+ pulumi.set(self, "display_name", value)
572
+
573
+ @property
574
+ @pulumi.getter
575
+ def hash(self) -> Optional[pulumi.Input[str]]:
576
+ """
577
+ (Output)
578
+ The full SHA-1 hash of a Git commit, if available.
579
+ """
580
+ return pulumi.get(self, "hash")
581
+
582
+ @hash.setter
583
+ def hash(self, value: Optional[pulumi.Input[str]]):
584
+ pulumi.set(self, "hash", value)
585
+
586
+ @property
587
+ @pulumi.getter
588
+ def uri(self) -> Optional[pulumi.Input[str]]:
589
+ """
590
+ (Output)
591
+ A URI linking to the codebase on an hosting provider's website. May
592
+ not be valid if the commit has been rebased or force-pushed out of
593
+ existence in the linked repository.
594
+ """
595
+ return pulumi.get(self, "uri")
596
+
597
+ @uri.setter
598
+ def uri(self, value: Optional[pulumi.Input[str]]):
599
+ pulumi.set(self, "uri", value)
600
+
601
+
602
+ if not MYPY:
603
+ class AppHostingBuildSourceCodebaseAuthorArgsDict(TypedDict):
604
+ display_name: NotRequired[pulumi.Input[str]]
605
+ """
606
+ The 'name' field in a Git user's git.config. Required by Git.
607
+ """
608
+ email: NotRequired[pulumi.Input[str]]
609
+ """
610
+ The 'email' field in a Git user's git.config, if available.
611
+ """
612
+ image_uri: NotRequired[pulumi.Input[str]]
613
+ """
614
+ The URI of an image file associated with the user's account in an
615
+ external source control provider, if available.
616
+ """
617
+ elif False:
618
+ AppHostingBuildSourceCodebaseAuthorArgsDict: TypeAlias = Mapping[str, Any]
619
+
620
+ @pulumi.input_type
621
+ class AppHostingBuildSourceCodebaseAuthorArgs:
622
+ def __init__(__self__, *,
623
+ display_name: Optional[pulumi.Input[str]] = None,
624
+ email: Optional[pulumi.Input[str]] = None,
625
+ image_uri: Optional[pulumi.Input[str]] = None):
626
+ """
627
+ :param pulumi.Input[str] display_name: The 'name' field in a Git user's git.config. Required by Git.
628
+ :param pulumi.Input[str] email: The 'email' field in a Git user's git.config, if available.
629
+ :param pulumi.Input[str] image_uri: The URI of an image file associated with the user's account in an
630
+ external source control provider, if available.
631
+ """
632
+ if display_name is not None:
633
+ pulumi.set(__self__, "display_name", display_name)
634
+ if email is not None:
635
+ pulumi.set(__self__, "email", email)
636
+ if image_uri is not None:
637
+ pulumi.set(__self__, "image_uri", image_uri)
638
+
639
+ @property
640
+ @pulumi.getter(name="displayName")
641
+ def display_name(self) -> Optional[pulumi.Input[str]]:
642
+ """
643
+ The 'name' field in a Git user's git.config. Required by Git.
644
+ """
645
+ return pulumi.get(self, "display_name")
646
+
647
+ @display_name.setter
648
+ def display_name(self, value: Optional[pulumi.Input[str]]):
649
+ pulumi.set(self, "display_name", value)
650
+
651
+ @property
652
+ @pulumi.getter
653
+ def email(self) -> Optional[pulumi.Input[str]]:
654
+ """
655
+ The 'email' field in a Git user's git.config, if available.
656
+ """
657
+ return pulumi.get(self, "email")
658
+
659
+ @email.setter
660
+ def email(self, value: Optional[pulumi.Input[str]]):
661
+ pulumi.set(self, "email", value)
662
+
663
+ @property
664
+ @pulumi.getter(name="imageUri")
665
+ def image_uri(self) -> Optional[pulumi.Input[str]]:
666
+ """
667
+ The URI of an image file associated with the user's account in an
668
+ external source control provider, if available.
669
+ """
670
+ return pulumi.get(self, "image_uri")
671
+
672
+ @image_uri.setter
673
+ def image_uri(self, value: Optional[pulumi.Input[str]]):
674
+ pulumi.set(self, "image_uri", value)
675
+
676
+
677
+ if not MYPY:
678
+ class AppHostingBuildSourceContainerArgsDict(TypedDict):
679
+ image: pulumi.Input[str]
680
+ """
681
+ A URI representing a container for the backend to use.
682
+ """
683
+ elif False:
684
+ AppHostingBuildSourceContainerArgsDict: TypeAlias = Mapping[str, Any]
685
+
686
+ @pulumi.input_type
687
+ class AppHostingBuildSourceContainerArgs:
688
+ def __init__(__self__, *,
689
+ image: pulumi.Input[str]):
690
+ """
691
+ :param pulumi.Input[str] image: A URI representing a container for the backend to use.
692
+ """
693
+ pulumi.set(__self__, "image", image)
694
+
695
+ @property
696
+ @pulumi.getter
697
+ def image(self) -> pulumi.Input[str]:
698
+ """
699
+ A URI representing a container for the backend to use.
700
+ """
701
+ return pulumi.get(self, "image")
702
+
703
+ @image.setter
704
+ def image(self, value: pulumi.Input[str]):
705
+ pulumi.set(self, "image", value)
706
+
707
+
224
708
  if not MYPY:
225
709
  class ExtensionsInstanceConfigArgsDict(TypedDict):
226
710
  extension_ref: pulumi.Input[str]