Skip to content

Commit 038e917

Browse files
authored
Confidential Ledger Preview spec (#13613)
* add data-plane work * receipt has state * fix model errors * add custom words * run prettier * update comments * x-ms-pageable * pr comments * small fix * suggested renames * typo * change output folder * change identity service client title * fix urls * fix typo * prefix operation ids to for better codegen
1 parent 57b326d commit 038e917

24 files changed

+1501
-0
lines changed

custom-words.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1081,6 +1081,7 @@ MCAS
10811081
MDATP
10821082
mebibytes
10831083
mediaservices
1084+
Merkle
10841085
Meru
10851086
Mesos
10861087
messagingplan
@@ -1253,6 +1254,7 @@ octokit
12531254
Odata
12541255
odatatype
12551256
ODBC
1257+
oeverify
12561258
offboard
12571259
offboards
12581260
officedocument
Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
{
2+
"swagger": "2.0",
3+
"info": {
4+
"version": "0.1-preview",
5+
"title": "ConfidentialLedgerClient",
6+
"description": "The ConfidentialLedgerClient writes and retrieves ledger entries against the Confidential Ledger service."
7+
},
8+
"paths": {},
9+
"definitions": {
10+
"ConfidentialLedgerError": {
11+
"description": "An error response from Confidential Ledger.",
12+
"properties": {
13+
"error": {
14+
"readOnly": true,
15+
"$ref": "#/definitions/ConfidentialLedgerErrorBody"
16+
}
17+
},
18+
"type": "object"
19+
},
20+
"ConfidentialLedgerErrorBody": {
21+
"description": "An error response from Confidential Ledger.",
22+
"properties": {
23+
"code": {
24+
"type": "string",
25+
"readOnly": true,
26+
"description": "The error code."
27+
},
28+
"message": {
29+
"type": "string",
30+
"readOnly": true,
31+
"description": "The error message."
32+
},
33+
"innererror": {
34+
"x-ms-client-name": "innerError",
35+
"readOnly": true,
36+
"$ref": "#/definitions/ConfidentialLedgerErrorBody"
37+
}
38+
},
39+
"x-nullable": true,
40+
"type": "object"
41+
},
42+
"ConfidentialLedgerInnerError": {
43+
"description": "An inner error response from Confidential Ledger.",
44+
"properties": {
45+
"code": {
46+
"type": "string",
47+
"readOnly": true,
48+
"description": "The error code."
49+
},
50+
"innererror": {
51+
"x-ms-client-name": "innerError",
52+
"readOnly": true,
53+
"$ref": "#/definitions/ConfidentialLedgerErrorBody"
54+
}
55+
},
56+
"x-nullable": true,
57+
"type": "object"
58+
}
59+
},
60+
"parameters": {
61+
"ApiVersionParameter": {
62+
"name": "api-version",
63+
"in": "query",
64+
"required": true,
65+
"type": "string",
66+
"description": "The API version to be used with the HTTP request."
67+
}
68+
}
69+
}

0 commit comments

Comments
 (0)