integration_accounts_key_vault_keys
Creates, updates, deletes, gets or lists an integration_accounts_key_vault_keys
resource.
Overview
Name | integration_accounts_key_vault_keys |
Type | Resource |
Id | azure.logic_apps.integration_accounts_key_vault_keys |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
attributes | object | The key attributes. |
kid | string | The key id. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , integrationAccountName | api-version | Gets the integration account's Key Vault keys. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
integrationAccountName | string | The integration account name. |
resourceGroupName | string | The resource group name. |
subscriptionId | string | The subscription id. |
api-version | string | The API version. |
SELECT
examples
- list
Gets the integration account's Key Vault keys.
SELECT
attributes,
kid
FROM azure.logic_apps.integration_accounts_key_vault_keys
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND integrationAccountName = '{{ integrationAccountName }}' -- required
AND api-version = '{{ api-version }}'
;