forked from jdegre/5GC_APIs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TS26512_M1_ConsumptionReportingProvisioning.yaml
117 lines (117 loc) · 4.54 KB
/
TS26512_M1_ConsumptionReportingProvisioning.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
openapi: 3.0.0
info:
title: M1_ConsumptionReportingProvisioning
version: 2.0.0
description: |
5GMS AF M1 Consumption Reporting Provisioning API
© 2022, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.
tags:
- name: M1_ConsumptionReportingProvisioning
description: '5G Media Streaming: Provisioning (M1) APIs: Consumption Reporting Provisioning'
externalDocs:
description: 'TS 26.512 V17.2.0; 5G Media Streaming (5GMS); Protocols'
url: 'https://www.3gpp.org/ftp/Specs/archive/26_series/26.512/'
servers:
- url: '{apiRoot}/3gpp-m1/v2'
variables:
apiRoot:
default: https://example.com
description: See 3GPP TS 29.512 clause 6.1.
paths:
/provisioning-sessions/{provisioningSessionId}/consumption-reporting-configuration:
parameters:
- name: provisioningSessionId
in: path
required: true
schema:
$ref: 'TS26512_CommonData.yaml#/components/schemas/ResourceId'
description: 'The resource identifier of an existing Provisioning Session.'
post:
operationId: activateConsumptionReporting
summary: 'Activate the consumption reporting procedure for the specified Provisioning Session by providing the Consumption Reporting Configuration'
requestBody:
description: 'A JSON representation of a Consumption Reporting Configuration'
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ConsumptionReportingConfiguration'
responses:
'201':
description: 'Consumption Reporting Configuration Created'
headers:
Location:
description: 'URL of the newly created Consumption Reporting Configuration (same as request URL).'
required: true
schema:
$ref: 'TS26512_CommonData.yaml#/components/schemas/Url'
get:
operationId: retrieveConsumptionReportingConfiguration
summary: 'Retrieve the Consumption Reporting Configuration of the specified Provisioning Session'
responses:
'200':
description: 'Success'
content:
application/json:
schema:
$ref: '#/components/schemas/ConsumptionReportingConfiguration'
put:
operationId: updateConsumptionReportingConfiguration
summary: 'Update the Consumption Reporting Configuration for the specified Provisioning Session'
requestBody:
description: 'A JSON representation of a Consumption Reporting Configuration'
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ConsumptionReportingConfiguration'
responses:
'204':
description: 'Updated Consumption Reporting Configuration'
'404':
description: 'Not Found'
patch:
operationId: patchConsumptionReportingConfiguration
summary: 'Patch the Consumption Reporting Configuration for the specified Provisioning Session'
requestBody:
description: 'A JSON representation of a Consumption Reporting Configuration'
required: true
content:
application/merge-patch+json:
schema:
$ref: '#/components/schemas/ConsumptionReportingConfiguration'
application/json-patch+json:
schema:
$ref: '#/components/schemas/ConsumptionReportingConfiguration'
responses:
'200':
description: 'Patched Consumption Reporting Configuration'
content:
application/json:
schema:
$ref: '#/components/schemas/ConsumptionReportingConfiguration'
'404':
description: 'Not Found'
delete:
operationId: destroyConsumptionReportingConfiguration
summary: 'Destroy the current Consumption Reporting Configuration of the specified Provisioning Session'
responses:
'204':
description: 'Destroyed Consumption Reporting Configuration'
'404':
description: 'Not Found'
components:
schemas:
ConsumptionReportingConfiguration:
type: object
description: "A representation of a Consumption Reporting Configuration resource."
properties:
reportingInterval:
$ref: 'TS29571_CommonData.yaml#/components/schemas/DurationSec'
samplePercentage:
$ref: 'TS26512_CommonData.yaml#/components/schemas/Percentage'
locationReporting:
type: boolean
accessReporting:
type: boolean