Show / Hide Table of Contents

Class LogAnalyticsPaginators

Collection of helper methods that can be used to provide an enumerator interface to any list operations of LogAnalytics where multiple pages of data may be fetched. Two styles of enumerators are supported:

  • Enumerating over the Response objects returned by the list operation. These are referred to as ResponseEnumerators, and the methods are suffixed with ResponseEnumerator. For example: listUsersResponseEnumerator.
  • Enumerating over the resources/records being listed. These are referred to as RecordEnumerators, and the methods are suffixed with RecordEnumerator. For example: listUsersRecordEnumerator.
These enumerators abstract away the need to write code to manually handle pagination via looping and using the page tokens. They will automatically fetch more data from the service when required.

As an example, if we were using the ListUsers operation in IdentityService, then the iterator returned by calling a ResponseEnumerator method would iterate over the ListUsersResponse objects returned by each ListUsers call, whereas the enumerables returned by calling a RecordEnumerator method would iterate over the User records and we don't have to deal with ListUsersResponse objects at all. In either case, pagination will be automatically handled so we can iterate until there are no more responses or no more resources/records available.
Inheritance
object
LogAnalyticsPaginators
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.LoganalyticsService
Assembly: OCI.DotNetSDK.Loganalytics.dll
Syntax
public class LogAnalyticsPaginators

Constructors

LogAnalyticsPaginators(LogAnalyticsClient)

Declaration
public LogAnalyticsPaginators(LogAnalyticsClient client)
Parameters
Type Name Description
LogAnalyticsClient client

Methods

