File tree Expand file tree Collapse file tree
sdk/ml/azure-ai-ml/azure/ai/ml/entities/_workspace/_ai_workspaces Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ class CapabilityHost(Resource):
5353 :type storage_connections: Optional[List[str]]
5454 :param capability_host_kind: The kind of capability host, either as a string or CapabilityHostKind enum.
5555 Default is AGENTS.
56- :type capability_host_kind: Optional[ Union[str, CapabilityHostKind] ]
56+ :type capability_host_kind: Union[str, CapabilityHostKind]
5757 :param kwargs: Additional keyword arguments.
5858 :type kwargs: Any
5959
@@ -75,7 +75,7 @@ def __init__(
7575 vector_store_connections : Optional [List [str ]] = None ,
7676 ai_services_connections : Optional [List [str ]] = None ,
7777 storage_connections : Optional [List [str ]] = None ,
78- capability_host_kind : Optional [ Union [str , CapabilityHostKind ] ] = CapabilityHostKind .AGENTS ,
78+ capability_host_kind : Union [str , CapabilityHostKind ] = CapabilityHostKind .AGENTS ,
7979 ** kwargs : Any ,
8080 ):
8181 super ().__init__ (name = name , description = description , ** kwargs )
You can’t perform that action at this time.
0 commit comments