You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 6, 2019. It is now read-only.
Copy file name to clipboardExpand all lines: src/test/resources/raml/export-client.raml
+32-11Lines changed: 32 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ schemas:
16
16
required: true
17
17
repeat: false
18
18
delete:
19
-
description: Delete a client export registration by database id. Return NotFoundException (HTTP 404) if the existing export registration cannot be found by id. Return ServcieException (HTTP 503) for unknown or unanticipated issues.
19
+
description: Delete a client export registration by database id. Return NotFoundException (HTTP 404) if the existing export registration cannot be found by id. Return ServiceException (HTTP 503) for unknown or unanticipated issues.
20
20
displayName: delete an ExportRegistration by database generated id
21
21
responses:
22
22
"200":
@@ -36,7 +36,7 @@ schemas:
36
36
required: true
37
37
repeat: false
38
38
delete:
39
-
description: Delete a client export registration by name. Return NotFoundException (HTTP 404) if the existing export registration cannot be found by name. Return ServcieException (HTTP 503) for unknown or unanticipated issues.
39
+
description: Delete a client export registration by name. Return NotFoundException (HTTP 404) if the existing export registration cannot be found by name. Return ServiceException (HTTP 503) for unknown or unanticipated issues.
40
40
displayName: delete an ExportRegistration by unique name
41
41
responses:
42
42
"200":
@@ -46,15 +46,15 @@ schemas:
46
46
"503":
47
47
description: or unknown or unanticipated issues
48
48
get:
49
-
description: Fetch a client export registration by unique name. Response will be null if no export registration matches on name. Return ServcieException (HTTP 503) for unknown or unanticipated issues.
49
+
description: Fetch a client export registration by unique name. Response will be null if no export registration matches on name. Return ServiceException (HTTP 503) for unknown or unanticipated issues.
50
50
displayName: get an ExportRegistration by unique name
51
51
responses:
52
52
"200":
53
53
description: the export registration matching the identifier provided
description: Fetch a client export registration by id. Response will be null if no export registration matches on id. Return ServcieException (HTTP 503) for unknown or unanticipated issues.
71
+
description: Fetch a client export registration by id. Response will be null if no export registration matches on id. Return ServiceException (HTTP 503) for unknown or unanticipated issues.
72
72
displayName: get an ExportRegistration by database id
73
73
responses:
74
74
"200":
75
75
description: the export registration matching the identifier provided
description: Add a new client export registration. Name must be unique across the database. Return ServcieException (HTTP 503) for unknown or unanticipated issues.
86
+
description: Add a new client export registration. Name must be unique across the database. Return ServiceException (HTTP 503) for unknown or unanticipated issues.
description: the database generated id for the new export registration.
95
95
"503":
96
96
description: for unknown or unanticipated issues.
97
97
put:
98
-
description: Update a client export registration. Name & id are not updated as they are identifiers. Return NotFoundException (HTTP 404) if the existing export registration cannot be found by id or name. Return ServcieException (HTTP 503) for unknown or unanticipated issues.
98
+
description: Update a client export registration. Name & id are not updated as they are identifiers. Return NotFoundException (HTTP 404) if the existing export registration cannot be found by id or name. Return ServiceException (HTTP 503) for unknown or unanticipated issues.
99
99
displayName: update an ExportRegistration
100
100
body:
101
101
application/json:
@@ -109,17 +109,38 @@ schemas:
109
109
"503":
110
110
description: for unknown or unanticipated issues
111
111
get:
112
-
description: Fetch all client export registrations. Return ServcieException (HTTP 503) for unknown or unanticipated issues. No limits are exercised on this query at this time. May need to add this in the future if the number of clients is huge.
112
+
description: Fetch all client export registrations. Return ServiceException (HTTP 503) for unknown or unanticipated issues. No limits are exercised on this query at this time. May need to add this in the future if the number of clients is huge.
113
113
displayName: get all ExportRegistrations
114
114
responses:
115
115
"200":
116
116
description: a list of all client export registrations
description: Fetch all supported values for the specified Export Client registration property type. Types are algorithms, compressions, formats, and destinations. Return ServiceException (HTTP 503) for unknown type specifications.
135
+
displayName: get all supported values for the specified type
136
+
responses:
137
+
"200":
138
+
description: a list of all supported values for the specified client export registration property type
139
+
body:
140
+
application/json:
141
+
example: '["NONE","GZIP","ZIP"]'
142
+
"503":
143
+
description: for unknown types or unanticipated issues
0 commit comments