ListAssociableEntitiesRecordEnumerator(ListAssociableEntitiesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the AssociableEntity objects contained in responses from the ListAssociableEntities operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<AssociableEntity> ListAssociableEntitiesRecordEnumerator(ListAssociableEntitiesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAssociableEntitiesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<AssociableEntity>

The enumerator, which supports a simple iteration over a collection of a specified type

ListAssociableEntitiesResponseEnumerator(ListAssociableEntitiesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListAssociableEntities operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListAssociableEntitiesResponse> ListAssociableEntitiesResponseEnumerator(ListAssociableEntitiesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAssociableEntitiesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListAssociableEntitiesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListAssociatedEntitiesRecordEnumerator(ListAssociatedEntitiesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsAssociatedEntity objects contained in responses from the ListAssociatedEntities operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsAssociatedEntity> ListAssociatedEntitiesRecordEnumerator(ListAssociatedEntitiesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAssociatedEntitiesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsAssociatedEntity>

The enumerator, which supports a simple iteration over a collection of a specified type

ListAssociatedEntitiesResponseEnumerator(ListAssociatedEntitiesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListAssociatedEntities operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListAssociatedEntitiesResponse> ListAssociatedEntitiesResponseEnumerator(ListAssociatedEntitiesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAssociatedEntitiesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListAssociatedEntitiesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListAutoAssociationsRecordEnumerator(ListAutoAssociationsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the AutoAssociationState objects contained in responses from the ListAutoAssociations operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<AutoAssociationState> ListAutoAssociationsRecordEnumerator(ListAutoAssociationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutoAssociationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<AutoAssociationState>

The enumerator, which supports a simple iteration over a collection of a specified type

ListAutoAssociationsResponseEnumerator(ListAutoAssociationsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListAutoAssociations operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListAutoAssociationsResponse> ListAutoAssociationsResponseEnumerator(ListAutoAssociationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutoAssociationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListAutoAssociationsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListCategoriesRecordEnumerator(ListCategoriesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsCategory objects contained in responses from the ListCategories operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsCategory> ListCategoriesRecordEnumerator(ListCategoriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCategoriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsCategory>

The enumerator, which supports a simple iteration over a collection of a specified type

ListCategoriesResponseEnumerator(ListCategoriesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListCategories operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListCategoriesResponse> ListCategoriesResponseEnumerator(ListCategoriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCategoriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListCategoriesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListConfigWorkRequestsRecordEnumerator(ListConfigWorkRequestsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsConfigWorkRequestSummary objects contained in responses from the ListConfigWorkRequests operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsConfigWorkRequestSummary> ListConfigWorkRequestsRecordEnumerator(ListConfigWorkRequestsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListConfigWorkRequestsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsConfigWorkRequestSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListConfigWorkRequestsResponseEnumerator(ListConfigWorkRequestsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListConfigWorkRequests operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListConfigWorkRequestsResponse> ListConfigWorkRequestsResponseEnumerator(ListConfigWorkRequestsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListConfigWorkRequestsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListConfigWorkRequestsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListEffectivePropertiesRecordEnumerator(ListEffectivePropertiesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the EffectivePropertySummary objects contained in responses from the ListEffectiveProperties operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<EffectivePropertySummary> ListEffectivePropertiesRecordEnumerator(ListEffectivePropertiesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListEffectivePropertiesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<EffectivePropertySummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListEffectivePropertiesResponseEnumerator(ListEffectivePropertiesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListEffectiveProperties operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListEffectivePropertiesResponse> ListEffectivePropertiesResponseEnumerator(ListEffectivePropertiesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListEffectivePropertiesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListEffectivePropertiesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListEntityAssociationsRecordEnumerator(ListEntityAssociationsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsEntitySummary objects contained in responses from the ListEntityAssociations operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsEntitySummary> ListEntityAssociationsRecordEnumerator(ListEntityAssociationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListEntityAssociationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsEntitySummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListEntityAssociationsResponseEnumerator(ListEntityAssociationsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListEntityAssociations operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListEntityAssociationsResponse> ListEntityAssociationsResponseEnumerator(ListEntityAssociationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListEntityAssociationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListEntityAssociationsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListEntitySourceAssociationsRecordEnumerator(ListEntitySourceAssociationsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsAssociation objects contained in responses from the ListEntitySourceAssociations operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsAssociation> ListEntitySourceAssociationsRecordEnumerator(ListEntitySourceAssociationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListEntitySourceAssociationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsAssociation>

The enumerator, which supports a simple iteration over a collection of a specified type

ListEntitySourceAssociationsResponseEnumerator(ListEntitySourceAssociationsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListEntitySourceAssociations operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListEntitySourceAssociationsResponse> ListEntitySourceAssociationsResponseEnumerator(ListEntitySourceAssociationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListEntitySourceAssociationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListEntitySourceAssociationsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListFieldsRecordEnumerator(ListFieldsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsFieldSummary objects contained in responses from the ListFields operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsFieldSummary> ListFieldsRecordEnumerator(ListFieldsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListFieldsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsFieldSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListFieldsResponseEnumerator(ListFieldsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListFields operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListFieldsResponse> ListFieldsResponseEnumerator(ListFieldsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListFieldsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListFieldsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListIngestTimeRulesRecordEnumerator(ListIngestTimeRulesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the IngestTimeRuleSummary objects contained in responses from the ListIngestTimeRules operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<IngestTimeRuleSummary> ListIngestTimeRulesRecordEnumerator(ListIngestTimeRulesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListIngestTimeRulesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<IngestTimeRuleSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListIngestTimeRulesResponseEnumerator(ListIngestTimeRulesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListIngestTimeRules operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListIngestTimeRulesResponse> ListIngestTimeRulesResponseEnumerator(ListIngestTimeRulesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListIngestTimeRulesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListIngestTimeRulesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListLabelPrioritiesRecordEnumerator(ListLabelPrioritiesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LabelPriority objects contained in responses from the ListLabelPriorities operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LabelPriority> ListLabelPrioritiesRecordEnumerator(ListLabelPrioritiesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListLabelPrioritiesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LabelPriority>

The enumerator, which supports a simple iteration over a collection of a specified type

ListLabelPrioritiesResponseEnumerator(ListLabelPrioritiesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListLabelPriorities operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListLabelPrioritiesResponse> ListLabelPrioritiesResponseEnumerator(ListLabelPrioritiesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListLabelPrioritiesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListLabelPrioritiesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListLabelSourceDetailsRecordEnumerator(ListLabelSourceDetailsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LabelSourceSummary objects contained in responses from the ListLabelSourceDetails operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LabelSourceSummary> ListLabelSourceDetailsRecordEnumerator(ListLabelSourceDetailsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListLabelSourceDetailsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LabelSourceSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListLabelSourceDetailsResponseEnumerator(ListLabelSourceDetailsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListLabelSourceDetails operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListLabelSourceDetailsResponse> ListLabelSourceDetailsResponseEnumerator(ListLabelSourceDetailsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListLabelSourceDetailsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListLabelSourceDetailsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListLabelsRecordEnumerator(ListLabelsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsLabelSummary objects contained in responses from the ListLabels operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsLabelSummary> ListLabelsRecordEnumerator(ListLabelsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListLabelsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsLabelSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListLabelsResponseEnumerator(ListLabelsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListLabels operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListLabelsResponse> ListLabelsResponseEnumerator(ListLabelsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListLabelsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListLabelsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListLogAnalyticsEmBridgesRecordEnumerator(ListLogAnalyticsEmBridgesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsEmBridgeSummary objects contained in responses from the ListLogAnalyticsEmBridges operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsEmBridgeSummary> ListLogAnalyticsEmBridgesRecordEnumerator(ListLogAnalyticsEmBridgesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListLogAnalyticsEmBridgesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsEmBridgeSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListLogAnalyticsEmBridgesResponseEnumerator(ListLogAnalyticsEmBridgesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListLogAnalyticsEmBridges operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListLogAnalyticsEmBridgesResponse> ListLogAnalyticsEmBridgesResponseEnumerator(ListLogAnalyticsEmBridgesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListLogAnalyticsEmBridgesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListLogAnalyticsEmBridgesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListLogAnalyticsEntitiesRecordEnumerator(ListLogAnalyticsEntitiesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsEntitySummary objects contained in responses from the ListLogAnalyticsEntities operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsEntitySummary> ListLogAnalyticsEntitiesRecordEnumerator(ListLogAnalyticsEntitiesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListLogAnalyticsEntitiesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsEntitySummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListLogAnalyticsEntitiesResponseEnumerator(ListLogAnalyticsEntitiesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListLogAnalyticsEntities operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListLogAnalyticsEntitiesResponse> ListLogAnalyticsEntitiesResponseEnumerator(ListLogAnalyticsEntitiesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListLogAnalyticsEntitiesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListLogAnalyticsEntitiesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListLogAnalyticsEntityTopologyRecordEnumerator(ListLogAnalyticsEntityTopologyRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsEntityTopologySummary objects contained in responses from the ListLogAnalyticsEntityTopology operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsEntityTopologySummary> ListLogAnalyticsEntityTopologyRecordEnumerator(ListLogAnalyticsEntityTopologyRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListLogAnalyticsEntityTopologyRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsEntityTopologySummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListLogAnalyticsEntityTopologyResponseEnumerator(ListLogAnalyticsEntityTopologyRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListLogAnalyticsEntityTopology operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListLogAnalyticsEntityTopologyResponse> ListLogAnalyticsEntityTopologyResponseEnumerator(ListLogAnalyticsEntityTopologyRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListLogAnalyticsEntityTopologyRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListLogAnalyticsEntityTopologyResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListLogAnalyticsEntityTypesRecordEnumerator(ListLogAnalyticsEntityTypesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsEntityTypeSummary objects contained in responses from the ListLogAnalyticsEntityTypes operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsEntityTypeSummary> ListLogAnalyticsEntityTypesRecordEnumerator(ListLogAnalyticsEntityTypesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListLogAnalyticsEntityTypesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsEntityTypeSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListLogAnalyticsEntityTypesResponseEnumerator(ListLogAnalyticsEntityTypesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListLogAnalyticsEntityTypes operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListLogAnalyticsEntityTypesResponse> ListLogAnalyticsEntityTypesResponseEnumerator(ListLogAnalyticsEntityTypesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListLogAnalyticsEntityTypesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListLogAnalyticsEntityTypesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListLogAnalyticsLogGroupsRecordEnumerator(ListLogAnalyticsLogGroupsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsLogGroupSummary objects contained in responses from the ListLogAnalyticsLogGroups operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsLogGroupSummary> ListLogAnalyticsLogGroupsRecordEnumerator(ListLogAnalyticsLogGroupsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListLogAnalyticsLogGroupsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsLogGroupSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListLogAnalyticsLogGroupsResponseEnumerator(ListLogAnalyticsLogGroupsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListLogAnalyticsLogGroups operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListLogAnalyticsLogGroupsResponse> ListLogAnalyticsLogGroupsResponseEnumerator(ListLogAnalyticsLogGroupsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListLogAnalyticsLogGroupsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListLogAnalyticsLogGroupsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListLogAnalyticsObjectCollectionRulesRecordEnumerator(ListLogAnalyticsObjectCollectionRulesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsObjectCollectionRuleSummary objects contained in responses from the ListLogAnalyticsObjectCollectionRules operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsObjectCollectionRuleSummary> ListLogAnalyticsObjectCollectionRulesRecordEnumerator(ListLogAnalyticsObjectCollectionRulesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListLogAnalyticsObjectCollectionRulesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsObjectCollectionRuleSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListLogAnalyticsObjectCollectionRulesResponseEnumerator(ListLogAnalyticsObjectCollectionRulesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListLogAnalyticsObjectCollectionRules operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListLogAnalyticsObjectCollectionRulesResponse> ListLogAnalyticsObjectCollectionRulesResponseEnumerator(ListLogAnalyticsObjectCollectionRulesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListLogAnalyticsObjectCollectionRulesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListLogAnalyticsObjectCollectionRulesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListLookupsRecordEnumerator(ListLookupsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsLookup objects contained in responses from the ListLookups operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsLookup> ListLookupsRecordEnumerator(ListLookupsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListLookupsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsLookup>

The enumerator, which supports a simple iteration over a collection of a specified type

ListLookupsResponseEnumerator(ListLookupsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListLookups operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListLookupsResponse> ListLookupsResponseEnumerator(ListLookupsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListLookupsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListLookupsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListMetaSourceTypesRecordEnumerator(ListMetaSourceTypesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsMetaSourceType objects contained in responses from the ListMetaSourceTypes operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsMetaSourceType> ListMetaSourceTypesRecordEnumerator(ListMetaSourceTypesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMetaSourceTypesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsMetaSourceType>

The enumerator, which supports a simple iteration over a collection of a specified type

ListMetaSourceTypesResponseEnumerator(ListMetaSourceTypesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListMetaSourceTypes operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListMetaSourceTypesResponse> ListMetaSourceTypesResponseEnumerator(ListMetaSourceTypesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMetaSourceTypesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListMetaSourceTypesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListOverlappingRecallsRecordEnumerator(ListOverlappingRecallsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the OverlappingRecallSummary objects contained in responses from the ListOverlappingRecalls operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<OverlappingRecallSummary> ListOverlappingRecallsRecordEnumerator(ListOverlappingRecallsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListOverlappingRecallsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<OverlappingRecallSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListOverlappingRecallsResponseEnumerator(ListOverlappingRecallsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListOverlappingRecalls operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListOverlappingRecallsResponse> ListOverlappingRecallsResponseEnumerator(ListOverlappingRecallsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListOverlappingRecallsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListOverlappingRecallsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListParserActionsRecordEnumerator(ListParserActionsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the ParserActionSummary objects contained in responses from the ListParserActions operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ParserActionSummary> ListParserActionsRecordEnumerator(ListParserActionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListParserActionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ParserActionSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListParserActionsResponseEnumerator(ListParserActionsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListParserActions operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListParserActionsResponse> ListParserActionsResponseEnumerator(ListParserActionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListParserActionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListParserActionsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListParserFunctionsRecordEnumerator(ListParserFunctionsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsParserFunction objects contained in responses from the ListParserFunctions operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsParserFunction> ListParserFunctionsRecordEnumerator(ListParserFunctionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListParserFunctionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsParserFunction>

The enumerator, which supports a simple iteration over a collection of a specified type

ListParserFunctionsResponseEnumerator(ListParserFunctionsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListParserFunctions operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListParserFunctionsResponse> ListParserFunctionsResponseEnumerator(ListParserFunctionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListParserFunctionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListParserFunctionsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListParserMetaPluginsRecordEnumerator(ListParserMetaPluginsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsParserMetaPlugin objects contained in responses from the ListParserMetaPlugins operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsParserMetaPlugin> ListParserMetaPluginsRecordEnumerator(ListParserMetaPluginsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListParserMetaPluginsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsParserMetaPlugin>

The enumerator, which supports a simple iteration over a collection of a specified type

ListParserMetaPluginsResponseEnumerator(ListParserMetaPluginsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListParserMetaPlugins operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListParserMetaPluginsResponse> ListParserMetaPluginsResponseEnumerator(ListParserMetaPluginsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListParserMetaPluginsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListParserMetaPluginsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListParsersRecordEnumerator(ListParsersRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsParserSummary objects contained in responses from the ListParsers operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsParserSummary> ListParsersRecordEnumerator(ListParsersRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListParsersRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsParserSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListParsersResponseEnumerator(ListParsersRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListParsers operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListParsersResponse> ListParsersResponseEnumerator(ListParsersRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListParsersRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListParsersResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListPropertiesMetadataRecordEnumerator(ListPropertiesMetadataRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the PropertyMetadataSummary objects contained in responses from the ListPropertiesMetadata operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<PropertyMetadataSummary> ListPropertiesMetadataRecordEnumerator(ListPropertiesMetadataRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPropertiesMetadataRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<PropertyMetadataSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListPropertiesMetadataResponseEnumerator(ListPropertiesMetadataRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListPropertiesMetadata operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListPropertiesMetadataResponse> ListPropertiesMetadataResponseEnumerator(ListPropertiesMetadataRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPropertiesMetadataRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListPropertiesMetadataResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListQueryWorkRequestsRecordEnumerator(ListQueryWorkRequestsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the QueryWorkRequestSummary objects contained in responses from the ListQueryWorkRequests operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<QueryWorkRequestSummary> ListQueryWorkRequestsRecordEnumerator(ListQueryWorkRequestsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListQueryWorkRequestsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<QueryWorkRequestSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListQueryWorkRequestsResponseEnumerator(ListQueryWorkRequestsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListQueryWorkRequests operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListQueryWorkRequestsResponse> ListQueryWorkRequestsResponseEnumerator(ListQueryWorkRequestsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListQueryWorkRequestsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListQueryWorkRequestsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListRecalledDataRecordEnumerator(ListRecalledDataRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the RecalledData objects contained in responses from the ListRecalledData operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<RecalledData> ListRecalledDataRecordEnumerator(ListRecalledDataRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListRecalledDataRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<RecalledData>

The enumerator, which supports a simple iteration over a collection of a specified type

ListRecalledDataResponseEnumerator(ListRecalledDataRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListRecalledData operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListRecalledDataResponse> ListRecalledDataResponseEnumerator(ListRecalledDataRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListRecalledDataRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListRecalledDataResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListRecalledInfoRecordEnumerator(ListRecalledInfoRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the RecalledInfo objects contained in responses from the ListRecalledInfo operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<RecalledInfo> ListRecalledInfoRecordEnumerator(ListRecalledInfoRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListRecalledInfoRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<RecalledInfo>

The enumerator, which supports a simple iteration over a collection of a specified type

ListRecalledInfoResponseEnumerator(ListRecalledInfoRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListRecalledInfo operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListRecalledInfoResponse> ListRecalledInfoResponseEnumerator(ListRecalledInfoRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListRecalledInfoRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListRecalledInfoResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListResourceCategoriesRecordEnumerator(ListResourceCategoriesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsResourceCategory objects contained in responses from the ListResourceCategories operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsResourceCategory> ListResourceCategoriesRecordEnumerator(ListResourceCategoriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListResourceCategoriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsResourceCategory>

The enumerator, which supports a simple iteration over a collection of a specified type

ListResourceCategoriesResponseEnumerator(ListResourceCategoriesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListResourceCategories operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListResourceCategoriesResponse> ListResourceCategoriesResponseEnumerator(ListResourceCategoriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListResourceCategoriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListResourceCategoriesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListRulesRecordEnumerator(ListRulesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the RuleSummary objects contained in responses from the ListRules operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<RuleSummary> ListRulesRecordEnumerator(ListRulesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListRulesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<RuleSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListRulesResponseEnumerator(ListRulesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListRules operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListRulesResponse> ListRulesResponseEnumerator(ListRulesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListRulesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListRulesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListScheduledTasksRecordEnumerator(ListScheduledTasksRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the ScheduledTaskSummary objects contained in responses from the ListScheduledTasks operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ScheduledTaskSummary> ListScheduledTasksRecordEnumerator(ListScheduledTasksRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListScheduledTasksRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ScheduledTaskSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListScheduledTasksResponseEnumerator(ListScheduledTasksRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListScheduledTasks operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListScheduledTasksResponse> ListScheduledTasksResponseEnumerator(ListScheduledTasksRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListScheduledTasksRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListScheduledTasksResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListSourceAssociationsRecordEnumerator(ListSourceAssociationsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsAssociation objects contained in responses from the ListSourceAssociations operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsAssociation> ListSourceAssociationsRecordEnumerator(ListSourceAssociationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSourceAssociationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsAssociation>

The enumerator, which supports a simple iteration over a collection of a specified type

ListSourceAssociationsResponseEnumerator(ListSourceAssociationsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListSourceAssociations operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListSourceAssociationsResponse> ListSourceAssociationsResponseEnumerator(ListSourceAssociationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSourceAssociationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListSourceAssociationsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListSourceEventTypesRecordEnumerator(ListSourceEventTypesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the EventType objects contained in responses from the ListSourceEventTypes operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<EventType> ListSourceEventTypesRecordEnumerator(ListSourceEventTypesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSourceEventTypesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<EventType>

The enumerator, which supports a simple iteration over a collection of a specified type

ListSourceEventTypesResponseEnumerator(ListSourceEventTypesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListSourceEventTypes operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListSourceEventTypesResponse> ListSourceEventTypesResponseEnumerator(ListSourceEventTypesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSourceEventTypesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListSourceEventTypesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListSourceExtendedFieldDefinitionsRecordEnumerator(ListSourceExtendedFieldDefinitionsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsSourceExtendedFieldDefinition objects contained in responses from the ListSourceExtendedFieldDefinitions operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsSourceExtendedFieldDefinition> ListSourceExtendedFieldDefinitionsRecordEnumerator(ListSourceExtendedFieldDefinitionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSourceExtendedFieldDefinitionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsSourceExtendedFieldDefinition>

The enumerator, which supports a simple iteration over a collection of a specified type

ListSourceExtendedFieldDefinitionsResponseEnumerator(ListSourceExtendedFieldDefinitionsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListSourceExtendedFieldDefinitions operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListSourceExtendedFieldDefinitionsResponse> ListSourceExtendedFieldDefinitionsResponseEnumerator(ListSourceExtendedFieldDefinitionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSourceExtendedFieldDefinitionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListSourceExtendedFieldDefinitionsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListSourceLabelOperatorsRecordEnumerator(ListSourceLabelOperatorsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsLabelOperator objects contained in responses from the ListSourceLabelOperators operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsLabelOperator> ListSourceLabelOperatorsRecordEnumerator(ListSourceLabelOperatorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSourceLabelOperatorsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsLabelOperator>

The enumerator, which supports a simple iteration over a collection of a specified type

ListSourceLabelOperatorsResponseEnumerator(ListSourceLabelOperatorsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListSourceLabelOperators operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListSourceLabelOperatorsResponse> ListSourceLabelOperatorsResponseEnumerator(ListSourceLabelOperatorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSourceLabelOperatorsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListSourceLabelOperatorsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListSourceMetaFunctionsRecordEnumerator(ListSourceMetaFunctionsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsMetaFunction objects contained in responses from the ListSourceMetaFunctions operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsMetaFunction> ListSourceMetaFunctionsRecordEnumerator(ListSourceMetaFunctionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSourceMetaFunctionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsMetaFunction>

The enumerator, which supports a simple iteration over a collection of a specified type

ListSourceMetaFunctionsResponseEnumerator(ListSourceMetaFunctionsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListSourceMetaFunctions operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListSourceMetaFunctionsResponse> ListSourceMetaFunctionsResponseEnumerator(ListSourceMetaFunctionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSourceMetaFunctionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListSourceMetaFunctionsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListSourcePatternsRecordEnumerator(ListSourcePatternsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsSourcePattern objects contained in responses from the ListSourcePatterns operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsSourcePattern> ListSourcePatternsRecordEnumerator(ListSourcePatternsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSourcePatternsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsSourcePattern>

The enumerator, which supports a simple iteration over a collection of a specified type

ListSourcePatternsResponseEnumerator(ListSourcePatternsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListSourcePatterns operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListSourcePatternsResponse> ListSourcePatternsResponseEnumerator(ListSourcePatternsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSourcePatternsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListSourcePatternsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListSourcesRecordEnumerator(ListSourcesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsSourceSummary objects contained in responses from the ListSources operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsSourceSummary> ListSourcesRecordEnumerator(ListSourcesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSourcesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsSourceSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListSourcesResponseEnumerator(ListSourcesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListSources operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListSourcesResponse> ListSourcesResponseEnumerator(ListSourcesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSourcesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListSourcesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListStorageWorkRequestErrorsRecordEnumerator(ListStorageWorkRequestErrorsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the WorkRequestError objects contained in responses from the ListStorageWorkRequestErrors operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<WorkRequestError> ListStorageWorkRequestErrorsRecordEnumerator(ListStorageWorkRequestErrorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListStorageWorkRequestErrorsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<WorkRequestError>

The enumerator, which supports a simple iteration over a collection of a specified type

ListStorageWorkRequestErrorsResponseEnumerator(ListStorageWorkRequestErrorsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListStorageWorkRequestErrors operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListStorageWorkRequestErrorsResponse> ListStorageWorkRequestErrorsResponseEnumerator(ListStorageWorkRequestErrorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListStorageWorkRequestErrorsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListStorageWorkRequestErrorsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListStorageWorkRequestsRecordEnumerator(ListStorageWorkRequestsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the StorageWorkRequestSummary objects contained in responses from the ListStorageWorkRequests operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<StorageWorkRequestSummary> ListStorageWorkRequestsRecordEnumerator(ListStorageWorkRequestsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListStorageWorkRequestsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<StorageWorkRequestSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListStorageWorkRequestsResponseEnumerator(ListStorageWorkRequestsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListStorageWorkRequests operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListStorageWorkRequestsResponse> ListStorageWorkRequestsResponseEnumerator(ListStorageWorkRequestsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListStorageWorkRequestsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListStorageWorkRequestsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListTemplatesRecordEnumerator(ListTemplatesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsTemplateSummary objects contained in responses from the ListTemplates operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsTemplateSummary> ListTemplatesRecordEnumerator(ListTemplatesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListTemplatesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsTemplateSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListTemplatesResponseEnumerator(ListTemplatesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListTemplates operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListTemplatesResponse> ListTemplatesResponseEnumerator(ListTemplatesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListTemplatesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListTemplatesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListUploadFilesRecordEnumerator(ListUploadFilesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the UploadFileSummary objects contained in responses from the ListUploadFiles operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<UploadFileSummary> ListUploadFilesRecordEnumerator(ListUploadFilesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListUploadFilesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<UploadFileSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListUploadFilesResponseEnumerator(ListUploadFilesRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListUploadFiles operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListUploadFilesResponse> ListUploadFilesResponseEnumerator(ListUploadFilesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListUploadFilesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListUploadFilesResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListUploadWarningsRecordEnumerator(ListUploadWarningsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the UploadWarningSummary objects contained in responses from the ListUploadWarnings operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<UploadWarningSummary> ListUploadWarningsRecordEnumerator(ListUploadWarningsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListUploadWarningsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<UploadWarningSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListUploadWarningsResponseEnumerator(ListUploadWarningsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListUploadWarnings operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListUploadWarningsResponse> ListUploadWarningsResponseEnumerator(ListUploadWarningsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListUploadWarningsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListUploadWarningsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListUploadsRecordEnumerator(ListUploadsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the UploadSummary objects contained in responses from the ListUploads operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<UploadSummary> ListUploadsRecordEnumerator(ListUploadsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListUploadsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<UploadSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListUploadsResponseEnumerator(ListUploadsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListUploads operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListUploadsResponse> ListUploadsResponseEnumerator(ListUploadsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListUploadsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListUploadsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListWarningsRecordEnumerator(ListWarningsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the LogAnalyticsWarning objects contained in responses from the ListWarnings operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<LogAnalyticsWarning> ListWarningsRecordEnumerator(ListWarningsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListWarningsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<LogAnalyticsWarning>

The enumerator, which supports a simple iteration over a collection of a specified type

ListWarningsResponseEnumerator(ListWarningsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListWarnings operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListWarningsResponse> ListWarningsResponseEnumerator(ListWarningsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListWarningsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListWarningsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListWorkRequestErrorsRecordEnumerator(ListWorkRequestErrorsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the WorkRequestError objects contained in responses from the ListWorkRequestErrors operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<WorkRequestError> ListWorkRequestErrorsRecordEnumerator(ListWorkRequestErrorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListWorkRequestErrorsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<WorkRequestError>

The enumerator, which supports a simple iteration over a collection of a specified type

ListWorkRequestErrorsResponseEnumerator(ListWorkRequestErrorsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListWorkRequestErrors operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListWorkRequestErrorsResponse> ListWorkRequestErrorsResponseEnumerator(ListWorkRequestErrorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListWorkRequestErrorsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListWorkRequestErrorsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListWorkRequestLogsRecordEnumerator(ListWorkRequestLogsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the WorkRequestLog objects contained in responses from the ListWorkRequestLogs operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<WorkRequestLog> ListWorkRequestLogsRecordEnumerator(ListWorkRequestLogsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListWorkRequestLogsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<WorkRequestLog>

The enumerator, which supports a simple iteration over a collection of a specified type

ListWorkRequestLogsResponseEnumerator(ListWorkRequestLogsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListWorkRequestLogs operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListWorkRequestLogsResponse> ListWorkRequestLogsResponseEnumerator(ListWorkRequestLogsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListWorkRequestLogsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListWorkRequestLogsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

ListWorkRequestsRecordEnumerator(ListWorkRequestsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the WorkRequestSummary objects contained in responses from the ListWorkRequests operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<WorkRequestSummary> ListWorkRequestsRecordEnumerator(ListWorkRequestsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListWorkRequestsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<WorkRequestSummary>

The enumerator, which supports a simple iteration over a collection of a specified type

ListWorkRequestsResponseEnumerator(ListWorkRequestsRequest, RetryConfiguration, CancellationToken)

Creates a new enumerable which will iterate over the responses received from the ListWorkRequests operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<ListWorkRequestsResponse> ListWorkRequestsResponseEnumerator(ListWorkRequestsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListWorkRequestsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListWorkRequestsResponse>

The enumerator, which supports a simple iteration over a collection of a specified type

In this article
Back to top