pulumi-gcp 9.2.0__py3-none-any.whl → 9.3.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 +32 -0
- pulumi_gcp/apigee/__init__.py +1 -0
- pulumi_gcp/apigee/api_deployment.py +372 -0
- pulumi_gcp/apihub/plugin.py +1 -1
- pulumi_gcp/artifactregistry/__init__.py +2 -0
- pulumi_gcp/artifactregistry/get_maven_artifacts.py +164 -0
- pulumi_gcp/artifactregistry/get_npm_packages.py +164 -0
- pulumi_gcp/artifactregistry/outputs.py +165 -0
- pulumi_gcp/cloudrunv2/_inputs.py +823 -15
- pulumi_gcp/cloudrunv2/outputs.py +1749 -743
- pulumi_gcp/cloudrunv2/worker_pool.py +110 -0
- pulumi_gcp/compute/_inputs.py +28 -0
- pulumi_gcp/compute/outputs.py +20 -1
- pulumi_gcp/compute/vpn_tunnel.py +97 -23
- pulumi_gcp/compute/wire_group.py +2 -0
- pulumi_gcp/dataloss/_inputs.py +970 -30
- pulumi_gcp/dataloss/outputs.py +850 -20
- pulumi_gcp/dataloss/prevention_discovery_config.py +54 -0
- pulumi_gcp/diagflow/_inputs.py +66 -0
- pulumi_gcp/diagflow/conversation_profile.py +84 -0
- pulumi_gcp/diagflow/outputs.py +57 -0
- pulumi_gcp/discoveryengine/__init__.py +1 -0
- pulumi_gcp/discoveryengine/_inputs.py +187 -0
- pulumi_gcp/discoveryengine/data_connector.py +1368 -0
- pulumi_gcp/discoveryengine/outputs.py +135 -0
- pulumi_gcp/discoveryengine/search_engine.py +47 -0
- pulumi_gcp/gkebackup/_inputs.py +111 -0
- pulumi_gcp/gkebackup/backup_plan.py +72 -0
- pulumi_gcp/gkebackup/outputs.py +84 -0
- pulumi_gcp/kms/__init__.py +1 -0
- pulumi_gcp/kms/_inputs.py +43 -0
- pulumi_gcp/kms/organization_kaj_policy_config.py +290 -0
- pulumi_gcp/kms/outputs.py +43 -0
- pulumi_gcp/logging/metric.py +2 -2
- pulumi_gcp/looker/instance.py +51 -0
- pulumi_gcp/managedkafka/connect_cluster.py +20 -82
- pulumi_gcp/managedkafka/connector.py +24 -94
- pulumi_gcp/netapp/_inputs.py +28 -5
- pulumi_gcp/netapp/outputs.py +19 -3
- pulumi_gcp/netapp/storage_pool.py +56 -0
- pulumi_gcp/netapp/volume.py +28 -0
- pulumi_gcp/networkconnectivity/spoke.py +14 -14
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +211 -23
- pulumi_gcp/oracledatabase/odb_network.py +101 -2
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/privilegedaccessmanager/_inputs.py +27 -4
- pulumi_gcp/privilegedaccessmanager/outputs.py +31 -6
- pulumi_gcp/pubsub/get_subscription.py +12 -1
- pulumi_gcp/pubsub/get_topic.py +15 -4
- pulumi_gcp/pubsub/subscription.py +153 -7
- pulumi_gcp/pubsub/topic.py +145 -3
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/saasruntime/__init__.py +1 -0
- pulumi_gcp/saasruntime/_inputs.py +60 -0
- pulumi_gcp/saasruntime/outputs.py +55 -0
- pulumi_gcp/saasruntime/rollout_kind.py +1086 -0
- pulumi_gcp/sql/_inputs.py +122 -3
- pulumi_gcp/sql/database_instance.py +47 -0
- pulumi_gcp/sql/get_database_instance.py +12 -1
- pulumi_gcp/sql/outputs.py +233 -2
- pulumi_gcp/storage/bucket.py +52 -24
- pulumi_gcp/storage/get_insights_dataset_config.py +12 -1
- pulumi_gcp/storage/insights_dataset_config.py +49 -0
- pulumi_gcp/storage/insights_report_config.py +47 -0
- pulumi_gcp/vertex/_inputs.py +339 -1
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_endpoint_with_model_garden_deployment.py +102 -0
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/ai_index.py +74 -2
- pulumi_gcp/vertex/ai_index_endpoint.py +54 -0
- pulumi_gcp/vertex/get_ai_index.py +12 -1
- pulumi_gcp/vertex/outputs.py +303 -1
- {pulumi_gcp-9.2.0.dist-info → pulumi_gcp-9.3.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-9.2.0.dist-info → pulumi_gcp-9.3.0.dist-info}/RECORD +76 -70
- {pulumi_gcp-9.2.0.dist-info → pulumi_gcp-9.3.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-9.2.0.dist-info → pulumi_gcp-9.3.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/vertex/outputs.py
CHANGED
@@ -38,6 +38,8 @@ __all__ = [
|
|
38
38
|
'AiEndpointWithModelGardenDeploymentDeployConfigDedicatedResourcesMachineSpec',
|
39
39
|
'AiEndpointWithModelGardenDeploymentDeployConfigDedicatedResourcesMachineSpecReservationAffinity',
|
40
40
|
'AiEndpointWithModelGardenDeploymentEndpointConfig',
|
41
|
+
'AiEndpointWithModelGardenDeploymentEndpointConfigPrivateServiceConnectConfig',
|
42
|
+
'AiEndpointWithModelGardenDeploymentEndpointConfigPrivateServiceConnectConfigPscAutomationConfigs',
|
41
43
|
'AiEndpointWithModelGardenDeploymentModelConfig',
|
42
44
|
'AiEndpointWithModelGardenDeploymentModelConfigContainerSpec',
|
43
45
|
'AiEndpointWithModelGardenDeploymentModelConfigContainerSpecEnv',
|
@@ -95,6 +97,7 @@ __all__ = [
|
|
95
97
|
'AiFeatureStoreOnlineServingConfig',
|
96
98
|
'AiFeatureStoreOnlineServingConfigScaling',
|
97
99
|
'AiIndexDeployedIndex',
|
100
|
+
'AiIndexEncryptionSpec',
|
98
101
|
'AiIndexEndpointDeployedIndexAutomaticResources',
|
99
102
|
'AiIndexEndpointDeployedIndexDedicatedResources',
|
100
103
|
'AiIndexEndpointDeployedIndexDedicatedResourcesMachineSpec',
|
@@ -102,6 +105,7 @@ __all__ = [
|
|
102
105
|
'AiIndexEndpointDeployedIndexDeployedIndexAuthConfigAuthProvider',
|
103
106
|
'AiIndexEndpointDeployedIndexPrivateEndpoint',
|
104
107
|
'AiIndexEndpointDeployedIndexPrivateEndpointPscAutomatedEndpoint',
|
108
|
+
'AiIndexEndpointEncryptionSpec',
|
105
109
|
'AiIndexEndpointPrivateServiceConnectConfig',
|
106
110
|
'AiIndexIndexStat',
|
107
111
|
'AiIndexMetadata',
|
@@ -117,6 +121,7 @@ __all__ = [
|
|
117
121
|
'AiRagEngineConfigRagManagedDbConfigUnprovisioned',
|
118
122
|
'AiTensorboardEncryptionSpec',
|
119
123
|
'GetAiIndexDeployedIndexResult',
|
124
|
+
'GetAiIndexEncryptionSpecResult',
|
120
125
|
'GetAiIndexIndexStatResult',
|
121
126
|
'GetAiIndexMetadataResult',
|
122
127
|
'GetAiIndexMetadataConfigResult',
|
@@ -1725,6 +1730,8 @@ class AiEndpointWithModelGardenDeploymentEndpointConfig(dict):
|
|
1725
1730
|
suggest = "dedicated_endpoint_enabled"
|
1726
1731
|
elif key == "endpointDisplayName":
|
1727
1732
|
suggest = "endpoint_display_name"
|
1733
|
+
elif key == "privateServiceConnectConfig":
|
1734
|
+
suggest = "private_service_connect_config"
|
1728
1735
|
|
1729
1736
|
if suggest:
|
1730
1737
|
pulumi.log.warn(f"Key '{key}' not found in AiEndpointWithModelGardenDeploymentEndpointConfig. Access the value via the '{suggest}' property getter instead.")
|
@@ -1739,7 +1746,8 @@ class AiEndpointWithModelGardenDeploymentEndpointConfig(dict):
|
|
1739
1746
|
|
1740
1747
|
def __init__(__self__, *,
|
1741
1748
|
dedicated_endpoint_enabled: Optional[_builtins.bool] = None,
|
1742
|
-
endpoint_display_name: Optional[_builtins.str] = None
|
1749
|
+
endpoint_display_name: Optional[_builtins.str] = None,
|
1750
|
+
private_service_connect_config: Optional['outputs.AiEndpointWithModelGardenDeploymentEndpointConfigPrivateServiceConnectConfig'] = None):
|
1743
1751
|
"""
|
1744
1752
|
:param _builtins.bool dedicated_endpoint_enabled: If true, the endpoint will be exposed through a dedicated
|
1745
1753
|
DNS [Endpoint.dedicated_endpoint_dns]. Your request to the dedicated DNS
|
@@ -1749,11 +1757,15 @@ class AiEndpointWithModelGardenDeploymentEndpointConfig(dict):
|
|
1749
1757
|
{region}-aiplatform.googleapis.com. The limitations will be removed soon.
|
1750
1758
|
:param _builtins.str endpoint_display_name: The user-specified display name of the endpoint. If not set, a
|
1751
1759
|
default name will be used.
|
1760
|
+
:param 'AiEndpointWithModelGardenDeploymentEndpointConfigPrivateServiceConnectConfigArgs' private_service_connect_config: The configuration for Private Service Connect (PSC).
|
1761
|
+
Structure is documented below.
|
1752
1762
|
"""
|
1753
1763
|
if dedicated_endpoint_enabled is not None:
|
1754
1764
|
pulumi.set(__self__, "dedicated_endpoint_enabled", dedicated_endpoint_enabled)
|
1755
1765
|
if endpoint_display_name is not None:
|
1756
1766
|
pulumi.set(__self__, "endpoint_display_name", endpoint_display_name)
|
1767
|
+
if private_service_connect_config is not None:
|
1768
|
+
pulumi.set(__self__, "private_service_connect_config", private_service_connect_config)
|
1757
1769
|
|
1758
1770
|
@_builtins.property
|
1759
1771
|
@pulumi.getter(name="dedicatedEndpointEnabled")
|
@@ -1777,6 +1789,208 @@ class AiEndpointWithModelGardenDeploymentEndpointConfig(dict):
|
|
1777
1789
|
"""
|
1778
1790
|
return pulumi.get(self, "endpoint_display_name")
|
1779
1791
|
|
1792
|
+
@_builtins.property
|
1793
|
+
@pulumi.getter(name="privateServiceConnectConfig")
|
1794
|
+
def private_service_connect_config(self) -> Optional['outputs.AiEndpointWithModelGardenDeploymentEndpointConfigPrivateServiceConnectConfig']:
|
1795
|
+
"""
|
1796
|
+
The configuration for Private Service Connect (PSC).
|
1797
|
+
Structure is documented below.
|
1798
|
+
"""
|
1799
|
+
return pulumi.get(self, "private_service_connect_config")
|
1800
|
+
|
1801
|
+
|
1802
|
+
@pulumi.output_type
|
1803
|
+
class AiEndpointWithModelGardenDeploymentEndpointConfigPrivateServiceConnectConfig(dict):
|
1804
|
+
@staticmethod
|
1805
|
+
def __key_warning(key: str):
|
1806
|
+
suggest = None
|
1807
|
+
if key == "enablePrivateServiceConnect":
|
1808
|
+
suggest = "enable_private_service_connect"
|
1809
|
+
elif key == "projectAllowlists":
|
1810
|
+
suggest = "project_allowlists"
|
1811
|
+
elif key == "pscAutomationConfigs":
|
1812
|
+
suggest = "psc_automation_configs"
|
1813
|
+
elif key == "serviceAttachment":
|
1814
|
+
suggest = "service_attachment"
|
1815
|
+
|
1816
|
+
if suggest:
|
1817
|
+
pulumi.log.warn(f"Key '{key}' not found in AiEndpointWithModelGardenDeploymentEndpointConfigPrivateServiceConnectConfig. Access the value via the '{suggest}' property getter instead.")
|
1818
|
+
|
1819
|
+
def __getitem__(self, key: str) -> Any:
|
1820
|
+
AiEndpointWithModelGardenDeploymentEndpointConfigPrivateServiceConnectConfig.__key_warning(key)
|
1821
|
+
return super().__getitem__(key)
|
1822
|
+
|
1823
|
+
def get(self, key: str, default = None) -> Any:
|
1824
|
+
AiEndpointWithModelGardenDeploymentEndpointConfigPrivateServiceConnectConfig.__key_warning(key)
|
1825
|
+
return super().get(key, default)
|
1826
|
+
|
1827
|
+
def __init__(__self__, *,
|
1828
|
+
enable_private_service_connect: _builtins.bool,
|
1829
|
+
project_allowlists: Optional[Sequence[_builtins.str]] = None,
|
1830
|
+
psc_automation_configs: Optional['outputs.AiEndpointWithModelGardenDeploymentEndpointConfigPrivateServiceConnectConfigPscAutomationConfigs'] = None,
|
1831
|
+
service_attachment: Optional[_builtins.str] = None):
|
1832
|
+
"""
|
1833
|
+
:param _builtins.bool enable_private_service_connect: Required. If true, expose the IndexEndpoint via private service connect.
|
1834
|
+
:param Sequence[_builtins.str] project_allowlists: A list of Projects from which the forwarding rule will target the service attachment.
|
1835
|
+
:param 'AiEndpointWithModelGardenDeploymentEndpointConfigPrivateServiceConnectConfigPscAutomationConfigsArgs' psc_automation_configs: PSC config that is used to automatically create PSC endpoints in the user projects.
|
1836
|
+
Structure is documented below.
|
1837
|
+
:param _builtins.str service_attachment: (Output)
|
1838
|
+
Output only. The name of the generated service attachment resource.
|
1839
|
+
This is only populated if the endpoint is deployed with PrivateServiceConnect.
|
1840
|
+
"""
|
1841
|
+
pulumi.set(__self__, "enable_private_service_connect", enable_private_service_connect)
|
1842
|
+
if project_allowlists is not None:
|
1843
|
+
pulumi.set(__self__, "project_allowlists", project_allowlists)
|
1844
|
+
if psc_automation_configs is not None:
|
1845
|
+
pulumi.set(__self__, "psc_automation_configs", psc_automation_configs)
|
1846
|
+
if service_attachment is not None:
|
1847
|
+
pulumi.set(__self__, "service_attachment", service_attachment)
|
1848
|
+
|
1849
|
+
@_builtins.property
|
1850
|
+
@pulumi.getter(name="enablePrivateServiceConnect")
|
1851
|
+
def enable_private_service_connect(self) -> _builtins.bool:
|
1852
|
+
"""
|
1853
|
+
Required. If true, expose the IndexEndpoint via private service connect.
|
1854
|
+
"""
|
1855
|
+
return pulumi.get(self, "enable_private_service_connect")
|
1856
|
+
|
1857
|
+
@_builtins.property
|
1858
|
+
@pulumi.getter(name="projectAllowlists")
|
1859
|
+
def project_allowlists(self) -> Optional[Sequence[_builtins.str]]:
|
1860
|
+
"""
|
1861
|
+
A list of Projects from which the forwarding rule will target the service attachment.
|
1862
|
+
"""
|
1863
|
+
return pulumi.get(self, "project_allowlists")
|
1864
|
+
|
1865
|
+
@_builtins.property
|
1866
|
+
@pulumi.getter(name="pscAutomationConfigs")
|
1867
|
+
def psc_automation_configs(self) -> Optional['outputs.AiEndpointWithModelGardenDeploymentEndpointConfigPrivateServiceConnectConfigPscAutomationConfigs']:
|
1868
|
+
"""
|
1869
|
+
PSC config that is used to automatically create PSC endpoints in the user projects.
|
1870
|
+
Structure is documented below.
|
1871
|
+
"""
|
1872
|
+
return pulumi.get(self, "psc_automation_configs")
|
1873
|
+
|
1874
|
+
@_builtins.property
|
1875
|
+
@pulumi.getter(name="serviceAttachment")
|
1876
|
+
def service_attachment(self) -> Optional[_builtins.str]:
|
1877
|
+
"""
|
1878
|
+
(Output)
|
1879
|
+
Output only. The name of the generated service attachment resource.
|
1880
|
+
This is only populated if the endpoint is deployed with PrivateServiceConnect.
|
1881
|
+
"""
|
1882
|
+
return pulumi.get(self, "service_attachment")
|
1883
|
+
|
1884
|
+
|
1885
|
+
@pulumi.output_type
|
1886
|
+
class AiEndpointWithModelGardenDeploymentEndpointConfigPrivateServiceConnectConfigPscAutomationConfigs(dict):
|
1887
|
+
@staticmethod
|
1888
|
+
def __key_warning(key: str):
|
1889
|
+
suggest = None
|
1890
|
+
if key == "projectId":
|
1891
|
+
suggest = "project_id"
|
1892
|
+
elif key == "errorMessage":
|
1893
|
+
suggest = "error_message"
|
1894
|
+
elif key == "forwardingRule":
|
1895
|
+
suggest = "forwarding_rule"
|
1896
|
+
elif key == "ipAddress":
|
1897
|
+
suggest = "ip_address"
|
1898
|
+
|
1899
|
+
if suggest:
|
1900
|
+
pulumi.log.warn(f"Key '{key}' not found in AiEndpointWithModelGardenDeploymentEndpointConfigPrivateServiceConnectConfigPscAutomationConfigs. Access the value via the '{suggest}' property getter instead.")
|
1901
|
+
|
1902
|
+
def __getitem__(self, key: str) -> Any:
|
1903
|
+
AiEndpointWithModelGardenDeploymentEndpointConfigPrivateServiceConnectConfigPscAutomationConfigs.__key_warning(key)
|
1904
|
+
return super().__getitem__(key)
|
1905
|
+
|
1906
|
+
def get(self, key: str, default = None) -> Any:
|
1907
|
+
AiEndpointWithModelGardenDeploymentEndpointConfigPrivateServiceConnectConfigPscAutomationConfigs.__key_warning(key)
|
1908
|
+
return super().get(key, default)
|
1909
|
+
|
1910
|
+
def __init__(__self__, *,
|
1911
|
+
network: _builtins.str,
|
1912
|
+
project_id: _builtins.str,
|
1913
|
+
error_message: Optional[_builtins.str] = None,
|
1914
|
+
forwarding_rule: Optional[_builtins.str] = None,
|
1915
|
+
ip_address: Optional[_builtins.str] = None,
|
1916
|
+
state: Optional[_builtins.str] = None):
|
1917
|
+
"""
|
1918
|
+
:param _builtins.str network: Required. The full name of the Google Compute Engine network.
|
1919
|
+
Format: projects/{project}/global/networks/{network}.
|
1920
|
+
:param _builtins.str project_id: Required. Project id used to create forwarding rule.
|
1921
|
+
:param _builtins.str error_message: (Output)
|
1922
|
+
Output only. Error message if the PSC service automation failed.
|
1923
|
+
:param _builtins.str forwarding_rule: (Output)
|
1924
|
+
Output only. Forwarding rule created by the PSC service automation.
|
1925
|
+
:param _builtins.str ip_address: (Output)
|
1926
|
+
Output only. IP address rule created by the PSC service automation.
|
1927
|
+
:param _builtins.str state: (Output)
|
1928
|
+
Output only. The state of the PSC service automation.
|
1929
|
+
"""
|
1930
|
+
pulumi.set(__self__, "network", network)
|
1931
|
+
pulumi.set(__self__, "project_id", project_id)
|
1932
|
+
if error_message is not None:
|
1933
|
+
pulumi.set(__self__, "error_message", error_message)
|
1934
|
+
if forwarding_rule is not None:
|
1935
|
+
pulumi.set(__self__, "forwarding_rule", forwarding_rule)
|
1936
|
+
if ip_address is not None:
|
1937
|
+
pulumi.set(__self__, "ip_address", ip_address)
|
1938
|
+
if state is not None:
|
1939
|
+
pulumi.set(__self__, "state", state)
|
1940
|
+
|
1941
|
+
@_builtins.property
|
1942
|
+
@pulumi.getter
|
1943
|
+
def network(self) -> _builtins.str:
|
1944
|
+
"""
|
1945
|
+
Required. The full name of the Google Compute Engine network.
|
1946
|
+
Format: projects/{project}/global/networks/{network}.
|
1947
|
+
"""
|
1948
|
+
return pulumi.get(self, "network")
|
1949
|
+
|
1950
|
+
@_builtins.property
|
1951
|
+
@pulumi.getter(name="projectId")
|
1952
|
+
def project_id(self) -> _builtins.str:
|
1953
|
+
"""
|
1954
|
+
Required. Project id used to create forwarding rule.
|
1955
|
+
"""
|
1956
|
+
return pulumi.get(self, "project_id")
|
1957
|
+
|
1958
|
+
@_builtins.property
|
1959
|
+
@pulumi.getter(name="errorMessage")
|
1960
|
+
def error_message(self) -> Optional[_builtins.str]:
|
1961
|
+
"""
|
1962
|
+
(Output)
|
1963
|
+
Output only. Error message if the PSC service automation failed.
|
1964
|
+
"""
|
1965
|
+
return pulumi.get(self, "error_message")
|
1966
|
+
|
1967
|
+
@_builtins.property
|
1968
|
+
@pulumi.getter(name="forwardingRule")
|
1969
|
+
def forwarding_rule(self) -> Optional[_builtins.str]:
|
1970
|
+
"""
|
1971
|
+
(Output)
|
1972
|
+
Output only. Forwarding rule created by the PSC service automation.
|
1973
|
+
"""
|
1974
|
+
return pulumi.get(self, "forwarding_rule")
|
1975
|
+
|
1976
|
+
@_builtins.property
|
1977
|
+
@pulumi.getter(name="ipAddress")
|
1978
|
+
def ip_address(self) -> Optional[_builtins.str]:
|
1979
|
+
"""
|
1980
|
+
(Output)
|
1981
|
+
Output only. IP address rule created by the PSC service automation.
|
1982
|
+
"""
|
1983
|
+
return pulumi.get(self, "ip_address")
|
1984
|
+
|
1985
|
+
@_builtins.property
|
1986
|
+
@pulumi.getter
|
1987
|
+
def state(self) -> Optional[_builtins.str]:
|
1988
|
+
"""
|
1989
|
+
(Output)
|
1990
|
+
Output only. The state of the PSC service automation.
|
1991
|
+
"""
|
1992
|
+
return pulumi.get(self, "state")
|
1993
|
+
|
1780
1994
|
|
1781
1995
|
@pulumi.output_type
|
1782
1996
|
class AiEndpointWithModelGardenDeploymentModelConfig(dict):
|
@@ -5136,6 +5350,41 @@ class AiIndexDeployedIndex(dict):
|
|
5136
5350
|
return pulumi.get(self, "index_endpoint")
|
5137
5351
|
|
5138
5352
|
|
5353
|
+
@pulumi.output_type
|
5354
|
+
class AiIndexEncryptionSpec(dict):
|
5355
|
+
@staticmethod
|
5356
|
+
def __key_warning(key: str):
|
5357
|
+
suggest = None
|
5358
|
+
if key == "kmsKeyName":
|
5359
|
+
suggest = "kms_key_name"
|
5360
|
+
|
5361
|
+
if suggest:
|
5362
|
+
pulumi.log.warn(f"Key '{key}' not found in AiIndexEncryptionSpec. Access the value via the '{suggest}' property getter instead.")
|
5363
|
+
|
5364
|
+
def __getitem__(self, key: str) -> Any:
|
5365
|
+
AiIndexEncryptionSpec.__key_warning(key)
|
5366
|
+
return super().__getitem__(key)
|
5367
|
+
|
5368
|
+
def get(self, key: str, default = None) -> Any:
|
5369
|
+
AiIndexEncryptionSpec.__key_warning(key)
|
5370
|
+
return super().get(key, default)
|
5371
|
+
|
5372
|
+
def __init__(__self__, *,
|
5373
|
+
kms_key_name: _builtins.str):
|
5374
|
+
"""
|
5375
|
+
:param _builtins.str kms_key_name: Required. The Cloud KMS resource identifier of the customer managed encryption key used to protect a resource. Has the form: `projects/my-project/locations/my-region/keyRings/my-kr/cryptoKeys/my-key`. The key needs to be in the same region as where the compute resource is created.
|
5376
|
+
"""
|
5377
|
+
pulumi.set(__self__, "kms_key_name", kms_key_name)
|
5378
|
+
|
5379
|
+
@_builtins.property
|
5380
|
+
@pulumi.getter(name="kmsKeyName")
|
5381
|
+
def kms_key_name(self) -> _builtins.str:
|
5382
|
+
"""
|
5383
|
+
Required. The Cloud KMS resource identifier of the customer managed encryption key used to protect a resource. Has the form: `projects/my-project/locations/my-region/keyRings/my-kr/cryptoKeys/my-key`. The key needs to be in the same region as where the compute resource is created.
|
5384
|
+
"""
|
5385
|
+
return pulumi.get(self, "kms_key_name")
|
5386
|
+
|
5387
|
+
|
5139
5388
|
@pulumi.output_type
|
5140
5389
|
class AiIndexEndpointDeployedIndexAutomaticResources(dict):
|
5141
5390
|
@staticmethod
|
@@ -5522,6 +5771,41 @@ class AiIndexEndpointDeployedIndexPrivateEndpointPscAutomatedEndpoint(dict):
|
|
5522
5771
|
return pulumi.get(self, "project_id")
|
5523
5772
|
|
5524
5773
|
|
5774
|
+
@pulumi.output_type
|
5775
|
+
class AiIndexEndpointEncryptionSpec(dict):
|
5776
|
+
@staticmethod
|
5777
|
+
def __key_warning(key: str):
|
5778
|
+
suggest = None
|
5779
|
+
if key == "kmsKeyName":
|
5780
|
+
suggest = "kms_key_name"
|
5781
|
+
|
5782
|
+
if suggest:
|
5783
|
+
pulumi.log.warn(f"Key '{key}' not found in AiIndexEndpointEncryptionSpec. Access the value via the '{suggest}' property getter instead.")
|
5784
|
+
|
5785
|
+
def __getitem__(self, key: str) -> Any:
|
5786
|
+
AiIndexEndpointEncryptionSpec.__key_warning(key)
|
5787
|
+
return super().__getitem__(key)
|
5788
|
+
|
5789
|
+
def get(self, key: str, default = None) -> Any:
|
5790
|
+
AiIndexEndpointEncryptionSpec.__key_warning(key)
|
5791
|
+
return super().get(key, default)
|
5792
|
+
|
5793
|
+
def __init__(__self__, *,
|
5794
|
+
kms_key_name: _builtins.str):
|
5795
|
+
"""
|
5796
|
+
:param _builtins.str kms_key_name: Required. The Cloud KMS resource identifier of the customer managed encryption key used to protect a resource. Has the form: `projects/my-project/locations/my-region/keyRings/my-kr/cryptoKeys/my-key`. The key needs to be in the same region as where the compute resource is created.
|
5797
|
+
"""
|
5798
|
+
pulumi.set(__self__, "kms_key_name", kms_key_name)
|
5799
|
+
|
5800
|
+
@_builtins.property
|
5801
|
+
@pulumi.getter(name="kmsKeyName")
|
5802
|
+
def kms_key_name(self) -> _builtins.str:
|
5803
|
+
"""
|
5804
|
+
Required. The Cloud KMS resource identifier of the customer managed encryption key used to protect a resource. Has the form: `projects/my-project/locations/my-region/keyRings/my-kr/cryptoKeys/my-key`. The key needs to be in the same region as where the compute resource is created.
|
5805
|
+
"""
|
5806
|
+
return pulumi.get(self, "kms_key_name")
|
5807
|
+
|
5808
|
+
|
5525
5809
|
@pulumi.output_type
|
5526
5810
|
class AiIndexEndpointPrivateServiceConnectConfig(dict):
|
5527
5811
|
@staticmethod
|
@@ -6152,6 +6436,24 @@ class GetAiIndexDeployedIndexResult(dict):
|
|
6152
6436
|
return pulumi.get(self, "index_endpoint")
|
6153
6437
|
|
6154
6438
|
|
6439
|
+
@pulumi.output_type
|
6440
|
+
class GetAiIndexEncryptionSpecResult(dict):
|
6441
|
+
def __init__(__self__, *,
|
6442
|
+
kms_key_name: _builtins.str):
|
6443
|
+
"""
|
6444
|
+
:param _builtins.str kms_key_name: Required. The Cloud KMS resource identifier of the customer managed encryption key used to protect a resource. Has the form: 'projects/my-project/locations/my-region/keyRings/my-kr/cryptoKeys/my-key'. The key needs to be in the same region as where the compute resource is created.
|
6445
|
+
"""
|
6446
|
+
pulumi.set(__self__, "kms_key_name", kms_key_name)
|
6447
|
+
|
6448
|
+
@_builtins.property
|
6449
|
+
@pulumi.getter(name="kmsKeyName")
|
6450
|
+
def kms_key_name(self) -> _builtins.str:
|
6451
|
+
"""
|
6452
|
+
Required. The Cloud KMS resource identifier of the customer managed encryption key used to protect a resource. Has the form: 'projects/my-project/locations/my-region/keyRings/my-kr/cryptoKeys/my-key'. The key needs to be in the same region as where the compute resource is created.
|
6453
|
+
"""
|
6454
|
+
return pulumi.get(self, "kms_key_name")
|
6455
|
+
|
6456
|
+
|
6155
6457
|
@pulumi.output_type
|
6156
6458
|
class GetAiIndexIndexStatResult(dict):
|
6157
6459
|
def __init__(__self__, *,
|