Show / Hide Table of Contents

Class BdsPaginators

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

Constructors

BdsPaginators(BdsClient)

Declaration
public BdsPaginators(BdsClient client)
Parameters
Type Name Description
BdsClient client

Methods

ListAutoScalingConfigurationsRecordEnumerator(ListAutoScalingConfigurationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AutoScalingConfigurationSummary> ListAutoScalingConfigurationsRecordEnumerator(ListAutoScalingConfigurationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutoScalingConfigurationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<AutoScalingConfigurationSummary>

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

ListAutoScalingConfigurationsResponseEnumerator(ListAutoScalingConfigurationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAutoScalingConfigurationsResponse> ListAutoScalingConfigurationsResponseEnumerator(ListAutoScalingConfigurationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutoScalingConfigurationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListAutoScalingConfigurationsResponse>

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

ListBdsApiKeysRecordEnumerator(ListBdsApiKeysRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<BdsApiKeySummary> ListBdsApiKeysRecordEnumerator(ListBdsApiKeysRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBdsApiKeysRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<BdsApiKeySummary>

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

ListBdsApiKeysResponseEnumerator(ListBdsApiKeysRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListBdsApiKeysResponse> ListBdsApiKeysResponseEnumerator(ListBdsApiKeysRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBdsApiKeysRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListBdsApiKeysResponse>

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

ListBdsClusterVersionsRecordEnumerator(ListBdsClusterVersionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<BdsClusterVersionSummary> ListBdsClusterVersionsRecordEnumerator(ListBdsClusterVersionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBdsClusterVersionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<BdsClusterVersionSummary>

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

ListBdsClusterVersionsResponseEnumerator(ListBdsClusterVersionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListBdsClusterVersionsResponse> ListBdsClusterVersionsResponseEnumerator(ListBdsClusterVersionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBdsClusterVersionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListBdsClusterVersionsResponse>

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

ListBdsInstancesRecordEnumerator(ListBdsInstancesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<BdsInstanceSummary> ListBdsInstancesRecordEnumerator(ListBdsInstancesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBdsInstancesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<BdsInstanceSummary>

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

ListBdsInstancesResponseEnumerator(ListBdsInstancesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListBdsInstancesResponse> ListBdsInstancesResponseEnumerator(ListBdsInstancesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBdsInstancesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListBdsInstancesResponse>

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

ListBdsMetastoreConfigurationsRecordEnumerator(ListBdsMetastoreConfigurationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<BdsMetastoreConfigurationSummary> ListBdsMetastoreConfigurationsRecordEnumerator(ListBdsMetastoreConfigurationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBdsMetastoreConfigurationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<BdsMetastoreConfigurationSummary>

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

ListBdsMetastoreConfigurationsResponseEnumerator(ListBdsMetastoreConfigurationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListBdsMetastoreConfigurationsResponse> ListBdsMetastoreConfigurationsResponseEnumerator(ListBdsMetastoreConfigurationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBdsMetastoreConfigurationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListBdsMetastoreConfigurationsResponse>

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

ListIdentityConfigurationsRecordEnumerator(ListIdentityConfigurationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<IdentityConfigurationSummary> ListIdentityConfigurationsRecordEnumerator(ListIdentityConfigurationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListIdentityConfigurationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<IdentityConfigurationSummary>

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

ListIdentityConfigurationsResponseEnumerator(ListIdentityConfigurationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListIdentityConfigurationsResponse> ListIdentityConfigurationsResponseEnumerator(ListIdentityConfigurationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListIdentityConfigurationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListIdentityConfigurationsResponse>

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

ListNodeBackupConfigurationsRecordEnumerator(ListNodeBackupConfigurationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<NodeBackupConfigurationSummary> ListNodeBackupConfigurationsRecordEnumerator(ListNodeBackupConfigurationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListNodeBackupConfigurationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<NodeBackupConfigurationSummary>

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

ListNodeBackupConfigurationsResponseEnumerator(ListNodeBackupConfigurationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListNodeBackupConfigurationsResponse> ListNodeBackupConfigurationsResponseEnumerator(ListNodeBackupConfigurationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListNodeBackupConfigurationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListNodeBackupConfigurationsResponse>

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

ListNodeBackupsRecordEnumerator(ListNodeBackupsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<NodeBackupSummary> ListNodeBackupsRecordEnumerator(ListNodeBackupsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListNodeBackupsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<NodeBackupSummary>

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

ListNodeBackupsResponseEnumerator(ListNodeBackupsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListNodeBackupsResponse> ListNodeBackupsResponseEnumerator(ListNodeBackupsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListNodeBackupsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListNodeBackupsResponse>

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

ListNodeReplaceConfigurationsRecordEnumerator(ListNodeReplaceConfigurationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<NodeReplaceConfigurationSummary> ListNodeReplaceConfigurationsRecordEnumerator(ListNodeReplaceConfigurationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListNodeReplaceConfigurationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<NodeReplaceConfigurationSummary>

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

ListNodeReplaceConfigurationsResponseEnumerator(ListNodeReplaceConfigurationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListNodeReplaceConfigurationsResponse> ListNodeReplaceConfigurationsResponseEnumerator(ListNodeReplaceConfigurationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListNodeReplaceConfigurationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListNodeReplaceConfigurationsResponse>

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

ListOsPatchesRecordEnumerator(ListOsPatchesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<OsPatchSummary> ListOsPatchesRecordEnumerator(ListOsPatchesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListOsPatchesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<OsPatchSummary>

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

ListOsPatchesResponseEnumerator(ListOsPatchesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListOsPatchesResponse> ListOsPatchesResponseEnumerator(ListOsPatchesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListOsPatchesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListOsPatchesResponse>

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

ListPatchHistoriesRecordEnumerator(ListPatchHistoriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<PatchHistorySummary> ListPatchHistoriesRecordEnumerator(ListPatchHistoriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPatchHistoriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<PatchHistorySummary>

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

ListPatchHistoriesResponseEnumerator(ListPatchHistoriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListPatchHistoriesResponse> ListPatchHistoriesResponseEnumerator(ListPatchHistoriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPatchHistoriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListPatchHistoriesResponse>

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

ListPatchesRecordEnumerator(ListPatchesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<PatchSummary> ListPatchesRecordEnumerator(ListPatchesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPatchesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<PatchSummary>

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

ListPatchesResponseEnumerator(ListPatchesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListPatchesResponse> ListPatchesResponseEnumerator(ListPatchesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPatchesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListPatchesResponse>

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

ListResourcePrincipalConfigurationsRecordEnumerator(ListResourcePrincipalConfigurationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ResourcePrincipalConfigurationSummary> ListResourcePrincipalConfigurationsRecordEnumerator(ListResourcePrincipalConfigurationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListResourcePrincipalConfigurationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ResourcePrincipalConfigurationSummary>

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

ListResourcePrincipalConfigurationsResponseEnumerator(ListResourcePrincipalConfigurationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListResourcePrincipalConfigurationsResponse> ListResourcePrincipalConfigurationsResponseEnumerator(ListResourcePrincipalConfigurationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListResourcePrincipalConfigurationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListResourcePrincipalConfigurationsResponse>

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

ListSoftwareUpdatesRecordEnumerator(ListSoftwareUpdatesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SoftwareUpdateSummary> ListSoftwareUpdatesRecordEnumerator(ListSoftwareUpdatesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSoftwareUpdatesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<SoftwareUpdateSummary>

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

ListSoftwareUpdatesResponseEnumerator(ListSoftwareUpdatesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSoftwareUpdatesResponse> ListSoftwareUpdatesResponseEnumerator(ListSoftwareUpdatesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSoftwareUpdatesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListSoftwareUpdatesResponse>

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

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

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