TriggerListResponse Class

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

Implements

public final class TriggerListResponse
implements JsonSerializable<TriggerListResponse>

A list of trigger resources.

Constructor Summary

Constructor Description
TriggerListResponse()

Creates an instance of TriggerListResponse class.

Method Summary

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

Reads an instance of TriggerListResponse from the JsonReader.

String getNextLink()

Get the nextLink property: The link to the next page of results, if any remaining results exist.

List<TriggerResource> getValue()

Get the value property: List of triggers.

TriggerListResponse setNextLink(String nextLink)

Set the nextLink property: The link to the next page of results, if any remaining results exist.

TriggerListResponse setValue(List<TriggerResource> value)

Set the value property: List of triggers.

JsonWriter toJson(JsonWriter jsonWriter)

Methods inherited from java.lang.Object

Constructor Details

TriggerListResponse

public TriggerListResponse()

Creates an instance of TriggerListResponse class.

Method Details

fromJson

public static TriggerListResponse fromJson(JsonReader jsonReader)

Reads an instance of TriggerListResponse from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

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

getNextLink

public String getNextLink()

Get the nextLink property: The link to the next page of results, if any remaining results exist.

Returns:

the nextLink value.

getValue

public List<TriggerResource> getValue()

Get the value property: List of triggers.

Returns:

the value value.

setNextLink

public TriggerListResponse setNextLink(String nextLink)

Set the nextLink property: The link to the next page of results, if any remaining results exist.

Parameters:

nextLink - the nextLink value to set.

Returns:

the TriggerListResponse object itself.

setValue

public TriggerListResponse setValue(List<TriggerResource> value)

Set the value property: List of triggers.

Parameters:

value - the value value to set.

Returns:

the TriggerListResponse object itself.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

Applies to