Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Expand Up @@ -415,24 +415,6 @@
}
},
"definitions": {
"Tags": {
"description": "Tags for Confidential Ledger Resource",
"type": "object",
"properties": {
"tags": {
"type": "object",
"description": "Additional tags for Confidential Ledger",
"additionalProperties": {
"type": "string"
},
"x-ms-mutability": [
"read",
"create",
"update"
]
}
}
},
"ResourceProviderOperationList": {
"description": "List containing this Resource Provider's available operations.",
"type": "object",
Expand Down Expand Up @@ -608,6 +590,10 @@
"readOnly": true,
"description": "Internal namespace for the Ledger"
},
"runningState": {
"description": "Object representing RunningState for Ledger.",
"$ref": "#/definitions/RunningState"
},
"ledgerType": {
"description": "Type of Confidential Ledger",
"$ref": "#/definitions/ConfidentialLedgerType"
Expand Down Expand Up @@ -643,16 +629,9 @@
"allOf": [
{
"$ref": "../../../../../common-types/resource-management/v3/types.json#/definitions/TrackedResource"
},
{
"$ref": "#/definitions/Tags"
}
],
"properties": {
"runningState": {
"description": "Object representing RunningState for Ledger.",
"$ref": "#/definitions/RunningState"
},
"properties": {
"description": "Properties of Confidential Ledger Resource.",
"$ref": "#/definitions/LedgerProperties"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"responses": {
"200": {
"body": {
"runningState": "Active",
"properties": {
"runningState": "Active",
"ledgerName": "DummyLedgerName",
"ledgerUri": "https://dummy.accledger.domain.com/DummyLedgerName",
"identityServiceUri": "https://dummy.accledger.identity.com/DummyLedgerName",
Expand Down Expand Up @@ -71,8 +71,8 @@
},
"201": {
"body": {
"runningState": "Unknown",
"properties": {
"runningState": "Unknown",
"ledgerName": "DummyLedgerName",
"ledgerType": "Public",
"ledgerInternalNamespace": "dummyNamespace",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
"responses": {
"200": {
"body": {
"runningState": "Active",
"properties": {
"ledgerName": "DummyLedgerName",
"ledgerUri": "https://dummy.accledger.domain.com/DummyLedgerName",
"identityServiceUri": "https://dummy.accledger.identity.com/DummyLedgerName",
"ledgerType": "Public",
"runningState": "Active",
"ledgerInternalNamespace": "dummyNamespace",
"provisioningState": "Succeeded",
"aadBasedSecurityPrincipals": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
"body": {
"value": [
{
"runningState": "Active",
"properties": {
"runningState": "Active",
"ledgerName": "DummyLedgerName",
"ledgerUri": "https://dummy.accledger.domain.com/DummyLedgerName",
"identityServiceUri": "https://dummy.accledger.identity.com/DummyLedgerName",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"body": {
"value": [
{
"runningState": "Active",
"properties": {
"runningState": "Active",
"ledgerName": "DummyLedgerName",
"ledgerUri": "https://dummy.accledger.domain.com/DummyLedgerName",
"identityServiceUri": "https://dummy.accledger.identity.com/DummyLedgerName",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"responses": {
"200": {
"body": {
"runningState": "Active",
"properties": {
"runningState": "Active",
"ledgerName": "DummyLedgerName",
"ledgerUri": "https://dummyledgername.confidential-ledger.azure.com",
"identityServiceUri": "https://identity.confidential-ledger.core.azure.com/ledgerIdentity/dummyledgername",
Expand Down