Skip to content

Commit 0cda3c5

Browse files
adding stable version and preview 0.1 version (#19049)
* adding stable folder * file path fix * adding 0.1 preview version * adding 0.1 preview version * adding 0.1 preview version * adding 0.1 preview version * java readme added * adding stable data plane * adding stable data plane * adding stable data plane * removing ruby * readme updates * model validation fix * readme fix pt 3 * update folder path * update folder path * autogen test * it didn't work * updated python readme * musa pt 1 * musa edits pt 2 * musa edits pt 3 * add tag * updated readme and sdk gen * updated readme and sdk gen * autorest url added back in * updated readme * readme update * readme fix * updated error return type * error updates pt 1 * updating post ledger example * updating post ledger example * readme fix * prettier fix Co-authored-by: Weidong Xu <weidxu@microsoft.com>
1 parent 61d12d5 commit 0cda3c5

40 files changed

+2658
-199
lines changed
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)