Skip to content

Operationalinsights sku pergb2018 #9355

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jun 10, 2019
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
2 changes: 2 additions & 0 deletions src/OperationalInsights/OperationalInsights/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
- Additional information about change #1
-->
## Upcoming Release
* Enable **pergb2018** pricing tier in `New-AzureRmOperationalInsightsWorkspace` command

## Version 1.2.0
* Updated cmdlets with plural nouns to singular, and deprecated plural names.
Expand All @@ -26,6 +27,7 @@
* Additional support for New and Get ApplicationInsights data source.
- Added new 'ApplicationInsights' kind to support Get specific and Get all ApplicationInsights data sources for given workspace.
- Added New-AzOperationalInsightsApplicationInsightsDataSource cmdlet for creating data source by given Application-Insights resource parameters: subscription Id, resourceGroupName and name.

## Version 1.0.0
* General availability of `Az.OperationalInsights` module
* Default parameter set for Get-AzOperationalInsightsDataSource is removed, and ByWorkspaceNameByKind has become the default parameter set
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ public virtual PSIntelligencePack SetIntelligencePack(string resourceGroupName,
if (enabled)
{
OperationalInsightsManagementClient.Workspaces.EnableIntelligencePack(resourceGroupName, workspaceName, intelligencePackName);
return new PSIntelligencePack(intelligencePackName, enabled); ;
return new PSIntelligencePack(intelligencePackName, enabled);
}
else
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class NewAzureOperationalInsightsWorkspaceCommand : OperationalInsightsBa

[Parameter(Position = 3, Mandatory = false, ValueFromPipelineByPropertyName = true,
HelpMessage = "The service tier of the workspace.")]
[ValidateSet("free", "standard", "premium", "pernode","standalone", IgnoreCase = true)]
[PSArgumentCompleter("free", "standard", "premium", "pernode", "standalone", "pergb2018")]
public string Sku { get; set; }

[Parameter(Position = 4, Mandatory = false, ValueFromPipelineByPropertyName = true,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
---
external help file: Microsoft.Azure.PowerShell.Cmdlets.OperationalInsights.dll-Help.xml
Module Name: Az.OperationalInsights
ms.assetid: 4682807D-34E8-4057-8894-36820447067B
Expand Down Expand Up @@ -163,7 +163,7 @@ Valid values are:
Type: System.String
Parameter Sets: (All)
Aliases:
Accepted values: free, standard, premium, pernode, standalone
Accepted values: free, standard, premium, pernode, standalone, pergb2018

Required: False
Position: 3
Expand Down