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
integrationAccountName
path True

string

The integration account name.

resourceGroupName
path True

string

The resource group name.

subscriptionId
path True

string

The subscription id.

api-version
query True

string

The API version.

Request Body

Name Required Type Description
keyVault True

KeyVaultReference

The key vault reference.

skipToken

string

The skip token.

Responses

Name Type Description
200 OK

KeyVaultKeyCollection

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.

KeyVaultKey

The key vault key.

KeyVaultKeyCollection

Collection of key vault keys.

KeyVaultReference

The key vault reference.

ListKeyVaultKeysDefinition

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

Attributes

The key attributes.

kid

string

The key id.

KeyVaultKeyCollection

Collection of key vault keys.

Name Type Description
skipToken

string

The skip token.

value

KeyVaultKey[]

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

KeyVaultReference

The key vault reference.

skipToken

string

The skip token.