Integration Accounts - List Key Vault Keys
Gets the integration account's Key Vault keys.
POST https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/listKeyVaultKeys?api-version=2016-06-01
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
integration
|
path | True |
string |
The integration account name. |
resource
|
path | True |
string |
The resource group name. |
subscription
|
path | True |
string |
The subscription id. |
api-version
|
query | True |
string |
The API version. |
Request Body
Name | Required | Type | Description |
---|---|---|---|
keyVault | True |
The key vault reference. |
|
skipToken |
string |
The skip token. |
Responses
Name | Type | Description |
---|---|---|
200 OK |
OK |
Security
azure_auth
Azure Active Directory OAuth2 Flow.
Type:
oauth2
Flow:
implicit
Authorization URL:
https://login.microsoftonline.com/common/oauth2/authorize
Scopes
Name | Description |
---|---|
user_impersonation | impersonate your user account |
Examples
Get Integration Account callback URL
Sample request
POST https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Logic/integrationAccounts/testIntegrationAccount/listKeyVaultKeys?api-version=2016-06-01
{
"skipToken": "testSkipToken",
"keyVault": {}
}
Sample response
{
"value": [
{
"kid": "https://testKeyVault.vault.azure.net/keys/testkey",
"attributes": {
"enabled": true,
"created": 1498072075,
"updated": 1498072075
}
}
],
"skipToken": "testSkipToken"
}
Definitions
Name | Description |
---|---|
Attributes |
The key attributes. |
Key |
The key vault key. |
Key |
Collection of key vault keys. |
Key |
The key vault reference. |
List |
The list key vault keys definition. |
Attributes
The key attributes.
Name | Type | Description |
---|---|---|
created |
integer |
When the key was created. |
enabled |
boolean |
Whether the key is enabled or not. |
updated |
integer |
When the key was updated. |
KeyVaultKey
The key vault key.
Name | Type | Description |
---|---|---|
attributes |
The key attributes. |
|
kid |
string |
The key id. |
KeyVaultKeyCollection
Collection of key vault keys.
Name | Type | Description |
---|---|---|
skipToken |
string |
The skip token. |
value |
The key vault keys. |
KeyVaultReference
The key vault reference.
Name | Type | Description |
---|---|---|
id |
string |
The resource id. |
name |
string |
The key vault name. |
type |
string |
Gets the resource type. |
ListKeyVaultKeysDefinition
The list key vault keys definition.
Name | Type | Description |
---|---|---|
keyVault |
The key vault reference. |
|
skipToken |
string |
The skip token. |