Share via


KeyVaultSecretCollection.GetAllAsync Method

Definition

The List operation gets information about the secrets in a vault. NOTE: This API is intended for internal use in ARM deployments. Users should use the data-plane REST service for interaction with vault secrets.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{vaultName}/secrets
  • Operation Id: Secrets_List
  • Default Api Version: 2023-02-01
  • Resource: KeyVaultSecretResource
public virtual Azure.AsyncPageable<Azure.ResourceManager.KeyVault.KeyVaultSecretResource> GetAllAsync (int? top = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetAllAsync : Nullable<int> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.KeyVault.KeyVaultSecretResource>
override this.GetAllAsync : Nullable<int> * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.KeyVault.KeyVaultSecretResource>
Public Overridable Function GetAllAsync (Optional top As Nullable(Of Integer) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of KeyVaultSecretResource)

Parameters

top
Nullable<Int32>

Maximum number of results to return.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

An async collection of KeyVaultSecretResource that may take multiple service requests to iterate over.

Applies to