Show / Hide Table of Contents

Class IdentityPaginators

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

Constructors

IdentityPaginators(IdentityClient)

Declaration
public IdentityPaginators(IdentityClient client)
Parameters
Type Name Description
IdentityClient client

Methods

ListBulkActionResourceTypesRecordEnumerator(ListBulkActionResourceTypesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<BulkActionResourceType> ListBulkActionResourceTypesRecordEnumerator(ListBulkActionResourceTypesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBulkActionResourceTypesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<BulkActionResourceType>

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

ListBulkActionResourceTypesResponseEnumerator(ListBulkActionResourceTypesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListBulkActionResourceTypesResponse> ListBulkActionResourceTypesResponseEnumerator(ListBulkActionResourceTypesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBulkActionResourceTypesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListBulkActionResourceTypesResponse>

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

ListBulkEditTagsResourceTypesRecordEnumerator(ListBulkEditTagsResourceTypesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<BulkEditTagsResourceType> ListBulkEditTagsResourceTypesRecordEnumerator(ListBulkEditTagsResourceTypesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBulkEditTagsResourceTypesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<BulkEditTagsResourceType>

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

ListBulkEditTagsResourceTypesResponseEnumerator(ListBulkEditTagsResourceTypesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListBulkEditTagsResourceTypesResponse> ListBulkEditTagsResourceTypesResponseEnumerator(ListBulkEditTagsResourceTypesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBulkEditTagsResourceTypesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListBulkEditTagsResourceTypesResponse>

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

ListCompartmentsRecordEnumerator(ListCompartmentsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<Compartment> ListCompartmentsRecordEnumerator(ListCompartmentsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCompartmentsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<Compartment>

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

ListCompartmentsResponseEnumerator(ListCompartmentsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListCompartmentsResponse> ListCompartmentsResponseEnumerator(ListCompartmentsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCompartmentsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListCompartmentsResponse>

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

ListCostTrackingTagsRecordEnumerator(ListCostTrackingTagsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<Tag> ListCostTrackingTagsRecordEnumerator(ListCostTrackingTagsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCostTrackingTagsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<Tag>

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

ListCostTrackingTagsResponseEnumerator(ListCostTrackingTagsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListCostTrackingTagsResponse> ListCostTrackingTagsResponseEnumerator(ListCostTrackingTagsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCostTrackingTagsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListCostTrackingTagsResponse>

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

ListDbCredentialsRecordEnumerator(ListDbCredentialsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<DbCredentialSummary> ListDbCredentialsRecordEnumerator(ListDbCredentialsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbCredentialsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<DbCredentialSummary>

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

ListDbCredentialsResponseEnumerator(ListDbCredentialsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDbCredentialsResponse> ListDbCredentialsResponseEnumerator(ListDbCredentialsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbCredentialsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDbCredentialsResponse>

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

ListDomainsRecordEnumerator(ListDomainsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<DomainSummary> ListDomainsRecordEnumerator(ListDomainsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDomainsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<DomainSummary>

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

ListDomainsResponseEnumerator(ListDomainsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDomainsResponse> ListDomainsResponseEnumerator(ListDomainsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDomainsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDomainsResponse>

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

ListDynamicGroupsRecordEnumerator(ListDynamicGroupsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<DynamicGroup> ListDynamicGroupsRecordEnumerator(ListDynamicGroupsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDynamicGroupsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<DynamicGroup>

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

ListDynamicGroupsResponseEnumerator(ListDynamicGroupsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDynamicGroupsResponse> ListDynamicGroupsResponseEnumerator(ListDynamicGroupsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDynamicGroupsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDynamicGroupsResponse>

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

ListGroupsRecordEnumerator(ListGroupsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<Group> ListGroupsRecordEnumerator(ListGroupsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListGroupsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<Group>

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

ListGroupsResponseEnumerator(ListGroupsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListGroupsResponse> ListGroupsResponseEnumerator(ListGroupsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListGroupsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListGroupsResponse>

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

ListIamWorkRequestErrorsRecordEnumerator(ListIamWorkRequestErrorsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<IamWorkRequestErrorSummary> ListIamWorkRequestErrorsRecordEnumerator(ListIamWorkRequestErrorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListIamWorkRequestErrorsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<IamWorkRequestErrorSummary>

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

ListIamWorkRequestErrorsResponseEnumerator(ListIamWorkRequestErrorsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListIamWorkRequestErrorsResponse> ListIamWorkRequestErrorsResponseEnumerator(ListIamWorkRequestErrorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListIamWorkRequestErrorsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListIamWorkRequestErrorsResponse>

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

ListIamWorkRequestLogsRecordEnumerator(ListIamWorkRequestLogsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<IamWorkRequestLogSummary> ListIamWorkRequestLogsRecordEnumerator(ListIamWorkRequestLogsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListIamWorkRequestLogsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<IamWorkRequestLogSummary>

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

ListIamWorkRequestLogsResponseEnumerator(ListIamWorkRequestLogsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListIamWorkRequestLogsResponse> ListIamWorkRequestLogsResponseEnumerator(ListIamWorkRequestLogsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListIamWorkRequestLogsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListIamWorkRequestLogsResponse>

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

ListIamWorkRequestsRecordEnumerator(ListIamWorkRequestsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<IamWorkRequestSummary> ListIamWorkRequestsRecordEnumerator(ListIamWorkRequestsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListIamWorkRequestsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<IamWorkRequestSummary>

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

ListIamWorkRequestsResponseEnumerator(ListIamWorkRequestsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListIamWorkRequestsResponse> ListIamWorkRequestsResponseEnumerator(ListIamWorkRequestsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListIamWorkRequestsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListIamWorkRequestsResponse>

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

ListIdentityProviderGroupsRecordEnumerator(ListIdentityProviderGroupsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<IdentityProviderGroupSummary> ListIdentityProviderGroupsRecordEnumerator(ListIdentityProviderGroupsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListIdentityProviderGroupsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<IdentityProviderGroupSummary>

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

ListIdentityProviderGroupsResponseEnumerator(ListIdentityProviderGroupsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListIdentityProviderGroupsResponse> ListIdentityProviderGroupsResponseEnumerator(ListIdentityProviderGroupsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListIdentityProviderGroupsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListIdentityProviderGroupsResponse>

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

ListIdentityProvidersRecordEnumerator(ListIdentityProvidersRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<IdentityProvider> ListIdentityProvidersRecordEnumerator(ListIdentityProvidersRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListIdentityProvidersRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<IdentityProvider>

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

ListIdentityProvidersResponseEnumerator(ListIdentityProvidersRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListIdentityProvidersResponse> ListIdentityProvidersResponseEnumerator(ListIdentityProvidersRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListIdentityProvidersRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListIdentityProvidersResponse>

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

ListIdpGroupMappingsRecordEnumerator(ListIdpGroupMappingsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<IdpGroupMapping> ListIdpGroupMappingsRecordEnumerator(ListIdpGroupMappingsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListIdpGroupMappingsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<IdpGroupMapping>

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

ListIdpGroupMappingsResponseEnumerator(ListIdpGroupMappingsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListIdpGroupMappingsResponse> ListIdpGroupMappingsResponseEnumerator(ListIdpGroupMappingsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListIdpGroupMappingsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListIdpGroupMappingsResponse>

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

ListMfaTotpDevicesRecordEnumerator(ListMfaTotpDevicesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<MfaTotpDeviceSummary> ListMfaTotpDevicesRecordEnumerator(ListMfaTotpDevicesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMfaTotpDevicesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<MfaTotpDeviceSummary>

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

ListMfaTotpDevicesResponseEnumerator(ListMfaTotpDevicesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListMfaTotpDevicesResponse> ListMfaTotpDevicesResponseEnumerator(ListMfaTotpDevicesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMfaTotpDevicesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListMfaTotpDevicesResponse>

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

ListNetworkSourcesRecordEnumerator(ListNetworkSourcesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<NetworkSourcesSummary> ListNetworkSourcesRecordEnumerator(ListNetworkSourcesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListNetworkSourcesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<NetworkSourcesSummary>

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

ListNetworkSourcesResponseEnumerator(ListNetworkSourcesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListNetworkSourcesResponse> ListNetworkSourcesResponseEnumerator(ListNetworkSourcesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListNetworkSourcesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListNetworkSourcesResponse>

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

ListOAuthClientCredentialsRecordEnumerator(ListOAuthClientCredentialsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<OAuth2ClientCredentialSummary> ListOAuthClientCredentialsRecordEnumerator(ListOAuthClientCredentialsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListOAuthClientCredentialsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<OAuth2ClientCredentialSummary>

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

ListOAuthClientCredentialsResponseEnumerator(ListOAuthClientCredentialsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListOAuthClientCredentialsResponse> ListOAuthClientCredentialsResponseEnumerator(ListOAuthClientCredentialsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListOAuthClientCredentialsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListOAuthClientCredentialsResponse>

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

ListPoliciesRecordEnumerator(ListPoliciesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<Policy> ListPoliciesRecordEnumerator(ListPoliciesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPoliciesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<Policy>

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

ListPoliciesResponseEnumerator(ListPoliciesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListPoliciesResponse> ListPoliciesResponseEnumerator(ListPoliciesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPoliciesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListPoliciesResponse>

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

ListStandardTagNamespacesRecordEnumerator(ListStandardTagNamespacesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<StandardTagNamespaceTemplateSummary> ListStandardTagNamespacesRecordEnumerator(ListStandardTagNamespacesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListStandardTagNamespacesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<StandardTagNamespaceTemplateSummary>

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

ListStandardTagNamespacesResponseEnumerator(ListStandardTagNamespacesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListStandardTagNamespacesResponse> ListStandardTagNamespacesResponseEnumerator(ListStandardTagNamespacesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListStandardTagNamespacesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListStandardTagNamespacesResponse>

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

ListTagDefaultsRecordEnumerator(ListTagDefaultsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<TagDefaultSummary> ListTagDefaultsRecordEnumerator(ListTagDefaultsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListTagDefaultsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<TagDefaultSummary>

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

ListTagDefaultsResponseEnumerator(ListTagDefaultsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListTagDefaultsResponse> ListTagDefaultsResponseEnumerator(ListTagDefaultsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListTagDefaultsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListTagDefaultsResponse>

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

ListTagNamespacesRecordEnumerator(ListTagNamespacesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<TagNamespaceSummary> ListTagNamespacesRecordEnumerator(ListTagNamespacesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListTagNamespacesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<TagNamespaceSummary>

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

ListTagNamespacesResponseEnumerator(ListTagNamespacesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListTagNamespacesResponse> ListTagNamespacesResponseEnumerator(ListTagNamespacesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListTagNamespacesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListTagNamespacesResponse>

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

ListTaggingWorkRequestErrorsRecordEnumerator(ListTaggingWorkRequestErrorsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<TaggingWorkRequestErrorSummary> ListTaggingWorkRequestErrorsRecordEnumerator(ListTaggingWorkRequestErrorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListTaggingWorkRequestErrorsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<TaggingWorkRequestErrorSummary>

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

ListTaggingWorkRequestErrorsResponseEnumerator(ListTaggingWorkRequestErrorsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListTaggingWorkRequestErrorsResponse> ListTaggingWorkRequestErrorsResponseEnumerator(ListTaggingWorkRequestErrorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListTaggingWorkRequestErrorsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListTaggingWorkRequestErrorsResponse>

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

ListTaggingWorkRequestLogsRecordEnumerator(ListTaggingWorkRequestLogsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<TaggingWorkRequestLogSummary> ListTaggingWorkRequestLogsRecordEnumerator(ListTaggingWorkRequestLogsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListTaggingWorkRequestLogsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<TaggingWorkRequestLogSummary>

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

ListTaggingWorkRequestLogsResponseEnumerator(ListTaggingWorkRequestLogsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListTaggingWorkRequestLogsResponse> ListTaggingWorkRequestLogsResponseEnumerator(ListTaggingWorkRequestLogsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListTaggingWorkRequestLogsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListTaggingWorkRequestLogsResponse>

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

ListTaggingWorkRequestsRecordEnumerator(ListTaggingWorkRequestsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<TaggingWorkRequestSummary> ListTaggingWorkRequestsRecordEnumerator(ListTaggingWorkRequestsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListTaggingWorkRequestsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<TaggingWorkRequestSummary>

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

ListTaggingWorkRequestsResponseEnumerator(ListTaggingWorkRequestsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListTaggingWorkRequestsResponse> ListTaggingWorkRequestsResponseEnumerator(ListTaggingWorkRequestsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListTaggingWorkRequestsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListTaggingWorkRequestsResponse>

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

ListTagsRecordEnumerator(ListTagsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<TagSummary> ListTagsRecordEnumerator(ListTagsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListTagsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<TagSummary>

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

ListTagsResponseEnumerator(ListTagsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListTagsResponse> ListTagsResponseEnumerator(ListTagsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListTagsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListTagsResponse>

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

ListUserGroupMembershipsRecordEnumerator(ListUserGroupMembershipsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<UserGroupMembership> ListUserGroupMembershipsRecordEnumerator(ListUserGroupMembershipsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListUserGroupMembershipsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<UserGroupMembership>

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

ListUserGroupMembershipsResponseEnumerator(ListUserGroupMembershipsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListUserGroupMembershipsResponse> ListUserGroupMembershipsResponseEnumerator(ListUserGroupMembershipsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListUserGroupMembershipsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListUserGroupMembershipsResponse>

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

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

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

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