pulumi-gcp 7.38.0__py3-none-any.whl → 7.38.0a1723822337__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 +0 -32
- pulumi_gcp/appengine/flexible_app_version.py +0 -8
- pulumi_gcp/applicationintegration/client.py +2 -2
- pulumi_gcp/artifactregistry/__init__.py +0 -1
- pulumi_gcp/bigquery/connection.py +0 -12
- pulumi_gcp/clouddeploy/_inputs.py +1 -41
- pulumi_gcp/clouddeploy/outputs.py +1 -29
- pulumi_gcp/cloudfunctionsv2/function.py +0 -2
- pulumi_gcp/cloudidentity/__init__.py +0 -1
- pulumi_gcp/cloudidentity/get_group_memberships.py +0 -12
- pulumi_gcp/cloudidentity/outputs.py +0 -131
- pulumi_gcp/compute/_inputs.py +30 -36
- pulumi_gcp/compute/outputs.py +38 -48
- pulumi_gcp/compute/region_network_endpoint_group.py +0 -8
- pulumi_gcp/compute/subnetwork.py +0 -82
- pulumi_gcp/container/_inputs.py +18 -15
- pulumi_gcp/container/attached_cluster.py +7 -14
- pulumi_gcp/container/outputs.py +12 -10
- pulumi_gcp/discoveryengine/__init__.py +0 -1
- pulumi_gcp/dns/_inputs.py +76 -80
- pulumi_gcp/dns/outputs.py +52 -56
- pulumi_gcp/managedkafka/_inputs.py +6 -6
- pulumi_gcp/managedkafka/cluster.py +7 -7
- pulumi_gcp/managedkafka/outputs.py +4 -4
- pulumi_gcp/managedkafka/topic.py +7 -7
- pulumi_gcp/parallelstore/instance.py +15 -215
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/__init__.py +0 -2
- pulumi_gcp/securitycenter/_inputs.py +0 -186
- pulumi_gcp/securitycenter/outputs.py +0 -118
- pulumi_gcp/servicenetworking/connection.py +3 -50
- pulumi_gcp/sql/_inputs.py +0 -20
- pulumi_gcp/sql/outputs.py +0 -36
- pulumi_gcp/vertex/__init__.py +0 -1
- pulumi_gcp/vertex/_inputs.py +0 -438
- pulumi_gcp/vertex/outputs.py +0 -393
- {pulumi_gcp-7.38.0.dist-info → pulumi_gcp-7.38.0a1723822337.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.38.0.dist-info → pulumi_gcp-7.38.0a1723822337.dist-info}/RECORD +40 -46
- {pulumi_gcp-7.38.0.dist-info → pulumi_gcp-7.38.0a1723822337.dist-info}/WHEEL +1 -1
- pulumi_gcp/artifactregistry/get_locations.py +0 -167
- pulumi_gcp/cloudidentity/get_group_transitive_memberships.py +0 -93
- pulumi_gcp/discoveryengine/schema.py +0 -524
- pulumi_gcp/securitycenter/folder_notification_config.py +0 -486
- pulumi_gcp/securitycenter/v2_folder_notification_config.py +0 -575
- pulumi_gcp/vertex/ai_index_endpoint_deployed_index.py +0 -1170
- {pulumi_gcp-7.38.0.dist-info → pulumi_gcp-7.38.0a1723822337.dist-info}/top_level.txt +0 -0
pulumi_gcp/sql/outputs.py
CHANGED
@@ -1457,8 +1457,6 @@ class DatabaseInstanceSettingsIpConfiguration(dict):
|
|
1457
1457
|
suggest = "psc_configs"
|
1458
1458
|
elif key == "requireSsl":
|
1459
1459
|
suggest = "require_ssl"
|
1460
|
-
elif key == "serverCaMode":
|
1461
|
-
suggest = "server_ca_mode"
|
1462
1460
|
elif key == "sslMode":
|
1463
1461
|
suggest = "ssl_mode"
|
1464
1462
|
|
@@ -1481,7 +1479,6 @@ class DatabaseInstanceSettingsIpConfiguration(dict):
|
|
1481
1479
|
private_network: Optional[str] = None,
|
1482
1480
|
psc_configs: Optional[Sequence['outputs.DatabaseInstanceSettingsIpConfigurationPscConfig']] = None,
|
1483
1481
|
require_ssl: Optional[bool] = None,
|
1484
|
-
server_ca_mode: Optional[str] = None,
|
1485
1482
|
ssl_mode: Optional[str] = None):
|
1486
1483
|
"""
|
1487
1484
|
:param str allocated_ip_range: The name of the allocated ip range for the private ip CloudSQL instance. For example: "google-managed-services-default". If set, the instance ip will be created in the allocated range. The range name must comply with [RFC 1035](https://datatracker.ietf.org/doc/html/rfc1035). Specifically, the name must be 1-63 characters long and match the regular expression a-z?.
|
@@ -1496,7 +1493,6 @@ class DatabaseInstanceSettingsIpConfiguration(dict):
|
|
1496
1493
|
This setting can be updated, but it cannot be removed after it is set.
|
1497
1494
|
:param Sequence['DatabaseInstanceSettingsIpConfigurationPscConfigArgs'] psc_configs: PSC settings for a Cloud SQL instance.
|
1498
1495
|
:param bool require_ssl: Whether SSL connections over IP are enforced or not. To change this field, also set the corresponding value in `ssl_mode`. It will be fully deprecated in a future major release. For now, please use `ssl_mode` with a compatible `require_ssl` value instead.
|
1499
|
-
:param str server_ca_mode: Specify how the server certificate's Certificate Authority is hosted. Supported value is `GOOGLE_MANAGED_INTERNAL_CA`.
|
1500
1496
|
:param str ssl_mode: Specify how SSL connection should be enforced in DB connections. This field provides more SSL enforcement options compared to `require_ssl`. To change this field, also set the correspoding value in `require_ssl`.
|
1501
1497
|
* For PostgreSQL instances, the value pairs are listed in the [API reference doc](https://cloud.google.com/sql/docs/postgres/admin-api/rest/v1beta4/instances#ipconfiguration) for `ssl_mode` field.
|
1502
1498
|
* For MySQL instances, use the same value pairs as the PostgreSQL instances.
|
@@ -1516,8 +1512,6 @@ class DatabaseInstanceSettingsIpConfiguration(dict):
|
|
1516
1512
|
pulumi.set(__self__, "psc_configs", psc_configs)
|
1517
1513
|
if require_ssl is not None:
|
1518
1514
|
pulumi.set(__self__, "require_ssl", require_ssl)
|
1519
|
-
if server_ca_mode is not None:
|
1520
|
-
pulumi.set(__self__, "server_ca_mode", server_ca_mode)
|
1521
1515
|
if ssl_mode is not None:
|
1522
1516
|
pulumi.set(__self__, "ssl_mode", ssl_mode)
|
1523
1517
|
|
@@ -1581,14 +1575,6 @@ class DatabaseInstanceSettingsIpConfiguration(dict):
|
|
1581
1575
|
"""
|
1582
1576
|
return pulumi.get(self, "require_ssl")
|
1583
1577
|
|
1584
|
-
@property
|
1585
|
-
@pulumi.getter(name="serverCaMode")
|
1586
|
-
def server_ca_mode(self) -> Optional[str]:
|
1587
|
-
"""
|
1588
|
-
Specify how the server certificate's Certificate Authority is hosted. Supported value is `GOOGLE_MANAGED_INTERNAL_CA`.
|
1589
|
-
"""
|
1590
|
-
return pulumi.get(self, "server_ca_mode")
|
1591
|
-
|
1592
1578
|
@property
|
1593
1579
|
@pulumi.getter(name="sslMode")
|
1594
1580
|
def ssl_mode(self) -> Optional[str]:
|
@@ -3173,7 +3159,6 @@ class GetDatabaseInstanceSettingIpConfigurationResult(dict):
|
|
3173
3159
|
private_network: str,
|
3174
3160
|
psc_configs: Sequence['outputs.GetDatabaseInstanceSettingIpConfigurationPscConfigResult'],
|
3175
3161
|
require_ssl: bool,
|
3176
|
-
server_ca_mode: str,
|
3177
3162
|
ssl_mode: str):
|
3178
3163
|
"""
|
3179
3164
|
:param str allocated_ip_range: The name of the allocated ip range for the private ip CloudSQL instance. For example: "google-managed-services-default". If set, the instance ip will be created in the allocated range. The range name must comply with RFC 1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z?.
|
@@ -3182,7 +3167,6 @@ class GetDatabaseInstanceSettingIpConfigurationResult(dict):
|
|
3182
3167
|
:param str private_network: The VPC network from which the Cloud SQL instance is accessible for private IP. For example, projects/myProject/global/networks/default. Specifying a network enables private IP. At least ipv4_enabled must be enabled or a private_network must be configured. This setting can be updated, but it cannot be removed after it is set.
|
3183
3168
|
:param Sequence['GetDatabaseInstanceSettingIpConfigurationPscConfigArgs'] psc_configs: PSC settings for a Cloud SQL instance.
|
3184
3169
|
:param bool require_ssl: Whether SSL connections over IP are enforced or not. To change this field, also set the corresponding value in ssl_mode if it has been set too.
|
3185
|
-
:param str server_ca_mode: Specify how the server certificate's Certificate Authority is hosted.
|
3186
3170
|
:param str ssl_mode: Specify how SSL connection should be enforced in DB connections. This field provides more SSL enforcement options compared to require_ssl. To change this field, also set the correspoding value in require_ssl until next major release.
|
3187
3171
|
"""
|
3188
3172
|
pulumi.set(__self__, "allocated_ip_range", allocated_ip_range)
|
@@ -3192,7 +3176,6 @@ class GetDatabaseInstanceSettingIpConfigurationResult(dict):
|
|
3192
3176
|
pulumi.set(__self__, "private_network", private_network)
|
3193
3177
|
pulumi.set(__self__, "psc_configs", psc_configs)
|
3194
3178
|
pulumi.set(__self__, "require_ssl", require_ssl)
|
3195
|
-
pulumi.set(__self__, "server_ca_mode", server_ca_mode)
|
3196
3179
|
pulumi.set(__self__, "ssl_mode", ssl_mode)
|
3197
3180
|
|
3198
3181
|
@property
|
@@ -3248,14 +3231,6 @@ class GetDatabaseInstanceSettingIpConfigurationResult(dict):
|
|
3248
3231
|
"""
|
3249
3232
|
return pulumi.get(self, "require_ssl")
|
3250
3233
|
|
3251
|
-
@property
|
3252
|
-
@pulumi.getter(name="serverCaMode")
|
3253
|
-
def server_ca_mode(self) -> str:
|
3254
|
-
"""
|
3255
|
-
Specify how the server certificate's Certificate Authority is hosted.
|
3256
|
-
"""
|
3257
|
-
return pulumi.get(self, "server_ca_mode")
|
3258
|
-
|
3259
3234
|
@property
|
3260
3235
|
@pulumi.getter(name="sslMode")
|
3261
3236
|
def ssl_mode(self) -> str:
|
@@ -4687,7 +4662,6 @@ class GetDatabaseInstancesInstanceSettingIpConfigurationResult(dict):
|
|
4687
4662
|
private_network: str,
|
4688
4663
|
psc_configs: Sequence['outputs.GetDatabaseInstancesInstanceSettingIpConfigurationPscConfigResult'],
|
4689
4664
|
require_ssl: bool,
|
4690
|
-
server_ca_mode: str,
|
4691
4665
|
ssl_mode: str):
|
4692
4666
|
"""
|
4693
4667
|
:param str allocated_ip_range: The name of the allocated ip range for the private ip CloudSQL instance. For example: "google-managed-services-default". If set, the instance ip will be created in the allocated range. The range name must comply with RFC 1035. Specifically, the name must be 1-63 characters long and match the regular expression a-z?.
|
@@ -4696,7 +4670,6 @@ class GetDatabaseInstancesInstanceSettingIpConfigurationResult(dict):
|
|
4696
4670
|
:param str private_network: The VPC network from which the Cloud SQL instance is accessible for private IP. For example, projects/myProject/global/networks/default. Specifying a network enables private IP. At least ipv4_enabled must be enabled or a private_network must be configured. This setting can be updated, but it cannot be removed after it is set.
|
4697
4671
|
:param Sequence['GetDatabaseInstancesInstanceSettingIpConfigurationPscConfigArgs'] psc_configs: PSC settings for a Cloud SQL instance.
|
4698
4672
|
:param bool require_ssl: Whether SSL connections over IP are enforced or not. To change this field, also set the corresponding value in ssl_mode if it has been set too.
|
4699
|
-
:param str server_ca_mode: Specify how the server certificate's Certificate Authority is hosted.
|
4700
4673
|
:param str ssl_mode: Specify how SSL connection should be enforced in DB connections. This field provides more SSL enforcement options compared to require_ssl. To change this field, also set the correspoding value in require_ssl until next major release.
|
4701
4674
|
"""
|
4702
4675
|
pulumi.set(__self__, "allocated_ip_range", allocated_ip_range)
|
@@ -4706,7 +4679,6 @@ class GetDatabaseInstancesInstanceSettingIpConfigurationResult(dict):
|
|
4706
4679
|
pulumi.set(__self__, "private_network", private_network)
|
4707
4680
|
pulumi.set(__self__, "psc_configs", psc_configs)
|
4708
4681
|
pulumi.set(__self__, "require_ssl", require_ssl)
|
4709
|
-
pulumi.set(__self__, "server_ca_mode", server_ca_mode)
|
4710
4682
|
pulumi.set(__self__, "ssl_mode", ssl_mode)
|
4711
4683
|
|
4712
4684
|
@property
|
@@ -4762,14 +4734,6 @@ class GetDatabaseInstancesInstanceSettingIpConfigurationResult(dict):
|
|
4762
4734
|
"""
|
4763
4735
|
return pulumi.get(self, "require_ssl")
|
4764
4736
|
|
4765
|
-
@property
|
4766
|
-
@pulumi.getter(name="serverCaMode")
|
4767
|
-
def server_ca_mode(self) -> str:
|
4768
|
-
"""
|
4769
|
-
Specify how the server certificate's Certificate Authority is hosted.
|
4770
|
-
"""
|
4771
|
-
return pulumi.get(self, "server_ca_mode")
|
4772
|
-
|
4773
4737
|
@property
|
4774
4738
|
@pulumi.getter(name="sslMode")
|
4775
4739
|
def ssl_mode(self) -> str:
|
pulumi_gcp/vertex/__init__.py
CHANGED
@@ -26,7 +26,6 @@ from .ai_feature_store_iam_member import *
|
|
26
26
|
from .ai_feature_store_iam_policy import *
|
27
27
|
from .ai_index import *
|
28
28
|
from .ai_index_endpoint import *
|
29
|
-
from .ai_index_endpoint_deployed_index import *
|
30
29
|
from .ai_metadata_store import *
|
31
30
|
from .ai_tensorboard import *
|
32
31
|
from .get_ai_endpoint_iam_policy import *
|
pulumi_gcp/vertex/_inputs.py
CHANGED
@@ -97,20 +97,6 @@ __all__ = [
|
|
97
97
|
'AiFeatureStoreOnlineServingConfigScalingArgsDict',
|
98
98
|
'AiIndexDeployedIndexArgs',
|
99
99
|
'AiIndexDeployedIndexArgsDict',
|
100
|
-
'AiIndexEndpointDeployedIndexAutomaticResourcesArgs',
|
101
|
-
'AiIndexEndpointDeployedIndexAutomaticResourcesArgsDict',
|
102
|
-
'AiIndexEndpointDeployedIndexDedicatedResourcesArgs',
|
103
|
-
'AiIndexEndpointDeployedIndexDedicatedResourcesArgsDict',
|
104
|
-
'AiIndexEndpointDeployedIndexDedicatedResourcesMachineSpecArgs',
|
105
|
-
'AiIndexEndpointDeployedIndexDedicatedResourcesMachineSpecArgsDict',
|
106
|
-
'AiIndexEndpointDeployedIndexDeployedIndexAuthConfigArgs',
|
107
|
-
'AiIndexEndpointDeployedIndexDeployedIndexAuthConfigArgsDict',
|
108
|
-
'AiIndexEndpointDeployedIndexDeployedIndexAuthConfigAuthProviderArgs',
|
109
|
-
'AiIndexEndpointDeployedIndexDeployedIndexAuthConfigAuthProviderArgsDict',
|
110
|
-
'AiIndexEndpointDeployedIndexPrivateEndpointArgs',
|
111
|
-
'AiIndexEndpointDeployedIndexPrivateEndpointArgsDict',
|
112
|
-
'AiIndexEndpointDeployedIndexPrivateEndpointPscAutomatedEndpointArgs',
|
113
|
-
'AiIndexEndpointDeployedIndexPrivateEndpointPscAutomatedEndpointArgsDict',
|
114
100
|
'AiIndexEndpointPrivateServiceConnectConfigArgs',
|
115
101
|
'AiIndexEndpointPrivateServiceConnectConfigArgsDict',
|
116
102
|
'AiIndexIndexStatArgs',
|
@@ -2703,430 +2689,6 @@ class AiIndexDeployedIndexArgs:
|
|
2703
2689
|
pulumi.set(self, "index_endpoint", value)
|
2704
2690
|
|
2705
2691
|
|
2706
|
-
if not MYPY:
|
2707
|
-
class AiIndexEndpointDeployedIndexAutomaticResourcesArgsDict(TypedDict):
|
2708
|
-
max_replica_count: NotRequired[pulumi.Input[int]]
|
2709
|
-
"""
|
2710
|
-
The maximum number of replicas this DeployedModel may be deployed on when the traffic against it increases. If maxReplicaCount is not set, the default value is minReplicaCount. The max allowed replica count is 1000.
|
2711
|
-
The maximum number of replicas this DeployedModel may be deployed on when the traffic against it increases. If the requested value is too large, the deployment will error, but if deployment succeeds then the ability to scale the model to that many replicas is guaranteed (barring service outages). If traffic against the DeployedModel increases beyond what its replicas at maximum may handle, a portion of the traffic will be dropped. If this value is not provided, a no upper bound for scaling under heavy traffic will be assume, though Vertex AI may be unable to scale beyond certain replica number.
|
2712
|
-
"""
|
2713
|
-
min_replica_count: NotRequired[pulumi.Input[int]]
|
2714
|
-
"""
|
2715
|
-
The minimum number of replicas this DeployedModel will be always deployed on. If minReplicaCount is not set, the default value is 2 (we don't provide SLA when minReplicaCount=1).
|
2716
|
-
If traffic against it increases, it may dynamically be deployed onto more replicas up to [maxReplicaCount](https://cloud.google.com/vertex-ai/docs/reference/rest/v1/AutomaticResources#FIELDS.max_replica_count), and as traffic decreases, some of these extra replicas may be freed. If the requested value is too large, the deployment will error.
|
2717
|
-
"""
|
2718
|
-
elif False:
|
2719
|
-
AiIndexEndpointDeployedIndexAutomaticResourcesArgsDict: TypeAlias = Mapping[str, Any]
|
2720
|
-
|
2721
|
-
@pulumi.input_type
|
2722
|
-
class AiIndexEndpointDeployedIndexAutomaticResourcesArgs:
|
2723
|
-
def __init__(__self__, *,
|
2724
|
-
max_replica_count: Optional[pulumi.Input[int]] = None,
|
2725
|
-
min_replica_count: Optional[pulumi.Input[int]] = None):
|
2726
|
-
"""
|
2727
|
-
:param pulumi.Input[int] max_replica_count: The maximum number of replicas this DeployedModel may be deployed on when the traffic against it increases. If maxReplicaCount is not set, the default value is minReplicaCount. The max allowed replica count is 1000.
|
2728
|
-
The maximum number of replicas this DeployedModel may be deployed on when the traffic against it increases. If the requested value is too large, the deployment will error, but if deployment succeeds then the ability to scale the model to that many replicas is guaranteed (barring service outages). If traffic against the DeployedModel increases beyond what its replicas at maximum may handle, a portion of the traffic will be dropped. If this value is not provided, a no upper bound for scaling under heavy traffic will be assume, though Vertex AI may be unable to scale beyond certain replica number.
|
2729
|
-
:param pulumi.Input[int] min_replica_count: The minimum number of replicas this DeployedModel will be always deployed on. If minReplicaCount is not set, the default value is 2 (we don't provide SLA when minReplicaCount=1).
|
2730
|
-
If traffic against it increases, it may dynamically be deployed onto more replicas up to [maxReplicaCount](https://cloud.google.com/vertex-ai/docs/reference/rest/v1/AutomaticResources#FIELDS.max_replica_count), and as traffic decreases, some of these extra replicas may be freed. If the requested value is too large, the deployment will error.
|
2731
|
-
"""
|
2732
|
-
if max_replica_count is not None:
|
2733
|
-
pulumi.set(__self__, "max_replica_count", max_replica_count)
|
2734
|
-
if min_replica_count is not None:
|
2735
|
-
pulumi.set(__self__, "min_replica_count", min_replica_count)
|
2736
|
-
|
2737
|
-
@property
|
2738
|
-
@pulumi.getter(name="maxReplicaCount")
|
2739
|
-
def max_replica_count(self) -> Optional[pulumi.Input[int]]:
|
2740
|
-
"""
|
2741
|
-
The maximum number of replicas this DeployedModel may be deployed on when the traffic against it increases. If maxReplicaCount is not set, the default value is minReplicaCount. The max allowed replica count is 1000.
|
2742
|
-
The maximum number of replicas this DeployedModel may be deployed on when the traffic against it increases. If the requested value is too large, the deployment will error, but if deployment succeeds then the ability to scale the model to that many replicas is guaranteed (barring service outages). If traffic against the DeployedModel increases beyond what its replicas at maximum may handle, a portion of the traffic will be dropped. If this value is not provided, a no upper bound for scaling under heavy traffic will be assume, though Vertex AI may be unable to scale beyond certain replica number.
|
2743
|
-
"""
|
2744
|
-
return pulumi.get(self, "max_replica_count")
|
2745
|
-
|
2746
|
-
@max_replica_count.setter
|
2747
|
-
def max_replica_count(self, value: Optional[pulumi.Input[int]]):
|
2748
|
-
pulumi.set(self, "max_replica_count", value)
|
2749
|
-
|
2750
|
-
@property
|
2751
|
-
@pulumi.getter(name="minReplicaCount")
|
2752
|
-
def min_replica_count(self) -> Optional[pulumi.Input[int]]:
|
2753
|
-
"""
|
2754
|
-
The minimum number of replicas this DeployedModel will be always deployed on. If minReplicaCount is not set, the default value is 2 (we don't provide SLA when minReplicaCount=1).
|
2755
|
-
If traffic against it increases, it may dynamically be deployed onto more replicas up to [maxReplicaCount](https://cloud.google.com/vertex-ai/docs/reference/rest/v1/AutomaticResources#FIELDS.max_replica_count), and as traffic decreases, some of these extra replicas may be freed. If the requested value is too large, the deployment will error.
|
2756
|
-
"""
|
2757
|
-
return pulumi.get(self, "min_replica_count")
|
2758
|
-
|
2759
|
-
@min_replica_count.setter
|
2760
|
-
def min_replica_count(self, value: Optional[pulumi.Input[int]]):
|
2761
|
-
pulumi.set(self, "min_replica_count", value)
|
2762
|
-
|
2763
|
-
|
2764
|
-
if not MYPY:
|
2765
|
-
class AiIndexEndpointDeployedIndexDedicatedResourcesArgsDict(TypedDict):
|
2766
|
-
machine_spec: pulumi.Input['AiIndexEndpointDeployedIndexDedicatedResourcesMachineSpecArgsDict']
|
2767
|
-
"""
|
2768
|
-
The minimum number of replicas this DeployedModel will be always deployed on.
|
2769
|
-
Structure is documented below.
|
2770
|
-
"""
|
2771
|
-
min_replica_count: pulumi.Input[int]
|
2772
|
-
"""
|
2773
|
-
The minimum number of machine replicas this DeployedModel will be always deployed on. This value must be greater than or equal to 1.
|
2774
|
-
"""
|
2775
|
-
max_replica_count: NotRequired[pulumi.Input[int]]
|
2776
|
-
"""
|
2777
|
-
The maximum number of replicas this DeployedModel may be deployed on when the traffic against it increases. If maxReplicaCount is not set, the default value is minReplicaCount
|
2778
|
-
"""
|
2779
|
-
elif False:
|
2780
|
-
AiIndexEndpointDeployedIndexDedicatedResourcesArgsDict: TypeAlias = Mapping[str, Any]
|
2781
|
-
|
2782
|
-
@pulumi.input_type
|
2783
|
-
class AiIndexEndpointDeployedIndexDedicatedResourcesArgs:
|
2784
|
-
def __init__(__self__, *,
|
2785
|
-
machine_spec: pulumi.Input['AiIndexEndpointDeployedIndexDedicatedResourcesMachineSpecArgs'],
|
2786
|
-
min_replica_count: pulumi.Input[int],
|
2787
|
-
max_replica_count: Optional[pulumi.Input[int]] = None):
|
2788
|
-
"""
|
2789
|
-
:param pulumi.Input['AiIndexEndpointDeployedIndexDedicatedResourcesMachineSpecArgs'] machine_spec: The minimum number of replicas this DeployedModel will be always deployed on.
|
2790
|
-
Structure is documented below.
|
2791
|
-
:param pulumi.Input[int] min_replica_count: The minimum number of machine replicas this DeployedModel will be always deployed on. This value must be greater than or equal to 1.
|
2792
|
-
:param pulumi.Input[int] max_replica_count: The maximum number of replicas this DeployedModel may be deployed on when the traffic against it increases. If maxReplicaCount is not set, the default value is minReplicaCount
|
2793
|
-
"""
|
2794
|
-
pulumi.set(__self__, "machine_spec", machine_spec)
|
2795
|
-
pulumi.set(__self__, "min_replica_count", min_replica_count)
|
2796
|
-
if max_replica_count is not None:
|
2797
|
-
pulumi.set(__self__, "max_replica_count", max_replica_count)
|
2798
|
-
|
2799
|
-
@property
|
2800
|
-
@pulumi.getter(name="machineSpec")
|
2801
|
-
def machine_spec(self) -> pulumi.Input['AiIndexEndpointDeployedIndexDedicatedResourcesMachineSpecArgs']:
|
2802
|
-
"""
|
2803
|
-
The minimum number of replicas this DeployedModel will be always deployed on.
|
2804
|
-
Structure is documented below.
|
2805
|
-
"""
|
2806
|
-
return pulumi.get(self, "machine_spec")
|
2807
|
-
|
2808
|
-
@machine_spec.setter
|
2809
|
-
def machine_spec(self, value: pulumi.Input['AiIndexEndpointDeployedIndexDedicatedResourcesMachineSpecArgs']):
|
2810
|
-
pulumi.set(self, "machine_spec", value)
|
2811
|
-
|
2812
|
-
@property
|
2813
|
-
@pulumi.getter(name="minReplicaCount")
|
2814
|
-
def min_replica_count(self) -> pulumi.Input[int]:
|
2815
|
-
"""
|
2816
|
-
The minimum number of machine replicas this DeployedModel will be always deployed on. This value must be greater than or equal to 1.
|
2817
|
-
"""
|
2818
|
-
return pulumi.get(self, "min_replica_count")
|
2819
|
-
|
2820
|
-
@min_replica_count.setter
|
2821
|
-
def min_replica_count(self, value: pulumi.Input[int]):
|
2822
|
-
pulumi.set(self, "min_replica_count", value)
|
2823
|
-
|
2824
|
-
@property
|
2825
|
-
@pulumi.getter(name="maxReplicaCount")
|
2826
|
-
def max_replica_count(self) -> Optional[pulumi.Input[int]]:
|
2827
|
-
"""
|
2828
|
-
The maximum number of replicas this DeployedModel may be deployed on when the traffic against it increases. If maxReplicaCount is not set, the default value is minReplicaCount
|
2829
|
-
"""
|
2830
|
-
return pulumi.get(self, "max_replica_count")
|
2831
|
-
|
2832
|
-
@max_replica_count.setter
|
2833
|
-
def max_replica_count(self, value: Optional[pulumi.Input[int]]):
|
2834
|
-
pulumi.set(self, "max_replica_count", value)
|
2835
|
-
|
2836
|
-
|
2837
|
-
if not MYPY:
|
2838
|
-
class AiIndexEndpointDeployedIndexDedicatedResourcesMachineSpecArgsDict(TypedDict):
|
2839
|
-
machine_type: NotRequired[pulumi.Input[str]]
|
2840
|
-
"""
|
2841
|
-
The type of the machine.
|
2842
|
-
See the [list of machine types supported for prediction](https://cloud.google.com/vertex-ai/docs/predictions/configure-compute#machine-types)
|
2843
|
-
See the [list of machine types supported for custom training](https://cloud.google.com/vertex-ai/docs/training/configure-compute#machine-types).
|
2844
|
-
For [DeployedModel](https://cloud.google.com/vertex-ai/docs/reference/rest/v1/projects.locations.endpoints#DeployedModel) this field is optional, and the default value is n1-standard-2. For [BatchPredictionJob](https://cloud.google.com/vertex-ai/docs/reference/rest/v1/projects.locations.batchPredictionJobs#BatchPredictionJob) or as part of [WorkerPoolSpec](https://cloud.google.com/vertex-ai/docs/reference/rest/v1/CustomJobSpec#WorkerPoolSpec) this field is required.
|
2845
|
-
"""
|
2846
|
-
elif False:
|
2847
|
-
AiIndexEndpointDeployedIndexDedicatedResourcesMachineSpecArgsDict: TypeAlias = Mapping[str, Any]
|
2848
|
-
|
2849
|
-
@pulumi.input_type
|
2850
|
-
class AiIndexEndpointDeployedIndexDedicatedResourcesMachineSpecArgs:
|
2851
|
-
def __init__(__self__, *,
|
2852
|
-
machine_type: Optional[pulumi.Input[str]] = None):
|
2853
|
-
"""
|
2854
|
-
:param pulumi.Input[str] machine_type: The type of the machine.
|
2855
|
-
See the [list of machine types supported for prediction](https://cloud.google.com/vertex-ai/docs/predictions/configure-compute#machine-types)
|
2856
|
-
See the [list of machine types supported for custom training](https://cloud.google.com/vertex-ai/docs/training/configure-compute#machine-types).
|
2857
|
-
For [DeployedModel](https://cloud.google.com/vertex-ai/docs/reference/rest/v1/projects.locations.endpoints#DeployedModel) this field is optional, and the default value is n1-standard-2. For [BatchPredictionJob](https://cloud.google.com/vertex-ai/docs/reference/rest/v1/projects.locations.batchPredictionJobs#BatchPredictionJob) or as part of [WorkerPoolSpec](https://cloud.google.com/vertex-ai/docs/reference/rest/v1/CustomJobSpec#WorkerPoolSpec) this field is required.
|
2858
|
-
"""
|
2859
|
-
if machine_type is not None:
|
2860
|
-
pulumi.set(__self__, "machine_type", machine_type)
|
2861
|
-
|
2862
|
-
@property
|
2863
|
-
@pulumi.getter(name="machineType")
|
2864
|
-
def machine_type(self) -> Optional[pulumi.Input[str]]:
|
2865
|
-
"""
|
2866
|
-
The type of the machine.
|
2867
|
-
See the [list of machine types supported for prediction](https://cloud.google.com/vertex-ai/docs/predictions/configure-compute#machine-types)
|
2868
|
-
See the [list of machine types supported for custom training](https://cloud.google.com/vertex-ai/docs/training/configure-compute#machine-types).
|
2869
|
-
For [DeployedModel](https://cloud.google.com/vertex-ai/docs/reference/rest/v1/projects.locations.endpoints#DeployedModel) this field is optional, and the default value is n1-standard-2. For [BatchPredictionJob](https://cloud.google.com/vertex-ai/docs/reference/rest/v1/projects.locations.batchPredictionJobs#BatchPredictionJob) or as part of [WorkerPoolSpec](https://cloud.google.com/vertex-ai/docs/reference/rest/v1/CustomJobSpec#WorkerPoolSpec) this field is required.
|
2870
|
-
"""
|
2871
|
-
return pulumi.get(self, "machine_type")
|
2872
|
-
|
2873
|
-
@machine_type.setter
|
2874
|
-
def machine_type(self, value: Optional[pulumi.Input[str]]):
|
2875
|
-
pulumi.set(self, "machine_type", value)
|
2876
|
-
|
2877
|
-
|
2878
|
-
if not MYPY:
|
2879
|
-
class AiIndexEndpointDeployedIndexDeployedIndexAuthConfigArgsDict(TypedDict):
|
2880
|
-
auth_provider: NotRequired[pulumi.Input['AiIndexEndpointDeployedIndexDeployedIndexAuthConfigAuthProviderArgsDict']]
|
2881
|
-
"""
|
2882
|
-
Defines the authentication provider that the DeployedIndex uses.
|
2883
|
-
Structure is documented below.
|
2884
|
-
"""
|
2885
|
-
elif False:
|
2886
|
-
AiIndexEndpointDeployedIndexDeployedIndexAuthConfigArgsDict: TypeAlias = Mapping[str, Any]
|
2887
|
-
|
2888
|
-
@pulumi.input_type
|
2889
|
-
class AiIndexEndpointDeployedIndexDeployedIndexAuthConfigArgs:
|
2890
|
-
def __init__(__self__, *,
|
2891
|
-
auth_provider: Optional[pulumi.Input['AiIndexEndpointDeployedIndexDeployedIndexAuthConfigAuthProviderArgs']] = None):
|
2892
|
-
"""
|
2893
|
-
:param pulumi.Input['AiIndexEndpointDeployedIndexDeployedIndexAuthConfigAuthProviderArgs'] auth_provider: Defines the authentication provider that the DeployedIndex uses.
|
2894
|
-
Structure is documented below.
|
2895
|
-
"""
|
2896
|
-
if auth_provider is not None:
|
2897
|
-
pulumi.set(__self__, "auth_provider", auth_provider)
|
2898
|
-
|
2899
|
-
@property
|
2900
|
-
@pulumi.getter(name="authProvider")
|
2901
|
-
def auth_provider(self) -> Optional[pulumi.Input['AiIndexEndpointDeployedIndexDeployedIndexAuthConfigAuthProviderArgs']]:
|
2902
|
-
"""
|
2903
|
-
Defines the authentication provider that the DeployedIndex uses.
|
2904
|
-
Structure is documented below.
|
2905
|
-
"""
|
2906
|
-
return pulumi.get(self, "auth_provider")
|
2907
|
-
|
2908
|
-
@auth_provider.setter
|
2909
|
-
def auth_provider(self, value: Optional[pulumi.Input['AiIndexEndpointDeployedIndexDeployedIndexAuthConfigAuthProviderArgs']]):
|
2910
|
-
pulumi.set(self, "auth_provider", value)
|
2911
|
-
|
2912
|
-
|
2913
|
-
if not MYPY:
|
2914
|
-
class AiIndexEndpointDeployedIndexDeployedIndexAuthConfigAuthProviderArgsDict(TypedDict):
|
2915
|
-
allowed_issuers: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
2916
|
-
"""
|
2917
|
-
A list of allowed JWT issuers. Each entry must be a valid Google service account, in the following format: service-account-name@project-id.iam.gserviceaccount.com
|
2918
|
-
"""
|
2919
|
-
audiences: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
2920
|
-
"""
|
2921
|
-
The list of JWT audiences. that are allowed to access. A JWT containing any of these audiences will be accepted.
|
2922
|
-
"""
|
2923
|
-
elif False:
|
2924
|
-
AiIndexEndpointDeployedIndexDeployedIndexAuthConfigAuthProviderArgsDict: TypeAlias = Mapping[str, Any]
|
2925
|
-
|
2926
|
-
@pulumi.input_type
|
2927
|
-
class AiIndexEndpointDeployedIndexDeployedIndexAuthConfigAuthProviderArgs:
|
2928
|
-
def __init__(__self__, *,
|
2929
|
-
allowed_issuers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
2930
|
-
audiences: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
2931
|
-
"""
|
2932
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_issuers: A list of allowed JWT issuers. Each entry must be a valid Google service account, in the following format: service-account-name@project-id.iam.gserviceaccount.com
|
2933
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] audiences: The list of JWT audiences. that are allowed to access. A JWT containing any of these audiences will be accepted.
|
2934
|
-
"""
|
2935
|
-
if allowed_issuers is not None:
|
2936
|
-
pulumi.set(__self__, "allowed_issuers", allowed_issuers)
|
2937
|
-
if audiences is not None:
|
2938
|
-
pulumi.set(__self__, "audiences", audiences)
|
2939
|
-
|
2940
|
-
@property
|
2941
|
-
@pulumi.getter(name="allowedIssuers")
|
2942
|
-
def allowed_issuers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
2943
|
-
"""
|
2944
|
-
A list of allowed JWT issuers. Each entry must be a valid Google service account, in the following format: service-account-name@project-id.iam.gserviceaccount.com
|
2945
|
-
"""
|
2946
|
-
return pulumi.get(self, "allowed_issuers")
|
2947
|
-
|
2948
|
-
@allowed_issuers.setter
|
2949
|
-
def allowed_issuers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
2950
|
-
pulumi.set(self, "allowed_issuers", value)
|
2951
|
-
|
2952
|
-
@property
|
2953
|
-
@pulumi.getter
|
2954
|
-
def audiences(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
2955
|
-
"""
|
2956
|
-
The list of JWT audiences. that are allowed to access. A JWT containing any of these audiences will be accepted.
|
2957
|
-
"""
|
2958
|
-
return pulumi.get(self, "audiences")
|
2959
|
-
|
2960
|
-
@audiences.setter
|
2961
|
-
def audiences(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
2962
|
-
pulumi.set(self, "audiences", value)
|
2963
|
-
|
2964
|
-
|
2965
|
-
if not MYPY:
|
2966
|
-
class AiIndexEndpointDeployedIndexPrivateEndpointArgsDict(TypedDict):
|
2967
|
-
match_grpc_address: NotRequired[pulumi.Input[str]]
|
2968
|
-
"""
|
2969
|
-
(Output)
|
2970
|
-
The ip address used to send match gRPC requests.
|
2971
|
-
"""
|
2972
|
-
psc_automated_endpoints: NotRequired[pulumi.Input[Sequence[pulumi.Input['AiIndexEndpointDeployedIndexPrivateEndpointPscAutomatedEndpointArgsDict']]]]
|
2973
|
-
"""
|
2974
|
-
(Output)
|
2975
|
-
PscAutomatedEndpoints is populated if private service connect is enabled if PscAutomatedConfig is set.
|
2976
|
-
Structure is documented below.
|
2977
|
-
"""
|
2978
|
-
service_attachment: NotRequired[pulumi.Input[str]]
|
2979
|
-
"""
|
2980
|
-
(Output)
|
2981
|
-
The name of the service attachment resource. Populated if private service connect is enabled.
|
2982
|
-
"""
|
2983
|
-
elif False:
|
2984
|
-
AiIndexEndpointDeployedIndexPrivateEndpointArgsDict: TypeAlias = Mapping[str, Any]
|
2985
|
-
|
2986
|
-
@pulumi.input_type
|
2987
|
-
class AiIndexEndpointDeployedIndexPrivateEndpointArgs:
|
2988
|
-
def __init__(__self__, *,
|
2989
|
-
match_grpc_address: Optional[pulumi.Input[str]] = None,
|
2990
|
-
psc_automated_endpoints: Optional[pulumi.Input[Sequence[pulumi.Input['AiIndexEndpointDeployedIndexPrivateEndpointPscAutomatedEndpointArgs']]]] = None,
|
2991
|
-
service_attachment: Optional[pulumi.Input[str]] = None):
|
2992
|
-
"""
|
2993
|
-
:param pulumi.Input[str] match_grpc_address: (Output)
|
2994
|
-
The ip address used to send match gRPC requests.
|
2995
|
-
:param pulumi.Input[Sequence[pulumi.Input['AiIndexEndpointDeployedIndexPrivateEndpointPscAutomatedEndpointArgs']]] psc_automated_endpoints: (Output)
|
2996
|
-
PscAutomatedEndpoints is populated if private service connect is enabled if PscAutomatedConfig is set.
|
2997
|
-
Structure is documented below.
|
2998
|
-
:param pulumi.Input[str] service_attachment: (Output)
|
2999
|
-
The name of the service attachment resource. Populated if private service connect is enabled.
|
3000
|
-
"""
|
3001
|
-
if match_grpc_address is not None:
|
3002
|
-
pulumi.set(__self__, "match_grpc_address", match_grpc_address)
|
3003
|
-
if psc_automated_endpoints is not None:
|
3004
|
-
pulumi.set(__self__, "psc_automated_endpoints", psc_automated_endpoints)
|
3005
|
-
if service_attachment is not None:
|
3006
|
-
pulumi.set(__self__, "service_attachment", service_attachment)
|
3007
|
-
|
3008
|
-
@property
|
3009
|
-
@pulumi.getter(name="matchGrpcAddress")
|
3010
|
-
def match_grpc_address(self) -> Optional[pulumi.Input[str]]:
|
3011
|
-
"""
|
3012
|
-
(Output)
|
3013
|
-
The ip address used to send match gRPC requests.
|
3014
|
-
"""
|
3015
|
-
return pulumi.get(self, "match_grpc_address")
|
3016
|
-
|
3017
|
-
@match_grpc_address.setter
|
3018
|
-
def match_grpc_address(self, value: Optional[pulumi.Input[str]]):
|
3019
|
-
pulumi.set(self, "match_grpc_address", value)
|
3020
|
-
|
3021
|
-
@property
|
3022
|
-
@pulumi.getter(name="pscAutomatedEndpoints")
|
3023
|
-
def psc_automated_endpoints(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AiIndexEndpointDeployedIndexPrivateEndpointPscAutomatedEndpointArgs']]]]:
|
3024
|
-
"""
|
3025
|
-
(Output)
|
3026
|
-
PscAutomatedEndpoints is populated if private service connect is enabled if PscAutomatedConfig is set.
|
3027
|
-
Structure is documented below.
|
3028
|
-
"""
|
3029
|
-
return pulumi.get(self, "psc_automated_endpoints")
|
3030
|
-
|
3031
|
-
@psc_automated_endpoints.setter
|
3032
|
-
def psc_automated_endpoints(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AiIndexEndpointDeployedIndexPrivateEndpointPscAutomatedEndpointArgs']]]]):
|
3033
|
-
pulumi.set(self, "psc_automated_endpoints", value)
|
3034
|
-
|
3035
|
-
@property
|
3036
|
-
@pulumi.getter(name="serviceAttachment")
|
3037
|
-
def service_attachment(self) -> Optional[pulumi.Input[str]]:
|
3038
|
-
"""
|
3039
|
-
(Output)
|
3040
|
-
The name of the service attachment resource. Populated if private service connect is enabled.
|
3041
|
-
"""
|
3042
|
-
return pulumi.get(self, "service_attachment")
|
3043
|
-
|
3044
|
-
@service_attachment.setter
|
3045
|
-
def service_attachment(self, value: Optional[pulumi.Input[str]]):
|
3046
|
-
pulumi.set(self, "service_attachment", value)
|
3047
|
-
|
3048
|
-
|
3049
|
-
if not MYPY:
|
3050
|
-
class AiIndexEndpointDeployedIndexPrivateEndpointPscAutomatedEndpointArgsDict(TypedDict):
|
3051
|
-
match_address: NotRequired[pulumi.Input[str]]
|
3052
|
-
"""
|
3053
|
-
(Output)
|
3054
|
-
ip Address created by the automated forwarding rule.
|
3055
|
-
"""
|
3056
|
-
network: NotRequired[pulumi.Input[str]]
|
3057
|
-
"""
|
3058
|
-
(Output)
|
3059
|
-
Corresponding network in pscAutomationConfigs.
|
3060
|
-
"""
|
3061
|
-
project_id: NotRequired[pulumi.Input[str]]
|
3062
|
-
"""
|
3063
|
-
(Output)
|
3064
|
-
Corresponding projectId in pscAutomationConfigs
|
3065
|
-
"""
|
3066
|
-
elif False:
|
3067
|
-
AiIndexEndpointDeployedIndexPrivateEndpointPscAutomatedEndpointArgsDict: TypeAlias = Mapping[str, Any]
|
3068
|
-
|
3069
|
-
@pulumi.input_type
|
3070
|
-
class AiIndexEndpointDeployedIndexPrivateEndpointPscAutomatedEndpointArgs:
|
3071
|
-
def __init__(__self__, *,
|
3072
|
-
match_address: Optional[pulumi.Input[str]] = None,
|
3073
|
-
network: Optional[pulumi.Input[str]] = None,
|
3074
|
-
project_id: Optional[pulumi.Input[str]] = None):
|
3075
|
-
"""
|
3076
|
-
:param pulumi.Input[str] match_address: (Output)
|
3077
|
-
ip Address created by the automated forwarding rule.
|
3078
|
-
:param pulumi.Input[str] network: (Output)
|
3079
|
-
Corresponding network in pscAutomationConfigs.
|
3080
|
-
:param pulumi.Input[str] project_id: (Output)
|
3081
|
-
Corresponding projectId in pscAutomationConfigs
|
3082
|
-
"""
|
3083
|
-
if match_address is not None:
|
3084
|
-
pulumi.set(__self__, "match_address", match_address)
|
3085
|
-
if network is not None:
|
3086
|
-
pulumi.set(__self__, "network", network)
|
3087
|
-
if project_id is not None:
|
3088
|
-
pulumi.set(__self__, "project_id", project_id)
|
3089
|
-
|
3090
|
-
@property
|
3091
|
-
@pulumi.getter(name="matchAddress")
|
3092
|
-
def match_address(self) -> Optional[pulumi.Input[str]]:
|
3093
|
-
"""
|
3094
|
-
(Output)
|
3095
|
-
ip Address created by the automated forwarding rule.
|
3096
|
-
"""
|
3097
|
-
return pulumi.get(self, "match_address")
|
3098
|
-
|
3099
|
-
@match_address.setter
|
3100
|
-
def match_address(self, value: Optional[pulumi.Input[str]]):
|
3101
|
-
pulumi.set(self, "match_address", value)
|
3102
|
-
|
3103
|
-
@property
|
3104
|
-
@pulumi.getter
|
3105
|
-
def network(self) -> Optional[pulumi.Input[str]]:
|
3106
|
-
"""
|
3107
|
-
(Output)
|
3108
|
-
Corresponding network in pscAutomationConfigs.
|
3109
|
-
"""
|
3110
|
-
return pulumi.get(self, "network")
|
3111
|
-
|
3112
|
-
@network.setter
|
3113
|
-
def network(self, value: Optional[pulumi.Input[str]]):
|
3114
|
-
pulumi.set(self, "network", value)
|
3115
|
-
|
3116
|
-
@property
|
3117
|
-
@pulumi.getter(name="projectId")
|
3118
|
-
def project_id(self) -> Optional[pulumi.Input[str]]:
|
3119
|
-
"""
|
3120
|
-
(Output)
|
3121
|
-
Corresponding projectId in pscAutomationConfigs
|
3122
|
-
"""
|
3123
|
-
return pulumi.get(self, "project_id")
|
3124
|
-
|
3125
|
-
@project_id.setter
|
3126
|
-
def project_id(self, value: Optional[pulumi.Input[str]]):
|
3127
|
-
pulumi.set(self, "project_id", value)
|
3128
|
-
|
3129
|
-
|
3130
2692
|
if not MYPY:
|
3131
2693
|
class AiIndexEndpointPrivateServiceConnectConfigArgsDict(TypedDict):
|
3132
2694
|
enable_private_service_connect: pulumi.Input[bool]
|