From fa23e3050b1f3e99f9b07696bfebdffdf207cabb Mon Sep 17 00:00:00 2001 From: Google APIs Date: Wed, 4 Sep 2024 08:43:14 -0700 Subject: [PATCH] feat: add FLEX_START to Scheduling.strategy PiperOrigin-RevId: 670984417 --- google/cloud/aiplatform/v1/custom_job.proto | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/google/cloud/aiplatform/v1/custom_job.proto b/google/cloud/aiplatform/v1/custom_job.proto index fd4d146e5f..1175fa090e 100644 --- a/google/cloud/aiplatform/v1/custom_job.proto +++ b/google/cloud/aiplatform/v1/custom_job.proto @@ -366,10 +366,10 @@ message Scheduling { // Strategy will default to STANDARD. STRATEGY_UNSPECIFIED = 0; - // Regular on-demand provisioning strategy. + // Deprecated. Regular on-demand provisioning strategy. ON_DEMAND = 1 [deprecated = true]; - // Low cost by making potential use of spot resources. + // Deprecated. Low cost by making potential use of spot resources. LOW_COST = 2 [deprecated = true]; // Standard provisioning strategy uses regular on-demand resources. @@ -377,6 +377,9 @@ message Scheduling { // Spot provisioning strategy uses spot resources. SPOT = 4; + + // Flex Start strategy uses DWS to queue for resources. + FLEX_START = 6; } // The maximum job running time. The default is 7 days.