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 @@ -647,6 +647,19 @@
"modelAsString": true
}
},
"LedgerSku": {
"description": "SKU associated with the ledger resource",
"type": "string",
"enum": [
"Standard",
"Basic",
"Unknown"
],
"x-ms-enum": {
"name": "LedgerSku",
"modelAsString": true
}
},
"CertBasedSecurityPrincipal": {
"type": "object",
"description": "Cert based security principal with Ledger RoleName",
Expand Down Expand Up @@ -715,6 +728,10 @@
"readOnly": true,
"$ref": "#/definitions/ProvisioningState"
},
"ledgerSku": {
"description": "SKU associated with the ledger",
"$ref": "#/definitions/LedgerSku"
},
"aadBasedSecurityPrincipals": {
"description": "Array of all AAD based Security Principals.",
"type": "array",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"confidentialLedger": {
"properties": {
"ledgerType": "Public",
"ledgerSku": "Standard",
"aadBasedSecurityPrincipals": [
{
"principalId": "34621747-6fc8-4771-a2eb-72f31c461f2e",
Expand Down Expand Up @@ -36,6 +37,7 @@
"ledgerUri": "https://dummy.accledger.domain.com/DummyLedgerName",
"identityServiceUri": "https://dummy.accledger.identity.com/DummyLedgerName",
"ledgerType": "Public",
"ledgerSku": "Standard",
"ledgerInternalNamespace": "dummyNamespace",
"provisioningState": "Succeeded",
"aadBasedSecurityPrincipals": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"ledgerUri": "https://dummy.accledger.domain.com/DummyLedgerName",
"identityServiceUri": "https://dummy.accledger.identity.com/DummyLedgerName",
"ledgerType": "Public",
"ledgerSku": "Standard",
"runningState": "Active",
"ledgerInternalNamespace": "dummyNamespace",
"provisioningState": "Succeeded",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
"ledgerUri": "https://dummy.accledger.domain.com/DummyLedgerName",
"identityServiceUri": "https://dummy.accledger.identity.com/DummyLedgerName",
"ledgerType": "Public",
"ledgerSku": "Standard",
"ledgerInternalNamespace": "dummyNamespace",
"provisioningState": "Succeeded",
"aadBasedSecurityPrincipals": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"ledgerUri": "https://dummy.accledger.domain.com/DummyLedgerName",
"identityServiceUri": "https://dummy.accledger.identity.com/DummyLedgerName",
"ledgerType": "Public",
"ledgerSku": "Standard",
"ledgerInternalNamespace": "dummyNamespace",
"provisioningState": "Succeeded",
"certBasedSecurityPrincipals": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"ledgerName": "DummyLedgerName",
"ledgerUri": "https://dummyledgername.confidential-ledger.azure.com",
"identityServiceUri": "https://identity.confidential-ledger.core.azure.com/ledgerIdentity/dummyledgername",
"ledgerSku": "Standard",
"ledgerType": "Public",
"ledgerInternalNamespace": "dummyNamespace",
"provisioningState": "Succeeded",
Expand Down