ChangeList Class

  • java.lang.Object
    • com.azure.resourcemanager.changeanalysis.models.ChangeList

Implements

public final class ChangeList
implements JsonSerializable<ChangeList>

The list of detected changes.

Constructor Summary

Constructor Description
ChangeList()

Creates an instance of ChangeList class.

Method Summary

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

Reads an instance of ChangeList from the JsonReader.

String nextLink()

Get the nextLink property: The URI that can be used to request the next page of changes.

JsonWriter toJson(JsonWriter jsonWriter)
void validate()

Validates the instance.

List<ChangeInner> value()

Get the value property: The list of changes.

ChangeList withNextLink(String nextLink)

Set the nextLink property: The URI that can be used to request the next page of changes.

ChangeList withValue(List<ChangeInner> value)

Set the value property: The list of changes.

Methods inherited from java.lang.Object

Constructor Details

ChangeList

public ChangeList()

Creates an instance of ChangeList class.

Method Details

fromJson

public static ChangeList fromJson(JsonReader jsonReader)

Reads an instance of ChangeList from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

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

nextLink

public String nextLink()

Get the nextLink property: The URI that can be used to request the next page of changes.

Returns:

the nextLink value.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

validate

public void validate()

Validates the instance.

value

public List<ChangeInner> value()

Get the value property: The list of changes.

Returns:

the value value.

withNextLink

public ChangeList withNextLink(String nextLink)

Set the nextLink property: The URI that can be used to request the next page of changes.

Parameters:

nextLink - the nextLink value to set.

Returns:

the ChangeList object itself.

withValue

public ChangeList withValue(List<ChangeInner> value)

Set the value property: The list of changes.

Parameters:

value - the value value to set.

Returns:

the ChangeList object itself.

Applies to