pulumi-gcp 7.5.0a1704347630__py3-none-any.whl → 7.6.0__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 +99 -0
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +40 -0
- pulumi_gcp/bigqueryanalyticshub/listing.py +117 -3
- pulumi_gcp/bigqueryanalyticshub/outputs.py +49 -0
- pulumi_gcp/clouddeploy/__init__.py +1 -0
- pulumi_gcp/clouddeploy/_inputs.py +239 -0
- pulumi_gcp/clouddeploy/automation.py +1103 -0
- pulumi_gcp/clouddeploy/outputs.py +246 -0
- pulumi_gcp/clouddomains/__init__.py +10 -0
- pulumi_gcp/clouddomains/_inputs.py +1098 -0
- pulumi_gcp/clouddomains/outputs.py +1156 -0
- pulumi_gcp/clouddomains/registration.py +1068 -0
- pulumi_gcp/cloudrunv2/job.py +4 -4
- pulumi_gcp/composer/_inputs.py +79 -1
- pulumi_gcp/composer/outputs.py +131 -4
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +180 -0
- pulumi_gcp/compute/get_instance_template.py +11 -1
- pulumi_gcp/compute/get_region_instance_template.py +11 -1
- pulumi_gcp/compute/get_reservation.py +212 -0
- pulumi_gcp/compute/instance_template.py +47 -0
- pulumi_gcp/compute/network_firewall_policy.py +20 -22
- pulumi_gcp/compute/outputs.py +325 -0
- pulumi_gcp/compute/region_instance_template.py +47 -0
- pulumi_gcp/compute/region_network_firewall_policy.py +31 -35
- pulumi_gcp/compute/router_peer.py +54 -0
- pulumi_gcp/compute/vpn_tunnel.py +8 -4
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +23 -0
- pulumi_gcp/container/aws_node_pool.py +7 -7
- pulumi_gcp/container/cluster.py +68 -14
- pulumi_gcp/container/get_cluster.py +11 -1
- pulumi_gcp/container/outputs.py +49 -0
- pulumi_gcp/dataflow/pipeline.py +1 -1
- pulumi_gcp/dataproc/_inputs.py +413 -39
- pulumi_gcp/dataproc/metastore_service.py +63 -0
- pulumi_gcp/dataproc/outputs.py +461 -39
- pulumi_gcp/dns/__init__.py +1 -0
- pulumi_gcp/dns/_inputs.py +94 -0
- pulumi_gcp/dns/get_managed_zones.py +89 -0
- pulumi_gcp/dns/outputs.py +62 -0
- pulumi_gcp/edgecontainer/vpn_connection.py +10 -10
- pulumi_gcp/filestore/__init__.py +1 -0
- pulumi_gcp/filestore/get_instance.py +258 -0
- pulumi_gcp/filestore/instance.py +7 -7
- pulumi_gcp/filestore/outputs.py +126 -0
- pulumi_gcp/gkebackup/backup_plan.py +24 -8
- pulumi_gcp/gkebackup/restore_plan.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_binding.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_member.py +36 -12
- pulumi_gcp/gkebackup/restore_plan_iam_policy.py +36 -12
- pulumi_gcp/gkehub/_inputs.py +502 -2
- pulumi_gcp/gkehub/feature.py +34 -0
- pulumi_gcp/gkehub/feature_membership.py +177 -0
- pulumi_gcp/gkehub/membership.py +18 -6
- pulumi_gcp/gkehub/outputs.py +502 -2
- pulumi_gcp/gkeonprem/_inputs.py +21 -25
- pulumi_gcp/gkeonprem/outputs.py +34 -25
- pulumi_gcp/gkeonprem/v_mware_node_pool.py +34 -0
- pulumi_gcp/integrationconnectors/__init__.py +1 -0
- pulumi_gcp/integrationconnectors/endpoint_attachment.py +669 -0
- pulumi_gcp/kms/_inputs.py +42 -0
- pulumi_gcp/kms/crypto_key.py +36 -0
- pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
- pulumi_gcp/kms/outputs.py +62 -0
- pulumi_gcp/logging/__init__.py +2 -0
- pulumi_gcp/logging/folder_settings.py +490 -0
- pulumi_gcp/logging/folder_sink.py +21 -21
- pulumi_gcp/logging/organization_settings.py +484 -0
- pulumi_gcp/logging/organization_sink.py +21 -21
- pulumi_gcp/logging/project_sink.py +7 -14
- pulumi_gcp/netapp/__init__.py +3 -0
- pulumi_gcp/netapp/active_directory.py +1413 -0
- pulumi_gcp/netapp/backup_vault.py +593 -0
- pulumi_gcp/netapp/kmsconfig.py +649 -0
- pulumi_gcp/orgpolicy/policy.py +28 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +29 -37
- pulumi_gcp/serviceaccount/account.py +47 -0
- pulumi_gcp/servicenetworking/connection.py +55 -1
- pulumi_gcp/sql/database_instance.py +2 -2
- pulumi_gcp/sql/ssl_cert.py +1 -1
- pulumi_gcp/sql/user.py +7 -7
- pulumi_gcp/storage/transfer_job.py +24 -5
- pulumi_gcp/vertex/__init__.py +3 -0
- pulumi_gcp/vertex/_inputs.py +339 -0
- pulumi_gcp/vertex/ai_feature_group.py +710 -0
- pulumi_gcp/vertex/ai_feature_online_store.py +962 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +804 -0
- pulumi_gcp/vertex/outputs.py +406 -0
- pulumi_gcp/vmwareengine/__init__.py +2 -0
- pulumi_gcp/vmwareengine/_inputs.py +84 -0
- pulumi_gcp/vmwareengine/external_access_rule.py +947 -0
- pulumi_gcp/vmwareengine/get_external_access_rule.py +245 -0
- pulumi_gcp/vmwareengine/outputs.py +146 -0
- pulumi_gcp/workflows/workflow.py +7 -7
- {pulumi_gcp-7.5.0a1704347630.dist-info → pulumi_gcp-7.6.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.5.0a1704347630.dist-info → pulumi_gcp-7.6.0.dist-info}/RECORD +101 -82
- {pulumi_gcp-7.5.0a1704347630.dist-info → pulumi_gcp-7.6.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.5.0a1704347630.dist-info → pulumi_gcp-7.6.0.dist-info}/top_level.txt +0 -0
@@ -28,8 +28,7 @@ class ProjectSinkArgs:
|
|
28
28
|
unique_writer_identity: Optional[pulumi.Input[bool]] = None):
|
29
29
|
"""
|
30
30
|
The set of arguments for constructing a ProjectSink resource.
|
31
|
-
:param pulumi.Input[str] destination: The destination of the sink (or, in other words, where logs are written to). Can be a
|
32
|
-
Cloud Storage bucket, a PubSub topic, a BigQuery dataset or a Cloud Logging bucket . Examples:
|
31
|
+
:param pulumi.Input[str] destination: The destination of the sink (or, in other words, where logs are written to). Can be a Cloud Storage bucket, a PubSub topic, a BigQuery dataset, a Cloud Logging bucket, or a Google Cloud project. Examples:
|
33
32
|
|
34
33
|
- `storage.googleapis.com/[GCS_BUCKET]`
|
35
34
|
- `bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET]`
|
@@ -80,8 +79,7 @@ class ProjectSinkArgs:
|
|
80
79
|
@pulumi.getter
|
81
80
|
def destination(self) -> pulumi.Input[str]:
|
82
81
|
"""
|
83
|
-
The destination of the sink (or, in other words, where logs are written to). Can be a
|
84
|
-
Cloud Storage bucket, a PubSub topic, a BigQuery dataset or a Cloud Logging bucket . Examples:
|
82
|
+
The destination of the sink (or, in other words, where logs are written to). Can be a Cloud Storage bucket, a PubSub topic, a BigQuery dataset, a Cloud Logging bucket, or a Google Cloud project. Examples:
|
85
83
|
|
86
84
|
- `storage.googleapis.com/[GCS_BUCKET]`
|
87
85
|
- `bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET]`
|
@@ -236,8 +234,7 @@ class _ProjectSinkState:
|
|
236
234
|
routing logs to a destination outside this sink's project. If not specified, a Logging service account
|
237
235
|
will automatically be generated.
|
238
236
|
:param pulumi.Input[str] description: A description of this sink. The maximum length of the description is 8000 characters.
|
239
|
-
:param pulumi.Input[str] destination: The destination of the sink (or, in other words, where logs are written to). Can be a
|
240
|
-
Cloud Storage bucket, a PubSub topic, a BigQuery dataset or a Cloud Logging bucket . Examples:
|
237
|
+
:param pulumi.Input[str] destination: The destination of the sink (or, in other words, where logs are written to). Can be a Cloud Storage bucket, a PubSub topic, a BigQuery dataset, a Cloud Logging bucket, or a Google Cloud project. Examples:
|
241
238
|
|
242
239
|
- `storage.googleapis.com/[GCS_BUCKET]`
|
243
240
|
- `bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET]`
|
@@ -326,8 +323,7 @@ class _ProjectSinkState:
|
|
326
323
|
@pulumi.getter
|
327
324
|
def destination(self) -> Optional[pulumi.Input[str]]:
|
328
325
|
"""
|
329
|
-
The destination of the sink (or, in other words, where logs are written to). Can be a
|
330
|
-
Cloud Storage bucket, a PubSub topic, a BigQuery dataset or a Cloud Logging bucket . Examples:
|
326
|
+
The destination of the sink (or, in other words, where logs are written to). Can be a Cloud Storage bucket, a PubSub topic, a BigQuery dataset, a Cloud Logging bucket, or a Google Cloud project. Examples:
|
331
327
|
|
332
328
|
- `storage.googleapis.com/[GCS_BUCKET]`
|
333
329
|
- `bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET]`
|
@@ -475,8 +471,7 @@ class ProjectSink(pulumi.CustomResource):
|
|
475
471
|
routing logs to a destination outside this sink's project. If not specified, a Logging service account
|
476
472
|
will automatically be generated.
|
477
473
|
:param pulumi.Input[str] description: A description of this sink. The maximum length of the description is 8000 characters.
|
478
|
-
:param pulumi.Input[str] destination: The destination of the sink (or, in other words, where logs are written to). Can be a
|
479
|
-
Cloud Storage bucket, a PubSub topic, a BigQuery dataset or a Cloud Logging bucket . Examples:
|
474
|
+
:param pulumi.Input[str] destination: The destination of the sink (or, in other words, where logs are written to). Can be a Cloud Storage bucket, a PubSub topic, a BigQuery dataset, a Cloud Logging bucket, or a Google Cloud project. Examples:
|
480
475
|
|
481
476
|
- `storage.googleapis.com/[GCS_BUCKET]`
|
482
477
|
- `bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET]`
|
@@ -601,8 +596,7 @@ class ProjectSink(pulumi.CustomResource):
|
|
601
596
|
routing logs to a destination outside this sink's project. If not specified, a Logging service account
|
602
597
|
will automatically be generated.
|
603
598
|
:param pulumi.Input[str] description: A description of this sink. The maximum length of the description is 8000 characters.
|
604
|
-
:param pulumi.Input[str] destination: The destination of the sink (or, in other words, where logs are written to). Can be a
|
605
|
-
Cloud Storage bucket, a PubSub topic, a BigQuery dataset or a Cloud Logging bucket . Examples:
|
599
|
+
:param pulumi.Input[str] destination: The destination of the sink (or, in other words, where logs are written to). Can be a Cloud Storage bucket, a PubSub topic, a BigQuery dataset, a Cloud Logging bucket, or a Google Cloud project. Examples:
|
606
600
|
|
607
601
|
- `storage.googleapis.com/[GCS_BUCKET]`
|
608
602
|
- `bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET]`
|
@@ -673,8 +667,7 @@ class ProjectSink(pulumi.CustomResource):
|
|
673
667
|
@pulumi.getter
|
674
668
|
def destination(self) -> pulumi.Output[str]:
|
675
669
|
"""
|
676
|
-
The destination of the sink (or, in other words, where logs are written to). Can be a
|
677
|
-
Cloud Storage bucket, a PubSub topic, a BigQuery dataset or a Cloud Logging bucket . Examples:
|
670
|
+
The destination of the sink (or, in other words, where logs are written to). Can be a Cloud Storage bucket, a PubSub topic, a BigQuery dataset, a Cloud Logging bucket, or a Google Cloud project. Examples:
|
678
671
|
|
679
672
|
- `storage.googleapis.com/[GCS_BUCKET]`
|
680
673
|
- `bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET]`
|