From db364ab793cde5c25518bbaaa6df9a0f44ee9ac6 Mon Sep 17 00:00:00 2001 From: Jaycee Li Date: Fri, 24 Oct 2025 13:48:04 -0700 Subject: [PATCH] docs: Add docstring for enum classes that are not supported in Gemini or Vertex API PiperOrigin-RevId: 823652339 --- vertexai/_genai/types/common.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vertexai/_genai/types/common.py b/vertexai/_genai/types/common.py index 5c386138ae..9df0e52911 100644 --- a/vertexai/_genai/types/common.py +++ b/vertexai/_genai/types/common.py @@ -116,7 +116,7 @@ class PairwiseChoice(_common.CaseInSensitiveEnum): class Strategy(_common.CaseInSensitiveEnum): - """Optional. This determines which type of scheduling strategy to use.""" + """This determines which type of scheduling strategy to use.""" STRATEGY_UNSPECIFIED = "STRATEGY_UNSPECIFIED" """Strategy will default to STANDARD.""" @@ -174,7 +174,7 @@ class AcceleratorType(_common.CaseInSensitiveEnum): class Type(_common.CaseInSensitiveEnum): - """Required. Specifies the reservation affinity type.""" + """Specifies the reservation affinity type.""" TYPE_UNSPECIFIED = "TYPE_UNSPECIFIED" """Default value. This should not be used.""" @@ -227,7 +227,7 @@ class AgentServerMode(_common.CaseInSensitiveEnum): class ManagedTopicEnum(_common.CaseInSensitiveEnum): - """Required. The managed topic.""" + """The managed topic.""" MANAGED_TOPIC_ENUM_UNSPECIFIED = "MANAGED_TOPIC_ENUM_UNSPECIFIED" """Unspecified topic. This value should not be used."""