pulumi-gcp 7.8.0a1706829616__py3-none-any.whl → 7.8.0a1706905467__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- pulumi_gcp/__init__.py +30 -0
- pulumi_gcp/artifactregistry/repository.py +26 -28
- pulumi_gcp/cloudrun/_inputs.py +87 -4
- pulumi_gcp/cloudrun/outputs.py +152 -4
- pulumi_gcp/composer/_inputs.py +63 -0
- pulumi_gcp/composer/outputs.py +136 -0
- pulumi_gcp/compute/_inputs.py +8 -18
- pulumi_gcp/compute/backend_service.py +28 -0
- pulumi_gcp/compute/outputs.py +10 -20
- pulumi_gcp/compute/region_backend_service.py +30 -0
- pulumi_gcp/config/__init__.pyi +4 -0
- pulumi_gcp/config/vars.py +8 -0
- pulumi_gcp/discoveryengine/__init__.py +8 -0
- pulumi_gcp/discoveryengine/data_store.py +734 -0
- pulumi_gcp/eventarc/_inputs.py +2 -2
- pulumi_gcp/eventarc/outputs.py +2 -2
- pulumi_gcp/firebase/_inputs.py +4 -2
- pulumi_gcp/firebase/extensions_instance.py +6 -8
- pulumi_gcp/firebase/outputs.py +4 -2
- pulumi_gcp/firestore/backup_schedule.py +36 -12
- pulumi_gcp/firestore/database.py +0 -8
- pulumi_gcp/firestore/document.py +0 -68
- pulumi_gcp/firestore/field.py +22 -102
- pulumi_gcp/firestore/index.py +4 -42
- pulumi_gcp/gkehub/feature.py +2 -2
- pulumi_gcp/provider.py +40 -0
- pulumi_gcp/pubsub/_inputs.py +26 -4
- pulumi_gcp/pubsub/outputs.py +45 -8
- pulumi_gcp/pubsub/subscription.py +82 -0
- pulumi_gcp/securityposture/__init__.py +11 -0
- pulumi_gcp/securityposture/_inputs.py +1364 -0
- pulumi_gcp/securityposture/outputs.py +1372 -0
- pulumi_gcp/securityposture/posture.py +828 -0
- pulumi_gcp/securityposture/posture_deployment.py +872 -0
- pulumi_gcp/vertex/_inputs.py +156 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +259 -3
- pulumi_gcp/vertex/outputs.py +170 -0
- pulumi_gcp/workflows/workflow.py +75 -7
- pulumi_gcp/workstations/_inputs.py +38 -0
- pulumi_gcp/workstations/outputs.py +30 -0
- pulumi_gcp/workstations/workstation_config.py +54 -0
- {pulumi_gcp-7.8.0a1706829616.dist-info → pulumi_gcp-7.8.0a1706905467.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.8.0a1706829616.dist-info → pulumi_gcp-7.8.0a1706905467.dist-info}/RECORD +45 -38
- {pulumi_gcp-7.8.0a1706829616.dist-info → pulumi_gcp-7.8.0a1706905467.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.8.0a1706829616.dist-info → pulumi_gcp-7.8.0a1706905467.dist-info}/top_level.txt +0 -0
pulumi_gcp/config/__init__.pyi
CHANGED
@@ -146,6 +146,8 @@ dialogflowCxCustomEndpoint: Optional[str]
|
|
146
146
|
|
147
147
|
disableGooglePartnerName: Optional[bool]
|
148
148
|
|
149
|
+
discoveryEngineCustomEndpoint: Optional[str]
|
150
|
+
|
149
151
|
dnsCustomEndpoint: Optional[str]
|
150
152
|
|
151
153
|
documentAiCustomEndpoint: Optional[str]
|
@@ -280,6 +282,8 @@ securityCenterCustomEndpoint: Optional[str]
|
|
280
282
|
|
281
283
|
securityScannerCustomEndpoint: Optional[str]
|
282
284
|
|
285
|
+
securitypostureCustomEndpoint: Optional[str]
|
286
|
+
|
283
287
|
serviceDirectoryCustomEndpoint: Optional[str]
|
284
288
|
|
285
289
|
serviceManagementCustomEndpoint: Optional[str]
|
pulumi_gcp/config/vars.py
CHANGED
@@ -288,6 +288,10 @@ class _ExportableConfig(types.ModuleType):
|
|
288
288
|
def disable_google_partner_name(self) -> Optional[bool]:
|
289
289
|
return __config__.get_bool('disableGooglePartnerName')
|
290
290
|
|
291
|
+
@property
|
292
|
+
def discovery_engine_custom_endpoint(self) -> Optional[str]:
|
293
|
+
return __config__.get('discoveryEngineCustomEndpoint')
|
294
|
+
|
291
295
|
@property
|
292
296
|
def dns_custom_endpoint(self) -> Optional[str]:
|
293
297
|
return __config__.get('dnsCustomEndpoint')
|
@@ -556,6 +560,10 @@ class _ExportableConfig(types.ModuleType):
|
|
556
560
|
def security_scanner_custom_endpoint(self) -> Optional[str]:
|
557
561
|
return __config__.get('securityScannerCustomEndpoint')
|
558
562
|
|
563
|
+
@property
|
564
|
+
def securityposture_custom_endpoint(self) -> Optional[str]:
|
565
|
+
return __config__.get('securitypostureCustomEndpoint')
|
566
|
+
|
559
567
|
@property
|
560
568
|
def service_directory_custom_endpoint(self) -> Optional[str]:
|
561
569
|
return __config__.get('serviceDirectoryCustomEndpoint')
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
from .. import _utilities
|
6
|
+
import typing
|
7
|
+
# Export this package's modules as members:
|
8
|
+
from .data_store import *
|