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
@@ -13,6 +13,8 @@ if sys.version_info >= (3, 11):
13
13
  else:
14
14
  from typing_extensions import NotRequired, TypedDict, TypeAlias
15
15
  from .. import _utilities
16
+ from . import outputs
17
+ from ._inputs import *
16
18
 
17
19
  __all__ = ['TenantArgs', 'Tenant']
18
20
 
@@ -21,6 +23,7 @@ class TenantArgs:
21
23
  def __init__(__self__, *,
22
24
  display_name: pulumi.Input[str],
23
25
  allow_password_signup: Optional[pulumi.Input[bool]] = None,
26
+ client: Optional[pulumi.Input['TenantClientArgs']] = None,
24
27
  disable_auth: Optional[pulumi.Input[bool]] = None,
25
28
  enable_email_link_signin: Optional[pulumi.Input[bool]] = None,
26
29
  project: Optional[pulumi.Input[str]] = None):
@@ -31,6 +34,8 @@ class TenantArgs:
31
34
 
32
35
  - - -
33
36
  :param pulumi.Input[bool] allow_password_signup: Whether to allow email/password user authentication.
37
+ :param pulumi.Input['TenantClientArgs'] client: Options related to how clients making requests on behalf of a tenant should be configured.
38
+ Structure is documented below.
34
39
  :param pulumi.Input[bool] disable_auth: Whether authentication is disabled for the tenant. If true, the users under
35
40
  the disabled tenant are not allowed to sign-in. Admins of the disabled tenant
36
41
  are not able to manage its users.
@@ -41,6 +46,8 @@ class TenantArgs:
41
46
  pulumi.set(__self__, "display_name", display_name)
42
47
  if allow_password_signup is not None:
43
48
  pulumi.set(__self__, "allow_password_signup", allow_password_signup)
49
+ if client is not None:
50
+ pulumi.set(__self__, "client", client)
44
51
  if disable_auth is not None:
45
52
  pulumi.set(__self__, "disable_auth", disable_auth)
46
53
  if enable_email_link_signin is not None:
@@ -75,6 +82,19 @@ class TenantArgs:
75
82
  def allow_password_signup(self, value: Optional[pulumi.Input[bool]]):
76
83
  pulumi.set(self, "allow_password_signup", value)
77
84
 
85
+ @property
86
+ @pulumi.getter
87
+ def client(self) -> Optional[pulumi.Input['TenantClientArgs']]:
88
+ """
89
+ Options related to how clients making requests on behalf of a tenant should be configured.
90
+ Structure is documented below.
91
+ """
92
+ return pulumi.get(self, "client")
93
+
94
+ @client.setter
95
+ def client(self, value: Optional[pulumi.Input['TenantClientArgs']]):
96
+ pulumi.set(self, "client", value)
97
+
78
98
  @property
79
99
  @pulumi.getter(name="disableAuth")
80
100
  def disable_auth(self) -> Optional[pulumi.Input[bool]]:
@@ -119,6 +139,7 @@ class TenantArgs:
119
139
  class _TenantState:
