Package-level declarations

Types

Link copied to clipboard
data class AssetItemResponse(val id: String? = null, val inputPorts: Map<String, InputPortResponse>? = null, val locationInfo: BlobLocationResponse, val metadata: Map<String, String>? = null, val name: String, val outputPorts: Map<String, OutputPortResponse>? = null, val parameters: List<ModuleAssetParameterResponse>? = null, val type: String)

Information about an asset associated with the web service.

Link copied to clipboard
data class BlobLocationResponse(val credentials: String? = null, val uri: String)

Describes the access location for a blob.

Link copied to clipboard
data class ColumnSpecificationResponse(val enum: List<Any>? = null, val format: String? = null, val type: String, val xMsIsnullable: Boolean? = null, val xMsIsordered: Boolean? = null)

Swagger 2.0 schema for a column within the data table representing a web service input or output. See Swagger specification: http://swagger.io/specification/

Link copied to clipboard
data class CommitmentPlanPropertiesResponse(val chargeForOverage: Boolean, val chargeForPlan: Boolean, val creationDate: String, val includedQuantities: Map<String, PlanQuantityResponse>, val maxAssociationLimit: Int, val maxCapacityLimit: Int, val minCapacityLimit: Int, val planMeter: String, val refillFrequencyInDays: Int, val suspendPlanOnOverage: Boolean)

Properties of an Azure ML commitment plan.

Link copied to clipboard
data class CommitmentPlanResponse(val id: String)

Information about the machine learning commitment plan associated with the web service.

Link copied to clipboard
data class DiagnosticsConfigurationResponse(val expiry: String? = null, val level: String)

Diagnostics settings for an Azure ML web service.

Link copied to clipboard
data class ExampleRequestResponse(val globalParameters: Map<String, Any>? = null, val inputs: Map<String, List<List<Any>>>? = null)

Sample input data for the service's input(s).

Link copied to clipboard
data class GetCommitmentPlanResult(val etag: String? = null, val id: String, val location: String, val name: String, val properties: CommitmentPlanPropertiesResponse, val sku: ResourceSkuResponse? = null, val tags: Map<String, String>? = null, val type: String)

An Azure ML commitment plan resource.

Link copied to clipboard
data class GetWebServiceResult(val id: String, val location: String, val name: String, val properties: WebServicePropertiesForGraphResponse, val tags: Map<String, String>? = null, val type: String)

Instance of an Azure ML web service resource.

Link copied to clipboard
data class GetWorkspaceResult(val creationTime: String, val id: String, val keyVaultIdentifierId: String? = null, val location: String, val name: String, val ownerEmail: String, val sku: SkuResponse? = null, val studioEndpoint: String, val tags: Map<String, String>? = null, val type: String, val userStorageAccountId: String, val workspaceId: String, val workspaceState: String, val workspaceType: String)

An object that represents a machine learning workspace.

Link copied to clipboard
data class GraphEdgeResponse(val sourceNodeId: String? = null, val sourcePortId: String? = null, val targetNodeId: String? = null, val targetPortId: String? = null)

Defines an edge within the web service's graph.

Link copied to clipboard
data class GraphNodeResponse(val assetId: String? = null, val inputId: String? = null, val outputId: String? = null, val parameters: Map<String, WebServiceParameterResponse>? = null)

Specifies a node in the web service graph. The node can either be an input, output or asset node, so only one of the corresponding id properties is populated at any given time.

Link copied to clipboard
data class GraphPackageResponse(val edges: List<GraphEdgeResponse>? = null, val graphParameters: Map<String, GraphParameterResponse>? = null, val nodes: Map<String, GraphNodeResponse>? = null)

Defines the graph of modules making up the machine learning solution.

Link copied to clipboard
data class GraphParameterLinkResponse(val nodeId: String, val parameterKey: String)

Association link for a graph global parameter to a node in the graph.

Link copied to clipboard
data class GraphParameterResponse(val description: String? = null, val links: List<GraphParameterLinkResponse>, val type: String)

Defines a global parameter in the graph.

Link copied to clipboard
data class InputPortResponse(val type: String? = null)

Asset input port

Link copied to clipboard
data class ListWorkspaceKeysResult(val primaryToken: String? = null, val secondaryToken: String? = null)

Workspace authorization keys for a workspace.

Link copied to clipboard

Information about the machine learning workspace containing the experiment that is source for the web service.

Link copied to clipboard
data class ModeValueInfoResponse(val interfaceString: String? = null, val parameters: List<ModuleAssetParameterResponse>? = null)

Nested parameter definition.

Link copied to clipboard
data class ModuleAssetParameterResponse(val modeValuesInfo: Map<String, ModeValueInfoResponse>? = null, val name: String? = null, val parameterType: String? = null)

Parameter definition for a module asset.

Link copied to clipboard
data class OutputPortResponse(val type: String? = null)

Asset output port

Link copied to clipboard
data class PlanQuantityResponse(val allowance: Double, val amount: Double, val includedQuantityMeter: String, val overageMeter: String)

Represents the quantity a commitment plan provides of a metered resource.

Link copied to clipboard
data class RealtimeConfigurationResponse(val maxConcurrentCalls: Int? = null)

Holds the available configuration options for an Azure ML web service endpoint.

Link copied to clipboard
data class ResourceSkuResponse(val capacity: Int? = null, val name: String? = null, val tier: String? = null)

The SKU of a resource.

Link copied to clipboard
data class ServiceInputOutputSpecificationResponse(val description: String? = null, val properties: Map<String, TableSpecificationResponse>, val title: String? = null, val type: String)

The swagger 2.0 schema describing the service's inputs or outputs. See Swagger specification: http://swagger.io/specification/

Link copied to clipboard
data class SkuResponse(val name: String? = null, val tier: String? = null)

Sku of the resource

Link copied to clipboard
data class StorageAccountResponse(val key: String? = null, val name: String? = null)

Access information for a storage account.

Link copied to clipboard
data class TableSpecificationResponse(val description: String? = null, val format: String? = null, val properties: Map<String, ColumnSpecificationResponse>? = null, val title: String? = null, val type: String)

The swagger 2.0 schema describing a single service input or output. See Swagger specification: http://swagger.io/specification/

Link copied to clipboard
data class WebServiceKeysResponse(val primary: String? = null, val secondary: String? = null)

Access keys for the web service calls.

Link copied to clipboard
data class WebServiceParameterResponse(val certificateThumbprint: String? = null, val value: Any? = null)

Web Service Parameter object for node and global parameter

Link copied to clipboard
data class WebServicePropertiesForGraphResponse(val assets: Map<String, AssetItemResponse>? = null, val commitmentPlan: CommitmentPlanResponse? = null, val createdOn: String, val description: String? = null, val diagnostics: DiagnosticsConfigurationResponse? = null, val exampleRequest: ExampleRequestResponse? = null, val exposeSampleData: Boolean? = null, val input: ServiceInputOutputSpecificationResponse? = null, val keys: WebServiceKeysResponse? = null, val machineLearningWorkspace: MachineLearningWorkspaceResponse? = null, val modifiedOn: String, val output: ServiceInputOutputSpecificationResponse? = null, val package: GraphPackageResponse? = null, val packageType: String, val parameters: Map<String, WebServiceParameterResponse>? = null, val payloadsInBlobStorage: Boolean? = null, val payloadsLocation: BlobLocationResponse? = null, val provisioningState: String, val readOnly: Boolean? = null, val realtimeConfiguration: RealtimeConfigurationResponse? = null, val storageAccount: StorageAccountResponse? = null, val swaggerLocation: String, val title: String? = null)

Properties specific to a Graph based web service.