ServiceIndexersRuntime Class

  • java.lang.Object
    • com.azure.search.documents.indexes.models.ServiceIndexersRuntime

Implements

public final class ServiceIndexersRuntime
implements JsonSerializable<ServiceIndexersRuntime>

Represents service level indexers runtime information.

Constructor Summary

Constructor Description
ServiceIndexersRuntime(long usedSeconds, OffsetDateTime beginningTime, OffsetDateTime endingTime)

Creates an instance of ServiceIndexersRuntime class.

Method Summary

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

Reads an instance of ServiceIndexersRuntime from the JsonReader.

OffsetDateTime getBeginningTime()

Get the beginningTime property: Beginning UTC time of the 24-hour period considered for indexer runtime usage (inclusive).

OffsetDateTime getEndingTime()

Get the endingTime property: End UTC time of the 24-hour period considered for indexer runtime usage (inclusive).

Long getRemainingSeconds()

Get the remainingSeconds property: Cumulative runtime remaining for all indexers in the service from the beginningTime to endingTime, in seconds.

long getUsedSeconds()

Get the usedSeconds property: Cumulative runtime of all indexers in the service from the beginningTime to endingTime, in seconds.

ServiceIndexersRuntime setRemainingSeconds(Long remainingSeconds)

Set the remainingSeconds property: Cumulative runtime remaining for all indexers in the service from the beginningTime to endingTime, in seconds.

JsonWriter toJson(JsonWriter jsonWriter)

Methods inherited from java.lang.Object

Constructor Details

ServiceIndexersRuntime

public ServiceIndexersRuntime(long usedSeconds, OffsetDateTime beginningTime, OffsetDateTime endingTime)

Creates an instance of ServiceIndexersRuntime class.

Parameters:

usedSeconds - the usedSeconds value to set.
beginningTime - the beginningTime value to set.
endingTime - the endingTime value to set.

Method Details

fromJson

public static ServiceIndexersRuntime fromJson(JsonReader jsonReader)

Reads an instance of ServiceIndexersRuntime from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

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

getBeginningTime

public OffsetDateTime getBeginningTime()

Get the beginningTime property: Beginning UTC time of the 24-hour period considered for indexer runtime usage (inclusive).

Returns:

the beginningTime value.

getEndingTime

public OffsetDateTime getEndingTime()

Get the endingTime property: End UTC time of the 24-hour period considered for indexer runtime usage (inclusive).

Returns:

the endingTime value.

getRemainingSeconds

public Long getRemainingSeconds()

Get the remainingSeconds property: Cumulative runtime remaining for all indexers in the service from the beginningTime to endingTime, in seconds.

Returns:

the remainingSeconds value.

getUsedSeconds

public long getUsedSeconds()

Get the usedSeconds property: Cumulative runtime of all indexers in the service from the beginningTime to endingTime, in seconds.

Returns:

the usedSeconds value.

setRemainingSeconds

public ServiceIndexersRuntime setRemainingSeconds(Long remainingSeconds)

Set the remainingSeconds property: Cumulative runtime remaining for all indexers in the service from the beginningTime to endingTime, in seconds.

Parameters:

remainingSeconds - the remainingSeconds value to set.

Returns:

the ServiceIndexersRuntime object itself.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

Applies to