@lap v0.3
# Machine-readable API spec. Each @endpoint block is one API call.
@api KeyVaultManagementClient
@base https://management.azure.com
@version 2018-02-14-preview
@auth OAuth2
@endpoints 4
@toc subscriptions(4)

@endpoint PUT /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{vaultName}/secrets/{secretName}
@desc Create or update a secret in a key vault in the specified subscription.  NOTE: This API is intended for internal use in ARM deployments. Users should use the data-plane REST service for interaction with vault secrets.
@required {resourceGroupName: any # The name of the Resource Group to which the vault belongs., vaultName: any # Name of the vault, secretName: any # Name of the secret, api-version: any # Client Api Version., parameters: any # Parameters to create or update the secret, subscriptionId: any # Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.}
@returns(200) Created or updated secret
@returns(201) Created or updated vault

@endpoint PATCH /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{vaultName}/secrets/{secretName}
@desc Update a secret in the specified subscription.  NOTE: This API is intended for internal use in ARM deployments.  Users should use the data-plane REST service for interaction with vault secrets.
@required {resourceGroupName: any # The name of the Resource Group to which the vault belongs., vaultName: any # Name of the vault, secretName: any # Name of the secret, api-version: any # Client Api Version., parameters: any # Parameters to patch the secret, subscriptionId: any # Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.}
@returns(200) Patched secret
@returns(201) Patched secret

@endpoint GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{vaultName}/secrets/{secretName}
@desc Gets the specified secret.  NOTE: This API is intended for internal use in ARM deployments. Users should use the data-plane REST service for interaction with vault secrets.
@required {resourceGroupName: any # The name of the Resource Group to which the vault belongs., vaultName: any # The name of the vault., secretName: any # The name of the secret., api-version: any # Client Api Version., subscriptionId: any # Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.}
@returns(200) Retrieved secret

@endpoint GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{vaultName}/secrets
@desc 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.
@required {resourceGroupName: any # The name of the Resource Group to which the vault belongs., vaultName: any # The name of the vault., api-version: any # Client Api Version., subscriptionId: any # Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.}
@optional {$top: any # Maximum number of results to return.}
@returns(200) Get information about secrets in the specified vault.

@end
