Share via


TriggerListResponse Class

  • java.lang.Object
    • com.azure.resourcemanager.datafactory.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 nextLink()

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

JsonWriter toJson(JsonWriter jsonWriter)
void validate()

Validates the instance.

List<TriggerResourceInner> value()

Get the value property: List of triggers.

TriggerListResponse withNextLink(String nextLink)

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

TriggerListResponse withValue(List<TriggerResourceInner> value)

Set the value property: List of triggers.

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.

nextLink

public String nextLink()

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

Returns:

the nextLink value.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

validate

public void validate()

Validates the instance.

value

public List<TriggerResourceInner> value()

Get the value property: List of triggers.

Returns:

the value value.

withNextLink

public TriggerListResponse withNextLink(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.

withValue

public TriggerListResponse withValue(List<TriggerResourceInner> value)

Set the value property: List of triggers.

Parameters:

value - the value value to set.

Returns:

the TriggerListResponse object itself.

Applies to