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
@@ -58,6 +58,7 @@ class MetastoreServiceArgs:
|
|
58
58
|
Maintenance window is not needed for services with the `SPANNER` database type.
|
59
59
|
Structure is documented below.
|
60
60
|
:param pulumi.Input['MetastoreServiceMetadataIntegrationArgs'] metadata_integration: The setting that defines how metastore metadata should be integrated with external services and systems.
|
61
|
+
Structure is documented below.
|
61
62
|
:param pulumi.Input[str] network: The relative resource name of the VPC network on which the instance can be accessed. It is specified in the following form:
|
62
63
|
"projects/{projectNumber}/global/networks/{network_id}".
|
63
64
|
:param pulumi.Input['MetastoreServiceNetworkConfigArgs'] network_config: The configuration specifying the network settings for the Dataproc Metastore service.
|
@@ -212,6 +213,7 @@ class MetastoreServiceArgs:
|
|
212
213
|
def metadata_integration(self) -> Optional[pulumi.Input['MetastoreServiceMetadataIntegrationArgs']]:
|
213
214
|
"""
|
214
215
|
The setting that defines how metastore metadata should be integrated with external services and systems.
|
216
|
+
Structure is documented below.
|
215
217
|
"""
|
216
218
|
return pulumi.get(self, "metadata_integration")
|
217
219
|
|
@@ -375,6 +377,7 @@ class _MetastoreServiceState:
|
|
375
377
|
Maintenance window is not needed for services with the `SPANNER` database type.
|
376
378
|
Structure is documented below.
|
377
379
|
:param pulumi.Input['MetastoreServiceMetadataIntegrationArgs'] metadata_integration: The setting that defines how metastore metadata should be integrated with external services and systems.
|
380
|
+
Structure is documented below.
|
378
381
|
:param pulumi.Input[str] name: The relative resource name of the metastore service.
|
379
382
|
:param pulumi.Input[str] network: The relative resource name of the VPC network on which the instance can be accessed. It is specified in the following form:
|
380
383
|
"projects/{projectNumber}/global/networks/{network_id}".
|
@@ -578,6 +581,7 @@ class _MetastoreServiceState:
|
|
578
581
|
def metadata_integration(self) -> Optional[pulumi.Input['MetastoreServiceMetadataIntegrationArgs']]:
|
579
582
|
"""
|
580
583
|
The setting that defines how metastore metadata should be integrated with external services and systems.
|
584
|
+
Structure is documented below.
|
581
585
|
"""
|
582
586
|
return pulumi.get(self, "metadata_integration")
|
583
587
|
|
@@ -868,6 +872,34 @@ class MetastoreService(pulumi.CustomResource):
|
|
868
872
|
)],
|
869
873
|
))
|
870
874
|
```
|
875
|
+
### Dataproc Metastore Service Private Service Connect Custom Routes
|
876
|
+
|
877
|
+
```python
|
878
|
+
import pulumi
|
879
|
+
import pulumi_gcp as gcp
|
880
|
+
|
881
|
+
net = gcp.compute.Network("net", auto_create_subnetworks=False,
|
882
|
+
opts=pulumi.ResourceOptions(provider=google_beta))
|
883
|
+
subnet = gcp.compute.Subnetwork("subnet",
|
884
|
+
region="us-central1",
|
885
|
+
network=net.id,
|
886
|
+
ip_cidr_range="10.0.0.0/22",
|
887
|
+
private_ip_google_access=True,
|
888
|
+
opts=pulumi.ResourceOptions(provider=google_beta))
|
889
|
+
default = gcp.dataproc.MetastoreService("default",
|
890
|
+
service_id="metastore-srv",
|
891
|
+
location="us-central1",
|
892
|
+
hive_metastore_config=gcp.dataproc.MetastoreServiceHiveMetastoreConfigArgs(
|
893
|
+
version="3.1.2",
|
894
|
+
),
|
895
|
+
network_config=gcp.dataproc.MetastoreServiceNetworkConfigArgs(
|
896
|
+
consumers=[gcp.dataproc.MetastoreServiceNetworkConfigConsumerArgs(
|
897
|
+
subnetwork=subnet.id,
|
898
|
+
)],
|
899
|
+
custom_routes_enabled=True,
|
900
|
+
),
|
901
|
+
opts=pulumi.ResourceOptions(provider=google_beta))
|
902
|
+
```
|
871
903
|
### Dataproc Metastore Service Dpms2
|
872
904
|
|
873
905
|
```python
|
@@ -947,6 +979,7 @@ class MetastoreService(pulumi.CustomResource):
|
|
947
979
|
Maintenance window is not needed for services with the `SPANNER` database type.
|
948
980
|
Structure is documented below.
|
949
981
|
:param pulumi.Input[pulumi.InputType['MetastoreServiceMetadataIntegrationArgs']] metadata_integration: The setting that defines how metastore metadata should be integrated with external services and systems.
|
982
|
+
Structure is documented below.
|
950
983
|
:param pulumi.Input[str] network: The relative resource name of the VPC network on which the instance can be accessed. It is specified in the following form:
|
951
984
|
"projects/{projectNumber}/global/networks/{network_id}".
|
952
985
|
:param pulumi.Input[pulumi.InputType['MetastoreServiceNetworkConfigArgs']] network_config: The configuration specifying the network settings for the Dataproc Metastore service.
|
@@ -1054,6 +1087,34 @@ class MetastoreService(pulumi.CustomResource):
|
|
1054
1087
|
)],
|
1055
1088
|
))
|
1056
1089
|
```
|
1090
|
+
### Dataproc Metastore Service Private Service Connect Custom Routes
|
1091
|
+
|
1092
|
+
```python
|
1093
|
+
import pulumi
|
1094
|
+
import pulumi_gcp as gcp
|
1095
|
+
|
1096
|
+
net = gcp.compute.Network("net", auto_create_subnetworks=False,
|
1097
|
+
opts=pulumi.ResourceOptions(provider=google_beta))
|
1098
|
+
subnet = gcp.compute.Subnetwork("subnet",
|
1099
|
+
region="us-central1",
|
1100
|
+
network=net.id,
|
1101
|
+
ip_cidr_range="10.0.0.0/22",
|
1102
|
+
private_ip_google_access=True,
|
1103
|
+
opts=pulumi.ResourceOptions(provider=google_beta))
|
1104
|
+
default = gcp.dataproc.MetastoreService("default",
|
1105
|
+
service_id="metastore-srv",
|
1106
|
+
location="us-central1",
|
1107
|
+
hive_metastore_config=gcp.dataproc.MetastoreServiceHiveMetastoreConfigArgs(
|
1108
|
+
version="3.1.2",
|
1109
|
+
),
|
1110
|
+
network_config=gcp.dataproc.MetastoreServiceNetworkConfigArgs(
|
1111
|
+
consumers=[gcp.dataproc.MetastoreServiceNetworkConfigConsumerArgs(
|
1112
|
+
subnetwork=subnet.id,
|
1113
|
+
)],
|
1114
|
+
custom_routes_enabled=True,
|
1115
|
+
),
|
1116
|
+
opts=pulumi.ResourceOptions(provider=google_beta))
|
1117
|
+
```
|
1057
1118
|
### Dataproc Metastore Service Dpms2
|
1058
1119
|
|
1059
1120
|
```python
|
@@ -1244,6 +1305,7 @@ class MetastoreService(pulumi.CustomResource):
|
|
1244
1305
|
Maintenance window is not needed for services with the `SPANNER` database type.
|
1245
1306
|
Structure is documented below.
|
1246
1307
|
:param pulumi.Input[pulumi.InputType['MetastoreServiceMetadataIntegrationArgs']] metadata_integration: The setting that defines how metastore metadata should be integrated with external services and systems.
|
1308
|
+
Structure is documented below.
|
1247
1309
|
:param pulumi.Input[str] name: The relative resource name of the metastore service.
|
1248
1310
|
:param pulumi.Input[str] network: The relative resource name of the VPC network on which the instance can be accessed. It is specified in the following form:
|
1249
1311
|
"projects/{projectNumber}/global/networks/{network_id}".
|
@@ -1392,6 +1454,7 @@ class MetastoreService(pulumi.CustomResource):
|
|
1392
1454
|
def metadata_integration(self) -> pulumi.Output[Optional['outputs.MetastoreServiceMetadataIntegration']]:
|
1393
1455
|
"""
|
1394
1456
|
The setting that defines how metastore metadata should be integrated with external services and systems.
|
1457
|
+
Structure is documented below.
|
1395
1458
|
"""
|
1396
1459
|
return pulumi.get(self, "metadata_integration")
|
1397
1460
|
|