-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to Corvus.Tenancy v3 and current Azure SDK (#322)
- Loading branch information
Showing
145 changed files
with
5,617 additions
and
7,101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,5 +20,5 @@ branches: | |
- feature | ||
- support | ||
- hotfix | ||
next-version: "2.3" | ||
next-version: "3.0" | ||
|
19 changes: 10 additions & 9 deletions
19
Solutions/EnrollmentConfigurations/OperationsConfigForStorageEmulator.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
[ | ||
{ | ||
"key": "operationsStore", | ||
"contentType": "application/vnd.marain.tenancy.enrollment.configurationitem.azureblobstorage", | ||
"configuration": { | ||
"accountName": "", | ||
"container": "operations", | ||
"disableTenantIdPrefix": false | ||
{ | ||
"serviceName": "Operations v1", | ||
"configurationItems": { | ||
"Marain:Operations:BlobContainerConfiguration:Operations": { | ||
"contentType": "application/vnd.marain.tenancy.configurationitem.azureblobstorage.v3", | ||
"configuration": { | ||
"connectionStringPlainText": "UseDevelopmentStorage=true", | ||
"container": "operations" | ||
} | ||
} | ||
} | ||
] | ||
} |
11 changes: 11 additions & 0 deletions
11
Solutions/EnrollmentConfigurations/OperationsLegacyV2ConfigForStorageEmulator.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[ | ||
{ | ||
"key": "operationsStore", | ||
"contentType": "application/vnd.marain.tenancy.enrollment.configurationitem.azureblobstorage", | ||
"configuration": { | ||
"accountName": "", | ||
"container": "operations", | ||
"disableTenantIdPrefix": false | ||
} | ||
} | ||
] |
57 changes: 30 additions & 27 deletions
57
Solutions/EnrollmentConfigurations/WorkflowConfigForStorageEmulator.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,34 @@ | ||
[ | ||
{ | ||
"key": "workflowStore", | ||
"contentType": "application/vnd.marain.tenancy.enrollment.configurationitem.cosmosdb", | ||
"configuration": { | ||
"accountUri": null, | ||
"databaseName": null, | ||
"containerName": null, | ||
"disableTenantIdPrefix": false | ||
{ | ||
"serviceName": "Workflow v1", | ||
"configurationItems": { | ||
"Marain:Workflow:BlobContainerConfiguration:Definitions": { | ||
"contentType": "application/vnd.marain.tenancy.configurationitem.azureblobstorage.v3", | ||
"configuration": { | ||
"connectionStringPlainText": "UseDevelopmentStorage=true", | ||
"container": "workflow-definitions" | ||
} | ||
}, | ||
"Marain:Workflow:CosmosContainerConfiguration:Instances": { | ||
"contentType": "application/vnd.marain.tenancy.configurationitem.cosmosdb.v3", | ||
"configuration": { | ||
"accountUri": null, | ||
"database": "workflow-instances", | ||
"container": "test" | ||
} | ||
} | ||
}, | ||
{ | ||
"key": "workflowInstanceStore", | ||
"contentType": "application/vnd.marain.tenancy.enrollment.configurationitem.cosmosdb", | ||
"configuration": { | ||
"accountUri": null, | ||
"databaseName": null, | ||
"containerName": null, | ||
"disableTenantIdPrefix": false | ||
} | ||
}, | ||
{ | ||
"key": "operationsStore", | ||
"contentType": "application/vnd.marain.tenancy.enrollment.configurationitem.azureblobstorage", | ||
"configuration": { | ||
"accountName": null, | ||
"container": "operations", | ||
"disableTenantIdPrefix": false | ||
"dependencies": { | ||
"3633754ac4c9be44b55bfe791b1780f12429524fe7b6cc48a265a307407ec858": { | ||
"serviceName": "Operations v1", | ||
"configurationItems": { | ||
"Marain:Operations:BlobContainerConfiguration:Operations": { | ||
"contentType": "application/vnd.marain.tenancy.configurationitem.azureblobstorage.v3", | ||
"configuration": { | ||
"accountName": "", | ||
"container": "workflow-operations" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
] | ||
} |
31 changes: 31 additions & 0 deletions
31
Solutions/EnrollmentConfigurations/WorkflowLegacyV2ConfigForStorageEmulator.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
[ | ||
{ | ||
"key": "workflowStore", | ||
"contentType": "application/vnd.marain.tenancy.enrollment.configurationitem.cosmosdb", | ||
"configuration": { | ||
"accountUri": null, | ||
"databaseName": null, | ||
"containerName": null, | ||
"disableTenantIdPrefix": false | ||
} | ||
}, | ||
{ | ||
"key": "workflowInstanceStore", | ||
"contentType": "application/vnd.marain.tenancy.enrollment.configurationitem.cosmosdb", | ||
"configuration": { | ||
"accountUri": null, | ||
"databaseName": null, | ||
"containerName": null, | ||
"disableTenantIdPrefix": false | ||
} | ||
}, | ||
{ | ||
"key": "operationsStore", | ||
"contentType": "application/vnd.marain.tenancy.enrollment.configurationitem.azureblobstorage", | ||
"configuration": { | ||
"accountName": null, | ||
"container": "operations", | ||
"disableTenantIdPrefix": false | ||
} | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 0 additions & 30 deletions
30
...gement.Abstractions/Marain/TenantManagement/Configuration/BlobStorageConfigurationItem.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.