Integration Accounts - List Key Vault Keys
获取集成帐户的 Key Vault 密钥。
POST https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/listKeyVaultKeys?api-version=2019-05-01
URI 参数
| 名称 | 在 | 必需 | 类型 | 说明 |
|---|---|---|---|---|
|
integration
|
path | True |
string |
集成帐户名称。 |
|
resource
|
path | True |
string |
资源组名称。 |
|
subscription
|
path | True |
string |
订阅 ID。 |
|
api-version
|
query | True |
string |
API 版本。 |
请求正文
| 名称 | 必需 | 类型 | 说明 |
|---|---|---|---|
| keyVault | True |
密钥保管库引用。 |
|
| skipToken |
string |
跳过令牌。 |
响应
| 名称 | 类型 | 说明 |
|---|---|---|
| 200 OK |
好的 |
|
| Other Status Codes |
描述操作失败的原因的错误响应。 |
安全性
azure_auth
Azure Active Directory OAuth2 Flow。
类型:
oauth2
流向:
implicit
授权 URL:
https://login.microsoftonline.com/common/oauth2/authorize
作用域
| 名称 | 说明 |
|---|---|
| user_impersonation | 模拟用户帐户 |
示例
Get Integration Account callback URL
示例请求
POST https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Logic/integrationAccounts/testIntegrationAccount/listKeyVaultKeys?api-version=2019-05-01
{
"keyVault": {
"id": "subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.KeyVault/vaults/testKeyVault"
},
"skipToken": "testSkipToken"
}
示例响应
{
"value": [
{
"kid": "https://testKeyVault.vault.azure.net/keys/testkey",
"attributes": {
"enabled": true,
"created": 1498072075,
"updated": 1498072075
}
}
],
"skipToken": "testSkipToken"
}
定义
| 名称 | 说明 |
|---|---|
| Attributes |
关键属性。 |
|
Error |
错误属性指示逻辑服务无法处理传入请求的原因。 错误消息中提供了原因。 |
|
Error |
错误响应表示逻辑服务无法处理传入请求。 error 属性包含错误详细信息。 |
|
Key |
密钥保管库密钥。 |
|
Key |
密钥保管库密钥的集合。 |
|
Key |
密钥保管库引用。 |
|
List |
列表密钥保管库密钥定义。 |
Attributes
关键属性。
| 名称 | 类型 | 说明 |
|---|---|---|
| created |
integer (int64) |
创建密钥的时间。 |
| enabled |
boolean |
密钥是否已启用。 |
| updated |
integer (int64) |
密钥更新的时间。 |
ErrorProperties
错误属性指示逻辑服务无法处理传入请求的原因。 错误消息中提供了原因。
| 名称 | 类型 | 说明 |
|---|---|---|
| code |
string |
错误代码。 |
| message |
string |
指示作失败的原因的错误消息。 |
ErrorResponse
错误响应表示逻辑服务无法处理传入请求。 error 属性包含错误详细信息。
| 名称 | 类型 | 说明 |
|---|---|---|
| error |
错误属性。 |
KeyVaultKey
密钥保管库密钥。
| 名称 | 类型 | 说明 |
|---|---|---|
| attributes |
关键属性。 |
|
| kid |
string |
密钥 ID。 |
KeyVaultKeyCollection
密钥保管库密钥的集合。
| 名称 | 类型 | 说明 |
|---|---|---|
| skipToken |
string |
跳过令牌。 |
| value |
密钥保管库密钥。 |
KeyVaultReference
密钥保管库引用。
| 名称 | 类型 | 说明 |
|---|---|---|
| id |
string |
资源 ID。 |
| name |
string |
密钥保管库名称。 |
| type |
string |
获取资源类型。 |
ListKeyVaultKeysDefinition
列表密钥保管库密钥定义。
| 名称 | 类型 | 说明 |
|---|---|---|
| keyVault |
密钥保管库引用。 |
|
| skipToken |
string |
跳过令牌。 |