WebServicePropertiesForGraph interface
Properties specific to a Graph based web service.
- Extends
Properties
package | The definition of the graph package making up this web service. |
package |
Polymorphic discriminator, which specifies the different types this object can be |
Inherited Properties
assets | Contains user defined properties describing web service assets. Properties are expressed as Key/Value pairs. |
commitment |
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. |
created |
Read Only: The date and time when the web service was created. NOTE: This property will not be serialized. It can only be populated by the server. |
description | The description of the web service. |
diagnostics | Settings controlling the diagnostics traces collection for the web service. |
example |
Defines sample input data for one or more of the service's inputs. |
expose |
When set to true, sample data is included in the web service's swagger definition. The default value is true. |
input | Contains the Swagger 2.0 schema describing one or more of the web service's inputs. For more information, see the Swagger specification. |
keys | 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. |
machine |
Specifies the Machine Learning workspace containing the experiment that is source for the web service. |
modified |
Read Only: The date and time when the web service was last modified. NOTE: This property will not be serialized. It can only be populated by the server. |
output | Contains the Swagger 2.0 schema describing one or more of the web service's outputs. For more information, see the Swagger specification. |
parameters | 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. |
payloads |
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. |
payloads |
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. |
provisioning |
Read Only: The provision state of the web service. Valid values are Unknown, Provisioning, Succeeded, and Failed. NOTE: This property will not be serialized. It can only be populated by the server. |
read |
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. |
realtime |
Contains the configuration settings for the web service endpoint. |
storage |
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. |
swagger |
Read Only: Contains the URI of the swagger spec associated with this web service. NOTE: This property will not be serialized. It can only be populated by the server. |
title | The title of the web service. |
Property Details
package
The definition of the graph package making up this web service.
package?: GraphPackage
Property Value
packageType
Polymorphic discriminator, which specifies the different types this object can be
packageType: "Graph"
Property Value
"Graph"
Inherited Property Details
assets
Contains user defined properties describing web service assets. Properties are expressed as Key/Value pairs.
assets?: {[propertyName: string]: AssetItem}
Property Value
{[propertyName: string]: AssetItem}
Inherited From WebServiceProperties.assets
commitmentPlan
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.
commitmentPlan?: CommitmentPlan
Property Value
Inherited From WebServiceProperties.commitmentPlan
createdOn
Read Only: The date and time when the web service was created. NOTE: This property will not be serialized. It can only be populated by the server.
createdOn?: Date
Property Value
Date
Inherited From WebServiceProperties.createdOn
description
The description of the web service.
description?: string
Property Value
string
Inherited From WebServiceProperties.description
diagnostics
Settings controlling the diagnostics traces collection for the web service.
diagnostics?: DiagnosticsConfiguration
Property Value
Inherited From WebServiceProperties.diagnostics
exampleRequest
Defines sample input data for one or more of the service's inputs.
exampleRequest?: ExampleRequest
Property Value
Inherited From WebServiceProperties.exampleRequest
exposeSampleData
When set to true, sample data is included in the web service's swagger definition. The default value is true.
exposeSampleData?: boolean
Property Value
boolean
Inherited From WebServiceProperties.exposeSampleData
input
Contains the Swagger 2.0 schema describing one or more of the web service's inputs. For more information, see the Swagger specification.
input?: ServiceInputOutputSpecification
Property Value
Inherited From WebServiceProperties.input
keys
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.
keys?: WebServiceKeys
Property Value
Inherited From WebServiceProperties.keys
machineLearningWorkspace
Specifies the Machine Learning workspace containing the experiment that is source for the web service.
machineLearningWorkspace?: MachineLearningWorkspace
Property Value
Inherited From WebServiceProperties.machineLearningWorkspace
modifiedOn
Read Only: The date and time when the web service was last modified. NOTE: This property will not be serialized. It can only be populated by the server.
modifiedOn?: Date
Property Value
Date
Inherited From WebServiceProperties.modifiedOn
output
Contains the Swagger 2.0 schema describing one or more of the web service's outputs. For more information, see the Swagger specification.
output?: ServiceInputOutputSpecification
Property Value
Inherited From WebServiceProperties.output
parameters
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.
parameters?: {[propertyName: string]: WebServiceParameter}
Property Value
{[propertyName: string]: WebServiceParameter}
Inherited From WebServiceProperties.parameters
payloadsInBlobStorage
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.
payloadsInBlobStorage?: boolean
Property Value
boolean
Inherited From WebServiceProperties.payloadsInBlobStorage
payloadsLocation
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.
payloadsLocation?: BlobLocation
Property Value
Inherited From WebServiceProperties.payloadsLocation
provisioningState
Read Only: The provision state of the web service. Valid values are Unknown, Provisioning, Succeeded, and Failed. NOTE: This property will not be serialized. It can only be populated by the server.
provisioningState?: string
Property Value
string
Inherited From WebServiceProperties.provisioningState
readOnly
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.
readOnly?: boolean
Property Value
boolean
Inherited From WebServiceProperties.readOnly
realtimeConfiguration
Contains the configuration settings for the web service endpoint.
realtimeConfiguration?: RealtimeConfiguration
Property Value
Inherited From WebServiceProperties.realtimeConfiguration
storageAccount
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.
storageAccount?: StorageAccount
Property Value
Inherited From WebServiceProperties.storageAccount
swaggerLocation
Read Only: Contains the URI of the swagger spec associated with this web service. NOTE: This property will not be serialized. It can only be populated by the server.
swaggerLocation?: string
Property Value
string
Inherited From WebServiceProperties.swaggerLocation
title
The title of the web service.
title?: string
Property Value
string
Inherited From WebServiceProperties.title