pulumi-gcp 9.2.0a1759043191__py3-none-any.whl → 9.3.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.
- pulumi_gcp/__init__.py +32 -0
- pulumi_gcp/apigee/__init__.py +1 -0
- pulumi_gcp/apigee/api_deployment.py +372 -0
- pulumi_gcp/apihub/plugin.py +1 -1
- pulumi_gcp/artifactregistry/__init__.py +2 -0
- pulumi_gcp/artifactregistry/get_maven_artifacts.py +164 -0
- pulumi_gcp/artifactregistry/get_npm_packages.py +164 -0
- pulumi_gcp/artifactregistry/outputs.py +165 -0
- pulumi_gcp/cloudrunv2/_inputs.py +823 -15
- pulumi_gcp/cloudrunv2/outputs.py +1749 -743
- pulumi_gcp/cloudrunv2/worker_pool.py +110 -0
- pulumi_gcp/compute/_inputs.py +28 -0
- pulumi_gcp/compute/outputs.py +20 -1
- pulumi_gcp/compute/vpn_tunnel.py +97 -23
- pulumi_gcp/compute/wire_group.py +2 -0
- pulumi_gcp/dataloss/_inputs.py +970 -30
- pulumi_gcp/dataloss/outputs.py +850 -20
- pulumi_gcp/dataloss/prevention_discovery_config.py +54 -0
- pulumi_gcp/diagflow/_inputs.py +66 -0
- pulumi_gcp/diagflow/conversation_profile.py +84 -0
- pulumi_gcp/diagflow/outputs.py +57 -0
- pulumi_gcp/discoveryengine/__init__.py +1 -0
- pulumi_gcp/discoveryengine/_inputs.py +187 -0
- pulumi_gcp/discoveryengine/data_connector.py +1368 -0
- pulumi_gcp/discoveryengine/outputs.py +135 -0
- pulumi_gcp/discoveryengine/search_engine.py +47 -0
- pulumi_gcp/gkebackup/_inputs.py +111 -0
- pulumi_gcp/gkebackup/backup_plan.py +72 -0
- pulumi_gcp/gkebackup/outputs.py +84 -0
- pulumi_gcp/kms/__init__.py +1 -0
- pulumi_gcp/kms/_inputs.py +43 -0
- pulumi_gcp/kms/organization_kaj_policy_config.py +290 -0
- pulumi_gcp/kms/outputs.py +43 -0
- pulumi_gcp/logging/metric.py +2 -2
- pulumi_gcp/looker/instance.py +51 -0
- pulumi_gcp/managedkafka/connect_cluster.py +20 -82
- pulumi_gcp/managedkafka/connector.py +24 -94
- pulumi_gcp/netapp/_inputs.py +28 -5
- pulumi_gcp/netapp/outputs.py +19 -3
- pulumi_gcp/netapp/storage_pool.py +56 -0
- pulumi_gcp/netapp/volume.py +28 -0
- pulumi_gcp/networkconnectivity/spoke.py +14 -14
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +211 -23
- pulumi_gcp/oracledatabase/odb_network.py +101 -2
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/privilegedaccessmanager/_inputs.py +27 -4
- pulumi_gcp/privilegedaccessmanager/outputs.py +31 -6
- pulumi_gcp/pubsub/get_subscription.py +12 -1
- pulumi_gcp/pubsub/get_topic.py +15 -4
- pulumi_gcp/pubsub/subscription.py +153 -7
- pulumi_gcp/pubsub/topic.py +145 -3
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/saasruntime/__init__.py +1 -0
- pulumi_gcp/saasruntime/_inputs.py +60 -0
- pulumi_gcp/saasruntime/outputs.py +55 -0
- pulumi_gcp/saasruntime/rollout_kind.py +1086 -0
- pulumi_gcp/sql/_inputs.py +122 -3
- pulumi_gcp/sql/database_instance.py +47 -0
- pulumi_gcp/sql/get_database_instance.py +12 -1
- pulumi_gcp/sql/outputs.py +233 -2
- pulumi_gcp/storage/bucket.py +52 -24
- pulumi_gcp/storage/get_insights_dataset_config.py +12 -1
- pulumi_gcp/storage/insights_dataset_config.py +49 -0
- pulumi_gcp/storage/insights_report_config.py +47 -0
- pulumi_gcp/vertex/_inputs.py +339 -1
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_endpoint_with_model_garden_deployment.py +102 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/ai_index.py +74 -2
- pulumi_gcp/vertex/ai_index_endpoint.py +54 -0
- pulumi_gcp/vertex/get_ai_index.py +12 -1
- pulumi_gcp/vertex/outputs.py +303 -1
- {pulumi_gcp-9.2.0a1759043191.dist-info → pulumi_gcp-9.3.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-9.2.0a1759043191.dist-info → pulumi_gcp-9.3.0.dist-info}/RECORD +76 -70
- {pulumi_gcp-9.2.0a1759043191.dist-info → pulumi_gcp-9.3.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-9.2.0a1759043191.dist-info → pulumi_gcp-9.3.0.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__, *,
|