Share via


LinkedServiceReference Class

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

Implements

public final class LinkedServiceReference
implements JsonSerializable<LinkedServiceReference>

Linked service reference type.

Constructor Summary

Constructor Description
LinkedServiceReference()

Creates an instance of LinkedServiceReference class.

Method Summary

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

Reads an instance of LinkedServiceReference from the JsonReader.

Map<String,Object> parameters()

Get the parameters property: Arguments for LinkedService.

String referenceName()

Get the referenceName property: Reference LinkedService name.

JsonWriter toJson(JsonWriter jsonWriter)
String type()

Get the type property: Linked service reference type.

void validate()

Validates the instance.

LinkedServiceReference withParameters(Map<String,Object> parameters)

Set the parameters property: Arguments for LinkedService.

LinkedServiceReference withReferenceName(String referenceName)

Set the referenceName property: Reference LinkedService name.

Methods inherited from java.lang.Object

Constructor Details

LinkedServiceReference

public LinkedServiceReference()

Creates an instance of LinkedServiceReference class.

Method Details

fromJson

public static LinkedServiceReference fromJson(JsonReader jsonReader)

Reads an instance of LinkedServiceReference from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

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

Throws:

IOException

- If the deserialized JSON object was missing any required properties.

parameters

public Map<String,Object> parameters()

Get the parameters property: Arguments for LinkedService.

Returns:

the parameters value.

referenceName

public String referenceName()

Get the referenceName property: Reference LinkedService name.

Returns:

the referenceName value.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

type

public String type()

Get the type property: Linked service reference type.

Returns:

the type value.

validate

public void validate()

Validates the instance.

withParameters

public LinkedServiceReference withParameters(Map<String,Object> parameters)

Set the parameters property: Arguments for LinkedService.

Parameters:

parameters - the parameters value to set.

Returns:

the LinkedServiceReference object itself.

withReferenceName

public LinkedServiceReference withReferenceName(String referenceName)

Set the referenceName property: Reference LinkedService name.

Parameters:

referenceName - the referenceName value to set.

Returns:

the LinkedServiceReference object itself.

Applies to