pulumi-gcp 8.36.0a1751060819__py3-none-any.whl → 8.37.0a1751903932__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 +24 -0
- pulumi_gcp/apihub/__init__.py +1 -0
- pulumi_gcp/apihub/_inputs.py +675 -0
- pulumi_gcp/apihub/outputs.py +567 -0
- pulumi_gcp/apihub/plugin.py +1146 -0
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +7 -7
- pulumi_gcp/bigqueryanalyticshub/listing.py +7 -7
- pulumi_gcp/cloudidentity/group_membership.py +47 -0
- pulumi_gcp/cloudidentity/outputs.py +11 -0
- pulumi_gcp/cloudrunv2/_inputs.py +65 -9
- pulumi_gcp/cloudrunv2/job.py +44 -0
- pulumi_gcp/cloudrunv2/outputs.py +73 -8
- pulumi_gcp/cloudrunv2/service.py +0 -2
- pulumi_gcp/cloudrunv2/worker_pool.py +18 -20
- pulumi_gcp/compute/__init__.py +1 -0
- pulumi_gcp/compute/_inputs.py +763 -6
- pulumi_gcp/compute/disk.py +35 -28
- pulumi_gcp/compute/firewall_policy_rule.py +207 -0
- pulumi_gcp/compute/get_instance_group_manager.py +12 -1
- pulumi_gcp/compute/get_region_disk.py +12 -1
- pulumi_gcp/compute/instance_group_manager.py +165 -14
- pulumi_gcp/compute/network.py +56 -0
- pulumi_gcp/compute/network_firewall_policy.py +68 -0
- pulumi_gcp/compute/network_firewall_policy_with_rules.py +61 -0
- pulumi_gcp/compute/outputs.py +604 -4
- pulumi_gcp/compute/region_disk.py +114 -0
- pulumi_gcp/compute/region_network_firewall_policy.py +90 -0
- pulumi_gcp/compute/region_network_firewall_policy_with_rules.py +109 -0
- pulumi_gcp/compute/wire_group.py +751 -0
- pulumi_gcp/container/_inputs.py +135 -16
- pulumi_gcp/container/cluster.py +54 -0
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/node_pool.py +14 -0
- pulumi_gcp/container/outputs.py +222 -12
- pulumi_gcp/diagflow/__init__.py +1 -0
- pulumi_gcp/diagflow/_inputs.py +431 -0
- pulumi_gcp/diagflow/cx_generative_settings.py +625 -0
- pulumi_gcp/diagflow/outputs.py +370 -0
- pulumi_gcp/dns/record_set.py +4 -2
- pulumi_gcp/firestore/database.py +0 -9
- pulumi_gcp/iam/_inputs.py +36 -0
- pulumi_gcp/iam/outputs.py +38 -0
- pulumi_gcp/iam/workload_identity_pool_managed_identity.py +88 -2
- pulumi_gcp/kms/autokey_config.py +28 -0
- pulumi_gcp/kms/get_autokey_config.py +12 -1
- pulumi_gcp/memorystore/get_instance.py +12 -1
- pulumi_gcp/memorystore/instance.py +49 -0
- pulumi_gcp/monitoring/metric_descriptor.py +55 -57
- pulumi_gcp/notebooks/instance.py +8 -8
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/get_instance.py +12 -1
- pulumi_gcp/redis/instance.py +44 -0
- pulumi_gcp/secretmanager/get_regional_secret.py +12 -1
- pulumi_gcp/secretmanager/outputs.py +7 -0
- pulumi_gcp/secretmanager/regional_secret.py +38 -2
- pulumi_gcp/spanner/_inputs.py +24 -1
- pulumi_gcp/spanner/outputs.py +17 -1
- pulumi_gcp/storage/_inputs.py +43 -3
- pulumi_gcp/storage/outputs.py +53 -3
- pulumi_gcp/workbench/instance.py +2 -0
- {pulumi_gcp-8.36.0a1751060819.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.36.0a1751060819.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/RECORD +64 -61
- {pulumi_gcp-8.36.0a1751060819.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.36.0a1751060819.dist-info → pulumi_gcp-8.37.0a1751903932.dist-info}/top_level.txt +0 -0
pulumi_gcp/__init__.py
CHANGED
@@ -993,6 +993,14 @@ _utilities.register(
|
|
993
993
|
"gcp:apihub/hostProjectRegistration:HostProjectRegistration": "HostProjectRegistration"
|
994
994
|
}
|
995
995
|
},
|
996
|
+
{
|
997
|
+
"pkg": "gcp",
|
998
|
+
"mod": "apihub/plugin",
|
999
|
+
"fqn": "pulumi_gcp.apihub",
|
1000
|
+
"classes": {
|
1001
|
+
"gcp:apihub/plugin:Plugin": "Plugin"
|
1002
|
+
}
|
1003
|
+
},
|
996
1004
|
{
|
997
1005
|
"pkg": "gcp",
|
998
1006
|
"mod": "apihub/pluginInstance",
|
@@ -3913,6 +3921,14 @@ _utilities.register(
|
|
3913
3921
|
"gcp:compute/vPNTunnel:VPNTunnel": "VPNTunnel"
|
3914
3922
|
}
|
3915
3923
|
},
|
3924
|
+
{
|
3925
|
+
"pkg": "gcp",
|
3926
|
+
"mod": "compute/wireGroup",
|
3927
|
+
"fqn": "pulumi_gcp.compute",
|
3928
|
+
"classes": {
|
3929
|
+
"gcp:compute/wireGroup:WireGroup": "WireGroup"
|
3930
|
+
}
|
3931
|
+
},
|
3916
3932
|
{
|
3917
3933
|
"pkg": "gcp",
|
3918
3934
|
"mod": "contactcenterinsights/view",
|
@@ -4985,6 +5001,14 @@ _utilities.register(
|
|
4985
5001
|
"gcp:diagflow/cxFlow:CxFlow": "CxFlow"
|
4986
5002
|
}
|
4987
5003
|
},
|
5004
|
+
{
|
5005
|
+
"pkg": "gcp",
|
5006
|
+
"mod": "diagflow/cxGenerativeSettings",
|
5007
|
+
"fqn": "pulumi_gcp.diagflow",
|
5008
|
+
"classes": {
|
5009
|
+
"gcp:diagflow/cxGenerativeSettings:CxGenerativeSettings": "CxGenerativeSettings"
|
5010
|
+
}
|
5011
|
+
},
|
4988
5012
|
{
|
4989
5013
|
"pkg": "gcp",
|
4990
5014
|
"mod": "diagflow/cxIntent",
|
pulumi_gcp/apihub/__init__.py
CHANGED