Class ListHookOptions

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

public final class ListHookOptions extends Object
Describes the additional parameters for the API to list hooks.
  • Constructor Details

    • ListHookOptions

      public ListHookOptions()
  • Method Details

    • getHookNameFilter

      public String getHookNameFilter()
      Gets the hook name filter.
      Returns:
      The hook filter.
    • 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.
    • setHookNameFilter

      public ListHookOptions setHookNameFilter(String hookNameFilter)
      Sets the hook name filter.
      Parameters:
      hookNameFilter - The hook name filter.
      Returns:
      The ListHookOptions object itself.
    • setMaxPageSize

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

      public ListHookOptions 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:
      ListHookOptions object itself.