Show / Hide Table of Contents

Class DataSafePaginators

Collection of helper methods that can be used to provide an enumerator interface to any list operations of DataSafe 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
DataSafePaginators
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatasafeService
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class DataSafePaginators

Constructors

DataSafePaginators(DataSafeClient)

Declaration
public DataSafePaginators(DataSafeClient client)
Parameters
Type Name Description
DataSafeClient client

Methods

ListAlertAnalyticsRecordEnumerator(ListAlertAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AlertAggregationItems> ListAlertAnalyticsRecordEnumerator(ListAlertAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAlertAnalyticsRequest 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<AlertAggregationItems>

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

ListAlertAnalyticsResponseEnumerator(ListAlertAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAlertAnalyticsResponse> ListAlertAnalyticsResponseEnumerator(ListAlertAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAlertAnalyticsRequest 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<ListAlertAnalyticsResponse>

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

ListAlertPoliciesRecordEnumerator(ListAlertPoliciesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AlertPolicySummary> ListAlertPoliciesRecordEnumerator(ListAlertPoliciesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAlertPoliciesRequest 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<AlertPolicySummary>

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

ListAlertPoliciesResponseEnumerator(ListAlertPoliciesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAlertPoliciesResponse> ListAlertPoliciesResponseEnumerator(ListAlertPoliciesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAlertPoliciesRequest 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<ListAlertPoliciesResponse>

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

ListAlertPolicyRulesRecordEnumerator(ListAlertPolicyRulesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AlertPolicyRuleSummary> ListAlertPolicyRulesRecordEnumerator(ListAlertPolicyRulesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAlertPolicyRulesRequest 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<AlertPolicyRuleSummary>

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

ListAlertPolicyRulesResponseEnumerator(ListAlertPolicyRulesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAlertPolicyRulesResponse> ListAlertPolicyRulesResponseEnumerator(ListAlertPolicyRulesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAlertPolicyRulesRequest 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<ListAlertPolicyRulesResponse>

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

ListAlertsRecordEnumerator(ListAlertsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AlertSummary> ListAlertsRecordEnumerator(ListAlertsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAlertsRequest 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<AlertSummary>

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

ListAlertsResponseEnumerator(ListAlertsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAlertsResponse> ListAlertsResponseEnumerator(ListAlertsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAlertsRequest 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<ListAlertsResponse>

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

ListAuditArchiveRetrievalsRecordEnumerator(ListAuditArchiveRetrievalsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AuditArchiveRetrievalSummary> ListAuditArchiveRetrievalsRecordEnumerator(ListAuditArchiveRetrievalsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAuditArchiveRetrievalsRequest 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<AuditArchiveRetrievalSummary>

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

ListAuditArchiveRetrievalsResponseEnumerator(ListAuditArchiveRetrievalsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAuditArchiveRetrievalsResponse> ListAuditArchiveRetrievalsResponseEnumerator(ListAuditArchiveRetrievalsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAuditArchiveRetrievalsRequest 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<ListAuditArchiveRetrievalsResponse>

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

ListAuditEventAnalyticsRecordEnumerator(ListAuditEventAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AuditEventAggregationItems> ListAuditEventAnalyticsRecordEnumerator(ListAuditEventAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAuditEventAnalyticsRequest 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<AuditEventAggregationItems>

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

ListAuditEventAnalyticsResponseEnumerator(ListAuditEventAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAuditEventAnalyticsResponse> ListAuditEventAnalyticsResponseEnumerator(ListAuditEventAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAuditEventAnalyticsRequest 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<ListAuditEventAnalyticsResponse>

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

ListAuditEventsRecordEnumerator(ListAuditEventsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AuditEventSummary> ListAuditEventsRecordEnumerator(ListAuditEventsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAuditEventsRequest 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<AuditEventSummary>

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

ListAuditEventsResponseEnumerator(ListAuditEventsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAuditEventsResponse> ListAuditEventsResponseEnumerator(ListAuditEventsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAuditEventsRequest 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<ListAuditEventsResponse>

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

ListAuditPoliciesRecordEnumerator(ListAuditPoliciesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AuditPolicySummary> ListAuditPoliciesRecordEnumerator(ListAuditPoliciesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAuditPoliciesRequest 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<AuditPolicySummary>

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

ListAuditPoliciesResponseEnumerator(ListAuditPoliciesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAuditPoliciesResponse> ListAuditPoliciesResponseEnumerator(ListAuditPoliciesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAuditPoliciesRequest 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<ListAuditPoliciesResponse>

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

ListAuditPolicyAnalyticsRecordEnumerator(ListAuditPolicyAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AuditPolicyAggregationItems> ListAuditPolicyAnalyticsRecordEnumerator(ListAuditPolicyAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAuditPolicyAnalyticsRequest 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<AuditPolicyAggregationItems>

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

ListAuditPolicyAnalyticsResponseEnumerator(ListAuditPolicyAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAuditPolicyAnalyticsResponse> ListAuditPolicyAnalyticsResponseEnumerator(ListAuditPolicyAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAuditPolicyAnalyticsRequest 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<ListAuditPolicyAnalyticsResponse>

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

ListAuditProfileAnalyticsRecordEnumerator(ListAuditProfileAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AuditProfileAggregationItems> ListAuditProfileAnalyticsRecordEnumerator(ListAuditProfileAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAuditProfileAnalyticsRequest 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<AuditProfileAggregationItems>

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

ListAuditProfileAnalyticsResponseEnumerator(ListAuditProfileAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAuditProfileAnalyticsResponse> ListAuditProfileAnalyticsResponseEnumerator(ListAuditProfileAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAuditProfileAnalyticsRequest 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<ListAuditProfileAnalyticsResponse>

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

ListAuditProfilesRecordEnumerator(ListAuditProfilesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AuditProfileSummary> ListAuditProfilesRecordEnumerator(ListAuditProfilesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAuditProfilesRequest 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<AuditProfileSummary>

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

ListAuditProfilesResponseEnumerator(ListAuditProfilesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAuditProfilesResponse> ListAuditProfilesResponseEnumerator(ListAuditProfilesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAuditProfilesRequest 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<ListAuditProfilesResponse>

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

ListAuditTrailAnalyticsRecordEnumerator(ListAuditTrailAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AuditTrailAggregationItems> ListAuditTrailAnalyticsRecordEnumerator(ListAuditTrailAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAuditTrailAnalyticsRequest 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<AuditTrailAggregationItems>

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

ListAuditTrailAnalyticsResponseEnumerator(ListAuditTrailAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAuditTrailAnalyticsResponse> ListAuditTrailAnalyticsResponseEnumerator(ListAuditTrailAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAuditTrailAnalyticsRequest 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<ListAuditTrailAnalyticsResponse>

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

ListAuditTrailsRecordEnumerator(ListAuditTrailsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AuditTrailSummary> ListAuditTrailsRecordEnumerator(ListAuditTrailsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAuditTrailsRequest 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<AuditTrailSummary>

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

ListAuditTrailsResponseEnumerator(ListAuditTrailsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAuditTrailsResponse> ListAuditTrailsResponseEnumerator(ListAuditTrailsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAuditTrailsRequest 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<ListAuditTrailsResponse>

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

ListAvailableAuditVolumesRecordEnumerator(ListAvailableAuditVolumesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AvailableAuditVolumeSummary> ListAvailableAuditVolumesRecordEnumerator(ListAvailableAuditVolumesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAvailableAuditVolumesRequest 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<AvailableAuditVolumeSummary>

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

ListAvailableAuditVolumesResponseEnumerator(ListAvailableAuditVolumesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAvailableAuditVolumesResponse> ListAvailableAuditVolumesResponseEnumerator(ListAvailableAuditVolumesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAvailableAuditVolumesRequest 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<ListAvailableAuditVolumesResponse>

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

ListCollectedAuditVolumesRecordEnumerator(ListCollectedAuditVolumesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<CollectedAuditVolumeSummary> ListCollectedAuditVolumesRecordEnumerator(ListCollectedAuditVolumesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCollectedAuditVolumesRequest 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<CollectedAuditVolumeSummary>

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

ListCollectedAuditVolumesResponseEnumerator(ListCollectedAuditVolumesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListCollectedAuditVolumesResponse> ListCollectedAuditVolumesResponseEnumerator(ListCollectedAuditVolumesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCollectedAuditVolumesRequest 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<ListCollectedAuditVolumesResponse>

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

ListColumnsRecordEnumerator(ListColumnsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ColumnSummary> ListColumnsRecordEnumerator(ListColumnsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListColumnsRequest 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<ColumnSummary>

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

ListColumnsResponseEnumerator(ListColumnsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListColumnsResponse> ListColumnsResponseEnumerator(ListColumnsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListColumnsRequest 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<ListColumnsResponse>

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

ListDataSafePrivateEndpointsRecordEnumerator(ListDataSafePrivateEndpointsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<DataSafePrivateEndpointSummary> ListDataSafePrivateEndpointsRecordEnumerator(ListDataSafePrivateEndpointsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDataSafePrivateEndpointsRequest 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<DataSafePrivateEndpointSummary>

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

ListDataSafePrivateEndpointsResponseEnumerator(ListDataSafePrivateEndpointsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDataSafePrivateEndpointsResponse> ListDataSafePrivateEndpointsResponseEnumerator(ListDataSafePrivateEndpointsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDataSafePrivateEndpointsRequest 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<ListDataSafePrivateEndpointsResponse>

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

ListDatabaseSecurityConfigsRecordEnumerator(ListDatabaseSecurityConfigsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<DatabaseSecurityConfigSummary> ListDatabaseSecurityConfigsRecordEnumerator(ListDatabaseSecurityConfigsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDatabaseSecurityConfigsRequest 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<DatabaseSecurityConfigSummary>

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

ListDatabaseSecurityConfigsResponseEnumerator(ListDatabaseSecurityConfigsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDatabaseSecurityConfigsResponse> ListDatabaseSecurityConfigsResponseEnumerator(ListDatabaseSecurityConfigsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDatabaseSecurityConfigsRequest 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<ListDatabaseSecurityConfigsResponse>

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

ListDatabaseTableAccessEntriesRecordEnumerator(ListDatabaseTableAccessEntriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<DatabaseTableAccessEntrySummary> ListDatabaseTableAccessEntriesRecordEnumerator(ListDatabaseTableAccessEntriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDatabaseTableAccessEntriesRequest 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<DatabaseTableAccessEntrySummary>

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

ListDatabaseTableAccessEntriesResponseEnumerator(ListDatabaseTableAccessEntriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDatabaseTableAccessEntriesResponse> ListDatabaseTableAccessEntriesResponseEnumerator(ListDatabaseTableAccessEntriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDatabaseTableAccessEntriesRequest 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<ListDatabaseTableAccessEntriesResponse>

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

ListDatabaseViewAccessEntriesRecordEnumerator(ListDatabaseViewAccessEntriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<DatabaseViewAccessEntrySummary> ListDatabaseViewAccessEntriesRecordEnumerator(ListDatabaseViewAccessEntriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDatabaseViewAccessEntriesRequest 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<DatabaseViewAccessEntrySummary>

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

ListDatabaseViewAccessEntriesResponseEnumerator(ListDatabaseViewAccessEntriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDatabaseViewAccessEntriesResponse> ListDatabaseViewAccessEntriesResponseEnumerator(ListDatabaseViewAccessEntriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDatabaseViewAccessEntriesRequest 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<ListDatabaseViewAccessEntriesResponse>

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

ListDifferenceColumnsRecordEnumerator(ListDifferenceColumnsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<DifferenceColumnSummary> ListDifferenceColumnsRecordEnumerator(ListDifferenceColumnsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDifferenceColumnsRequest 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<DifferenceColumnSummary>

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

ListDifferenceColumnsResponseEnumerator(ListDifferenceColumnsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDifferenceColumnsResponse> ListDifferenceColumnsResponseEnumerator(ListDifferenceColumnsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDifferenceColumnsRequest 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<ListDifferenceColumnsResponse>

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

ListDiscoveryAnalyticsRecordEnumerator(ListDiscoveryAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<DiscoveryAnalyticsSummary> ListDiscoveryAnalyticsRecordEnumerator(ListDiscoveryAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDiscoveryAnalyticsRequest 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<DiscoveryAnalyticsSummary>

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

ListDiscoveryAnalyticsResponseEnumerator(ListDiscoveryAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDiscoveryAnalyticsResponse> ListDiscoveryAnalyticsResponseEnumerator(ListDiscoveryAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDiscoveryAnalyticsRequest 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<ListDiscoveryAnalyticsResponse>

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

ListDiscoveryJobResultsRecordEnumerator(ListDiscoveryJobResultsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<DiscoveryJobResultSummary> ListDiscoveryJobResultsRecordEnumerator(ListDiscoveryJobResultsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDiscoveryJobResultsRequest 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<DiscoveryJobResultSummary>

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

ListDiscoveryJobResultsResponseEnumerator(ListDiscoveryJobResultsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDiscoveryJobResultsResponse> ListDiscoveryJobResultsResponseEnumerator(ListDiscoveryJobResultsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDiscoveryJobResultsRequest 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<ListDiscoveryJobResultsResponse>

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

ListDiscoveryJobsRecordEnumerator(ListDiscoveryJobsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<DiscoveryJobSummary> ListDiscoveryJobsRecordEnumerator(ListDiscoveryJobsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDiscoveryJobsRequest 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<DiscoveryJobSummary>

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

ListDiscoveryJobsResponseEnumerator(ListDiscoveryJobsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDiscoveryJobsResponse> ListDiscoveryJobsResponseEnumerator(ListDiscoveryJobsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDiscoveryJobsRequest 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<ListDiscoveryJobsResponse>

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

ListFindingAnalyticsRecordEnumerator(ListFindingAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<FindingAnalyticsSummary> ListFindingAnalyticsRecordEnumerator(ListFindingAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListFindingAnalyticsRequest 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<FindingAnalyticsSummary>

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

ListFindingAnalyticsResponseEnumerator(ListFindingAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListFindingAnalyticsResponse> ListFindingAnalyticsResponseEnumerator(ListFindingAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListFindingAnalyticsRequest 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<ListFindingAnalyticsResponse>

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

ListFindingsChangeAuditLogsRecordEnumerator(ListFindingsChangeAuditLogsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<FindingsChangeAuditLogSummary> ListFindingsChangeAuditLogsRecordEnumerator(ListFindingsChangeAuditLogsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListFindingsChangeAuditLogsRequest 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<FindingsChangeAuditLogSummary>

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

ListFindingsChangeAuditLogsResponseEnumerator(ListFindingsChangeAuditLogsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListFindingsChangeAuditLogsResponse> ListFindingsChangeAuditLogsResponseEnumerator(ListFindingsChangeAuditLogsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListFindingsChangeAuditLogsRequest 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<ListFindingsChangeAuditLogsResponse>

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

ListFindingsRecordEnumerator(ListFindingsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<FindingSummary> ListFindingsRecordEnumerator(ListFindingsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListFindingsRequest 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<FindingSummary>

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

ListFindingsResponseEnumerator(ListFindingsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListFindingsResponse> ListFindingsResponseEnumerator(ListFindingsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListFindingsRequest 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<ListFindingsResponse>

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

ListGrantsRecordEnumerator(ListGrantsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<GrantSummary> ListGrantsRecordEnumerator(ListGrantsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListGrantsRequest 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<GrantSummary>

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

ListGrantsResponseEnumerator(ListGrantsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListGrantsResponse> ListGrantsResponseEnumerator(ListGrantsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListGrantsRequest 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<ListGrantsResponse>

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

ListGroupedSensitiveTypesRecordEnumerator(ListGroupedSensitiveTypesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<GroupedSensitiveTypeSummary> ListGroupedSensitiveTypesRecordEnumerator(ListGroupedSensitiveTypesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListGroupedSensitiveTypesRequest 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<GroupedSensitiveTypeSummary>

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

ListGroupedSensitiveTypesResponseEnumerator(ListGroupedSensitiveTypesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListGroupedSensitiveTypesResponse> ListGroupedSensitiveTypesResponseEnumerator(ListGroupedSensitiveTypesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListGroupedSensitiveTypesRequest 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<ListGroupedSensitiveTypesResponse>

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

ListLibraryMaskingFormatsRecordEnumerator(ListLibraryMaskingFormatsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<LibraryMaskingFormatSummary> ListLibraryMaskingFormatsRecordEnumerator(ListLibraryMaskingFormatsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListLibraryMaskingFormatsRequest 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<LibraryMaskingFormatSummary>

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

ListLibraryMaskingFormatsResponseEnumerator(ListLibraryMaskingFormatsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListLibraryMaskingFormatsResponse> ListLibraryMaskingFormatsResponseEnumerator(ListLibraryMaskingFormatsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListLibraryMaskingFormatsRequest 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<ListLibraryMaskingFormatsResponse>

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

ListMaskedColumnsRecordEnumerator(ListMaskedColumnsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<MaskedColumnSummary> ListMaskedColumnsRecordEnumerator(ListMaskedColumnsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaskedColumnsRequest 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<MaskedColumnSummary>

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

ListMaskedColumnsResponseEnumerator(ListMaskedColumnsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListMaskedColumnsResponse> ListMaskedColumnsResponseEnumerator(ListMaskedColumnsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaskedColumnsRequest 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<ListMaskedColumnsResponse>

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

ListMaskingAnalyticsRecordEnumerator(ListMaskingAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<MaskingAnalyticsSummary> ListMaskingAnalyticsRecordEnumerator(ListMaskingAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaskingAnalyticsRequest 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<MaskingAnalyticsSummary>

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

ListMaskingAnalyticsResponseEnumerator(ListMaskingAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListMaskingAnalyticsResponse> ListMaskingAnalyticsResponseEnumerator(ListMaskingAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaskingAnalyticsRequest 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<ListMaskingAnalyticsResponse>

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

ListMaskingColumnsRecordEnumerator(ListMaskingColumnsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<MaskingColumnSummary> ListMaskingColumnsRecordEnumerator(ListMaskingColumnsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaskingColumnsRequest 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<MaskingColumnSummary>

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

ListMaskingColumnsResponseEnumerator(ListMaskingColumnsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListMaskingColumnsResponse> ListMaskingColumnsResponseEnumerator(ListMaskingColumnsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaskingColumnsRequest 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<ListMaskingColumnsResponse>

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

ListMaskingErrorsRecordEnumerator(ListMaskingErrorsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<MaskingErrorSummary> ListMaskingErrorsRecordEnumerator(ListMaskingErrorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaskingErrorsRequest 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<MaskingErrorSummary>

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

ListMaskingErrorsResponseEnumerator(ListMaskingErrorsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListMaskingErrorsResponse> ListMaskingErrorsResponseEnumerator(ListMaskingErrorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaskingErrorsRequest 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<ListMaskingErrorsResponse>

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

ListMaskingObjectsRecordEnumerator(ListMaskingObjectsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<MaskingObjectSummary> ListMaskingObjectsRecordEnumerator(ListMaskingObjectsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaskingObjectsRequest 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<MaskingObjectSummary>

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

ListMaskingObjectsResponseEnumerator(ListMaskingObjectsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListMaskingObjectsResponse> ListMaskingObjectsResponseEnumerator(ListMaskingObjectsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaskingObjectsRequest 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<ListMaskingObjectsResponse>

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

ListMaskingPoliciesRecordEnumerator(ListMaskingPoliciesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<MaskingPolicySummary> ListMaskingPoliciesRecordEnumerator(ListMaskingPoliciesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaskingPoliciesRequest 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<MaskingPolicySummary>

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

ListMaskingPoliciesResponseEnumerator(ListMaskingPoliciesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListMaskingPoliciesResponse> ListMaskingPoliciesResponseEnumerator(ListMaskingPoliciesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaskingPoliciesRequest 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<ListMaskingPoliciesResponse>

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

ListMaskingPolicyHealthReportLogsRecordEnumerator(ListMaskingPolicyHealthReportLogsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<MaskingPolicyHealthReportLogSummary> ListMaskingPolicyHealthReportLogsRecordEnumerator(ListMaskingPolicyHealthReportLogsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaskingPolicyHealthReportLogsRequest 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<MaskingPolicyHealthReportLogSummary>

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

ListMaskingPolicyHealthReportLogsResponseEnumerator(ListMaskingPolicyHealthReportLogsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListMaskingPolicyHealthReportLogsResponse> ListMaskingPolicyHealthReportLogsResponseEnumerator(ListMaskingPolicyHealthReportLogsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaskingPolicyHealthReportLogsRequest 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<ListMaskingPolicyHealthReportLogsResponse>

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

ListMaskingPolicyHealthReportsRecordEnumerator(ListMaskingPolicyHealthReportsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<MaskingPolicyHealthReportSummary> ListMaskingPolicyHealthReportsRecordEnumerator(ListMaskingPolicyHealthReportsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaskingPolicyHealthReportsRequest 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<MaskingPolicyHealthReportSummary>

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

ListMaskingPolicyHealthReportsResponseEnumerator(ListMaskingPolicyHealthReportsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListMaskingPolicyHealthReportsResponse> ListMaskingPolicyHealthReportsResponseEnumerator(ListMaskingPolicyHealthReportsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaskingPolicyHealthReportsRequest 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<ListMaskingPolicyHealthReportsResponse>

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

ListMaskingPolicyReferentialRelationsRecordEnumerator(ListMaskingPolicyReferentialRelationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<MaskingPolicyReferentialRelationSummary> ListMaskingPolicyReferentialRelationsRecordEnumerator(ListMaskingPolicyReferentialRelationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaskingPolicyReferentialRelationsRequest 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<MaskingPolicyReferentialRelationSummary>

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

ListMaskingPolicyReferentialRelationsResponseEnumerator(ListMaskingPolicyReferentialRelationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListMaskingPolicyReferentialRelationsResponse> ListMaskingPolicyReferentialRelationsResponseEnumerator(ListMaskingPolicyReferentialRelationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaskingPolicyReferentialRelationsRequest 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<ListMaskingPolicyReferentialRelationsResponse>

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

ListMaskingReportsRecordEnumerator(ListMaskingReportsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<MaskingReportSummary> ListMaskingReportsRecordEnumerator(ListMaskingReportsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaskingReportsRequest 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<MaskingReportSummary>

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

ListMaskingReportsResponseEnumerator(ListMaskingReportsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListMaskingReportsResponse> ListMaskingReportsResponseEnumerator(ListMaskingReportsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaskingReportsRequest 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<ListMaskingReportsResponse>

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

ListMaskingSchemasRecordEnumerator(ListMaskingSchemasRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<MaskingSchemaSummary> ListMaskingSchemasRecordEnumerator(ListMaskingSchemasRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaskingSchemasRequest 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<MaskingSchemaSummary>

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

ListMaskingSchemasResponseEnumerator(ListMaskingSchemasRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListMaskingSchemasResponse> ListMaskingSchemasResponseEnumerator(ListMaskingSchemasRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaskingSchemasRequest 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<ListMaskingSchemasResponse>

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

ListOnPremConnectorsRecordEnumerator(ListOnPremConnectorsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<OnPremConnectorSummary> ListOnPremConnectorsRecordEnumerator(ListOnPremConnectorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListOnPremConnectorsRequest 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<OnPremConnectorSummary>

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

ListOnPremConnectorsResponseEnumerator(ListOnPremConnectorsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListOnPremConnectorsResponse> ListOnPremConnectorsResponseEnumerator(ListOnPremConnectorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListOnPremConnectorsRequest 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<ListOnPremConnectorsResponse>

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

ListPeerTargetDatabasesRecordEnumerator(ListPeerTargetDatabasesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<PeerTargetDatabaseSummary> ListPeerTargetDatabasesRecordEnumerator(ListPeerTargetDatabasesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPeerTargetDatabasesRequest 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<PeerTargetDatabaseSummary>

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

ListPeerTargetDatabasesResponseEnumerator(ListPeerTargetDatabasesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListPeerTargetDatabasesResponse> ListPeerTargetDatabasesResponseEnumerator(ListPeerTargetDatabasesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPeerTargetDatabasesRequest 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<ListPeerTargetDatabasesResponse>

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

ListProfileAnalyticsRecordEnumerator(ListProfileAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ProfileAggregation> ListProfileAnalyticsRecordEnumerator(ListProfileAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListProfileAnalyticsRequest 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<ProfileAggregation>

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

ListProfileAnalyticsResponseEnumerator(ListProfileAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListProfileAnalyticsResponse> ListProfileAnalyticsResponseEnumerator(ListProfileAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListProfileAnalyticsRequest 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<ListProfileAnalyticsResponse>

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

ListProfileSummariesRecordEnumerator(ListProfileSummariesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ProfileSummary> ListProfileSummariesRecordEnumerator(ListProfileSummariesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListProfileSummariesRequest 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<ProfileSummary>

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

ListProfileSummariesResponseEnumerator(ListProfileSummariesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListProfileSummariesResponse> ListProfileSummariesResponseEnumerator(ListProfileSummariesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListProfileSummariesRequest 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<ListProfileSummariesResponse>

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

ListReferentialRelationsRecordEnumerator(ListReferentialRelationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ReferentialRelationSummary> ListReferentialRelationsRecordEnumerator(ListReferentialRelationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListReferentialRelationsRequest 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<ReferentialRelationSummary>

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

ListReferentialRelationsResponseEnumerator(ListReferentialRelationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListReferentialRelationsResponse> ListReferentialRelationsResponseEnumerator(ListReferentialRelationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListReferentialRelationsRequest 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<ListReferentialRelationsResponse>

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

ListReportDefinitionsRecordEnumerator(ListReportDefinitionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ReportDefinitionSummary> ListReportDefinitionsRecordEnumerator(ListReportDefinitionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListReportDefinitionsRequest 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<ReportDefinitionSummary>

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

ListReportDefinitionsResponseEnumerator(ListReportDefinitionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListReportDefinitionsResponse> ListReportDefinitionsResponseEnumerator(ListReportDefinitionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListReportDefinitionsRequest 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<ListReportDefinitionsResponse>

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

ListReportsRecordEnumerator(ListReportsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ReportSummary> ListReportsRecordEnumerator(ListReportsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListReportsRequest 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<ReportSummary>

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

ListReportsResponseEnumerator(ListReportsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListReportsResponse> ListReportsResponseEnumerator(ListReportsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListReportsRequest 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<ListReportsResponse>

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

ListRoleGrantPathsRecordEnumerator(ListRoleGrantPathsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<RoleGrantPathSummary> ListRoleGrantPathsRecordEnumerator(ListRoleGrantPathsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListRoleGrantPathsRequest 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<RoleGrantPathSummary>

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

ListRoleGrantPathsResponseEnumerator(ListRoleGrantPathsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListRoleGrantPathsResponse> ListRoleGrantPathsResponseEnumerator(ListRoleGrantPathsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListRoleGrantPathsRequest 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<ListRoleGrantPathsResponse>

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

ListRolesRecordEnumerator(ListRolesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<RoleSummary> ListRolesRecordEnumerator(ListRolesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListRolesRequest 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<RoleSummary>

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

ListRolesResponseEnumerator(ListRolesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListRolesResponse> ListRolesResponseEnumerator(ListRolesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListRolesRequest 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<ListRolesResponse>

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

ListSchemasRecordEnumerator(ListSchemasRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SchemaSummary> ListSchemasRecordEnumerator(ListSchemasRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSchemasRequest 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<SchemaSummary>

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

ListSchemasResponseEnumerator(ListSchemasRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSchemasResponse> ListSchemasResponseEnumerator(ListSchemasRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSchemasRequest 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<ListSchemasResponse>

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

ListSdmMaskingPolicyDifferencesRecordEnumerator(ListSdmMaskingPolicyDifferencesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SdmMaskingPolicyDifferenceSummary> ListSdmMaskingPolicyDifferencesRecordEnumerator(ListSdmMaskingPolicyDifferencesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSdmMaskingPolicyDifferencesRequest 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<SdmMaskingPolicyDifferenceSummary>

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

ListSdmMaskingPolicyDifferencesResponseEnumerator(ListSdmMaskingPolicyDifferencesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSdmMaskingPolicyDifferencesResponse> ListSdmMaskingPolicyDifferencesResponseEnumerator(ListSdmMaskingPolicyDifferencesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSdmMaskingPolicyDifferencesRequest 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<ListSdmMaskingPolicyDifferencesResponse>

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

ListSecurityAssessmentsRecordEnumerator(ListSecurityAssessmentsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SecurityAssessmentSummary> ListSecurityAssessmentsRecordEnumerator(ListSecurityAssessmentsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSecurityAssessmentsRequest 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<SecurityAssessmentSummary>

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

ListSecurityAssessmentsResponseEnumerator(ListSecurityAssessmentsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSecurityAssessmentsResponse> ListSecurityAssessmentsResponseEnumerator(ListSecurityAssessmentsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSecurityAssessmentsRequest 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<ListSecurityAssessmentsResponse>

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

ListSecurityFeaturesRecordEnumerator(ListSecurityFeaturesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SecurityFeatureSummary> ListSecurityFeaturesRecordEnumerator(ListSecurityFeaturesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSecurityFeaturesRequest 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<SecurityFeatureSummary>

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

ListSecurityFeaturesResponseEnumerator(ListSecurityFeaturesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSecurityFeaturesResponse> ListSecurityFeaturesResponseEnumerator(ListSecurityFeaturesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSecurityFeaturesRequest 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<ListSecurityFeaturesResponse>

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

ListSecurityPoliciesRecordEnumerator(ListSecurityPoliciesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SecurityPolicySummary> ListSecurityPoliciesRecordEnumerator(ListSecurityPoliciesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSecurityPoliciesRequest 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<SecurityPolicySummary>

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

ListSecurityPoliciesResponseEnumerator(ListSecurityPoliciesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSecurityPoliciesResponse> ListSecurityPoliciesResponseEnumerator(ListSecurityPoliciesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSecurityPoliciesRequest 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<ListSecurityPoliciesResponse>

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

ListSecurityPolicyDeploymentsRecordEnumerator(ListSecurityPolicyDeploymentsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SecurityPolicyDeploymentSummary> ListSecurityPolicyDeploymentsRecordEnumerator(ListSecurityPolicyDeploymentsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSecurityPolicyDeploymentsRequest 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<SecurityPolicyDeploymentSummary>

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

ListSecurityPolicyDeploymentsResponseEnumerator(ListSecurityPolicyDeploymentsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSecurityPolicyDeploymentsResponse> ListSecurityPolicyDeploymentsResponseEnumerator(ListSecurityPolicyDeploymentsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSecurityPolicyDeploymentsRequest 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<ListSecurityPolicyDeploymentsResponse>

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

ListSecurityPolicyEntryStatesRecordEnumerator(ListSecurityPolicyEntryStatesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SecurityPolicyEntryStateSummary> ListSecurityPolicyEntryStatesRecordEnumerator(ListSecurityPolicyEntryStatesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSecurityPolicyEntryStatesRequest 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<SecurityPolicyEntryStateSummary>

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

ListSecurityPolicyEntryStatesResponseEnumerator(ListSecurityPolicyEntryStatesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSecurityPolicyEntryStatesResponse> ListSecurityPolicyEntryStatesResponseEnumerator(ListSecurityPolicyEntryStatesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSecurityPolicyEntryStatesRequest 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<ListSecurityPolicyEntryStatesResponse>

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

ListSecurityPolicyReportsRecordEnumerator(ListSecurityPolicyReportsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SecurityPolicyReportSummary> ListSecurityPolicyReportsRecordEnumerator(ListSecurityPolicyReportsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSecurityPolicyReportsRequest 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<SecurityPolicyReportSummary>

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

ListSecurityPolicyReportsResponseEnumerator(ListSecurityPolicyReportsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSecurityPolicyReportsResponse> ListSecurityPolicyReportsResponseEnumerator(ListSecurityPolicyReportsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSecurityPolicyReportsRequest 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<ListSecurityPolicyReportsResponse>

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

ListSensitiveColumnAnalyticsRecordEnumerator(ListSensitiveColumnAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SensitiveColumnAnalyticsSummary> ListSensitiveColumnAnalyticsRecordEnumerator(ListSensitiveColumnAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSensitiveColumnAnalyticsRequest 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<SensitiveColumnAnalyticsSummary>

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

ListSensitiveColumnAnalyticsResponseEnumerator(ListSensitiveColumnAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSensitiveColumnAnalyticsResponse> ListSensitiveColumnAnalyticsResponseEnumerator(ListSensitiveColumnAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSensitiveColumnAnalyticsRequest 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<ListSensitiveColumnAnalyticsResponse>

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

ListSensitiveColumnsRecordEnumerator(ListSensitiveColumnsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SensitiveColumnSummary> ListSensitiveColumnsRecordEnumerator(ListSensitiveColumnsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSensitiveColumnsRequest 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<SensitiveColumnSummary>

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

ListSensitiveColumnsResponseEnumerator(ListSensitiveColumnsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSensitiveColumnsResponse> ListSensitiveColumnsResponseEnumerator(ListSensitiveColumnsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSensitiveColumnsRequest 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<ListSensitiveColumnsResponse>

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

ListSensitiveDataModelSensitiveTypesRecordEnumerator(ListSensitiveDataModelSensitiveTypesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SensitiveDataModelSensitiveTypeSummary> ListSensitiveDataModelSensitiveTypesRecordEnumerator(ListSensitiveDataModelSensitiveTypesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSensitiveDataModelSensitiveTypesRequest 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<SensitiveDataModelSensitiveTypeSummary>

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

ListSensitiveDataModelSensitiveTypesResponseEnumerator(ListSensitiveDataModelSensitiveTypesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSensitiveDataModelSensitiveTypesResponse> ListSensitiveDataModelSensitiveTypesResponseEnumerator(ListSensitiveDataModelSensitiveTypesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSensitiveDataModelSensitiveTypesRequest 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<ListSensitiveDataModelSensitiveTypesResponse>

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

ListSensitiveDataModelsRecordEnumerator(ListSensitiveDataModelsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SensitiveDataModelSummary> ListSensitiveDataModelsRecordEnumerator(ListSensitiveDataModelsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSensitiveDataModelsRequest 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<SensitiveDataModelSummary>

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

ListSensitiveDataModelsResponseEnumerator(ListSensitiveDataModelsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSensitiveDataModelsResponse> ListSensitiveDataModelsResponseEnumerator(ListSensitiveDataModelsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSensitiveDataModelsRequest 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<ListSensitiveDataModelsResponse>

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

ListSensitiveObjectsRecordEnumerator(ListSensitiveObjectsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SensitiveObjectSummary> ListSensitiveObjectsRecordEnumerator(ListSensitiveObjectsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSensitiveObjectsRequest 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<SensitiveObjectSummary>

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

ListSensitiveObjectsResponseEnumerator(ListSensitiveObjectsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSensitiveObjectsResponse> ListSensitiveObjectsResponseEnumerator(ListSensitiveObjectsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSensitiveObjectsRequest 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<ListSensitiveObjectsResponse>

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

ListSensitiveSchemasRecordEnumerator(ListSensitiveSchemasRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SensitiveSchemaSummary> ListSensitiveSchemasRecordEnumerator(ListSensitiveSchemasRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSensitiveSchemasRequest 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<SensitiveSchemaSummary>

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

ListSensitiveSchemasResponseEnumerator(ListSensitiveSchemasRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSensitiveSchemasResponse> ListSensitiveSchemasResponseEnumerator(ListSensitiveSchemasRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSensitiveSchemasRequest 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<ListSensitiveSchemasResponse>

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

ListSensitiveTypeGroupsRecordEnumerator(ListSensitiveTypeGroupsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SensitiveTypeGroupSummary> ListSensitiveTypeGroupsRecordEnumerator(ListSensitiveTypeGroupsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSensitiveTypeGroupsRequest 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<SensitiveTypeGroupSummary>

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

ListSensitiveTypeGroupsResponseEnumerator(ListSensitiveTypeGroupsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSensitiveTypeGroupsResponse> ListSensitiveTypeGroupsResponseEnumerator(ListSensitiveTypeGroupsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSensitiveTypeGroupsRequest 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<ListSensitiveTypeGroupsResponse>

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

ListSensitiveTypesExportsRecordEnumerator(ListSensitiveTypesExportsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SensitiveTypesExportSummary> ListSensitiveTypesExportsRecordEnumerator(ListSensitiveTypesExportsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSensitiveTypesExportsRequest 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<SensitiveTypesExportSummary>

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

ListSensitiveTypesExportsResponseEnumerator(ListSensitiveTypesExportsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSensitiveTypesExportsResponse> ListSensitiveTypesExportsResponseEnumerator(ListSensitiveTypesExportsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSensitiveTypesExportsRequest 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<ListSensitiveTypesExportsResponse>

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

ListSensitiveTypesRecordEnumerator(ListSensitiveTypesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SensitiveTypeSummary> ListSensitiveTypesRecordEnumerator(ListSensitiveTypesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSensitiveTypesRequest 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<SensitiveTypeSummary>

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

ListSensitiveTypesResponseEnumerator(ListSensitiveTypesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSensitiveTypesResponse> ListSensitiveTypesResponseEnumerator(ListSensitiveTypesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSensitiveTypesRequest 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<ListSensitiveTypesResponse>

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

ListSqlCollectionAnalyticsRecordEnumerator(ListSqlCollectionAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SqlCollectionAggregation> ListSqlCollectionAnalyticsRecordEnumerator(ListSqlCollectionAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSqlCollectionAnalyticsRequest 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<SqlCollectionAggregation>

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

ListSqlCollectionAnalyticsResponseEnumerator(ListSqlCollectionAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSqlCollectionAnalyticsResponse> ListSqlCollectionAnalyticsResponseEnumerator(ListSqlCollectionAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSqlCollectionAnalyticsRequest 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<ListSqlCollectionAnalyticsResponse>

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

ListSqlCollectionLogInsightsRecordEnumerator(ListSqlCollectionLogInsightsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SqlCollectionLogAggregation> ListSqlCollectionLogInsightsRecordEnumerator(ListSqlCollectionLogInsightsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSqlCollectionLogInsightsRequest 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<SqlCollectionLogAggregation>

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

ListSqlCollectionLogInsightsResponseEnumerator(ListSqlCollectionLogInsightsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSqlCollectionLogInsightsResponse> ListSqlCollectionLogInsightsResponseEnumerator(ListSqlCollectionLogInsightsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSqlCollectionLogInsightsRequest 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<ListSqlCollectionLogInsightsResponse>

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

ListSqlCollectionsRecordEnumerator(ListSqlCollectionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SqlCollectionSummary> ListSqlCollectionsRecordEnumerator(ListSqlCollectionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSqlCollectionsRequest 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<SqlCollectionSummary>

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

ListSqlCollectionsResponseEnumerator(ListSqlCollectionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSqlCollectionsResponse> ListSqlCollectionsResponseEnumerator(ListSqlCollectionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSqlCollectionsRequest 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<ListSqlCollectionsResponse>

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

ListSqlFirewallAllowedSqlAnalyticsRecordEnumerator(ListSqlFirewallAllowedSqlAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SqlFirewallAllowedSqlAggregation> ListSqlFirewallAllowedSqlAnalyticsRecordEnumerator(ListSqlFirewallAllowedSqlAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSqlFirewallAllowedSqlAnalyticsRequest 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<SqlFirewallAllowedSqlAggregation>

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

ListSqlFirewallAllowedSqlAnalyticsResponseEnumerator(ListSqlFirewallAllowedSqlAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSqlFirewallAllowedSqlAnalyticsResponse> ListSqlFirewallAllowedSqlAnalyticsResponseEnumerator(ListSqlFirewallAllowedSqlAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSqlFirewallAllowedSqlAnalyticsRequest 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<ListSqlFirewallAllowedSqlAnalyticsResponse>

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

ListSqlFirewallAllowedSqlsRecordEnumerator(ListSqlFirewallAllowedSqlsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SqlFirewallAllowedSqlSummary> ListSqlFirewallAllowedSqlsRecordEnumerator(ListSqlFirewallAllowedSqlsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSqlFirewallAllowedSqlsRequest 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<SqlFirewallAllowedSqlSummary>

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

ListSqlFirewallAllowedSqlsResponseEnumerator(ListSqlFirewallAllowedSqlsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSqlFirewallAllowedSqlsResponse> ListSqlFirewallAllowedSqlsResponseEnumerator(ListSqlFirewallAllowedSqlsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSqlFirewallAllowedSqlsRequest 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<ListSqlFirewallAllowedSqlsResponse>

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

ListSqlFirewallPoliciesRecordEnumerator(ListSqlFirewallPoliciesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SqlFirewallPolicySummary> ListSqlFirewallPoliciesRecordEnumerator(ListSqlFirewallPoliciesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSqlFirewallPoliciesRequest 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<SqlFirewallPolicySummary>

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

ListSqlFirewallPoliciesResponseEnumerator(ListSqlFirewallPoliciesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSqlFirewallPoliciesResponse> ListSqlFirewallPoliciesResponseEnumerator(ListSqlFirewallPoliciesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSqlFirewallPoliciesRequest 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<ListSqlFirewallPoliciesResponse>

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

ListSqlFirewallPolicyAnalyticsRecordEnumerator(ListSqlFirewallPolicyAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SqlFirewallPolicyAggregation> ListSqlFirewallPolicyAnalyticsRecordEnumerator(ListSqlFirewallPolicyAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSqlFirewallPolicyAnalyticsRequest 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<SqlFirewallPolicyAggregation>

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

ListSqlFirewallPolicyAnalyticsResponseEnumerator(ListSqlFirewallPolicyAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSqlFirewallPolicyAnalyticsResponse> ListSqlFirewallPolicyAnalyticsResponseEnumerator(ListSqlFirewallPolicyAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSqlFirewallPolicyAnalyticsRequest 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<ListSqlFirewallPolicyAnalyticsResponse>

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

ListSqlFirewallViolationAnalyticsRecordEnumerator(ListSqlFirewallViolationAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SqlFirewallViolationAggregation> ListSqlFirewallViolationAnalyticsRecordEnumerator(ListSqlFirewallViolationAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSqlFirewallViolationAnalyticsRequest 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<SqlFirewallViolationAggregation>

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

ListSqlFirewallViolationAnalyticsResponseEnumerator(ListSqlFirewallViolationAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSqlFirewallViolationAnalyticsResponse> ListSqlFirewallViolationAnalyticsResponseEnumerator(ListSqlFirewallViolationAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSqlFirewallViolationAnalyticsRequest 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<ListSqlFirewallViolationAnalyticsResponse>

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

ListSqlFirewallViolationsRecordEnumerator(ListSqlFirewallViolationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SqlFirewallViolationSummary> ListSqlFirewallViolationsRecordEnumerator(ListSqlFirewallViolationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSqlFirewallViolationsRequest 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<SqlFirewallViolationSummary>

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

ListSqlFirewallViolationsResponseEnumerator(ListSqlFirewallViolationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSqlFirewallViolationsResponse> ListSqlFirewallViolationsResponseEnumerator(ListSqlFirewallViolationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSqlFirewallViolationsRequest 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<ListSqlFirewallViolationsResponse>

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

ListTablesRecordEnumerator(ListTablesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<TableSummary> ListTablesRecordEnumerator(ListTablesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListTablesRequest 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<TableSummary>

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

ListTablesResponseEnumerator(ListTablesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListTablesResponse> ListTablesResponseEnumerator(ListTablesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListTablesRequest 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<ListTablesResponse>

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

ListTargetAlertPolicyAssociationsRecordEnumerator(ListTargetAlertPolicyAssociationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<TargetAlertPolicyAssociationSummary> ListTargetAlertPolicyAssociationsRecordEnumerator(ListTargetAlertPolicyAssociationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListTargetAlertPolicyAssociationsRequest 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<TargetAlertPolicyAssociationSummary>

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

ListTargetAlertPolicyAssociationsResponseEnumerator(ListTargetAlertPolicyAssociationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListTargetAlertPolicyAssociationsResponse> ListTargetAlertPolicyAssociationsResponseEnumerator(ListTargetAlertPolicyAssociationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListTargetAlertPolicyAssociationsRequest 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<ListTargetAlertPolicyAssociationsResponse>

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

ListTargetDatabasesRecordEnumerator(ListTargetDatabasesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<TargetDatabaseSummary> ListTargetDatabasesRecordEnumerator(ListTargetDatabasesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListTargetDatabasesRequest 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<TargetDatabaseSummary>

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

ListTargetDatabasesResponseEnumerator(ListTargetDatabasesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListTargetDatabasesResponse> ListTargetDatabasesResponseEnumerator(ListTargetDatabasesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListTargetDatabasesRequest 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<ListTargetDatabasesResponse>

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

ListUserAccessAnalyticsRecordEnumerator(ListUserAccessAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<UserAccessAnalyticsSummary> ListUserAccessAnalyticsRecordEnumerator(ListUserAccessAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListUserAccessAnalyticsRequest 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<UserAccessAnalyticsSummary>

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

ListUserAccessAnalyticsResponseEnumerator(ListUserAccessAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListUserAccessAnalyticsResponse> ListUserAccessAnalyticsResponseEnumerator(ListUserAccessAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListUserAccessAnalyticsRequest 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<ListUserAccessAnalyticsResponse>

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

ListUserAnalyticsRecordEnumerator(ListUserAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<UserAggregation> ListUserAnalyticsRecordEnumerator(ListUserAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListUserAnalyticsRequest 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<UserAggregation>

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

ListUserAnalyticsResponseEnumerator(ListUserAnalyticsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListUserAnalyticsResponse> ListUserAnalyticsResponseEnumerator(ListUserAnalyticsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListUserAnalyticsRequest 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<ListUserAnalyticsResponse>

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

ListUserAssessmentsRecordEnumerator(ListUserAssessmentsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<UserAssessmentSummary> ListUserAssessmentsRecordEnumerator(ListUserAssessmentsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListUserAssessmentsRequest 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<UserAssessmentSummary>

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

ListUserAssessmentsResponseEnumerator(ListUserAssessmentsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListUserAssessmentsResponse> ListUserAssessmentsResponseEnumerator(ListUserAssessmentsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListUserAssessmentsRequest 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<ListUserAssessmentsResponse>

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

ListUsersRecordEnumerator(ListUsersRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<UserSummary> ListUsersRecordEnumerator(ListUsersRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListUsersRequest 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<UserSummary>

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

ListUsersResponseEnumerator(ListUsersRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListUsersResponse> ListUsersResponseEnumerator(ListUsersRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListUsersRequest 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<ListUsersResponse>

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 WorkRequestLogEntry objects contained in responses from the ListWorkRequestLogs operation. This enumerable will fetch more data from the server as needed.

Declaration
public IEnumerable<WorkRequestLogEntry> 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<WorkRequestLogEntry>

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