WebServicePropertiesForGraphResponse

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.

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Contains user defined properties describing web service assets. Properties are expressed as Key/Value pairs.

Link copied to clipboard

Contains the commitment plan associated with this web service. Set at creation time. Once set, this value cannot be changed. Note: The commitment plan is not returned from calls to GET operations.

Link copied to clipboard

Read Only: The date and time when the web service was created.

Link copied to clipboard
val description: String? = null

The description of the web service.

Link copied to clipboard

Settings controlling the diagnostics traces collection for the web service.

Link copied to clipboard

Defines sample input data for one or more of the service's inputs.

Link copied to clipboard

When set to true, sample data is included in the web service's swagger definition. The default value is true.

Link copied to clipboard

Contains the Swagger 2.0 schema describing one or more of the web service's inputs. For more information, see the Swagger specification.

Link copied to clipboard

Contains the web service provisioning keys. If you do not specify provisioning keys, the Azure Machine Learning system generates them for you. Note: The keys are not returned from calls to GET operations.

Link copied to clipboard

Specifies the Machine Learning workspace containing the experiment that is source for the web service.

Link copied to clipboard

Read Only: The date and time when the web service was last modified.

Link copied to clipboard

Contains the Swagger 2.0 schema describing one or more of the web service's outputs. For more information, see the Swagger specification.

Link copied to clipboard

The definition of the graph package making up this web service.

Link copied to clipboard

Specifies the package type. Valid values are Graph (Specifies a web service published through the Machine Learning Studio) and Code (Specifies a web service published using code such as Python). Note: Code is not supported at this time. Expected value is 'Graph'.

Link copied to clipboard

The set of global parameters values defined for the web service, given as a global parameter name to default value map. If no default value is specified, the parameter is considered to be required.

Link copied to clipboard

When set to true, indicates that the payload size is larger than 3 MB. Otherwise false. If the payload size exceed 3 MB, the payload is stored in a blob and the PayloadsLocation parameter contains the URI of the blob. Otherwise, this will be set to false and Assets, Input, Output, Package, Parameters, ExampleRequest are inline. The Payload sizes is determined by adding the size of the Assets, Input, Output, Package, Parameters, and the ExampleRequest.

Link copied to clipboard

The URI of the payload blob. This parameter contains a value only if the payloadsInBlobStorage parameter is set to true. Otherwise is set to null.

Link copied to clipboard

Read Only: The provision state of the web service. Valid values are Unknown, Provisioning, Succeeded, and Failed.

Link copied to clipboard
val readOnly: Boolean? = null

When set to true, indicates that the web service is read-only and can no longer be updated or patched, only removed. Default, is false. Note: Once set to true, you cannot change its value.

Link copied to clipboard

Contains the configuration settings for the web service endpoint.

Link copied to clipboard

Specifies the storage account that Azure Machine Learning uses to store information about the web service. Only the name of the storage account is returned from calls to GET operations. When updating the storage account information, you must ensure that all necessary assets are available in the new storage account or calls to your web service will fail.

Link copied to clipboard

Read Only: Contains the URI of the swagger spec associated with this web service.

Link copied to clipboard
val title: String? = null

The title of the web service.