Skip to content

Commit 8769bd0

Browse files
committed
updated backup restore specs
1 parent d39bd34 commit 8769bd0

File tree

6 files changed

+163
-365
lines changed

6 files changed

+163
-365
lines changed

specification/confidentialledger/resource-manager/Microsoft.ConfidentialLedger/preview/2023-06-28-preview/confidentialledger.json

Lines changed: 72 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -418,9 +418,9 @@
418418
"tags": [
419419
"Confidential Ledger"
420420
],
421-
"summary": "Retrieves information about all Confidential Ledger resources under the given subscription",
422-
"description": "Retrieves the properties of all Confidential Ledgers.",
423-
"operationId": "Ledger_ListBySubscription",
421+
"summary": "Performs the backup operation on a Confidential Ledger Resource.",
422+
"description": "Backs up a Confidential Ledger Resource.",
423+
"operationId": "Ledger_Backup",
424424
"parameters": [
425425
{
426426
"$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
@@ -429,18 +429,24 @@
429429
"$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter"
430430
},
431431
{
432-
"type": "string",
433-
"description": "The filter to apply on the list operation. eg. $filter=ledgerType eq 'Public'",
434-
"name": "$filter",
435-
"in": "query"
432+
"$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter"
433+
},
434+
{
435+
"$ref": "#/parameters/LedgerNameParameter"
436+
},
437+
{
438+
"name": "confidentialLedger",
439+
"in": "body",
440+
"description": "Confidential Ledger Backup Request Body",
441+
"required": true,
442+
"schema": {
443+
"$ref": "#/definitions/ConfidentialLedgerBackup"
444+
}
436445
}
437446
],
438447
"responses": {
439448
"200": {
440-
"description": "The request was successful; response contains the list of Confidential Ledgers",
441-
"schema": {
442-
"$ref": "#/definitions/ConfidentialLedgerList"
443-
}
449+
"description": "The request was successful; response contains a message stating the instance is successfully being backed up."
444450
},
445451
"default": {
446452
"description": "Error response describing the reason for operation failure. 404 - NotFound (Confidential Ledger does not exist.)",
@@ -449,9 +455,6 @@
449455
}
450456
}
451457
},
452-
"x-ms-pageable": {
453-
"nextLinkName": "nextLink"
454-
},
455458
"x-ms-examples": {
456459
"ConfidentialLedgerListBySub": {
457460
"$ref": "./examples/ConfidentialLedger_Backup.json"
@@ -464,9 +467,9 @@
464467
"tags": [
465468
"Confidential Ledger"
466469
],
467-
"summary": "Retrieves information about all Confidential Ledger resources under the given subscription",
468-
"description": "Retrieves the properties of all Confidential Ledgers.",
469-
"operationId": "Ledger_ListBySubscription",
470+
"summary": "Performs the restore operation to spin up a newly restored Confidential Ledger Resource.",
471+
"description": "Restores a Confidential Ledger Resource.",
472+
"operationId": "Ledger_Restore",
470473
"parameters": [
471474
{
472475
"$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
@@ -475,29 +478,32 @@
475478
"$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter"
476479
},
477480
{
478-
"type": "string",
479-
"description": "The filter to apply on the list operation. eg. $filter=ledgerType eq 'Public'",
480-
"name": "$filter",
481-
"in": "query"
481+
"$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter"
482+
},
483+
{
484+
"$ref": "#/parameters/LedgerNameParameter"
485+
},
486+
{
487+
"name": "confidentialLedger",
488+
"in": "body",
489+
"description": "Confidential Ledger Restore Request Body",
490+
"required": true,
491+
"schema": {
492+
"$ref": "#/definitions/ConfidentialLedgerRestore"
493+
}
482494
}
483495
],
484496
"responses": {
485497
"200": {
486-
"description": "The request was successful; response contains the list of Confidential Ledgers",
487-
"schema": {
488-
"$ref": "#/definitions/ConfidentialLedgerList"
489-
}
498+
"description": "The request was successful; response contains a message stating the instance is successfully being restored."
490499
},
491500
"default": {
492-
"description": "Error response describing the reason for operation failure. 404 - NotFound (Confidential Ledger does not exist.)",
501+
"description": "Error response describing the reason for operation failure.",
493502
"schema": {
494503
"$ref": "../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse"
495504
}
496505
}
497506
},
498-
"x-ms-pageable": {
499-
"nextLinkName": "nextLink"
500-
},
501507
"x-ms-examples": {
502508
"ConfidentialLedgerListBySub": {
503509
"$ref": "./examples/ConfidentialLedger_Restore.json"
@@ -715,6 +721,43 @@
715721
}
716722
}
717723
},
724+
"ConfidentialLedgerBackup": {
725+
"description": "Object representing Backup properties of Confidential Ledger Resource.",
726+
"type": "string",
727+
"properties": {
728+
"location": {
729+
"type": "string",
730+
"readOnly": false,
731+
"description": "Location where the Confidential Ledger Resource will be backed up for or restored to."
732+
},
733+
"sasUrl": {
734+
"type": "string",
735+
"readOnly": false,
736+
"description": "SAS URI used to access the backup Fileshare."
737+
}
738+
}
739+
},
740+
"ConfidentialLedgerRestore": {
741+
"description": "Object representing Restore properties of Confidential Ledger Resource.",
742+
"type": "string",
743+
"properties": {
744+
"fileShareName": {
745+
"type": "string",
746+
"readOnly": false,
747+
"description": "Fileshare Name where the Confidential Ledger Resource backup is stored."
748+
},
749+
"location": {
750+
"type": "string",
751+
"readOnly": false,
752+
"description": "Location where the Confidential Ledger Resource will be backed up for or restored to."
753+
},
754+
"sasUrl": {
755+
"type": "string",
756+
"readOnly": false,
757+
"description": "SAS URI used to access the backup Fileshare."
758+
}
759+
}
760+
},
718761
"ConfidentialLedger": {
719762
"type": "object",
720763
"description": "Confidential Ledger. Contains the properties of Confidential Ledger Resource.",
@@ -746,40 +789,6 @@
746789
"type": "string"
747790
}
748791
}
749-
},
750-
"ConfidentialLedgerBackup": {
751-
"description": "Object that includes an array of Confidential Ledgers and a possible link for next set.",
752-
"type": "object",
753-
"properties": {
754-
"value": {
755-
"description": "List of Confidential Ledgers",
756-
"type": "array",
757-
"items": {
758-
"$ref": "#/definitions/ConfidentialLedger"
759-
}
760-
},
761-
"nextLink": {
762-
"description": "The URL the client should use to fetch the next page (per server side paging).",
763-
"type": "string"
764-
}
765-
}
766-
},
767-
"ConfidentialLedgerRestore": {
768-
"description": "Object that includes an array of Confidential Ledgers and a possible link for next set.",
769-
"type": "object",
770-
"properties": {
771-
"value": {
772-
"description": "List of Confidential Ledgers",
773-
"type": "array",
774-
"items": {
775-
"$ref": "#/definitions/ConfidentialLedger"
776-
}
777-
},
778-
"nextLink": {
779-
"description": "The URL the client should use to fetch the next page (per server side paging).",
780-
"type": "string"
781-
}
782-
}
783792
}
784793
},
785794
"parameters": {
Original file line numberDiff line numberDiff line change
@@ -1,77 +1,20 @@
11
{
2-
"parameters": {
3-
"api-version": "2023-06-28-preview",
4-
"subscriptionId": "0000000-0000-0000-0000-000000000001",
5-
"resourceGroupName": "DummyResourceGroupName",
6-
"ledgerName": "DummyLedgerName",
7-
"confidentialLedger": {
8-
"properties": {
9-
"ledgerType": "Public",
10-
"aadBasedSecurityPrincipals": [
11-
{
12-
"principalId": "34621747-6fc8-4771-a2eb-72f31c461f2e",
13-
"tenantId": "bce123b9-2b7b-4975-8360-5ca0b9b1cd08",
14-
"ledgerRoleName": "Administrator"
15-
}
16-
],
17-
"certBasedSecurityPrincipals": [
18-
{
19-
"cert": "-----BEGIN CERTIFICATE-----\nMIIDUjCCAjqgAwIBAgIQJ2IrDBawSkiAbkBYmiAopDANBgkqhkiG9w0BAQsFADAmMSQwIgYDVQQDExtTeW50aGV0aWNzIExlZGdlciBVc2VyIENlcnQwHhcNMjAwOTIzMjIxODQ2WhcNMjEwOTIzMjIyODQ2WjAmMSQwIgYDVQQDExtTeW50aGV0aWNzIExlZGdlciBVc2VyIENlcnQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCX2s/Eu4q/eQ63N+Ugeg5oAciZua/YCJr41c/696szvSY7Zg1SNJlW88/nbz70+QpO55OmqlEE3QCU+T0Vl/h0Gf//n1PYcoBbTGUnYEmV+fTTHict6rFiEwrGJ62tvcpYgwapInSLyEeUzjki0zhOLJ1OfRnYd1eGnFVMpE5aVjiS8Q5dmTEUyd51EIprGE8RYAW9aeWSwTH7gjHUsRlJnHKcdhaK/v5QKJnNu5bzPFUcpC0ZBcizoMPAtroLAD4B68Jl0z3op18MgZe6lRrVoWuxfqnk5GojuB/Vu8ohAZKoFhQ6NB6r+LL2AUs+Zr7Bt26IkEdR178n9JMEA4gHAgMBAAGjfDB6MA4GA1UdDwEB/wQEAwIFoDAJBgNVHRMEAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAfBgNVHSMEGDAWgBS/a7PU9iOfOKEyZCp11Oen5VSuuDAdBgNVHQ4EFgQUv2uz1PYjnzihMmQqddTnp+VUrrgwDQYJKoZIhvcNAQELBQADggEBAF5q2fDwnse8egXhfaJCqqM969E9gSacqFmASpoDJPRPEX7gqoO7v1ww7nqRtRDoRiBvo/yNk7jlSAkRN3nRRnZLZZ3MYQdmCr4FGyIqRg4Y94+nja+Du9pDD761rxRktMVPSOaAVM/E5DQvscDlPvlPYe9mkcrLCE4DXYpiMmLT8Tm55LJJq5m07dVDgzAIR1L/hmEcbK0pnLgzciMtMLxGO2udnyyW/UW9WxnjvrrD2JluTHH9mVbb+XQP1oFtlRBfH7aui1ZgWfKvxrdP4zdK9QoWSUvRux3TLsGmHRBjBMtqYDY3y5mB+aNjLelvWpeVb0m2aOSVXynrLwNCAVA=\n-----END CERTIFICATE-----",
20-
"ledgerRoleName": "Reader"
21-
}
22-
]
23-
},
24-
"location": "EastUS",
25-
"tags": {
26-
"additionalProps1": "additional properties",
27-
"additionProps2": "additional property value"
28-
}
2+
"parameters": {
3+
"api-version": "2023-06-28-preview",
4+
"subscriptionId": "0000000-0000-0000-0000-000000000001",
5+
"resourceGroupName": "DummyResourceGroupName",
6+
"ledgerName": "DummyLedgerName",
7+
"confidentialLedger": {
8+
"location": "EastUS",
9+
"sasUrl": "DummySASUri"
10+
}
11+
},
12+
"responses": {
13+
"200": {
14+
"body": {
15+
"message": "Backup Created for Ledger: DummyLedgerName."
2916
}
3017
},
31-
"responses": {
32-
"200": {
33-
"body": {
34-
"properties": {
35-
"runningState": "Active",
36-
"ledgerName": "DummyLedgerName",
37-
"ledgerUri": "https://dummyledgername.confidential-ledger.azure.com",
38-
"identityServiceUri": "https://identity.confidential-ledger.core.azure.com/ledgerIdentity/dummyledgername",
39-
"ledgerType": "Public",
40-
"ledgerInternalNamespace": "dummyNamespace",
41-
"provisioningState": "Succeeded",
42-
"aadBasedSecurityPrincipals": [
43-
{
44-
"principalId": "34621747-6fc8-4771-a2eb-72f31c461f2e",
45-
"tenantId": "bce123b9-2b7b-4975-8360-5ca0b9b1cd08",
46-
"ledgerRoleName": "Administrator"
47-
}
48-
],
49-
"certBasedSecurityPrincipals": [
50-
{
51-
"cert": "-----BEGIN CERTIFICATE-----\nMIIDUjCCAjqgAwIBAgIQJ2IrDBawSkiAbkBYmiAopDANBgkqhkiG9w0BAQsFADAmMSQwIgYDVQQDExtTeW50aGV0aWNzIExlZGdlciBVc2VyIENlcnQwHhcNMjAwOTIzMjIxODQ2WhcNMjEwOTIzMjIyODQ2WjAmMSQwIgYDVQQDExtTeW50aGV0aWNzIExlZGdlciBVc2VyIENlcnQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCX2s/Eu4q/eQ63N+Ugeg5oAciZua/YCJr41c/696szvSY7Zg1SNJlW88/nbz70+QpO55OmqlEE3QCU+T0Vl/h0Gf//n1PYcoBbTGUnYEmV+fTTHict6rFiEwrGJ62tvcpYgwapInSLyEeUzjki0zhOLJ1OfRnYd1eGnFVMpE5aVjiS8Q5dmTEUyd51EIprGE8RYAW9aeWSwTH7gjHUsRlJnHKcdhaK/v5QKJnNu5bzPFUcpC0ZBcizoMPAtroLAD4B68Jl0z3op18MgZe6lRrVoWuxfqnk5GojuB/Vu8ohAZKoFhQ6NB6r+LL2AUs+Zr7Bt26IkEdR178n9JMEA4gHAgMBAAGjfDB6MA4GA1UdDwEB/wQEAwIFoDAJBgNVHRMEAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAfBgNVHSMEGDAWgBS/a7PU9iOfOKEyZCp11Oen5VSuuDAdBgNVHQ4EFgQUv2uz1PYjnzihMmQqddTnp+VUrrgwDQYJKoZIhvcNAQELBQADggEBAF5q2fDwnse8egXhfaJCqqM969E9gSacqFmASpoDJPRPEX7gqoO7v1ww7nqRtRDoRiBvo/yNk7jlSAkRN3nRRnZLZZ3MYQdmCr4FGyIqRg4Y94+nja+Du9pDD761rxRktMVPSOaAVM/E5DQvscDlPvlPYe9mkcrLCE4DXYpiMmLT8Tm55LJJq5m07dVDgzAIR1L/hmEcbK0pnLgzciMtMLxGO2udnyyW/UW9WxnjvrrD2JluTHH9mVbb+XQP1oFtlRBfH7aui1ZgWfKvxrdP4zdK9QoWSUvRux3TLsGmHRBjBMtqYDY3y5mB+aNjLelvWpeVb0m2aOSVXynrLwNCAVA=\n-----END CERTIFICATE-----",
52-
"ledgerRoleName": "Reader"
53-
}
54-
]
55-
},
56-
"name": "DummyLedgerName",
57-
"id": "/subscriptions/00000000-0000-0000-0000-000000000001/providers/Microsoft.ConfidentialLedger/ledgers/DummyLedgerName",
58-
"type": "Microsoft.ConfidentialLedger/ledgers",
59-
"location": "EastUS",
60-
"tags": {
61-
"additionalProps1": "additional properties",
62-
"additionProps2": "additional property value"
63-
},
64-
"systemData": {
65-
"createdBy": "[email protected]",
66-
"createdByType": "Admin1",
67-
"createdAt": "2020-12-01T00:00:00.1234567Z",
68-
"lastModifiedBy": "[email protected]",
69-
"lastModifiedByType": "Admin2",
70-
"lastModifiedAt": "2020-12-02T00:00:00.1234567Z"
71-
}
72-
}
73-
},
74-
"201": {}
75-
}
18+
"201": {}
7619
}
77-
20+
}

specification/confidentialledger/resource-manager/Microsoft.ConfidentialLedger/preview/2023-06-28-preview/examples/ConfidentialLedger_Restore.json

Lines changed: 3 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -5,70 +5,15 @@
55
"resourceGroupName": "DummyResourceGroupName",
66
"ledgerName": "DummyLedgerName",
77
"confidentialLedger": {
8-
"properties": {
9-
"ledgerType": "Public",
10-
"aadBasedSecurityPrincipals": [
11-
{
12-
"principalId": "34621747-6fc8-4771-a2eb-72f31c461f2e",
13-
"tenantId": "bce123b9-2b7b-4975-8360-5ca0b9b1cd08",
14-
"ledgerRoleName": "Administrator"
15-
}
16-
],
17-
"certBasedSecurityPrincipals": [
18-
{
19-
"cert": "-----BEGIN CERTIFICATE-----\nMIIDUjCCAjqgAwIBAgIQJ2IrDBawSkiAbkBYmiAopDANBgkqhkiG9w0BAQsFADAmMSQwIgYDVQQDExtTeW50aGV0aWNzIExlZGdlciBVc2VyIENlcnQwHhcNMjAwOTIzMjIxODQ2WhcNMjEwOTIzMjIyODQ2WjAmMSQwIgYDVQQDExtTeW50aGV0aWNzIExlZGdlciBVc2VyIENlcnQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCX2s/Eu4q/eQ63N+Ugeg5oAciZua/YCJr41c/696szvSY7Zg1SNJlW88/nbz70+QpO55OmqlEE3QCU+T0Vl/h0Gf//n1PYcoBbTGUnYEmV+fTTHict6rFiEwrGJ62tvcpYgwapInSLyEeUzjki0zhOLJ1OfRnYd1eGnFVMpE5aVjiS8Q5dmTEUyd51EIprGE8RYAW9aeWSwTH7gjHUsRlJnHKcdhaK/v5QKJnNu5bzPFUcpC0ZBcizoMPAtroLAD4B68Jl0z3op18MgZe6lRrVoWuxfqnk5GojuB/Vu8ohAZKoFhQ6NB6r+LL2AUs+Zr7Bt26IkEdR178n9JMEA4gHAgMBAAGjfDB6MA4GA1UdDwEB/wQEAwIFoDAJBgNVHRMEAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAfBgNVHSMEGDAWgBS/a7PU9iOfOKEyZCp11Oen5VSuuDAdBgNVHQ4EFgQUv2uz1PYjnzihMmQqddTnp+VUrrgwDQYJKoZIhvcNAQELBQADggEBAF5q2fDwnse8egXhfaJCqqM969E9gSacqFmASpoDJPRPEX7gqoO7v1ww7nqRtRDoRiBvo/yNk7jlSAkRN3nRRnZLZZ3MYQdmCr4FGyIqRg4Y94+nja+Du9pDD761rxRktMVPSOaAVM/E5DQvscDlPvlPYe9mkcrLCE4DXYpiMmLT8Tm55LJJq5m07dVDgzAIR1L/hmEcbK0pnLgzciMtMLxGO2udnyyW/UW9WxnjvrrD2JluTHH9mVbb+XQP1oFtlRBfH7aui1ZgWfKvxrdP4zdK9QoWSUvRux3TLsGmHRBjBMtqYDY3y5mB+aNjLelvWpeVb0m2aOSVXynrLwNCAVA=\n-----END CERTIFICATE-----",
20-
"ledgerRoleName": "Reader"
21-
}
22-
]
23-
},
8+
"fileShareName": "DummyFileShareName",
249
"location": "EastUS",
25-
"tags": {
26-
"additionalProps1": "additional properties",
27-
"additionProps2": "additional property value"
28-
}
10+
"sasUrl": "DummySASUri"
2911
}
3012
},
3113
"responses": {
3214
"200": {
3315
"body": {
34-
"properties": {
35-
"runningState": "Active",
36-
"ledgerName": "DummyLedgerName",
37-
"ledgerUri": "https://dummyledgername.confidential-ledger.azure.com",
38-
"identityServiceUri": "https://identity.confidential-ledger.core.azure.com/ledgerIdentity/dummyledgername",
39-
"ledgerType": "Public",
40-
"ledgerInternalNamespace": "dummyNamespace",
41-
"provisioningState": "Succeeded",
42-
"aadBasedSecurityPrincipals": [
43-
{
44-
"principalId": "34621747-6fc8-4771-a2eb-72f31c461f2e",
45-
"tenantId": "bce123b9-2b7b-4975-8360-5ca0b9b1cd08",
46-
"ledgerRoleName": "Administrator"
47-
}
48-
],
49-
"certBasedSecurityPrincipals": [
50-
{
51-
"cert": "-----BEGIN CERTIFICATE-----\nMIIDUjCCAjqgAwIBAgIQJ2IrDBawSkiAbkBYmiAopDANBgkqhkiG9w0BAQsFADAmMSQwIgYDVQQDExtTeW50aGV0aWNzIExlZGdlciBVc2VyIENlcnQwHhcNMjAwOTIzMjIxODQ2WhcNMjEwOTIzMjIyODQ2WjAmMSQwIgYDVQQDExtTeW50aGV0aWNzIExlZGdlciBVc2VyIENlcnQwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCX2s/Eu4q/eQ63N+Ugeg5oAciZua/YCJr41c/696szvSY7Zg1SNJlW88/nbz70+QpO55OmqlEE3QCU+T0Vl/h0Gf//n1PYcoBbTGUnYEmV+fTTHict6rFiEwrGJ62tvcpYgwapInSLyEeUzjki0zhOLJ1OfRnYd1eGnFVMpE5aVjiS8Q5dmTEUyd51EIprGE8RYAW9aeWSwTH7gjHUsRlJnHKcdhaK/v5QKJnNu5bzPFUcpC0ZBcizoMPAtroLAD4B68Jl0z3op18MgZe6lRrVoWuxfqnk5GojuB/Vu8ohAZKoFhQ6NB6r+LL2AUs+Zr7Bt26IkEdR178n9JMEA4gHAgMBAAGjfDB6MA4GA1UdDwEB/wQEAwIFoDAJBgNVHRMEAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAfBgNVHSMEGDAWgBS/a7PU9iOfOKEyZCp11Oen5VSuuDAdBgNVHQ4EFgQUv2uz1PYjnzihMmQqddTnp+VUrrgwDQYJKoZIhvcNAQELBQADggEBAF5q2fDwnse8egXhfaJCqqM969E9gSacqFmASpoDJPRPEX7gqoO7v1ww7nqRtRDoRiBvo/yNk7jlSAkRN3nRRnZLZZ3MYQdmCr4FGyIqRg4Y94+nja+Du9pDD761rxRktMVPSOaAVM/E5DQvscDlPvlPYe9mkcrLCE4DXYpiMmLT8Tm55LJJq5m07dVDgzAIR1L/hmEcbK0pnLgzciMtMLxGO2udnyyW/UW9WxnjvrrD2JluTHH9mVbb+XQP1oFtlRBfH7aui1ZgWfKvxrdP4zdK9QoWSUvRux3TLsGmHRBjBMtqYDY3y5mB+aNjLelvWpeVb0m2aOSVXynrLwNCAVA=\n-----END CERTIFICATE-----",
52-
"ledgerRoleName": "Reader"
53-
}
54-
]
55-
},
56-
"name": "DummyLedgerName",
57-
"id": "/subscriptions/00000000-0000-0000-0000-000000000001/providers/Microsoft.ConfidentialLedger/ledgers/DummyLedgerName",
58-
"type": "Microsoft.ConfidentialLedger/ledgers",
59-
"location": "EastUS",
60-
"tags": {
61-
"additionalProps1": "additional properties",
62-
"additionProps2": "additional property value"
63-
},
64-
"systemData": {
65-
"createdBy": "[email protected]",
66-
"createdByType": "Admin1",
67-
"createdAt": "2020-12-01T00:00:00.1234567Z",
68-
"lastModifiedBy": "[email protected]",
69-
"lastModifiedByType": "Admin2",
70-
"lastModifiedAt": "2020-12-02T00:00:00.1234567Z"
71-
}
16+
"message": "Restore Created for ManagedCCF App : DummyMccfAppName."
7217
}
7318
},
7419
"201": {}

0 commit comments

Comments
 (0)