I have a PowerShell script that calls the Microsoft Azure API for cost management.
I first call:
This returns a 202 as expected:
StatusCode : 202
StatusDescription : Accepted
Content : {}
RawContent : HTTP/1.1 202 Accepted
Pragma: no-cache
I then extract the header location and poll until I get a 200
StatusCode : 200
StatusDescription : OK
Content : {"id":"/providers/Microsoft.Billing/enrollmentAccounts/7****5/providers/Microsoft.CostManagement/costDetail sOperationResults/ca4f*******-d8bff1dbf7c2","name":"ca4f85f****-d8bff1...
RawContent : HTTP/1.1 200 OK
Pragma: no-cache
Vary: Accept-Encoding
session-id: ae0a1b9b-2d21********6136a55bcb
x-ms-request-id: d2f**********85-8d7f54a02fb7
x-ms-correlation-request-id: 23b94e5d...
Forms : {}
Headers : {[Pragma, no-cache], [Vary, Accept-Encoding], [session-id, ae0a1b9b-2d21-4088-82f4- 106136a55bcb], [x-ms-request-id, d2f0ab18-e34c-*****4a02fb7]...}
Images : {}
InputFields : {}
Links : {}
ParsedHtml : mshtml.HTMLDocumentClass
RawContentLength : 935
The problem is that I'm expecting a blob location to be returned but it isn't.
Any guidance would be greatly appreciated.
The blob location should be in the Manifest section
i.e ......Manifest.blobs.blobLink
I
I've tried different versions of the API be all return the same.
I'm sure it's something I'm doing wrong.
According to this Official MS Document the Azure Cost management API with scope set to
enrollmentAccounts
does not contain any blob location in the request. If you want to retrieve the cost of the blob resource, You need to use:-where resourceGroupName is the name of your resource group containing your blob.
My sample Powershell script that calls the Cost management API:-
Output:-
In your enrollmentAccounts Rest API, Try to add ResourceGroup name in value that contains your blob:-
Also, There's a separate Rest API dedicated to Azure Blob Storage, You can try calling the Azure blob Powershell command to retrieve the blob properties like below:-
Output:-