pulumi-gcp 7.38.0a1724220350__py3-none-any.whl → 7.38.0a1724673520__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/appengine/flexible_app_version.py +8 -0
- pulumi_gcp/applicationintegration/client.py +2 -2
- pulumi_gcp/artifactregistry/__init__.py +1 -0
- pulumi_gcp/artifactregistry/get_locations.py +167 -0
- pulumi_gcp/bigquery/connection.py +12 -0
- pulumi_gcp/clouddeploy/_inputs.py +41 -1
- pulumi_gcp/clouddeploy/outputs.py +29 -1
- pulumi_gcp/cloudfunctionsv2/function.py +2 -0
- pulumi_gcp/cloudidentity/__init__.py +1 -0
- pulumi_gcp/cloudidentity/get_group_memberships.py +12 -0
- pulumi_gcp/cloudidentity/get_group_transitive_memberships.py +93 -0
- pulumi_gcp/cloudidentity/outputs.py +131 -0
- pulumi_gcp/compute/_inputs.py +36 -30
- pulumi_gcp/compute/outputs.py +48 -38
- pulumi_gcp/compute/region_network_endpoint_group.py +8 -0
- pulumi_gcp/compute/subnetwork.py +82 -0
- pulumi_gcp/container/_inputs.py +15 -18
- pulumi_gcp/container/attached_cluster.py +14 -7
- pulumi_gcp/container/outputs.py +10 -12
- pulumi_gcp/discoveryengine/__init__.py +1 -0
- pulumi_gcp/discoveryengine/schema.py +524 -0
- pulumi_gcp/dns/_inputs.py +80 -76
- pulumi_gcp/dns/outputs.py +56 -52
- 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 +215 -15
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/__init__.py +2 -0
- pulumi_gcp/securitycenter/_inputs.py +186 -0
- pulumi_gcp/securitycenter/folder_notification_config.py +486 -0
- pulumi_gcp/securitycenter/outputs.py +118 -0
- pulumi_gcp/securitycenter/v2_folder_notification_config.py +575 -0
- pulumi_gcp/servicenetworking/connection.py +50 -3
- pulumi_gcp/sql/_inputs.py +20 -0
- pulumi_gcp/sql/outputs.py +36 -0
- pulumi_gcp/vertex/__init__.py +1 -0
- pulumi_gcp/vertex/_inputs.py +438 -0
- pulumi_gcp/vertex/ai_index_endpoint_deployed_index.py +1170 -0
- pulumi_gcp/vertex/outputs.py +393 -0
- {pulumi_gcp-7.38.0a1724220350.dist-info → pulumi_gcp-7.38.0a1724673520.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.38.0a1724220350.dist-info → pulumi_gcp-7.38.0a1724673520.dist-info}/RECORD +46 -40
- {pulumi_gcp-7.38.0a1724220350.dist-info → pulumi_gcp-7.38.0a1724673520.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.38.0a1724220350.dist-info → pulumi_gcp-7.38.0a1724673520.dist-info}/top_level.txt +0 -0
pulumi_gcp/vertex/outputs.py
CHANGED
@@ -57,6 +57,13 @@ __all__ = [
|
|
57
57
|
'AiFeatureStoreOnlineServingConfig',
|
58
58
|
'AiFeatureStoreOnlineServingConfigScaling',
|
59
59
|
'AiIndexDeployedIndex',
|
60
|
+
'AiIndexEndpointDeployedIndexAutomaticResources',
|
61
|
+
'AiIndexEndpointDeployedIndexDedicatedResources',
|
62
|
+
'AiIndexEndpointDeployedIndexDedicatedResourcesMachineSpec',
|
63
|
+
'AiIndexEndpointDeployedIndexDeployedIndexAuthConfig',
|
64
|
+
'AiIndexEndpointDeployedIndexDeployedIndexAuthConfigAuthProvider',
|
65
|
+
'AiIndexEndpointDeployedIndexPrivateEndpoint',
|
66
|
+
'AiIndexEndpointDeployedIndexPrivateEndpointPscAutomatedEndpoint',
|
60
67
|
'AiIndexEndpointPrivateServiceConnectConfig',
|
61
68
|
'AiIndexIndexStat',
|
62
69
|
'AiIndexMetadata',
|
@@ -2184,6 +2191,392 @@ class AiIndexDeployedIndex(dict):
|
|
2184
2191
|
return pulumi.get(self, "index_endpoint")
|
2185
2192
|
|
2186
2193
|
|
2194
|
+
@pulumi.output_type
|
2195
|
+
class AiIndexEndpointDeployedIndexAutomaticResources(dict):
|
2196
|
+
@staticmethod
|
2197
|
+
def __key_warning(key: str):
|
2198
|
+
suggest = None
|
2199
|
+
if key == "maxReplicaCount":
|
2200
|
+
suggest = "max_replica_count"
|
2201
|
+
elif key == "minReplicaCount":
|
2202
|
+
suggest = "min_replica_count"
|
2203
|
+
|
2204
|
+
if suggest:
|
2205
|
+
pulumi.log.warn(f"Key '{key}' not found in AiIndexEndpointDeployedIndexAutomaticResources. Access the value via the '{suggest}' property getter instead.")
|
2206
|
+
|
2207
|
+
def __getitem__(self, key: str) -> Any:
|
2208
|
+
AiIndexEndpointDeployedIndexAutomaticResources.__key_warning(key)
|
2209
|
+
return super().__getitem__(key)
|
2210
|
+
|
2211
|
+
def get(self, key: str, default = None) -> Any:
|
2212
|
+
AiIndexEndpointDeployedIndexAutomaticResources.__key_warning(key)
|
2213
|
+
return super().get(key, default)
|
2214
|
+
|
2215
|
+
def __init__(__self__, *,
|
2216
|
+
max_replica_count: Optional[int] = None,
|
2217
|
+
min_replica_count: Optional[int] = None):
|
2218
|
+
"""
|
2219
|
+
:param 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.
|
2220
|
+
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.
|
2221
|
+
:param 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).
|
2222
|
+
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.
|
2223
|
+
"""
|
2224
|
+
if max_replica_count is not None:
|
2225
|
+
pulumi.set(__self__, "max_replica_count", max_replica_count)
|
2226
|
+
if min_replica_count is not None:
|
2227
|
+
pulumi.set(__self__, "min_replica_count", min_replica_count)
|
2228
|
+
|
2229
|
+
@property
|
2230
|
+
@pulumi.getter(name="maxReplicaCount")
|
2231
|
+
def max_replica_count(self) -> Optional[int]:
|
2232
|
+
"""
|
2233
|
+
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.
|
2234
|
+
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.
|
2235
|
+
"""
|
2236
|
+
return pulumi.get(self, "max_replica_count")
|
2237
|
+
|
2238
|
+
@property
|
2239
|
+
@pulumi.getter(name="minReplicaCount")
|
2240
|
+
def min_replica_count(self) -> Optional[int]:
|
2241
|
+
"""
|
2242
|
+
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).
|
2243
|
+
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.
|
2244
|
+
"""
|
2245
|
+
return pulumi.get(self, "min_replica_count")
|
2246
|
+
|
2247
|
+
|
2248
|
+
@pulumi.output_type
|
2249
|
+
class AiIndexEndpointDeployedIndexDedicatedResources(dict):
|
2250
|
+
@staticmethod
|
2251
|
+
def __key_warning(key: str):
|
2252
|
+
suggest = None
|
2253
|
+
if key == "machineSpec":
|
2254
|
+
suggest = "machine_spec"
|
2255
|
+
elif key == "minReplicaCount":
|
2256
|
+
suggest = "min_replica_count"
|
2257
|
+
elif key == "maxReplicaCount":
|
2258
|
+
suggest = "max_replica_count"
|
2259
|
+
|
2260
|
+
if suggest:
|
2261
|
+
pulumi.log.warn(f"Key '{key}' not found in AiIndexEndpointDeployedIndexDedicatedResources. Access the value via the '{suggest}' property getter instead.")
|
2262
|
+
|
2263
|
+
def __getitem__(self, key: str) -> Any:
|
2264
|
+
AiIndexEndpointDeployedIndexDedicatedResources.__key_warning(key)
|
2265
|
+
return super().__getitem__(key)
|
2266
|
+
|
2267
|
+
def get(self, key: str, default = None) -> Any:
|
2268
|
+
AiIndexEndpointDeployedIndexDedicatedResources.__key_warning(key)
|
2269
|
+
return super().get(key, default)
|
2270
|
+
|
2271
|
+
def __init__(__self__, *,
|
2272
|
+
machine_spec: 'outputs.AiIndexEndpointDeployedIndexDedicatedResourcesMachineSpec',
|
2273
|
+
min_replica_count: int,
|
2274
|
+
max_replica_count: Optional[int] = None):
|
2275
|
+
"""
|
2276
|
+
:param 'AiIndexEndpointDeployedIndexDedicatedResourcesMachineSpecArgs' machine_spec: The minimum number of replicas this DeployedModel will be always deployed on.
|
2277
|
+
Structure is documented below.
|
2278
|
+
:param 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.
|
2279
|
+
:param 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
|
2280
|
+
"""
|
2281
|
+
pulumi.set(__self__, "machine_spec", machine_spec)
|
2282
|
+
pulumi.set(__self__, "min_replica_count", min_replica_count)
|
2283
|
+
if max_replica_count is not None:
|
2284
|
+
pulumi.set(__self__, "max_replica_count", max_replica_count)
|
2285
|
+
|
2286
|
+
@property
|
2287
|
+
@pulumi.getter(name="machineSpec")
|
2288
|
+
def machine_spec(self) -> 'outputs.AiIndexEndpointDeployedIndexDedicatedResourcesMachineSpec':
|
2289
|
+
"""
|
2290
|
+
The minimum number of replicas this DeployedModel will be always deployed on.
|
2291
|
+
Structure is documented below.
|
2292
|
+
"""
|
2293
|
+
return pulumi.get(self, "machine_spec")
|
2294
|
+
|
2295
|
+
@property
|
2296
|
+
@pulumi.getter(name="minReplicaCount")
|
2297
|
+
def min_replica_count(self) -> int:
|
2298
|
+
"""
|
2299
|
+
The minimum number of machine replicas this DeployedModel will be always deployed on. This value must be greater than or equal to 1.
|
2300
|
+
"""
|
2301
|
+
return pulumi.get(self, "min_replica_count")
|
2302
|
+
|
2303
|
+
@property
|
2304
|
+
@pulumi.getter(name="maxReplicaCount")
|
2305
|
+
def max_replica_count(self) -> Optional[int]:
|
2306
|
+
"""
|
2307
|
+
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
|
2308
|
+
"""
|
2309
|
+
return pulumi.get(self, "max_replica_count")
|
2310
|
+
|
2311
|
+
|
2312
|
+
@pulumi.output_type
|
2313
|
+
class AiIndexEndpointDeployedIndexDedicatedResourcesMachineSpec(dict):
|
2314
|
+
@staticmethod
|
2315
|
+
def __key_warning(key: str):
|
2316
|
+
suggest = None
|
2317
|
+
if key == "machineType":
|
2318
|
+
suggest = "machine_type"
|
2319
|
+
|
2320
|
+
if suggest:
|
2321
|
+
pulumi.log.warn(f"Key '{key}' not found in AiIndexEndpointDeployedIndexDedicatedResourcesMachineSpec. Access the value via the '{suggest}' property getter instead.")
|
2322
|
+
|
2323
|
+
def __getitem__(self, key: str) -> Any:
|
2324
|
+
AiIndexEndpointDeployedIndexDedicatedResourcesMachineSpec.__key_warning(key)
|
2325
|
+
return super().__getitem__(key)
|
2326
|
+
|
2327
|
+
def get(self, key: str, default = None) -> Any:
|
2328
|
+
AiIndexEndpointDeployedIndexDedicatedResourcesMachineSpec.__key_warning(key)
|
2329
|
+
return super().get(key, default)
|
2330
|
+
|
2331
|
+
def __init__(__self__, *,
|
2332
|
+
machine_type: Optional[str] = None):
|
2333
|
+
"""
|
2334
|
+
:param str machine_type: The type of the machine.
|
2335
|
+
See the [list of machine types supported for prediction](https://cloud.google.com/vertex-ai/docs/predictions/configure-compute#machine-types)
|
2336
|
+
See the [list of machine types supported for custom training](https://cloud.google.com/vertex-ai/docs/training/configure-compute#machine-types).
|
2337
|
+
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.
|
2338
|
+
"""
|
2339
|
+
if machine_type is not None:
|
2340
|
+
pulumi.set(__self__, "machine_type", machine_type)
|
2341
|
+
|
2342
|
+
@property
|
2343
|
+
@pulumi.getter(name="machineType")
|
2344
|
+
def machine_type(self) -> Optional[str]:
|
2345
|
+
"""
|
2346
|
+
The type of the machine.
|
2347
|
+
See the [list of machine types supported for prediction](https://cloud.google.com/vertex-ai/docs/predictions/configure-compute#machine-types)
|
2348
|
+
See the [list of machine types supported for custom training](https://cloud.google.com/vertex-ai/docs/training/configure-compute#machine-types).
|
2349
|
+
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.
|
2350
|
+
"""
|
2351
|
+
return pulumi.get(self, "machine_type")
|
2352
|
+
|
2353
|
+
|
2354
|
+
@pulumi.output_type
|
2355
|
+
class AiIndexEndpointDeployedIndexDeployedIndexAuthConfig(dict):
|
2356
|
+
@staticmethod
|
2357
|
+
def __key_warning(key: str):
|
2358
|
+
suggest = None
|
2359
|
+
if key == "authProvider":
|
2360
|
+
suggest = "auth_provider"
|
2361
|
+
|
2362
|
+
if suggest:
|
2363
|
+
pulumi.log.warn(f"Key '{key}' not found in AiIndexEndpointDeployedIndexDeployedIndexAuthConfig. Access the value via the '{suggest}' property getter instead.")
|
2364
|
+
|
2365
|
+
def __getitem__(self, key: str) -> Any:
|
2366
|
+
AiIndexEndpointDeployedIndexDeployedIndexAuthConfig.__key_warning(key)
|
2367
|
+
return super().__getitem__(key)
|
2368
|
+
|
2369
|
+
def get(self, key: str, default = None) -> Any:
|
2370
|
+
AiIndexEndpointDeployedIndexDeployedIndexAuthConfig.__key_warning(key)
|
2371
|
+
return super().get(key, default)
|
2372
|
+
|
2373
|
+
def __init__(__self__, *,
|
2374
|
+
auth_provider: Optional['outputs.AiIndexEndpointDeployedIndexDeployedIndexAuthConfigAuthProvider'] = None):
|
2375
|
+
"""
|
2376
|
+
:param 'AiIndexEndpointDeployedIndexDeployedIndexAuthConfigAuthProviderArgs' auth_provider: Defines the authentication provider that the DeployedIndex uses.
|
2377
|
+
Structure is documented below.
|
2378
|
+
"""
|
2379
|
+
if auth_provider is not None:
|
2380
|
+
pulumi.set(__self__, "auth_provider", auth_provider)
|
2381
|
+
|
2382
|
+
@property
|
2383
|
+
@pulumi.getter(name="authProvider")
|
2384
|
+
def auth_provider(self) -> Optional['outputs.AiIndexEndpointDeployedIndexDeployedIndexAuthConfigAuthProvider']:
|
2385
|
+
"""
|
2386
|
+
Defines the authentication provider that the DeployedIndex uses.
|
2387
|
+
Structure is documented below.
|
2388
|
+
"""
|
2389
|
+
return pulumi.get(self, "auth_provider")
|
2390
|
+
|
2391
|
+
|
2392
|
+
@pulumi.output_type
|
2393
|
+
class AiIndexEndpointDeployedIndexDeployedIndexAuthConfigAuthProvider(dict):
|
2394
|
+
@staticmethod
|
2395
|
+
def __key_warning(key: str):
|
2396
|
+
suggest = None
|
2397
|
+
if key == "allowedIssuers":
|
2398
|
+
suggest = "allowed_issuers"
|
2399
|
+
|
2400
|
+
if suggest:
|
2401
|
+
pulumi.log.warn(f"Key '{key}' not found in AiIndexEndpointDeployedIndexDeployedIndexAuthConfigAuthProvider. Access the value via the '{suggest}' property getter instead.")
|
2402
|
+
|
2403
|
+
def __getitem__(self, key: str) -> Any:
|
2404
|
+
AiIndexEndpointDeployedIndexDeployedIndexAuthConfigAuthProvider.__key_warning(key)
|
2405
|
+
return super().__getitem__(key)
|
2406
|
+
|
2407
|
+
def get(self, key: str, default = None) -> Any:
|
2408
|
+
AiIndexEndpointDeployedIndexDeployedIndexAuthConfigAuthProvider.__key_warning(key)
|
2409
|
+
return super().get(key, default)
|
2410
|
+
|
2411
|
+
def __init__(__self__, *,
|
2412
|
+
allowed_issuers: Optional[Sequence[str]] = None,
|
2413
|
+
audiences: Optional[Sequence[str]] = None):
|
2414
|
+
"""
|
2415
|
+
:param Sequence[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
|
2416
|
+
:param Sequence[str] audiences: The list of JWT audiences. that are allowed to access. A JWT containing any of these audiences will be accepted.
|
2417
|
+
"""
|
2418
|
+
if allowed_issuers is not None:
|
2419
|
+
pulumi.set(__self__, "allowed_issuers", allowed_issuers)
|
2420
|
+
if audiences is not None:
|
2421
|
+
pulumi.set(__self__, "audiences", audiences)
|
2422
|
+
|
2423
|
+
@property
|
2424
|
+
@pulumi.getter(name="allowedIssuers")
|
2425
|
+
def allowed_issuers(self) -> Optional[Sequence[str]]:
|
2426
|
+
"""
|
2427
|
+
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
|
2428
|
+
"""
|
2429
|
+
return pulumi.get(self, "allowed_issuers")
|
2430
|
+
|
2431
|
+
@property
|
2432
|
+
@pulumi.getter
|
2433
|
+
def audiences(self) -> Optional[Sequence[str]]:
|
2434
|
+
"""
|
2435
|
+
The list of JWT audiences. that are allowed to access. A JWT containing any of these audiences will be accepted.
|
2436
|
+
"""
|
2437
|
+
return pulumi.get(self, "audiences")
|
2438
|
+
|
2439
|
+
|
2440
|
+
@pulumi.output_type
|
2441
|
+
class AiIndexEndpointDeployedIndexPrivateEndpoint(dict):
|
2442
|
+
@staticmethod
|
2443
|
+
def __key_warning(key: str):
|
2444
|
+
suggest = None
|
2445
|
+
if key == "matchGrpcAddress":
|
2446
|
+
suggest = "match_grpc_address"
|
2447
|
+
elif key == "pscAutomatedEndpoints":
|
2448
|
+
suggest = "psc_automated_endpoints"
|
2449
|
+
elif key == "serviceAttachment":
|
2450
|
+
suggest = "service_attachment"
|
2451
|
+
|
2452
|
+
if suggest:
|
2453
|
+
pulumi.log.warn(f"Key '{key}' not found in AiIndexEndpointDeployedIndexPrivateEndpoint. Access the value via the '{suggest}' property getter instead.")
|
2454
|
+
|
2455
|
+
def __getitem__(self, key: str) -> Any:
|
2456
|
+
AiIndexEndpointDeployedIndexPrivateEndpoint.__key_warning(key)
|
2457
|
+
return super().__getitem__(key)
|
2458
|
+
|
2459
|
+
def get(self, key: str, default = None) -> Any:
|
2460
|
+
AiIndexEndpointDeployedIndexPrivateEndpoint.__key_warning(key)
|
2461
|
+
return super().get(key, default)
|
2462
|
+
|
2463
|
+
def __init__(__self__, *,
|
2464
|
+
match_grpc_address: Optional[str] = None,
|
2465
|
+
psc_automated_endpoints: Optional[Sequence['outputs.AiIndexEndpointDeployedIndexPrivateEndpointPscAutomatedEndpoint']] = None,
|
2466
|
+
service_attachment: Optional[str] = None):
|
2467
|
+
"""
|
2468
|
+
:param str match_grpc_address: (Output)
|
2469
|
+
The ip address used to send match gRPC requests.
|
2470
|
+
:param Sequence['AiIndexEndpointDeployedIndexPrivateEndpointPscAutomatedEndpointArgs'] psc_automated_endpoints: (Output)
|
2471
|
+
PscAutomatedEndpoints is populated if private service connect is enabled if PscAutomatedConfig is set.
|
2472
|
+
Structure is documented below.
|
2473
|
+
:param str service_attachment: (Output)
|
2474
|
+
The name of the service attachment resource. Populated if private service connect is enabled.
|
2475
|
+
"""
|
2476
|
+
if match_grpc_address is not None:
|
2477
|
+
pulumi.set(__self__, "match_grpc_address", match_grpc_address)
|
2478
|
+
if psc_automated_endpoints is not None:
|
2479
|
+
pulumi.set(__self__, "psc_automated_endpoints", psc_automated_endpoints)
|
2480
|
+
if service_attachment is not None:
|
2481
|
+
pulumi.set(__self__, "service_attachment", service_attachment)
|
2482
|
+
|
2483
|
+
@property
|
2484
|
+
@pulumi.getter(name="matchGrpcAddress")
|
2485
|
+
def match_grpc_address(self) -> Optional[str]:
|
2486
|
+
"""
|
2487
|
+
(Output)
|
2488
|
+
The ip address used to send match gRPC requests.
|
2489
|
+
"""
|
2490
|
+
return pulumi.get(self, "match_grpc_address")
|
2491
|
+
|
2492
|
+
@property
|
2493
|
+
@pulumi.getter(name="pscAutomatedEndpoints")
|
2494
|
+
def psc_automated_endpoints(self) -> Optional[Sequence['outputs.AiIndexEndpointDeployedIndexPrivateEndpointPscAutomatedEndpoint']]:
|
2495
|
+
"""
|
2496
|
+
(Output)
|
2497
|
+
PscAutomatedEndpoints is populated if private service connect is enabled if PscAutomatedConfig is set.
|
2498
|
+
Structure is documented below.
|
2499
|
+
"""
|
2500
|
+
return pulumi.get(self, "psc_automated_endpoints")
|
2501
|
+
|
2502
|
+
@property
|
2503
|
+
@pulumi.getter(name="serviceAttachment")
|
2504
|
+
def service_attachment(self) -> Optional[str]:
|
2505
|
+
"""
|
2506
|
+
(Output)
|
2507
|
+
The name of the service attachment resource. Populated if private service connect is enabled.
|
2508
|
+
"""
|
2509
|
+
return pulumi.get(self, "service_attachment")
|
2510
|
+
|
2511
|
+
|
2512
|
+
@pulumi.output_type
|
2513
|
+
class AiIndexEndpointDeployedIndexPrivateEndpointPscAutomatedEndpoint(dict):
|
2514
|
+
@staticmethod
|
2515
|
+
def __key_warning(key: str):
|
2516
|
+
suggest = None
|
2517
|
+
if key == "matchAddress":
|
2518
|
+
suggest = "match_address"
|
2519
|
+
elif key == "projectId":
|
2520
|
+
suggest = "project_id"
|
2521
|
+
|
2522
|
+
if suggest:
|
2523
|
+
pulumi.log.warn(f"Key '{key}' not found in AiIndexEndpointDeployedIndexPrivateEndpointPscAutomatedEndpoint. Access the value via the '{suggest}' property getter instead.")
|
2524
|
+
|
2525
|
+
def __getitem__(self, key: str) -> Any:
|
2526
|
+
AiIndexEndpointDeployedIndexPrivateEndpointPscAutomatedEndpoint.__key_warning(key)
|
2527
|
+
return super().__getitem__(key)
|
2528
|
+
|
2529
|
+
def get(self, key: str, default = None) -> Any:
|
2530
|
+
AiIndexEndpointDeployedIndexPrivateEndpointPscAutomatedEndpoint.__key_warning(key)
|
2531
|
+
return super().get(key, default)
|
2532
|
+
|
2533
|
+
def __init__(__self__, *,
|
2534
|
+
match_address: Optional[str] = None,
|
2535
|
+
network: Optional[str] = None,
|
2536
|
+
project_id: Optional[str] = None):
|
2537
|
+
"""
|
2538
|
+
:param str match_address: (Output)
|
2539
|
+
ip Address created by the automated forwarding rule.
|
2540
|
+
:param str network: (Output)
|
2541
|
+
Corresponding network in pscAutomationConfigs.
|
2542
|
+
:param str project_id: (Output)
|
2543
|
+
Corresponding projectId in pscAutomationConfigs
|
2544
|
+
"""
|
2545
|
+
if match_address is not None:
|
2546
|
+
pulumi.set(__self__, "match_address", match_address)
|
2547
|
+
if network is not None:
|
2548
|
+
pulumi.set(__self__, "network", network)
|
2549
|
+
if project_id is not None:
|
2550
|
+
pulumi.set(__self__, "project_id", project_id)
|
2551
|
+
|
2552
|
+
@property
|
2553
|
+
@pulumi.getter(name="matchAddress")
|
2554
|
+
def match_address(self) -> Optional[str]:
|
2555
|
+
"""
|
2556
|
+
(Output)
|
2557
|
+
ip Address created by the automated forwarding rule.
|
2558
|
+
"""
|
2559
|
+
return pulumi.get(self, "match_address")
|
2560
|
+
|
2561
|
+
@property
|
2562
|
+
@pulumi.getter
|
2563
|
+
def network(self) -> Optional[str]:
|
2564
|
+
"""
|
2565
|
+
(Output)
|
2566
|
+
Corresponding network in pscAutomationConfigs.
|
2567
|
+
"""
|
2568
|
+
return pulumi.get(self, "network")
|
2569
|
+
|
2570
|
+
@property
|
2571
|
+
@pulumi.getter(name="projectId")
|
2572
|
+
def project_id(self) -> Optional[str]:
|
2573
|
+
"""
|
2574
|
+
(Output)
|
2575
|
+
Corresponding projectId in pscAutomationConfigs
|
2576
|
+
"""
|
2577
|
+
return pulumi.get(self, "project_id")
|
2578
|
+
|
2579
|
+
|
2187
2580
|
@pulumi.output_type
|
2188
2581
|
class AiIndexEndpointPrivateServiceConnectConfig(dict):
|
2189
2582
|
@staticmethod
|