-
Notifications
You must be signed in to change notification settings - Fork 46
/
openapi.yaml
1861 lines (1845 loc) · 60 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
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
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
openapi: 3.0.2
info:
title: SWATCH Contract Service
version: 1.0.0
description: CRUD Operations for contract information
termsOfService: http://swagger.io/terms/
contact:
name: SWATCH Dev
url: https://github.com/RedHatInsights/rhsm-subscriptions
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0.html
paths:
/api/swatch-contracts/internal/contracts/{uuid}:
delete:
parameters:
- examples:
uuid:
value: 8ece4096-bef6-4ad6-b0db-20c8e6b2a78c
name: uuid
description: UUID generated from a previously saved contract
schema:
type: string
in: path
required: true
responses:
"200":
description: Success
default:
$ref: '#/components/responses/ErrorResponse'
operationId: deleteContractByUUID
description: "This will execute a hard delete of a contract and its associated\
\ metrics from the database. This is NOT the same as setting a contract to\
\ expired. To expire a certificate, the updateContract endpoint should be\
\ used with an end_date."
security:
- test: []
/api/swatch-contracts/internal/contracts:
get:
parameters:
- examples:
org_id:
value: org123
name: org_id
description: ""
schema:
type: string
in: query
required: true
- examples:
product_id:
value: BASILISK
name: product_tag
description: ""
schema:
type: string
in: query
- examples:
vendor_product_code:
value: 6n58d3s3qpvk22dgew2gal7w3
name: vendor_product_code
description: ""
schema:
type: string
in: query
- examples:
billing_provider:
value: aws
name: billing_provider
description: ""
schema:
type: string
in: query
- examples:
billing_account_id:
value: "123456789101"
name: billing_account_id
description: ""
schema:
type: string
in: query
- name: timestamp
description: Return only contract records active at this timestamp
schema:
type: string
format: date-time
in: query
responses:
"200":
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Contract'
description: success
default:
$ref: '#/components/responses/ErrorResponse'
security:
- support: []
- test: []
- service: []
operationId: getContract
post:
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/ContractRequest'
required: true
responses:
"200":
content:
application/json:
schema:
$ref: '#/components/schemas/ContractResponse'
description: success
default:
$ref: '#/components/responses/ErrorResponse'
security:
- test: []
operationId: createContract
/api/swatch-contracts/internal/rpc/sync/contracts/{org_id}:
description: "Trigger a contract sync for a given Org ID"
post:
parameters:
- name: org_id
description: ""
schema:
type: string
in: path
required: true
- name: is_pre_cleanup
description: "When present, then delete existing contracts based on criteria"
schema:
type: boolean
default: false
in: query
- name: delete_contracts_and_subs
description: "When present, then delete existing contract and subscriptions before syncing"
schema:
type: boolean
default: false
in: query
summary: "Sync contracts for given org_id."
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/StatusResponse'
examples:
status response:
value:
status: 'Success'
message: "Contracts Synced for given org_id"
description: success
security:
- support: []
- test: []
operationId: syncContractsByOrg
/api/swatch-contracts/internal/rpc/sync/contracts/{org_id}/subscriptions:
description: "Trigger a subscription sync for all contracts of a given Org ID"
post:
parameters:
- name: org_id
description: ""
schema:
type: string
in: path
required: true
summary: "Sync subscriptions for all contracts for given org_id."
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/StatusResponse'
examples:
status response:
value:
status: 'Success'
message: "Subscriptions Synced for given org_id"
description: success
security:
- support: [ ]
- test: [ ]
operationId: syncSubscriptionsForContractsByOrg
/api/swatch-contracts/internal/rpc/reset/contracts/{org_id}:
description: "Clear all contracts for a given org ID. "
delete:
parameters:
- name: org_id
description: ""
schema:
type: string
in: path
required: true
summary: "Clear all contracts for given org_id."
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/StatusResponse'
examples:
status response:
value:
status: 'Success'
message: "Contracts Cleared for given org_id"
description: success
security:
- support: [ ]
- test: [ ]
- service: [ ]
operationId: deleteContractsByOrg
/internal/rpc/syncAllContracts:
description: "Trigger a sync for all contracts"
post:
summary: "Sync all contracts."
operationId: syncAllContracts
responses:
'202':
description: "The request for syncing all contracts is successfully running."
content:
application/vnd.api+json:
schema:
$ref: "#/components/schemas/StatusResponse"
examples:
status response:
value:
status: 'Success'
message: "All contracts Synced"
security:
- support: []
- test: []
'/api/swatch-contracts/internal/rpc/partner/contracts':
post:
operationId: createPartnerEntitlementContract
requestBody:
description: Create a contract record from partner entitlement.
content:
application/json:
schema:
$ref: '#/components/schemas/PartnerEntitlementContract'
examples:
contract info:
value:
action: contract-updated
redHatSubscriptionNumber: '12400374'
currentDimensions:
-
dimensionName: cpu-hours
dimensionValue: '5'
expirationDate: '2018-02-10T09:30Z'
-
dimensionName: instance-hours
dimensionValue: '10'
expirationDate: '2018-02-10T09:30Z'
cloudIdentifiers:
awsCustomerId: 'HSwCpt6sqkC'
awsCustomerAccountId: '795061427196'
productCode: '1234567890abcdefghijklmno'
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/StatusResponse'
examples:
status response:
value:
status: 'Success'
message: "Contract created"
description: Success
default:
$ref: '#/components/responses/ErrorResponse'
security:
- test: []
/api/swatch-contracts/internal/subscriptions:
description: Save subscriptions manually. Supported only in dev-mode.
post:
operationId: saveSubscriptions
parameters:
- name: reconcileCapacity
in: query
schema:
type: boolean
requestBody:
content:
application/json:
schema:
type: string
examples:
subscription:
"value": [
{
"id": "000149",
"subscriptionNumber": "8838431",
"subscriptionProducts": [
{
"sku": "MCT4121HR"
}
],
"webCustomerId": "14541308",
"quantity": 1,
"oracleAccountNumber": "",
"effectiveStartDate": 1697847432103,
"effectiveEndDate": 1730247432103,
"externalReferences": {
"awsMarketplace": {
"subscriptionID": "100",
"customerID": 102,
"productCode": "testProductCode",
"sellerAccount": "1234567",
"customerAccountID": 102
}
}
}
]
responses:
'200':
description: Save a list of subscriptions
content:
application/json:
schema:
$ref: "#/components/schemas/SubscriptionResponse"
examples:
success:
value: {
"detail": "Success"
}
default:
$ref: '#/components/responses/ErrorResponse'
security:
- support: [ ]
- test: [ ]
- service: [ ]
/api/swatch-contracts/internal/subscriptions/umb:
description: Save UMB subscription manually.
post:
operationId: syncUmbSubscription
requestBody:
content:
application/xml:
schema:
type: string
example:
'<CanonicalMessage>
<Payload>
<Sync>
<Subscription>
<Identifiers>
<PlaceholderElementThatShouldBeIgnored>FooBar</PlaceholderElementThatShouldBeIgnored>
<Reference system="EBS" entity-name="Account" qualifier="number">account123</Reference>
<Reference system="WEB" entity-name="Customer" qualifier="id">org123_ICUST</Reference>
<Identifier system="SUBSCRIPTION" entity-name="Subscription" qualifier="number">1234</Identifier>
</Identifiers>
<Status>
<State>Active</State>
<StartDate>2020-01-01T12:34:56.789</StartDate>
</Status>
<Quantity>1</Quantity>
<effectiveStartDate>2020-01-01T00:00:00.000</effectiveStartDate>
<effectiveEndDate>2030-01-01T00:00:00.000</effectiveEndDate>
<Product>
<Sku>MW01882</Sku>
<CreatedBy>OSUBPRODTEST3EAC72C765804E2B8D34484E7FF8D1C8</CreatedBy>
<CreatedDate>2023-04-24T14:11:16.809</CreatedDate>
<Identifiers>
<MasterSystem>EBS</MasterSystem>
<Identifier entity-name="Product"
qualifier="number" system="SUBSCRIPTION">37188549
</Identifier>
</Identifiers>
<Status>
<State>Active</State>
<StartDate>2020-01-01T12:34:56.789</StartDate>
</Status>
<Product serviceable="true">
<CreatedBy>OSUBPRODTEST3EAC72C765804E2B8D34484E7FF8D1C8</CreatedBy>
<CreatedDate>2023-04-24T14:11:16.809</CreatedDate>
<LastUpdatedBy>SYSADMIN</LastUpdatedBy>
<LastUpdatedDate>2023-04-24T14:17:02.000</LastUpdatedDate>
<Identifiers>
<MasterSystem>EBS</MasterSystem>
<AuthoringOperatingUnit>
<Number>103</Number>
</AuthoringOperatingUnit>
<Identifier entity-name="Product"
qualifier="number" system="SUBSCRIPTION">37188550
</Identifier>
<Reference entity-name="Contract"
qualifier="number" system="EBS">16612423
</Reference>
<Reference entity-name="Contract"
qualifier="id" system="EBS">25565753
</Reference>
</Identifiers>
<Status>
<State>Active</State>
<StartDate>2023-04-24T00:00:00.000</StartDate>
<EndDate>2026-04-23T00:00:00.000</EndDate>
</Status>
<Status>
<State>Signed</State>
<StartDate>2023-04-24T00:00:00.000</StartDate>
</Status>
<Status primary="true">
<State>Terminated</State>
<StartDate>2023-04-24T14:17:02.000</StartDate>
</Status>
<Sku>SVC2681</Sku>
<InventoryOperatingUnit>
<Number>118</Number>
</InventoryOperatingUnit>
<ContractDescription>Reg Number activation from Hock</ContractDescription>
<ContractHeaderStatus>Terminated</ContractHeaderStatus>
</Product>
</Product>
<PlaceholderElementThatShouldBeIgnored />
</Subscription>
</Sync>
</Payload>
</CanonicalMessage>'
responses:
'200':
description: Save a UMB subscription
content:
application/json:
schema:
$ref: "#/components/schemas/SubscriptionResponse"
examples:
success:
value: {
"detail": "Success"
}
default:
$ref: '#/components/responses/ErrorResponse'
security:
- support: [ ]
- test: [ ]
- service: [ ]
/api/swatch-contracts/internal/rpc/subscriptions/sync:
description: Enqueue all sync-enabled orgs to sync their subscriptions with upstream
put:
summary: Enqueue all sync-enabled orgs to sync their subscriptions with upstream
operationId: syncAllSubscriptions
parameters:
- name: forceSync
in: query
schema:
type: boolean
default: "false"
description: "When true, it will trigger a sync of all subscription even when it was explicitly disabled via configuration."
responses:
'200':
description: The request for syncing all subscriptions is successful.
content:
application/json:
schema:
$ref: "#/components/schemas/RpcResponse"
default:
$ref: '#/components/responses/ErrorResponse'
security:
- support: [ ]
- test: [ ]
- service: [ ]
/api/swatch-contracts/internal/subscriptions/sync/org/{org_id}:
description: "Force sync of subscriptions for given org_id."
parameters:
- name: org_id
in: path
required: true
schema:
type: string
description: "The ID for the organization subscriptions to sync"
put:
summary: "Sync all subscriptions for given org_id."
operationId: forceSyncSubscriptionsForOrg
responses:
'200':
description: The request for syncing a single organization's subscription is processing.
content:
application/json:
schema:
$ref: "#/components/schemas/RpcResponse"
default:
$ref: '#/components/responses/ErrorResponse'
security:
- support: [ ]
- test: [ ]
- service: [ ]
/api/swatch-contracts/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'
default:
$ref: '#/components/responses/ErrorResponse'
security:
- support: [ ]
- test: [ ]
- service: [ ]
/api/swatch-contracts/internal/subscriptions/awsUsageContext:
description: "Get AWS usage context."
parameters:
- name: orgId
in: query
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
- 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'
default:
$ref: '#/components/responses/ErrorResponse'
security:
- support: [ ]
- test: [ ]
- service: [ ]
/api/swatch-contracts/internal/subscriptions/azureUsageContext:
get:
operationId: getAzureMarketplaceContext
summary: Lookup necessary info to submit a usage record to Azure
parameters:
- name: orgId
description: 'Look at subscriptions for this orgId'
example: org123
schema:
type: string
in: query
- 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: 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.
default:
$ref: '#/components/responses/ErrorResponse'
security:
- support: [ ]
- test: [ ]
- service: [ ]
/api/swatch-contracts/internal/offerings/{sku}/product_tags:
description: "Mapping sku to product tags."
parameters:
- name: sku
in: path
required: true
schema:
type: string
get:
summary: "Lookup product tags by sku"
operationId: getSkuProductTags
responses:
'200':
description: "The request to get product tags by sku ."
content:
application/json:
schema:
$ref: '#/components/schemas/OfferingProductTags'
example:
data:
- Rho one
- Rho two
default:
$ref: '#/components/responses/ErrorResponse'
security:
- support: [ ]
- test: [ ]
- service: [ ]
/api/swatch-contracts/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/MetricResponse'
example:
data:
- metric_id: foo
aws_dimension: foo1
billing_factor: 0.25
- metric_id: bar
aws_dimension: bar1
billing_factor: 1.0
default:
$ref: '#/components/responses/ErrorResponse'
security:
- support: [ ]
- test: [ ]
- service: [ ]
/api/swatch-contracts/internal/rpc/offerings/sync/{sku}:
description: Sync an offering from the upstream source.
parameters:
- name: sku
in: path
required: true
schema:
type: string
put:
summary: Sync an offering from the upstream source.
operationId: syncOffering
responses:
'200':
description: Sync for offering sku
content:
application/json:
schema:
$ref: "#/components/schemas/OfferingResponse"
default:
$ref: '#/components/responses/ErrorResponse'
security:
- support: [ ]
- test: [ ]
- service: [ ]
/api/swatch-contracts/internal/rpc/offerings/sync:
description: Syncs all offerings not listed in deny list from the upstream source.
put:
summary: Syncs all offerings not listed in deny list from the upstream source.
operationId: syncAllOfferings
responses:
'200':
description: Enqueued offerings to be synced.
content:
application/json:
schema:
$ref: "#/components/schemas/OfferingResponse"
default:
$ref: '#/components/responses/ErrorResponse'
security:
- support: [ ]
- test: [ ]
- service: [ ]
/api/swatch-contracts/internal/rpc/offerings/reconcile/{sku}:
description: Reconcile capacity for an offering from the upstream source.
parameters:
- name: sku
in: path
required: true
schema:
type: string
put:
summary: Reconcile capacity for an offering from the upstream source.
operationId: forceReconcileOffering
responses:
'200':
description: Capacity Reconciliation for offering sku successful
content:
application/json:
schema:
$ref: "#/components/schemas/OfferingResponse"
default:
$ref: '#/components/responses/ErrorResponse'
security:
- support: [ ]
- test: [ ]
- service: [ ]
/api/swatch-contracts/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"
default:
$ref: '#/components/responses/ErrorResponse'
security:
- support: [ ]
- test: [ ]
- service: [ ]
/api/rhsm-subscriptions/v1/subscriptions/products/{product_id}:
description: "Operations for total capacity by SKU for all of the org's active subscriptions for given Swatch product ID."
parameters:
- name: product_id
in: path
required: true
schema:
$ref: "#/components/schemas/ProductId"
description: "The ID for the product we wish to query"
- name: offset
in: query
schema:
type: integer
minimum: 0
description: "The number of items to skip before starting to collect the result set"
- name: limit
in: query
schema:
type: integer
minimum: 1
description: "The numbers of items to return"
get:
summary: "Returns the total capacity by SKU for all of the org's active subscriptions for given Swatch product ID."
operationId: getSkuCapacityReportV1
deprecated: true
parameters:
- name: category
in: query
schema:
$ref: '#/components/schemas/ReportCategory'
description: 'The category to fetch data for'
- name: sla
in: query
schema:
$ref: '#/components/schemas/ServiceLevelType'
description: "Include only capacity for the specified service level."
- name: usage
in: query
schema:
$ref: '#/components/schemas/UsageType'
description: "Include only capacity for the specified usage level."
- name: billing_provider
in: query
schema:
$ref: '#/components/schemas/BillingProviderType'
description: "Include only report data matching the specified billing provider"
- name: billing_account_id
in: query
schema:
$ref: '#/components/schemas/BillingAccountId'
description: "Include only report data matching the specified billing account"
- name: beginning
in: query
schema:
type: string
format: date-time
description: "Defines the start of the report period. Dates should be provided in ISO 8601
format but the only accepted offset is UTC. E.g. 2017-07-21T17:32:28Z"
- name: ending
in: query
schema:
type: string
format: date-time
description: "Defines the end of the report period. Defaults to the current time. Dates should
be provided in UTC."
- name: metric_id
in: query
schema:
type: string
description: "Filter subscriptions to those that contribute to a specific unit of measure"
- name: sort
in: query
schema:
$ref: "#/components/schemas/SkuCapacityReportSort_V1"
description: "What property to sort by (optional)"
- name: dir
in: query
schema:
$ref: "#/components/schemas/SortDirection"
description: "Which direction to sort by (default: asc)"
responses:
'200':
description: "The request for the account's subscription capacities was successful."
content:
application/vnd.api+json:
schema:
$ref: "#/components/schemas/SkuCapacityReport_V1"
example:
data:
- sku: RH00011
product_name: "Red Hat Enterprise Linux Server, Premium (Physical and 4 Virtual Nodes)(L3 Only)"
service_level: Premium
usage: Production
subscriptions:
- id: "1234567890"
number: "1234567891"
- id: "1234567892"
number: "1234567893"
- id: "1234567894"
number: "1234567895"
next_event_date: "2020-04-01T00:00:00Z"
next_event_type: Subscription Begin
quantity: 3
capacity: 3
hypervisor_capacity: 3
total_capacity: 6
metricId: Sockets
- sku: RH00010
product_name: "Red Hat Enterprise Linux Server"
service_level: Self-Support
usage: Production
subscriptions:
- id: "1234567896"
number: "1234567897"
- id: "1234567898"
number: "1234567899"
- id: "1234567900"
number: "1234567901"
next_event_date: "2020-04-02T00:00:00Z"
next_event_type: Subscription Begin
quantity: 3
capacity: 3
hypervisor_capacity: 3
total_capacity": 6
metricId: Sockets
- sku: RH00009
product_name: "Red Hat Enterprise Linux Server, Premium"
service_level: Premium
usage: Production
subscriptions:
- id: "1234567902"
number: "1234567903"
- id: "1234567904"
number: "1234567905"
- id: "1234567906"
number: "1234567907"
next_event_date: "2020-04-01T00:00:00Z"
next_event_type: Subscription End
quantity: 3
capacity: 6
hypervisor_capacity: 6
total_capacity: 12
metricId: Cores
meta:
count: 3
'400':
$ref: "#/components/responses/BadRequest"
'403':
$ref: "#/components/responses/Forbidden"
'404':
$ref: "#/components/responses/ResourceNotFound"
'500':
$ref: "#/components/responses/InternalServerError"
tags:
- subscriptions_v1
security:
- customer: [ ]
/api/rhsm-subscriptions/v2/subscriptions/products/{product_id}:
description: "Operations for total capacity by SKU for all of the org's active subscriptions for given Swatch product ID."
parameters:
- name: product_id
in: path
required: true
schema:
$ref: "#/components/schemas/ProductId"
description: "The ID for the product we wish to query"
- name: offset
in: query
schema:
type: integer
minimum: 0
description: "The number of items to skip before starting to collect the result set"
- name: limit
in: query
schema:
type: integer
minimum: 1
description: "The numbers of items to return"
get:
summary: "Returns the total capacity by SKU for all of the org's active subscriptions for given Swatch product ID."
operationId: getSkuCapacityReportV2
deprecated: true
parameters:
- name: category
in: query
schema:
$ref: '#/components/schemas/ReportCategory'
description: 'The category to fetch data for'
- name: sla
in: query
schema:
$ref: '#/components/schemas/ServiceLevelType'
description: "Include only capacity for the specified service level."