Class ListDataFeedIngestionOptions

java.lang.Object
com.azure.ai.metricsadvisor.administration.models.ListDataFeedIngestionOptions

public final class ListDataFeedIngestionOptions extends Object
Describes the additional parameters for the API to list data feed ingestion status.
  • Constructor Details

    • ListDataFeedIngestionOptions

      public ListDataFeedIngestionOptions(OffsetDateTime startTime, OffsetDateTime endTime)
      Creates a new instance of ListDataFeedIngestionOptions.
      Parameters:
      startTime - The start point of time range to query data ingestion status.
      endTime - The end point of time range to query data ingestion status.
  • Method Details

    • getStartTime

      public OffsetDateTime getStartTime()
      Gets the start point of time range to query data ingestion status.
      Returns:
      The start time.
    • getEndTime

      public OffsetDateTime getEndTime()
      Gets the end point of time range to query data ingestion status.
      Returns:
      The end time.
    • getMaxPageSize

      public Integer getMaxPageSize()
      Gets limit indicating the number of items that will be included in a service returned page.
      Returns:
      The max page size value.
    • getSkip

      public Integer getSkip()
      Gets the number of items in the queried collection that are to be skipped and not included in the returned result.
      Returns:
      The skip value.
    • setMaxPageSize

      public ListDataFeedIngestionOptions setMaxPageSize(Integer maxPageSize)
      Sets limit indicating the number of items to be included in a service returned page.
      Parameters:
      maxPageSize - The max page size value.
      Returns:
      The ListDataFeedIngestionOptions object itself.
    • setSkip

      public ListDataFeedIngestionOptions setSkip(Integer skip)
      Sets the number of items in the queried collection that are to be skipped and not included in the returned result.
      Parameters:
      skip - The skip value.
      Returns:
      The ListDataFeedIngestionOptions object itself.