blob: fca294697a300da61d00efbbe859c77496d87e19 [file] [log] [blame]
Harald Welteb61d0bc2011-03-25 23:56:56 +01001-- $Id: MAP-OperationAndMaintenanceOperations.asn 34814 2010-11-08 23:15:16Z etxrab $
2-- 3GPP TS 29.002 V9.3.0 (2010-09)
3--17.6.2 Operation and Maintenance Operations
Harald Welte7a23af32011-02-07 21:24:26 +01004MAP-OperationAndMaintenanceOperations {
5 itu-t identified-organization (4) etsi (0) mobileDomain (0)
6 gsm-Network (1) modules (3) map-OperationAndMaintenanceOperations (6)
Harald Welteb61d0bc2011-03-25 23:56:56 +01007 version12 (12)}
Harald Welte7a23af32011-02-07 21:24:26 +01008
9DEFINITIONS
10
11::=
12
13BEGIN
14
15EXPORTS
16 activateTraceMode,
17 deactivateTraceMode,
18 sendIMSI
19;
20
21IMPORTS
22 OPERATION
23FROM Remote-Operations-Information-Objects {
24joint-iso-itu-t remote-operations(4)
25 informationObjects(5) version1(0)}
26
27 systemFailure,
28 dataMissing,
29 unexpectedDataValue,
30 facilityNotSupported,
31 unknownSubscriber,
32 unidentifiedSubscriber,
33 tracingBufferFull
34FROM MAP-Errors {
35 itu-t identified-organization (4) etsi (0) mobileDomain (0)
Harald Welteb61d0bc2011-03-25 23:56:56 +010036 gsm-Network (1) modules (3) map-Errors (10) version12 (12)}
Harald Welte7a23af32011-02-07 21:24:26 +010037
38 ActivateTraceModeArg,
39 ActivateTraceModeRes,
40 DeactivateTraceModeArg,
41 DeactivateTraceModeRes
42FROM MAP-OM-DataTypes {
43 itu-t identified-organization (4) etsi (0) mobileDomain (0)
Harald Welteb61d0bc2011-03-25 23:56:56 +010044 gsm-Network (1) modules (3) map-OM-DataTypes (12) version12 (12)}
Harald Welte7a23af32011-02-07 21:24:26 +010045
46 ISDN-AddressString,
47 IMSI
48FROM MAP-CommonDataTypes {
49 itu-t identified-organization (4) etsi (0) mobileDomain (0)
Harald Welteb61d0bc2011-03-25 23:56:56 +010050 gsm-Network (1) modules (3) map-CommonDataTypes (18) version12 (12)}
Harald Welte7a23af32011-02-07 21:24:26 +010051;
52
53
54activateTraceMode OPERATION ::= { --Timer m
55 ARGUMENT
56 ActivateTraceModeArg
57 RESULT
58 ActivateTraceModeRes
59 -- optional
60 ERRORS {
61 systemFailure |
62 dataMissing |
63 unexpectedDataValue |
64 facilityNotSupported |
65 unidentifiedSubscriber |
66 tracingBufferFull}
67 CODE local:50 }
68
69deactivateTraceMode OPERATION ::= { --Timer m
70 ARGUMENT
71 DeactivateTraceModeArg
72 RESULT
73 DeactivateTraceModeRes
74 -- optional
75 ERRORS {
76 systemFailure |
77 dataMissing |
78 unexpectedDataValue |
79 facilityNotSupported |
80 unidentifiedSubscriber}
81 CODE local:51 }
82
83sendIMSI OPERATION ::= { --Timer m
84 ARGUMENT
85 ISDN-AddressString
86 RESULT
87 IMSI
88 ERRORS {
89 dataMissing |
90 unexpectedDataValue |
91 unknownSubscriber}
92 CODE local:58 }
93
94END