Show / Hide Table of Contents

Class DatabasePaginators

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

Constructors

DatabasePaginators(DatabaseClient)

Declaration
public DatabasePaginators(DatabaseClient client)
Parameters
Type Name Description
DatabaseClient client

Methods

ListApplicationVipsRecordEnumerator(ListApplicationVipsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ApplicationVipSummary> ListApplicationVipsRecordEnumerator(ListApplicationVipsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListApplicationVipsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ApplicationVipSummary>

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

ListApplicationVipsResponseEnumerator(ListApplicationVipsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListApplicationVipsResponse> ListApplicationVipsResponseEnumerator(ListApplicationVipsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListApplicationVipsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListApplicationVipsResponse>

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

ListAutonomousContainerDatabaseBackupsRecordEnumerator(ListAutonomousContainerDatabaseBackupsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AutonomousContainerDatabaseBackupSummary> ListAutonomousContainerDatabaseBackupsRecordEnumerator(ListAutonomousContainerDatabaseBackupsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousContainerDatabaseBackupsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<AutonomousContainerDatabaseBackupSummary>

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

ListAutonomousContainerDatabaseBackupsResponseEnumerator(ListAutonomousContainerDatabaseBackupsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAutonomousContainerDatabaseBackupsResponse> ListAutonomousContainerDatabaseBackupsResponseEnumerator(ListAutonomousContainerDatabaseBackupsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousContainerDatabaseBackupsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListAutonomousContainerDatabaseBackupsResponse>

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

ListAutonomousContainerDatabaseDataguardAssociationsRecordEnumerator(ListAutonomousContainerDatabaseDataguardAssociationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AutonomousContainerDatabaseDataguardAssociation> ListAutonomousContainerDatabaseDataguardAssociationsRecordEnumerator(ListAutonomousContainerDatabaseDataguardAssociationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousContainerDatabaseDataguardAssociationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<AutonomousContainerDatabaseDataguardAssociation>

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

ListAutonomousContainerDatabaseDataguardAssociationsResponseEnumerator(ListAutonomousContainerDatabaseDataguardAssociationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAutonomousContainerDatabaseDataguardAssociationsResponse> ListAutonomousContainerDatabaseDataguardAssociationsResponseEnumerator(ListAutonomousContainerDatabaseDataguardAssociationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousContainerDatabaseDataguardAssociationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListAutonomousContainerDatabaseDataguardAssociationsResponse>

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

ListAutonomousContainerDatabaseVersionsRecordEnumerator(ListAutonomousContainerDatabaseVersionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AutonomousContainerDatabaseVersionSummary> ListAutonomousContainerDatabaseVersionsRecordEnumerator(ListAutonomousContainerDatabaseVersionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousContainerDatabaseVersionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<AutonomousContainerDatabaseVersionSummary>

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

ListAutonomousContainerDatabaseVersionsResponseEnumerator(ListAutonomousContainerDatabaseVersionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAutonomousContainerDatabaseVersionsResponse> ListAutonomousContainerDatabaseVersionsResponseEnumerator(ListAutonomousContainerDatabaseVersionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousContainerDatabaseVersionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListAutonomousContainerDatabaseVersionsResponse>

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

ListAutonomousContainerDatabasesRecordEnumerator(ListAutonomousContainerDatabasesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AutonomousContainerDatabaseSummary> ListAutonomousContainerDatabasesRecordEnumerator(ListAutonomousContainerDatabasesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousContainerDatabasesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<AutonomousContainerDatabaseSummary>

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

ListAutonomousContainerDatabasesResponseEnumerator(ListAutonomousContainerDatabasesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAutonomousContainerDatabasesResponse> ListAutonomousContainerDatabasesResponseEnumerator(ListAutonomousContainerDatabasesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousContainerDatabasesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListAutonomousContainerDatabasesResponse>

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

ListAutonomousDatabaseBackupsRecordEnumerator(ListAutonomousDatabaseBackupsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AutonomousDatabaseBackupSummary> ListAutonomousDatabaseBackupsRecordEnumerator(ListAutonomousDatabaseBackupsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousDatabaseBackupsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<AutonomousDatabaseBackupSummary>

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

ListAutonomousDatabaseBackupsResponseEnumerator(ListAutonomousDatabaseBackupsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAutonomousDatabaseBackupsResponse> ListAutonomousDatabaseBackupsResponseEnumerator(ListAutonomousDatabaseBackupsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousDatabaseBackupsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListAutonomousDatabaseBackupsResponse>

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

ListAutonomousDatabaseClonesRecordEnumerator(ListAutonomousDatabaseClonesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AutonomousDatabaseSummary> ListAutonomousDatabaseClonesRecordEnumerator(ListAutonomousDatabaseClonesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousDatabaseClonesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<AutonomousDatabaseSummary>

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

ListAutonomousDatabaseClonesResponseEnumerator(ListAutonomousDatabaseClonesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAutonomousDatabaseClonesResponse> ListAutonomousDatabaseClonesResponseEnumerator(ListAutonomousDatabaseClonesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousDatabaseClonesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListAutonomousDatabaseClonesResponse>

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

ListAutonomousDatabaseDataguardAssociationsRecordEnumerator(ListAutonomousDatabaseDataguardAssociationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AutonomousDatabaseDataguardAssociation> ListAutonomousDatabaseDataguardAssociationsRecordEnumerator(ListAutonomousDatabaseDataguardAssociationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousDatabaseDataguardAssociationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<AutonomousDatabaseDataguardAssociation>

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

ListAutonomousDatabaseDataguardAssociationsResponseEnumerator(ListAutonomousDatabaseDataguardAssociationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAutonomousDatabaseDataguardAssociationsResponse> ListAutonomousDatabaseDataguardAssociationsResponseEnumerator(ListAutonomousDatabaseDataguardAssociationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousDatabaseDataguardAssociationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListAutonomousDatabaseDataguardAssociationsResponse>

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

ListAutonomousDatabasePeersRecordEnumerator(ListAutonomousDatabasePeersRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AutonomousDatabasePeerSummary> ListAutonomousDatabasePeersRecordEnumerator(ListAutonomousDatabasePeersRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousDatabasePeersRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<AutonomousDatabasePeerSummary>

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

ListAutonomousDatabasePeersResponseEnumerator(ListAutonomousDatabasePeersRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAutonomousDatabasePeersResponse> ListAutonomousDatabasePeersResponseEnumerator(ListAutonomousDatabasePeersRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousDatabasePeersRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListAutonomousDatabasePeersResponse>

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

ListAutonomousDatabaseRefreshableClonesRecordEnumerator(ListAutonomousDatabaseRefreshableClonesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<RefreshableCloneSummary> ListAutonomousDatabaseRefreshableClonesRecordEnumerator(ListAutonomousDatabaseRefreshableClonesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousDatabaseRefreshableClonesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<RefreshableCloneSummary>

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

ListAutonomousDatabaseRefreshableClonesResponseEnumerator(ListAutonomousDatabaseRefreshableClonesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAutonomousDatabaseRefreshableClonesResponse> ListAutonomousDatabaseRefreshableClonesResponseEnumerator(ListAutonomousDatabaseRefreshableClonesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousDatabaseRefreshableClonesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListAutonomousDatabaseRefreshableClonesResponse>

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

ListAutonomousDatabaseSoftwareImagesRecordEnumerator(ListAutonomousDatabaseSoftwareImagesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AutonomousDatabaseSoftwareImageSummary> ListAutonomousDatabaseSoftwareImagesRecordEnumerator(ListAutonomousDatabaseSoftwareImagesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousDatabaseSoftwareImagesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<AutonomousDatabaseSoftwareImageSummary>

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

ListAutonomousDatabaseSoftwareImagesResponseEnumerator(ListAutonomousDatabaseSoftwareImagesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAutonomousDatabaseSoftwareImagesResponse> ListAutonomousDatabaseSoftwareImagesResponseEnumerator(ListAutonomousDatabaseSoftwareImagesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousDatabaseSoftwareImagesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListAutonomousDatabaseSoftwareImagesResponse>

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

ListAutonomousDatabasesRecordEnumerator(ListAutonomousDatabasesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AutonomousDatabaseSummary> ListAutonomousDatabasesRecordEnumerator(ListAutonomousDatabasesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousDatabasesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<AutonomousDatabaseSummary>

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

ListAutonomousDatabasesResponseEnumerator(ListAutonomousDatabasesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAutonomousDatabasesResponse> ListAutonomousDatabasesResponseEnumerator(ListAutonomousDatabasesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousDatabasesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListAutonomousDatabasesResponse>

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

ListAutonomousDbPreviewVersionsRecordEnumerator(ListAutonomousDbPreviewVersionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AutonomousDbPreviewVersionSummary> ListAutonomousDbPreviewVersionsRecordEnumerator(ListAutonomousDbPreviewVersionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousDbPreviewVersionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<AutonomousDbPreviewVersionSummary>

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

ListAutonomousDbPreviewVersionsResponseEnumerator(ListAutonomousDbPreviewVersionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAutonomousDbPreviewVersionsResponse> ListAutonomousDbPreviewVersionsResponseEnumerator(ListAutonomousDbPreviewVersionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousDbPreviewVersionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListAutonomousDbPreviewVersionsResponse>

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

ListAutonomousDbVersionsRecordEnumerator(ListAutonomousDbVersionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AutonomousDbVersionSummary> ListAutonomousDbVersionsRecordEnumerator(ListAutonomousDbVersionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousDbVersionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<AutonomousDbVersionSummary>

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

ListAutonomousDbVersionsResponseEnumerator(ListAutonomousDbVersionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAutonomousDbVersionsResponse> ListAutonomousDbVersionsResponseEnumerator(ListAutonomousDbVersionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousDbVersionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListAutonomousDbVersionsResponse>

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

ListAutonomousExadataInfrastructureShapesRecordEnumerator(ListAutonomousExadataInfrastructureShapesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AutonomousExadataInfrastructureShapeSummary> ListAutonomousExadataInfrastructureShapesRecordEnumerator(ListAutonomousExadataInfrastructureShapesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousExadataInfrastructureShapesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<AutonomousExadataInfrastructureShapeSummary>

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

ListAutonomousExadataInfrastructureShapesResponseEnumerator(ListAutonomousExadataInfrastructureShapesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAutonomousExadataInfrastructureShapesResponse> ListAutonomousExadataInfrastructureShapesResponseEnumerator(ListAutonomousExadataInfrastructureShapesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousExadataInfrastructureShapesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListAutonomousExadataInfrastructureShapesResponse>

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

ListAutonomousExadataInfrastructuresRecordEnumerator(ListAutonomousExadataInfrastructuresRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AutonomousExadataInfrastructureSummary> ListAutonomousExadataInfrastructuresRecordEnumerator(ListAutonomousExadataInfrastructuresRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousExadataInfrastructuresRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<AutonomousExadataInfrastructureSummary>

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

ListAutonomousExadataInfrastructuresResponseEnumerator(ListAutonomousExadataInfrastructuresRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAutonomousExadataInfrastructuresResponse> ListAutonomousExadataInfrastructuresResponseEnumerator(ListAutonomousExadataInfrastructuresRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousExadataInfrastructuresRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListAutonomousExadataInfrastructuresResponse>

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

ListAutonomousVirtualMachinesRecordEnumerator(ListAutonomousVirtualMachinesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AutonomousVirtualMachineSummary> ListAutonomousVirtualMachinesRecordEnumerator(ListAutonomousVirtualMachinesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousVirtualMachinesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<AutonomousVirtualMachineSummary>

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

ListAutonomousVirtualMachinesResponseEnumerator(ListAutonomousVirtualMachinesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAutonomousVirtualMachinesResponse> ListAutonomousVirtualMachinesResponseEnumerator(ListAutonomousVirtualMachinesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousVirtualMachinesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListAutonomousVirtualMachinesResponse>

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

ListAutonomousVmClusterAcdResourceUsageRecordEnumerator(ListAutonomousVmClusterAcdResourceUsageRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AutonomousContainerDatabaseResourceUsage> ListAutonomousVmClusterAcdResourceUsageRecordEnumerator(ListAutonomousVmClusterAcdResourceUsageRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousVmClusterAcdResourceUsageRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<AutonomousContainerDatabaseResourceUsage>

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

ListAutonomousVmClusterAcdResourceUsageResponseEnumerator(ListAutonomousVmClusterAcdResourceUsageRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAutonomousVmClusterAcdResourceUsageResponse> ListAutonomousVmClusterAcdResourceUsageResponseEnumerator(ListAutonomousVmClusterAcdResourceUsageRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousVmClusterAcdResourceUsageRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListAutonomousVmClusterAcdResourceUsageResponse>

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

ListAutonomousVmClustersRecordEnumerator(ListAutonomousVmClustersRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AutonomousVmClusterSummary> ListAutonomousVmClustersRecordEnumerator(ListAutonomousVmClustersRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousVmClustersRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<AutonomousVmClusterSummary>

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

ListAutonomousVmClustersResponseEnumerator(ListAutonomousVmClustersRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListAutonomousVmClustersResponse> ListAutonomousVmClustersResponseEnumerator(ListAutonomousVmClustersRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListAutonomousVmClustersRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListAutonomousVmClustersResponse>

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

ListBackupDestinationRecordEnumerator(ListBackupDestinationRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<BackupDestinationSummary> ListBackupDestinationRecordEnumerator(ListBackupDestinationRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBackupDestinationRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<BackupDestinationSummary>

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

ListBackupDestinationResponseEnumerator(ListBackupDestinationRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListBackupDestinationResponse> ListBackupDestinationResponseEnumerator(ListBackupDestinationRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBackupDestinationRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListBackupDestinationResponse>

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

ListBackupsRecordEnumerator(ListBackupsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<BackupSummary> ListBackupsRecordEnumerator(ListBackupsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBackupsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<BackupSummary>

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

ListBackupsResponseEnumerator(ListBackupsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListBackupsResponse> ListBackupsResponseEnumerator(ListBackupsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListBackupsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListBackupsResponse>

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

ListCloudAutonomousVmClusterAcdResourceUsageRecordEnumerator(ListCloudAutonomousVmClusterAcdResourceUsageRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AutonomousContainerDatabaseResourceUsage> ListCloudAutonomousVmClusterAcdResourceUsageRecordEnumerator(ListCloudAutonomousVmClusterAcdResourceUsageRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCloudAutonomousVmClusterAcdResourceUsageRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<AutonomousContainerDatabaseResourceUsage>

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

ListCloudAutonomousVmClusterAcdResourceUsageResponseEnumerator(ListCloudAutonomousVmClusterAcdResourceUsageRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListCloudAutonomousVmClusterAcdResourceUsageResponse> ListCloudAutonomousVmClusterAcdResourceUsageResponseEnumerator(ListCloudAutonomousVmClusterAcdResourceUsageRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCloudAutonomousVmClusterAcdResourceUsageRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListCloudAutonomousVmClusterAcdResourceUsageResponse>

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

ListCloudAutonomousVmClustersRecordEnumerator(ListCloudAutonomousVmClustersRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<CloudAutonomousVmClusterSummary> ListCloudAutonomousVmClustersRecordEnumerator(ListCloudAutonomousVmClustersRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCloudAutonomousVmClustersRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<CloudAutonomousVmClusterSummary>

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

ListCloudAutonomousVmClustersResponseEnumerator(ListCloudAutonomousVmClustersRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListCloudAutonomousVmClustersResponse> ListCloudAutonomousVmClustersResponseEnumerator(ListCloudAutonomousVmClustersRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCloudAutonomousVmClustersRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListCloudAutonomousVmClustersResponse>

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

ListCloudExadataInfrastructuresRecordEnumerator(ListCloudExadataInfrastructuresRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<CloudExadataInfrastructureSummary> ListCloudExadataInfrastructuresRecordEnumerator(ListCloudExadataInfrastructuresRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCloudExadataInfrastructuresRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<CloudExadataInfrastructureSummary>

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

ListCloudExadataInfrastructuresResponseEnumerator(ListCloudExadataInfrastructuresRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListCloudExadataInfrastructuresResponse> ListCloudExadataInfrastructuresResponseEnumerator(ListCloudExadataInfrastructuresRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCloudExadataInfrastructuresRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListCloudExadataInfrastructuresResponse>

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

ListCloudVmClusterUpdateHistoryEntriesRecordEnumerator(ListCloudVmClusterUpdateHistoryEntriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<UpdateHistoryEntrySummary> ListCloudVmClusterUpdateHistoryEntriesRecordEnumerator(ListCloudVmClusterUpdateHistoryEntriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCloudVmClusterUpdateHistoryEntriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<UpdateHistoryEntrySummary>

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

ListCloudVmClusterUpdateHistoryEntriesResponseEnumerator(ListCloudVmClusterUpdateHistoryEntriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListCloudVmClusterUpdateHistoryEntriesResponse> ListCloudVmClusterUpdateHistoryEntriesResponseEnumerator(ListCloudVmClusterUpdateHistoryEntriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCloudVmClusterUpdateHistoryEntriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListCloudVmClusterUpdateHistoryEntriesResponse>

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

ListCloudVmClusterUpdatesRecordEnumerator(ListCloudVmClusterUpdatesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<UpdateSummary> ListCloudVmClusterUpdatesRecordEnumerator(ListCloudVmClusterUpdatesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCloudVmClusterUpdatesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<UpdateSummary>

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

ListCloudVmClusterUpdatesResponseEnumerator(ListCloudVmClusterUpdatesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListCloudVmClusterUpdatesResponse> ListCloudVmClusterUpdatesResponseEnumerator(ListCloudVmClusterUpdatesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCloudVmClusterUpdatesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListCloudVmClusterUpdatesResponse>

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

ListCloudVmClustersRecordEnumerator(ListCloudVmClustersRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<CloudVmClusterSummary> ListCloudVmClustersRecordEnumerator(ListCloudVmClustersRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCloudVmClustersRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<CloudVmClusterSummary>

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

ListCloudVmClustersResponseEnumerator(ListCloudVmClustersRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListCloudVmClustersResponse> ListCloudVmClustersResponseEnumerator(ListCloudVmClustersRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListCloudVmClustersRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListCloudVmClustersResponse>

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

ListConsoleHistoriesRecordEnumerator(ListConsoleHistoriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ConsoleHistorySummary> ListConsoleHistoriesRecordEnumerator(ListConsoleHistoriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListConsoleHistoriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ConsoleHistorySummary>

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

ListConsoleHistoriesResponseEnumerator(ListConsoleHistoriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListConsoleHistoriesResponse> ListConsoleHistoriesResponseEnumerator(ListConsoleHistoriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListConsoleHistoriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListConsoleHistoriesResponse>

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

ListContainerDatabasePatchesRecordEnumerator(ListContainerDatabasePatchesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<AutonomousPatchSummary> ListContainerDatabasePatchesRecordEnumerator(ListContainerDatabasePatchesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListContainerDatabasePatchesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<AutonomousPatchSummary>

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

ListContainerDatabasePatchesResponseEnumerator(ListContainerDatabasePatchesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListContainerDatabasePatchesResponse> ListContainerDatabasePatchesResponseEnumerator(ListContainerDatabasePatchesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListContainerDatabasePatchesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListContainerDatabasePatchesResponse>

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

ListDataGuardAssociationsRecordEnumerator(ListDataGuardAssociationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<DataGuardAssociationSummary> ListDataGuardAssociationsRecordEnumerator(ListDataGuardAssociationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDataGuardAssociationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<DataGuardAssociationSummary>

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

ListDataGuardAssociationsResponseEnumerator(ListDataGuardAssociationsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDataGuardAssociationsResponse> ListDataGuardAssociationsResponseEnumerator(ListDataGuardAssociationsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDataGuardAssociationsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDataGuardAssociationsResponse>

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

ListDatabaseSoftwareImagesRecordEnumerator(ListDatabaseSoftwareImagesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<DatabaseSoftwareImageSummary> ListDatabaseSoftwareImagesRecordEnumerator(ListDatabaseSoftwareImagesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDatabaseSoftwareImagesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<DatabaseSoftwareImageSummary>

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

ListDatabaseSoftwareImagesResponseEnumerator(ListDatabaseSoftwareImagesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDatabaseSoftwareImagesResponse> ListDatabaseSoftwareImagesResponseEnumerator(ListDatabaseSoftwareImagesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDatabaseSoftwareImagesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDatabaseSoftwareImagesResponse>

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

ListDatabaseUpgradeHistoryEntriesRecordEnumerator(ListDatabaseUpgradeHistoryEntriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<DatabaseUpgradeHistoryEntrySummary> ListDatabaseUpgradeHistoryEntriesRecordEnumerator(ListDatabaseUpgradeHistoryEntriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDatabaseUpgradeHistoryEntriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<DatabaseUpgradeHistoryEntrySummary>

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

ListDatabaseUpgradeHistoryEntriesResponseEnumerator(ListDatabaseUpgradeHistoryEntriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDatabaseUpgradeHistoryEntriesResponse> ListDatabaseUpgradeHistoryEntriesResponseEnumerator(ListDatabaseUpgradeHistoryEntriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDatabaseUpgradeHistoryEntriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDatabaseUpgradeHistoryEntriesResponse>

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

ListDatabasesRecordEnumerator(ListDatabasesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<DatabaseSummary> ListDatabasesRecordEnumerator(ListDatabasesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDatabasesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<DatabaseSummary>

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

ListDatabasesResponseEnumerator(ListDatabasesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDatabasesResponse> ListDatabasesResponseEnumerator(ListDatabasesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDatabasesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDatabasesResponse>

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

ListDbHomePatchHistoryEntriesRecordEnumerator(ListDbHomePatchHistoryEntriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<PatchHistoryEntrySummary> ListDbHomePatchHistoryEntriesRecordEnumerator(ListDbHomePatchHistoryEntriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbHomePatchHistoryEntriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<PatchHistoryEntrySummary>

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

ListDbHomePatchHistoryEntriesResponseEnumerator(ListDbHomePatchHistoryEntriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDbHomePatchHistoryEntriesResponse> ListDbHomePatchHistoryEntriesResponseEnumerator(ListDbHomePatchHistoryEntriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbHomePatchHistoryEntriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDbHomePatchHistoryEntriesResponse>

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

ListDbHomePatchesRecordEnumerator(ListDbHomePatchesRequest, RetryConfiguration, CancellationToken)

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

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

The request object 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

ListDbHomePatchesResponseEnumerator(ListDbHomePatchesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDbHomePatchesResponse> ListDbHomePatchesResponseEnumerator(ListDbHomePatchesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbHomePatchesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDbHomePatchesResponse>

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

ListDbHomesRecordEnumerator(ListDbHomesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<DbHomeSummary> ListDbHomesRecordEnumerator(ListDbHomesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbHomesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<DbHomeSummary>

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

ListDbHomesResponseEnumerator(ListDbHomesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDbHomesResponse> ListDbHomesResponseEnumerator(ListDbHomesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbHomesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDbHomesResponse>

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

ListDbNodesRecordEnumerator(ListDbNodesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<DbNodeSummary> ListDbNodesRecordEnumerator(ListDbNodesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbNodesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<DbNodeSummary>

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

ListDbNodesResponseEnumerator(ListDbNodesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDbNodesResponse> ListDbNodesResponseEnumerator(ListDbNodesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbNodesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDbNodesResponse>

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

ListDbServersRecordEnumerator(ListDbServersRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<DbServerSummary> ListDbServersRecordEnumerator(ListDbServersRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbServersRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<DbServerSummary>

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

ListDbServersResponseEnumerator(ListDbServersRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDbServersResponse> ListDbServersResponseEnumerator(ListDbServersRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbServersRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDbServersResponse>

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

ListDbSystemPatchHistoryEntriesRecordEnumerator(ListDbSystemPatchHistoryEntriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<PatchHistoryEntrySummary> ListDbSystemPatchHistoryEntriesRecordEnumerator(ListDbSystemPatchHistoryEntriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbSystemPatchHistoryEntriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<PatchHistoryEntrySummary>

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

ListDbSystemPatchHistoryEntriesResponseEnumerator(ListDbSystemPatchHistoryEntriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDbSystemPatchHistoryEntriesResponse> ListDbSystemPatchHistoryEntriesResponseEnumerator(ListDbSystemPatchHistoryEntriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbSystemPatchHistoryEntriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDbSystemPatchHistoryEntriesResponse>

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

ListDbSystemPatchesRecordEnumerator(ListDbSystemPatchesRequest, RetryConfiguration, CancellationToken)

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

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

The request object 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

ListDbSystemPatchesResponseEnumerator(ListDbSystemPatchesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDbSystemPatchesResponse> ListDbSystemPatchesResponseEnumerator(ListDbSystemPatchesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbSystemPatchesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDbSystemPatchesResponse>

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

ListDbSystemShapesRecordEnumerator(ListDbSystemShapesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<DbSystemShapeSummary> ListDbSystemShapesRecordEnumerator(ListDbSystemShapesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbSystemShapesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<DbSystemShapeSummary>

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

ListDbSystemShapesResponseEnumerator(ListDbSystemShapesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDbSystemShapesResponse> ListDbSystemShapesResponseEnumerator(ListDbSystemShapesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbSystemShapesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDbSystemShapesResponse>

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

ListDbSystemUpgradeHistoryEntriesRecordEnumerator(ListDbSystemUpgradeHistoryEntriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<DbSystemUpgradeHistoryEntrySummary> ListDbSystemUpgradeHistoryEntriesRecordEnumerator(ListDbSystemUpgradeHistoryEntriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbSystemUpgradeHistoryEntriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<DbSystemUpgradeHistoryEntrySummary>

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

ListDbSystemUpgradeHistoryEntriesResponseEnumerator(ListDbSystemUpgradeHistoryEntriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDbSystemUpgradeHistoryEntriesResponse> ListDbSystemUpgradeHistoryEntriesResponseEnumerator(ListDbSystemUpgradeHistoryEntriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbSystemUpgradeHistoryEntriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDbSystemUpgradeHistoryEntriesResponse>

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

ListDbSystemUpgradesRecordEnumerator(ListDbSystemUpgradesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<DbSystemUpgradeSummary> ListDbSystemUpgradesRecordEnumerator(ListDbSystemUpgradesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbSystemUpgradesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<DbSystemUpgradeSummary>

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

ListDbSystemUpgradesResponseEnumerator(ListDbSystemUpgradesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDbSystemUpgradesResponse> ListDbSystemUpgradesResponseEnumerator(ListDbSystemUpgradesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbSystemUpgradesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDbSystemUpgradesResponse>

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

ListDbSystemsRecordEnumerator(ListDbSystemsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<DbSystemSummary> ListDbSystemsRecordEnumerator(ListDbSystemsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbSystemsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<DbSystemSummary>

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

ListDbSystemsResponseEnumerator(ListDbSystemsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDbSystemsResponse> ListDbSystemsResponseEnumerator(ListDbSystemsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbSystemsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDbSystemsResponse>

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

ListDbVersionsRecordEnumerator(ListDbVersionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<DbVersionSummary> ListDbVersionsRecordEnumerator(ListDbVersionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbVersionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<DbVersionSummary>

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

ListDbVersionsResponseEnumerator(ListDbVersionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListDbVersionsResponse> ListDbVersionsResponseEnumerator(ListDbVersionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListDbVersionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListDbVersionsResponse>

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

ListExadataInfrastructuresRecordEnumerator(ListExadataInfrastructuresRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ExadataInfrastructureSummary> ListExadataInfrastructuresRecordEnumerator(ListExadataInfrastructuresRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListExadataInfrastructuresRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ExadataInfrastructureSummary>

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

ListExadataInfrastructuresResponseEnumerator(ListExadataInfrastructuresRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListExadataInfrastructuresResponse> ListExadataInfrastructuresResponseEnumerator(ListExadataInfrastructuresRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListExadataInfrastructuresRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListExadataInfrastructuresResponse>

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

ListExadbVmClusterUpdateHistoryEntriesRecordEnumerator(ListExadbVmClusterUpdateHistoryEntriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ExadbVmClusterUpdateHistoryEntrySummary> ListExadbVmClusterUpdateHistoryEntriesRecordEnumerator(ListExadbVmClusterUpdateHistoryEntriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListExadbVmClusterUpdateHistoryEntriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ExadbVmClusterUpdateHistoryEntrySummary>

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

ListExadbVmClusterUpdateHistoryEntriesResponseEnumerator(ListExadbVmClusterUpdateHistoryEntriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListExadbVmClusterUpdateHistoryEntriesResponse> ListExadbVmClusterUpdateHistoryEntriesResponseEnumerator(ListExadbVmClusterUpdateHistoryEntriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListExadbVmClusterUpdateHistoryEntriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListExadbVmClusterUpdateHistoryEntriesResponse>

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

ListExadbVmClusterUpdatesRecordEnumerator(ListExadbVmClusterUpdatesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ExadbVmClusterUpdateSummary> ListExadbVmClusterUpdatesRecordEnumerator(ListExadbVmClusterUpdatesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListExadbVmClusterUpdatesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ExadbVmClusterUpdateSummary>

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

ListExadbVmClusterUpdatesResponseEnumerator(ListExadbVmClusterUpdatesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListExadbVmClusterUpdatesResponse> ListExadbVmClusterUpdatesResponseEnumerator(ListExadbVmClusterUpdatesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListExadbVmClusterUpdatesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListExadbVmClusterUpdatesResponse>

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

ListExadbVmClustersRecordEnumerator(ListExadbVmClustersRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ExadbVmClusterSummary> ListExadbVmClustersRecordEnumerator(ListExadbVmClustersRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListExadbVmClustersRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ExadbVmClusterSummary>

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

ListExadbVmClustersResponseEnumerator(ListExadbVmClustersRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListExadbVmClustersResponse> ListExadbVmClustersResponseEnumerator(ListExadbVmClustersRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListExadbVmClustersRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListExadbVmClustersResponse>

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

ListExascaleDbStorageVaultsRecordEnumerator(ListExascaleDbStorageVaultsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ExascaleDbStorageVaultSummary> ListExascaleDbStorageVaultsRecordEnumerator(ListExascaleDbStorageVaultsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListExascaleDbStorageVaultsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ExascaleDbStorageVaultSummary>

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

ListExascaleDbStorageVaultsResponseEnumerator(ListExascaleDbStorageVaultsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListExascaleDbStorageVaultsResponse> ListExascaleDbStorageVaultsResponseEnumerator(ListExascaleDbStorageVaultsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListExascaleDbStorageVaultsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListExascaleDbStorageVaultsResponse>

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

ListExecutionActionsRecordEnumerator(ListExecutionActionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ExecutionActionSummary> ListExecutionActionsRecordEnumerator(ListExecutionActionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListExecutionActionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ExecutionActionSummary>

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

ListExecutionActionsResponseEnumerator(ListExecutionActionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListExecutionActionsResponse> ListExecutionActionsResponseEnumerator(ListExecutionActionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListExecutionActionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListExecutionActionsResponse>

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

ListExecutionWindowsRecordEnumerator(ListExecutionWindowsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ExecutionWindowSummary> ListExecutionWindowsRecordEnumerator(ListExecutionWindowsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListExecutionWindowsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ExecutionWindowSummary>

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

ListExecutionWindowsResponseEnumerator(ListExecutionWindowsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListExecutionWindowsResponse> ListExecutionWindowsResponseEnumerator(ListExecutionWindowsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListExecutionWindowsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListExecutionWindowsResponse>

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

ListExternalContainerDatabasesRecordEnumerator(ListExternalContainerDatabasesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ExternalContainerDatabaseSummary> ListExternalContainerDatabasesRecordEnumerator(ListExternalContainerDatabasesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListExternalContainerDatabasesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ExternalContainerDatabaseSummary>

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

ListExternalContainerDatabasesResponseEnumerator(ListExternalContainerDatabasesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListExternalContainerDatabasesResponse> ListExternalContainerDatabasesResponseEnumerator(ListExternalContainerDatabasesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListExternalContainerDatabasesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListExternalContainerDatabasesResponse>

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

ListExternalDatabaseConnectorsRecordEnumerator(ListExternalDatabaseConnectorsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ExternalDatabaseConnectorSummary> ListExternalDatabaseConnectorsRecordEnumerator(ListExternalDatabaseConnectorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListExternalDatabaseConnectorsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ExternalDatabaseConnectorSummary>

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

ListExternalDatabaseConnectorsResponseEnumerator(ListExternalDatabaseConnectorsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListExternalDatabaseConnectorsResponse> ListExternalDatabaseConnectorsResponseEnumerator(ListExternalDatabaseConnectorsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListExternalDatabaseConnectorsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListExternalDatabaseConnectorsResponse>

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

ListExternalNonContainerDatabasesRecordEnumerator(ListExternalNonContainerDatabasesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ExternalNonContainerDatabaseSummary> ListExternalNonContainerDatabasesRecordEnumerator(ListExternalNonContainerDatabasesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListExternalNonContainerDatabasesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ExternalNonContainerDatabaseSummary>

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

ListExternalNonContainerDatabasesResponseEnumerator(ListExternalNonContainerDatabasesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListExternalNonContainerDatabasesResponse> ListExternalNonContainerDatabasesResponseEnumerator(ListExternalNonContainerDatabasesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListExternalNonContainerDatabasesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListExternalNonContainerDatabasesResponse>

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

ListExternalPluggableDatabasesRecordEnumerator(ListExternalPluggableDatabasesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ExternalPluggableDatabaseSummary> ListExternalPluggableDatabasesRecordEnumerator(ListExternalPluggableDatabasesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListExternalPluggableDatabasesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ExternalPluggableDatabaseSummary>

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

ListExternalPluggableDatabasesResponseEnumerator(ListExternalPluggableDatabasesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListExternalPluggableDatabasesResponse> ListExternalPluggableDatabasesResponseEnumerator(ListExternalPluggableDatabasesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListExternalPluggableDatabasesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListExternalPluggableDatabasesResponse>

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

ListFlexComponentsRecordEnumerator(ListFlexComponentsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<FlexComponentSummary> ListFlexComponentsRecordEnumerator(ListFlexComponentsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListFlexComponentsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<FlexComponentSummary>

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

ListFlexComponentsResponseEnumerator(ListFlexComponentsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListFlexComponentsResponse> ListFlexComponentsResponseEnumerator(ListFlexComponentsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListFlexComponentsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListFlexComponentsResponse>

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

ListGiVersionMinorVersionsRecordEnumerator(ListGiVersionMinorVersionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<GiMinorVersionSummary> ListGiVersionMinorVersionsRecordEnumerator(ListGiVersionMinorVersionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListGiVersionMinorVersionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<GiMinorVersionSummary>

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

ListGiVersionMinorVersionsResponseEnumerator(ListGiVersionMinorVersionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListGiVersionMinorVersionsResponse> ListGiVersionMinorVersionsResponseEnumerator(ListGiVersionMinorVersionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListGiVersionMinorVersionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListGiVersionMinorVersionsResponse>

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

ListGiVersionsRecordEnumerator(ListGiVersionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<GiVersionSummary> ListGiVersionsRecordEnumerator(ListGiVersionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListGiVersionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<GiVersionSummary>

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

ListGiVersionsResponseEnumerator(ListGiVersionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListGiVersionsResponse> ListGiVersionsResponseEnumerator(ListGiVersionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListGiVersionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListGiVersionsResponse>

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

ListKeyStoresRecordEnumerator(ListKeyStoresRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<KeyStoreSummary> ListKeyStoresRecordEnumerator(ListKeyStoresRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListKeyStoresRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<KeyStoreSummary>

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

ListKeyStoresResponseEnumerator(ListKeyStoresRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListKeyStoresResponse> ListKeyStoresResponseEnumerator(ListKeyStoresRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListKeyStoresRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListKeyStoresResponse>

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

ListMaintenanceRunHistoryRecordEnumerator(ListMaintenanceRunHistoryRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<MaintenanceRunHistorySummary> ListMaintenanceRunHistoryRecordEnumerator(ListMaintenanceRunHistoryRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaintenanceRunHistoryRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<MaintenanceRunHistorySummary>

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

ListMaintenanceRunHistoryResponseEnumerator(ListMaintenanceRunHistoryRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListMaintenanceRunHistoryResponse> ListMaintenanceRunHistoryResponseEnumerator(ListMaintenanceRunHistoryRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaintenanceRunHistoryRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListMaintenanceRunHistoryResponse>

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

ListMaintenanceRunsRecordEnumerator(ListMaintenanceRunsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<MaintenanceRunSummary> ListMaintenanceRunsRecordEnumerator(ListMaintenanceRunsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaintenanceRunsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<MaintenanceRunSummary>

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

ListMaintenanceRunsResponseEnumerator(ListMaintenanceRunsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListMaintenanceRunsResponse> ListMaintenanceRunsResponseEnumerator(ListMaintenanceRunsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListMaintenanceRunsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListMaintenanceRunsResponse>

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

ListOneoffPatchesRecordEnumerator(ListOneoffPatchesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<OneoffPatchSummary> ListOneoffPatchesRecordEnumerator(ListOneoffPatchesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListOneoffPatchesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<OneoffPatchSummary>

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

ListOneoffPatchesResponseEnumerator(ListOneoffPatchesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListOneoffPatchesResponse> ListOneoffPatchesResponseEnumerator(ListOneoffPatchesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListOneoffPatchesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListOneoffPatchesResponse>

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

ListParamsForActionTypeRecordEnumerator(ListParamsForActionTypeRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ActionParamValuesSummary> ListParamsForActionTypeRecordEnumerator(ListParamsForActionTypeRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListParamsForActionTypeRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ActionParamValuesSummary>

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

ListParamsForActionTypeResponseEnumerator(ListParamsForActionTypeRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListParamsForActionTypeResponse> ListParamsForActionTypeResponseEnumerator(ListParamsForActionTypeRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListParamsForActionTypeRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListParamsForActionTypeResponse>

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

ListPdbConversionHistoryEntriesRecordEnumerator(ListPdbConversionHistoryEntriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<PdbConversionHistoryEntrySummary> ListPdbConversionHistoryEntriesRecordEnumerator(ListPdbConversionHistoryEntriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPdbConversionHistoryEntriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<PdbConversionHistoryEntrySummary>

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

ListPdbConversionHistoryEntriesResponseEnumerator(ListPdbConversionHistoryEntriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListPdbConversionHistoryEntriesResponse> ListPdbConversionHistoryEntriesResponseEnumerator(ListPdbConversionHistoryEntriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPdbConversionHistoryEntriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListPdbConversionHistoryEntriesResponse>

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

ListPluggableDatabasesRecordEnumerator(ListPluggableDatabasesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<PluggableDatabaseSummary> ListPluggableDatabasesRecordEnumerator(ListPluggableDatabasesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPluggableDatabasesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<PluggableDatabaseSummary>

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

ListPluggableDatabasesResponseEnumerator(ListPluggableDatabasesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListPluggableDatabasesResponse> ListPluggableDatabasesResponseEnumerator(ListPluggableDatabasesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListPluggableDatabasesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListPluggableDatabasesResponse>

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

ListRecommendedScheduledActionsRecordEnumerator(ListRecommendedScheduledActionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<RecommendedScheduledActionSummary> ListRecommendedScheduledActionsRecordEnumerator(ListRecommendedScheduledActionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListRecommendedScheduledActionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<RecommendedScheduledActionSummary>

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

ListRecommendedScheduledActionsResponseEnumerator(ListRecommendedScheduledActionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListRecommendedScheduledActionsResponse> ListRecommendedScheduledActionsResponseEnumerator(ListRecommendedScheduledActionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListRecommendedScheduledActionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListRecommendedScheduledActionsResponse>

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

ListScheduledActionsRecordEnumerator(ListScheduledActionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ScheduledActionSummary> ListScheduledActionsRecordEnumerator(ListScheduledActionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListScheduledActionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ScheduledActionSummary>

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

ListScheduledActionsResponseEnumerator(ListScheduledActionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListScheduledActionsResponse> ListScheduledActionsResponseEnumerator(ListScheduledActionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListScheduledActionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListScheduledActionsResponse>

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

ListSchedulingPlansRecordEnumerator(ListSchedulingPlansRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SchedulingPlanSummary> ListSchedulingPlansRecordEnumerator(ListSchedulingPlansRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSchedulingPlansRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<SchedulingPlanSummary>

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

ListSchedulingPlansResponseEnumerator(ListSchedulingPlansRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSchedulingPlansResponse> ListSchedulingPlansResponseEnumerator(ListSchedulingPlansRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSchedulingPlansRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListSchedulingPlansResponse>

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

ListSchedulingPoliciesRecordEnumerator(ListSchedulingPoliciesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SchedulingPolicySummary> ListSchedulingPoliciesRecordEnumerator(ListSchedulingPoliciesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSchedulingPoliciesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<SchedulingPolicySummary>

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

ListSchedulingPoliciesResponseEnumerator(ListSchedulingPoliciesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSchedulingPoliciesResponse> ListSchedulingPoliciesResponseEnumerator(ListSchedulingPoliciesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSchedulingPoliciesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListSchedulingPoliciesResponse>

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

ListSchedulingWindowsRecordEnumerator(ListSchedulingWindowsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SchedulingWindowSummary> ListSchedulingWindowsRecordEnumerator(ListSchedulingWindowsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSchedulingWindowsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<SchedulingWindowSummary>

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

ListSchedulingWindowsResponseEnumerator(ListSchedulingWindowsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSchedulingWindowsResponse> ListSchedulingWindowsResponseEnumerator(ListSchedulingWindowsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSchedulingWindowsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListSchedulingWindowsResponse>

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

ListSystemVersionMinorVersionsRecordEnumerator(ListSystemVersionMinorVersionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SystemVersionMinorVersionSummary> ListSystemVersionMinorVersionsRecordEnumerator(ListSystemVersionMinorVersionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSystemVersionMinorVersionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<SystemVersionMinorVersionSummary>

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

ListSystemVersionMinorVersionsResponseEnumerator(ListSystemVersionMinorVersionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSystemVersionMinorVersionsResponse> ListSystemVersionMinorVersionsResponseEnumerator(ListSystemVersionMinorVersionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSystemVersionMinorVersionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListSystemVersionMinorVersionsResponse>

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

ListSystemVersionsRecordEnumerator(ListSystemVersionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<SystemVersionSummary> ListSystemVersionsRecordEnumerator(ListSystemVersionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSystemVersionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<SystemVersionSummary>

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

ListSystemVersionsResponseEnumerator(ListSystemVersionsRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListSystemVersionsResponse> ListSystemVersionsResponseEnumerator(ListSystemVersionsRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListSystemVersionsRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListSystemVersionsResponse>

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

ListVmClusterNetworksRecordEnumerator(ListVmClusterNetworksRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<VmClusterNetworkSummary> ListVmClusterNetworksRecordEnumerator(ListVmClusterNetworksRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListVmClusterNetworksRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<VmClusterNetworkSummary>

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

ListVmClusterNetworksResponseEnumerator(ListVmClusterNetworksRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListVmClusterNetworksResponse> ListVmClusterNetworksResponseEnumerator(ListVmClusterNetworksRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListVmClusterNetworksRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListVmClusterNetworksResponse>

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

ListVmClusterPatchHistoryEntriesRecordEnumerator(ListVmClusterPatchHistoryEntriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<PatchHistoryEntrySummary> ListVmClusterPatchHistoryEntriesRecordEnumerator(ListVmClusterPatchHistoryEntriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListVmClusterPatchHistoryEntriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<PatchHistoryEntrySummary>

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

ListVmClusterPatchHistoryEntriesResponseEnumerator(ListVmClusterPatchHistoryEntriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListVmClusterPatchHistoryEntriesResponse> ListVmClusterPatchHistoryEntriesResponseEnumerator(ListVmClusterPatchHistoryEntriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListVmClusterPatchHistoryEntriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListVmClusterPatchHistoryEntriesResponse>

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

ListVmClusterPatchesRecordEnumerator(ListVmClusterPatchesRequest, RetryConfiguration, CancellationToken)

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

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

The request object 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

ListVmClusterPatchesResponseEnumerator(ListVmClusterPatchesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListVmClusterPatchesResponse> ListVmClusterPatchesResponseEnumerator(ListVmClusterPatchesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListVmClusterPatchesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListVmClusterPatchesResponse>

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

ListVmClusterUpdateHistoryEntriesRecordEnumerator(ListVmClusterUpdateHistoryEntriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<VmClusterUpdateHistoryEntrySummary> ListVmClusterUpdateHistoryEntriesRecordEnumerator(ListVmClusterUpdateHistoryEntriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListVmClusterUpdateHistoryEntriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<VmClusterUpdateHistoryEntrySummary>

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

ListVmClusterUpdateHistoryEntriesResponseEnumerator(ListVmClusterUpdateHistoryEntriesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListVmClusterUpdateHistoryEntriesResponse> ListVmClusterUpdateHistoryEntriesResponseEnumerator(ListVmClusterUpdateHistoryEntriesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListVmClusterUpdateHistoryEntriesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListVmClusterUpdateHistoryEntriesResponse>

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

ListVmClusterUpdatesRecordEnumerator(ListVmClusterUpdatesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<VmClusterUpdateSummary> ListVmClusterUpdatesRecordEnumerator(ListVmClusterUpdatesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListVmClusterUpdatesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<VmClusterUpdateSummary>

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

ListVmClusterUpdatesResponseEnumerator(ListVmClusterUpdatesRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListVmClusterUpdatesResponse> ListVmClusterUpdatesResponseEnumerator(ListVmClusterUpdatesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListVmClusterUpdatesRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListVmClusterUpdatesResponse>

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

ListVmClustersRecordEnumerator(ListVmClustersRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<VmClusterSummary> ListVmClustersRecordEnumerator(ListVmClustersRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListVmClustersRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<VmClusterSummary>

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

ListVmClustersResponseEnumerator(ListVmClustersRequest, RetryConfiguration, CancellationToken)

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

Declaration
public IEnumerable<ListVmClustersResponse> ListVmClustersResponseEnumerator(ListVmClustersRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
Parameters
Type Name Description
ListVmClustersRequest request

The request object containing the details to send

RetryConfiguration retryConfiguration

The configuration for retrying, may be null

CancellationToken cancellationToken

The cancellation token object

Returns
Type Description
IEnumerable<ListVmClustersResponse>

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

In this article
Back to top