pulumi-gcp 8.11.0a1734348982__py3-none-any.whl → 8.12.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 +123 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_egress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_ingress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py +6 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py +6 -0
- pulumi_gcp/apigee/app_group.py +7 -7
- pulumi_gcp/applicationintegration/client.py +8 -6
- pulumi_gcp/artifactregistry/_inputs.py +24 -15
- pulumi_gcp/artifactregistry/get_repository_iam_policy.py +12 -4
- pulumi_gcp/artifactregistry/outputs.py +32 -20
- pulumi_gcp/artifactregistry/repository.py +214 -39
- pulumi_gcp/artifactregistry/repository_iam_binding.py +42 -14
- pulumi_gcp/artifactregistry/repository_iam_member.py +42 -14
- pulumi_gcp/artifactregistry/repository_iam_policy.py +42 -14
- pulumi_gcp/assuredworkloads/workload.py +7 -7
- pulumi_gcp/backupdisasterrecovery/__init__.py +2 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +2 -2
- pulumi_gcp/backupdisasterrecovery/backup_vault.py +12 -8
- pulumi_gcp/backupdisasterrecovery/get_backup.py +153 -0
- pulumi_gcp/backupdisasterrecovery/get_backup_vault.py +415 -0
- pulumi_gcp/backupdisasterrecovery/outputs.py +63 -0
- pulumi_gcp/bigquery/app_profile.py +75 -0
- pulumi_gcp/billing/_inputs.py +6 -6
- pulumi_gcp/billing/outputs.py +4 -4
- pulumi_gcp/certificateauthority/_inputs.py +9 -9
- pulumi_gcp/certificateauthority/outputs.py +8 -8
- pulumi_gcp/cloudbuild/_inputs.py +53 -0
- pulumi_gcp/cloudbuild/outputs.py +50 -0
- pulumi_gcp/cloudbuild/worker_pool.py +47 -0
- pulumi_gcp/clouddeploy/_inputs.py +254 -0
- pulumi_gcp/clouddeploy/outputs.py +211 -0
- pulumi_gcp/clouddeploy/target.py +47 -0
- pulumi_gcp/cloudfunctionsv2/_inputs.py +6 -6
- pulumi_gcp/cloudfunctionsv2/outputs.py +8 -8
- pulumi_gcp/cloudrunv2/job.py +4 -4
- pulumi_gcp/cloudrunv2/service.py +4 -4
- pulumi_gcp/composer/get_user_workloads_config_map.py +4 -0
- pulumi_gcp/composer/get_user_workloads_secret.py +4 -0
- pulumi_gcp/composer/user_workloads_config_map.py +14 -0
- pulumi_gcp/composer/user_workloads_secret.py +6 -0
- pulumi_gcp/compute/_inputs.py +566 -25
- pulumi_gcp/compute/disk.py +21 -7
- pulumi_gcp/compute/firewall_policy_rule.py +12 -0
- pulumi_gcp/compute/get_forwarding_rules.py +2 -2
- pulumi_gcp/compute/get_global_forwarding_rule.py +23 -1
- pulumi_gcp/compute/get_instance_group_manager.py +12 -1
- pulumi_gcp/compute/get_network.py +35 -1
- pulumi_gcp/compute/get_region_instance_group_manager.py +12 -1
- pulumi_gcp/compute/get_region_network_endpoint_group.py +12 -1
- pulumi_gcp/compute/global_forwarding_rule.py +142 -2
- pulumi_gcp/compute/instance_group_manager.py +28 -0
- pulumi_gcp/compute/network.py +75 -0
- pulumi_gcp/compute/outputs.py +655 -26
- pulumi_gcp/compute/project_cloud_armor_tier.py +7 -7
- pulumi_gcp/compute/region_health_check.py +28 -0
- pulumi_gcp/compute/region_instance_group_manager.py +28 -0
- pulumi_gcp/compute/region_network_endpoint.py +28 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +70 -2
- pulumi_gcp/compute/subnetwork.py +30 -2
- pulumi_gcp/compute/url_map.py +7 -7
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +201 -3
- pulumi_gcp/container/cluster.py +68 -14
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/outputs.py +249 -3
- pulumi_gcp/dataproc/_inputs.py +209 -1
- pulumi_gcp/dataproc/batch.py +76 -0
- pulumi_gcp/dataproc/outputs.py +169 -3
- pulumi_gcp/diagflow/_inputs.py +3 -3
- pulumi_gcp/diagflow/outputs.py +2 -2
- pulumi_gcp/discoveryengine/search_engine.py +7 -7
- pulumi_gcp/firebase/_inputs.py +99 -0
- pulumi_gcp/firebase/database_instance.py +24 -6
- pulumi_gcp/firebase/hosting_version.py +96 -0
- pulumi_gcp/firebase/outputs.py +59 -0
- pulumi_gcp/firebase/project.py +6 -6
- pulumi_gcp/firebaserules/release.py +76 -0
- pulumi_gcp/firestore/field.py +4 -4
- pulumi_gcp/gemini/__init__.py +15 -0
- pulumi_gcp/gemini/_inputs.py +183 -0
- pulumi_gcp/gemini/code_repository_index.py +659 -0
- pulumi_gcp/gemini/get_repository_group_iam_policy.py +171 -0
- pulumi_gcp/gemini/outputs.py +130 -0
- pulumi_gcp/gemini/repository_group.py +586 -0
- pulumi_gcp/gemini/repository_group_iam_binding.py +604 -0
- pulumi_gcp/gemini/repository_group_iam_member.py +604 -0
- pulumi_gcp/gemini/repository_group_iam_policy.py +443 -0
- pulumi_gcp/gkehub/_inputs.py +30 -10
- pulumi_gcp/gkehub/membership_binding.py +6 -6
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +4 -4
- pulumi_gcp/gkehub/outputs.py +21 -7
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
- pulumi_gcp/iam/__init__.py +1 -0
- pulumi_gcp/iam/_inputs.py +137 -0
- pulumi_gcp/iam/folders_policy_binding.py +16 -0
- pulumi_gcp/iam/organizations_policy_binding.py +16 -0
- pulumi_gcp/iam/outputs.py +99 -0
- pulumi_gcp/iam/principal_access_boundary_policy.py +16 -0
- pulumi_gcp/iam/projects_policy_binding.py +917 -0
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/identityplatform/_inputs.py +6 -6
- pulumi_gcp/identityplatform/config.py +2 -2
- pulumi_gcp/identityplatform/outputs.py +4 -4
- pulumi_gcp/integrationconnectors/_inputs.py +15 -15
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/integrationconnectors/outputs.py +10 -10
- pulumi_gcp/looker/instance.py +35 -14
- pulumi_gcp/monitoring/_inputs.py +13 -6
- pulumi_gcp/monitoring/outputs.py +10 -4
- pulumi_gcp/netapp/_inputs.py +3 -3
- pulumi_gcp/netapp/active_directory.py +7 -7
- pulumi_gcp/netapp/outputs.py +2 -2
- pulumi_gcp/netapp/volume.py +11 -11
- pulumi_gcp/networkconnectivity/_inputs.py +10 -12
- pulumi_gcp/networkconnectivity/outputs.py +6 -8
- pulumi_gcp/networkconnectivity/spoke.py +10 -10
- pulumi_gcp/networksecurity/__init__.py +7 -0
- pulumi_gcp/networksecurity/_inputs.py +2018 -0
- pulumi_gcp/networksecurity/authz_policy.py +1008 -0
- pulumi_gcp/networksecurity/intercept_deployment.py +846 -0
- pulumi_gcp/networksecurity/intercept_deployment_group.py +752 -0
- pulumi_gcp/networksecurity/mirroring_deployment.py +848 -0
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +752 -0
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +737 -0
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +840 -0
- pulumi_gcp/networksecurity/outputs.py +1463 -0
- pulumi_gcp/networkservices/__init__.py +1 -0
- pulumi_gcp/networkservices/authz_extension.py +1080 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +46 -8
- pulumi_gcp/oracledatabase/cloud_exadata_infrastructure.py +42 -4
- pulumi_gcp/oracledatabase/cloud_vm_cluster.py +50 -8
- pulumi_gcp/oracledatabase/get_autonomous_database.py +12 -1
- pulumi_gcp/oracledatabase/get_cloud_exadata_infrastructure.py +12 -1
- pulumi_gcp/oracledatabase/get_cloud_vm_cluster.py +12 -1
- pulumi_gcp/oracledatabase/outputs.py +21 -0
- pulumi_gcp/orgpolicy/_inputs.py +40 -0
- pulumi_gcp/orgpolicy/outputs.py +24 -0
- pulumi_gcp/orgpolicy/policy.py +66 -10
- pulumi_gcp/parallelstore/instance.py +4 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/_inputs.py +435 -3
- pulumi_gcp/redis/cluster.py +287 -16
- pulumi_gcp/redis/outputs.py +304 -2
- pulumi_gcp/serviceaccount/get_account_id_token.py +2 -2
- pulumi_gcp/serviceaccount/get_account_key.py +2 -2
- pulumi_gcp/sql/_inputs.py +3 -3
- pulumi_gcp/sql/database_instance.py +14 -14
- pulumi_gcp/sql/outputs.py +2 -2
- pulumi_gcp/storage/_inputs.py +53 -6
- pulumi_gcp/storage/get_bucket.py +2 -2
- pulumi_gcp/storage/get_bucket_object_content.py +2 -2
- pulumi_gcp/storage/outputs.py +33 -4
- pulumi_gcp/tpu/__init__.py +1 -0
- pulumi_gcp/tpu/_inputs.py +214 -24
- pulumi_gcp/tpu/outputs.py +182 -16
- pulumi_gcp/tpu/v2_queued_resource.py +434 -0
- pulumi_gcp/tpu/v2_vm.py +63 -0
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/ai_index_endpoint.py +2 -2
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/RECORD +168 -147
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.11.0a1734348982.dist-info → pulumi_gcp-8.12.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/cloudrunv2/service.py
CHANGED
@@ -420,7 +420,7 @@ class _ServiceState:
|
|
420
420
|
:param pulumi.Input[str] description: User-provided description of the Service. This field currently has a 512-character limit.
|
421
421
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
422
422
|
:param pulumi.Input[str] etag: A system-generated fingerprint for this version of the resource. May be used to detect modification conflict during updates.
|
423
|
-
:param pulumi.Input[str] expire_time: For a deleted resource, the time after which it will be
|
423
|
+
:param pulumi.Input[str] expire_time: For a deleted resource, the time after which it will be permanently deleted.
|
424
424
|
:param pulumi.Input[str] generation: A number that monotonically increases every time the user modifies the desired state. Please note that unlike v1, this is an int64 value. As with most Google APIs, its JSON representation will be a string instead of an integer.
|
425
425
|
:param pulumi.Input[str] ingress: Provides the ingress settings for this Service. On output, returns the currently observed ingress settings, or
|
426
426
|
INGRESS_TRAFFIC_UNSPECIFIED if no revision is active. Possible values: ["INGRESS_TRAFFIC_ALL",
|
@@ -734,7 +734,7 @@ class _ServiceState:
|
|
734
734
|
@pulumi.getter(name="expireTime")
|
735
735
|
def expire_time(self) -> Optional[pulumi.Input[str]]:
|
736
736
|
"""
|
737
|
-
For a deleted resource, the time after which it will be
|
737
|
+
For a deleted resource, the time after which it will be permanently deleted.
|
738
738
|
"""
|
739
739
|
return pulumi.get(self, "expire_time")
|
740
740
|
|
@@ -2265,7 +2265,7 @@ class Service(pulumi.CustomResource):
|
|
2265
2265
|
:param pulumi.Input[str] description: User-provided description of the Service. This field currently has a 512-character limit.
|
2266
2266
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
2267
2267
|
:param pulumi.Input[str] etag: A system-generated fingerprint for this version of the resource. May be used to detect modification conflict during updates.
|
2268
|
-
:param pulumi.Input[str] expire_time: For a deleted resource, the time after which it will be
|
2268
|
+
:param pulumi.Input[str] expire_time: For a deleted resource, the time after which it will be permanently deleted.
|
2269
2269
|
:param pulumi.Input[str] generation: A number that monotonically increases every time the user modifies the desired state. Please note that unlike v1, this is an int64 value. As with most Google APIs, its JSON representation will be a string instead of an integer.
|
2270
2270
|
:param pulumi.Input[str] ingress: Provides the ingress settings for this Service. On output, returns the currently observed ingress settings, or
|
2271
2271
|
INGRESS_TRAFFIC_UNSPECIFIED if no revision is active. Possible values: ["INGRESS_TRAFFIC_ALL",
|
@@ -2485,7 +2485,7 @@ class Service(pulumi.CustomResource):
|
|
2485
2485
|
@pulumi.getter(name="expireTime")
|
2486
2486
|
def expire_time(self) -> pulumi.Output[str]:
|
2487
2487
|
"""
|
2488
|
-
For a deleted resource, the time after which it will be
|
2488
|
+
For a deleted resource, the time after which it will be permanently deleted.
|
2489
2489
|
"""
|
2490
2490
|
return pulumi.get(self, "expire_time")
|
2491
2491
|
|
@@ -104,6 +104,8 @@ def get_user_workloads_config_map(environment: Optional[str] = None,
|
|
104
104
|
region: Optional[str] = None,
|
105
105
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetUserWorkloadsConfigMapResult:
|
106
106
|
"""
|
107
|
+
Provides access to Kubernetes ConfigMap configuration for a given project, region and Composer Environment.
|
108
|
+
|
107
109
|
## Example Usage
|
108
110
|
|
109
111
|
```python
|
@@ -157,6 +159,8 @@ def get_user_workloads_config_map_output(environment: Optional[pulumi.Input[str]
|
|
157
159
|
region: Optional[pulumi.Input[Optional[str]]] = None,
|
158
160
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetUserWorkloadsConfigMapResult]:
|
159
161
|
"""
|
162
|
+
Provides access to Kubernetes ConfigMap configuration for a given project, region and Composer Environment.
|
163
|
+
|
160
164
|
## Example Usage
|
161
165
|
|
162
166
|
```python
|
@@ -100,6 +100,8 @@ def get_user_workloads_secret(environment: Optional[str] = None,
|
|
100
100
|
region: Optional[str] = None,
|
101
101
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetUserWorkloadsSecretResult:
|
102
102
|
"""
|
103
|
+
Provides access to Kubernetes Secret configuration for a given project, region and Composer Environment.
|
104
|
+
|
103
105
|
## Example Usage
|
104
106
|
|
105
107
|
```python
|
@@ -154,6 +156,8 @@ def get_user_workloads_secret_output(environment: Optional[pulumi.Input[str]] =
|
|
154
156
|
region: Optional[pulumi.Input[Optional[str]]] = None,
|
155
157
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetUserWorkloadsSecretResult]:
|
156
158
|
"""
|
159
|
+
Provides access to Kubernetes Secret configuration for a given project, region and Composer Environment.
|
160
|
+
|
157
161
|
## Example Usage
|
158
162
|
|
159
163
|
```python
|
@@ -223,6 +223,13 @@ class UserWorkloadsConfigMap(pulumi.CustomResource):
|
|
223
223
|
region: Optional[pulumi.Input[str]] = None,
|
224
224
|
__props__=None):
|
225
225
|
"""
|
226
|
+
User workloads ConfigMap used by Airflow tasks that run with Kubernetes Executor or KubernetesPodOperator.
|
227
|
+
Intended for Composer 3 Environments.
|
228
|
+
|
229
|
+
To get more information about UserWorkloadsConfigMap, see:
|
230
|
+
|
231
|
+
* [API documentation](https://cloud.google.com/composer/docs/reference/rest/v1/projects.locations.environments.userWorkloadsConfigMaps)
|
232
|
+
|
226
233
|
## Example Usage
|
227
234
|
|
228
235
|
### Composer User Workloads Config Map Basic
|
@@ -298,6 +305,13 @@ class UserWorkloadsConfigMap(pulumi.CustomResource):
|
|
298
305
|
args: UserWorkloadsConfigMapArgs,
|
299
306
|
opts: Optional[pulumi.ResourceOptions] = None):
|
300
307
|
"""
|
308
|
+
User workloads ConfigMap used by Airflow tasks that run with Kubernetes Executor or KubernetesPodOperator.
|
309
|
+
Intended for Composer 3 Environments.
|
310
|
+
|
311
|
+
To get more information about UserWorkloadsConfigMap, see:
|
312
|
+
|
313
|
+
* [API documentation](https://cloud.google.com/composer/docs/reference/rest/v1/projects.locations.environments.userWorkloadsConfigMaps)
|
314
|
+
|
301
315
|
## Example Usage
|
302
316
|
|
303
317
|
### Composer User Workloads Config Map Basic
|
@@ -207,6 +207,9 @@ class UserWorkloadsSecret(pulumi.CustomResource):
|
|
207
207
|
region: Optional[pulumi.Input[str]] = None,
|
208
208
|
__props__=None):
|
209
209
|
"""
|
210
|
+
User workloads Secret used by Airflow tasks that run with Kubernetes Executor or KubernetesPodOperator.
|
211
|
+
Intended for Composer 3 Environments.
|
212
|
+
|
210
213
|
## Example Usage
|
211
214
|
|
212
215
|
```python
|
@@ -274,6 +277,9 @@ class UserWorkloadsSecret(pulumi.CustomResource):
|
|
274
277
|
args: UserWorkloadsSecretArgs,
|
275
278
|
opts: Optional[pulumi.ResourceOptions] = None):
|
276
279
|
"""
|
280
|
+
User workloads Secret used by Airflow tasks that run with Kubernetes Executor or KubernetesPodOperator.
|
281
|
+
Intended for Composer 3 Environments.
|
282
|
+
|
277
283
|
## Example Usage
|
278
284
|
|
279
285
|
```python
|