-
Notifications
You must be signed in to change notification settings - Fork 46
/
internal-subscriptions-sync-api-spec.yaml
372 lines (365 loc) · 11.5 KB
/
internal-subscriptions-sync-api-spec.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
openapi: "3.0.2"
info:
title: "internal-subscriptions-sync-api"
description: "REST interface for the internal-subscriptions-sync- service. Please note any deprecated APIs. Our current deprecation policy is to keep deprecated APIs around for at least 6 months."
version: 1.0.0
servers:
- url: /{PATH_PREFIX}/{APP_NAME}
variables:
PATH_PREFIX:
default: api
APP_NAME:
default: rhsm-subscriptions
- url: https://{HOSTNAME}/{PATH_PREFIX}/{APP_NAME}
variables:
HOSTNAME:
enum:
- ci.cloud.redhat.com
- qa.cloud.redhat.com
- stage.cloud.redhat.com
- cloud.redhat.com
default: ci.cloud.redhat.com
PATH_PREFIX:
default: api
APP_NAME:
default: rhsm-subscriptions
paths:
/v1/internal/subscriptions/prune:
description: Remove subscription and capacity records that are in the denylist.
delete:
summary: Remove subscription and capacity records that are in the denylist.
operationId: pruneUnlistedSubscriptions
tags:
- internalSubscriptions
responses:
'200':
description: Prune of unlisted subscriptions is successful.
content:
application/json:
schema:
$ref: "#/components/schemas/RpcResponse"
'400':
$ref: "../../../spec/error-responses.yaml#/$defs/BadRequest"
'403':
$ref: "../../../spec/error-responses.yaml#/$defs/Forbidden"
'404':
$ref: "../../../spec/error-responses.yaml#/$defs/ResourceNotFound"
'500':
$ref: "../../../spec/error-responses.yaml#/$defs/InternalServerError"
/v1/internal/subscriptions/rhmUsageContext:
description: "Get the Red Hat Marketplace usage context."
parameters:
- name: orgId
in: query
required: true
schema:
type: string
description: "Customer's Org Id"
- name: date
in: query
required: true
schema:
type: string
format: date-time
- name: productId
in: query
required: true
schema:
type: string
- name: sla
in: query
schema:
type: string
- name: usage
in: query
schema:
type: string
get:
summary: "Lookup necessary info to submit a usage record to RHM"
operationId: getRhmUsageContext
responses:
'200':
description: "Found RHM usage context matching the criteria."
content:
application/json:
schema:
$ref: '#/components/schemas/RhmUsageContext'
'400':
$ref: "../../../spec/error-responses.yaml#/$defs/BadRequest"
'403':
$ref: "../../../spec/error-responses.yaml#/$defs/Forbidden"
'404':
$ref: "../../../spec/error-responses.yaml#/$defs/ResourceNotFound"
'500':
$ref: "../../../spec/error-responses.yaml#/$defs/InternalServerError"
tags:
- internalSubscriptions
/v1/internal/subscriptions/awsUsageContext:
description: "Get AWS usage context."
parameters:
- name: date
in: query
required: true
schema:
type: string
format: date-time
- name: productId
in: query
required: true
schema:
type: string
- name: orgId
in: query
required: true
schema:
type: string
description: "Customer's Org Id"
- name: sla
in: query
schema:
type: string
- name: usage
in: query
schema:
type: string
- name: awsAccountId
in: query
schema:
type: string
default: _ANY
get:
summary: "Lookup necessary info to submit a usage record to AWS"
operationId: getAwsUsageContext
responses:
'200':
description: "Found AWS usage context matching the criteria."
content:
application/json:
schema:
$ref: '#/components/schemas/AwsUsageContext'
'400':
$ref: "../../../spec/error-responses.yaml#/$defs/BadRequest"
'403':
$ref: "../../../spec/error-responses.yaml#/$defs/Forbidden"
'404':
$ref: "../../../spec/error-responses.yaml#/$defs/ResourceNotFound"
'500':
$ref: "../../../spec/error-responses.yaml#/$defs/InternalServerError"
tags:
- internalSubscriptions
/v1/internal/subscriptions/azureUsageContext:
get:
operationId: getAzureMarketplaceContext
summary: Lookup necessary info to submit a usage record to Azure
tags:
- internalSubscriptions
parameters:
- name: date
description: 'Look at subscriptions starting on this date'
example: 2023-10-31T00:00:00Z
schema:
format: date-time
type: string
in: query
required: true
- name: productId
description: 'This value should correspond to a product variant tag as defined in swatch product configuration'
example: rhel-for-x86-els-payg
schema:
type: string
in: query
required: true
- name: orgId
description: 'Look at subscriptions for this orgId'
example: org123
schema:
type: string
in: query
required: true
- name: sla
description: 'Look at subscriptions matching this SLA'
example: Premium
schema:
type: string
in: query
- name: usage
description: 'Look at subscriptions matching this usage'
example: Production
schema:
type: string
in: query
- name: azureAccountId
description: 'Look at subscriptions matching this billing_account_id'
schema:
type: string
default: _ANY
in: query
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/AzureUsageContext'
description: Found Azure usage context matching the criteria.
'400':
$ref: "../../../spec/error-responses.yaml#/$defs/BadRequest"
'403':
$ref: "../../../spec/error-responses.yaml#/$defs/Forbidden"
'404':
$ref: "../../../spec/error-responses.yaml#/$defs/ResourceNotFound"
'500':
$ref: "../../../spec/error-responses.yaml#/$defs/InternalServerError"
/v1/internal/tags/{tag}/metrics:
description: "Mapping sku to product tags."
parameters:
- name: tag
in: path
required: true
schema:
type: string
get:
summary: "Lookup metric information by tag"
operationId: getMetrics
responses:
'200':
description: Matching metrics
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Metric'
example:
data:
- metric_id: foo
aws_dimension: foo1
billing_factor: 0.25
- metric_id: bar
aws_dimension: bar1
billing_factor: 1.0
'400':
$ref: "../../../spec/error-responses.yaml#/$defs/BadRequest"
'403':
$ref: "../../../spec/error-responses.yaml#/$defs/Forbidden"
'404':
$ref: "../../../spec/error-responses.yaml#/$defs/ResourceNotFound"
'500':
$ref: "../../../spec/error-responses.yaml#/$defs/InternalServerError"
tags:
- internalSubscriptions
/v1/internal/subscriptions/terminate/{subscription_id}:
description: "Terminate a subscription with a given end date."
parameters:
- name: subscription_id
in: path
required: true
schema:
type: string
description: "Subscription ID to terminate."
post:
operationId: terminateSubscription
summary: "Terminate a subscription."
parameters:
- name: timestamp
description: "The termination timestamp to use."
in: query
required: true
schema:
type: string
format: date-time
responses:
'200':
description: "The termination request was successful"
content:
application/vnd.api+json:
schema:
$ref: "#/components/schemas/TerminationRequest"
'400':
$ref: "../../../spec/error-responses.yaml#/$defs/BadRequest"
'403':
$ref: "../../../spec/error-responses.yaml#/$defs/Forbidden"
'404':
$ref: "../../../spec/error-responses.yaml#/$defs/ResourceNotFound"
'500':
$ref: "../../../spec/error-responses.yaml#/$defs/InternalServerError"
tags:
- internalSubscriptions
/internal-subscription-sync-openapi.json:
$ref: "../../../spec/openapi-paths.yaml#/openapi-json"
/internal-subscription-sync-openapi.yaml:
$ref: "../../../spec/openapi-paths.yaml#/openapi-yaml"
components:
schemas:
RhmUsageContext:
description: Encapsulates all data needed to map tally snapshot usage to AWS UsageRecords.
properties:
rhSubscriptionId:
type: string
AwsUsageContext:
description: Encapsulates all data needed to map tally snapshot usage to AWS UsageRecords.
properties:
rhSubscriptionId:
type: string
customerId:
type: string
productCode:
type: string
awsSellerAccountId:
type: string
subscriptionStartDate:
type: string
format: date-time
AzureUsageContext:
description: Encapsulates all data needed to map tally snapshot usage to Azure UsageRecords.
properties:
azureResourceId:
description: IT Partner gateway will pass it under "cloudIdentifiers". UMB messages under purchase.resourceId
type: string
example: 10d3a42f-cad5-4b55-8cd7-1569edf07a4d
azureTenantId:
description: IT Partner gateway will pass it under "cloudIdentifiers". UMB messages under partnerIdentities.azureTenantId
type: string
example: 18087458-3905-4dea-80a4-758d69b7d2c5
offerId:
description: IT Partner gateway will pass it under "cloudIdentifiers". UMB messages under purchase.vendorProductCode
type: string
example: azureProductCode
planId:
description: IT Partner gateway will pass it under "cloudIdentifiers". UMB messages under contracts.planId
type: string
example: rh-rhel-sub-1yr
Metric:
properties:
uom:
type: string
metric_id:
type: string
aws_dimension:
type: string
billing_factor:
type: number
format: double
TerminationRequest:
properties:
data:
type: object
properties:
termination_message:
type: string
RpcResponse:
properties:
result:
description: Result of the operation. Empty when succeeded.
securitySchemes:
PskIdentity:
type: apiKey
in: header
name: x-rh-swatch-psk
description: |
Psk header containing Pre Shared Key. Contains an
UUID string:
```
c9a98753-2092-4617-b226-5c2653330b3d
```
security:
- PskIdentity: []