Iot Dps Resource - List Keys
Haal de beveiligingsmetagegevens voor een inrichtingsservice op.
De primaire en secundaire sleutels voor een inrichtingsservice weergeven.
POST https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Devices/provisioningServices/{provisioningServiceName}/listkeys?api-version=2022-12-12
URI-parameters
Name | In | Vereist | Type | Description |
---|---|---|---|---|
provisioning
|
path | True |
string |
De naam van de inrichtingsservice waarvoor u de gedeelde toegangssleutels wilt ophalen. |
resource
|
path | True |
string |
naam van resourcegroep |
subscription
|
path | True |
string |
De abonnements-id. |
api-version
|
query | True |
string |
De versie van de API. |
Antwoorden
Name | Type | Description |
---|---|---|
200 OK |
Dit is een synchrone bewerking. De hoofdtekst bevat een JSON-geserialiseerde matrix van beleid voor gedeelde toegang, inclusief sleutels, die u kunt gebruiken voor toegang tot de eindpunten van de inrichtingsservice. |
|
Other Status Codes |
Standaardfoutantwoord. |
Beveiliging
azure_auth
Azure Active Directory OAuth2-stroom.
Type:
oauth2
Stroom:
implicit
Autorisatie-URL:
https://login.microsoftonline.com/common/oauth2/authorize
Bereiken
Name | Description |
---|---|
user_impersonation | uw gebruikersaccount imiteren |
Voorbeelden
DPSListKeys
Voorbeeldaanvraag
POST https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/myResourceGroup/providers/Microsoft.Devices/provisioningServices/myFirstProvisioningService/listkeys?api-version=2022-12-12
Voorbeeldrespons
{
"value": [
{
"keyName": "key1",
"primaryKey": "#####################################",
"secondaryKey": "###################################",
"rights": "ServiceConfig"
},
{
"keyName": "key2",
"primaryKey": "#######################################",
"secondaryKey": "####################################=",
"rights": "ServiceConfig"
}
]
}
Definities
Name | Description |
---|---|
Access |
Rechten die deze sleutel heeft. |
Error |
Foutdetails. |
Shared |
Beschrijving van de gedeelde toegangssleutel. |
Shared |
Lijst met gedeelde toegangssleutels. |
AccessRightsDescription
Rechten die deze sleutel heeft.
Name | Type | Description |
---|---|---|
DeviceConnect |
string |
|
EnrollmentRead |
string |
|
EnrollmentWrite |
string |
|
RegistrationStatusRead |
string |
|
RegistrationStatusWrite |
string |
|
ServiceConfig |
string |
ErrorDetails
Foutdetails.
Name | Type | Description |
---|---|---|
code |
integer |
De foutcode. |
details |
string |
De foutdetails. |
httpStatusCode |
string |
De HTTP-statuscode. |
message |
string |
Het foutbericht. |
SharedAccessSignatureAuthorizationRule[AccessRightsDescription]
Beschrijving van de gedeelde toegangssleutel.
Name | Type | Description |
---|---|---|
keyName |
string |
Naam van de sleutel. |
primaryKey |
string |
Waarde van primaire SAS-sleutel. |
rights |
Rechten die deze sleutel heeft. |
|
secondaryKey |
string |
Waarde van secundaire SAS-sleutel. |
SharedAccessSignatureAuthorizationRuleListResult
Lijst met gedeelde toegangssleutels.
Name | Type | Description |
---|---|---|
nextLink |
string |
De volgende koppeling. |
value |
Shared |
De lijst met beleid voor gedeelde toegang. |