pulumi-gcp 9.3.0a1759561069__py3-none-any.whl → 9.4.0a1759906655__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 (76) hide show
  1. pulumi_gcp/__init__.py +32 -0
  2. pulumi_gcp/apigee/__init__.py +1 -0
  3. pulumi_gcp/apigee/api_deployment.py +372 -0
  4. pulumi_gcp/apihub/plugin.py +1 -1
  5. pulumi_gcp/artifactregistry/__init__.py +2 -0
  6. pulumi_gcp/artifactregistry/get_maven_artifacts.py +164 -0
  7. pulumi_gcp/artifactregistry/get_npm_packages.py +164 -0
  8. pulumi_gcp/artifactregistry/outputs.py +165 -0
  9. pulumi_gcp/cloudrunv2/_inputs.py +823 -15
  10. pulumi_gcp/cloudrunv2/outputs.py +1749 -743
  11. pulumi_gcp/cloudrunv2/worker_pool.py +110 -0
  12. pulumi_gcp/compute/_inputs.py +28 -0
  13. pulumi_gcp/compute/outputs.py +20 -1
  14. pulumi_gcp/compute/vpn_tunnel.py +97 -23
  15. pulumi_gcp/compute/wire_group.py +2 -0
  16. pulumi_gcp/dataloss/_inputs.py +970 -30
  17. pulumi_gcp/dataloss/outputs.py +850 -20
  18. pulumi_gcp/dataloss/prevention_discovery_config.py +54 -0
  19. pulumi_gcp/diagflow/_inputs.py +66 -0
  20. pulumi_gcp/diagflow/conversation_profile.py +84 -0
  21. pulumi_gcp/diagflow/outputs.py +57 -0
  22. pulumi_gcp/discoveryengine/__init__.py +1 -0
  23. pulumi_gcp/discoveryengine/_inputs.py +187 -0
  24. pulumi_gcp/discoveryengine/data_connector.py +1368 -0
  25. pulumi_gcp/discoveryengine/outputs.py +135 -0
  26. pulumi_gcp/discoveryengine/search_engine.py +47 -0
  27. pulumi_gcp/gkebackup/_inputs.py +111 -0
  28. pulumi_gcp/gkebackup/backup_plan.py +72 -0
  29. pulumi_gcp/gkebackup/outputs.py +84 -0
  30. pulumi_gcp/kms/__init__.py +1 -0
  31. pulumi_gcp/kms/_inputs.py +43 -0
  32. pulumi_gcp/kms/organization_kaj_policy_config.py +290 -0
  33. pulumi_gcp/kms/outputs.py +43 -0
  34. pulumi_gcp/logging/metric.py +2 -2
  35. pulumi_gcp/looker/instance.py +51 -0
  36. pulumi_gcp/managedkafka/connect_cluster.py +20 -82
  37. pulumi_gcp/managedkafka/connector.py +24 -94
  38. pulumi_gcp/netapp/_inputs.py +28 -5
  39. pulumi_gcp/netapp/outputs.py +19 -3
  40. pulumi_gcp/netapp/storage_pool.py +56 -0
  41. pulumi_gcp/netapp/volume.py +28 -0
  42. pulumi_gcp/networkconnectivity/spoke.py +14 -14
  43. pulumi_gcp/networksecurity/mirroring_endpoint_group.py +211 -23
  44. pulumi_gcp/oracledatabase/odb_network.py +101 -2
  45. pulumi_gcp/orgpolicy/policy.py +2 -2
  46. pulumi_gcp/privilegedaccessmanager/_inputs.py +27 -4
  47. pulumi_gcp/privilegedaccessmanager/outputs.py +31 -6
  48. pulumi_gcp/pubsub/get_subscription.py +12 -1
  49. pulumi_gcp/pubsub/get_topic.py +15 -4
  50. pulumi_gcp/pubsub/subscription.py +153 -7
  51. pulumi_gcp/pubsub/topic.py +145 -3
  52. pulumi_gcp/pulumi-plugin.json +1 -1
  53. pulumi_gcp/saasruntime/__init__.py +1 -0
  54. pulumi_gcp/saasruntime/_inputs.py +60 -0
  55. pulumi_gcp/saasruntime/outputs.py +55 -0
  56. pulumi_gcp/saasruntime/rollout_kind.py +1086 -0
  57. pulumi_gcp/sql/_inputs.py +122 -3
  58. pulumi_gcp/sql/database_instance.py +47 -0
  59. pulumi_gcp/sql/get_database_instance.py +12 -1
  60. pulumi_gcp/sql/outputs.py +233 -2
  61. pulumi_gcp/storage/bucket.py +52 -24
  62. pulumi_gcp/storage/get_insights_dataset_config.py +12 -1
  63. pulumi_gcp/storage/insights_dataset_config.py +49 -0
  64. pulumi_gcp/storage/insights_report_config.py +47 -0
  65. pulumi_gcp/vertex/_inputs.py +339 -1
  66. pulumi_gcp/vertex/ai_endpoint.py +4 -4
  67. pulumi_gcp/vertex/ai_endpoint_with_model_garden_deployment.py +102 -0
  68. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  69. pulumi_gcp/vertex/ai_index.py +74 -2
  70. pulumi_gcp/vertex/ai_index_endpoint.py +54 -0
  71. pulumi_gcp/vertex/get_ai_index.py +12 -1
  72. pulumi_gcp/vertex/outputs.py +303 -1
  73. {pulumi_gcp-9.3.0a1759561069.dist-info → pulumi_gcp-9.4.0a1759906655.dist-info}/METADATA +1 -1
  74. {pulumi_gcp-9.3.0a1759561069.dist-info → pulumi_gcp-9.4.0a1759906655.dist-info}/RECORD +76 -70
  75. {pulumi_gcp-9.3.0a1759561069.dist-info → pulumi_gcp-9.4.0a1759906655.dist-info}/WHEEL +0 -0
  76. {pulumi_gcp-9.3.0a1759561069.dist-info → pulumi_gcp-9.4.0a1759906655.dist-info}/top_level.txt +0 -0
