Skip to content

[Confidential Ledger][Data Plane] Introduce new API version 2023-01-18-preview #21659

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
merged 25 commits into from
Apr 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
a6e92ba
Add new api specs skeleton
andpiccione Nov 25, 2022
5eb3575
Add application claims definitions
andpiccione Nov 25, 2022
a80c987
Add get receipt example for updated response
andpiccione Nov 25, 2022
752cf2f
Modify README to include new package
andpiccione Nov 25, 2022
707a13f
Fix commit parameter limits
andpiccione Nov 25, 2022
604398d
Fix CI linter errors
andpiccione Nov 25, 2022
4ee92e3
Replace false secret key
andpiccione Nov 25, 2022
106889c
Add claim digest field to model
andpiccione Dec 6, 2022
8c9cba1
Merge remote-tracking branch 'origin/main' into apiccione/confidentia…
andpiccione Dec 6, 2022
45629ad
Make version and secretKey required properties
andpiccione Dec 9, 2022
9adcb1c
Merge remote-tracking branch 'origin/main' into apiccione/confidentia…
andpiccione Dec 9, 2022
19d6ef8
Remove secretKey from required fields
andpiccione Dec 13, 2022
b7500eb
Update specs for application claims
andpiccione Jan 18, 2023
a4f2569
Update claim example
andpiccione Jan 18, 2023
1d11f54
Move new stable API version to preview
andpiccione Jan 18, 2023
7f9e99b
Update README with new preview version
andpiccione Jan 18, 2023
dd7f117
Merge remote-tracking branch 'origin/main' into apiccione/confidentia…
andpiccione Jan 18, 2023
fbc5e9e
Fix inconsistencies
andpiccione Jan 18, 2023
1190e71
Run prettier
andpiccione Jan 18, 2023
543cc99
Replace max and min commit values with JS limits
andpiccione Jan 29, 2023
5cb44fa
Change commit limits for all API versions
andpiccione Jan 29, 2023
81cacb7
Revert "Change commit limits for all API versions"
andpiccione Jan 29, 2023
f920f99
Revert endpoints parameter names
andpiccione Jan 29, 2023
ad9ae7b
Merge remote-tracking branch 'origin/main' into apiccione/confidentia…
andpiccione Apr 24, 2023
57d59d4
Merge remote-tracking branch 'origin/main' into apiccione/confidentia…
andpiccione Apr 25, 2023
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": "2023-01-18-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