RunNotebookParameter Class

  • java.lang.Object
    • com.azure.analytics.synapse.artifacts.models.RunNotebookParameter

Implements

public final class RunNotebookParameter
implements JsonSerializable<RunNotebookParameter>

Run notebook parameter.

Constructor Summary

Constructor Description
RunNotebookParameter()

Creates an instance of RunNotebookParameter class.

Method Summary

Modifier and Type Method and Description
static RunNotebookParameter fromJson(JsonReader jsonReader)

Reads an instance of RunNotebookParameter from the JsonReader.

String getType()

Get the type property: Parameter type.

Object getValue()

Get the value property: Parameter value.

RunNotebookParameter setType(String type)

Set the type property: Parameter type.

RunNotebookParameter setValue(Object value)

Set the value property: Parameter value.

JsonWriter toJson(JsonWriter jsonWriter)

Methods inherited from java.lang.Object

Constructor Details

RunNotebookParameter

public RunNotebookParameter()

Creates an instance of RunNotebookParameter class.

Method Details

fromJson

public static RunNotebookParameter fromJson(JsonReader jsonReader)

Reads an instance of RunNotebookParameter from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

An instance of RunNotebookParameter 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 RunNotebookParameter.

getType

public String getType()

Get the type property: Parameter type.

Returns:

the type value.

getValue

public Object getValue()

Get the value property: Parameter value.

Returns:

the value value.

setType

public RunNotebookParameter setType(String type)

Set the type property: Parameter type.

Parameters:

type - the type value to set.

Returns:

the RunNotebookParameter object itself.

setValue

public RunNotebookParameter setValue(Object value)

Set the value property: Parameter value.

Parameters:

value - the value value to set.

Returns:

the RunNotebookParameter object itself.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

Applies to