Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Synopsis
- listComputes :: Text -> Text -> Text -> AccessToken -> Req (Collection Compute)
- data Compute = Compute {
- cmpId :: Text
- cmpType :: Text
- cmpName :: Text
- cmpLocation :: Text
- cmpProperties :: ComputeProperties
- data ComputeProperties = ComputeProperties {}
- data ComputeType = AKS
- data ProvisioningState = Succeeded
Documentation
:: Text | subscription id |
-> Text | res group id |
-> Text | ML workspace id |
-> AccessToken | |
-> Req (Collection Compute) |
list computes in a workspace
docs : https://learn.microsoft.com/en-us/rest/api/azureml/2023-04-01/compute/list?tabs=HTTP
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/computes?api-version=2023-04-01
Compute | |
|
Instances
FromJSON Compute Source # | |
ToJSON Compute Source # | |
Defined in MSAzureAPI.MachineLearning.Compute | |
Generic Compute Source # | |
Show Compute Source # | |
type Rep Compute Source # | |
Defined in MSAzureAPI.MachineLearning.Compute type Rep Compute = D1 ('MetaData "Compute" "MSAzureAPI.MachineLearning.Compute" "ms-azure-api-0.6.0.1-9AqtB8TNiqqGzZl2uZcaR4" 'False) (C1 ('MetaCons "Compute" 'PrefixI 'True) ((S1 ('MetaSel ('Just "cmpId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text) :*: S1 ('MetaSel ('Just "cmpType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "cmpName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text) :*: (S1 ('MetaSel ('Just "cmpLocation") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text) :*: S1 ('MetaSel ('Just "cmpProperties") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 ComputeProperties))))) |
data ComputeProperties Source #
Instances
data ComputeType Source #
Instances
FromJSON ComputeType Source # | |
Defined in MSAzureAPI.MachineLearning.Compute parseJSON :: Value -> Parser ComputeType # parseJSONList :: Value -> Parser [ComputeType] # | |
ToJSON ComputeType Source # | |
Defined in MSAzureAPI.MachineLearning.Compute toJSON :: ComputeType -> Value # toEncoding :: ComputeType -> Encoding # toJSONList :: [ComputeType] -> Value # toEncodingList :: [ComputeType] -> Encoding # | |
Generic ComputeType Source # | |
Defined in MSAzureAPI.MachineLearning.Compute type Rep ComputeType :: Type -> Type # from :: ComputeType -> Rep ComputeType x # to :: Rep ComputeType x -> ComputeType # | |
Show ComputeType Source # | |
Defined in MSAzureAPI.MachineLearning.Compute showsPrec :: Int -> ComputeType -> ShowS # show :: ComputeType -> String # showList :: [ComputeType] -> ShowS # | |
Eq ComputeType Source # | |
Defined in MSAzureAPI.MachineLearning.Compute (==) :: ComputeType -> ComputeType -> Bool # (/=) :: ComputeType -> ComputeType -> Bool # | |
type Rep ComputeType Source # | |
data ProvisioningState Source #