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
pulumi_gcp/alloydb/outputs.py
CHANGED
@@ -50,6 +50,7 @@ __all__ = [
|
|
50
50
|
'InstanceNetworkConfigAuthorizedExternalNetwork',
|
51
51
|
'InstanceObservabilityConfig',
|
52
52
|
'InstancePscInstanceConfig',
|
53
|
+
'InstancePscInstanceConfigPscInterfaceConfig',
|
53
54
|
'InstanceQueryInsightsConfig',
|
54
55
|
'InstanceReadPoolConfig',
|
55
56
|
'GetClusterAutomatedBackupPolicyResult',
|
@@ -83,6 +84,7 @@ __all__ = [
|
|
83
84
|
'GetInstanceNetworkConfigAuthorizedExternalNetworkResult',
|
84
85
|
'GetInstanceObservabilityConfigResult',
|
85
86
|
'GetInstancePscInstanceConfigResult',
|
87
|
+
'GetInstancePscInstanceConfigPscInterfaceConfigResult',
|
86
88
|
'GetInstanceQueryInsightsConfigResult',
|
87
89
|
'GetInstanceReadPoolConfigResult',
|
88
90
|
'GetLocationsLocationResult',
|
@@ -1843,6 +1845,8 @@ class InstancePscInstanceConfig(dict):
|
|
1843
1845
|
suggest = "allowed_consumer_projects"
|
1844
1846
|
elif key == "pscDnsName":
|
1845
1847
|
suggest = "psc_dns_name"
|
1848
|
+
elif key == "pscInterfaceConfigs":
|
1849
|
+
suggest = "psc_interface_configs"
|
1846
1850
|
elif key == "serviceAttachmentLink":
|
1847
1851
|
suggest = "service_attachment_link"
|
1848
1852
|
|
@@ -1860,6 +1864,7 @@ class InstancePscInstanceConfig(dict):
|
|
1860
1864
|
def __init__(__self__, *,
|
1861
1865
|
allowed_consumer_projects: Optional[Sequence[str]] = None,
|
1862
1866
|
psc_dns_name: Optional[str] = None,
|
1867
|
+
psc_interface_configs: Optional[Sequence['outputs.InstancePscInstanceConfigPscInterfaceConfig']] = None,
|
1863
1868
|
service_attachment_link: Optional[str] = None):
|
1864
1869
|
"""
|
1865
1870
|
:param Sequence[str] allowed_consumer_projects: List of consumer projects that are allowed to create PSC endpoints to service-attachments to this instance.
|
@@ -1867,6 +1872,9 @@ class InstancePscInstanceConfig(dict):
|
|
1867
1872
|
:param str psc_dns_name: (Output)
|
1868
1873
|
The DNS name of the instance for PSC connectivity.
|
1869
1874
|
Name convention: <uid>.<uid>.<region>.alloydb-psc.goog
|
1875
|
+
:param Sequence['InstancePscInstanceConfigPscInterfaceConfigArgs'] psc_interface_configs: Configurations for setting up PSC interfaces attached to the instance
|
1876
|
+
which are used for outbound connectivity. Currently, AlloyDB supports only 0 or 1 PSC interface.
|
1877
|
+
Structure is documented below.
|
1870
1878
|
:param str service_attachment_link: (Output)
|
1871
1879
|
The service attachment created when Private Service Connect (PSC) is enabled for the instance.
|
1872
1880
|
The name of the resource will be in the format of
|
@@ -1876,6 +1884,8 @@ class InstancePscInstanceConfig(dict):
|
|
1876
1884
|
pulumi.set(__self__, "allowed_consumer_projects", allowed_consumer_projects)
|
1877
1885
|
if psc_dns_name is not None:
|
1878
1886
|
pulumi.set(__self__, "psc_dns_name", psc_dns_name)
|
1887
|
+
if psc_interface_configs is not None:
|
1888
|
+
pulumi.set(__self__, "psc_interface_configs", psc_interface_configs)
|
1879
1889
|
if service_attachment_link is not None:
|
1880
1890
|
pulumi.set(__self__, "service_attachment_link", service_attachment_link)
|
1881
1891
|
|
@@ -1898,6 +1908,16 @@ class InstancePscInstanceConfig(dict):
|
|
1898
1908
|
"""
|
1899
1909
|
return pulumi.get(self, "psc_dns_name")
|
1900
1910
|
|
1911
|
+
@property
|
1912
|
+
@pulumi.getter(name="pscInterfaceConfigs")
|
1913
|
+
def psc_interface_configs(self) -> Optional[Sequence['outputs.InstancePscInstanceConfigPscInterfaceConfig']]:
|
1914
|
+
"""
|
1915
|
+
Configurations for setting up PSC interfaces attached to the instance
|
1916
|
+
which are used for outbound connectivity. Currently, AlloyDB supports only 0 or 1 PSC interface.
|
1917
|
+
Structure is documented below.
|
1918
|
+
"""
|
1919
|
+
return pulumi.get(self, "psc_interface_configs")
|
1920
|
+
|
1901
1921
|
@property
|
1902
1922
|
@pulumi.getter(name="serviceAttachmentLink")
|
1903
1923
|
def service_attachment_link(self) -> Optional[str]:
|
@@ -1910,6 +1930,46 @@ class InstancePscInstanceConfig(dict):
|
|
1910
1930
|
return pulumi.get(self, "service_attachment_link")
|
1911
1931
|
|
1912
1932
|
|
1933
|
+
@pulumi.output_type
|
1934
|
+
class InstancePscInstanceConfigPscInterfaceConfig(dict):
|
1935
|
+
@staticmethod
|
1936
|
+
def __key_warning(key: str):
|
1937
|
+
suggest = None
|
1938
|
+
if key == "networkAttachmentResource":
|
1939
|
+
suggest = "network_attachment_resource"
|
1940
|
+
|
1941
|
+
if suggest:
|
1942
|
+
pulumi.log.warn(f"Key '{key}' not found in InstancePscInstanceConfigPscInterfaceConfig. Access the value via the '{suggest}' property getter instead.")
|
1943
|
+
|
1944
|
+
def __getitem__(self, key: str) -> Any:
|
1945
|
+
InstancePscInstanceConfigPscInterfaceConfig.__key_warning(key)
|
1946
|
+
return super().__getitem__(key)
|
1947
|
+
|
1948
|
+
def get(self, key: str, default = None) -> Any:
|
1949
|
+
InstancePscInstanceConfigPscInterfaceConfig.__key_warning(key)
|
1950
|
+
return super().get(key, default)
|
1951
|
+
|
1952
|
+
def __init__(__self__, *,
|
1953
|
+
network_attachment_resource: Optional[str] = None):
|
1954
|
+
"""
|
1955
|
+
:param str network_attachment_resource: The network attachment resource created in the consumer project to which the PSC interface will be linked.
|
1956
|
+
This is of the format: "projects/${CONSUMER_PROJECT}/regions/${REGION}/networkAttachments/${NETWORK_ATTACHMENT_NAME}".
|
1957
|
+
The network attachment must be in the same region as the instance.
|
1958
|
+
"""
|
1959
|
+
if network_attachment_resource is not None:
|
1960
|
+
pulumi.set(__self__, "network_attachment_resource", network_attachment_resource)
|
1961
|
+
|
1962
|
+
@property
|
1963
|
+
@pulumi.getter(name="networkAttachmentResource")
|
1964
|
+
def network_attachment_resource(self) -> Optional[str]:
|
1965
|
+
"""
|
1966
|
+
The network attachment resource created in the consumer project to which the PSC interface will be linked.
|
1967
|
+
This is of the format: "projects/${CONSUMER_PROJECT}/regions/${REGION}/networkAttachments/${NETWORK_ATTACHMENT_NAME}".
|
1968
|
+
The network attachment must be in the same region as the instance.
|
1969
|
+
"""
|
1970
|
+
return pulumi.get(self, "network_attachment_resource")
|
1971
|
+
|
1972
|
+
|
1913
1973
|
@pulumi.output_type
|
1914
1974
|
class InstanceQueryInsightsConfig(dict):
|
1915
1975
|
@staticmethod
|
@@ -3039,18 +3099,22 @@ class GetInstancePscInstanceConfigResult(dict):
|
|
3039
3099
|
def __init__(__self__, *,
|
3040
3100
|
allowed_consumer_projects: Sequence[str],
|
3041
3101
|
psc_dns_name: str,
|
3102
|
+
psc_interface_configs: Sequence['outputs.GetInstancePscInstanceConfigPscInterfaceConfigResult'],
|
3042
3103
|
service_attachment_link: str):
|
3043
3104
|
"""
|
3044
3105
|
:param Sequence[str] allowed_consumer_projects: List of consumer projects that are allowed to create PSC endpoints to service-attachments to this instance.
|
3045
3106
|
These should be specified as project numbers only.
|
3046
3107
|
:param str psc_dns_name: The DNS name of the instance for PSC connectivity.
|
3047
3108
|
Name convention: <uid>.<uid>.<region>.alloydb-psc.goog
|
3109
|
+
:param Sequence['GetInstancePscInstanceConfigPscInterfaceConfigArgs'] psc_interface_configs: Configurations for setting up PSC interfaces attached to the instance
|
3110
|
+
which are used for outbound connectivity. Currently, AlloyDB supports only 0 or 1 PSC interface.
|
3048
3111
|
:param str service_attachment_link: The service attachment created when Private Service Connect (PSC) is enabled for the instance.
|
3049
3112
|
The name of the resource will be in the format of
|
3050
3113
|
'projects/<alloydb-tenant-project-number>/regions/<region-name>/serviceAttachments/<service-attachment-name>'
|
3051
3114
|
"""
|
3052
3115
|
pulumi.set(__self__, "allowed_consumer_projects", allowed_consumer_projects)
|
3053
3116
|
pulumi.set(__self__, "psc_dns_name", psc_dns_name)
|
3117
|
+
pulumi.set(__self__, "psc_interface_configs", psc_interface_configs)
|
3054
3118
|
pulumi.set(__self__, "service_attachment_link", service_attachment_link)
|
3055
3119
|
|
3056
3120
|
@property
|
@@ -3071,6 +3135,15 @@ class GetInstancePscInstanceConfigResult(dict):
|
|
3071
3135
|
"""
|
3072
3136
|
return pulumi.get(self, "psc_dns_name")
|
3073
3137
|
|
3138
|
+
@property
|
3139
|
+
@pulumi.getter(name="pscInterfaceConfigs")
|
3140
|
+
def psc_interface_configs(self) -> Sequence['outputs.GetInstancePscInstanceConfigPscInterfaceConfigResult']:
|
3141
|
+
"""
|
3142
|
+
Configurations for setting up PSC interfaces attached to the instance
|
3143
|
+
which are used for outbound connectivity. Currently, AlloyDB supports only 0 or 1 PSC interface.
|
3144
|
+
"""
|
3145
|
+
return pulumi.get(self, "psc_interface_configs")
|
3146
|
+
|
3074
3147
|
@property
|
3075
3148
|
@pulumi.getter(name="serviceAttachmentLink")
|
3076
3149
|
def service_attachment_link(self) -> str:
|
@@ -3082,6 +3155,28 @@ class GetInstancePscInstanceConfigResult(dict):
|
|
3082
3155
|
return pulumi.get(self, "service_attachment_link")
|
3083
3156
|
|
3084
3157
|
|
3158
|
+
@pulumi.output_type
|
3159
|
+
class GetInstancePscInstanceConfigPscInterfaceConfigResult(dict):
|
3160
|
+
def __init__(__self__, *,
|
3161
|
+
network_attachment_resource: str):
|
3162
|
+
"""
|
3163
|
+
:param str network_attachment_resource: The network attachment resource created in the consumer project to which the PSC interface will be linked.
|
3164
|
+
This is of the format: "projects/${CONSUMER_PROJECT}/regions/${REGION}/networkAttachments/${NETWORK_ATTACHMENT_NAME}".
|
3165
|
+
The network attachment must be in the same region as the instance.
|
3166
|
+
"""
|
3167
|
+
pulumi.set(__self__, "network_attachment_resource", network_attachment_resource)
|
3168
|
+
|
3169
|
+
@property
|
3170
|
+
@pulumi.getter(name="networkAttachmentResource")
|
3171
|
+
def network_attachment_resource(self) -> str:
|
3172
|
+
"""
|
3173
|
+
The network attachment resource created in the consumer project to which the PSC interface will be linked.
|
3174
|
+
This is of the format: "projects/${CONSUMER_PROJECT}/regions/${REGION}/networkAttachments/${NETWORK_ATTACHMENT_NAME}".
|
3175
|
+
The network attachment must be in the same region as the instance.
|
3176
|
+
"""
|
3177
|
+
return pulumi.get(self, "network_attachment_resource")
|
3178
|
+
|
3179
|
+
|
3085
3180
|
@pulumi.output_type
|
3086
3181
|
class GetInstanceQueryInsightsConfigResult(dict):
|
3087
3182
|
def __init__(__self__, *,
|