pulumi-gcp 8.21.0a1741156431__py3-none-any.whl → 8.22.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 +96 -0
- pulumi_gcp/alloydb/_inputs.py +66 -0
- pulumi_gcp/alloydb/cluster.py +148 -0
- pulumi_gcp/alloydb/instance.py +28 -28
- pulumi_gcp/alloydb/outputs.py +95 -0
- pulumi_gcp/apihub/__init__.py +1 -0
- pulumi_gcp/apihub/host_project_registration.py +535 -0
- pulumi_gcp/backupdisasterrecovery/_inputs.py +3 -3
- pulumi_gcp/backupdisasterrecovery/outputs.py +4 -4
- pulumi_gcp/bigquery/table.py +1 -1
- pulumi_gcp/certificatemanager/certificate.py +53 -7
- pulumi_gcp/certificatemanager/outputs.py +8 -2
- pulumi_gcp/compute/__init__.py +6 -0
- pulumi_gcp/compute/_inputs.py +1370 -17
- pulumi_gcp/compute/backend_service.py +209 -14
- pulumi_gcp/compute/ca_external_account_key.py +48 -3
- pulumi_gcp/compute/disk.py +403 -0
- pulumi_gcp/compute/firewall_policy_association.py +28 -2
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_disk.py +78 -1
- pulumi_gcp/compute/get_instant_snapshot_iam_policy.py +182 -0
- pulumi_gcp/compute/get_region_disk.py +23 -1
- pulumi_gcp/compute/get_region_ssl_policy.py +203 -0
- pulumi_gcp/compute/instant_snapshot.py +796 -0
- pulumi_gcp/compute/instant_snapshot_iam_binding.py +1087 -0
- pulumi_gcp/compute/instant_snapshot_iam_member.py +1087 -0
- pulumi_gcp/compute/instant_snapshot_iam_policy.py +906 -0
- pulumi_gcp/compute/outputs.py +1952 -29
- pulumi_gcp/compute/region_backend_service.py +207 -14
- pulumi_gcp/compute/region_disk.py +114 -0
- pulumi_gcp/compute/route.py +228 -2
- pulumi_gcp/compute/shared_vpc_service_project.py +0 -4
- pulumi_gcp/compute/subnetwork.py +147 -0
- pulumi_gcp/compute/url_map.py +8 -0
- pulumi_gcp/container/_inputs.py +6 -6
- pulumi_gcp/container/outputs.py +8 -8
- pulumi_gcp/datacatalog/entry.py +4 -0
- pulumi_gcp/datacatalog/tag.py +4 -0
- pulumi_gcp/dataproc/_inputs.py +12 -15
- pulumi_gcp/dataproc/outputs.py +8 -10
- pulumi_gcp/datastream/_inputs.py +273 -0
- pulumi_gcp/datastream/connection_profile.py +54 -2
- pulumi_gcp/datastream/outputs.py +224 -0
- pulumi_gcp/discoveryengine/target_site.py +4 -4
- pulumi_gcp/eventarc/__init__.py +2 -0
- pulumi_gcp/eventarc/_inputs.py +80 -0
- pulumi_gcp/eventarc/channel.py +85 -93
- pulumi_gcp/eventarc/google_api_source.py +997 -0
- pulumi_gcp/eventarc/message_bus.py +927 -0
- pulumi_gcp/eventarc/outputs.py +82 -0
- pulumi_gcp/firebase/data_connect_service.py +40 -2
- pulumi_gcp/gemini/__init__.py +1 -0
- pulumi_gcp/gemini/data_sharing_with_google_setting_binding.py +20 -8
- pulumi_gcp/gemini/gemini_gcp_enablement_setting.py +6 -0
- pulumi_gcp/gemini/gemini_gcp_enablement_setting_binding.py +734 -0
- pulumi_gcp/gemini/logging_setting_binding.py +7 -7
- pulumi_gcp/iam/__init__.py +2 -0
- pulumi_gcp/iam/_inputs.py +84 -27
- pulumi_gcp/iam/folders_policy_binding.py +10 -26
- pulumi_gcp/iam/oauth_client.py +979 -0
- pulumi_gcp/iam/oauth_client_credential.py +641 -0
- pulumi_gcp/iam/organizations_policy_binding.py +8 -24
- pulumi_gcp/iam/outputs.py +56 -18
- pulumi_gcp/iam/principal_access_boundary_policy.py +58 -22
- pulumi_gcp/iam/projects_policy_binding.py +8 -24
- pulumi_gcp/iam/workforce_pool_provider.py +2 -2
- pulumi_gcp/kms/crypto_key_version.py +14 -7
- pulumi_gcp/memorystore/__init__.py +1 -0
- pulumi_gcp/memorystore/get_instance.py +425 -0
- pulumi_gcp/memorystore/outputs.py +582 -0
- pulumi_gcp/monitoring/_inputs.py +15 -18
- pulumi_gcp/monitoring/alert_policy.py +46 -0
- pulumi_gcp/monitoring/outputs.py +10 -12
- pulumi_gcp/networkconnectivity/hub.py +84 -0
- pulumi_gcp/networksecurity/__init__.py +1 -0
- pulumi_gcp/networksecurity/_inputs.py +30 -18
- pulumi_gcp/networksecurity/backend_authentication_config.py +847 -0
- pulumi_gcp/networksecurity/intercept_deployment.py +178 -94
- pulumi_gcp/networksecurity/intercept_deployment_group.py +161 -77
- pulumi_gcp/networksecurity/intercept_endpoint_group.py +161 -66
- pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +137 -80
- pulumi_gcp/networksecurity/mirroring_deployment.py +178 -94
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +161 -77
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +161 -80
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +137 -105
- pulumi_gcp/networksecurity/outputs.py +20 -12
- pulumi_gcp/networkservices/endpoint_policy.py +12 -0
- pulumi_gcp/networkservices/grpc_route.py +128 -12
- pulumi_gcp/networkservices/http_route.py +16 -0
- pulumi_gcp/networkservices/mesh.py +16 -0
- pulumi_gcp/networkservices/service_binding.py +14 -0
- pulumi_gcp/networkservices/tcp_route.py +16 -0
- pulumi_gcp/networkservices/tls_route.py +12 -0
- pulumi_gcp/notebooks/location.py +4 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/storage/__init__.py +1 -0
- pulumi_gcp/storage/_inputs.py +74 -0
- pulumi_gcp/storage/anywhere_cache.py +552 -0
- pulumi_gcp/storage/outputs.py +65 -0
- pulumi_gcp/storage/transfer_job.py +67 -0
- pulumi_gcp/tpu/_inputs.py +21 -1
- pulumi_gcp/tpu/outputs.py +13 -1
- pulumi_gcp/tpu/v2_vm.py +2 -0
- pulumi_gcp/vmwareengine/_inputs.py +6 -0
- pulumi_gcp/vmwareengine/outputs.py +8 -0
- pulumi_gcp/workstations/workstation_cluster.py +137 -1
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0.dist-info}/RECORD +110 -95
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0.dist-info}/top_level.txt +0 -0
@@ -54,7 +54,9 @@ class CertificateArgs:
|
|
54
54
|
EDGE_CACHE: Certificates with scope EDGE_CACHE are special-purposed certificates, served from Edge Points of Presence.
|
55
55
|
See https://cloud.google.com/vpc/docs/edge-locations.
|
56
56
|
ALL_REGIONS: Certificates with ALL_REGIONS scope are served from all GCP regions (You can only use ALL_REGIONS with global certs).
|
57
|
-
See https://cloud.google.com/compute/docs/regions-zones
|
57
|
+
See https://cloud.google.com/compute/docs/regions-zones.
|
58
|
+
CLIENT_AUTH: Certificates with CLIENT_AUTH scope are used by a load balancer (TLS client) to be presented to the backend (TLS server) when backend mTLS is configured.
|
59
|
+
See https://cloud.google.com/load-balancing/docs/backend-authenticated-tls-backend-mtls#client-certificate.
|
58
60
|
:param pulumi.Input['CertificateSelfManagedArgs'] self_managed: Certificate data for a SelfManaged Certificate.
|
59
61
|
SelfManaged Certificates are uploaded by the user. Updating such
|
60
62
|
certificates before they expire remains the user's responsibility.
|
@@ -170,7 +172,9 @@ class CertificateArgs:
|
|
170
172
|
EDGE_CACHE: Certificates with scope EDGE_CACHE are special-purposed certificates, served from Edge Points of Presence.
|
171
173
|
See https://cloud.google.com/vpc/docs/edge-locations.
|
172
174
|
ALL_REGIONS: Certificates with ALL_REGIONS scope are served from all GCP regions (You can only use ALL_REGIONS with global certs).
|
173
|
-
See https://cloud.google.com/compute/docs/regions-zones
|
175
|
+
See https://cloud.google.com/compute/docs/regions-zones.
|
176
|
+
CLIENT_AUTH: Certificates with CLIENT_AUTH scope are used by a load balancer (TLS client) to be presented to the backend (TLS server) when backend mTLS is configured.
|
177
|
+
See https://cloud.google.com/load-balancing/docs/backend-authenticated-tls-backend-mtls#client-certificate.
|
174
178
|
"""
|
175
179
|
return pulumi.get(self, "scope")
|
176
180
|
|
@@ -237,7 +241,9 @@ class _CertificateState:
|
|
237
241
|
EDGE_CACHE: Certificates with scope EDGE_CACHE are special-purposed certificates, served from Edge Points of Presence.
|
238
242
|
See https://cloud.google.com/vpc/docs/edge-locations.
|
239
243
|
ALL_REGIONS: Certificates with ALL_REGIONS scope are served from all GCP regions (You can only use ALL_REGIONS with global certs).
|
240
|
-
See https://cloud.google.com/compute/docs/regions-zones
|
244
|
+
See https://cloud.google.com/compute/docs/regions-zones.
|
245
|
+
CLIENT_AUTH: Certificates with CLIENT_AUTH scope are used by a load balancer (TLS client) to be presented to the backend (TLS server) when backend mTLS is configured.
|
246
|
+
See https://cloud.google.com/load-balancing/docs/backend-authenticated-tls-backend-mtls#client-certificate.
|
241
247
|
:param pulumi.Input['CertificateSelfManagedArgs'] self_managed: Certificate data for a SelfManaged Certificate.
|
242
248
|
SelfManaged Certificates are uploaded by the user. Updating such
|
243
249
|
certificates before they expire remains the user's responsibility.
|
@@ -396,7 +402,9 @@ class _CertificateState:
|
|
396
402
|
EDGE_CACHE: Certificates with scope EDGE_CACHE are special-purposed certificates, served from Edge Points of Presence.
|
397
403
|
See https://cloud.google.com/vpc/docs/edge-locations.
|
398
404
|
ALL_REGIONS: Certificates with ALL_REGIONS scope are served from all GCP regions (You can only use ALL_REGIONS with global certs).
|
399
|
-
See https://cloud.google.com/compute/docs/regions-zones
|
405
|
+
See https://cloud.google.com/compute/docs/regions-zones.
|
406
|
+
CLIENT_AUTH: Certificates with CLIENT_AUTH scope are used by a load balancer (TLS client) to be presented to the backend (TLS server) when backend mTLS is configured.
|
407
|
+
See https://cloud.google.com/load-balancing/docs/backend-authenticated-tls-backend-mtls#client-certificate.
|
400
408
|
"""
|
401
409
|
return pulumi.get(self, "scope")
|
402
410
|
|
@@ -699,6 +707,22 @@ class Certificate(pulumi.CustomResource):
|
|
699
707
|
"dns_authorizations": [instance.id],
|
700
708
|
})
|
701
709
|
```
|
710
|
+
### Certificate Manager Client Auth Certificate
|
711
|
+
|
712
|
+
```python
|
713
|
+
import pulumi
|
714
|
+
import pulumi_gcp as gcp
|
715
|
+
import pulumi_std as std
|
716
|
+
|
717
|
+
default = gcp.certificatemanager.Certificate("default",
|
718
|
+
name="client-auth-cert",
|
719
|
+
description="Global cert",
|
720
|
+
scope="CLIENT_AUTH",
|
721
|
+
self_managed={
|
722
|
+
"pem_certificate": std.file(input="test-fixtures/cert.pem").result,
|
723
|
+
"pem_private_key": std.file(input="test-fixtures/private-key.pem").result,
|
724
|
+
})
|
725
|
+
```
|
702
726
|
|
703
727
|
## Import
|
704
728
|
|
@@ -749,7 +773,9 @@ class Certificate(pulumi.CustomResource):
|
|
749
773
|
EDGE_CACHE: Certificates with scope EDGE_CACHE are special-purposed certificates, served from Edge Points of Presence.
|
750
774
|
See https://cloud.google.com/vpc/docs/edge-locations.
|
751
775
|
ALL_REGIONS: Certificates with ALL_REGIONS scope are served from all GCP regions (You can only use ALL_REGIONS with global certs).
|
752
|
-
See https://cloud.google.com/compute/docs/regions-zones
|
776
|
+
See https://cloud.google.com/compute/docs/regions-zones.
|
777
|
+
CLIENT_AUTH: Certificates with CLIENT_AUTH scope are used by a load balancer (TLS client) to be presented to the backend (TLS server) when backend mTLS is configured.
|
778
|
+
See https://cloud.google.com/load-balancing/docs/backend-authenticated-tls-backend-mtls#client-certificate.
|
753
779
|
:param pulumi.Input[Union['CertificateSelfManagedArgs', 'CertificateSelfManagedArgsDict']] self_managed: Certificate data for a SelfManaged Certificate.
|
754
780
|
SelfManaged Certificates are uploaded by the user. Updating such
|
755
781
|
certificates before they expire remains the user's responsibility.
|
@@ -1026,6 +1052,22 @@ class Certificate(pulumi.CustomResource):
|
|
1026
1052
|
"dns_authorizations": [instance.id],
|
1027
1053
|
})
|
1028
1054
|
```
|
1055
|
+
### Certificate Manager Client Auth Certificate
|
1056
|
+
|
1057
|
+
```python
|
1058
|
+
import pulumi
|
1059
|
+
import pulumi_gcp as gcp
|
1060
|
+
import pulumi_std as std
|
1061
|
+
|
1062
|
+
default = gcp.certificatemanager.Certificate("default",
|
1063
|
+
name="client-auth-cert",
|
1064
|
+
description="Global cert",
|
1065
|
+
scope="CLIENT_AUTH",
|
1066
|
+
self_managed={
|
1067
|
+
"pem_certificate": std.file(input="test-fixtures/cert.pem").result,
|
1068
|
+
"pem_private_key": std.file(input="test-fixtures/private-key.pem").result,
|
1069
|
+
})
|
1070
|
+
```
|
1029
1071
|
|
1030
1072
|
## Import
|
1031
1073
|
|
@@ -1151,7 +1193,9 @@ class Certificate(pulumi.CustomResource):
|
|
1151
1193
|
EDGE_CACHE: Certificates with scope EDGE_CACHE are special-purposed certificates, served from Edge Points of Presence.
|
1152
1194
|
See https://cloud.google.com/vpc/docs/edge-locations.
|
1153
1195
|
ALL_REGIONS: Certificates with ALL_REGIONS scope are served from all GCP regions (You can only use ALL_REGIONS with global certs).
|
1154
|
-
See https://cloud.google.com/compute/docs/regions-zones
|
1196
|
+
See https://cloud.google.com/compute/docs/regions-zones.
|
1197
|
+
CLIENT_AUTH: Certificates with CLIENT_AUTH scope are used by a load balancer (TLS client) to be presented to the backend (TLS server) when backend mTLS is configured.
|
1198
|
+
See https://cloud.google.com/load-balancing/docs/backend-authenticated-tls-backend-mtls#client-certificate.
|
1155
1199
|
:param pulumi.Input[Union['CertificateSelfManagedArgs', 'CertificateSelfManagedArgsDict']] self_managed: Certificate data for a SelfManaged Certificate.
|
1156
1200
|
SelfManaged Certificates are uploaded by the user. Updating such
|
1157
1201
|
certificates before they expire remains the user's responsibility.
|
@@ -1268,7 +1312,9 @@ class Certificate(pulumi.CustomResource):
|
|
1268
1312
|
EDGE_CACHE: Certificates with scope EDGE_CACHE are special-purposed certificates, served from Edge Points of Presence.
|
1269
1313
|
See https://cloud.google.com/vpc/docs/edge-locations.
|
1270
1314
|
ALL_REGIONS: Certificates with ALL_REGIONS scope are served from all GCP regions (You can only use ALL_REGIONS with global certs).
|
1271
|
-
See https://cloud.google.com/compute/docs/regions-zones
|
1315
|
+
See https://cloud.google.com/compute/docs/regions-zones.
|
1316
|
+
CLIENT_AUTH: Certificates with CLIENT_AUTH scope are used by a load balancer (TLS client) to be presented to the backend (TLS server) when backend mTLS is configured.
|
1317
|
+
See https://cloud.google.com/load-balancing/docs/backend-authenticated-tls-backend-mtls#client-certificate.
|
1272
1318
|
"""
|
1273
1319
|
return pulumi.get(self, "scope")
|
1274
1320
|
|
@@ -936,7 +936,10 @@ class GetCertificatesCertificateResult(dict):
|
|
936
936
|
See https://cloud.google.com/vpc/docs/edge-locations.
|
937
937
|
|
938
938
|
ALL_REGIONS: Certificates with ALL_REGIONS scope are served from all GCP regions (You can only use ALL_REGIONS with global certs).
|
939
|
-
See https://cloud.google.com/compute/docs/regions-zones
|
939
|
+
See https://cloud.google.com/compute/docs/regions-zones.
|
940
|
+
|
941
|
+
CLIENT_AUTH: Certificates with CLIENT_AUTH scope are used by a load balancer (TLS client) to be presented to the backend (TLS server) when backend mTLS is configured.
|
942
|
+
See https://cloud.google.com/load-balancing/docs/backend-authenticated-tls-backend-mtls#client-certificate.
|
940
943
|
"""
|
941
944
|
pulumi.set(__self__, "description", description)
|
942
945
|
pulumi.set(__self__, "effective_labels", effective_labels)
|
@@ -1040,7 +1043,10 @@ class GetCertificatesCertificateResult(dict):
|
|
1040
1043
|
See https://cloud.google.com/vpc/docs/edge-locations.
|
1041
1044
|
|
1042
1045
|
ALL_REGIONS: Certificates with ALL_REGIONS scope are served from all GCP regions (You can only use ALL_REGIONS with global certs).
|
1043
|
-
See https://cloud.google.com/compute/docs/regions-zones
|
1046
|
+
See https://cloud.google.com/compute/docs/regions-zones.
|
1047
|
+
|
1048
|
+
CLIENT_AUTH: Certificates with CLIENT_AUTH scope are used by a load balancer (TLS client) to be presented to the backend (TLS server) when backend mTLS is configured.
|
1049
|
+
See https://cloud.google.com/load-balancing/docs/backend-authenticated-tls-backend-mtls#client-certificate.
|
1044
1050
|
"""
|
1045
1051
|
return pulumi.get(self, "scope")
|
1046
1052
|
|
pulumi_gcp/compute/__init__.py
CHANGED
@@ -58,6 +58,7 @@ from .get_instance_iam_policy import *
|
|
58
58
|
from .get_instance_serial_port import *
|
59
59
|
from .get_instance_template import *
|
60
60
|
from .get_instance_template_iam_policy import *
|
61
|
+
from .get_instant_snapshot_iam_policy import *
|
61
62
|
from .get_lbip_ranges import *
|
62
63
|
from .get_machine_image_iam_policy import *
|
63
64
|
from .get_machine_types import *
|
@@ -75,6 +76,7 @@ from .get_region_instance_group_manager import *
|
|
75
76
|
from .get_region_instance_template import *
|
76
77
|
from .get_region_network_endpoint_group import *
|
77
78
|
from .get_region_ssl_certificate import *
|
79
|
+
from .get_region_ssl_policy import *
|
78
80
|
from .get_regions import *
|
79
81
|
from .get_reservation import *
|
80
82
|
from .get_resource_policy import *
|
@@ -117,6 +119,10 @@ from .instance_template import *
|
|
117
119
|
from .instance_template_iam_binding import *
|
118
120
|
from .instance_template_iam_member import *
|
119
121
|
from .instance_template_iam_policy import *
|
122
|
+
from .instant_snapshot import *
|
123
|
+
from .instant_snapshot_iam_binding import *
|
124
|
+
from .instant_snapshot_iam_member import *
|
125
|
+
from .instant_snapshot_iam_policy import *
|
120
126
|
from .interconnect import *
|
121
127
|
from .interconnect_attachment import *
|
122
128
|
from .machine_image import *
|