-
Notifications
You must be signed in to change notification settings - Fork 255
/
TS28623_FileManagementNrm.yaml
157 lines (146 loc) · 4.72 KB
/
TS28623_FileManagementNrm.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
openapi: 3.0.1
info:
title: File Management NRM
version: 18.6.0
description: >-
OAS 3.0.1 definition of the File Management NRM fragment
© 2024, 3GPP Organizational Partners (ARIB, ATIS, CCSA, ETSI, TSDSI, TTA, TTC).
All rights reserved.
externalDocs:
description: 3GPP TS 28.623; Generic NRM, File Management NRM
url: http://www.3gpp.org/ftp/Specs/archive/28_series/28.623/
paths: {}
components:
schemas:
#-------- Definition of types-----------------------------------------------------
FileDownloadJobProcessMonitor:
description: >-
This data type is the "ProcessMonitor" data type with specialisations
for usage in the "FileDownloadJob".
type: object
properties:
jobId:
type: string
status:
type: string
enum:
- NOT_STARTED
- RUNNING
- FINSHED
- FAILED
- CANCELLING
- CANCELLED
progressPercentage:
type: integer
minimum: 0
maximum: 100
progressStateInfo:
type: string
resultStateInfo:
oneOf:
- type: string
enum:
- NULL
- UNKNOWN
- NO_STORAGE
- LOW_MEMROY
- NO_CONNECTION_TO_REMOTE_SERVER
- FILE_NOT_AVAILABLE
- DNS_CANNOT_BE_RESOLVED
- TIMER_EXPIRED
- OTHER
- type: string
startTime:
$ref: 'TS28623_ComDefs.yaml#/components/schemas/DateTime'
endTime:
$ref: 'TS28623_ComDefs.yaml#/components/schemas/DateTime'
timer:
type: integer
#-------- Definition of concrete IOCs --------------------------------------------
FileDownloadJob-Single:
allOf:
- $ref: 'TS28623_GenericNrm.yaml#/components/schemas/Top'
- type: object
properties:
attributes:
type: object
properties:
fileLocation:
type: string
notificationRecipientAddress:
$ref: 'TS28623_ComDefs.yaml#/components/schemas/Uri'
cancelJob:
type: string
enum:
- TRUE
- FALSE
jobMonitor:
$ref: '#/components/schemas/FileDownloadJobProcessMonitor'
Files-Single:
allOf:
- $ref: 'TS28623_GenericNrm.yaml#/components/schemas/Top'
- type: object
properties:
attributes:
type: object
properties:
numberOfFiles:
type: integer
jobRef:
$ref: 'TS28623_ComDefs.yaml#/components/schemas/Dn'
jobId:
type: string
File:
$ref: '#/components/schemas/File-Multiple'
File-Single:
allOf:
- $ref: 'TS28623_GenericNrm.yaml#/components/schemas/Top'
- type: object
properties:
attributes:
type: object
properties:
fileLocation:
$ref: 'TS28623_ComDefs.yaml#/components/schemas/Uri'
fileCompression:
type: string
fileSize:
type: integer
fileDataType:
type: string
enum:
- PERFORMANCE
- TRACE
- ANALYTICS
- PROPRIETARY
fileFormat:
type: string
fileReadyTime:
$ref: 'TS28623_ComDefs.yaml#/components/schemas/DateTime'
fileExpirationTime:
$ref: 'TS28623_ComDefs.yaml#/components/schemas/DateTime'
fileContent:
type: string
jobRef:
$ref: 'TS28623_ComDefs.yaml#/components/schemas/Dn'
jobId:
type: string
#-------- Definition of YAML arrays for name-contained IOCs ----------------------
FileDownloadJob-Multiple:
type: array
items:
$ref: '#/components/schemas/FileDownloadJob-Single'
Files-Multiple:
type: array
items:
$ref: '#/components/schemas/Files-Single'
File-Multiple:
type: array
items:
$ref: '#/components/schemas/File-Single'
#-------- Definitions in TS 28.623 for TS 28.532 ---------------------------------
resources-fileMgmtNrm:
oneOf:
- $ref: '#/components/schemas/FileDownloadJob-Single'
- $ref: '#/components/schemas/Files-Single'
- $ref: '#/components/schemas/File-Single'