SsisVariable Class

  • java.lang.Object
    • com.azure.resourcemanager.synapse.models.SsisVariable

Implements

public final class SsisVariable
implements JsonSerializable<SsisVariable>

Ssis variable.

Constructor Summary

Constructor Description
SsisVariable()

Creates an instance of SsisVariable class.

Method Summary

Modifier and Type Method and Description
String dataType()

Get the dataType property: Variable type.

String description()

Get the description property: Variable description.

static SsisVariable fromJson(JsonReader jsonReader)

Reads an instance of SsisVariable from the JsonReader.

Long id()

Get the id property: Variable id.

String name()

Get the name property: Variable name.

Boolean sensitive()

Get the sensitive property: Whether variable is sensitive.

String sensitiveValue()

Get the sensitiveValue property: Variable sensitive value.

JsonWriter toJson(JsonWriter jsonWriter)
void validate()

Validates the instance.

String value()

Get the value property: Variable value.

SsisVariable withDataType(String dataType)

Set the dataType property: Variable type.

SsisVariable withDescription(String description)

Set the description property: Variable description.

SsisVariable withId(Long id)

Set the id property: Variable id.

SsisVariable withName(String name)

Set the name property: Variable name.

SsisVariable withSensitive(Boolean sensitive)

Set the sensitive property: Whether variable is sensitive.

SsisVariable withSensitiveValue(String sensitiveValue)

Set the sensitiveValue property: Variable sensitive value.

SsisVariable withValue(String value)

Set the value property: Variable value.

Methods inherited from java.lang.Object

Constructor Details

SsisVariable

public SsisVariable()

Creates an instance of SsisVariable class.

Method Details

dataType

public String dataType()

Get the dataType property: Variable type.

Returns:

the dataType value.

description

public String description()

Get the description property: Variable description.

Returns:

the description value.

fromJson

public static SsisVariable fromJson(JsonReader jsonReader)

Reads an instance of SsisVariable from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

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

id

public Long id()

Get the id property: Variable id.

Returns:

the id value.

name

public String name()

Get the name property: Variable name.

Returns:

the name value.

sensitive

public Boolean sensitive()

Get the sensitive property: Whether variable is sensitive.

Returns:

the sensitive value.

sensitiveValue

public String sensitiveValue()

Get the sensitiveValue property: Variable sensitive value.

Returns:

the sensitiveValue value.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

validate

public void validate()

Validates the instance.

value

public String value()

Get the value property: Variable value.

Returns:

the value value.

withDataType

public SsisVariable withDataType(String dataType)

Set the dataType property: Variable type.

Parameters:

dataType - the dataType value to set.

Returns:

the SsisVariable object itself.

withDescription

public SsisVariable withDescription(String description)

Set the description property: Variable description.

Parameters:

description - the description value to set.

Returns:

the SsisVariable object itself.

withId

public SsisVariable withId(Long id)

Set the id property: Variable id.

Parameters:

id - the id value to set.

Returns:

the SsisVariable object itself.

withName

public SsisVariable withName(String name)

Set the name property: Variable name.

Parameters:

name - the name value to set.

Returns:

the SsisVariable object itself.

withSensitive

public SsisVariable withSensitive(Boolean sensitive)

Set the sensitive property: Whether variable is sensitive.

Parameters:

sensitive - the sensitive value to set.

Returns:

the SsisVariable object itself.

withSensitiveValue

public SsisVariable withSensitiveValue(String sensitiveValue)

Set the sensitiveValue property: Variable sensitive value.

Parameters:

sensitiveValue - the sensitiveValue value to set.

Returns:

the SsisVariable object itself.

withValue

public SsisVariable withValue(String value)

Set the value property: Variable value.

Parameters:

value - the value value to set.

Returns:

the SsisVariable object itself.

Applies to