@@ -25,6 +25,8 @@ __all__ = [
25
25
  'ReleaseOutputVariableArgsDict',
26
26
  'ReleaseReleaseRequirementsArgs',
27
27
  'ReleaseReleaseRequirementsArgsDict',
28
+ 'RolloutKindErrorBudgetArgs',
29
+ 'RolloutKindErrorBudgetArgsDict',
28
30
  'SaaSLocationArgs',
29
31
  'SaaSLocationArgsDict',
30
32
  'UnitKindDependencyArgs',
@@ -379,6 +381,64 @@ class ReleaseReleaseRequirementsArgs:
379
381
  pulumi.set(self, "upgradeable_from_releases", value)
380
382
 
381
383
 
384
+ if not MYPY:
385
+ class RolloutKindErrorBudgetArgsDict(TypedDict):
386
+ allowed_count: NotRequired[pulumi.Input[_builtins.int]]
387
+ """
388
+ The maximum number of failed units allowed in a location without pausing
389
+ the rollout.
390
+ """
391
+ allowed_percentage: NotRequired[pulumi.Input[_builtins.int]]
392
+ """
393
+ The maximum percentage of units allowed to fail (0, 100] within a location
394
+ without pausing the rollout.
395
+ """
396
+ elif False:
397
+ RolloutKindErrorBudgetArgsDict: TypeAlias = Mapping[str, Any]
398
+
399
+ @pulumi.input_type
400
+ class RolloutKindErrorBudgetArgs:
401
+ def __init__(__self__, *,
402
+ allowed_count: Optional[pulumi.Input[_builtins.int]] = None,
403
+ allowed_percentage: Optional[pulumi.Input[_builtins.int]] = None):
404
+ """
405
+ :param pulumi.Input[_builtins.int] allowed_count: The maximum number of failed units allowed in a location without pausing
406
+ the rollout.
407
+ :param pulumi.Input[_builtins.int] allowed_percentage: The maximum percentage of units allowed to fail (0, 100] within a location
408
+ without pausing the rollout.
409
+ """
410
+ if allowed_count is not None:
411
+ pulumi.set(__self__, "allowed_count", allowed_count)
412
+ if allowed_percentage is not None:
413
+ pulumi.set(__self__, "allowed_percentage", allowed_percentage)
414
+
415
+ @_builtins.property
416
+ @pulumi.getter(name="allowedCount")
417
+ def allowed_count(self) -> Optional[pulumi.Input[_builtins.int]]:
418
+ """
419
+ The maximum number of failed units allowed in a location without pausing
420
+ the rollout.
421
+ """
422
+ return pulumi.get(self, "allowed_count")
423
+
424
+ @allowed_count.setter
425
+ def allowed_count(self, value: Optional[pulumi.Input[_builtins.int]]):
426
+ pulumi.set(self, "allowed_count", value)
427
+
428
+ @_builtins.property
429
+ @pulumi.getter(name="allowedPercentage")
430
+ def allowed_percentage(self) -> Optional[pulumi.Input[_builtins.int]]:
431
+ """
432
+ The maximum percentage of units allowed to fail (0, 100] within a location
433
+ without pausing the rollout.
434
+ """
435
+ return pulumi.get(self, "allowed_percentage")
436
+
437
+ @allowed_percentage.setter
438
+ def allowed_percentage(self, value: Optional[pulumi.Input[_builtins.int]]):
439
+ pulumi.set(self, "allowed_percentage", value)
440
+
441
+
382
442
  if not MYPY:
383
443
  class SaaSLocationArgsDict(TypedDict):
384
444
  name: NotRequired[pulumi.Input[_builtins.str]]
@@ -21,6 +21,7 @@ __all__ = [
21
21
  'ReleaseInputVariableDefault',
22
22
  'ReleaseOutputVariable',
23
23
  'ReleaseReleaseRequirements',
24
+ 'RolloutKindErrorBudget',
24
25
  'SaaSLocation',
25
26
  'UnitKindDependency',
26
27
  'UnitKindInputVariableMapping',
@@ -248,6 +249,60 @@ class ReleaseReleaseRequirements(dict):
248
249
  return pulumi.get(self, "upgradeable_from_releases")
249
250
 
250
251
 
252
+ @pulumi.output_type
253
+ class RolloutKindErrorBudget(dict):
254
+ @staticmethod
255
+ def __key_warning(key: str):
256
+ suggest = None
257
+ if key == "allowedCount":
258
+ suggest = "allowed_count"
259
+ elif key == "allowedPercentage":
260
+ suggest = "allowed_percentage"
261
+
262
+ if suggest:
263
+ pulumi.log.warn(f"Key '{key}' not found in RolloutKindErrorBudget. Access the value via the '{suggest}' property getter instead.")
264
+
265
+ def __getitem__(self, key: str) -> Any:
266
+ RolloutKindErrorBudget.__key_warning(key)
267
+ return super().__getitem__(key)
268
+
269
+ def get(self, key: str, default = None) -> Any:
270
+ RolloutKindErrorBudget.__key_warning(key)
271
+ return super().get(key, default)
272
+
273
+ def __init__(__self__, *,
274
+ allowed_count: Optional[_builtins.int] = None,
275
+ allowed_percentage: Optional[_builtins.int] = None):
276
+ """
277
+ :param _builtins.int allowed_count: The maximum number of failed units allowed in a location without pausing
278
+ the rollout.
279
+ :param _builtins.int allowed_percentage: The maximum percentage of units allowed to fail (0, 100] within a location
280
+ without pausing the rollout.
281
+ """
282
+ if allowed_count is not None:
283
+ pulumi.set(__self__, "allowed_count", allowed_count)
284
+ if allowed_percentage is not None:
285
+ pulumi.set(__self__, "allowed_percentage", allowed_percentage)
286
+
287
+ @_builtins.property
288
+ @pulumi.getter(name="allowedCount")
289
+ def allowed_count(self) -> Optional[_builtins.int]:
290
+ """
291
+ The maximum number of failed units allowed in a location without pausing
292
+ the rollout.
293
+ """
294
+ return pulumi.get(self, "allowed_count")
295
+
296
+ @_builtins.property
297
+ @pulumi.getter(name="allowedPercentage")
298
+ def allowed_percentage(self) -> Optional[_builtins.int]:
299
+ """
300
+ The maximum percentage of units allowed to fail (0, 100] within a location
301
+ without pausing the rollout.
302
+ """
303
+ return pulumi.get(self, "allowed_percentage")
304
+
305
+
251
306
  @pulumi.output_type
252
307
  class SaaSLocation(dict):
253
308
  def __init__(__self__, *,