pulumi-gcp 7.8.0a1706805960__py3-none-any.whl → 7.8.0a1706829616__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- pulumi_gcp/_utilities.py +6 -2
- pulumi_gcp/alloydb/outputs.py +16 -0
- pulumi_gcp/artifactregistry/outputs.py +204 -0
- pulumi_gcp/assuredworkloads/_inputs.py +34 -0
- pulumi_gcp/assuredworkloads/outputs.py +34 -0
- pulumi_gcp/backupdisasterrecovery/outputs.py +20 -0
- pulumi_gcp/beyondcorp/outputs.py +54 -0
- pulumi_gcp/bigquery/_inputs.py +18 -0
- pulumi_gcp/bigquery/outputs.py +172 -0
- pulumi_gcp/bigtable/_inputs.py +4 -0
- pulumi_gcp/bigtable/outputs.py +4 -0
- pulumi_gcp/certificateauthority/outputs.py +378 -0
- pulumi_gcp/certificatemanager/outputs.py +32 -0
- pulumi_gcp/cloudbuild/outputs.py +1009 -3
- pulumi_gcp/cloudbuildv2/_inputs.py +14 -0
- pulumi_gcp/cloudbuildv2/outputs.py +14 -0
- pulumi_gcp/clouddeploy/_inputs.py +36 -0
- pulumi_gcp/clouddeploy/outputs.py +36 -0
- pulumi_gcp/cloudfunctions/_inputs.py +4 -0
- pulumi_gcp/cloudfunctions/outputs.py +54 -0
- pulumi_gcp/cloudfunctionsv2/outputs.py +302 -0
- pulumi_gcp/cloudidentity/outputs.py +54 -0
- pulumi_gcp/cloudrun/outputs.py +704 -0
- pulumi_gcp/cloudrunv2/outputs.py +929 -5
- pulumi_gcp/composer/_inputs.py +430 -0
- pulumi_gcp/composer/outputs.py +860 -0
- pulumi_gcp/compute/_inputs.py +924 -0
- pulumi_gcp/compute/outputs.py +4091 -1
- pulumi_gcp/container/_inputs.py +542 -0
- pulumi_gcp/container/outputs.py +2137 -3
- pulumi_gcp/dataplex/_inputs.py +66 -0
- pulumi_gcp/dataplex/outputs.py +66 -0
- pulumi_gcp/dataproc/_inputs.py +174 -0
- pulumi_gcp/dataproc/outputs.py +174 -0
- pulumi_gcp/dns/_inputs.py +34 -0
- pulumi_gcp/dns/outputs.py +34 -0
- pulumi_gcp/filestore/outputs.py +88 -0
- pulumi_gcp/firebaserules/_inputs.py +6 -0
- pulumi_gcp/firebaserules/outputs.py +6 -0
- pulumi_gcp/folder/_inputs.py +4 -0
- pulumi_gcp/folder/iam_audit_config.py +2 -2
- pulumi_gcp/folder/iam_member.py +2 -2
- pulumi_gcp/folder/iam_policy.py +2 -2
- pulumi_gcp/folder/outputs.py +54 -0
- pulumi_gcp/gkehub/_inputs.py +8 -0
- pulumi_gcp/gkehub/outputs.py +8 -0
- pulumi_gcp/iam/outputs.py +92 -0
- pulumi_gcp/kms/outputs.py +16 -0
- pulumi_gcp/logging/_inputs.py +108 -0
- pulumi_gcp/logging/outputs.py +108 -0
- pulumi_gcp/monitoring/outputs.py +14 -0
- pulumi_gcp/networkconnectivity/_inputs.py +6 -0
- pulumi_gcp/networkconnectivity/outputs.py +6 -0
- pulumi_gcp/organizations/_inputs.py +4 -0
- pulumi_gcp/organizations/iam_audit_config.py +2 -2
- pulumi_gcp/organizations/iam_member.py +2 -2
- pulumi_gcp/organizations/iam_policy.py +2 -2
- pulumi_gcp/organizations/outputs.py +4 -0
- pulumi_gcp/projects/_inputs.py +4 -0
- pulumi_gcp/projects/iam_audit_config.py +2 -2
- pulumi_gcp/projects/iam_binding.py +2 -2
- pulumi_gcp/projects/iam_member.py +2 -2
- pulumi_gcp/projects/iam_policy.py +2 -2
- pulumi_gcp/projects/outputs.py +54 -0
- pulumi_gcp/pubsub/outputs.py +282 -0
- pulumi_gcp/redis/outputs.py +204 -0
- pulumi_gcp/secretmanager/outputs.py +88 -0
- pulumi_gcp/sourcerepo/outputs.py +20 -0
- pulumi_gcp/spanner/outputs.py +68 -0
- pulumi_gcp/sql/_inputs.py +50 -0
- pulumi_gcp/sql/outputs.py +904 -0
- pulumi_gcp/storage/outputs.py +188 -0
- pulumi_gcp/vertex/outputs.py +124 -0
- pulumi_gcp/vmwareengine/outputs.py +208 -0
- pulumi_gcp/vpcaccess/outputs.py +4 -0
- {pulumi_gcp-7.8.0a1706805960.dist-info → pulumi_gcp-7.8.0a1706829616.dist-info}/METADATA +2 -1
- {pulumi_gcp-7.8.0a1706805960.dist-info → pulumi_gcp-7.8.0a1706829616.dist-info}/RECORD +79 -79
- {pulumi_gcp-7.8.0a1706805960.dist-info → pulumi_gcp-7.8.0a1706829616.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.8.0a1706805960.dist-info → pulumi_gcp-7.8.0a1706829616.dist-info}/top_level.txt +0 -0
pulumi_gcp/vertex/outputs.py
CHANGED
@@ -2257,17 +2257,27 @@ class GetAiIndexDeployedIndexResult(dict):
|
|
2257
2257
|
def __init__(__self__, *,
|
2258
2258
|
deployed_index_id: str,
|
2259
2259
|
index_endpoint: str):
|
2260
|
+
"""
|
2261
|
+
:param str deployed_index_id: The ID of the DeployedIndex in the above IndexEndpoint.
|
2262
|
+
:param str index_endpoint: A resource name of the IndexEndpoint.
|
2263
|
+
"""
|
2260
2264
|
pulumi.set(__self__, "deployed_index_id", deployed_index_id)
|
2261
2265
|
pulumi.set(__self__, "index_endpoint", index_endpoint)
|
2262
2266
|
|
2263
2267
|
@property
|
2264
2268
|
@pulumi.getter(name="deployedIndexId")
|
2265
2269
|
def deployed_index_id(self) -> str:
|
2270
|
+
"""
|
2271
|
+
The ID of the DeployedIndex in the above IndexEndpoint.
|
2272
|
+
"""
|
2266
2273
|
return pulumi.get(self, "deployed_index_id")
|
2267
2274
|
|
2268
2275
|
@property
|
2269
2276
|
@pulumi.getter(name="indexEndpoint")
|
2270
2277
|
def index_endpoint(self) -> str:
|
2278
|
+
"""
|
2279
|
+
A resource name of the IndexEndpoint.
|
2280
|
+
"""
|
2271
2281
|
return pulumi.get(self, "index_endpoint")
|
2272
2282
|
|
2273
2283
|
|
@@ -2276,17 +2286,27 @@ class GetAiIndexIndexStatResult(dict):
|
|
2276
2286
|
def __init__(__self__, *,
|
2277
2287
|
shards_count: int,
|
2278
2288
|
vectors_count: str):
|
2289
|
+
"""
|
2290
|
+
:param int shards_count: The number of shards in the Index.
|
2291
|
+
:param str vectors_count: The number of vectors in the Index.
|
2292
|
+
"""
|
2279
2293
|
pulumi.set(__self__, "shards_count", shards_count)
|
2280
2294
|
pulumi.set(__self__, "vectors_count", vectors_count)
|
2281
2295
|
|
2282
2296
|
@property
|
2283
2297
|
@pulumi.getter(name="shardsCount")
|
2284
2298
|
def shards_count(self) -> int:
|
2299
|
+
"""
|
2300
|
+
The number of shards in the Index.
|
2301
|
+
"""
|
2285
2302
|
return pulumi.get(self, "shards_count")
|
2286
2303
|
|
2287
2304
|
@property
|
2288
2305
|
@pulumi.getter(name="vectorsCount")
|
2289
2306
|
def vectors_count(self) -> str:
|
2307
|
+
"""
|
2308
|
+
The number of vectors in the Index.
|
2309
|
+
"""
|
2290
2310
|
return pulumi.get(self, "vectors_count")
|
2291
2311
|
|
2292
2312
|
|
@@ -2296,6 +2316,17 @@ class GetAiIndexMetadataResult(dict):
|
|
2296
2316
|
configs: Sequence['outputs.GetAiIndexMetadataConfigResult'],
|
2297
2317
|
contents_delta_uri: str,
|
2298
2318
|
is_complete_overwrite: bool):
|
2319
|
+
"""
|
2320
|
+
:param Sequence['GetAiIndexMetadataConfigArgs'] configs: The configuration of the Matching Engine Index.
|
2321
|
+
:param str contents_delta_uri: Allows inserting, updating or deleting the contents of the Matching Engine Index.
|
2322
|
+
The string must be a valid Cloud Storage directory path. If this
|
2323
|
+
field is set when calling IndexService.UpdateIndex, then no other
|
2324
|
+
Index field can be also updated as part of the same call.
|
2325
|
+
The expected structure and format of the files this URI points to is
|
2326
|
+
described at https://cloud.google.com/vertex-ai/docs/matching-engine/using-matching-engine#input-data-format
|
2327
|
+
:param bool is_complete_overwrite: If this field is set together with contentsDeltaUri when calling IndexService.UpdateIndex,
|
2328
|
+
then existing content of the Index will be replaced by the data from the contentsDeltaUri.
|
2329
|
+
"""
|
2299
2330
|
pulumi.set(__self__, "configs", configs)
|
2300
2331
|
pulumi.set(__self__, "contents_delta_uri", contents_delta_uri)
|
2301
2332
|
pulumi.set(__self__, "is_complete_overwrite", is_complete_overwrite)
|
@@ -2303,16 +2334,31 @@ class GetAiIndexMetadataResult(dict):
|
|
2303
2334
|
@property
|
2304
2335
|
@pulumi.getter
|
2305
2336
|
def configs(self) -> Sequence['outputs.GetAiIndexMetadataConfigResult']:
|
2337
|
+
"""
|
2338
|
+
The configuration of the Matching Engine Index.
|
2339
|
+
"""
|
2306
2340
|
return pulumi.get(self, "configs")
|
2307
2341
|
|
2308
2342
|
@property
|
2309
2343
|
@pulumi.getter(name="contentsDeltaUri")
|
2310
2344
|
def contents_delta_uri(self) -> str:
|
2345
|
+
"""
|
2346
|
+
Allows inserting, updating or deleting the contents of the Matching Engine Index.
|
2347
|
+
The string must be a valid Cloud Storage directory path. If this
|
2348
|
+
field is set when calling IndexService.UpdateIndex, then no other
|
2349
|
+
Index field can be also updated as part of the same call.
|
2350
|
+
The expected structure and format of the files this URI points to is
|
2351
|
+
described at https://cloud.google.com/vertex-ai/docs/matching-engine/using-matching-engine#input-data-format
|
2352
|
+
"""
|
2311
2353
|
return pulumi.get(self, "contents_delta_uri")
|
2312
2354
|
|
2313
2355
|
@property
|
2314
2356
|
@pulumi.getter(name="isCompleteOverwrite")
|
2315
2357
|
def is_complete_overwrite(self) -> bool:
|
2358
|
+
"""
|
2359
|
+
If this field is set together with contentsDeltaUri when calling IndexService.UpdateIndex,
|
2360
|
+
then existing content of the Index will be replaced by the data from the contentsDeltaUri.
|
2361
|
+
"""
|
2316
2362
|
return pulumi.get(self, "is_complete_overwrite")
|
2317
2363
|
|
2318
2364
|
|
@@ -2325,6 +2371,27 @@ class GetAiIndexMetadataConfigResult(dict):
|
|
2325
2371
|
distance_measure_type: str,
|
2326
2372
|
feature_norm_type: str,
|
2327
2373
|
shard_size: str):
|
2374
|
+
"""
|
2375
|
+
:param Sequence['GetAiIndexMetadataConfigAlgorithmConfigArgs'] algorithm_configs: The configuration with regard to the algorithms used for efficient search.
|
2376
|
+
:param int approximate_neighbors_count: The default number of neighbors to find via approximate search before exact reordering is
|
2377
|
+
performed. Exact reordering is a procedure where results returned by an
|
2378
|
+
approximate search algorithm are reordered via a more expensive distance computation.
|
2379
|
+
Required if tree-AH algorithm is used.
|
2380
|
+
:param int dimensions: The number of dimensions of the input vectors.
|
2381
|
+
:param str distance_measure_type: The distance measure used in nearest neighbor search. The value must be one of the followings:
|
2382
|
+
* SQUARED_L2_DISTANCE: Euclidean (L_2) Distance
|
2383
|
+
* L1_DISTANCE: Manhattan (L_1) Distance
|
2384
|
+
* COSINE_DISTANCE: Cosine Distance. Defined as 1 - cosine similarity.
|
2385
|
+
* DOT_PRODUCT_DISTANCE: Dot Product Distance. Defined as a negative of the dot product
|
2386
|
+
:param str feature_norm_type: Type of normalization to be carried out on each vector. The value must be one of the followings:
|
2387
|
+
* UNIT_L2_NORM: Unit L2 normalization type
|
2388
|
+
* NONE: No normalization type is specified.
|
2389
|
+
:param str shard_size: Index data is split into equal parts to be processed. These are called "shards".
|
2390
|
+
The shard size must be specified when creating an index. The value must be one of the followings:
|
2391
|
+
* SHARD_SIZE_SMALL: Small (2GB)
|
2392
|
+
* SHARD_SIZE_MEDIUM: Medium (20GB)
|
2393
|
+
* SHARD_SIZE_LARGE: Large (50GB)
|
2394
|
+
"""
|
2328
2395
|
pulumi.set(__self__, "algorithm_configs", algorithm_configs)
|
2329
2396
|
pulumi.set(__self__, "approximate_neighbors_count", approximate_neighbors_count)
|
2330
2397
|
pulumi.set(__self__, "dimensions", dimensions)
|
@@ -2335,31 +2402,62 @@ class GetAiIndexMetadataConfigResult(dict):
|
|
2335
2402
|
@property
|
2336
2403
|
@pulumi.getter(name="algorithmConfigs")
|
2337
2404
|
def algorithm_configs(self) -> Sequence['outputs.GetAiIndexMetadataConfigAlgorithmConfigResult']:
|
2405
|
+
"""
|
2406
|
+
The configuration with regard to the algorithms used for efficient search.
|
2407
|
+
"""
|
2338
2408
|
return pulumi.get(self, "algorithm_configs")
|
2339
2409
|
|
2340
2410
|
@property
|
2341
2411
|
@pulumi.getter(name="approximateNeighborsCount")
|
2342
2412
|
def approximate_neighbors_count(self) -> int:
|
2413
|
+
"""
|
2414
|
+
The default number of neighbors to find via approximate search before exact reordering is
|
2415
|
+
performed. Exact reordering is a procedure where results returned by an
|
2416
|
+
approximate search algorithm are reordered via a more expensive distance computation.
|
2417
|
+
Required if tree-AH algorithm is used.
|
2418
|
+
"""
|
2343
2419
|
return pulumi.get(self, "approximate_neighbors_count")
|
2344
2420
|
|
2345
2421
|
@property
|
2346
2422
|
@pulumi.getter
|
2347
2423
|
def dimensions(self) -> int:
|
2424
|
+
"""
|
2425
|
+
The number of dimensions of the input vectors.
|
2426
|
+
"""
|
2348
2427
|
return pulumi.get(self, "dimensions")
|
2349
2428
|
|
2350
2429
|
@property
|
2351
2430
|
@pulumi.getter(name="distanceMeasureType")
|
2352
2431
|
def distance_measure_type(self) -> str:
|
2432
|
+
"""
|
2433
|
+
The distance measure used in nearest neighbor search. The value must be one of the followings:
|
2434
|
+
* SQUARED_L2_DISTANCE: Euclidean (L_2) Distance
|
2435
|
+
* L1_DISTANCE: Manhattan (L_1) Distance
|
2436
|
+
* COSINE_DISTANCE: Cosine Distance. Defined as 1 - cosine similarity.
|
2437
|
+
* DOT_PRODUCT_DISTANCE: Dot Product Distance. Defined as a negative of the dot product
|
2438
|
+
"""
|
2353
2439
|
return pulumi.get(self, "distance_measure_type")
|
2354
2440
|
|
2355
2441
|
@property
|
2356
2442
|
@pulumi.getter(name="featureNormType")
|
2357
2443
|
def feature_norm_type(self) -> str:
|
2444
|
+
"""
|
2445
|
+
Type of normalization to be carried out on each vector. The value must be one of the followings:
|
2446
|
+
* UNIT_L2_NORM: Unit L2 normalization type
|
2447
|
+
* NONE: No normalization type is specified.
|
2448
|
+
"""
|
2358
2449
|
return pulumi.get(self, "feature_norm_type")
|
2359
2450
|
|
2360
2451
|
@property
|
2361
2452
|
@pulumi.getter(name="shardSize")
|
2362
2453
|
def shard_size(self) -> str:
|
2454
|
+
"""
|
2455
|
+
Index data is split into equal parts to be processed. These are called "shards".
|
2456
|
+
The shard size must be specified when creating an index. The value must be one of the followings:
|
2457
|
+
* SHARD_SIZE_SMALL: Small (2GB)
|
2458
|
+
* SHARD_SIZE_MEDIUM: Medium (20GB)
|
2459
|
+
* SHARD_SIZE_LARGE: Large (50GB)
|
2460
|
+
"""
|
2363
2461
|
return pulumi.get(self, "shard_size")
|
2364
2462
|
|
2365
2463
|
|
@@ -2368,17 +2466,31 @@ class GetAiIndexMetadataConfigAlgorithmConfigResult(dict):
|
|
2368
2466
|
def __init__(__self__, *,
|
2369
2467
|
brute_force_configs: Sequence['outputs.GetAiIndexMetadataConfigAlgorithmConfigBruteForceConfigResult'],
|
2370
2468
|
tree_ah_configs: Sequence['outputs.GetAiIndexMetadataConfigAlgorithmConfigTreeAhConfigResult']):
|
2469
|
+
"""
|
2470
|
+
:param Sequence['GetAiIndexMetadataConfigAlgorithmConfigBruteForceConfigArgs'] brute_force_configs: Configuration options for using brute force search, which simply implements the
|
2471
|
+
standard linear search in the database for each query.
|
2472
|
+
:param Sequence['GetAiIndexMetadataConfigAlgorithmConfigTreeAhConfigArgs'] tree_ah_configs: Configuration options for using the tree-AH algorithm (Shallow tree + Asymmetric Hashing).
|
2473
|
+
Please refer to this paper for more details: https://arxiv.org/abs/1908.10396
|
2474
|
+
"""
|
2371
2475
|
pulumi.set(__self__, "brute_force_configs", brute_force_configs)
|
2372
2476
|
pulumi.set(__self__, "tree_ah_configs", tree_ah_configs)
|
2373
2477
|
|
2374
2478
|
@property
|
2375
2479
|
@pulumi.getter(name="bruteForceConfigs")
|
2376
2480
|
def brute_force_configs(self) -> Sequence['outputs.GetAiIndexMetadataConfigAlgorithmConfigBruteForceConfigResult']:
|
2481
|
+
"""
|
2482
|
+
Configuration options for using brute force search, which simply implements the
|
2483
|
+
standard linear search in the database for each query.
|
2484
|
+
"""
|
2377
2485
|
return pulumi.get(self, "brute_force_configs")
|
2378
2486
|
|
2379
2487
|
@property
|
2380
2488
|
@pulumi.getter(name="treeAhConfigs")
|
2381
2489
|
def tree_ah_configs(self) -> Sequence['outputs.GetAiIndexMetadataConfigAlgorithmConfigTreeAhConfigResult']:
|
2490
|
+
"""
|
2491
|
+
Configuration options for using the tree-AH algorithm (Shallow tree + Asymmetric Hashing).
|
2492
|
+
Please refer to this paper for more details: https://arxiv.org/abs/1908.10396
|
2493
|
+
"""
|
2382
2494
|
return pulumi.get(self, "tree_ah_configs")
|
2383
2495
|
|
2384
2496
|
|
@@ -2393,17 +2505,29 @@ class GetAiIndexMetadataConfigAlgorithmConfigTreeAhConfigResult(dict):
|
|
2393
2505
|
def __init__(__self__, *,
|
2394
2506
|
leaf_node_embedding_count: int,
|
2395
2507
|
leaf_nodes_to_search_percent: int):
|
2508
|
+
"""
|
2509
|
+
:param int leaf_node_embedding_count: Number of embeddings on each leaf node. The default value is 1000 if not set.
|
2510
|
+
:param int leaf_nodes_to_search_percent: The default percentage of leaf nodes that any query may be searched. Must be in
|
2511
|
+
range 1-100, inclusive. The default value is 10 (means 10%) if not set.
|
2512
|
+
"""
|
2396
2513
|
pulumi.set(__self__, "leaf_node_embedding_count", leaf_node_embedding_count)
|
2397
2514
|
pulumi.set(__self__, "leaf_nodes_to_search_percent", leaf_nodes_to_search_percent)
|
2398
2515
|
|
2399
2516
|
@property
|
2400
2517
|
@pulumi.getter(name="leafNodeEmbeddingCount")
|
2401
2518
|
def leaf_node_embedding_count(self) -> int:
|
2519
|
+
"""
|
2520
|
+
Number of embeddings on each leaf node. The default value is 1000 if not set.
|
2521
|
+
"""
|
2402
2522
|
return pulumi.get(self, "leaf_node_embedding_count")
|
2403
2523
|
|
2404
2524
|
@property
|
2405
2525
|
@pulumi.getter(name="leafNodesToSearchPercent")
|
2406
2526
|
def leaf_nodes_to_search_percent(self) -> int:
|
2527
|
+
"""
|
2528
|
+
The default percentage of leaf nodes that any query may be searched. Must be in
|
2529
|
+
range 1-100, inclusive. The default value is 10 (means 10%) if not set.
|
2530
|
+
"""
|
2407
2531
|
return pulumi.get(self, "leaf_nodes_to_search_percent")
|
2408
2532
|
|
2409
2533
|
|