Skip to content

Commit

Permalink
Updating the API specification for confidential ledger for custom end…
Browse files Browse the repository at this point in the history
…points an… (#30290)

* Updating the API spec for confidential ledger for custom endpoints and custom roles change

* Updating endpoint name and few minor changes

* Updating API version and some minor spec updates

* Fixing validation errors

* Fixing swagger validation errors

* Updating JSON reference

* Fixing schema validation issues

* Fixing minor issue

* Fixing schema validation errors

* Fixing schema validation errors

* Fixing validation errors

* Fixing validation errors

* Fixinf validation errors

* Fixing errors

* Fixinf schema

* Updating user role schema

* Updating role name and action schema

* Updating schema

* Fixing schema validation

* Updating API parameters

* Fixinf schema errors

* Updating properties

* Updating definition

* Updating paramter names

* Fixinf schema errors

* Fixing schema validation

* Fixing schematic errors

* Fixing minor issue

* Fixing errors

* Fixing property errors

* Validation errors fixing

* Fixing schema definition errors

* Fixing validation errors

* Fixing type errors

* Fixing type errors

* Fixing type errors

* Fixing type errors

* Fixing type errors

* Fixing type errors

* Fixing type errors

* Fixing type errors

* Fixing type errors

* Fixing type errors

* Fixing type errors

* Addressing PR review comments

* Updating query body for patch runtime options

* Updating Assignedroles

* Addressing review comments from #30481

* Fixing schema

* Fixing schema

* Fixing schema

* Fixing schema

* Fixing schema

* Fixing schema

* Fixing schema

* Fixing schema

* Fixing schema

* Fixing stable version differences

* Fixing schema

* Fixing additional properties of metadata

* Fixing additional properties of Metadata

* Adding new endpoint to return multiple user roles

* Updating schema

* Updating schema

* Updating app/users endpoint

* Updating schema

* Adding new endpoint for user Id lookup for app/users endpoint

* Updating schema

* Updating API version and schema

* Updating user roles definition

* Updating user details parameter

* Updating user parameter

* Updating Addressing review comments

* Updated module parameter

* Updating get response for modules endpoint

* Updating response body in examples

* Updating new endpoint names

* Updating filenames

* Updating example

* Updating role name parameter

* Fixing the lint errors

* Reverting

* Addressing some of review comments
  • Loading branch information
amruthashree18 authored Oct 2, 2024
1 parent 94ae2a7 commit 987a8f3
Show file tree
Hide file tree
Showing 32 changed files with 2,577 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
engine-strict=true
engine-strict=true
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"swagger": "2.0",
"info": {
"version": "2024-08-22-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

0 comments on commit 987a8f3

Please sign in to comment.