Updates - Get Names
Get a list of all update names that match the specified provider.
GET https://{accountEndpoint}/deviceupdate/{instanceId}/v2/updates/providers/{provider}/names
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
account
|
path | True |
string |
Account endpoint. |
instance
|
path | True |
string |
Account instance identifier. |
provider
|
path | True |
string |
Update provider. |
Responses
Name | Type | Description |
---|---|---|
200 OK |
All update names that match the specified provider, or empty list if there is none. |
|
404 Not Found |
Not found. |
|
429 Too Many Requests |
Too many requests; there is a rate limit on how many operations can be executed within a time period. |
Security
azure_auth_implicit
Azure Active Directory OAuth2 Implicit Flow
Type:
oauth2
Flow:
implicit
Authorization URL:
https://login.microsoftonline.com/common/oauth2/v2.0/authorize
Scopes
Name | Description |
---|---|
user_impersonation | impersonate your user account |
azure_auth_code
Azure Active Directory OAuth2 AccessCode Flow
Type:
oauth2
Flow:
accessCode
Authorization URL:
https://login.microsoftonline.com/common/oauth2/v2.0/authorize
Token URL:
https://login.microsoftonline.com/common/oauth2/v2.0/token
Scopes
Name | Description |
---|---|
user_impersonation | impersonate your user account |
azure_auth_application
Azure Active Directory OAuth2 Application Flow
Type:
oauth2
Flow:
application
Token URL:
https://login.microsoftonline.com/common/oauth2/v2.0/token
Scopes
Name | Description |
---|---|
.default | client credential scope |
azure_auth_password
Azure Active Directory OAuth2 Password Flow
Type:
oauth2
Flow:
password
Token URL:
https://login.microsoftonline.com/common/oauth2/v2.0/token
Scopes
Name | Description |
---|---|
user_impersonation | impersonate your user account |
Examples
Updates_GetNames
Sample request
GET https://contoso.api.adu.microsoft.com/deviceupdate/blue/v2/updates/providers/microsoft/names
Sample response
{
"value": [
"adu"
]
}
Definitions
PageableListOfStrings
The list of strings with server paging support.
Name | Type | Description |
---|---|---|
nextLink |
string |
The link to the next page of items. |
value |
string[] |
The collection of pageable items. |