DataFlowFolder Class

  • java.lang.Object
    • com.azure.resourcemanager.datafactory.models.DataFlowFolder

Implements

public final class DataFlowFolder
implements JsonSerializable<DataFlowFolder>

The folder that this data flow is in. If not specified, Data flow will appear at the root level.

Constructor Summary

Constructor Description
DataFlowFolder()

Creates an instance of DataFlowFolder class.

Method Summary

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

Reads an instance of DataFlowFolder from the JsonReader.

String name()

Get the name property: The name of the folder that this data flow is in.

JsonWriter toJson(JsonWriter jsonWriter)
void validate()

Validates the instance.

DataFlowFolder withName(String name)

Set the name property: The name of the folder that this data flow is in.

Methods inherited from java.lang.Object

Constructor Details

DataFlowFolder

public DataFlowFolder()

Creates an instance of DataFlowFolder class.

Method Details

fromJson

public static DataFlowFolder fromJson(JsonReader jsonReader)

Reads an instance of DataFlowFolder from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

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

name

public String name()

Get the name property: The name of the folder that this data flow is in.

Returns:

the name value.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

validate

public void validate()

Validates the instance.

withName

public DataFlowFolder withName(String name)

Set the name property: The name of the folder that this data flow is in.

Parameters:

name - the name value to set.

Returns:

the DataFlowFolder object itself.

Applies to