Partager via


AzureMachineLearningWebServiceInputs Class

  • java.lang.Object
    • com.azure.resourcemanager.streamanalytics.models.AzureMachineLearningWebServiceInputs

Implements

public final class AzureMachineLearningWebServiceInputs
implements JsonSerializable<AzureMachineLearningWebServiceInputs>

The inputs for the Azure Machine Learning web service endpoint.

Constructor Summary

Constructor Description
AzureMachineLearningWebServiceInputs()

Creates an instance of AzureMachineLearningWebServiceInputs class.

Method Summary

Modifier and Type Method and Description
List<AzureMachineLearningWebServiceInputColumn> columnNames()

Get the columnNames property: A list of input columns for the Azure Machine Learning web service endpoint.

static AzureMachineLearningWebServiceInputs fromJson(JsonReader jsonReader)

Reads an instance of AzureMachineLearningWebServiceInputs from the JsonReader.

String name()

Get the name property: The name of the input.

JsonWriter toJson(JsonWriter jsonWriter)
void validate()

Validates the instance.

AzureMachineLearningWebServiceInputs withColumnNames(List<AzureMachineLearningWebServiceInputColumn> columnNames)

Set the columnNames property: A list of input columns for the Azure Machine Learning web service endpoint.

AzureMachineLearningWebServiceInputs withName(String name)

Set the name property: The name of the input.

Methods inherited from java.lang.Object

Constructor Details

AzureMachineLearningWebServiceInputs

public AzureMachineLearningWebServiceInputs()

Creates an instance of AzureMachineLearningWebServiceInputs class.

Method Details

columnNames

public List<AzureMachineLearningWebServiceInputColumn> columnNames()

Get the columnNames property: A list of input columns for the Azure Machine Learning web service endpoint.

Returns:

the columnNames value.

fromJson

public static AzureMachineLearningWebServiceInputs fromJson(JsonReader jsonReader)

Reads an instance of AzureMachineLearningWebServiceInputs from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

An instance of AzureMachineLearningWebServiceInputs if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.

Throws:

IOException

- If an error occurs while reading the AzureMachineLearningWebServiceInputs.

name

public String name()

Get the name property: The name of the input. This is the name provided while authoring the endpoint.

Returns:

the name value.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

validate

public void validate()

Validates the instance.

withColumnNames

public AzureMachineLearningWebServiceInputs withColumnNames(List<AzureMachineLearningWebServiceInputColumn> columnNames)

Set the columnNames property: A list of input columns for the Azure Machine Learning web service endpoint.

Parameters:

columnNames - the columnNames value to set.

Returns:

the AzureMachineLearningWebServiceInputs object itself.

withName

public AzureMachineLearningWebServiceInputs withName(String name)

Set the name property: The name of the input. This is the name provided while authoring the endpoint.

Parameters:

name - the name value to set.

Returns:

the AzureMachineLearningWebServiceInputs object itself.

Applies to