Skip to content
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

[Microsoft.ConfidentialLedger] [DataPlane] Add new API version preview/2024-12-09-preview #31903

Open
wants to merge 30 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
f05b22e
Copy files from preview/2024-08-22-preview
andpiccione Dec 9, 2024
2f8557f
Update version to preview/2024-12-09-preview
andpiccione Dec 9, 2024
6acec12
Added tag for 2024-12-09-preview in readme file
andpiccione Dec 9, 2024
6e52441
Update specs with new user defined function API
andpiccione Dec 11, 2024
7f89a42
Add examples for new APIs and params
andpiccione Dec 11, 2024
9610c91
Update specs with minor changes
andpiccione Dec 17, 2024
c3189b9
Run prettier
andpiccione Dec 17, 2024
def37a2
Fix typo
andpiccione Dec 17, 2024
e690e1d
Add minor fixes to new examples
andpiccione Dec 17, 2024
82bbf3d
Run prettier again
andpiccione Dec 17, 2024
66008dd
Fix auto-generated readme updates
andpiccione Dec 17, 2024
211ca01
Merge branch 'main' into apiccione/confidentialledger-dataplane-2024-…
andpiccione Dec 17, 2024
8ed8c0b
Merge branch 'main' into apiccione/confidentialledger-dataplane-2024-…
andpiccione Dec 30, 2024
4b6928b
Update properties
andpiccione Jan 8, 2025
998d28a
Merge branch 'main' into apiccione/confidentialledger-dataplane-2024-…
andpiccione Jan 8, 2025
3252238
Add spell check suppressions
andpiccione Jan 8, 2025
8940326
Run prettier
andpiccione Jan 8, 2025
d4648b2
Rename functions proeprty
andpiccione Jan 8, 2025
7fb81d2
Address API review feedback
andpiccione Jan 17, 2025
29dc79e
Update examples
andpiccione Jan 17, 2025
1c06f62
Merge remote-tracking branch 'origin/main' into apiccione/confidentia…
andpiccione Jan 17, 2025
2be801b
Merge branch 'main' into apiccione/confidentialledger-dataplane-2024-…
andpiccione Jan 17, 2025
ff34ca7
Rename to pre-hooks and post-hooks
andpiccione Jan 17, 2025
aae4f97
Merge branch 'apiccione/confidentialledger-dataplane-2024-12-09-previ…
andpiccione Jan 17, 2025
d8f928a
Merge branch 'main' into apiccione/confidentialledger-dataplane-2024-…
andpiccione Jan 17, 2025
84ad179
Merge branch 'main' into apiccione/confidentialledger-dataplane-2024-…
mikeharder Jan 17, 2025
b543332
Fix autorest readme
andpiccione Jan 17, 2025
08ee450
Merge branch 'main' into apiccione/confidentialledger-dataplane-2024-…
andpiccione Jan 17, 2025
1475e0a
Merge branch 'main' into apiccione/confidentialledger-dataplane-2024-…
andpiccione Jan 21, 2025
fbfa012
Merge branch 'main' into apiccione/confidentialledger-dataplane-2024-…
andpiccione Jan 21, 2025
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 @@
{

Check notice on line 1 in specification/confidentialledger/data-plane/Microsoft.ConfidentialLedger/preview/2024-12-09-preview/common.json

View workflow job for this annotation

GitHub Actions / TypeSpec Requirement

Brownfield services will soon be required to convert from OpenAPI to TypeSpec. See https://aka.ms/azsdk/typespec.
"swagger": "2.0",
"info": {
"version": "2024-12-09-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