Skip to content

Review request for Microsoft.ConfidentialLedger to add version preview/2024-01-26 #27564

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
ad3adfc
Adds base for updating Microsoft.ConfidentialLedger from version prev…
taicchoumsft Jan 29, 2024
0b3f7e9
Update API versions,add example and add the List User API in new spec
taicchoumsft Jan 29, 2024
b2e2a54
Update readme
taicchoumsft Jan 29, 2024
6773843
Add identity service update to readme
taicchoumsft Jan 29, 2024
a656dda
Minor corrections
taicchoumsft Jan 29, 2024
480c5c2
Merge branch 'main' into taicchoumsft-confidentialledger-Microsoft.Co…
taicchoumsft Mar 14, 2024
6fdaf01
Merge branch 'main' into taicchoumsft-confidentialledger-Microsoft.Co…
taicchoumsft Mar 26, 2024
f6f0465
attempt to fix NOT_LATEST_API_VERSION_IN_DEFAULT_TAG
taicchoumsft Mar 26, 2024
d5c1b52
Merge branch 'main' into taicchoumsft-confidentialledger-Microsoft.Co…
taicchoumsft Mar 28, 2024
76b397e
Merge branch 'main' into taicchoumsft-confidentialledger-Microsoft.Co…
taicchoumsft Mar 29, 2024
a7d6c63
Merge branch 'main' into taicchoumsft-confidentialledger-Microsoft.Co…
taicchoumsft Apr 3, 2024
e76d3b0
Merge branch 'main' into taicchoumsft-confidentialledger-Microsoft.Co…
taicchoumsft Apr 4, 2024
bdb2206
Merge branch 'main' into taicchoumsft-confidentialledger-Microsoft.Co…
taicchoumsft Apr 11, 2024
7e48e96
Merge branch 'main' into taicchoumsft-confidentialledger-Microsoft.Co…
taicchoumsft Apr 16, 2024
7875259
Merge branch 'main' into taicchoumsft-confidentialledger-Microsoft.Co…
taicchoumsft Apr 16, 2024
0f586e0
Merge branch 'main' into taicchoumsft-confidentialledger-Microsoft.Co…
taicchoumsft Apr 17, 2024
6bb30a4
Merge branch 'main' into taicchoumsft-confidentialledger-Microsoft.Co…
taicchoumsft Apr 18, 2024
c7f59f0
Update specification/confidentialledger/data-plane/Microsoft.Confiden…
taicchoumsft Apr 19, 2024
ac77541
Merge branch 'main' into taicchoumsft-confidentialledger-Microsoft.Co…
taicchoumsft Apr 19, 2024
fc8b8c4
Merge branch 'main' into taicchoumsft-confidentialledger-Microsoft.Co…
taicchoumsft Apr 19, 2024
bd44166
Merge branch 'main' into taicchoumsft-confidentialledger-Microsoft.Co…
taicchoumsft Apr 19, 2024
383e891
Merge branch 'main' into taicchoumsft-confidentialledger-Microsoft.Co…
taicchoumsft Apr 22, 2024
05b3913
Fix lint errors for endpoint
taicchoumsft Apr 22, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"swagger": "2.0",
"info": {
"version": "2024-01-26-preview",
"title": "ConfidentialLedgerClient",
"description": "The ConfidentialLedgerClient writes and retrieves ledger entries against the Confidential Ledger service."
},
"paths": {},
"definitions": {
"ConfidentialLedgerError": {
"description": "An error response from Confidential Ledger.",
"properties": {
"error": {
"readOnly": true,
"$ref": "#/definitions/ConfidentialLedgerErrorBody"
}
},
"type": "object"
},
"ConfidentialLedgerErrorBody": {
"description": "An error response from Confidential Ledger.",
"properties": {
"code": {
"type": "string",
"readOnly": true,
"description": "The error code."
},
"message": {
"type": "string",
"readOnly": true,
"description": "The error message."
}
},
"x-nullable": true,
"type": "object"
}
},
"parameters": {
"ApiVersionParameter": {
"name": "api-version",
"in": "query",
"required": true,
"type": "string",
"description": "The API version to be used with the HTTP request."
}
}
}
Loading