Retrieves a list of Azure resource group for the specified account
GET/v1/clouds/azure/regions/:region/subscriptions/:subscriptionId/resourceGroups
Retrieves a list of Azure resource group for the specified account
Request
Path Parameters
region stringrequired
Region for which Azure resource group are requested
subscriptionId stringrequired
Uid for which Azure resource group are requested
Query Parameters
cloudAccountUid stringrequired
Uid for the specific Azure cloud account
Header Parameters
ProjectUid string
Scope the request to the specified project uid
Responses
- 200
(empty)
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
resourceGroupList
object[]
idstring
The ID of the resource group
locationstring
The location of the resource group. It cannot be changed after the resource group has been created
namestring
The type of the resource group
{
"resourceGroupList": [
{
"id": "string",
"location": "string",
"name": "string"
}
]
}
Loading...