-
Notifications
You must be signed in to change notification settings - Fork 0
/
openapi.yaml
121 lines (119 loc) · 4.87 KB
/
openapi.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
openapi: 3.0.0
info:
title: Azure Retail Prices REST API
description: An unauthenticated API to get retail prices for all Azure services.
version: 2023-01-01-preview
servers:
- url: https://prices.azure.com/api/retail/prices
paths:
/:
get:
summary: Get a list of retail prices for Azure services
parameters:
- name: api-version
in: query
required: true
schema:
type: string
enum: [2023-01-01-preview]
description: The API version to use.
- name: $filter
in: query
required: false
schema:
type: string
description: The OData filter expression to apply to the response.
- name: $skiptoken
in: query
required: false
schema:
type: string
description: The continuation token to get the next page of results.
responses:
'200':
description: A list of retail prices for Azure services.
content:
application/json:
schema:
type: object
properties:
BillingCurrency:
type: string
description: The currency code used for billing.
CustomerEntityId:
type: string
description: The customer entity identifier.
CustomerEntityType:
type: string
description: The customer entity type.
Items:
type: array
items:
type: object
properties:
currencyCode:
type: string
description: The currency code for the retail price.
tierMinimumUnits:
type: number
format: double
description: The minimum number of units required to get the tiered price.
retailPrice:
type: number
format: double
description: The retail price per unit.
unitPrice:
type: number
format: double
description: The unit price per unit.
armRegionName:
type: string
description: The ARM region name of the service.
location:
type: string
description: The location of the service.
effectiveStartDate:
type: string
format: date-time
description: The start date of the price in UTC.
meterId:
type: string
format: uuid
description: The unique identifier of the meter.
meterName:
type: string
description: The name of the meter.
productId:
type: string
description: The product identifier of the service.
skuId:
type: string
description: The SKU identifier of the service.
availabilityId:
type: string
nullable: true
description: The availability identifier of the service.
productName:
type: string
description: The name of the product.
skuName:
type: string
description: The name of the SKU.
serviceName:
type: string
description: The name of the service.
serviceId:
type: string
description: The service identifier of the service.
serviceFamily:
type: string
description: The service family of the service.
unitOfMeasure:
type: string
description: The unit of measure for the price.
isPrimaryMeterRegion:
type: boolean
description: A flag indicating whether the region is primary or not.
armSkuName:
type: string
description: The ARM SKU name of the service.