120
140
  def __init__(__self__, *,
121
141
  allow_password_signup: Optional[pulumi.Input[bool]] = None,
142
+ client: Optional[pulumi.Input['TenantClientArgs']] = None,
122
143
  disable_auth: Optional[pulumi.Input[bool]] = None,
123
144
  display_name: Optional[pulumi.Input[str]] = None,
124
145
  enable_email_link_signin: Optional[pulumi.Input[bool]] = None,
@@ -127,6 +148,8 @@ class _TenantState:
127
148
  """
128
149
  Input properties used for looking up and filtering Tenant resources.
129
150
  :param pulumi.Input[bool] allow_password_signup: Whether to allow email/password user authentication.
151
+ :param pulumi.Input['TenantClientArgs'] client: Options related to how clients making requests on behalf of a tenant should be configured.
152
+ Structure is documented below.
130
153
  :param pulumi.Input[bool] disable_auth: Whether authentication is disabled for the tenant. If true, the users under
131
154
  the disabled tenant are not allowed to sign-in. Admins of the disabled tenant
132
155
  are not able to manage its users.
@@ -141,6 +164,8 @@ class _TenantState:
141
164
  """
142
165
  if allow_password_signup is not None:
143
166
  pulumi.set(__self__, "allow_password_signup", allow_password_signup)
167
+ if client is not None:
168
+ pulumi.set(__self__, "client", client)
144
169
  if disable_auth is not None:
145
170
  pulumi.set(__self__, "disable_auth", disable_auth)
146
171
  if display_name is not None:
@@ -164,6 +189,19 @@ class _TenantState:
164
189
  def allow_password_signup(self, value: Optional[pulumi.Input[bool]]):
165
190
  pulumi.set(self, "allow_password_signup", value)
166
191
 
192
+ @property
193
+ @pulumi.getter
194
+ def client(self) -> Optional[pulumi.Input['TenantClientArgs']]:
195
+ """
196
+ Options related to how clients making requests on behalf of a tenant should be configured.
197
+ Structure is documented below.
198
+ """
199
+ return pulumi.get(self, "client")
200
+
201
+ @client.setter
202
+ def client(self, value: Optional[pulumi.Input['TenantClientArgs']]):
203
+ pulumi.set(self, "client", value)
204
+
167
205
  @property
168
206
  @pulumi.getter(name="disableAuth")
169
207
  def disable_auth(self) -> Optional[pulumi.Input[bool]]:
@@ -237,6 +275,7 @@ class Tenant(pulumi.CustomResource):
237
275
  resource_name: str,
238
276
  opts: Optional[pulumi.ResourceOptions] = None,
239
277
  allow_password_signup: Optional[pulumi.Input[bool]] = None,
278
+ client: Optional[pulumi.Input[Union['TenantClientArgs', 'TenantClientArgsDict']]] = None,
240
279
  disable_auth: Optional[pulumi.Input[bool]] = None,
241
280
  display_name: Optional[pulumi.Input[str]] = None,
242
281
  enable_email_link_signin: Optional[pulumi.Input[bool]] = None,
@@ -292,6 +331,8 @@ class Tenant(pulumi.CustomResource):
292
331
  :param str resource_name: The name of the resource.
293
332
  :param pulumi.ResourceOptions opts: Options for the resource.
294
333
  :param pulumi.Input[bool] allow_password_signup: Whether to allow email/password user authentication.
334
+ :param pulumi.Input[Union['TenantClientArgs', 'TenantClientArgsDict']] client: Options related to how clients making requests on behalf of a tenant should be configured.
335
+ Structure is documented below.
295
336
  :param pulumi.Input[bool] disable_auth: Whether authentication is disabled for the tenant. If true, the users under
296
337
  the disabled tenant are not allowed to sign-in. Admins of the disabled tenant
297
338
  are not able to manage its users.
@@ -372,6 +413,7 @@ class Tenant(pulumi.CustomResource):
372
413
  resource_name: str,
373
414
  opts: Optional[pulumi.ResourceOptions] = None,
374
415
  allow_password_signup: Optional[pulumi.Input[bool]] = None,
416
+ client: Optional[pulumi.Input[Union['TenantClientArgs', 'TenantClientArgsDict']]] = None,
375
417
  disable_auth: Optional[pulumi.Input[bool]] = None,
376
418
  display_name: Optional[pulumi.Input[str]] = None,
377
419
  enable_email_link_signin: Optional[pulumi.Input[bool]] = None,
@@ -386,6 +428,7 @@ class Tenant(pulumi.CustomResource):
386
428
  __props__ = TenantArgs.__new__(TenantArgs)
387
429
 
388
430
  __props__.__dict__["allow_password_signup"] = allow_password_signup
431
+ __props__.__dict__["client"] = client
389
432
  __props__.__dict__["disable_auth"] = disable_auth
390
433
  if display_name is None and not opts.urn:
391
434
  raise TypeError("Missing required property 'display_name'")
@@ -404,6 +447,7 @@ class Tenant(pulumi.CustomResource):
404
447
  id: pulumi.Input[str],
405
448
  opts: Optional[pulumi.ResourceOptions] = None,
406
449
  allow_password_signup: Optional[pulumi.Input[bool]] = None,
450
+ client: Optional[pulumi.Input[Union['TenantClientArgs', 'TenantClientArgsDict']]] = None,
407
451
  disable_auth: Optional[pulumi.Input[bool]] = None,
408
452
  display_name: Optional[pulumi.Input[str]] = None,
409
453
  enable_email_link_signin: Optional[pulumi.Input[bool]] = None,
@@ -417,6 +461,8 @@ class Tenant(pulumi.CustomResource):
417
461
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
418
462
  :param pulumi.ResourceOptions opts: Options for the resource.
419
463
  :param pulumi.Input[bool] allow_password_signup: Whether to allow email/password user authentication.
464
+ :param pulumi.Input[Union['TenantClientArgs', 'TenantClientArgsDict']] client: Options related to how clients making requests on behalf of a tenant should be configured.
465
+ Structure is documented below.
420
466
  :param pulumi.Input[bool] disable_auth: Whether authentication is disabled for the tenant. If true, the users under
421
467
  the disabled tenant are not allowed to sign-in. Admins of the disabled tenant
422
468
  are not able to manage its users.
@@ -434,6 +480,7 @@ class Tenant(pulumi.CustomResource):
434
480
  __props__ = _TenantState.__new__(_TenantState)
435
481
 
436
482
  __props__.__dict__["allow_password_signup"] = allow_password_signup
483
+ __props__.__dict__["client"] = client
437
484
  __props__.__dict__["disable_auth"] = disable_auth
438
485
  __props__.__dict__["display_name"] = display_name
439
486
  __props__.__dict__["enable_email_link_signin"] = enable_email_link_signin
@@ -449,6 +496,15 @@ class Tenant(pulumi.CustomResource):
449
496
  """
450
497
  return pulumi.get(self, "allow_password_signup")
451
498
 
499
+ @property
500
+ @pulumi.getter
501
+ def client(self) -> pulumi.Output[Optional['outputs.TenantClient']]:
502
+ """
503
+ Options related to how clients making requests on behalf of a tenant should be configured.
504
+ Structure is documented below.
505
+ """
506
+ return pulumi.get(self, "client")
507
+
452
508
  @property
453
509
  @pulumi.getter(name="disableAuth")
454
510
  def disable_auth(self) -> pulumi.Output[Optional[bool]]:
@@ -404,7 +404,7 @@ class Cluster(pulumi.CustomResource):
404
404
  },
405
405
  },
406
406
  rebalance_config={
407
- "mode": "NO_REBALANCE",
407
+ "mode": "AUTO_REBALANCE_ON_SCALE_UP",
408
408
  },
409
409
  labels={
410
410
  "key": "value",
@@ -518,7 +518,7 @@ class Cluster(pulumi.CustomResource):
518
518
  },
519
519
  },
520
520
  rebalance_config={
521
- "mode": "NO_REBALANCE",
521
+ "mode": "AUTO_REBALANCE_ON_SCALE_UP",
522
522
  },
523
523
  labels={
524
524
  "key": "value",
@@ -7,5 +7,6 @@ import typing
7
7
  # Export this package's modules as members:
8
8
  from .get_instance import *
9
9
  from .instance import *
10
+ from .instance_desired_user_created_endpoints import *
10
11
  from ._inputs import *
11
12
  from . import outputs