forked from microsoft/Product-Recommendations
-
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.
Supporting PremiumV2 App service SKUs and updating the solution owner…
…s in the manifest
- Loading branch information
Showing
2 changed files
with
9 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,10 @@ | |
<Template> | ||
<Category>DesignPattern</Category> | ||
<Title>Recommendations Solution</Title> | ||
<Owner displayname="Recommendations" email="[email protected]"/> | ||
<Owners> | ||
<Owner displayname="Recommendations" email="[email protected]"/> | ||
<Owner displayname="Nati Nimni" email="[email protected]" /> | ||
</Owners> | ||
<PublishedOn>04/14/2017</PublishedOn> | ||
<ImageUrl>{PatternAssetBaseUrl}/reco-pcs-logo.png</ImageUrl> | ||
<Description>This solution enables you to create product recommendations predictive models based on historical transaction data and information on the product catalog. The solution exposes mechanisms to train models and request recommendations from those models.</Description> | ||
|
@@ -16,7 +19,7 @@ | |
<Instructions src="markdown\AppService.md" format="markdown" /> | ||
<Parameters> | ||
<Parameter name="hostingPlanSku"> | ||
<ExtraDescription>(B=Basic, S=Standard, P=Premium)</ExtraDescription> | ||
<ExtraDescription>(B=Basic, S=Standard, P=Premium, Pv2=PremiumV2)</ExtraDescription> | ||
</Parameter> | ||
<Parameter name="accountType" hidden="true"/> | ||
<Parameter name="appInsightsLocation" hidden="true" /> | ||
|
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 |
---|---|---|
|
@@ -25,7 +25,10 @@ | |
"S3", | ||
"P1", | ||
"P2", | ||
"P3" | ||
"P3", | ||
"P1v2", | ||
"P2v2", | ||
"P3v2" | ||
], | ||
"defaultValue": "S2", | ||
"metadata": { | ||
|