diff --git a/src/Monitor/Autoscale.Autorest/README.md b/src/Monitor/Autoscale.Autorest/README.md index 959414a8bfe1..577eb77dd192 100644 --- a/src/Monitor/Autoscale.Autorest/README.md +++ b/src/Monitor/Autoscale.Autorest/README.md @@ -39,59 +39,13 @@ title: Autoscale module-version: 0.1.0 subject-prefix: Autoscale namespace: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale -nested-object-to-string: true - -# If there are post APIs for some kinds of actions in the RP, you may need to -# uncomment following line to support viaIdentity for these post APIs -# identity-correction-for-post: true - -# For new modules, please avoid setting 3.x using the use-extension method and instead, use 4.x as the default option -use-extension: - "@autorest/powershell": "3.x" directive: - - where: - Verb: Get - subject: PredictiveMetric - set: - breaking-change: - deprecated-output-properties: - - Data - new-output-properties: - - Data - change-description: The type of the property 'Data' of type 'IPredictiveResponse' will be changed from single object to 'List'. - deprecated-by-version: 7.0.0 - deprecated-by-azversion: 15.0.0 - change-effective-date: 2025/11/03 - - where: - verb: Get|Update|New - subject: AutoscaleSetting - set: - breaking-change: - deprecated-output-properties: - - Notification - - Profile - new-output-properties: - - Notification - - Profile - change-description: The types of the properties 'Notification' and 'Profile' of type 'IAutoscaleSettingResource' will be changed from single object to 'List'. - deprecated-by-version: 7.0.0 - deprecated-by-azversion: 15.0.0 - change-effective-date: 2025/11/03 - - where: - parameter-name: Profile|Rule|ScheduleHour|ScheduleMinute|ScheduleDay|Webhook|EmailCustomEmail - set: - breaking-change: - old-parameter-type: Array - new-parameter-type: List - deprecated-by-version: 7.0.0 - deprecated-by-azversion: 15.0.0 - change-effective-date: 2025/11/03 # Following is two common directive which are normally required in all the RPs # 1. Remove the unexpanded parameter set # 2. For New-* cmdlets, ViaIdentity is not required, so CreateViaIdentityExpanded is removed as well - where: - variant: ^Create$|^CreateViaIdentityExpanded$|^Update$|^UpdateViaIdentity$ + variant: ^(Create|Update)(?!.*?(Expanded|JsonFilePath|JsonString))|^CreateViaIdentityExpanded$ remove: true - where: verb: Set @@ -104,14 +58,6 @@ directive: verb: Update subject: AutoscaleSetting hide: true - # Rename 'Equals' - - from: source-file-csharp - where: $ - transform: $ = $.replace('public static Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ComparisonOperationType Equals = @"Equals";', 'public static Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ComparisonOperationType Equal = @"Equals";'); - - - from: source-file-csharp - where: $ - transform: $ = $.replace('public static Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleRuleMetricDimensionOperationType Equals = @"Equals";', 'public static Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleRuleMetricDimensionOperationType Equal = @"Equals";'); - from: swagger-document where: $.definitions.TimeWindow @@ -138,9 +84,9 @@ directive: } # Add breaking change for them, will add back. - model-cmdlet: - # - AutoscaleProfile - # - ScaleRule - # - AutoscaleNotification - - WebhookNotification - # - ScaleRuleMetricDimension + - model-name: AutoscaleProfile + - model-name: ScaleRule + - model-name: AutoscaleNotification + - model-name: WebhookNotification + - model-name: ScaleRuleMetricDimension ``` diff --git a/src/Monitor/Autoscale.Autorest/custom/New-AzAutoscaleNotificationObject.ps1 b/src/Monitor/Autoscale.Autorest/custom/New-AzAutoscaleNotificationObject.ps1 index 165adaafa16e..804c1bd94ac0 100644 --- a/src/Monitor/Autoscale.Autorest/custom/New-AzAutoscaleNotificationObject.ps1 +++ b/src/Monitor/Autoscale.Autorest/custom/New-AzAutoscaleNotificationObject.ps1 @@ -21,12 +21,13 @@ Create an in-memory object for AutoscaleNotification. Create an in-memory object for AutoscaleNotification. .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.AutoscaleNotification +Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.AutoscaleNotification .Link -https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzAutoscaleNotificationObject +https://learn.microsoft.com/powershell/module/Az.Monitor/new-azautoscalenotificationobject #> function New-AzAutoscaleNotificationObject { - [OutputType('Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.AutoscaleNotification')] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.ModelCmdletAttribute()] + [OutputType('Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.AutoscaleNotification')] [CmdletBinding(PositionalBinding=$false)] Param( [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Runtime.ParameterBreakingChange("EmailCustomEmail", "15.0.0", "7.0.0", "2025/11/03", OldParamaterType="Array", NewParameterType="List")] @@ -41,12 +42,12 @@ function New-AzAutoscaleNotificationObject { $EmailSendToSubscriptionCoAdministrator, [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Runtime.ParameterBreakingChange("Webhook", "15.0.0", "7.0.0", "2025/11/03", OldParamaterType="Array", NewParameterType="List")] [Parameter(HelpMessage="the collection of webhook notifications.")] - [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IWebhookNotification[]] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IWebhookNotification[]] $Webhook ) process { - $Object = [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.AutoscaleNotification]::New() + $Object = [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.AutoscaleNotification]::New() if ($PSBoundParameters.ContainsKey('EmailCustomEmail')) { $Object.EmailCustomEmail = $EmailCustomEmail diff --git a/src/Monitor/Autoscale.Autorest/custom/New-AzAutoscaleProfileObject.ps1 b/src/Monitor/Autoscale.Autorest/custom/New-AzAutoscaleProfileObject.ps1 index 703e0e370d0f..707d289c0fcf 100644 --- a/src/Monitor/Autoscale.Autorest/custom/New-AzAutoscaleProfileObject.ps1 +++ b/src/Monitor/Autoscale.Autorest/custom/New-AzAutoscaleProfileObject.ps1 @@ -21,12 +21,13 @@ Create an in-memory object for AutoscaleProfile. Create an in-memory object for AutoscaleProfile. .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.AutoscaleProfile +Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.AutoscaleProfile .Link -https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzAutoscaleProfileObject +https://learn.microsoft.com/powershell/module/Az.Monitor/new-azautoscaleprofileobject #> function New-AzAutoscaleProfileObject { - [OutputType('Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.AutoscaleProfile')] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.ModelCmdletAttribute()] + [OutputType('Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.AutoscaleProfile')] [CmdletBinding(PositionalBinding=$false)] Param( @@ -52,12 +53,12 @@ function New-AzAutoscaleProfileObject { [string] $Name, [Parameter(HelpMessage="the recurrence frequency. How often the schedule profile should take effect. This value must be Week, meaning each week will have the same set of profiles. For example, to set a daily schedule, set **schedule** to every day of the week. The frequency property specifies that the schedule is repeated weekly.")] - [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.RecurrenceFrequency])] - [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.RecurrenceFrequency] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.PSArgumentCompleterAttribute("None", "Second", "Minute", "Hour", "Day", "Week", "Month", "Year")] + [string] $RecurrenceFrequency, [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Runtime.ParameterBreakingChange("Rule", "15.0.0", "7.0.0", "2025/11/03", OldParamaterType="Array", NewParameterType="List")] [Parameter(Mandatory, HelpMessage="the collection of rules that provide the triggers and parameters for the scaling action. A maximum of 10 rules can be specified.")] - [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IScaleRule[]] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IScaleRule[]] $Rule, [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Runtime.ParameterBreakingChange("ScheduleDay", "15.0.0", "7.0.0", "2025/11/03", OldParamaterType="Array", NewParameterType="List")] [Parameter(HelpMessage="the collection of days that the profile takes effect on. Possible values are Sunday through Saturday.")] @@ -77,7 +78,7 @@ function New-AzAutoscaleProfileObject { ) process { - $Object = [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.AutoscaleProfile]::New() + $Object = [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.AutoscaleProfile]::New() if ($PSBoundParameters.ContainsKey('CapacityDefault')) { $Object.CapacityDefault = $CapacityDefault diff --git a/src/Monitor/Autoscale.Autorest/custom/New-AzAutoscaleScaleRuleMetricDimensionObject.ps1 b/src/Monitor/Autoscale.Autorest/custom/New-AzAutoscaleScaleRuleMetricDimensionObject.ps1 index a835d594e915..3dfeab8d5133 100644 --- a/src/Monitor/Autoscale.Autorest/custom/New-AzAutoscaleScaleRuleMetricDimensionObject.ps1 +++ b/src/Monitor/Autoscale.Autorest/custom/New-AzAutoscaleScaleRuleMetricDimensionObject.ps1 @@ -21,12 +21,13 @@ Create an in-memory object for ScaleRuleMetricDimension. Create an in-memory object for ScaleRuleMetricDimension. .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.ScaleRuleMetricDimension +Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.ScaleRuleMetricDimension .Link -https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzAutoscaleScaleRuleMetricDimensionObject +https://learn.microsoft.com/powershell/module/Az.Monitor/new-azautoscalescalerulemetricdimensionobject #> function New-AzAutoscaleScaleRuleMetricDimensionObject { - [OutputType('Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.ScaleRuleMetricDimension')] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.ModelCmdletAttribute()] + [OutputType('Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.ScaleRuleMetricDimension')] [CmdletBinding(PositionalBinding=$false)] Param( @@ -34,8 +35,8 @@ function New-AzAutoscaleScaleRuleMetricDimensionObject { [string] $DimensionName, [Parameter(Mandatory, HelpMessage="the dimension operator. Only 'Equals' and 'NotEquals' are supported. 'Equals' being equal to any of the values. 'NotEquals' being not equal to all of the values.")] - [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleRuleMetricDimensionOperationType])] - [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleRuleMetricDimensionOperationType] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.PSArgumentCompleterAttribute("Equals", "NotEquals")] + [string] $Operator, [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Runtime.ParameterBreakingChange("Value", "15.0.0", "7.0.0", "2025/11/03", OldParamaterType="Array", NewParameterType="List")] [Parameter(Mandatory, HelpMessage="list of dimension values. For example: [`"App1`",`"App2`"].")] @@ -44,7 +45,7 @@ function New-AzAutoscaleScaleRuleMetricDimensionObject { ) process { - $Object = [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.ScaleRuleMetricDimension]::New() + $Object = [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.ScaleRuleMetricDimension]::New() if ($PSBoundParameters.ContainsKey('DimensionName')) { $Object.DimensionName = $DimensionName diff --git a/src/Monitor/Autoscale.Autorest/custom/New-AzAutoscaleScaleRuleObject.ps1 b/src/Monitor/Autoscale.Autorest/custom/New-AzAutoscaleScaleRuleObject.ps1 index e0a7f85bb23b..4437f925b633 100644 --- a/src/Monitor/Autoscale.Autorest/custom/New-AzAutoscaleScaleRuleObject.ps1 +++ b/src/Monitor/Autoscale.Autorest/custom/New-AzAutoscaleScaleRuleObject.ps1 @@ -21,17 +21,18 @@ Create an in-memory object for ScaleRule. Create an in-memory object for ScaleRule. .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.ScaleRule +Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.ScaleRule .Link -https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzAutoscaleScaleRuleObject +https://learn.microsoft.com/powershell/module/Az.Monitor/new-azautoscalescaleruleobject #> function New-AzAutoscaleScaleRuleObject { - [OutputType('Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.ScaleRule')] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.ModelCmdletAttribute()] + [OutputType('Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.ScaleRule')] [CmdletBinding(PositionalBinding=$false)] Param( [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Runtime.ParameterBreakingChange("MetricTriggerDimension", "15.0.0", "7.0.0", "2025/11/03", OldParamaterType="Array", NewParameterType="List")] [Parameter(HelpMessage="List of dimension conditions. For example: [{`"DimensionName`":`"AppName`",`"Operator`":`"Equals`",`"Values`":[`"App1`"]},{`"DimensionName`":`"Deployment`",`"Operator`":`"Equals`",`"Values`":[`"default`"]}].")] - [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IScaleRuleMetricDimension[]] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IScaleRuleMetricDimension[]] $MetricTriggerDimension, [Parameter(HelpMessage="a value indicating whether metric should divide per instance.")] [bool] @@ -49,19 +50,19 @@ function New-AzAutoscaleScaleRuleObject { [string] $MetricTriggerMetricResourceUri, [Parameter(Mandatory, HelpMessage="the operator that is used to compare the metric data and the threshold.")] - [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ComparisonOperationType])] - [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ComparisonOperationType] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.PSArgumentCompleterAttribute("Equals", "NotEquals", "GreaterThan", "GreaterThanOrEqual", "LessThan", "LessThanOrEqual")] + [string] $MetricTriggerOperator, [Parameter(Mandatory, HelpMessage="the metric statistic type. How the metrics from multiple instances are combined.")] - [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.MetricStatisticType])] - [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.MetricStatisticType] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.PSArgumentCompleterAttribute("Average", "Min", "Max", "Sum", "Count")] + [string] $MetricTriggerStatistic, [Parameter(Mandatory, HelpMessage="the threshold of the metric that triggers the scale action.")] [double] $MetricTriggerThreshold, [Parameter(Mandatory, HelpMessage="time aggregation type. How the data that is collected should be combined over time. The default value is Average.")] - [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.TimeAggregationType])] - [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.TimeAggregationType] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.PSArgumentCompleterAttribute("Average", "Minimum", "Maximum", "Total", "Count", "Last")] + [string] $MetricTriggerTimeAggregation, [Parameter(Mandatory, HelpMessage="the granularity of metrics the rule monitors. Must be one of the predefined values returned from metric definitions for the metric. Must be between 12 hours and 1 minute.")] [System.TimeSpan] @@ -73,12 +74,12 @@ function New-AzAutoscaleScaleRuleObject { [System.TimeSpan] $ScaleActionCooldown, [Parameter(Mandatory, HelpMessage="the scale direction. Whether the scaling action increases or decreases the number of instances.")] - [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleDirection])] - [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleDirection] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.PSArgumentCompleterAttribute("None", "Increase", "Decrease")] + [string] $ScaleActionDirection, [Parameter(Mandatory, HelpMessage="the type of action that should occur when the scale rule fires.")] - [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleType])] - [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleType] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.PSArgumentCompleterAttribute("ChangeCount", "PercentChangeCount", "ExactCount", "ServiceAllowedNextValue")] + [string] $ScaleActionType, [Parameter(HelpMessage="the number of instances that are involved in the scaling action. This value must be 1 or greater. The default value is 1.")] [string] @@ -86,7 +87,7 @@ function New-AzAutoscaleScaleRuleObject { ) process { - $Object = [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.ScaleRule]::New() + $Object = [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.ScaleRule]::New() if ($PSBoundParameters.ContainsKey('MetricTriggerDimension')) { $Object.MetricTriggerDimension = $MetricTriggerDimension diff --git a/src/Monitor/Autoscale.Autorest/custom/Update-AzAutoscaleSetting.ps1 b/src/Monitor/Autoscale.Autorest/custom/Update-AzAutoscaleSetting.ps1 index beb806dd1971..82d323259ec7 100644 --- a/src/Monitor/Autoscale.Autorest/custom/Update-AzAutoscaleSetting.ps1 +++ b/src/Monitor/Autoscale.Autorest/custom/Update-AzAutoscaleSetting.ps1 @@ -29,7 +29,7 @@ To update other fields use the CreateOrUpdate method. .Inputs Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleIdentity .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleSettingResource +Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleSettingResource .Notes COMPLEX PARAMETER PROPERTIES @@ -87,7 +87,7 @@ PROFILE : the collection of automatic scaling profiles that https://learn.microsoft.com/powershell/module/az.monitor/update-azAutoscaleSetting #> function Update-AzAutoscaleSetting { - [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleSettingResource])] + [OutputType([Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleSettingResource])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] @@ -129,7 +129,7 @@ function Update-AzAutoscaleSetting { [Parameter()] [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleNotification[]] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleNotification[]] # the collection of notifications. # To construct, see NOTES section for NOTIFICATION properties and create a hash table. ${Notification}, @@ -142,16 +142,16 @@ function Update-AzAutoscaleSetting { ${PredictiveAutoscalePolicyScaleLookAheadTime}, [Parameter()] - [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.PredictiveAutoscalePolicyScaleMode])] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.PSArgumentCompleterAttribute("Disabled", "ForecastOnly", "Enabled")] [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.PredictiveAutoscalePolicyScaleMode] + [System.String] # the predictive autoscale mode ${PredictiveAutoscalePolicyScaleMode}, [Parameter()] [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleProfile[]] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleProfile[]] # the collection of automatic scaling profiles that specify different scaling parameters for different time periods. # A maximum of 20 profiles can be specified. # To construct, see NOTES section for PROFILE properties and create a hash table. @@ -159,7 +159,7 @@ function Update-AzAutoscaleSetting { [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Category('Body')] - [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleSettingResourcePatchTags]))] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleSettingResourcePatchTags]))] [System.Collections.Hashtable] # Resource tags ${Tag}, diff --git a/src/Monitor/Autoscale.Autorest/custom/autogen-model-cmdlets/New-AzAutoscaleWebhookNotificationObject.ps1 b/src/Monitor/Autoscale.Autorest/custom/autogen-model-cmdlets/New-AzAutoscaleWebhookNotificationObject.ps1 index fc9fc9d1798b..c7cd748c7a63 100644 --- a/src/Monitor/Autoscale.Autorest/custom/autogen-model-cmdlets/New-AzAutoscaleWebhookNotificationObject.ps1 +++ b/src/Monitor/Autoscale.Autorest/custom/autogen-model-cmdlets/New-AzAutoscaleWebhookNotificationObject.ps1 @@ -21,17 +21,18 @@ Create an in-memory object for WebhookNotification. Create an in-memory object for WebhookNotification. .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.WebhookNotification +Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.WebhookNotification .Link -https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzAutoscaleWebhookNotificationObject +https://learn.microsoft.com/powershell/module/Az.Monitor/new-azautoscalewebhooknotificationobject #> function New-AzAutoscaleWebhookNotificationObject { - [OutputType('Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.WebhookNotification')] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.ModelCmdletAttribute()] + [OutputType('Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.WebhookNotification')] [CmdletBinding(PositionalBinding=$false)] Param( [Parameter(HelpMessage="a property bag of settings. This value can be empty.")] - [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IWebhookNotificationProperties] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IWebhookNotificationProperties] $Property, [Parameter(HelpMessage="the service address to receive the notification.")] [string] @@ -39,7 +40,7 @@ function New-AzAutoscaleWebhookNotificationObject { ) process { - $Object = [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.WebhookNotification]::New() + $Object = [Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.WebhookNotification]::New() if ($PSBoundParameters.ContainsKey('Property')) { $Object.Property = $Property diff --git a/src/Monitor/Autoscale.Autorest/docs/Az.Autoscale.md b/src/Monitor/Autoscale.Autorest/docs/Az.Autoscale.md index cbddc915a3b2..fa16340ec305 100644 --- a/src/Monitor/Autoscale.Autorest/docs/Az.Autoscale.md +++ b/src/Monitor/Autoscale.Autorest/docs/Az.Autoscale.md @@ -12,7 +12,7 @@ Microsoft Azure PowerShell: Autoscale cmdlets ## Az.Autoscale Cmdlets ### [Get-AzAutoscalePredictiveMetric](Get-AzAutoscalePredictiveMetric.md) -get predictive autoscale metric future data +Get predictive autoscale metric future data ### [Get-AzAutoscaleSetting](Get-AzAutoscaleSetting.md) Gets an autoscale setting @@ -30,7 +30,7 @@ Create an in-memory object for ScaleRuleMetricDimension. Create an in-memory object for ScaleRule. ### [New-AzAutoscaleSetting](New-AzAutoscaleSetting.md) -Creates or updates an autoscale setting. +Create an autoscale setting. ### [New-AzAutoscaleWebhookNotificationObject](New-AzAutoscaleWebhookNotificationObject.md) Create an in-memory object for WebhookNotification. diff --git a/src/Monitor/Autoscale.Autorest/docs/Get-AzAutoscalePredictiveMetric.md b/src/Monitor/Autoscale.Autorest/docs/Get-AzAutoscalePredictiveMetric.md index 916384d3ce05..74da09c7c624 100644 --- a/src/Monitor/Autoscale.Autorest/docs/Get-AzAutoscalePredictiveMetric.md +++ b/src/Monitor/Autoscale.Autorest/docs/Get-AzAutoscalePredictiveMetric.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Get-AzAutoscalePredictiveMetric ## SYNOPSIS -get predictive autoscale metric future data +Get predictive autoscale metric future data ## SYNTAX @@ -27,7 +27,7 @@ Get-AzAutoscalePredictiveMetric -AutoscaleSettingName -ResourceGroupNam ``` ## DESCRIPTION -get predictive autoscale metric future data +Get predictive autoscale metric future data ## EXAMPLES @@ -88,7 +88,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleIdentity @@ -206,7 +205,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IPredictiveResponse +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IPredictiveResponse ## NOTES diff --git a/src/Monitor/Autoscale.Autorest/docs/Get-AzAutoscaleSetting.md b/src/Monitor/Autoscale.Autorest/docs/Get-AzAutoscaleSetting.md index 5883aff8b65a..78e2d92b152d 100644 --- a/src/Monitor/Autoscale.Autorest/docs/Get-AzAutoscaleSetting.md +++ b/src/Monitor/Autoscale.Autorest/docs/Get-AzAutoscaleSetting.md @@ -80,7 +80,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleIdentity @@ -149,7 +148,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleSettingResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleSettingResource ## NOTES diff --git a/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleNotificationObject.md b/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleNotificationObject.md index 63fae2b21041..375f3251ded8 100644 --- a/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleNotificationObject.md +++ b/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleNotificationObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzAutoscaleNotificationObject +online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-azautoscalenotificationobject schema: 2.0.0 --- @@ -81,10 +81,9 @@ Accept wildcard characters: False ### -Webhook the collection of webhook notifications. -To construct, see NOTES section for WEBHOOK properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IWebhookNotification[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IWebhookNotification[] Parameter Sets: (All) Aliases: @@ -102,7 +101,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.AutoscaleNotification +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.AutoscaleNotification ## NOTES diff --git a/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleProfileObject.md b/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleProfileObject.md index 8095b2c37816..2ba27d6663a6 100644 --- a/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleProfileObject.md +++ b/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleProfileObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzAutoscaleProfileObject +online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-azautoscaleprofileobject schema: 2.0.0 --- @@ -15,7 +15,7 @@ Create an in-memory object for AutoscaleProfile. ``` New-AzAutoscaleProfileObject -CapacityDefault -CapacityMaximum -CapacityMinimum -Name -Rule [-FixedDateEnd ] [-FixedDateStart ] - [-FixedDateTimeZone ] [-RecurrenceFrequency ] [-ScheduleDay ] + [-FixedDateTimeZone ] [-RecurrenceFrequency ] [-ScheduleDay ] [-ScheduleHour ] [-ScheduleMinute ] [-ScheduleTimeZone ] [] ``` @@ -160,7 +160,7 @@ For example, to set a daily schedule, set **schedule** to every day of the week. The frequency property specifies that the schedule is repeated weekly. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.RecurrenceFrequency +Type: System.String Parameter Sets: (All) Aliases: @@ -174,10 +174,9 @@ Accept wildcard characters: False ### -Rule the collection of rules that provide the triggers and parameters for the scaling action. A maximum of 10 rules can be specified. -To construct, see NOTES section for RULE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IScaleRule[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IScaleRule[] Parameter Sets: (All) Aliases: @@ -267,7 +266,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.AutoscaleProfile +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.AutoscaleProfile ## NOTES diff --git a/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleScaleRuleMetricDimensionObject.md b/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleScaleRuleMetricDimensionObject.md index c69d5fb132e3..e819433a7469 100644 --- a/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleScaleRuleMetricDimensionObject.md +++ b/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleScaleRuleMetricDimensionObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzAutoscaleScaleRuleMetricDimensionObject +online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-azautoscalescalerulemetricdimensionobject schema: 2.0.0 --- @@ -13,8 +13,8 @@ Create an in-memory object for ScaleRuleMetricDimension. ## SYNTAX ``` -New-AzAutoscaleScaleRuleMetricDimensionObject -DimensionName - -Operator -Value [] +New-AzAutoscaleScaleRuleMetricDimensionObject -DimensionName -Operator -Value + [] ``` ## DESCRIPTION @@ -53,7 +53,7 @@ Only 'Equals' and 'NotEquals' are supported. 'NotEquals' being not equal to all of the values. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleRuleMetricDimensionOperationType +Type: System.String Parameter Sets: (All) Aliases: @@ -87,7 +87,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.ScaleRuleMetricDimension +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.ScaleRuleMetricDimension ## NOTES diff --git a/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleScaleRuleObject.md b/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleScaleRuleObject.md index 6559dc670c6b..443c561e8027 100644 --- a/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleScaleRuleObject.md +++ b/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleScaleRuleObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzAutoscaleScaleRuleObject +online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-azautoscalescaleruleobject schema: 2.0.0 --- @@ -14,10 +14,9 @@ Create an in-memory object for ScaleRule. ``` New-AzAutoscaleScaleRuleObject -MetricTriggerMetricName -MetricTriggerMetricResourceUri - -MetricTriggerOperator -MetricTriggerStatistic - -MetricTriggerThreshold -MetricTriggerTimeAggregation - -MetricTriggerTimeGrain -MetricTriggerTimeWindow -ScaleActionCooldown - -ScaleActionDirection -ScaleActionType + -MetricTriggerOperator -MetricTriggerStatistic -MetricTriggerThreshold + -MetricTriggerTimeAggregation -MetricTriggerTimeGrain -MetricTriggerTimeWindow + -ScaleActionCooldown -ScaleActionDirection -ScaleActionType [-MetricTriggerDimension ] [-MetricTriggerDividePerInstance ] [-MetricTriggerMetricNamespace ] [-MetricTriggerMetricResourceLocation ] [-ScaleActionValue ] [] @@ -41,10 +40,9 @@ Create scale rule object ### -MetricTriggerDimension List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}]. -To construct, see NOTES section for METRICTRIGGERDIMENSION properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IScaleRuleMetricDimension[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IScaleRuleMetricDimension[] Parameter Sets: (All) Aliases: @@ -134,7 +132,7 @@ Accept wildcard characters: False the operator that is used to compare the metric data and the threshold. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ComparisonOperationType +Type: System.String Parameter Sets: (All) Aliases: @@ -150,7 +148,7 @@ the metric statistic type. How the metrics from multiple instances are combined. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.MetricStatisticType +Type: System.String Parameter Sets: (All) Aliases: @@ -182,7 +180,7 @@ How the data that is collected should be combined over time. The default value is Average. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.TimeAggregationType +Type: System.String Parameter Sets: (All) Aliases: @@ -248,7 +246,7 @@ the scale direction. Whether the scaling action increases or decreases the number of instances. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleDirection +Type: System.String Parameter Sets: (All) Aliases: @@ -263,7 +261,7 @@ Accept wildcard characters: False the type of action that should occur when the scale rule fires. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleType +Type: System.String Parameter Sets: (All) Aliases: @@ -298,7 +296,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.ScaleRule +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.ScaleRule ## NOTES diff --git a/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleSetting.md b/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleSetting.md index 70c6f0c030ee..0ba2c052d0dc 100644 --- a/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleSetting.md +++ b/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleSetting.md @@ -8,28 +8,34 @@ schema: 2.0.0 # New-AzAutoscaleSetting ## SYNOPSIS -Creates or updates an autoscale setting. +Create an autoscale setting. ## SYNTAX -### CreateViaIdentity (Default) -``` -New-AzAutoscaleSetting -InputObject -Parameter - [-DefaultProfile ] [-Confirm] [-WhatIf] [] -``` - -### CreateExpanded +### CreateExpanded (Default) ``` New-AzAutoscaleSetting -Name -ResourceGroupName -Location -Profile [-SubscriptionId ] [-Enabled] [-Notification ] [-PredictiveAutoscalePolicyScaleLookAheadTime ] - [-PredictiveAutoscalePolicyScaleMode ] [-PropertiesName ] - [-Tag ] [-TargetResourceLocation ] [-TargetResourceUri ] - [-DefaultProfile ] [-Confirm] [-WhatIf] [] + [-PredictiveAutoscalePolicyScaleMode ] [-PropertiesName ] [-Tag ] + [-TargetResourceLocation ] [-TargetResourceUri ] [-DefaultProfile ] [-Confirm] + [-WhatIf] [] +``` + +### CreateViaJsonFilePath +``` +New-AzAutoscaleSetting -Name -ResourceGroupName -JsonFilePath + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### CreateViaJsonString +``` +New-AzAutoscaleSetting -Name -ResourceGroupName -JsonString + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` ## DESCRIPTION -Creates or updates an autoscale setting. +Create an autoscale setting. ## EXAMPLES @@ -80,19 +86,33 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -InputObject -Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleIdentity -Parameter Sets: CreateViaIdentity +Type: System.String +Parameter Sets: CreateViaJsonString Aliases: Required: True Position: Named Default value: None -Accept pipeline input: True (ByValue) +Accept pipeline input: False Accept wildcard characters: False ``` @@ -116,7 +136,7 @@ The autoscale setting name. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: (All) Aliases: AutoscaleSettingName Required: True @@ -128,10 +148,9 @@ Accept wildcard characters: False ### -Notification the collection of notifications. -To construct, see NOTES section for NOTIFICATION properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleNotification[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleNotification[] Parameter Sets: CreateExpanded Aliases: @@ -142,22 +161,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Parameter -The autoscale setting resource. -To construct, see NOTES section for PARAMETER properties and create a hash table. - -```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleSettingResource -Parameter Sets: CreateViaIdentity -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - ### -PredictiveAutoscalePolicyScaleLookAheadTime the amount of time to specify by which instances are launched in advance. It must be between 1 minute and 60 minutes in ISO 8601 format. @@ -178,7 +181,7 @@ Accept wildcard characters: False the predictive autoscale mode ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.PredictiveAutoscalePolicyScaleMode +Type: System.String Parameter Sets: CreateExpanded Aliases: @@ -192,10 +195,9 @@ Accept wildcard characters: False ### -Profile the collection of automatic scaling profiles that specify different scaling parameters for different time periods. A maximum of 20 profiles can be specified. -To construct, see NOTES section for PROFILE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleProfile[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleProfile[] Parameter Sets: CreateExpanded Aliases: @@ -227,7 +229,7 @@ The name is case insensitive. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: (All) Aliases: Required: True @@ -242,7 +244,7 @@ The ID of the target subscription. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: (All) Aliases: Required: False @@ -336,13 +338,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleSettingResource - -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleIdentity - ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleSettingResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleSettingResource ## NOTES diff --git a/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleWebhookNotificationObject.md b/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleWebhookNotificationObject.md index 014b6dfe769d..d86df5b36026 100644 --- a/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleWebhookNotificationObject.md +++ b/src/Monitor/Autoscale.Autorest/docs/New-AzAutoscaleWebhookNotificationObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzAutoscaleWebhookNotificationObject +online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-azautoscalewebhooknotificationobject schema: 2.0.0 --- @@ -34,10 +34,9 @@ Create webhook notification object ### -Property a property bag of settings. This value can be empty. -To construct, see NOTES section for PROPERTY properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IWebhookNotificationProperties +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IWebhookNotificationProperties Parameter Sets: (All) Aliases: @@ -70,7 +69,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.WebhookNotification +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.WebhookNotification ## NOTES diff --git a/src/Monitor/Autoscale.Autorest/docs/Remove-AzAutoscaleSetting.md b/src/Monitor/Autoscale.Autorest/docs/Remove-AzAutoscaleSetting.md index e5c5c5e6fa53..02e714c2f52e 100644 --- a/src/Monitor/Autoscale.Autorest/docs/Remove-AzAutoscaleSetting.md +++ b/src/Monitor/Autoscale.Autorest/docs/Remove-AzAutoscaleSetting.md @@ -56,7 +56,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleIdentity diff --git a/src/Monitor/Autoscale.Autorest/docs/Update-AzAutoscaleSetting.md b/src/Monitor/Autoscale.Autorest/docs/Update-AzAutoscaleSetting.md index af99b248ea60..f4a33ed1bd24 100644 --- a/src/Monitor/Autoscale.Autorest/docs/Update-AzAutoscaleSetting.md +++ b/src/Monitor/Autoscale.Autorest/docs/Update-AzAutoscaleSetting.md @@ -17,19 +17,18 @@ To update other fields use the CreateOrUpdate method. ``` Update-AzAutoscaleSetting -Name -ResourceGroupName [-SubscriptionId ] [-Enabled ] [-Notification ] - [-PredictiveAutoscalePolicyScaleLookAheadTime ] - [-PredictiveAutoscalePolicyScaleMode ] [-Profile ] - [-Tag ] [-TargetResourceLocation ] [-TargetResourceUri ] - [-DefaultProfile ] [-Confirm] [-WhatIf] [] + [-PredictiveAutoscalePolicyScaleLookAheadTime ] [-PredictiveAutoscalePolicyScaleMode ] + [-Profile ] [-Tag ] [-TargetResourceLocation ] + [-TargetResourceUri ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` ### UpdateViaIdentityExpanded ``` Update-AzAutoscaleSetting -InputObject [-Enabled ] [-Notification ] [-PredictiveAutoscalePolicyScaleLookAheadTime ] - [-PredictiveAutoscalePolicyScaleMode ] [-Profile ] - [-Tag ] [-TargetResourceLocation ] [-TargetResourceUri ] - [-DefaultProfile ] [-Confirm] [-WhatIf] [] + [-PredictiveAutoscalePolicyScaleMode ] [-Profile ] [-Tag ] + [-TargetResourceLocation ] [-TargetResourceUri ] [-DefaultProfile ] [-Confirm] + [-WhatIf] [] ``` ## DESCRIPTION @@ -115,7 +114,7 @@ the collection of notifications. To construct, see NOTES section for NOTIFICATION properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleNotification[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleNotification[] Parameter Sets: (All) Aliases: @@ -146,7 +145,7 @@ Accept wildcard characters: False the predictive autoscale mode ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.PredictiveAutoscalePolicyScaleMode +Type: System.String Parameter Sets: (All) Aliases: @@ -163,7 +162,7 @@ A maximum of 20 profiles can be specified. To construct, see NOTES section for PROFILE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleProfile[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleProfile[] Parameter Sets: (All) Aliases: @@ -290,7 +289,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleSettingResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleSettingResource ## NOTES diff --git a/src/Monitor/Autoscale.Autorest/generate-info.json b/src/Monitor/Autoscale.Autorest/generate-info.json index 97d2a5915591..04ae1706fe04 100644 --- a/src/Monitor/Autoscale.Autorest/generate-info.json +++ b/src/Monitor/Autoscale.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "4dc0c7be-517b-4e7e-919e-a967cc2b9ae2" + "generate_Id": "47241ba7-acf0-4f0f-8719-bcba7287d058" } diff --git a/src/Monitor/Autoscale.Autorest/test/Autoscale.Recording.json b/src/Monitor/Autoscale.Autorest/test/Autoscale.Recording.json index bf61fc015da5..75527423d03c 100644 --- a/src/Monitor/Autoscale.Autorest/test/Autoscale.Recording.json +++ b/src/Monitor/Autoscale.Autorest/test/Autoscale.Recording.json @@ -1,15 +1,15 @@ { - "Autoscale+[NoContext]+CRUD+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/autoscale-groupmkwzn5/providers/Microsoft.Insights/autoscalesettings/test-autoscalesettingeijgb5?api-version=2022-10-01+1": { + "Autoscale+[NoContext]+CRUD+$PUT+https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/autoscale-groupn5j8xc/providers/Microsoft.Insights/autoscalesettings/test-autoscalesettingtpxwua?api-version=2022-10-01+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/autoscale-groupmkwzn5/providers/Microsoft.Insights/autoscalesettings/test-autoscalesettingeijgb5?api-version=2022-10-01", - "Content": "{\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"predictiveAutoscalePolicy\": {\r\n \"scaleMode\": \"Enabled\",\r\n \"scaleLookAheadTime\": \"PT5M\"\r\n },\r\n \"profiles\": [\r\n {\r\n \"capacity\": {\r\n \"minimum\": \"1\",\r\n \"maximum\": \"10\",\r\n \"default\": \"1\"\r\n },\r\n \"fixedDate\": {\r\n \"timeZone\": \"UTC\",\r\n \"start\": \"2022-12-31T21:00:00.0000000+08:00\",\r\n \"end\": \"2022-12-31T22:00:00.0000000+08:00\"\r\n },\r\n \"name\": \"adios\",\r\n \"rules\": [\r\n {\r\n \"metricTrigger\": {\r\n \"metricName\": \"Percentage CPU\",\r\n \"metricResourceUri\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/autoscale-groupmkwzn5/providers/Microsoft.Compute/virtualMachineScaleSets/test-vmsstuc9nx\",\r\n \"timeGrain\": \"PT1M\",\r\n \"statistic\": \"Average\",\r\n \"timeWindow\": \"PT5M\",\r\n \"timeAggregation\": \"Average\",\r\n \"operator\": \"GreaterThan\",\r\n \"threshold\": 10,\r\n \"dividePerInstance\": false\r\n },\r\n \"scaleAction\": {\r\n \"direction\": \"Increase\",\r\n \"type\": \"ChangeCount\",\r\n \"value\": \"1\",\r\n \"cooldown\": \"PT5M\"\r\n }\r\n }\r\n ]\r\n }\r\n ],\r\n \"notifications\": [\r\n {\r\n \"email\": {\r\n \"sendToSubscriptionAdministrator\": true,\r\n \"sendToSubscriptionCoAdministrators\": true,\r\n \"customEmails\": [ \"gu@ms.com\" ]\r\n },\r\n \"operation\": \"Scale\",\r\n \"webhooks\": [\r\n {\r\n \"serviceUri\": \"http://myservice.com\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"enabled\": true,\r\n \"targetResourceUri\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/autoscale-groupmkwzn5/providers/Microsoft.Compute/virtualMachineScaleSets/test-vmsstuc9nx\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/autoscale-groupn5j8xc/providers/Microsoft.Insights/autoscalesettings/test-autoscalesettingtpxwua?api-version=2022-10-01", + "Content": "{\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"predictiveAutoscalePolicy\": {\r\n \"scaleMode\": \"Enabled\",\r\n \"scaleLookAheadTime\": \"PT5M\"\r\n },\r\n \"profiles\": [\r\n {\r\n \"capacity\": {\r\n \"minimum\": \"1\",\r\n \"maximum\": \"10\",\r\n \"default\": \"1\"\r\n },\r\n \"fixedDate\": {\r\n \"timeZone\": \"UTC\",\r\n \"start\": \"2022-12-31T21:00:00.0000000+08:00\",\r\n \"end\": \"2022-12-31T22:00:00.0000000+08:00\"\r\n },\r\n \"name\": \"adios\",\r\n \"rules\": [\r\n {\r\n \"metricTrigger\": {\r\n \"metricName\": \"Percentage CPU\",\r\n \"metricResourceUri\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/autoscale-groupn5j8xc/providers/Microsoft.Compute/virtualMachineScaleSets/test-vmss9g01m2\",\r\n \"timeGrain\": \"PT1M\",\r\n \"statistic\": \"Average\",\r\n \"timeWindow\": \"PT5M\",\r\n \"timeAggregation\": \"Average\",\r\n \"operator\": \"GreaterThan\",\r\n \"threshold\": 10,\r\n \"dividePerInstance\": false\r\n },\r\n \"scaleAction\": {\r\n \"direction\": \"Increase\",\r\n \"type\": \"ChangeCount\",\r\n \"value\": \"1\",\r\n \"cooldown\": \"PT5M\"\r\n }\r\n }\r\n ]\r\n }\r\n ],\r\n \"notifications\": [\r\n {\r\n \"email\": {\r\n \"customEmails\": [ \"gu@ms.com\" ]\r\n },\r\n \"operation\": \"Scale\",\r\n \"webhooks\": [\r\n {\r\n \"serviceUri\": \"http://myservice.com\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"enabled\": true,\r\n \"targetResourceUri\": \"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/autoscale-groupn5j8xc/providers/Microsoft.Compute/virtualMachineScaleSets/test-vmss9g01m2\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1919" ] + "Content-Length": [ "1812" ] } }, "Response": { @@ -18,36 +18,39 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "cb135886-fd05-4413-9601-15b324619b51" ], - "Server": [ "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-correlation-request-id": [ "8623f5f5-e3e8-4437-8454-c8e5153d3a57" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220921T033831Z:8623f5f5-e3e8-4437-8454-c8e5153d3a57" ], + "x-ms-request-id": [ "d9b5c41f-6ee3-440d-8c5f-77a1d278588b" ], + "x-ms-operation-identifier": [ "tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=0f876fc3-c749-4607-ad50-c13ef1569cea/southeastasia/af570d67-288c-4bac-9096-28497c70a599" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "199" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "2999" ], + "x-ms-correlation-request-id": [ "38a8a2f8-8085-4925-be7d-aea9731b743e" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250701T071830Z:38a8a2f8-8085-4925-be7d-aea9731b743e" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 21 Sep 2022 03:38:30 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 30DE9381726E41CEB7A41EE7B3EB964A Ref B: MAA201060513039 Ref C: 2025-07-01T07:18:23Z" ], + "Date": [ "Tue, 01 Jul 2025 07:18:30 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1546" ], + "Content-Length": [ "1548" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/autoscale-groupmkwzn5/providers/microsoft.insights/autoscalesettings/test-autoscalesettingeijgb5\",\"name\":\"test-autoscalesettingeijgb5\",\"type\":\"Microsoft.Insights/autoscaleSettings\",\"location\":\"westeurope\",\"tags\":{},\"properties\":{\"profiles\":[{\"name\":\"adios\",\"capacity\":{\"minimum\":\"1\",\"maximum\":\"10\",\"default\":\"1\"},\"rules\":[{\"metricTrigger\":{\"metricName\":\"Percentage CPU\",\"metricNamespace\":\"\",\"metricResourceUri\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/autoscale-groupmkwzn5/providers/Microsoft.Compute/virtualMachineScaleSets/test-vmsstuc9nx\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT5M\",\"timeAggregation\":\"Average\",\"operator\":\"GreaterThan\",\"threshold\":10.0,\"dimensions\":null,\"dividePerInstance\":false},\"scaleAction\":{\"direction\":\"Increase\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT5M\"}}],\"fixedDate\":{\"timeZone\":\"UTC\",\"start\":\"2022-12-31T13:00:00Z\",\"end\":\"2022-12-31T14:00:00Z\"}}],\"enabled\":true,\"name\":\"test-autoscalesettingeijgb5\",\"targetResourceUri\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/autoscale-groupmkwzn5/providers/Microsoft.Compute/virtualMachineScaleSets/test-vmsstuc9nx\",\"notifications\":[{\"operation\":\"Scale\",\"email\":{\"sendToSubscriptionAdministrator\":true,\"sendToSubscriptionCoAdministrators\":true,\"customEmails\":[\"gu@ms.com\"]},\"webhooks\":[{\"serviceUri\":\"http://myservice.com\",\"properties\":null}]}],\"predictiveAutoscalePolicy\":{\"scaleMode\":\"Enabled\",\"scaleLookAheadTime\":\"PT5M\"}}}", + "Content": "{\"id\":\"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/autoscale-groupn5j8xc/providers/microsoft.insights/autoscalesettings/test-autoscalesettingtpxwua\",\"name\":\"test-autoscalesettingtpxwua\",\"type\":\"Microsoft.Insights/autoscaleSettings\",\"location\":\"westeurope\",\"tags\":{},\"properties\":{\"profiles\":[{\"name\":\"adios\",\"capacity\":{\"minimum\":\"1\",\"maximum\":\"10\",\"default\":\"1\"},\"rules\":[{\"metricTrigger\":{\"metricName\":\"Percentage CPU\",\"metricNamespace\":\"\",\"metricResourceUri\":\"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/autoscale-groupn5j8xc/providers/Microsoft.Compute/virtualMachineScaleSets/test-vmss9g01m2\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT5M\",\"timeAggregation\":\"Average\",\"operator\":\"GreaterThan\",\"threshold\":10.0,\"dimensions\":null,\"dividePerInstance\":false},\"scaleAction\":{\"direction\":\"Increase\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT5M\"}}],\"fixedDate\":{\"timeZone\":\"UTC\",\"start\":\"2022-12-31T13:00:00Z\",\"end\":\"2022-12-31T14:00:00Z\"}}],\"enabled\":true,\"name\":\"test-autoscalesettingtpxwua\",\"targetResourceUri\":\"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/autoscale-groupn5j8xc/providers/Microsoft.Compute/virtualMachineScaleSets/test-vmss9g01m2\",\"notifications\":[{\"operation\":\"Scale\",\"email\":{\"sendToSubscriptionAdministrator\":false,\"sendToSubscriptionCoAdministrators\":false,\"customEmails\":[\"gu@ms.com\"]},\"webhooks\":[{\"serviceUri\":\"http://myservice.com\",\"properties\":null}]}],\"predictiveAutoscalePolicy\":{\"scaleMode\":\"Enabled\",\"scaleLookAheadTime\":\"PT5M\"}}}", "isContentBase64": false } }, - "Autoscale+[NoContext]+CRUD+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/autoscale-groupmkwzn5/providers/Microsoft.Insights/autoscalesettings/test-autoscalesettingeijgb5?api-version=2022-10-01+2": { + "Autoscale+[NoContext]+CRUD+$GET+https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/autoscale-groupn5j8xc/providers/Microsoft.Insights/autoscalesettings/test-autoscalesettingtpxwua?api-version=2022-10-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/autoscale-groupmkwzn5/providers/Microsoft.Insights/autoscalesettings/test-autoscalesettingeijgb5?api-version=2022-10-01", + "RequestUri": "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/autoscale-groupn5j8xc/providers/Microsoft.Insights/autoscalesettings/test-autoscalesettingtpxwua?api-version=2022-10-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "3" ], - "x-ms-client-request-id": [ "be7d3eab-c234-412c-adbd-5f31b9e6cb8e" ], + "x-ms-client-request-id": [ "3a719029-2dad-4266-af97-fd8a631a6882" ], "CommandName": [ "Get-AzAutoscaleSetting" ], "FullCommandName": [ "Get-AzAutoscaleSetting_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.6", "Az.Autoscale/0.1.0" ], + "User-Agent": [ "AzurePowershell/v14.1.0", "PSVersion/v7.5.1", "Az.Autoscale/6.0.2" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -59,36 +62,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "8f563c6e-1a50-4ddf-97a0-aac19716d64b" ], - "Server": [ "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-correlation-request-id": [ "008d7380-3104-4925-858c-6c932ad7f2b6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220921T033831Z:008d7380-3104-4925-858c-6c932ad7f2b6" ], + "x-ms-request-id": [ "7912ec4d-a50a-48fb-9e24-ad824669bd88" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-correlation-request-id": [ "f32dee8f-9c3f-4ee8-a95c-f11677f42cf1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250701T071832Z:f32dee8f-9c3f-4ee8-a95c-f11677f42cf1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 21 Sep 2022 03:38:30 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8ADB3D23B4694D5CBCB9ADD155343C48 Ref B: MAA201060513039 Ref C: 2025-07-01T07:18:31Z" ], + "Date": [ "Tue, 01 Jul 2025 07:18:32 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1546" ], + "Content-Length": [ "1548" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/autoscale-groupmkwzn5/providers/microsoft.insights/autoscalesettings/test-autoscalesettingeijgb5\",\"name\":\"test-autoscalesettingeijgb5\",\"type\":\"Microsoft.Insights/autoscaleSettings\",\"location\":\"westeurope\",\"tags\":{},\"properties\":{\"profiles\":[{\"name\":\"adios\",\"capacity\":{\"minimum\":\"1\",\"maximum\":\"10\",\"default\":\"1\"},\"rules\":[{\"metricTrigger\":{\"metricName\":\"Percentage CPU\",\"metricNamespace\":\"\",\"metricResourceUri\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/autoscale-groupmkwzn5/providers/Microsoft.Compute/virtualMachineScaleSets/test-vmsstuc9nx\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT5M\",\"timeAggregation\":\"Average\",\"operator\":\"GreaterThan\",\"threshold\":10.0,\"dimensions\":null,\"dividePerInstance\":false},\"scaleAction\":{\"direction\":\"Increase\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT5M\"}}],\"fixedDate\":{\"timeZone\":\"UTC\",\"start\":\"2022-12-31T13:00:00Z\",\"end\":\"2022-12-31T14:00:00Z\"}}],\"enabled\":true,\"name\":\"test-autoscalesettingeijgb5\",\"targetResourceUri\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/autoscale-groupmkwzn5/providers/Microsoft.Compute/virtualMachineScaleSets/test-vmsstuc9nx\",\"notifications\":[{\"operation\":\"Scale\",\"email\":{\"sendToSubscriptionAdministrator\":true,\"sendToSubscriptionCoAdministrators\":true,\"customEmails\":[\"gu@ms.com\"]},\"webhooks\":[{\"serviceUri\":\"http://myservice.com\",\"properties\":null}]}],\"predictiveAutoscalePolicy\":{\"scaleMode\":\"Enabled\",\"scaleLookAheadTime\":\"PT5M\"}}}", + "Content": "{\"id\":\"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/autoscale-groupn5j8xc/providers/microsoft.insights/autoscalesettings/test-autoscalesettingtpxwua\",\"name\":\"test-autoscalesettingtpxwua\",\"type\":\"Microsoft.Insights/autoscaleSettings\",\"location\":\"westeurope\",\"tags\":{},\"properties\":{\"profiles\":[{\"name\":\"adios\",\"capacity\":{\"minimum\":\"1\",\"maximum\":\"10\",\"default\":\"1\"},\"rules\":[{\"metricTrigger\":{\"metricName\":\"Percentage CPU\",\"metricNamespace\":\"\",\"metricResourceUri\":\"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/autoscale-groupn5j8xc/providers/Microsoft.Compute/virtualMachineScaleSets/test-vmss9g01m2\",\"timeGrain\":\"PT1M\",\"statistic\":\"Average\",\"timeWindow\":\"PT5M\",\"timeAggregation\":\"Average\",\"operator\":\"GreaterThan\",\"threshold\":10.0,\"dimensions\":null,\"dividePerInstance\":false},\"scaleAction\":{\"direction\":\"Increase\",\"type\":\"ChangeCount\",\"value\":\"1\",\"cooldown\":\"PT5M\"}}],\"fixedDate\":{\"timeZone\":\"UTC\",\"start\":\"2022-12-31T13:00:00Z\",\"end\":\"2022-12-31T14:00:00Z\"}}],\"enabled\":true,\"name\":\"test-autoscalesettingtpxwua\",\"targetResourceUri\":\"/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/autoscale-groupn5j8xc/providers/Microsoft.Compute/virtualMachineScaleSets/test-vmss9g01m2\",\"notifications\":[{\"operation\":\"Scale\",\"email\":{\"sendToSubscriptionAdministrator\":false,\"sendToSubscriptionCoAdministrators\":false,\"customEmails\":[\"gu@ms.com\"]},\"webhooks\":[{\"serviceUri\":\"http://myservice.com\",\"properties\":null}]}],\"predictiveAutoscalePolicy\":{\"scaleMode\":\"Enabled\",\"scaleLookAheadTime\":\"PT5M\"}}}", "isContentBase64": false } }, - "Autoscale+[NoContext]+CRUD+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/autoscale-groupmkwzn5/providers/Microsoft.Insights/autoscalesettings/test-autoscalesettingeijgb5?api-version=2022-10-01+3": { + "Autoscale+[NoContext]+CRUD+$DELETE+https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/autoscale-groupn5j8xc/providers/Microsoft.Insights/autoscalesettings/test-autoscalesettingtpxwua?api-version=2022-10-01+3": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/autoscale-groupmkwzn5/providers/Microsoft.Insights/autoscalesettings/test-autoscalesettingeijgb5?api-version=2022-10-01", + "RequestUri": "https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourcegroups/autoscale-groupn5j8xc/providers/Microsoft.Insights/autoscalesettings/test-autoscalesettingtpxwua?api-version=2022-10-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "4" ], - "x-ms-client-request-id": [ "231d40e5-f4b2-4302-9816-bb19c65d1ecc" ], + "x-ms-client-request-id": [ "40feb826-9244-4433-a041-15ec9ad59354" ], "CommandName": [ "Remove-AzAutoscaleSetting" ], "FullCommandName": [ "Remove-AzAutoscaleSetting_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.6", "Az.Autoscale/0.1.0" ], + "User-Agent": [ "AzurePowershell/v14.1.0", "PSVersion/v7.5.1", "Az.Autoscale/6.0.2" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -100,13 +105,16 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "704c137d-c7a4-4c05-8908-bcb6f8a92b37" ], - "Server": [ "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "e9b6ac14-f4ff-4ee4-bf68-fe138ec903be" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220921T033834Z:e9b6ac14-f4ff-4ee4-bf68-fe138ec903be" ], + "x-ms-request-id": [ "d5700a41-fd03-4bfd-b78f-87a5404e4254" ], + "x-ms-operation-identifier": [ "tenantId=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a,objectId=0f876fc3-c749-4607-ad50-c13ef1569cea/southeastasia/7047977b-feda-4a61-a255-d03e89ebcdb6" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "199" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "2999" ], + "x-ms-correlation-request-id": [ "38e99621-999a-4586-81d8-bf67031a6ea1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250701T071838Z:38e99621-999a-4586-81d8-bf67031a6ea1" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 21 Sep 2022 03:38:33 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 66AE964ABD794C279E697A48CE0CED18 Ref B: MAA201060513039 Ref C: 2025-07-01T07:18:33Z" ], + "Date": [ "Tue, 01 Jul 2025 07:18:38 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Monitor/Autoscale.Autorest/test/Autoscale.Tests.ps1 b/src/Monitor/Autoscale.Autorest/test/Autoscale.Tests.ps1 index 57d0b9aab32d..18a11a5cb24a 100644 --- a/src/Monitor/Autoscale.Autorest/test/Autoscale.Tests.ps1 +++ b/src/Monitor/Autoscale.Autorest/test/Autoscale.Tests.ps1 @@ -19,7 +19,7 @@ Describe 'Autoscale' { $rule1=New-AzAutoscaleScaleRuleObject -MetricTriggerMetricName "Percentage CPU" -MetricTriggerMetricResourceUri $env.vmssId -MetricTriggerTimeGrain ([System.TimeSpan]::New(0,1,0)) -MetricTriggerStatistic "Average" -MetricTriggerTimeWindow ([System.TimeSpan]::New(0,5,0)) -MetricTriggerTimeAggregation "Average" -MetricTriggerOperator "GreaterThan" -MetricTriggerThreshold 10 -MetricTriggerDividePerInstance $false -ScaleActionDirection "Increase" -ScaleActionType "ChangeCount" -ScaleActionValue 1 -ScaleActionCooldown ([System.TimeSpan]::New(0,5,0)) $profile1=New-AzAutoscaleProfileObject -Name "adios" -CapacityDefault 1 -CapacityMaximum 10 -CapacityMinimum 1 -Rule $rule1 -FixedDateEnd ([System.DateTime]::Parse("2022-12-31T14:00:00Z")) -FixedDateStart ([System.DateTime]::Parse("2022-12-31T13:00:00Z")) -FixedDateTimeZone "UTC" $webhook1=New-AzAutoscaleWebhookNotificationObject -Property @{} -ServiceUri "http://myservice.com" - $notification1=New-AzAutoscaleNotificationObject -EmailCustomEmail "gu@ms.com" -EmailSendToSubscriptionAdministrator $true -EmailSendToSubscriptionCoAdministrator $true -Webhook $webhook1 + $notification1=New-AzAutoscaleNotificationObject -EmailCustomEmail "gu@ms.com" -Webhook $webhook1 New-AzAutoscaleSetting -Name $env.autoscaleSettingName -ResourceGroupName $env.resourceGroupName -Location westeurope -Profile $profile1 -Enabled -Notification $notification1 -PredictiveAutoscalePolicyScaleLookAheadTime ([System.TimeSpan]::New(0,5,0)) -PredictiveAutoscalePolicyScaleMode 'Enabled' -TargetResourceUri $env.vmssId $setting = Get-AzAutoscaleSetting -Name $env.autoscaleSettingName -ResourceGroupName $env.resourceGroupName diff --git a/src/Monitor/Autoscale.Autorest/test/env.json b/src/Monitor/Autoscale.Autorest/test/env.json index 6303eca1376f..e4dfcfeef8b8 100644 --- a/src/Monitor/Autoscale.Autorest/test/env.json +++ b/src/Monitor/Autoscale.Autorest/test/env.json @@ -1,8 +1,8 @@ { - "vmssId": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/autoscale-groupmkwzn5/providers/Microsoft.Compute/virtualMachineScaleSets/test-vmsstuc9nx", - "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "SubscriptionId": "9e223dbe-3399-4e19-88eb-0975f02ac87f", - "resourceGroupName": "autoscale-groupmkwzn5", - "autoscaleSettingName": "test-autoscalesettingeijgb5", - "vmssName": "test-vmsstuc9nx" + "resourceGroupName": "autoscale-groupn5j8xc", + "Tenant": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", + "SubscriptionId": "0b1f6471-1bf0-4dda-aec3-cb9272f09590", + "autoscaleSettingName": "test-autoscalesettingtpxwua", + "vmssId": "/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/autoscale-groupn5j8xc/providers/Microsoft.Compute/virtualMachineScaleSets/test-vmss9g01m2", + "vmssName": "test-vmss9g01m2" } diff --git a/src/Monitor/DiagnosticSetting.Autorest/Properties/AssemblyInfo.cs b/src/Monitor/DiagnosticSetting.Autorest/Properties/AssemblyInfo.cs index 2a232c23ffd2..fe75862408b6 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/Properties/AssemblyInfo.cs +++ b/src/Monitor/DiagnosticSetting.Autorest/Properties/AssemblyInfo.cs @@ -23,5 +23,4 @@ [assembly: System.Reflection.AssemblyFileVersionAttribute("6.0.2")] [assembly: System.Reflection.AssemblyVersionAttribute("6.0.2")] [assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)] -[assembly: System.CLSCompliantAttribute(false)] - +[assembly: System.CLSCompliantAttribute(false)] \ No newline at end of file diff --git a/src/Monitor/DiagnosticSetting.Autorest/README.md b/src/Monitor/DiagnosticSetting.Autorest/README.md index c385cda2b9fc..e38feb7d4c77 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/README.md +++ b/src/Monitor/DiagnosticSetting.Autorest/README.md @@ -42,15 +42,6 @@ title: DiagnosticSetting module-version: 0.1.0 subject-prefix: DiagnosticSetting namespace: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting -nested-object-to-string: true - -# If there are post APIs for some kinds of actions in the RP, you may need to -# uncomment following line to support viaIdentity for these post APIs -# identity-correction-for-post: true - -# For new modules, please avoid setting 3.x using the use-extension method and instead, use 4.x as the default option -use-extension: - "@autorest/powershell": "3.x" directive: - where: @@ -107,7 +98,7 @@ directive: # 1. Remove the unexpanded parameter set # 2. For New-* cmdlets, ViaIdentity is not required, so CreateViaIdentityExpanded is removed as well - where: - variant: ^Create$|^CreateViaIdentity$|^CreateViaIdentityExpanded$|^Update$|^UpdateViaIdentity$ + variant: ^(Create|Update)(?!.*?(Expanded|JsonFilePath|JsonString))|^CreateViaIdentityExpanded$ remove: true # Remove Set cmdlet - where: @@ -129,7 +120,7 @@ directive: subject-prefix: "" - model-cmdlet: - - MetricSettings - - LogSettings - - SubscriptionLogSettings + - model-name: MetricSettings + - model-name: LogSettings + - model-name: SubscriptionLogSettings ``` diff --git a/src/Monitor/DiagnosticSetting.Autorest/custom/autogen-model-cmdlets/New-AzDiagnosticSettingLogSettingsObject.ps1 b/src/Monitor/DiagnosticSetting.Autorest/custom/autogen-model-cmdlets/New-AzDiagnosticSettingLogSettingsObject.ps1 index b9ac8dccb56c..0119d2e8898a 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/custom/autogen-model-cmdlets/New-AzDiagnosticSettingLogSettingsObject.ps1 +++ b/src/Monitor/DiagnosticSetting.Autorest/custom/autogen-model-cmdlets/New-AzDiagnosticSettingLogSettingsObject.ps1 @@ -21,12 +21,13 @@ Create an in-memory object for LogSettings. Create an in-memory object for LogSettings. .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.LogSettings +Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.LogSettings .Link -https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzDiagnosticSettingLogSettingsObject +https://learn.microsoft.com/powershell/module/Az.Monitor/new-azdiagnosticsettinglogsettingsobject #> function New-AzDiagnosticSettingLogSettingsObject { - [OutputType('Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.LogSettings')] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.ModelCmdletAttribute()] + [OutputType('Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.LogSettings')] [CmdletBinding(PositionalBinding=$false)] Param( @@ -48,7 +49,7 @@ function New-AzDiagnosticSettingLogSettingsObject { ) process { - $Object = [Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.LogSettings]::New() + $Object = [Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.LogSettings]::New() if ($PSBoundParameters.ContainsKey('Category')) { $Object.Category = $Category diff --git a/src/Monitor/DiagnosticSetting.Autorest/custom/autogen-model-cmdlets/New-AzDiagnosticSettingMetricSettingsObject.ps1 b/src/Monitor/DiagnosticSetting.Autorest/custom/autogen-model-cmdlets/New-AzDiagnosticSettingMetricSettingsObject.ps1 index e5766a5a947e..0ea764e4c7c9 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/custom/autogen-model-cmdlets/New-AzDiagnosticSettingMetricSettingsObject.ps1 +++ b/src/Monitor/DiagnosticSetting.Autorest/custom/autogen-model-cmdlets/New-AzDiagnosticSettingMetricSettingsObject.ps1 @@ -21,12 +21,13 @@ Create an in-memory object for MetricSettings. Create an in-memory object for MetricSettings. .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.MetricSettings +Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.MetricSettings .Link -https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzDiagnosticSettingMetricSettingsObject +https://learn.microsoft.com/powershell/module/Az.Monitor/new-azdiagnosticsettingmetricsettingsobject #> function New-AzDiagnosticSettingMetricSettingsObject { - [OutputType('Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.MetricSettings')] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.ModelCmdletAttribute()] + [OutputType('Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.MetricSettings')] [CmdletBinding(PositionalBinding=$false)] Param( @@ -48,7 +49,7 @@ function New-AzDiagnosticSettingMetricSettingsObject { ) process { - $Object = [Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.MetricSettings]::New() + $Object = [Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.MetricSettings]::New() if ($PSBoundParameters.ContainsKey('Category')) { $Object.Category = $Category diff --git a/src/Monitor/DiagnosticSetting.Autorest/custom/autogen-model-cmdlets/New-AzDiagnosticSettingSubscriptionLogSettingsObject.ps1 b/src/Monitor/DiagnosticSetting.Autorest/custom/autogen-model-cmdlets/New-AzDiagnosticSettingSubscriptionLogSettingsObject.ps1 index a089b6f3caa8..cc6e53f66a17 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/custom/autogen-model-cmdlets/New-AzDiagnosticSettingSubscriptionLogSettingsObject.ps1 +++ b/src/Monitor/DiagnosticSetting.Autorest/custom/autogen-model-cmdlets/New-AzDiagnosticSettingSubscriptionLogSettingsObject.ps1 @@ -21,12 +21,13 @@ Create an in-memory object for SubscriptionLogSettings. Create an in-memory object for SubscriptionLogSettings. .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.SubscriptionLogSettings +Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.SubscriptionLogSettings .Link -https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzDiagnosticSettingSubscriptionLogSettingsObject +https://learn.microsoft.com/powershell/module/Az.Monitor/new-azdiagnosticsettingsubscriptionlogsettingsobject #> function New-AzDiagnosticSettingSubscriptionLogSettingsObject { - [OutputType('Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.SubscriptionLogSettings')] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.ModelCmdletAttribute()] + [OutputType('Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.SubscriptionLogSettings')] [CmdletBinding(PositionalBinding=$false)] Param( @@ -42,7 +43,7 @@ function New-AzDiagnosticSettingSubscriptionLogSettingsObject { ) process { - $Object = [Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.SubscriptionLogSettings]::New() + $Object = [Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.SubscriptionLogSettings]::New() if ($PSBoundParameters.ContainsKey('Category')) { $Object.Category = $Category diff --git a/src/Monitor/DiagnosticSetting.Autorest/docs/Az.DiagnosticSetting.md b/src/Monitor/DiagnosticSetting.Autorest/docs/Az.DiagnosticSetting.md index 3c645346c183..4339333046ed 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/docs/Az.DiagnosticSetting.md +++ b/src/Monitor/DiagnosticSetting.Autorest/docs/Az.DiagnosticSetting.md @@ -25,7 +25,7 @@ The current list includes the following: Administrative, Security, ServiceHealth Gets the active subscription diagnostic settings for the specified resource. ### [New-AzDiagnosticSetting](New-AzDiagnosticSetting.md) -Creates or updates diagnostic settings for the specified resource. +Create diagnostic settings for the specified resource. ### [New-AzDiagnosticSettingLogSettingsObject](New-AzDiagnosticSettingLogSettingsObject.md) Create an in-memory object for LogSettings. @@ -37,7 +37,7 @@ Create an in-memory object for MetricSettings. Create an in-memory object for SubscriptionLogSettings. ### [New-AzSubscriptionDiagnosticSetting](New-AzSubscriptionDiagnosticSetting.md) -Creates or updates subscription diagnostic settings for the specified resource. +Create subscription diagnostic settings for the specified resource. ### [Remove-AzDiagnosticSetting](Remove-AzDiagnosticSetting.md) Deletes existing diagnostic settings for the specified resource. @@ -45,3 +45,9 @@ Deletes existing diagnostic settings for the specified resource. ### [Remove-AzSubscriptionDiagnosticSetting](Remove-AzSubscriptionDiagnosticSetting.md) Deletes existing subscription diagnostic settings for the specified resource. +### [Update-AzDiagnosticSetting](Update-AzDiagnosticSetting.md) +Update diagnostic settings for the specified resource. + +### [Update-AzSubscriptionDiagnosticSetting](Update-AzSubscriptionDiagnosticSetting.md) +Update subscription diagnostic settings for the specified resource. + diff --git a/src/Monitor/DiagnosticSetting.Autorest/docs/Get-AzDiagnosticSetting.md b/src/Monitor/DiagnosticSetting.Autorest/docs/Get-AzDiagnosticSetting.md index 0974c7d158e7..73d157680203 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/docs/Get-AzDiagnosticSetting.md +++ b/src/Monitor/DiagnosticSetting.Autorest/docs/Get-AzDiagnosticSetting.md @@ -69,7 +69,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingIdentity @@ -122,7 +121,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.IDiagnosticSettingsResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingsResource ## NOTES diff --git a/src/Monitor/DiagnosticSetting.Autorest/docs/Get-AzDiagnosticSettingCategory.md b/src/Monitor/DiagnosticSetting.Autorest/docs/Get-AzDiagnosticSettingCategory.md index 9d6f9da8977d..896af77ef433 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/docs/Get-AzDiagnosticSettingCategory.md +++ b/src/Monitor/DiagnosticSetting.Autorest/docs/Get-AzDiagnosticSettingCategory.md @@ -62,7 +62,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingIdentity @@ -115,7 +114,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.IDiagnosticSettingsCategoryResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingsCategoryResource ## NOTES diff --git a/src/Monitor/DiagnosticSetting.Autorest/docs/Get-AzEventCategory.md b/src/Monitor/DiagnosticSetting.Autorest/docs/Get-AzEventCategory.md index 762cd607f535..ffeb7ddfebd6 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/docs/Get-AzEventCategory.md +++ b/src/Monitor/DiagnosticSetting.Autorest/docs/Get-AzEventCategory.md @@ -68,7 +68,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20150401.ILocalizableString +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ILocalizableString ## NOTES diff --git a/src/Monitor/DiagnosticSetting.Autorest/docs/Get-AzSubscriptionDiagnosticSetting.md b/src/Monitor/DiagnosticSetting.Autorest/docs/Get-AzSubscriptionDiagnosticSetting.md index 275e43a4e57f..2700e384232e 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/docs/Get-AzSubscriptionDiagnosticSetting.md +++ b/src/Monitor/DiagnosticSetting.Autorest/docs/Get-AzSubscriptionDiagnosticSetting.md @@ -69,7 +69,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingIdentity @@ -122,7 +121,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.ISubscriptionDiagnosticSettingsResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ISubscriptionDiagnosticSettingsResource ## NOTES diff --git a/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSetting.md b/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSetting.md index f13be452d25b..e39fe806fa7b 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSetting.md +++ b/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSetting.md @@ -8,10 +8,11 @@ schema: 2.0.0 # New-AzDiagnosticSetting ## SYNOPSIS -Creates or updates diagnostic settings for the specified resource. +Create diagnostic settings for the specified resource. ## SYNTAX +### CreateExpanded (Default) ``` New-AzDiagnosticSetting -Name -ResourceId [-EventHubAuthorizationRuleId ] [-EventHubName ] [-Log ] [-LogAnalyticsDestinationType ] @@ -20,8 +21,20 @@ New-AzDiagnosticSetting -Name -ResourceId [-EventHubAuthorizat [] ``` +### CreateViaJsonFilePath +``` +New-AzDiagnosticSetting -Name -ResourceId -JsonFilePath + [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### CreateViaJsonString +``` +New-AzDiagnosticSetting -Name -ResourceId -JsonString [-DefaultProfile ] + [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION -Creates or updates diagnostic settings for the specified resource. +Create diagnostic settings for the specified resource. ## EXAMPLES @@ -72,7 +85,7 @@ The resource Id for the event hub authorization rule. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -88,7 +101,7 @@ If none is specified, the default event hub will be selected. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -98,13 +111,42 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Log The list of logs settings. -To construct, see NOTES section for LOG properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.ILogSettings[] -Parameter Sets: (All) +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ILogSettings[] +Parameter Sets: CreateExpanded Aliases: Required: False @@ -121,7 +163,7 @@ Possible values are: Dedicated and null (null is default.) ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -136,7 +178,7 @@ The full ARM resource ID of the Marketplace resource to which you would like to ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -148,11 +190,10 @@ Accept wildcard characters: False ### -Metric The list of metric settings. -To construct, see NOTES section for METRIC properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.IMetricSettings[] -Parameter Sets: (All) +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IMetricSettings[] +Parameter Sets: CreateExpanded Aliases: Required: False @@ -198,7 +239,7 @@ This is here to maintain backwards compatibility. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -213,7 +254,7 @@ The resource ID of the storage account to which you would like to send Diagnosti ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -229,7 +270,7 @@ Example: /subscriptions/4b9e8510-67ab-4e9a-95a9-e2f1e570ea9c/resourceGroups/insi ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -277,7 +318,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.IDiagnosticSettingsResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingsResource ## NOTES diff --git a/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingLogSettingsObject.md b/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingLogSettingsObject.md index 79bdfbdcdd90..451dd28887d6 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingLogSettingsObject.md +++ b/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingLogSettingsObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzDiagnosticSettingLogSettingsObject +online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-azdiagnosticsettinglogsettingsobject schema: 2.0.0 --- @@ -116,7 +116,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.LogSettings +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.LogSettings ## NOTES diff --git a/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingMetricSettingsObject.md b/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingMetricSettingsObject.md index f1ae5a1e3840..c958ca441c37 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingMetricSettingsObject.md +++ b/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingMetricSettingsObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzDiagnosticSettingMetricSettingsObject +online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-azdiagnosticsettingmetricsettingsobject schema: 2.0.0 --- @@ -116,7 +116,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.MetricSettings +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.MetricSettings ## NOTES diff --git a/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingSubscriptionLogSettingsObject.md b/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingSubscriptionLogSettingsObject.md index cfd8c0454dbe..e4285c2d6d3f 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingSubscriptionLogSettingsObject.md +++ b/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzDiagnosticSettingSubscriptionLogSettingsObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzDiagnosticSettingSubscriptionLogSettingsObject +online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-azdiagnosticsettingsubscriptionlogsettingsobject schema: 2.0.0 --- @@ -83,7 +83,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.SubscriptionLogSettings +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.SubscriptionLogSettings ## NOTES diff --git a/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzSubscriptionDiagnosticSetting.md b/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzSubscriptionDiagnosticSetting.md index 95ac5acbb44a..0b8453dd7a83 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzSubscriptionDiagnosticSetting.md +++ b/src/Monitor/DiagnosticSetting.Autorest/docs/New-AzSubscriptionDiagnosticSetting.md @@ -8,10 +8,11 @@ schema: 2.0.0 # New-AzSubscriptionDiagnosticSetting ## SYNOPSIS -Creates or updates subscription diagnostic settings for the specified resource. +Create subscription diagnostic settings for the specified resource. ## SYNTAX +### CreateExpanded (Default) ``` New-AzSubscriptionDiagnosticSetting -Name [-SubscriptionId ] [-EventHubAuthorizationRuleId ] [-EventHubName ] [-Log ] @@ -19,8 +20,20 @@ New-AzSubscriptionDiagnosticSetting -Name [-SubscriptionId ] [-WorkspaceId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` +### CreateViaJsonFilePath +``` +New-AzSubscriptionDiagnosticSetting -Name -JsonFilePath [-SubscriptionId ] + [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### CreateViaJsonString +``` +New-AzSubscriptionDiagnosticSetting -Name -JsonString [-SubscriptionId ] + [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION -Creates or updates subscription diagnostic settings for the specified resource. +Create subscription diagnostic settings for the specified resource. ## EXAMPLES @@ -57,7 +70,7 @@ The resource Id for the event hub authorization rule. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -73,7 +86,7 @@ If none is specified, the default event hub will be selected. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -83,13 +96,42 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Log The list of logs settings. -To construct, see NOTES section for LOG properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.ISubscriptionLogSettings[] -Parameter Sets: (All) +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ISubscriptionLogSettings[] +Parameter Sets: CreateExpanded Aliases: Required: False @@ -104,7 +146,7 @@ The full ARM resource ID of the Marketplace resource to which you would like to ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -135,7 +177,7 @@ This is here to maintain backwards compatibility. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -150,7 +192,7 @@ The resource ID of the storage account to which you would like to send Diagnosti ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -181,7 +223,7 @@ Example: /subscriptions/4b9e8510-67ab-4e9a-95a9-e2f1e570ea9c/resourceGroups/insi ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -229,7 +271,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.ISubscriptionDiagnosticSettingsResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ISubscriptionDiagnosticSettingsResource ## NOTES diff --git a/src/Monitor/DiagnosticSetting.Autorest/docs/Remove-AzDiagnosticSetting.md b/src/Monitor/DiagnosticSetting.Autorest/docs/Remove-AzDiagnosticSetting.md index d0bf60f2905b..f1cfce958c20 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/docs/Remove-AzDiagnosticSetting.md +++ b/src/Monitor/DiagnosticSetting.Autorest/docs/Remove-AzDiagnosticSetting.md @@ -57,7 +57,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingIdentity diff --git a/src/Monitor/DiagnosticSetting.Autorest/docs/Remove-AzSubscriptionDiagnosticSetting.md b/src/Monitor/DiagnosticSetting.Autorest/docs/Remove-AzSubscriptionDiagnosticSetting.md index 152b4a4fc58a..ab56ab7c8f65 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/docs/Remove-AzSubscriptionDiagnosticSetting.md +++ b/src/Monitor/DiagnosticSetting.Autorest/docs/Remove-AzSubscriptionDiagnosticSetting.md @@ -56,7 +56,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingIdentity diff --git a/src/Monitor/DiagnosticSetting.Autorest/docs/Update-AzDiagnosticSetting.md b/src/Monitor/DiagnosticSetting.Autorest/docs/Update-AzDiagnosticSetting.md new file mode 100644 index 000000000000..b485c562669d --- /dev/null +++ b/src/Monitor/DiagnosticSetting.Autorest/docs/Update-AzDiagnosticSetting.md @@ -0,0 +1,295 @@ +--- +external help file: +Module Name: Az.Monitor +online version: https://learn.microsoft.com/powershell/module/az.monitor/update-azdiagnosticsetting +schema: 2.0.0 +--- + +# Update-AzDiagnosticSetting + +## SYNOPSIS +Update diagnostic settings for the specified resource. + +## SYNTAX + +### UpdateExpanded (Default) +``` +Update-AzDiagnosticSetting -Name -ResourceId [-EventHubAuthorizationRuleId ] + [-EventHubName ] [-Log ] [-LogAnalyticsDestinationType ] + [-MarketplacePartnerId ] [-Metric ] [-ServiceBusRuleId ] + [-StorageAccountId ] [-WorkspaceId ] [-DefaultProfile ] [-Confirm] [-WhatIf] + [] +``` + +### UpdateViaIdentityExpanded +``` +Update-AzDiagnosticSetting -InputObject [-EventHubAuthorizationRuleId ] + [-EventHubName ] [-Log ] [-LogAnalyticsDestinationType ] + [-MarketplacePartnerId ] [-Metric ] [-ServiceBusRuleId ] + [-StorageAccountId ] [-WorkspaceId ] [-DefaultProfile ] [-Confirm] [-WhatIf] + [] +``` + +## DESCRIPTION +Update diagnostic settings for the specified resource. + +## EXAMPLES + +### Example 1: Update diagnostic setting +```powershell +$newlog = New-AzDiagnosticSettingLogSettingsObject -Enabled $false -Category 'VMProtectionAlerts' +$newmetric = New-AzDiagnosticSettingMetricSettingsObject -Enabled $false -Category 'AllMetrics' +Update-AzDiagnosticSetting -Name diagnosticSettingName -ResourceId 'vnetId' -Log $newlog -Metric $newmetric +``` + +These commands update diagnostic setting for resource with log analytics workspace as destination. + +## PARAMETERS + +### -DefaultProfile +The DefaultProfile parameter is not functional. +Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EventHubAuthorizationRuleId +The resource Id for the event hub authorization rule. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EventHubName +The name of the event hub. +If none is specified, the default event hub will be selected. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingIdentity +Parameter Sets: UpdateViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Log +The list of logs settings. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ILogSettings[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -LogAnalyticsDestinationType +A string indicating whether the export to Log Analytics should use the default destination type, i.e. +AzureDiagnostics, or use a destination type constructed as follows: \_\. +Possible values are: Dedicated and null (null is default.) + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MarketplacePartnerId +The full ARM resource ID of the Marketplace resource to which you would like to send Diagnostic Logs. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Metric +The list of metric settings. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IMetricSettings[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the diagnostic setting. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The identifier of the resource. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceBusRuleId +The service bus rule Id of the diagnostic setting. +This is here to maintain backwards compatibility. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StorageAccountId +The resource ID of the storage account to which you would like to send Diagnostic Logs. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WorkspaceId +The full ARM resource ID of the Log Analytics workspace to which you would like to send Diagnostic Logs. +Example: /subscriptions/4b9e8510-67ab-4e9a-95a9-e2f1e570ea9c/resourceGroups/insights-integration/providers/Microsoft.OperationalInsights/workspaces/viruela2 + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingsResource + +## NOTES + +## RELATED LINKS + diff --git a/src/Monitor/DiagnosticSetting.Autorest/docs/Update-AzSubscriptionDiagnosticSetting.md b/src/Monitor/DiagnosticSetting.Autorest/docs/Update-AzSubscriptionDiagnosticSetting.md new file mode 100644 index 000000000000..9fe0912f1bf1 --- /dev/null +++ b/src/Monitor/DiagnosticSetting.Autorest/docs/Update-AzSubscriptionDiagnosticSetting.md @@ -0,0 +1,260 @@ +--- +external help file: +Module Name: Az.Monitor +online version: https://learn.microsoft.com/powershell/module/az.monitor/update-azsubscriptiondiagnosticsetting +schema: 2.0.0 +--- + +# Update-AzSubscriptionDiagnosticSetting + +## SYNOPSIS +Update subscription diagnostic settings for the specified resource. + +## SYNTAX + +### UpdateExpanded (Default) +``` +Update-AzSubscriptionDiagnosticSetting -Name [-SubscriptionId ] + [-EventHubAuthorizationRuleId ] [-EventHubName ] [-Log ] + [-MarketplacePartnerId ] [-ServiceBusRuleId ] [-StorageAccountId ] + [-WorkspaceId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### UpdateViaIdentityExpanded +``` +Update-AzSubscriptionDiagnosticSetting -InputObject + [-EventHubAuthorizationRuleId ] [-EventHubName ] [-Log ] + [-MarketplacePartnerId ] [-ServiceBusRuleId ] [-StorageAccountId ] + [-WorkspaceId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +## DESCRIPTION +Update subscription diagnostic settings for the specified resource. + +## EXAMPLES + +### Example 1: Update diagnostic setting for current subscription +```powershell +$log = New-AzDiagnosticSettingSubscriptionLogSettingsObject -Category Recommendation -Enabled $true +Update-AzSubscriptionDiagnosticSetting -Name settingname -WorkspaceId 'workspaceid' -Log $log +``` + +These command update diagnostic setting for current subscription. + +## PARAMETERS + +### -DefaultProfile +The DefaultProfile parameter is not functional. +Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EventHubAuthorizationRuleId +The resource Id for the event hub authorization rule. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EventHubName +The name of the event hub. +If none is specified, the default event hub will be selected. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingIdentity +Parameter Sets: UpdateViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Log +The list of logs settings. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ISubscriptionLogSettings[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MarketplacePartnerId +The full ARM resource ID of the Marketplace resource to which you would like to send Diagnostic Logs. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the diagnostic setting. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceBusRuleId +The service bus rule Id of the diagnostic setting. +This is here to maintain backwards compatibility. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StorageAccountId +The resource ID of the storage account to which you would like to send Diagnostic Logs. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WorkspaceId +The full ARM resource ID of the Log Analytics workspace to which you would like to send Diagnostic Logs. +Example: /subscriptions/4b9e8510-67ab-4e9a-95a9-e2f1e570ea9c/resourceGroups/insights-integration/providers/Microsoft.OperationalInsights/workspaces/viruela2 + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ISubscriptionDiagnosticSettingsResource + +## NOTES + +## RELATED LINKS + diff --git a/src/Monitor/DiagnosticSetting.Autorest/examples/Update-AzDiagnosticSetting.md b/src/Monitor/DiagnosticSetting.Autorest/examples/Update-AzDiagnosticSetting.md new file mode 100644 index 000000000000..871ae70e9e61 --- /dev/null +++ b/src/Monitor/DiagnosticSetting.Autorest/examples/Update-AzDiagnosticSetting.md @@ -0,0 +1,9 @@ +### Example 1: Update diagnostic setting +```powershell +$newlog = New-AzDiagnosticSettingLogSettingsObject -Enabled $false -Category 'VMProtectionAlerts' +$newmetric = New-AzDiagnosticSettingMetricSettingsObject -Enabled $false -Category 'AllMetrics' +Update-AzDiagnosticSetting -Name diagnosticSettingName -ResourceId 'vnetId' -Log $newlog -Metric $newmetric +``` + +These commands update diagnostic setting for resource with log analytics workspace as destination. + diff --git a/src/Monitor/DiagnosticSetting.Autorest/examples/Update-AzSubscriptionDiagnosticSetting.md b/src/Monitor/DiagnosticSetting.Autorest/examples/Update-AzSubscriptionDiagnosticSetting.md new file mode 100644 index 000000000000..e7c6f1a9d8be --- /dev/null +++ b/src/Monitor/DiagnosticSetting.Autorest/examples/Update-AzSubscriptionDiagnosticSetting.md @@ -0,0 +1,8 @@ +### Example 1: Update diagnostic setting for current subscription +```powershell +$log = New-AzDiagnosticSettingSubscriptionLogSettingsObject -Category Recommendation -Enabled $true +Update-AzSubscriptionDiagnosticSetting -Name settingname -WorkspaceId 'workspaceid' -Log $log +``` + +These command update diagnostic setting for current subscription. + diff --git a/src/Monitor/DiagnosticSetting.Autorest/generate-info.json b/src/Monitor/DiagnosticSetting.Autorest/generate-info.json index df09006b862a..b9cc139fe3dc 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/generate-info.json +++ b/src/Monitor/DiagnosticSetting.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "a61cca1c-3798-4b51-9d48-f8981ebf9903" + "generate_Id": "8e81e4bb-8582-47ce-9295-c9a7726e77cc" } diff --git a/src/Monitor/DiagnosticSetting.Autorest/test/DiagnosticSetting.Recording.json b/src/Monitor/DiagnosticSetting.Autorest/test/DiagnosticSetting.Recording.json index 6e97fedb6b82..050993a3d4cd 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/test/DiagnosticSetting.Recording.json +++ b/src/Monitor/DiagnosticSetting.Autorest/test/DiagnosticSetting.Recording.json @@ -1,17 +1,17 @@ { - "DiagnosticSetting+[NoContext]+CRUD+$GET+https://management.azure.com//subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/diagnostic-setting-groupwi87al/providers/Microsoft.Network/virtualNetworks/test-vnetijbg90/providers/Microsoft.Insights/diagnosticSettingsCategories?api-version=2021-05-01-preview+1": { + "DiagnosticSetting+[NoContext]+CRUD+$GET+https://management.azure.com//subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.Network/virtualNetworks/test-vnetxhjrie/providers/Microsoft.Insights/diagnosticSettingsCategories?api-version=2021-05-01-preview+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/diagnostic-setting-groupwi87al/providers/Microsoft.Network/virtualNetworks/test-vnetijbg90/providers/Microsoft.Insights/diagnosticSettingsCategories?api-version=2021-05-01-preview", + "RequestUri": "https://management.azure.com//subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.Network/virtualNetworks/test-vnetxhjrie/providers/Microsoft.Insights/diagnosticSettingsCategories?api-version=2021-05-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "2" ], - "x-ms-client-request-id": [ "6b13707b-7787-44d8-b2a3-850e9eabd74e" ], + "x-ms-client-request-id": [ "e343c3d7-0cc3-4621-815b-e6709b8c5c24" ], "CommandName": [ "Get-AzDiagnosticSettingCategory" ], "FullCommandName": [ "Get-AzDiagnosticSettingCategory_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.6", "Az.DiagnosticSetting/0.1.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.DiagnosticSetting/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -23,34 +23,37 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "67447332-5015-4464-9cd2-70ca2912e4cc" ], - "Server": [ "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], - "x-ms-correlation-request-id": [ "003c7107-2578-4390-b8b4-633a8dfd9102" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220921T073556Z:003c7107-2578-4390-b8b4-633a8dfd9102" ], + "x-ms-request-id": [ "a8e36354-4261-4b8f-a99e-da4759f24a55" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southindia/05c0663d-a0a7-4a3d-87e1-4da8290c33a4" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-correlation-request-id": [ "6a2fa38b-30b3-40a6-a901-1980eb0e50d5" ], + "x-ms-routing-request-id": [ "SOUTHINDIA:20250710T033717Z:6a2fa38b-30b3-40a6-a901-1980eb0e50d5" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 21 Sep 2022 07:35:55 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 74D3A41DB4E645CA80595CDF75A04B5A Ref B: MAA201060514021 Ref C: 2025-07-10T03:37:16Z" ], + "Date": [ "Thu, 10 Jul 2025 03:37:17 GMT" ] }, "ContentHeaders": { "Content-Length": [ "935" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/diagnostic-setting-groupwi87al/providers/microsoft.network/virtualnetworks/test-vnetijbg90/providers/microsoft.insights/diagnosticSettingsCategories/VMProtectionAlerts\",\"type\":\"microsoft.insights/diagnosticSettingsCategories\",\"name\":\"VMProtectionAlerts\",\"location\":null,\"kind\":null,\"tags\":null,\"properties\":{\"displayName\":\"VM protection alerts\",\"categoryType\":\"Logs\",\"categoryGroups\":[\"allLogs\"]},\"identity\":null},{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/diagnostic-setting-groupwi87al/providers/microsoft.network/virtualnetworks/test-vnetijbg90/providers/microsoft.insights/diagnosticSettingsCategories/AllMetrics\",\"type\":\"microsoft.insights/diagnosticSettingsCategories\",\"name\":\"AllMetrics\",\"location\":null,\"kind\":null,\"tags\":null,\"properties\":{\"displayName\":\"AllMetrics\",\"categoryType\":\"Metrics\"},\"identity\":null}]}", + "Content": "{\"value\":[{\"id\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourcegroups/diagnostic-setting-groupt9vaw5/providers/microsoft.network/virtualnetworks/test-vnetxhjrie/providers/microsoft.insights/diagnosticSettingsCategories/VMProtectionAlerts\",\"type\":\"microsoft.insights/diagnosticSettingsCategories\",\"name\":\"VMProtectionAlerts\",\"location\":null,\"kind\":null,\"tags\":null,\"properties\":{\"displayName\":\"VM protection alerts\",\"categoryType\":\"Logs\",\"categoryGroups\":[\"allLogs\"]},\"identity\":null},{\"id\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourcegroups/diagnostic-setting-groupt9vaw5/providers/microsoft.network/virtualnetworks/test-vnetxhjrie/providers/microsoft.insights/diagnosticSettingsCategories/AllMetrics\",\"type\":\"microsoft.insights/diagnosticSettingsCategories\",\"name\":\"AllMetrics\",\"location\":null,\"kind\":null,\"tags\":null,\"properties\":{\"displayName\":\"AllMetrics\",\"categoryType\":\"Metrics\"},\"identity\":null}]}", "isContentBase64": false } }, - "DiagnosticSetting+[NoContext]+CRUD+$PUT+https://management.azure.com//subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/diagnostic-setting-groupwi87al/providers/Microsoft.Network/virtualNetworks/test-vnetijbg90/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-setting1eqp5r?api-version=2021-05-01-preview+2": { + "DiagnosticSetting+[NoContext]+CRUD+$PUT+https://management.azure.com//subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.Network/virtualNetworks/test-vnetxhjrie/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-settingt1kbc6?api-version=2021-05-01-preview+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com//subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/diagnostic-setting-groupwi87al/providers/Microsoft.Network/virtualNetworks/test-vnetijbg90/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-setting1eqp5r?api-version=2021-05-01-preview", - "Content": "{\r\n \"properties\": {\r\n \"metrics\": [\r\n {\r\n \"retentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 7\r\n },\r\n \"category\": \"AllMetrics\",\r\n \"enabled\": true\r\n }\r\n ],\r\n \"logs\": [\r\n {\r\n \"retentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 7\r\n },\r\n \"category\": \"VMProtectionAlerts\",\r\n \"enabled\": true\r\n }\r\n ],\r\n \"workspaceId\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/diagnostic-setting-groupwi87al/providers/microsoft.operationalinsights/workspaces/test-workspace8z9pt3\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com//subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.Network/virtualNetworks/test-vnetxhjrie/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-settingt1kbc6?api-version=2021-05-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"metrics\": [\r\n {\r\n \"category\": \"AllMetrics\",\r\n \"enabled\": true\r\n }\r\n ],\r\n \"logs\": [\r\n {\r\n \"category\": \"VMProtectionAlerts\",\r\n \"enabled\": true\r\n }\r\n ],\r\n \"workspaceId\": \"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.OperationalInsights/workspaces/test-workspace87u3fy\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "615" ] + "Content-Length": [ "433" ] } }, "Response": { @@ -59,36 +62,38 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "23cc55bb-f9b0-4b07-af72-0abdece53c27" ], - "Server": [ "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ "149" ], - "x-ms-correlation-request-id": [ "d10a52e0-f962-4d82-a77d-605e2e352dc8" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220921T073603Z:d10a52e0-f962-4d82-a77d-605e2e352dc8" ], + "x-ms-request-id": [ "cd30c318-1093-41e7-bb65-3d2cf74a3c8e" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southindia/575293c4-80db-4d79-875d-bb283f80731f" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "199" ], + "x-ms-correlation-request-id": [ "ec638afc-adc1-40a8-a4c0-0949842d20d6" ], + "x-ms-routing-request-id": [ "SOUTHINDIA:20250710T033724Z:ec638afc-adc1-40a8-a4c0-0949842d20d6" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 21 Sep 2022 07:36:02 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: BC4F34DC131A46B4AACC223FDDB5DCB4 Ref B: MAA201060514021 Ref C: 2025-07-10T03:37:17Z" ], + "Date": [ "Thu, 10 Jul 2025 03:37:24 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "964" ], + "Content-Length": [ "966" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/diagnostic-setting-groupwi87al/providers/microsoft.network/virtualnetworks/test-vnetijbg90/providers/microsoft.insights/diagnosticSettings/test-diagnostic-setting1eqp5r\",\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"test-diagnostic-setting1eqp5r\",\"location\":null,\"kind\":null,\"tags\":null,\"properties\":{\"storageAccountId\":null,\"serviceBusRuleId\":null,\"workspaceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/diagnostic-setting-groupwi87al/providers/microsoft.operationalinsights/workspaces/test-workspace8z9pt3\",\"eventHubAuthorizationRuleId\":null,\"eventHubName\":null,\"metrics\":[{\"timeGrain\":\"PT1M\",\"category\":\"AllMetrics\",\"enabled\":true,\"retentionPolicy\":{\"enabled\":true,\"days\":7}}],\"logs\":[{\"category\":\"VMProtectionAlerts\",\"categoryGroup\":null,\"enabled\":true,\"retentionPolicy\":{\"enabled\":true,\"days\":7}}],\"logAnalyticsDestinationType\":null},\"identity\":null}", + "Content": "{\"id\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourcegroups/diagnostic-setting-groupt9vaw5/providers/microsoft.network/virtualnetworks/test-vnetxhjrie/providers/microsoft.insights/diagnosticSettings/test-diagnostic-settingt1kbc6\",\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"test-diagnostic-settingt1kbc6\",\"location\":null,\"kind\":null,\"tags\":null,\"properties\":{\"storageAccountId\":null,\"serviceBusRuleId\":null,\"workspaceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.OperationalInsights/workspaces/test-workspace87u3fy\",\"eventHubAuthorizationRuleId\":null,\"eventHubName\":null,\"metrics\":[{\"timeGrain\":\"PT1M\",\"category\":\"AllMetrics\",\"enabled\":true,\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"VMProtectionAlerts\",\"categoryGroup\":null,\"enabled\":true,\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logAnalyticsDestinationType\":null},\"identity\":null}", "isContentBase64": false } }, - "DiagnosticSetting+[NoContext]+CRUD+$GET+https://management.azure.com//subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/diagnostic-setting-groupwi87al/providers/Microsoft.Network/virtualNetworks/test-vnetijbg90/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-setting1eqp5r?api-version=2021-05-01-preview+3": { + "DiagnosticSetting+[NoContext]+CRUD+$GET+https://management.azure.com//subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.Network/virtualNetworks/test-vnetxhjrie/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-settingt1kbc6?api-version=2021-05-01-preview+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com//subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/diagnostic-setting-groupwi87al/providers/Microsoft.Network/virtualNetworks/test-vnetijbg90/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-setting1eqp5r?api-version=2021-05-01-preview", + "RequestUri": "https://management.azure.com//subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.Network/virtualNetworks/test-vnetxhjrie/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-settingt1kbc6?api-version=2021-05-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "4" ], - "x-ms-client-request-id": [ "9cbb31f3-0861-47ea-a6f5-e31680ba2d33" ], + "x-ms-client-request-id": [ "fcbcc9d5-b03f-4fa8-afb0-869a532811bc" ], "CommandName": [ "Get-AzDiagnosticSetting" ], "FullCommandName": [ "Get-AzDiagnosticSetting_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.6", "Az.DiagnosticSetting/0.1.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.DiagnosticSetting/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -100,36 +105,328 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "35f4ee3b-0299-490c-a299-6969de0377af" ], - "Server": [ "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], - "x-ms-correlation-request-id": [ "f25b9a8c-f0b9-4018-b5e9-7ad909983000" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220921T073604Z:f25b9a8c-f0b9-4018-b5e9-7ad909983000" ], + "x-ms-request-id": [ "97003294-3343-42f9-ac87-3b4ab060ce59" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southindia/82a6b586-a4b4-416d-8695-c625ac9be35b" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-correlation-request-id": [ "5796db39-7f6e-4160-9069-584aa6bb8235" ], + "x-ms-routing-request-id": [ "SOUTHINDIA:20250710T033726Z:5796db39-7f6e-4160-9069-584aa6bb8235" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 21 Sep 2022 07:36:04 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 34F6E7A7264440CF85693D41C44B9841 Ref B: MAA201060514021 Ref C: 2025-07-10T03:37:25Z" ], + "Date": [ "Thu, 10 Jul 2025 03:37:26 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "945" ], + "Content-Length": [ "951" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/diagnostic-setting-groupwi87al/providers/microsoft.network/virtualnetworks/test-vnetijbg90/providers/microsoft.insights/diagnosticSettings/test-diagnostic-setting1eqp5r\",\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"test-diagnostic-setting1eqp5r\",\"location\":null,\"kind\":null,\"tags\":null,\"properties\":{\"storageAccountId\":null,\"serviceBusRuleId\":null,\"workspaceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/diagnostic-setting-groupwi87al/providers/microsoft.operationalinsights/workspaces/test-workspace8z9pt3\",\"eventHubAuthorizationRuleId\":null,\"eventHubName\":null,\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":true,\"retentionPolicy\":{\"enabled\":true,\"days\":7}}],\"logs\":[{\"category\":\"VMProtectionAlerts\",\"categoryGroup\":null,\"enabled\":true,\"retentionPolicy\":{\"enabled\":true,\"days\":7}}],\"logAnalyticsDestinationType\":null},\"identity\":null}", + "Content": "{\"id\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourcegroups/diagnostic-setting-groupt9vaw5/providers/microsoft.network/virtualnetworks/test-vnetxhjrie/providers/microsoft.insights/diagnosticSettings/test-diagnostic-settingt1kbc6\",\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"test-diagnostic-settingt1kbc6\",\"location\":\"eastus\",\"kind\":null,\"tags\":null,\"properties\":{\"storageAccountId\":null,\"serviceBusRuleId\":null,\"workspaceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.OperationalInsights/workspaces/test-workspace87u3fy\",\"eventHubAuthorizationRuleId\":null,\"eventHubName\":null,\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":true,\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"VMProtectionAlerts\",\"categoryGroup\":null,\"enabled\":true,\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logAnalyticsDestinationType\":null},\"identity\":null}", "isContentBase64": false } }, - "DiagnosticSetting+[NoContext]+CRUD+$DELETE+https://management.azure.com//subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/diagnostic-setting-groupwi87al/providers/Microsoft.Network/virtualNetworks/test-vnetijbg90/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-setting1eqp5r?api-version=2021-05-01-preview+4": { + "DiagnosticSetting+[NoContext]+CRUD+$GET+https://management.azure.com//subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.Network/virtualNetworks/test-vnetxhjrie/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-settingt1kbc6?api-version=2021-05-01-preview+4": { "Request": { - "Method": "DELETE", - "RequestUri": "https://management.azure.com//subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/diagnostic-setting-groupwi87al/providers/Microsoft.Network/virtualNetworks/test-vnetijbg90/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-setting1eqp5r?api-version=2021-05-01-preview", + "Method": "GET", + "RequestUri": "https://management.azure.com//subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.Network/virtualNetworks/test-vnetxhjrie/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-settingt1kbc6?api-version=2021-05-01-preview", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "5" ], - "x-ms-client-request-id": [ "0b555ba7-c280-4a89-a94a-51f70f078af3" ], + "x-ms-client-request-id": [ "ca1358f1-1aae-4cc9-8494-87de3b020b81" ], + "CommandName": [ "Update-AzDiagnosticSetting" ], + "FullCommandName": [ "Update-AzDiagnosticSetting_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.DiagnosticSetting/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "5eba6aff-1fab-4e5c-8d59-220ebd54e07b" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southindia/f8b77ab8-b094-4e3c-9a57-4e05047d7eca" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-correlation-request-id": [ "6ef72ad8-7590-4d9e-98d4-ce2deb0469c9" ], + "x-ms-routing-request-id": [ "SOUTHINDIA:20250710T033727Z:6ef72ad8-7590-4d9e-98d4-ce2deb0469c9" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 99FB056CF08B4E85A7D45295E72AAB2C Ref B: MAA201060514021 Ref C: 2025-07-10T03:37:26Z" ], + "Date": [ "Thu, 10 Jul 2025 03:37:27 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "951" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourcegroups/diagnostic-setting-groupt9vaw5/providers/microsoft.network/virtualnetworks/test-vnetxhjrie/providers/microsoft.insights/diagnosticSettings/test-diagnostic-settingt1kbc6\",\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"test-diagnostic-settingt1kbc6\",\"location\":\"eastus\",\"kind\":null,\"tags\":null,\"properties\":{\"storageAccountId\":null,\"serviceBusRuleId\":null,\"workspaceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.OperationalInsights/workspaces/test-workspace87u3fy\",\"eventHubAuthorizationRuleId\":null,\"eventHubName\":null,\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":true,\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"VMProtectionAlerts\",\"categoryGroup\":null,\"enabled\":true,\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logAnalyticsDestinationType\":null},\"identity\":null}", + "isContentBase64": false + } + }, + "DiagnosticSetting+[NoContext]+CRUD+$PUT+https://management.azure.com//subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.Network/virtualNetworks/test-vnetxhjrie/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-settingt1kbc6?api-version=2021-05-01-preview+5": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com//subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.Network/virtualNetworks/test-vnetxhjrie/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-settingt1kbc6?api-version=2021-05-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"metrics\": [\r\n {\r\n \"category\": \"AllMetrics\",\r\n \"enabled\": false\r\n }\r\n ],\r\n \"logs\": [\r\n {\r\n \"category\": \"VMProtectionAlerts\",\r\n \"enabled\": false\r\n }\r\n ],\r\n \"workspaceId\": \"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.OperationalInsights/workspaces/test-workspace87u3fy\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "435" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "b0b5137c-edb4-4d88-8b67-bc04c05f6dd0" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southindia/f0be1d09-d08d-4e23-9d81-d429763a883c" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "199" ], + "x-ms-correlation-request-id": [ "8dcd29bf-2aa0-496d-a5c5-420060397635" ], + "x-ms-routing-request-id": [ "SOUTHINDIA:20250710T033731Z:8dcd29bf-2aa0-496d-a5c5-420060397635" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F355648E4BCF4B47A4B7EA48FF160DEC Ref B: MAA201060514021 Ref C: 2025-07-10T03:37:27Z" ], + "Date": [ "Thu, 10 Jul 2025 03:37:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "968" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourcegroups/diagnostic-setting-groupt9vaw5/providers/microsoft.network/virtualnetworks/test-vnetxhjrie/providers/microsoft.insights/diagnosticSettings/test-diagnostic-settingt1kbc6\",\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"test-diagnostic-settingt1kbc6\",\"location\":null,\"kind\":null,\"tags\":null,\"properties\":{\"storageAccountId\":null,\"serviceBusRuleId\":null,\"workspaceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.OperationalInsights/workspaces/test-workspace87u3fy\",\"eventHubAuthorizationRuleId\":null,\"eventHubName\":null,\"metrics\":[{\"timeGrain\":\"PT1M\",\"category\":\"AllMetrics\",\"enabled\":false,\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"VMProtectionAlerts\",\"categoryGroup\":null,\"enabled\":false,\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logAnalyticsDestinationType\":null},\"identity\":null}", + "isContentBase64": false + } + }, + "DiagnosticSetting+[NoContext]+CRUD+$DELETE+https://management.azure.com//subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.Network/virtualNetworks/test-vnetxhjrie/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-settingt1kbc6?api-version=2021-05-01-preview+6": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com//subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.Network/virtualNetworks/test-vnetxhjrie/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-settingt1kbc6?api-version=2021-05-01-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "7" ], + "x-ms-client-request-id": [ "772045b4-1b49-4ee9-8ff4-96a184e53a88" ], "CommandName": [ "Remove-AzDiagnosticSetting" ], "FullCommandName": [ "Remove-AzDiagnosticSetting_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.6", "Az.DiagnosticSetting/0.1.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.DiagnosticSetting/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "bcfbf24e-aba6-4087-bf80-37685617aad2" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southindia/cb333e5b-f0c8-4b08-80c7-fdd03521ba1e" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "199" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "2999" ], + "x-ms-correlation-request-id": [ "1a21353d-395d-4362-b555-0db803f9d366" ], + "x-ms-routing-request-id": [ "SOUTHINDIA:20250710T033734Z:1a21353d-395d-4362-b555-0db803f9d366" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 1AFF29FF1C9B4F3F92202550AA46C307 Ref B: MAA201060514021 Ref C: 2025-07-10T03:37:32Z" ], + "Date": [ "Thu, 10 Jul 2025 03:37:34 GMT" ] + }, + "ContentHeaders": { + "Expires": [ "-1" ], + "Content-Length": [ "0" ] + }, + "Content": null, + "isContentBase64": false + } + }, + "DiagnosticSetting+[NoContext]+SubCRUD+$PUT+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-setting4jksw1?api-version=2021-05-01-preview+1": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-setting4jksw1?api-version=2021-05-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"logs\": [\r\n {\r\n \"category\": \"Recommendation\",\r\n \"enabled\": true\r\n }\r\n ],\r\n \"workspaceId\": \"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.OperationalInsights/workspaces/test-workspace87u3fy\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "325" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "49b8a49a-98aa-46e4-b055-e3f1b60d3712" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southindia/bfa70e04-3a6d-4154-9c21-11765388e621" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "199" ], + "x-ms-correlation-request-id": [ "04b3a9e8-4371-4089-a78e-2351191772de" ], + "x-ms-routing-request-id": [ "SOUTHINDIA:20250710T033736Z:04b3a9e8-4371-4089-a78e-2351191772de" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 11E1306B886041108CB496CB055249B6 Ref B: MAA201060514021 Ref C: 2025-07-10T03:37:34Z" ], + "Date": [ "Thu, 10 Jul 2025 03:37:36 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "520" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/microsoft.insights/diagnosticSettings/test-diagnostic-setting4jksw1\",\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"test-diagnostic-setting4jksw1\",\"location\":\"global\",\"properties\":{\"workspaceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.OperationalInsights/workspaces/test-workspace87u3fy\",\"logs\":[{\"category\":\"Recommendation\",\"enabled\":true,\"categoryGroup\":null}]}}", + "isContentBase64": false + } + }, + "DiagnosticSetting+[NoContext]+SubCRUD+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-setting4jksw1?api-version=2021-05-01-preview+2": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-setting4jksw1?api-version=2021-05-01-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "9" ], + "x-ms-client-request-id": [ "e3b599a4-d0aa-41ee-9c5e-d6fb4b7fc731" ], + "CommandName": [ "Update-AzSubscriptionDiagnosticSetting" ], + "FullCommandName": [ "Update-AzSubscriptionDiagnosticSetting_UpdateExpanded" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.DiagnosticSetting/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "edf0df3d-c602-4f87-b152-acfe5040f41d" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southindia/0d4202b0-551b-4fef-b319-3486edc86bbe" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-correlation-request-id": [ "31cd5141-9d26-45b5-8ad9-a09e5a9ed889" ], + "x-ms-routing-request-id": [ "SOUTHINDIA:20250710T033737Z:31cd5141-9d26-45b5-8ad9-a09e5a9ed889" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 037608EDA20942A89FA03A68EB9C4EC2 Ref B: MAA201060514021 Ref C: 2025-07-10T03:37:37Z" ], + "Date": [ "Thu, 10 Jul 2025 03:37:37 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "960" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/microsoft.insights/diagnosticSettings/test-diagnostic-setting4jksw1\",\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"test-diagnostic-setting4jksw1\",\"location\":\"global\",\"properties\":{\"workspaceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.OperationalInsights/workspaces/test-workspace87u3fy\",\"logs\":[{\"category\":\"Recommendation\",\"enabled\":true,\"categoryGroup\":null},{\"category\":\"Administrative\",\"enabled\":false,\"categoryGroup\":null},{\"category\":\"Security\",\"enabled\":false,\"categoryGroup\":null},{\"category\":\"ServiceHealth\",\"enabled\":false,\"categoryGroup\":null},{\"category\":\"Alert\",\"enabled\":false,\"categoryGroup\":null},{\"category\":\"Policy\",\"enabled\":false,\"categoryGroup\":null},{\"category\":\"Autoscale\",\"enabled\":false,\"categoryGroup\":null},{\"category\":\"ResourceHealth\",\"enabled\":false,\"categoryGroup\":null}]}}", + "isContentBase64": false + } + }, + "DiagnosticSetting+[NoContext]+SubCRUD+$PUT+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-setting4jksw1?api-version=2021-05-01-preview+3": { + "Request": { + "Method": "PUT", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-setting4jksw1?api-version=2021-05-01-preview", + "Content": "{\r\n \"properties\": {\r\n \"logs\": [\r\n {\r\n \"category\": \"Recommendation\",\r\n \"enabled\": false\r\n }\r\n ],\r\n \"workspaceId\": \"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.OperationalInsights/workspaces/test-workspace87u3fy\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "326" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "237352e8-2723-4b90-86ab-cfe7e98d00c3" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southindia/24dfac12-4ba8-47de-b88c-e031354a9c66" ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ "199" ], + "x-ms-correlation-request-id": [ "e79a6a6d-667f-4d1f-afd4-145614b7bf01" ], + "x-ms-routing-request-id": [ "SOUTHINDIA:20250710T033740Z:e79a6a6d-667f-4d1f-afd4-145614b7bf01" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E7565E5FEA38496497162DB1A3221B93 Ref B: MAA201060514021 Ref C: 2025-07-10T03:37:37Z" ], + "Date": [ "Thu, 10 Jul 2025 03:37:40 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "521" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/microsoft.insights/diagnosticSettings/test-diagnostic-setting4jksw1\",\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"test-diagnostic-setting4jksw1\",\"location\":\"global\",\"properties\":{\"workspaceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.OperationalInsights/workspaces/test-workspace87u3fy\",\"logs\":[{\"category\":\"Recommendation\",\"enabled\":false,\"categoryGroup\":null}]}}", + "isContentBase64": false + } + }, + "DiagnosticSetting+[NoContext]+SubCRUD+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Insights/diagnosticSettings?api-version=2021-05-01-preview+4": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Insights/diagnosticSettings?api-version=2021-05-01-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "11" ], + "x-ms-client-request-id": [ "81fc09f5-3f8f-4dfc-a9d7-d0d31037a0ce" ], + "CommandName": [ "Get-AzSubscriptionDiagnosticSetting" ], + "FullCommandName": [ "Get-AzSubscriptionDiagnosticSetting_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.DiagnosticSetting/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ "1f206ec8-885d-44f4-87cf-f3ce37d673fb" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southindia/56832a24-be77-4258-a3d8-db0972d534ea" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-correlation-request-id": [ "bd33189c-cf23-4ad8-9cfa-448b964db57e" ], + "x-ms-routing-request-id": [ "SOUTHINDIA:20250710T033741Z:bd33189c-cf23-4ad8-9cfa-448b964db57e" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C404BFD8BE964CD4B9AC2D33ED721AE8 Ref B: MAA201060514021 Ref C: 2025-07-10T03:37:40Z" ], + "Date": [ "Thu, 10 Jul 2025 03:37:41 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "12" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[]}", + "isContentBase64": false + } + }, + "DiagnosticSetting+[NoContext]+SubCRUD+$DELETE+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-setting4jksw1?api-version=2021-05-01-preview+5": { + "Request": { + "Method": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Insights/diagnosticSettings/test-diagnostic-setting4jksw1?api-version=2021-05-01-preview", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "12" ], + "x-ms-client-request-id": [ "bb5461ee-d6c2-40f5-b7b5-2796decf2eb9" ], + "CommandName": [ "Remove-AzSubscriptionDiagnosticSetting" ], + "FullCommandName": [ "Remove-AzSubscriptionDiagnosticSetting_Delete" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.DiagnosticSetting/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -141,13 +438,16 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ "62e184af-2a7b-463a-b385-c3a516fb8cdc" ], - "Server": [ "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-correlation-request-id": [ "b7c72ab8-8a5e-4f70-a397-d29be80d89e2" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220921T073608Z:b7c72ab8-8a5e-4f70-a397-d29be80d89e2" ], + "x-ms-request-id": [ "5a58b4dc-49e3-4f36-a3fd-a2f65a5a89b8" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southindia/9c485815-3fb0-44dc-9c4b-d40da313f2af" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "199" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "2999" ], + "x-ms-correlation-request-id": [ "db98b2bc-ca7f-45d8-b440-1c622c0f008d" ], + "x-ms-routing-request-id": [ "SOUTHINDIA:20250710T033742Z:db98b2bc-ca7f-45d8-b440-1c622c0f008d" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 21 Sep 2022 07:36:07 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 237733D5C4344C8681B7E8D9D5D4F997 Ref B: MAA201060514021 Ref C: 2025-07-10T03:37:42Z" ], + "Date": [ "Thu, 10 Jul 2025 03:37:42 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Monitor/DiagnosticSetting.Autorest/test/DiagnosticSetting.Tests.ps1 b/src/Monitor/DiagnosticSetting.Autorest/test/DiagnosticSetting.Tests.ps1 index 896383f7dab3..4c0dd519b650 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/test/DiagnosticSetting.Tests.ps1 +++ b/src/Monitor/DiagnosticSetting.Autorest/test/DiagnosticSetting.Tests.ps1 @@ -19,9 +19,30 @@ Describe 'DiagnosticSetting' { $metric = @() $log = @() $categories = Get-AzDiagnosticSettingCategory -ResourceId $env.vnetId - $categories | ForEach-Object {if($_.CategoryType -eq "Metrics"){$metric+=New-AzDiagnosticSettingMetricSettingsObject -Enabled $true -Category $_.Name -RetentionPolicyDay 7 -RetentionPolicyEnabled $true} else{$log+=New-AzDiagnosticSettingLogSettingsObject -Enabled $true -Category $_.Name -RetentionPolicyDay 7 -RetentionPolicyEnabled $true}} - $setting = New-AzDiagnosticSetting -Name $env.diagnosticSettingName -ResourceId $env.vnetId -WorkspaceId $env.workspaceId -Log $log -Metric $metric + $categories | ForEach-Object {if($_.CategoryType -eq "Metrics"){$metric+=New-AzDiagnosticSettingMetricSettingsObject -Enabled $true -Category $_.Name } else{$log+=New-AzDiagnosticSettingLogSettingsObject -Enabled $true -Category $_.Name }} + New-AzDiagnosticSetting -Name $env.diagnosticSettingName -ResourceId $env.vnetId -WorkspaceId $env.workspaceId -Log $log -Metric $metric $setting = Get-AzDiagnosticSetting -Name $env.diagnosticSettingName -ResourceId $env.vnetId + $setting.Name | Should -Be $env.diagnosticSettingName + $setting.Log.Enabled | Should -Be $true + $setting.Metric.Enabled | Should -Be $true + + $newlog = New-AzDiagnosticSettingLogSettingsObject -Enabled $false -Category $setting.Log.Category + $newmetric = New-AzDiagnosticSettingMetricSettingsObject -Enabled $false -Category $setting.Metric.Category + $setting = Update-AzDiagnosticSetting -Name $env.diagnosticSettingName -ResourceId $env.vnetId -Log $newlog -Metric $newmetric + $setting.Log.Enabled | Should -Be $false + $setting.Metric.Enabled | Should -Be $false Remove-AzDiagnosticSetting -Name $env.diagnosticSettingName -ResourceId $env.vnetId } + + It 'SubCRUD' { + $log = New-AzDiagnosticSettingSubscriptionLogSettingsObject -Category Recommendation -Enabled $true + $setting = New-AzSubscriptionDiagnosticSetting -Name $env.subscriptiondiagnosticSettingName -WorkspaceId $env.workspaceId -Log $log + $setting.Name | Should -Be $env.subscriptiondiagnosticSettingName + + $newlog = New-AzDiagnosticSettingSubscriptionLogSettingsObject -Category Recommendation -Enabled $false + $setting = Update-AzSubscriptionDiagnosticSetting -Name $env.subscriptiondiagnosticSettingName -Log $newlog + $setting.Log.Enabled | Should -Be $false + Get-AzSubscriptionDiagnosticSetting + Remove-AzSubscriptionDiagnosticSetting -Name $env.subscriptiondiagnosticSettingName + } } \ No newline at end of file diff --git a/src/Monitor/DiagnosticSetting.Autorest/test/Get-AzEventCategory.Recording.json b/src/Monitor/DiagnosticSetting.Autorest/test/Get-AzEventCategory.Recording.json new file mode 100644 index 000000000000..6d327e632579 --- /dev/null +++ b/src/Monitor/DiagnosticSetting.Autorest/test/Get-AzEventCategory.Recording.json @@ -0,0 +1,49 @@ +{ + "Get-AzEventCategory+[NoContext]+List+$GET+https://management.azure.com/providers/Microsoft.Insights/eventcategories?api-version=2015-04-01+1": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/providers/Microsoft.Insights/eventcategories?api-version=2015-04-01", + "Content": null, + "isContentBase64": false, + "Headers": { + "x-ms-unique-id": [ "13" ], + "x-ms-client-request-id": [ "d91db36e-f895-4f53-ae02-7867fec3d04a" ], + "CommandName": [ "Get-AzEventCategory" ], + "FullCommandName": [ "Get-AzEventCategory_List" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.DiagnosticSetting/0.1.0" ], + "Authorization": [ "[Filtered]" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-tenant-reads": [ "249" ], + "x-ms-operation-identifier": [ "" ], + "Request-Context": [ "appId=cid-v1:e9ce6014-b708-4056-a18d-21dc38a7abb0" ], + "mise-correlation-id": [ "de9a20dd-897b-4176-bc11-367460cf7e70" ], + "api-supported-versions": [ "2015-04-01" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Access-Control-Allow-Origin": [ "*" ], + "x-ms-request-id": [ "d1ba5431-18ba-4a95-9c26-3f31f803803b" ], + "x-ms-correlation-request-id": [ "d1ba5431-18ba-4a95-9c26-3f31f803803b" ], + "x-ms-routing-request-id": [ "SOUTHINDIA:20250710T033743Z:d1ba5431-18ba-4a95-9c26-3f31f803803b" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 0AB3647A4C4B472E80B533D40C463AE1 Ref B: MAA201060514021 Ref C: 2025-07-10T03:37:43Z" ], + "Date": [ "Thu, 10 Jul 2025 03:37:43 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "443" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"value\":[{\"value\":\"Administrative\",\"localizedValue\":\"Administrative\"},{\"value\":\"Security\",\"localizedValue\":\"Security\"},{\"value\":\"ServiceHealth\",\"localizedValue\":\"Service Health\"},{\"value\":\"Alert\",\"localizedValue\":\"Alert\"},{\"value\":\"Recommendation\",\"localizedValue\":\"Recommendation\"},{\"value\":\"Policy\",\"localizedValue\":\"Policy\"},{\"value\":\"Autoscale\",\"localizedValue\":\"Autoscale\"},{\"value\":\"ResourceHealth\",\"localizedValue\":\"Resource Health\"}]}", + "isContentBase64": false + } + } +} \ No newline at end of file diff --git a/src/Monitor/DiagnosticSetting.Autorest/test/Get-AzEventCategory.Tests.ps1 b/src/Monitor/DiagnosticSetting.Autorest/test/Get-AzEventCategory.Tests.ps1 index bf73c6594be9..996058ddad62 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/test/Get-AzEventCategory.Tests.ps1 +++ b/src/Monitor/DiagnosticSetting.Autorest/test/Get-AzEventCategory.Tests.ps1 @@ -15,7 +15,7 @@ if(($null -eq $TestName) -or ($TestName -contains 'Get-AzEventCategory')) } Describe 'Get-AzEventCategory' { - It 'List' -skip { - { throw [System.NotImplementedException] } | Should -Not -Throw + It 'List' { + { Get-AzEventCategory | Should -Not -BeNullOrEmpty} | Should -Not -Throw } } diff --git a/src/Monitor/DiagnosticSetting.Autorest/test/Update-AzDiagnosticSetting.Tests.ps1 b/src/Monitor/DiagnosticSetting.Autorest/test/Update-AzDiagnosticSetting.Tests.ps1 new file mode 100644 index 000000000000..117ad7865c8d --- /dev/null +++ b/src/Monitor/DiagnosticSetting.Autorest/test/Update-AzDiagnosticSetting.Tests.ps1 @@ -0,0 +1,25 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Update-AzDiagnosticSetting')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Update-AzDiagnosticSetting.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Update-AzDiagnosticSetting' { + It 'UpdateExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'UpdateViaIdentityExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/Monitor/DiagnosticSetting.Autorest/test/Update-AzSubscriptionDiagnosticSetting.Tests.ps1 b/src/Monitor/DiagnosticSetting.Autorest/test/Update-AzSubscriptionDiagnosticSetting.Tests.ps1 new file mode 100644 index 000000000000..cd592ad1cfc5 --- /dev/null +++ b/src/Monitor/DiagnosticSetting.Autorest/test/Update-AzSubscriptionDiagnosticSetting.Tests.ps1 @@ -0,0 +1,25 @@ +if(($null -eq $TestName) -or ($TestName -contains 'Update-AzSubscriptionDiagnosticSetting')) +{ + $loadEnvPath = Join-Path $PSScriptRoot 'loadEnv.ps1' + if (-Not (Test-Path -Path $loadEnvPath)) { + $loadEnvPath = Join-Path $PSScriptRoot '..\loadEnv.ps1' + } + . ($loadEnvPath) + $TestRecordingFile = Join-Path $PSScriptRoot 'Update-AzSubscriptionDiagnosticSetting.Recording.json' + $currentPath = $PSScriptRoot + while(-not $mockingPath) { + $mockingPath = Get-ChildItem -Path $currentPath -Recurse -Include 'HttpPipelineMocking.ps1' -File + $currentPath = Split-Path -Path $currentPath -Parent + } + . ($mockingPath | Select-Object -First 1).FullName +} + +Describe 'Update-AzSubscriptionDiagnosticSetting' { + It 'UpdateExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } + + It 'UpdateViaIdentityExpanded' -skip { + { throw [System.NotImplementedException] } | Should -Not -Throw + } +} diff --git a/src/Monitor/DiagnosticSetting.Autorest/test/env.json b/src/Monitor/DiagnosticSetting.Autorest/test/env.json index bd13b9d1a8a3..718ec3151274 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/test/env.json +++ b/src/Monitor/DiagnosticSetting.Autorest/test/env.json @@ -1,8 +1,9 @@ { - "resourceGroupName": "diagnostic-setting-groupwi87al", - "vnetId": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/diagnostic-setting-groupwi87al/providers/Microsoft.Network/virtualNetworks/test-vnetijbg90", - "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "diagnosticSettingName": "test-diagnostic-setting1eqp5r", - "SubscriptionId": "9e223dbe-3399-4e19-88eb-0975f02ac87f", - "workspaceId": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/diagnostic-setting-groupwi87al/providers/microsoft.operationalinsights/workspaces/test-workspace8z9pt3" + "SubscriptionId": "0e745469-49f8-48c9-873b-24ca87143db1", + "diagnosticSettingName": "test-diagnostic-settingt1kbc6", + "workspaceId": "/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.OperationalInsights/workspaces/test-workspace87u3fy", + "vnetId": "/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/diagnostic-setting-groupt9vaw5/providers/Microsoft.Network/virtualNetworks/test-vnetxhjrie", + "resourceGroupName": "diagnostic-setting-groupt9vaw5", + "Tenant": "213e87ed-8e08-4eb4-a63c-c073058f7b00", + "subscriptiondiagnosticSettingName": "test-diagnostic-setting4jksw1" } diff --git a/src/Monitor/DiagnosticSetting.Autorest/test/utils.ps1 b/src/Monitor/DiagnosticSetting.Autorest/test/utils.ps1 index b1da141b9cc2..945343cabf75 100644 --- a/src/Monitor/DiagnosticSetting.Autorest/test/utils.ps1 +++ b/src/Monitor/DiagnosticSetting.Autorest/test/utils.ps1 @@ -64,6 +64,8 @@ function setupEnv() { $diagnosticSettingName = 'test-diagnostic-setting' + (RandomString -allChars $false -len 6) $null = $env.Add("diagnosticSettingName", $diagnosticSettingName) + $subscriptiondiagnosticSettingName = 'test-diagnostic-setting' + (RandomString -allChars $false -len 6) + $null = $env.Add("subscriptiondiagnosticSettingName", $subscriptiondiagnosticSettingName) $envFile = 'env.json' if ($TestMode -eq 'live') { @@ -73,5 +75,6 @@ function setupEnv() { } function cleanupEnv() { # Clean resources you create for testing + Remove-AzResourceGroup -Name $env.resourceGroupName } diff --git a/src/Monitor/Monitor.sln b/src/Monitor/Monitor.sln index 49665d92f2d9..427fe093c71f 100644 --- a/src/Monitor/Monitor.sln +++ b/src/Monitor/Monitor.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.0.31903.59 @@ -45,19 +45,25 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "DataCollectionRule.Autorest EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.DataCollectionRule", "..\..\generated\Monitor\DataCollectionRule.Autorest\Az.DataCollectionRule.csproj", "{138B61C0-9D0E-44A1-9EA1-E8142303ECA5}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Metricdata", "..\..\generated\Monitor\Metricdata.Autorest\Az.Metricdata.csproj", "{ABBBEF38-2D27-4BBA-B980-BEEBDC2843F4}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Autoscale.Autorest", "Autoscale.Autorest", "{0832AC06-44A1-FEDA-3879-082134F4AAB5}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Autoscale", "..\..\generated\Monitor\Autoscale.Autorest\Az.Autoscale.csproj", "{7AD2DC17-D116-4480-A74F-EB823CB6F7B5}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Metricdata.Autorest", "Metricdata.Autorest", "{97973F8C-3EE1-368A-3B71-C62280C2DC8C}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Autoscale", "..\..\generated\Monitor\Autoscale.Autorest\Az.Autoscale.csproj", "{A55047D2-EBBB-4C25-BD5E-52FEF9E5C627}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.Metricdata", "..\..\generated\Monitor\Metricdata.Autorest\Az.Metricdata.csproj", "{ABBBEF38-2D27-4BBA-B980-BEEBDC2843F4}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.DiagnosticSetting", "..\..\generated\Monitor\DiagnosticSetting.Autorest\Az.DiagnosticSetting.csproj", "{88085FD3-B4EE-4AC4-94B7-D1D2A9A18033}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.MonitorWorkspace", "..\..\generated\Monitor\MonitorWorkspace.Autorest\Az.MonitorWorkspace.csproj", "{3BDF8EC5-1C35-4425-AB3C-6EF677F618E2}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.ScheduledQueryRule", "..\..\generated\Monitor\ScheduledQueryRule.Autorest\Az.ScheduledQueryRule.csproj", "{A3CBC4A9-A39C-4343-99F2-F3F53F20049B}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ScheduledQueryRule.Autorest", "ScheduledQueryRule.Autorest", "{DFE9A16E-4879-AFA3-BD8B-DBC73F42D0CA}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.ScheduledQueryRule", "..\..\generated\Monitor\ScheduledQueryRule.Autorest\Az.ScheduledQueryRule.csproj", "{0319911B-F2AD-483F-AC8B-9EA44666E545}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ActivityLogAlert.Autorest", "ActivityLogAlert.Autorest", "{F5B68159-9278-7C75-41B6-315547561DBE}" +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "MonitorWorkspace.Autorest", "MonitorWorkspace.Autorest", "{635E4282-7AFB-1B5B-749B-823438FF2057}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.ActivityLogAlert", "..\..\generated\Monitor\ActivityLogAlert.Autorest\Az.ActivityLogAlert.csproj", "{EF866102-349E-4B1A-A159-0C3EC16B34F6}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.MonitorWorkspace", "..\..\generated\Monitor\MonitorWorkspace.Autorest\Az.MonitorWorkspace.csproj", "{5A91A04F-34B3-4BBB-8B4A-0CDC03965415}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -297,6 +303,18 @@ Global {A55047D2-EBBB-4C25-BD5E-52FEF9E5C627}.Release|x64.Build.0 = Release|Any CPU {A55047D2-EBBB-4C25-BD5E-52FEF9E5C627}.Release|x86.ActiveCfg = Release|Any CPU {A55047D2-EBBB-4C25-BD5E-52FEF9E5C627}.Release|x86.Build.0 = Release|Any CPU + {81F263BA-D395-42CB-A7E0-AFC20029C4BC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {81F263BA-D395-42CB-A7E0-AFC20029C4BC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {81F263BA-D395-42CB-A7E0-AFC20029C4BC}.Debug|x64.ActiveCfg = Debug|Any CPU + {81F263BA-D395-42CB-A7E0-AFC20029C4BC}.Debug|x64.Build.0 = Debug|Any CPU + {81F263BA-D395-42CB-A7E0-AFC20029C4BC}.Debug|x86.ActiveCfg = Debug|Any CPU + {81F263BA-D395-42CB-A7E0-AFC20029C4BC}.Debug|x86.Build.0 = Debug|Any CPU + {81F263BA-D395-42CB-A7E0-AFC20029C4BC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {81F263BA-D395-42CB-A7E0-AFC20029C4BC}.Release|Any CPU.Build.0 = Release|Any CPU + {81F263BA-D395-42CB-A7E0-AFC20029C4BC}.Release|x64.ActiveCfg = Release|Any CPU + {81F263BA-D395-42CB-A7E0-AFC20029C4BC}.Release|x64.Build.0 = Release|Any CPU + {81F263BA-D395-42CB-A7E0-AFC20029C4BC}.Release|x86.ActiveCfg = Release|Any CPU + {81F263BA-D395-42CB-A7E0-AFC20029C4BC}.Release|x86.Build.0 = Release|Any CPU {88085FD3-B4EE-4AC4-94B7-D1D2A9A18033}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {88085FD3-B4EE-4AC4-94B7-D1D2A9A18033}.Debug|Any CPU.Build.0 = Debug|Any CPU {88085FD3-B4EE-4AC4-94B7-D1D2A9A18033}.Debug|x64.ActiveCfg = Debug|Any CPU @@ -321,30 +339,30 @@ Global {3BDF8EC5-1C35-4425-AB3C-6EF677F618E2}.Release|x64.Build.0 = Release|Any CPU {3BDF8EC5-1C35-4425-AB3C-6EF677F618E2}.Release|x86.ActiveCfg = Release|Any CPU {3BDF8EC5-1C35-4425-AB3C-6EF677F618E2}.Release|x86.Build.0 = Release|Any CPU - {A3CBC4A9-A39C-4343-99F2-F3F53F20049B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {A3CBC4A9-A39C-4343-99F2-F3F53F20049B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {A3CBC4A9-A39C-4343-99F2-F3F53F20049B}.Debug|x64.ActiveCfg = Debug|Any CPU - {A3CBC4A9-A39C-4343-99F2-F3F53F20049B}.Debug|x64.Build.0 = Debug|Any CPU - {A3CBC4A9-A39C-4343-99F2-F3F53F20049B}.Debug|x86.ActiveCfg = Debug|Any CPU - {A3CBC4A9-A39C-4343-99F2-F3F53F20049B}.Debug|x86.Build.0 = Debug|Any CPU - {A3CBC4A9-A39C-4343-99F2-F3F53F20049B}.Release|Any CPU.ActiveCfg = Release|Any CPU - {A3CBC4A9-A39C-4343-99F2-F3F53F20049B}.Release|Any CPU.Build.0 = Release|Any CPU - {A3CBC4A9-A39C-4343-99F2-F3F53F20049B}.Release|x64.ActiveCfg = Release|Any CPU - {A3CBC4A9-A39C-4343-99F2-F3F53F20049B}.Release|x64.Build.0 = Release|Any CPU - {A3CBC4A9-A39C-4343-99F2-F3F53F20049B}.Release|x86.ActiveCfg = Release|Any CPU - {A3CBC4A9-A39C-4343-99F2-F3F53F20049B}.Release|x86.Build.0 = Release|Any CPU - {EF866102-349E-4B1A-A159-0C3EC16B34F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {EF866102-349E-4B1A-A159-0C3EC16B34F6}.Debug|Any CPU.Build.0 = Debug|Any CPU - {EF866102-349E-4B1A-A159-0C3EC16B34F6}.Debug|x64.ActiveCfg = Debug|Any CPU - {EF866102-349E-4B1A-A159-0C3EC16B34F6}.Debug|x64.Build.0 = Debug|Any CPU - {EF866102-349E-4B1A-A159-0C3EC16B34F6}.Debug|x86.ActiveCfg = Debug|Any CPU - {EF866102-349E-4B1A-A159-0C3EC16B34F6}.Debug|x86.Build.0 = Debug|Any CPU - {EF866102-349E-4B1A-A159-0C3EC16B34F6}.Release|Any CPU.ActiveCfg = Release|Any CPU - {EF866102-349E-4B1A-A159-0C3EC16B34F6}.Release|Any CPU.Build.0 = Release|Any CPU - {EF866102-349E-4B1A-A159-0C3EC16B34F6}.Release|x64.ActiveCfg = Release|Any CPU - {EF866102-349E-4B1A-A159-0C3EC16B34F6}.Release|x64.Build.0 = Release|Any CPU - {EF866102-349E-4B1A-A159-0C3EC16B34F6}.Release|x86.ActiveCfg = Release|Any CPU - {EF866102-349E-4B1A-A159-0C3EC16B34F6}.Release|x86.Build.0 = Release|Any CPU + {B97A8A95-CCBB-421E-8586-AFCED12A1737}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B97A8A95-CCBB-421E-8586-AFCED12A1737}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B97A8A95-CCBB-421E-8586-AFCED12A1737}.Debug|x64.ActiveCfg = Debug|Any CPU + {B97A8A95-CCBB-421E-8586-AFCED12A1737}.Debug|x64.Build.0 = Debug|Any CPU + {B97A8A95-CCBB-421E-8586-AFCED12A1737}.Debug|x86.ActiveCfg = Debug|Any CPU + {B97A8A95-CCBB-421E-8586-AFCED12A1737}.Debug|x86.Build.0 = Debug|Any CPU + {B97A8A95-CCBB-421E-8586-AFCED12A1737}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B97A8A95-CCBB-421E-8586-AFCED12A1737}.Release|Any CPU.Build.0 = Release|Any CPU + {B97A8A95-CCBB-421E-8586-AFCED12A1737}.Release|x64.ActiveCfg = Release|Any CPU + {B97A8A95-CCBB-421E-8586-AFCED12A1737}.Release|x64.Build.0 = Release|Any CPU + {B97A8A95-CCBB-421E-8586-AFCED12A1737}.Release|x86.ActiveCfg = Release|Any CPU + {B97A8A95-CCBB-421E-8586-AFCED12A1737}.Release|x86.Build.0 = Release|Any CPU + {0319911B-F2AD-483F-AC8B-9EA44666E545}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0319911B-F2AD-483F-AC8B-9EA44666E545}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0319911B-F2AD-483F-AC8B-9EA44666E545}.Debug|x64.ActiveCfg = Debug|Any CPU + {0319911B-F2AD-483F-AC8B-9EA44666E545}.Debug|x64.Build.0 = Debug|Any CPU + {0319911B-F2AD-483F-AC8B-9EA44666E545}.Debug|x86.ActiveCfg = Debug|Any CPU + {0319911B-F2AD-483F-AC8B-9EA44666E545}.Debug|x86.Build.0 = Debug|Any CPU + {0319911B-F2AD-483F-AC8B-9EA44666E545}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0319911B-F2AD-483F-AC8B-9EA44666E545}.Release|Any CPU.Build.0 = Release|Any CPU + {0319911B-F2AD-483F-AC8B-9EA44666E545}.Release|x64.ActiveCfg = Release|Any CPU + {0319911B-F2AD-483F-AC8B-9EA44666E545}.Release|x64.Build.0 = Release|Any CPU + {0319911B-F2AD-483F-AC8B-9EA44666E545}.Release|x86.ActiveCfg = Release|Any CPU + {0319911B-F2AD-483F-AC8B-9EA44666E545}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -364,6 +382,16 @@ Global {B54BD1A5-F4AB-485B-8478-520B6AA1E9E7} = {5E1B5E7C-8C9C-47AD-8F8F-19628E8D1B34} {0636EEB2-FE81-4424-8CFC-CCEB25360A40} = {3F76A15C-B128-4A31-A887-05E303CF8D7F} {138B61C0-9D0E-44A1-9EA1-E8142303ECA5} = {35E5CBAF-5596-AC3C-3DBD-816FC74B54D0} - {EF866102-349E-4B1A-A159-0C3EC16B34F6} = {F5B68159-9278-7C75-41B6-315547561DBE} + {ABBBEF38-2D27-4BBA-B980-BEEBDC2843F4} = {97973F8C-3EE1-368A-3B71-C62280C2DC8C} + {A55047D2-EBBB-4C25-BD5E-52FEF9E5C627} = {0832AC06-44A1-FEDA-3879-082134F4AAB5} + {81F263BA-D395-42CB-A7E0-AFC20029C4BC} = {F5B68159-9278-7C75-41B6-315547561DBE} + {88085FD3-B4EE-4AC4-94B7-D1D2A9A18033} = {4644B825-05AB-0B45-5567-89C0D700A638} + {3BDF8EC5-1C35-4425-AB3C-6EF677F618E2} = {635E4282-7AFB-1B5B-749B-823438FF2057} + {B97A8A95-CCBB-421E-8586-AFCED12A1737} = {635E4282-7AFB-1B5B-749B-823438FF2057} + + {0319911B-F2AD-483F-AC8B-9EA44666E545} = {DFE9A16E-4879-AFA3-BD8B-DBC73F42D0CA} + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {F718DE3F-FFE5-495E-949B-084513A4C606} EndGlobalSection EndGlobal diff --git a/src/Monitor/Monitor/Az.Monitor.psd1 b/src/Monitor/Monitor/Az.Monitor.psd1 index 2ca21a8efb76..bf4f71284e12 100644 --- a/src/Monitor/Monitor/Az.Monitor.psd1 +++ b/src/Monitor/Monitor/Az.Monitor.psd1 @@ -158,8 +158,9 @@ FunctionsToExport = 'Enable-AzActionGroupReceiver', 'Get-AzActionGroup', 'Update-AzAutoscaleSetting', 'Update-AzDataCollectionEndpoint', 'Update-AzDataCollectionRule', 'Update-AzDataCollectionRuleAssociation', - 'Update-AzMonitorWorkspace', 'Update-AzPipelineGroup', - 'Update-AzScheduledQueryRule' + 'Update-AzDiagnosticSetting', 'Update-AzMonitorWorkspace', + 'Update-AzPipelineGroup', 'Update-AzScheduledQueryRule', + 'Update-AzSubscriptionDiagnosticSetting' # Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export. CmdletsToExport = 'Add-AzLogProfile', 'Add-AzMetricAlertRule', diff --git a/src/Monitor/Monitor/ChangeLog.md b/src/Monitor/Monitor/ChangeLog.md index fbc37cf7642e..11835772653f 100644 --- a/src/Monitor/Monitor/ChangeLog.md +++ b/src/Monitor/Monitor/ChangeLog.md @@ -19,6 +19,7 @@ --> ## Upcoming Release +* Parameters EmailSendToSubscriptionAdministrator and EmailSendToSubscriptionCoAdministrator of cmdlet `New-AzAutoscaleNotificationObject` was unavailable after April 3, 2024 due to Azure classic administrator retirement. * Improved user experience and consistency. This may introduce breaking changes. Please refer to [here](https://go.microsoft.com/fwlink/?linkid=2340249). ## Version 6.0.3 diff --git a/src/Monitor/Monitor/help/Az.Monitor.md b/src/Monitor/Monitor/help/Az.Monitor.md index 0ef3a0d17020..a19547d6f4b1 100644 --- a/src/Monitor/Monitor/help/Az.Monitor.md +++ b/src/Monitor/Monitor/help/Az.Monitor.md @@ -48,7 +48,7 @@ Gets classic alert rules. Gets the Autoscale history. ### [Get-AzAutoscalePredictiveMetric](Get-AzAutoscalePredictiveMetric.md) -get predictive autoscale metric future data +Get predictive autoscale metric future data ### [Get-AzAutoscaleSetting](Get-AzAutoscaleSetting.md) Gets an autoscale setting @@ -172,7 +172,7 @@ Create an in-memory object for ScaleRuleMetricDimension. Create an in-memory object for ScaleRule. ### [New-AzAutoscaleSetting](New-AzAutoscaleSetting.md) -Creates or updates an autoscale setting. +Create an autoscale setting. ### [New-AzAutoscaleWebhookNotificationObject](New-AzAutoscaleWebhookNotificationObject.md) Create an in-memory object for WebhookNotification. @@ -190,7 +190,7 @@ create an association. Create an in-memory object for DataFlow. ### [New-AzDiagnosticSetting](New-AzDiagnosticSetting.md) -Creates or updates diagnostic settings for the specified resource. +Create diagnostic settings for the specified resource. ### [New-AzDiagnosticSettingLogSettingsObject](New-AzDiagnosticSettingLogSettingsObject.md) Create an in-memory object for LogSettings. @@ -238,7 +238,7 @@ Creates a metric dimension filter that can be used to query metrics. Create an in-memory object for MonitoringAccountDestination. ### [New-AzMonitorWorkspace](New-AzMonitorWorkspace.md) -Create or update a workspace +Create a workspace ### [New-AzPerfCounterDataSourceObject](New-AzPerfCounterDataSourceObject.md) Create an in-memory object for PerfCounterDataSource. @@ -253,7 +253,7 @@ Create an in-memory object for PlatformTelemetryDataSource. Create an in-memory object for PrometheusForwarderDataSource. ### [New-AzScheduledQueryRule](New-AzScheduledQueryRule.md) -Creates or updates a scheduled query rule. +Create a scheduled query rule. ### [New-AzScheduledQueryRuleConditionObject](New-AzScheduledQueryRuleConditionObject.md) Create an in-memory object for Condition. @@ -268,7 +268,7 @@ Create an in-memory object for StorageBlobDestination. Create an in-memory object for StorageTableDestination. ### [New-AzSubscriptionDiagnosticSetting](New-AzSubscriptionDiagnosticSetting.md) -Creates or updates subscription diagnostic settings for the specified resource. +Create subscription diagnostic settings for the specified resource. ### [New-AzSyslogDataSourceObject](New-AzSyslogDataSourceObject.md) Create an in-memory object for SyslogDataSource. @@ -351,11 +351,14 @@ Update a data collection rule. ### [Update-AzDataCollectionRuleAssociation](Update-AzDataCollectionRuleAssociation.md) update an association. +### [Update-AzDiagnosticSetting](Update-AzDiagnosticSetting.md) +Update diagnostic settings for the specified resource. + ### [Update-AzInsightsPrivateLinkScope](Update-AzInsightsPrivateLinkScope.md) Update for private link scope ### [Update-AzMonitorWorkspace](Update-AzMonitorWorkspace.md) -Updates part of a workspace +Update part of a workspace ### [Update-AzPipelineGroup](Update-AzPipelineGroup.md) update a pipeline group instance @@ -363,3 +366,6 @@ update a pipeline group instance ### [Update-AzScheduledQueryRule](Update-AzScheduledQueryRule.md) Update a scheduled query rule. +### [Update-AzSubscriptionDiagnosticSetting](Update-AzSubscriptionDiagnosticSetting.md) +Update subscription diagnostic settings for the specified resource. + diff --git a/src/Monitor/Monitor/help/Get-AzAutoscalePredictiveMetric.md b/src/Monitor/Monitor/help/Get-AzAutoscalePredictiveMetric.md index 6cbf30194947..e657a23d251f 100644 --- a/src/Monitor/Monitor/help/Get-AzAutoscalePredictiveMetric.md +++ b/src/Monitor/Monitor/help/Get-AzAutoscalePredictiveMetric.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Get-AzAutoscalePredictiveMetric ## SYNOPSIS -get predictive autoscale metric future data +Get predictive autoscale metric future data ## SYNTAX @@ -28,7 +28,7 @@ Get-AzAutoscalePredictiveMetric -AutoscaleSettingName -ResourceGroupNam ``` ## DESCRIPTION -get predictive autoscale metric future data +Get predictive autoscale metric future data ## EXAMPLES @@ -89,7 +89,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleIdentity @@ -207,7 +206,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IPredictiveResponse +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IPredictiveResponse ## NOTES diff --git a/src/Monitor/Monitor/help/Get-AzAutoscaleSetting.md b/src/Monitor/Monitor/help/Get-AzAutoscaleSetting.md index bb5dfc96f6b4..99b39cc4c197 100644 --- a/src/Monitor/Monitor/help/Get-AzAutoscaleSetting.md +++ b/src/Monitor/Monitor/help/Get-AzAutoscaleSetting.md @@ -82,7 +82,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleIdentity @@ -151,7 +150,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleSettingResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleSettingResource ## NOTES diff --git a/src/Monitor/Monitor/help/Get-AzDiagnosticSetting.md b/src/Monitor/Monitor/help/Get-AzDiagnosticSetting.md index ea80bf531eba..5fe1f5972a0b 100644 --- a/src/Monitor/Monitor/help/Get-AzDiagnosticSetting.md +++ b/src/Monitor/Monitor/help/Get-AzDiagnosticSetting.md @@ -71,7 +71,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingIdentity @@ -124,7 +123,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.IDiagnosticSettingsResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingsResource ## NOTES diff --git a/src/Monitor/Monitor/help/Get-AzDiagnosticSettingCategory.md b/src/Monitor/Monitor/help/Get-AzDiagnosticSettingCategory.md index f998378c23a5..40a2753ca6d6 100644 --- a/src/Monitor/Monitor/help/Get-AzDiagnosticSettingCategory.md +++ b/src/Monitor/Monitor/help/Get-AzDiagnosticSettingCategory.md @@ -63,7 +63,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingIdentity @@ -116,7 +115,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.IDiagnosticSettingsCategoryResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingsCategoryResource ## NOTES diff --git a/src/Monitor/Monitor/help/Get-AzEventCategory.md b/src/Monitor/Monitor/help/Get-AzEventCategory.md index 5a197b3db7b9..e7663bc50556 100644 --- a/src/Monitor/Monitor/help/Get-AzEventCategory.md +++ b/src/Monitor/Monitor/help/Get-AzEventCategory.md @@ -68,7 +68,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20150401.ILocalizableString +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ILocalizableString ## NOTES diff --git a/src/Monitor/Monitor/help/Get-AzMonitorWorkspace.md b/src/Monitor/Monitor/help/Get-AzMonitorWorkspace.md index 944114fb887e..16d5fb563d9d 100644 --- a/src/Monitor/Monitor/help/Get-AzMonitorWorkspace.md +++ b/src/Monitor/Monitor/help/Get-AzMonitorWorkspace.md @@ -100,7 +100,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.IMonitorWorkspaceIdentity @@ -170,7 +169,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.Api20230403.IAzureMonitorWorkspaceResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.IAzureMonitorWorkspaceResource ## NOTES diff --git a/src/Monitor/Monitor/help/Get-AzScheduledQueryRule.md b/src/Monitor/Monitor/help/Get-AzScheduledQueryRule.md index 5fa5fe1bc24e..7c0d8964b484 100644 --- a/src/Monitor/Monitor/help/Get-AzScheduledQueryRule.md +++ b/src/Monitor/Monitor/help/Get-AzScheduledQueryRule.md @@ -82,7 +82,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity @@ -151,7 +150,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleResource ## NOTES diff --git a/src/Monitor/Monitor/help/Get-AzSubscriptionDiagnosticSetting.md b/src/Monitor/Monitor/help/Get-AzSubscriptionDiagnosticSetting.md index 8f0c260f4acb..5ec342ea7d5c 100644 --- a/src/Monitor/Monitor/help/Get-AzSubscriptionDiagnosticSetting.md +++ b/src/Monitor/Monitor/help/Get-AzSubscriptionDiagnosticSetting.md @@ -69,7 +69,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingIdentity @@ -122,7 +121,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.ISubscriptionDiagnosticSettingsResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ISubscriptionDiagnosticSettingsResource ## NOTES diff --git a/src/Monitor/Monitor/help/New-AzAutoscaleNotificationObject.md b/src/Monitor/Monitor/help/New-AzAutoscaleNotificationObject.md index 92f61a870053..486ef29c680b 100644 --- a/src/Monitor/Monitor/help/New-AzAutoscaleNotificationObject.md +++ b/src/Monitor/Monitor/help/New-AzAutoscaleNotificationObject.md @@ -1,7 +1,7 @@ --- external help file: Az.Autoscale.psm1-help.xml Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzAutoscaleNotificationObject +online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-azautoscalenotificationobject schema: 2.0.0 --- @@ -81,10 +81,9 @@ Accept wildcard characters: False ### -Webhook the collection of webhook notifications. -To construct, see NOTES section for WEBHOOK properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IWebhookNotification[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IWebhookNotification[] Parameter Sets: (All) Aliases: @@ -102,7 +101,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.AutoscaleNotification +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.AutoscaleNotification ## NOTES diff --git a/src/Monitor/Monitor/help/New-AzAutoscaleProfileObject.md b/src/Monitor/Monitor/help/New-AzAutoscaleProfileObject.md index 119e398e76ae..397703bd5256 100644 --- a/src/Monitor/Monitor/help/New-AzAutoscaleProfileObject.md +++ b/src/Monitor/Monitor/help/New-AzAutoscaleProfileObject.md @@ -1,7 +1,7 @@ --- external help file: Az.Autoscale.psm1-help.xml Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzAutoscaleProfileObject +online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-azautoscaleprofileobject schema: 2.0.0 --- @@ -15,7 +15,7 @@ Create an in-memory object for AutoscaleProfile. ``` New-AzAutoscaleProfileObject -CapacityDefault -CapacityMaximum -CapacityMinimum -Name -Rule [-FixedDateEnd ] [-FixedDateStart ] - [-FixedDateTimeZone ] [-RecurrenceFrequency ] [-ScheduleDay ] + [-FixedDateTimeZone ] [-RecurrenceFrequency ] [-ScheduleDay ] [-ScheduleHour ] [-ScheduleMinute ] [-ScheduleTimeZone ] [] ``` @@ -161,7 +161,7 @@ For example, to set a daily schedule, set **schedule** to every day of the week. The frequency property specifies that the schedule is repeated weekly. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.RecurrenceFrequency +Type: System.String Parameter Sets: (All) Aliases: @@ -175,10 +175,9 @@ Accept wildcard characters: False ### -Rule the collection of rules that provide the triggers and parameters for the scaling action. A maximum of 10 rules can be specified. -To construct, see NOTES section for RULE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IScaleRule[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IScaleRule[] Parameter Sets: (All) Aliases: @@ -268,7 +267,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.AutoscaleProfile +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.AutoscaleProfile ## NOTES diff --git a/src/Monitor/Monitor/help/New-AzAutoscaleScaleRuleMetricDimensionObject.md b/src/Monitor/Monitor/help/New-AzAutoscaleScaleRuleMetricDimensionObject.md index 5e0191994fc2..94ed4cd7d59e 100644 --- a/src/Monitor/Monitor/help/New-AzAutoscaleScaleRuleMetricDimensionObject.md +++ b/src/Monitor/Monitor/help/New-AzAutoscaleScaleRuleMetricDimensionObject.md @@ -1,7 +1,7 @@ --- external help file: Az.Autoscale.psm1-help.xml Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzAutoscaleScaleRuleMetricDimensionObject +online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-azautoscalescalerulemetricdimensionobject schema: 2.0.0 --- @@ -13,8 +13,7 @@ Create an in-memory object for ScaleRuleMetricDimension. ## SYNTAX ``` -New-AzAutoscaleScaleRuleMetricDimensionObject -DimensionName - -Operator -Value +New-AzAutoscaleScaleRuleMetricDimensionObject -DimensionName -Operator -Value [] ``` @@ -54,7 +53,7 @@ Only 'Equals' and 'NotEquals' are supported. 'NotEquals' being not equal to all of the values. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleRuleMetricDimensionOperationType +Type: System.String Parameter Sets: (All) Aliases: @@ -88,7 +87,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.ScaleRuleMetricDimension +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.ScaleRuleMetricDimension ## NOTES diff --git a/src/Monitor/Monitor/help/New-AzAutoscaleScaleRuleObject.md b/src/Monitor/Monitor/help/New-AzAutoscaleScaleRuleObject.md index cd82469fcbdb..bed47f14fe68 100644 --- a/src/Monitor/Monitor/help/New-AzAutoscaleScaleRuleObject.md +++ b/src/Monitor/Monitor/help/New-AzAutoscaleScaleRuleObject.md @@ -1,7 +1,7 @@ --- external help file: Az.Autoscale.psm1-help.xml Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzAutoscaleScaleRuleObject +online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-azautoscalescaleruleobject schema: 2.0.0 --- @@ -14,10 +14,9 @@ Create an in-memory object for ScaleRule. ``` New-AzAutoscaleScaleRuleObject -MetricTriggerMetricName -MetricTriggerMetricResourceUri - -MetricTriggerOperator -MetricTriggerStatistic - -MetricTriggerThreshold -MetricTriggerTimeAggregation - -MetricTriggerTimeGrain -MetricTriggerTimeWindow -ScaleActionCooldown - -ScaleActionDirection -ScaleActionType + -MetricTriggerOperator -MetricTriggerStatistic -MetricTriggerThreshold + -MetricTriggerTimeAggregation -MetricTriggerTimeGrain -MetricTriggerTimeWindow + -ScaleActionCooldown -ScaleActionDirection -ScaleActionType [-MetricTriggerDimension ] [-MetricTriggerDividePerInstance ] [-MetricTriggerMetricNamespace ] [-MetricTriggerMetricResourceLocation ] [-ScaleActionValue ] [] @@ -41,10 +40,9 @@ Create scale rule object ### -MetricTriggerDimension List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}]. -To construct, see NOTES section for METRICTRIGGERDIMENSION properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IScaleRuleMetricDimension[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IScaleRuleMetricDimension[] Parameter Sets: (All) Aliases: @@ -134,7 +132,7 @@ Accept wildcard characters: False the operator that is used to compare the metric data and the threshold. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ComparisonOperationType +Type: System.String Parameter Sets: (All) Aliases: @@ -150,7 +148,7 @@ the metric statistic type. How the metrics from multiple instances are combined. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.MetricStatisticType +Type: System.String Parameter Sets: (All) Aliases: @@ -182,7 +180,7 @@ How the data that is collected should be combined over time. The default value is Average. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.TimeAggregationType +Type: System.String Parameter Sets: (All) Aliases: @@ -248,7 +246,7 @@ the scale direction. Whether the scaling action increases or decreases the number of instances. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleDirection +Type: System.String Parameter Sets: (All) Aliases: @@ -263,7 +261,7 @@ Accept wildcard characters: False the type of action that should occur when the scale rule fires. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleType +Type: System.String Parameter Sets: (All) Aliases: @@ -298,7 +296,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.ScaleRule +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.ScaleRule ## NOTES diff --git a/src/Monitor/Monitor/help/New-AzAutoscaleSetting.md b/src/Monitor/Monitor/help/New-AzAutoscaleSetting.md index 8922fcabc909..38bb65da661b 100644 --- a/src/Monitor/Monitor/help/New-AzAutoscaleSetting.md +++ b/src/Monitor/Monitor/help/New-AzAutoscaleSetting.md @@ -8,28 +8,35 @@ schema: 2.0.0 # New-AzAutoscaleSetting ## SYNOPSIS -Creates or updates an autoscale setting. +Create an autoscale setting. ## SYNTAX -### CreateViaIdentity (Default) +### CreateExpanded (Default) ``` -New-AzAutoscaleSetting -InputObject -Parameter +New-AzAutoscaleSetting -Name -ResourceGroupName [-SubscriptionId ] -Location + -Profile [-Enabled] [-Notification ] + [-PredictiveAutoscalePolicyScaleLookAheadTime ] [-PredictiveAutoscalePolicyScaleMode ] + [-PropertiesName ] [-Tag ] [-TargetResourceLocation ] [-TargetResourceUri ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` -### CreateExpanded +### CreateViaJsonFilePath ``` -New-AzAutoscaleSetting -Name -ResourceGroupName [-SubscriptionId ] -Location - -Profile [-Enabled] [-Notification ] - [-PredictiveAutoscalePolicyScaleLookAheadTime ] - [-PredictiveAutoscalePolicyScaleMode ] [-PropertiesName ] - [-Tag ] [-TargetResourceLocation ] [-TargetResourceUri ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] +New-AzAutoscaleSetting -Name -ResourceGroupName [-SubscriptionId ] + -JsonFilePath [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### CreateViaJsonString +``` +New-AzAutoscaleSetting -Name -ResourceGroupName [-SubscriptionId ] + -JsonString [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ## DESCRIPTION -Creates or updates an autoscale setting. +Create an autoscale setting. ## EXAMPLES @@ -80,19 +87,33 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -InputObject -Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. +### -JsonFilePath +Path of Json file supplied to the Create operation ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleIdentity -Parameter Sets: CreateViaIdentity +Type: System.String +Parameter Sets: CreateViaJsonFilePath Aliases: Required: True Position: Named Default value: None -Accept pipeline input: True (ByValue) +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False Accept wildcard characters: False ``` @@ -116,7 +137,7 @@ The autoscale setting name. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: (All) Aliases: AutoscaleSettingName Required: True @@ -128,10 +149,9 @@ Accept wildcard characters: False ### -Notification the collection of notifications. -To construct, see NOTES section for NOTIFICATION properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleNotification[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleNotification[] Parameter Sets: CreateExpanded Aliases: @@ -142,22 +162,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -Parameter -The autoscale setting resource. -To construct, see NOTES section for PARAMETER properties and create a hash table. - -```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleSettingResource -Parameter Sets: CreateViaIdentity -Aliases: - -Required: True -Position: Named -Default value: None -Accept pipeline input: True (ByValue) -Accept wildcard characters: False -``` - ### -PredictiveAutoscalePolicyScaleLookAheadTime the amount of time to specify by which instances are launched in advance. It must be between 1 minute and 60 minutes in ISO 8601 format. @@ -178,7 +182,7 @@ Accept wildcard characters: False the predictive autoscale mode ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.PredictiveAutoscalePolicyScaleMode +Type: System.String Parameter Sets: CreateExpanded Aliases: @@ -192,10 +196,9 @@ Accept wildcard characters: False ### -Profile the collection of automatic scaling profiles that specify different scaling parameters for different time periods. A maximum of 20 profiles can be specified. -To construct, see NOTES section for PROFILE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleProfile[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleProfile[] Parameter Sets: CreateExpanded Aliases: @@ -227,7 +230,7 @@ The name is case insensitive. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: (All) Aliases: Required: True @@ -242,7 +245,7 @@ The ID of the target subscription. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: (All) Aliases: Required: False @@ -336,13 +339,9 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## INPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleSettingResource - -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleIdentity - ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleSettingResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleSettingResource ## NOTES diff --git a/src/Monitor/Monitor/help/New-AzAutoscaleWebhookNotificationObject.md b/src/Monitor/Monitor/help/New-AzAutoscaleWebhookNotificationObject.md index 81fc988ad856..2f221a7589be 100644 --- a/src/Monitor/Monitor/help/New-AzAutoscaleWebhookNotificationObject.md +++ b/src/Monitor/Monitor/help/New-AzAutoscaleWebhookNotificationObject.md @@ -1,7 +1,7 @@ --- external help file: Az.Autoscale.psm1-help.xml Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzAutoscaleWebhookNotificationObject +online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-azautoscalewebhooknotificationobject schema: 2.0.0 --- @@ -34,10 +34,9 @@ Create webhook notification object ### -Property a property bag of settings. This value can be empty. -To construct, see NOTES section for PROPERTY properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IWebhookNotificationProperties +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IWebhookNotificationProperties Parameter Sets: (All) Aliases: @@ -70,7 +69,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.WebhookNotification +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.WebhookNotification ## NOTES diff --git a/src/Monitor/Monitor/help/New-AzDiagnosticSetting.md b/src/Monitor/Monitor/help/New-AzDiagnosticSetting.md index 77fbe762f7b7..2169b5f032e7 100644 --- a/src/Monitor/Monitor/help/New-AzDiagnosticSetting.md +++ b/src/Monitor/Monitor/help/New-AzDiagnosticSetting.md @@ -8,10 +8,11 @@ schema: 2.0.0 # New-AzDiagnosticSetting ## SYNOPSIS -Creates or updates diagnostic settings for the specified resource. +Create diagnostic settings for the specified resource. ## SYNTAX +### CreateExpanded (Default) ``` New-AzDiagnosticSetting -Name -ResourceId [-EventHubAuthorizationRuleId ] [-EventHubName ] [-Log ] [-LogAnalyticsDestinationType ] @@ -20,8 +21,20 @@ New-AzDiagnosticSetting -Name -ResourceId [-EventHubAuthorizat [-WhatIf] [-Confirm] [] ``` +### CreateViaJsonFilePath +``` +New-AzDiagnosticSetting -Name -ResourceId -JsonFilePath [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### CreateViaJsonString +``` +New-AzDiagnosticSetting -Name -ResourceId -JsonString [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + ## DESCRIPTION -Creates or updates diagnostic settings for the specified resource. +Create diagnostic settings for the specified resource. ## EXAMPLES @@ -72,7 +85,7 @@ The resource Id for the event hub authorization rule. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -88,7 +101,7 @@ If none is specified, the default event hub will be selected. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -98,13 +111,42 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Log The list of logs settings. -To construct, see NOTES section for LOG properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.ILogSettings[] -Parameter Sets: (All) +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ILogSettings[] +Parameter Sets: CreateExpanded Aliases: Required: False @@ -121,7 +163,7 @@ Possible values are: Dedicated and null (null is default.) ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -136,7 +178,7 @@ The full ARM resource ID of the Marketplace resource to which you would like to ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -148,11 +190,10 @@ Accept wildcard characters: False ### -Metric The list of metric settings. -To construct, see NOTES section for METRIC properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.IMetricSettings[] -Parameter Sets: (All) +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IMetricSettings[] +Parameter Sets: CreateExpanded Aliases: Required: False @@ -198,7 +239,7 @@ This is here to maintain backwards compatibility. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -213,7 +254,7 @@ The resource ID of the storage account to which you would like to send Diagnosti ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -229,7 +270,7 @@ Example: /subscriptions/4b9e8510-67ab-4e9a-95a9-e2f1e570ea9c/resourceGroups/insi ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -277,7 +318,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.IDiagnosticSettingsResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingsResource ## NOTES diff --git a/src/Monitor/Monitor/help/New-AzDiagnosticSettingLogSettingsObject.md b/src/Monitor/Monitor/help/New-AzDiagnosticSettingLogSettingsObject.md index 3bc08f7822d2..5d84bedbeaf2 100644 --- a/src/Monitor/Monitor/help/New-AzDiagnosticSettingLogSettingsObject.md +++ b/src/Monitor/Monitor/help/New-AzDiagnosticSettingLogSettingsObject.md @@ -1,7 +1,7 @@ --- external help file: Az.DiagnosticSetting.psm1-help.xml Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzDiagnosticSettingLogSettingsObject +online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-azdiagnosticsettinglogsettingsobject schema: 2.0.0 --- @@ -117,7 +117,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.LogSettings +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.LogSettings ## NOTES diff --git a/src/Monitor/Monitor/help/New-AzDiagnosticSettingMetricSettingsObject.md b/src/Monitor/Monitor/help/New-AzDiagnosticSettingMetricSettingsObject.md index e79a25091068..1679f354a222 100644 --- a/src/Monitor/Monitor/help/New-AzDiagnosticSettingMetricSettingsObject.md +++ b/src/Monitor/Monitor/help/New-AzDiagnosticSettingMetricSettingsObject.md @@ -1,7 +1,7 @@ --- external help file: Az.DiagnosticSetting.psm1-help.xml Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzDiagnosticSettingMetricSettingsObject +online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-azdiagnosticsettingmetricsettingsobject schema: 2.0.0 --- @@ -116,7 +116,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.MetricSettings +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.MetricSettings ## NOTES diff --git a/src/Monitor/Monitor/help/New-AzDiagnosticSettingSubscriptionLogSettingsObject.md b/src/Monitor/Monitor/help/New-AzDiagnosticSettingSubscriptionLogSettingsObject.md index f71ef61981bc..c65a07e6c7f2 100644 --- a/src/Monitor/Monitor/help/New-AzDiagnosticSettingSubscriptionLogSettingsObject.md +++ b/src/Monitor/Monitor/help/New-AzDiagnosticSettingSubscriptionLogSettingsObject.md @@ -1,7 +1,7 @@ --- external help file: Az.DiagnosticSetting.psm1-help.xml Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzDiagnosticSettingSubscriptionLogSettingsObject +online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-azdiagnosticsettingsubscriptionlogsettingsobject schema: 2.0.0 --- @@ -83,7 +83,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.SubscriptionLogSettings +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.SubscriptionLogSettings ## NOTES diff --git a/src/Monitor/Monitor/help/New-AzMonitorWorkspace.md b/src/Monitor/Monitor/help/New-AzMonitorWorkspace.md index c73aa1143902..606e9c53978e 100644 --- a/src/Monitor/Monitor/help/New-AzMonitorWorkspace.md +++ b/src/Monitor/Monitor/help/New-AzMonitorWorkspace.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzMonitorWorkspace ## SYNOPSIS -Create or update a workspace +Create a workspace ## SYNTAX @@ -19,6 +19,20 @@ New-AzMonitorWorkspace -Name -ResourceGroupName [-Subscription [] ``` +### CreateViaJsonString +``` +New-AzMonitorWorkspace -Name -ResourceGroupName [-SubscriptionId ] + -JsonString [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### CreateViaJsonFilePath +``` +New-AzMonitorWorkspace -Name -ResourceGroupName [-SubscriptionId ] + -JsonFilePath [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + ### CreateViaIdentityExpanded ``` New-AzMonitorWorkspace -InputObject -Location [-Tag ] @@ -26,7 +40,7 @@ New-AzMonitorWorkspace -InputObject -Location -ResourceGroupName [-SubscriptionId ] -Location [-ActionCustomProperty ] [-ActionGroupResourceId ] [-AutoMitigate] [-CheckWorkspaceAlertsStorageConfigured] [-CriterionAllOf ] [-Description ] - [-DisplayName ] [-Enabled] [-EvaluationFrequency ] [-Kind ] + [-DisplayName ] [-Enabled] [-EvaluationFrequency ] [-Kind ] [-MuteActionsDuration ] [-OverrideQueryTimeRange ] [-Scope ] [-Severity ] [-SkipQueryValidation] [-Tag ] [-TargetResourceType ] [-WindowSize ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` +### CreateViaJsonFilePath +``` +New-AzScheduledQueryRule -Name -ResourceGroupName [-SubscriptionId ] + -JsonFilePath [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### CreateViaJsonString +``` +New-AzScheduledQueryRule -Name -ResourceGroupName [-SubscriptionId ] + -JsonString [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + ## DESCRIPTION -Creates or updates a scheduled query rule. +Create a scheduled query rule. ## EXAMPLES @@ -44,7 +59,7 @@ The properties of an alert payload. ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -59,7 +74,7 @@ Action Group resource Ids to invoke when the alert fires. ```yaml Type: System.String[] -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -76,7 +91,7 @@ Relevant only for rules of the kind LogAlert. ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -93,7 +108,7 @@ Relevant only for rules of the kind LogAlert. ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -105,11 +120,10 @@ Accept wildcard characters: False ### -CriterionAllOf A list of conditions to evaluate against the specified scopes -To construct, see NOTES section for CRITERIONALLOF properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[] -Parameter Sets: (All) +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.ICondition[] +Parameter Sets: CreateExpanded Aliases: Required: False @@ -140,7 +154,7 @@ The description of the scheduled query rule. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -155,7 +169,7 @@ The display name of the alert rule ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -171,7 +185,7 @@ Value should be true or false ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -187,7 +201,7 @@ Relevant and required only for rules of the kind LogAlert. ```yaml Type: System.TimeSpan -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -197,13 +211,43 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Kind Indicates the type of scheduled query rule. The default is LogAlert. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind -Parameter Sets: (All) +Type: System.String +Parameter Sets: CreateExpanded Aliases: Required: False @@ -218,7 +262,7 @@ The geo-location where the resource lives ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: True @@ -234,7 +278,7 @@ Relevant only for rules of the kind LogAlert. ```yaml Type: System.TimeSpan -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -265,7 +309,7 @@ Relevant only for rules of the kind LogAlert. ```yaml Type: System.TimeSpan -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -296,7 +340,7 @@ The list of resource id's that this scheduled query rule is scoped to. ```yaml Type: System.String[] -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -314,7 +358,7 @@ Relevant and required only for rules of the kind LogAlert. ```yaml Type: System.Int64 -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -331,7 +375,7 @@ Relevant only for rules of the kind LogAlert. ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -361,7 +405,7 @@ Resource tags. ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -378,7 +422,7 @@ Relevant only for rules of the kind LogAlert ```yaml Type: System.String[] -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -394,7 +438,7 @@ Relevant and required only for rules of the kind LogAlert. ```yaml Type: System.TimeSpan -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -442,7 +486,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleResource ## NOTES diff --git a/src/Monitor/Monitor/help/New-AzScheduledQueryRuleConditionObject.md b/src/Monitor/Monitor/help/New-AzScheduledQueryRuleConditionObject.md index 4e8742552725..fd7dfaa1e17a 100644 --- a/src/Monitor/Monitor/help/New-AzScheduledQueryRuleConditionObject.md +++ b/src/Monitor/Monitor/help/New-AzScheduledQueryRuleConditionObject.md @@ -1,7 +1,7 @@ --- external help file: Az.ScheduledQueryRule.psm1-help.xml Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzScheduledQueryRuleConditionObject +online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-azscheduledqueryruleconditionobject schema: 2.0.0 --- @@ -15,8 +15,8 @@ Create an in-memory object for Condition. ``` New-AzScheduledQueryRuleConditionObject [-Dimension ] [-FailingPeriodMinFailingPeriodsToAlert ] [-FailingPeriodNumberOfEvaluationPeriod ] - [-MetricMeasureColumn ] [-MetricName ] [-Operator ] [-Query ] - [-ResourceIdColumn ] [-Threshold ] [-TimeAggregation ] + [-MetricMeasureColumn ] [-MetricName ] [-Operator ] [-Query ] + [-ResourceIdColumn ] [-Threshold ] [-TimeAggregation ] [] ``` @@ -37,10 +37,9 @@ Create condition object ### -Dimension List of Dimensions conditions. -To construct, see NOTES section for DIMENSION properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IDimension[] Parameter Sets: (All) Aliases: @@ -122,7 +121,7 @@ The criteria operator. Relevant and required only for rules of the kind LogAlert. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator +Type: System.String Parameter Sets: (All) Aliases: @@ -186,7 +185,7 @@ Aggregation type. Relevant and required only for rules of the kind LogAlert. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation +Type: System.String Parameter Sets: (All) Aliases: @@ -204,7 +203,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.Condition +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Condition ## NOTES diff --git a/src/Monitor/Monitor/help/New-AzScheduledQueryRuleDimensionObject.md b/src/Monitor/Monitor/help/New-AzScheduledQueryRuleDimensionObject.md index 7b1bf1ad7b9b..52e45984622f 100644 --- a/src/Monitor/Monitor/help/New-AzScheduledQueryRuleDimensionObject.md +++ b/src/Monitor/Monitor/help/New-AzScheduledQueryRuleDimensionObject.md @@ -1,7 +1,7 @@ --- external help file: Az.ScheduledQueryRule.psm1-help.xml Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzScheduledQueryRuleDimensionObject +online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-azscheduledqueryruledimensionobject schema: 2.0.0 --- @@ -13,7 +13,7 @@ Create an in-memory object for Dimension. ## SYNTAX ``` -New-AzScheduledQueryRuleDimensionObject -Name -Operator -Value +New-AzScheduledQueryRuleDimensionObject -Name -Operator -Value [] ``` @@ -50,7 +50,7 @@ Accept wildcard characters: False Operator for dimension values. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.DimensionOperator +Type: System.String Parameter Sets: (All) Aliases: @@ -83,7 +83,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.Dimension +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Dimension ## NOTES diff --git a/src/Monitor/Monitor/help/New-AzSubscriptionDiagnosticSetting.md b/src/Monitor/Monitor/help/New-AzSubscriptionDiagnosticSetting.md index 9f5396045ab5..e8fbc83fec23 100644 --- a/src/Monitor/Monitor/help/New-AzSubscriptionDiagnosticSetting.md +++ b/src/Monitor/Monitor/help/New-AzSubscriptionDiagnosticSetting.md @@ -8,10 +8,11 @@ schema: 2.0.0 # New-AzSubscriptionDiagnosticSetting ## SYNOPSIS -Creates or updates subscription diagnostic settings for the specified resource. +Create subscription diagnostic settings for the specified resource. ## SYNTAX +### CreateExpanded (Default) ``` New-AzSubscriptionDiagnosticSetting -Name [-SubscriptionId ] [-EventHubAuthorizationRuleId ] [-EventHubName ] [-Log ] @@ -20,8 +21,20 @@ New-AzSubscriptionDiagnosticSetting -Name [-SubscriptionId ] [] ``` +### CreateViaJsonFilePath +``` +New-AzSubscriptionDiagnosticSetting -Name [-SubscriptionId ] -JsonFilePath + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### CreateViaJsonString +``` +New-AzSubscriptionDiagnosticSetting -Name [-SubscriptionId ] -JsonString + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + ## DESCRIPTION -Creates or updates subscription diagnostic settings for the specified resource. +Create subscription diagnostic settings for the specified resource. ## EXAMPLES @@ -58,7 +71,7 @@ The resource Id for the event hub authorization rule. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -74,7 +87,7 @@ If none is specified, the default event hub will be selected. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -84,13 +97,42 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Log The list of logs settings. -To construct, see NOTES section for LOG properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.ISubscriptionLogSettings[] -Parameter Sets: (All) +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ISubscriptionLogSettings[] +Parameter Sets: CreateExpanded Aliases: Required: False @@ -105,7 +147,7 @@ The full ARM resource ID of the Marketplace resource to which you would like to ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -136,7 +178,7 @@ This is here to maintain backwards compatibility. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -151,7 +193,7 @@ The resource ID of the storage account to which you would like to send Diagnosti ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -182,7 +224,7 @@ Example: /subscriptions/4b9e8510-67ab-4e9a-95a9-e2f1e570ea9c/resourceGroups/insi ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -230,7 +272,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.ISubscriptionDiagnosticSettingsResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ISubscriptionDiagnosticSettingsResource ## NOTES diff --git a/src/Monitor/Monitor/help/Remove-AzAutoscaleSetting.md b/src/Monitor/Monitor/help/Remove-AzAutoscaleSetting.md index dcf9bbd9043e..81428ac70532 100644 --- a/src/Monitor/Monitor/help/Remove-AzAutoscaleSetting.md +++ b/src/Monitor/Monitor/help/Remove-AzAutoscaleSetting.md @@ -57,7 +57,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleIdentity diff --git a/src/Monitor/Monitor/help/Remove-AzDiagnosticSetting.md b/src/Monitor/Monitor/help/Remove-AzDiagnosticSetting.md index 402e92b40403..dca06532308d 100644 --- a/src/Monitor/Monitor/help/Remove-AzDiagnosticSetting.md +++ b/src/Monitor/Monitor/help/Remove-AzDiagnosticSetting.md @@ -57,7 +57,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingIdentity diff --git a/src/Monitor/Monitor/help/Remove-AzMonitorWorkspace.md b/src/Monitor/Monitor/help/Remove-AzMonitorWorkspace.md index 24bfd27c97dc..1bf296953a61 100644 --- a/src/Monitor/Monitor/help/Remove-AzMonitorWorkspace.md +++ b/src/Monitor/Monitor/help/Remove-AzMonitorWorkspace.md @@ -79,7 +79,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.IMonitorWorkspaceIdentity diff --git a/src/Monitor/Monitor/help/Remove-AzScheduledQueryRule.md b/src/Monitor/Monitor/help/Remove-AzScheduledQueryRule.md index b8cddd1bd4bc..825314fadef0 100644 --- a/src/Monitor/Monitor/help/Remove-AzScheduledQueryRule.md +++ b/src/Monitor/Monitor/help/Remove-AzScheduledQueryRule.md @@ -57,7 +57,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity diff --git a/src/Monitor/Monitor/help/Remove-AzSubscriptionDiagnosticSetting.md b/src/Monitor/Monitor/help/Remove-AzSubscriptionDiagnosticSetting.md index 619ab23bba43..701edce4427e 100644 --- a/src/Monitor/Monitor/help/Remove-AzSubscriptionDiagnosticSetting.md +++ b/src/Monitor/Monitor/help/Remove-AzSubscriptionDiagnosticSetting.md @@ -56,7 +56,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingIdentity diff --git a/src/Monitor/Monitor/help/Update-AzAutoscaleSetting.md b/src/Monitor/Monitor/help/Update-AzAutoscaleSetting.md index 25b0b4a7e035..28bbeb53b78c 100644 --- a/src/Monitor/Monitor/help/Update-AzAutoscaleSetting.md +++ b/src/Monitor/Monitor/help/Update-AzAutoscaleSetting.md @@ -17,19 +17,19 @@ To update other fields use the CreateOrUpdate method. ``` Update-AzAutoscaleSetting -Name -ResourceGroupName [-SubscriptionId ] [-Enabled ] [-Notification ] - [-PredictiveAutoscalePolicyScaleLookAheadTime ] - [-PredictiveAutoscalePolicyScaleMode ] [-Profile ] - [-Tag ] [-TargetResourceLocation ] [-TargetResourceUri ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-PredictiveAutoscalePolicyScaleLookAheadTime ] [-PredictiveAutoscalePolicyScaleMode ] + [-Profile ] [-Tag ] [-TargetResourceLocation ] + [-TargetResourceUri ] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ### UpdateViaIdentityExpanded ``` Update-AzAutoscaleSetting -InputObject [-Enabled ] [-Notification ] [-PredictiveAutoscalePolicyScaleLookAheadTime ] - [-PredictiveAutoscalePolicyScaleMode ] [-Profile ] - [-Tag ] [-TargetResourceLocation ] [-TargetResourceUri ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-PredictiveAutoscalePolicyScaleMode ] [-Profile ] [-Tag ] + [-TargetResourceLocation ] [-TargetResourceUri ] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -115,7 +115,7 @@ the collection of notifications. To construct, see NOTES section for NOTIFICATION properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleNotification[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleNotification[] Parameter Sets: (All) Aliases: @@ -146,7 +146,7 @@ Accept wildcard characters: False the predictive autoscale mode ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.PredictiveAutoscalePolicyScaleMode +Type: System.String Parameter Sets: (All) Aliases: @@ -163,7 +163,7 @@ A maximum of 20 profiles can be specified. To construct, see NOTES section for PROFILE properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleProfile[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleProfile[] Parameter Sets: (All) Aliases: @@ -290,7 +290,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleSettingResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleSettingResource ## NOTES diff --git a/src/Monitor/Monitor/help/Update-AzDiagnosticSetting.md b/src/Monitor/Monitor/help/Update-AzDiagnosticSetting.md new file mode 100644 index 000000000000..606d942a5619 --- /dev/null +++ b/src/Monitor/Monitor/help/Update-AzDiagnosticSetting.md @@ -0,0 +1,294 @@ +--- +external help file: Az.DiagnosticSetting.psm1-help.xml +Module Name: Az.Monitor +online version: https://learn.microsoft.com/powershell/module/az.monitor/update-azdiagnosticsetting +schema: 2.0.0 +--- + +# Update-AzDiagnosticSetting + +## SYNOPSIS +Update diagnostic settings for the specified resource. + +## SYNTAX + +### UpdateExpanded (Default) +``` +Update-AzDiagnosticSetting -Name -ResourceId [-EventHubAuthorizationRuleId ] + [-EventHubName ] [-Log ] [-LogAnalyticsDestinationType ] + [-MarketplacePartnerId ] [-Metric ] [-ServiceBusRuleId ] + [-StorageAccountId ] [-WorkspaceId ] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### UpdateViaIdentityExpanded +``` +Update-AzDiagnosticSetting -InputObject [-EventHubAuthorizationRuleId ] + [-EventHubName ] [-Log ] [-LogAnalyticsDestinationType ] + [-MarketplacePartnerId ] [-Metric ] [-ServiceBusRuleId ] + [-StorageAccountId ] [-WorkspaceId ] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Update diagnostic settings for the specified resource. + +## EXAMPLES + +### Example 1: Update diagnostic setting +```powershell +$newlog = New-AzDiagnosticSettingLogSettingsObject -Enabled $false -Category 'VMProtectionAlerts' +$newmetric = New-AzDiagnosticSettingMetricSettingsObject -Enabled $false -Category 'AllMetrics' +Update-AzDiagnosticSetting -Name diagnosticSettingName -ResourceId 'vnetId' -Log $newlog -Metric $newmetric +``` + +These commands update diagnostic setting for resource with log analytics workspace as destination. + +## PARAMETERS + +### -DefaultProfile +The DefaultProfile parameter is not functional. +Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EventHubAuthorizationRuleId +The resource Id for the event hub authorization rule. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EventHubName +The name of the event hub. +If none is specified, the default event hub will be selected. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingIdentity +Parameter Sets: UpdateViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Log +The list of logs settings. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ILogSettings[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -LogAnalyticsDestinationType +A string indicating whether the export to Log Analytics should use the default destination type, i.e. +AzureDiagnostics, or use a destination type constructed as follows: \_\. +Possible values are: Dedicated and null (null is default.) + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MarketplacePartnerId +The full ARM resource ID of the Marketplace resource to which you would like to send Diagnostic Logs. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Metric +The list of metric settings. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IMetricSettings[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the diagnostic setting. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +The identifier of the resource. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceBusRuleId +The service bus rule Id of the diagnostic setting. +This is here to maintain backwards compatibility. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StorageAccountId +The resource ID of the storage account to which you would like to send Diagnostic Logs. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WorkspaceId +The full ARM resource ID of the Log Analytics workspace to which you would like to send Diagnostic Logs. +Example: /subscriptions/4b9e8510-67ab-4e9a-95a9-e2f1e570ea9c/resourceGroups/insights-integration/providers/Microsoft.OperationalInsights/workspaces/viruela2 + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingsResource + +## NOTES + +## RELATED LINKS diff --git a/src/Monitor/Monitor/help/Update-AzMonitorWorkspace.md b/src/Monitor/Monitor/help/Update-AzMonitorWorkspace.md index 24ebc02e672d..33d027625e0a 100644 --- a/src/Monitor/Monitor/help/Update-AzMonitorWorkspace.md +++ b/src/Monitor/Monitor/help/Update-AzMonitorWorkspace.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Update-AzMonitorWorkspace ## SYNOPSIS -Updates part of a workspace +Update part of a workspace ## SYNTAX @@ -19,6 +19,20 @@ Update-AzMonitorWorkspace -Name -ResourceGroupName [-Subscript [] ``` +### UpdateViaJsonString +``` +Update-AzMonitorWorkspace -Name -ResourceGroupName [-SubscriptionId ] + -JsonString [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### UpdateViaJsonFilePath +``` +Update-AzMonitorWorkspace -Name -ResourceGroupName [-SubscriptionId ] + -JsonFilePath [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + ### UpdateViaIdentityExpanded ``` Update-AzMonitorWorkspace -InputObject [-Tag ] @@ -26,7 +40,7 @@ Update-AzMonitorWorkspace -InputObject [-Tag -ResourceGroupName [-Subscri [-WhatIf] [-Confirm] [] ``` +### UpdateViaJsonString +``` +Update-AzScheduledQueryRule -Name -ResourceGroupName [-SubscriptionId ] + -JsonString [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### UpdateViaJsonFilePath +``` +Update-AzScheduledQueryRule -Name -ResourceGroupName [-SubscriptionId ] + -JsonFilePath [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + ### UpdateViaIdentityExpanded ``` Update-AzScheduledQueryRule -InputObject [-ActionCustomProperty ] @@ -54,7 +68,7 @@ The properties of an alert payload. ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -69,7 +83,7 @@ Action Group resource Ids to invoke when the alert fires. ```yaml Type: System.String[] -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -86,7 +100,7 @@ Relevant only for rules of the kind LogAlert. ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -103,7 +117,7 @@ Relevant only for rules of the kind LogAlert. ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -115,11 +129,10 @@ Accept wildcard characters: False ### -CriterionAllOf A list of conditions to evaluate against the specified scopes -To construct, see NOTES section for CRITERIONALLOF properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[] -Parameter Sets: (All) +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.ICondition[] +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -150,7 +163,7 @@ The description of the scheduled query rule. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -165,7 +178,7 @@ The display name of the alert rule ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -181,7 +194,7 @@ Value should be true or false ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -197,7 +210,7 @@ Relevant and required only for rules of the kind LogAlert. ```yaml Type: System.TimeSpan -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -209,7 +222,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity @@ -223,13 +235,43 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -MuteActionsDuration Mute actions for the chosen period of time (in ISO 8601 duration format) after the alert is fired. Relevant only for rules of the kind LogAlert. ```yaml Type: System.TimeSpan -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -244,7 +286,7 @@ The name of the rule. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonString, UpdateViaJsonFilePath Aliases: Required: True @@ -260,7 +302,7 @@ Relevant only for rules of the kind LogAlert. ```yaml Type: System.TimeSpan -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -276,7 +318,7 @@ The name is case insensitive. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonString, UpdateViaJsonFilePath Aliases: Required: True @@ -291,7 +333,7 @@ The list of resource id's that this scheduled query rule is scoped to. ```yaml Type: System.String[] -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -309,7 +351,7 @@ Relevant and required only for rules of the kind LogAlert. ```yaml Type: System.Int64 -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -326,7 +368,7 @@ Relevant only for rules of the kind LogAlert. ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -341,7 +383,7 @@ The ID of the target subscription. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonString, UpdateViaJsonFilePath Aliases: Required: False @@ -356,7 +398,7 @@ Resource tags ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -373,7 +415,7 @@ Relevant only for rules of the kind LogAlert ```yaml Type: System.String[] -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -389,7 +431,7 @@ Relevant and required only for rules of the kind LogAlert. ```yaml Type: System.TimeSpan -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -439,7 +481,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleResource ## NOTES diff --git a/src/Monitor/Monitor/help/Update-AzSubscriptionDiagnosticSetting.md b/src/Monitor/Monitor/help/Update-AzSubscriptionDiagnosticSetting.md new file mode 100644 index 000000000000..499f44cc3621 --- /dev/null +++ b/src/Monitor/Monitor/help/Update-AzSubscriptionDiagnosticSetting.md @@ -0,0 +1,261 @@ +--- +external help file: Az.DiagnosticSetting.psm1-help.xml +Module Name: Az.Monitor +online version: https://learn.microsoft.com/powershell/module/az.monitor/update-azsubscriptiondiagnosticsetting +schema: 2.0.0 +--- + +# Update-AzSubscriptionDiagnosticSetting + +## SYNOPSIS +Update subscription diagnostic settings for the specified resource. + +## SYNTAX + +### UpdateExpanded (Default) +``` +Update-AzSubscriptionDiagnosticSetting -Name [-SubscriptionId ] + [-EventHubAuthorizationRuleId ] [-EventHubName ] [-Log ] + [-MarketplacePartnerId ] [-ServiceBusRuleId ] [-StorageAccountId ] + [-WorkspaceId ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### UpdateViaIdentityExpanded +``` +Update-AzSubscriptionDiagnosticSetting -InputObject + [-EventHubAuthorizationRuleId ] [-EventHubName ] [-Log ] + [-MarketplacePartnerId ] [-ServiceBusRuleId ] [-StorageAccountId ] + [-WorkspaceId ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +Update subscription diagnostic settings for the specified resource. + +## EXAMPLES + +### Example 1: Update diagnostic setting for current subscription +```powershell +$log = New-AzDiagnosticSettingSubscriptionLogSettingsObject -Category Recommendation -Enabled $true +Update-AzSubscriptionDiagnosticSetting -Name settingname -WorkspaceId 'workspaceid' -Log $log +``` + +These command update diagnostic setting for current subscription. + +## PARAMETERS + +### -DefaultProfile +The DefaultProfile parameter is not functional. +Use the SubscriptionId parameter when available if executing the cmdlet against a different subscription. + +```yaml +Type: System.Management.Automation.PSObject +Parameter Sets: (All) +Aliases: AzureRMContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EventHubAuthorizationRuleId +The resource Id for the event hub authorization rule. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EventHubName +The name of the event hub. +If none is specified, the default event hub will be selected. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Identity Parameter + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingIdentity +Parameter Sets: UpdateViaIdentityExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Log +The list of logs settings. + +```yaml +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ISubscriptionLogSettings[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MarketplacePartnerId +The full ARM resource ID of the Marketplace resource to which you would like to send Diagnostic Logs. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +The name of the diagnostic setting. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceBusRuleId +The service bus rule Id of the diagnostic setting. +This is here to maintain backwards compatibility. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StorageAccountId +The resource ID of the storage account to which you would like to send Diagnostic Logs. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscriptionId +The ID of the target subscription. + +```yaml +Type: System.String +Parameter Sets: UpdateExpanded +Aliases: + +Required: False +Position: Named +Default value: (Get-AzContext).Subscription.Id +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WorkspaceId +The full ARM resource ID of the Log Analytics workspace to which you would like to send Diagnostic Logs. +Example: /subscriptions/4b9e8510-67ab-4e9a-95a9-e2f1e570ea9c/resourceGroups/insights-integration/providers/Microsoft.OperationalInsights/workspaces/viruela2 + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IDiagnosticSettingIdentity + +## OUTPUTS + +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ISubscriptionDiagnosticSettingsResource + +## NOTES + +## RELATED LINKS diff --git a/src/Monitor/MonitorWorkspace.Autorest/README.md b/src/Monitor/MonitorWorkspace.Autorest/README.md index 33561d10662d..0f5ba4f962a6 100644 --- a/src/Monitor/MonitorWorkspace.Autorest/README.md +++ b/src/Monitor/MonitorWorkspace.Autorest/README.md @@ -40,21 +40,13 @@ module-version: 0.1.0 subject-prefix: $(service-name) namespace: Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace -resourcegroup-append: true -identity-correction-for-post: true -nested-object-to-string: true - -# For new modules, please avoid setting 3.x using the use-extension method and instead, use 4.x as the default option -use-extension: - "@autorest/powershell": "3.x" - directive: - where: subject: ^AzureMonitorWorkspace(.*) set: subject: $1 - where: - variant: ^Create$|^CreateViaIdentity$|^Update$|^UpdateViaIdentity$ + variant: ^(Create|Update)(?!.*?(Expanded|JsonFilePath|JsonString)) remove: true - where: subject: MonitorOperation diff --git a/src/Monitor/MonitorWorkspace.Autorest/docs/Az.MonitorWorkspace.md b/src/Monitor/MonitorWorkspace.Autorest/docs/Az.MonitorWorkspace.md index 8dc11bada03f..1154bc8d685e 100644 --- a/src/Monitor/MonitorWorkspace.Autorest/docs/Az.MonitorWorkspace.md +++ b/src/Monitor/MonitorWorkspace.Autorest/docs/Az.MonitorWorkspace.md @@ -1,6 +1,6 @@ --- Module Name: Az.MonitorWorkspace -Module Guid: c75a8adb-93ad-4290-aa8d-1b253f35a0c6 +Module Guid: aab53581-9740-475a-a701-2519bf874470 Download Help Link: https://learn.microsoft.com/powershell/module/az.monitorworkspace Help Version: 1.0.0.0 Locale: en-US @@ -15,11 +15,11 @@ Microsoft Azure PowerShell: MonitorWorkspace cmdlets Returns the specific Azure Monitor workspace ### [New-AzMonitorWorkspace](New-AzMonitorWorkspace.md) -Create or update a workspace +Create a workspace ### [Remove-AzMonitorWorkspace](Remove-AzMonitorWorkspace.md) Delete a workspace ### [Update-AzMonitorWorkspace](Update-AzMonitorWorkspace.md) -Updates part of a workspace +Update part of a workspace diff --git a/src/Monitor/MonitorWorkspace.Autorest/docs/Get-AzMonitorWorkspace.md b/src/Monitor/MonitorWorkspace.Autorest/docs/Get-AzMonitorWorkspace.md index 6863b2aa0973..ef9bd147d306 100644 --- a/src/Monitor/MonitorWorkspace.Autorest/docs/Get-AzMonitorWorkspace.md +++ b/src/Monitor/MonitorWorkspace.Autorest/docs/Get-AzMonitorWorkspace.md @@ -99,7 +99,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.IMonitorWorkspaceIdentity @@ -169,7 +168,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.Api20230403.IAzureMonitorWorkspaceResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.IAzureMonitorWorkspaceResource ## NOTES diff --git a/src/Monitor/MonitorWorkspace.Autorest/docs/New-AzMonitorWorkspace.md b/src/Monitor/MonitorWorkspace.Autorest/docs/New-AzMonitorWorkspace.md index 705592d5626f..1c758d1452ed 100644 --- a/src/Monitor/MonitorWorkspace.Autorest/docs/New-AzMonitorWorkspace.md +++ b/src/Monitor/MonitorWorkspace.Autorest/docs/New-AzMonitorWorkspace.md @@ -8,7 +8,7 @@ schema: 2.0.0 # New-AzMonitorWorkspace ## SYNOPSIS -Create or update a workspace +Create a workspace ## SYNTAX @@ -25,8 +25,20 @@ New-AzMonitorWorkspace -InputObject -Location ] [-Confirm] [-WhatIf] [] ``` +### CreateViaJsonFilePath +``` +New-AzMonitorWorkspace -Name -ResourceGroupName -JsonFilePath + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### CreateViaJsonString +``` +New-AzMonitorWorkspace -Name -ResourceGroupName -JsonString + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION -Create or update a workspace +Create a workspace ## EXAMPLES @@ -63,7 +75,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.IMonitorWorkspaceIdentity @@ -77,12 +88,42 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Location The geo-location where the resource lives ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: True @@ -98,7 +139,7 @@ The name is case insensitive ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: AzureMonitorWorkspaceName Required: True @@ -114,7 +155,7 @@ The name is case insensitive. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: True @@ -129,7 +170,7 @@ The ID of the target subscription. ```yaml Type: System.String -Parameter Sets: CreateExpanded +Parameter Sets: CreateExpanded, CreateViaJsonFilePath, CreateViaJsonString Aliases: Required: False @@ -144,7 +185,7 @@ Resource tags. ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: CreateExpanded, CreateViaIdentityExpanded Aliases: Required: False @@ -194,7 +235,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.Api20230403.IAzureMonitorWorkspaceResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.IAzureMonitorWorkspaceResource ## NOTES diff --git a/src/Monitor/MonitorWorkspace.Autorest/docs/Remove-AzMonitorWorkspace.md b/src/Monitor/MonitorWorkspace.Autorest/docs/Remove-AzMonitorWorkspace.md index b91551dafe0d..edf3a43e2af3 100644 --- a/src/Monitor/MonitorWorkspace.Autorest/docs/Remove-AzMonitorWorkspace.md +++ b/src/Monitor/MonitorWorkspace.Autorest/docs/Remove-AzMonitorWorkspace.md @@ -78,7 +78,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.IMonitorWorkspaceIdentity diff --git a/src/Monitor/MonitorWorkspace.Autorest/docs/Update-AzMonitorWorkspace.md b/src/Monitor/MonitorWorkspace.Autorest/docs/Update-AzMonitorWorkspace.md index 14535e5d6787..1a33971ce79e 100644 --- a/src/Monitor/MonitorWorkspace.Autorest/docs/Update-AzMonitorWorkspace.md +++ b/src/Monitor/MonitorWorkspace.Autorest/docs/Update-AzMonitorWorkspace.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Update-AzMonitorWorkspace ## SYNOPSIS -Updates part of a workspace +Update part of a workspace ## SYNTAX @@ -24,8 +24,20 @@ Update-AzMonitorWorkspace -InputObject [-Tag ] [-Confirm] [-WhatIf] [] ``` +### UpdateViaJsonFilePath +``` +Update-AzMonitorWorkspace -Name -ResourceGroupName -JsonFilePath + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### UpdateViaJsonString +``` +Update-AzMonitorWorkspace -Name -ResourceGroupName -JsonString + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION -Updates part of a workspace +Update part of a workspace ## EXAMPLES @@ -75,7 +87,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.IMonitorWorkspaceIdentity @@ -89,13 +100,43 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Name The name of the Azure Monitor workspace. The name is case insensitive ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString Aliases: AzureMonitorWorkspaceName Required: True @@ -111,7 +152,7 @@ The name is case insensitive. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString Aliases: Required: True @@ -126,7 +167,7 @@ The ID of the target subscription. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString Aliases: Required: False @@ -141,7 +182,7 @@ Resource tags ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -191,7 +232,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.Api20230403.IAzureMonitorWorkspaceResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.IAzureMonitorWorkspaceResource ## NOTES diff --git a/src/Monitor/MonitorWorkspace.Autorest/test/AzMonitorWorkspace.Recording.json b/src/Monitor/MonitorWorkspace.Autorest/test/AzMonitorWorkspace.Recording.json index 8c8697a0da18..66e6d2b5e261 100644 --- a/src/Monitor/MonitorWorkspace.Autorest/test/AzMonitorWorkspace.Recording.json +++ b/src/Monitor/MonitorWorkspace.Autorest/test/AzMonitorWorkspace.Recording.json @@ -1,8 +1,8 @@ { - "AzMonitorWorkspace+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/ytkoq0?api-version=2023-04-03+1": { + "AzMonitorWorkspace+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/olq76n?api-version=2023-04-03+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/ytkoq0?api-version=2023-04-03", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/olq76n?api-version=2023-04-03", "Content": "{\r\n \"location\": \"eastus\"\r\n}", "isContentBase64": false, "Headers": { @@ -18,30 +18,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southeastasia/e724fd16-a264-4509-8d4e-90f7c0ae4f58" ], "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], - "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ "27642e9c-5a1b-4d81-88c8-cb6f6ef2ad79" ], - "x-ms-correlation-request-id": [ "27642e9c-5a1b-4d81-88c8-cb6f6ef2ad79" ], - "x-ms-routing-request-id": [ "JAPANEAST:20230427T103342Z:27642e9c-5a1b-4d81-88c8-cb6f6ef2ad79" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2023-06-01-preview, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "199" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "2999" ], + "x-ms-request-id": [ "6ce4a08e-7dd2-48eb-a4e4-cd955e08eaa6" ], + "x-ms-correlation-request-id": [ "6ce4a08e-7dd2-48eb-a4e4-cd955e08eaa6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T071638Z:6ce4a08e-7dd2-48eb-a4e4-cd955e08eaa6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 27 Apr 2023 10:33:41 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7C7FE12E136B4E47A2E443CDDD1B9A65 Ref B: MAA201060516049 Ref C: 2025-07-15T07:16:24Z" ], + "Date": [ "Tue, 15 Jul 2025 07:16:37 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1185" ], + "Content-Length": [ "1195" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"accountId\":\"9c78e568-c228-4b9e-8890-bbc37c420c28\",\"metrics\":{\"prometheusQueryEndpoint\":\"https://ytkoq0-as21.eastus.prometheus.monitor.azure.com\",\"internalId\":\"mac_9c78e568-c228-4b9e-8890-bbc37c420c28\"},\"provisioningState\":\"Succeeded\",\"defaultIngestionSettings\":{\"dataCollectionRuleResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_ytkoq0_eastus_managed/providers/Microsoft.Insights/dataCollectionRules/ytkoq0\",\"dataCollectionEndpointResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_ytkoq0_eastus_managed/providers/Microsoft.Insights/dataCollectionEndpoints/ytkoq0\"},\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup-monitorworkspace/providers/microsoft.monitor/accounts/ytkoq0\",\"name\":\"ytkoq0\",\"type\":\"Microsoft.Monitor/accounts\",\"etag\":\"\\\"02019d06-0000-0100-0000-644a4f850000\\\"\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-04-27T10:33:23.4987197Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-04-27T10:33:23.4987197Z\"}}", + "Content": "{\"properties\":{\"accountId\":\"34537bb9-e835-4c91-9c14-4215c028c1a1\",\"metrics\":{\"prometheusQueryEndpoint\":\"https://olq76n-b6hxfug9byh4eecw.eastus.prometheus.monitor.azure.com\",\"internalId\":\"mac_34537bb9-e835-4c91-9c14-4215c028c1a1\"},\"provisioningState\":\"Succeeded\",\"defaultIngestionSettings\":{\"dataCollectionRuleResourceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/MA_olq76n_eastus_managed/providers/Microsoft.Insights/dataCollectionRules/olq76n\",\"dataCollectionEndpointResourceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/MA_olq76n_eastus_managed/providers/Microsoft.Insights/dataCollectionEndpoints/olq76n\"},\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourcegroups/testgroup-monitorworkspace/providers/microsoft.monitor/accounts/olq76n\",\"name\":\"olq76n\",\"type\":\"Microsoft.Monitor/accounts\",\"etag\":\"\\\"cf00156d-0000-0100-0000-687600560000\\\"\",\"systemData\":{\"createdBy\":\"v-jiaji@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2025-07-15T07:16:27.5923675Z\",\"lastModifiedBy\":\"v-jiaji@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2025-07-15T07:16:27.5923675Z\"}}", "isContentBase64": false } }, - "AzMonitorWorkspace+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/3axj01?api-version=2023-04-03+2": { + "AzMonitorWorkspace+[NoContext]+CreateExpanded+$PUT+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/4yrmqc?api-version=2023-04-03+2": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/3axj01?api-version=2023-04-03", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/4yrmqc?api-version=2023-04-03", "Content": "{\r\n \"location\": \"eastus\"\r\n}", "isContentBase64": false, "Headers": { @@ -57,39 +60,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1198" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southeastasia/07444cd2-7d77-4846-9141-9eaa948f0c53" ], "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], - "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ "ab94cfee-808c-4bd2-b573-e889c39f0d5b" ], - "x-ms-correlation-request-id": [ "ab94cfee-808c-4bd2-b573-e889c39f0d5b" ], - "x-ms-routing-request-id": [ "JAPANEAST:20230427T103413Z:ab94cfee-808c-4bd2-b573-e889c39f0d5b" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2023-06-01-preview, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "199" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "2999" ], + "x-ms-request-id": [ "1ebf3a6c-451a-4d74-9263-1f67cf10af5c" ], + "x-ms-correlation-request-id": [ "1ebf3a6c-451a-4d74-9263-1f67cf10af5c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T071652Z:1ebf3a6c-451a-4d74-9263-1f67cf10af5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 27 Apr 2023 10:34:12 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 94911F1CF33C4A329F8909D42D5B1EF6 Ref B: MAA201060516049 Ref C: 2025-07-15T07:16:38Z" ], + "Date": [ "Tue, 15 Jul 2025 07:16:51 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1185" ], + "Content-Length": [ "1195" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"accountId\":\"a948f1b3-0945-404f-b2fe-77cc0cd4d7dd\",\"metrics\":{\"prometheusQueryEndpoint\":\"https://3axj01-kluh.eastus.prometheus.monitor.azure.com\",\"internalId\":\"mac_a948f1b3-0945-404f-b2fe-77cc0cd4d7dd\"},\"provisioningState\":\"Succeeded\",\"defaultIngestionSettings\":{\"dataCollectionRuleResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_3axj01_eastus_managed/providers/Microsoft.Insights/dataCollectionRules/3axj01\",\"dataCollectionEndpointResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_3axj01_eastus_managed/providers/Microsoft.Insights/dataCollectionEndpoints/3axj01\"},\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup-monitorworkspace/providers/microsoft.monitor/accounts/3axj01\",\"name\":\"3axj01\",\"type\":\"Microsoft.Monitor/accounts\",\"etag\":\"\\\"0201ff07-0000-0100-0000-644a4fa40000\\\"\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-04-27T10:33:43.6560931Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-04-27T10:33:43.6560931Z\"}}", + "Content": "{\"properties\":{\"accountId\":\"25822c41-9685-405c-8226-0fbbe10d955f\",\"metrics\":{\"prometheusQueryEndpoint\":\"https://4yrmqc-ccdegqc0gadtgbdb.eastus.prometheus.monitor.azure.com\",\"internalId\":\"mac_25822c41-9685-405c-8226-0fbbe10d955f\"},\"provisioningState\":\"Succeeded\",\"defaultIngestionSettings\":{\"dataCollectionRuleResourceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/MA_4yrmqc_eastus_managed/providers/Microsoft.Insights/dataCollectionRules/4yrmqc\",\"dataCollectionEndpointResourceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/MA_4yrmqc_eastus_managed/providers/Microsoft.Insights/dataCollectionEndpoints/4yrmqc\"},\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourcegroups/testgroup-monitorworkspace/providers/microsoft.monitor/accounts/4yrmqc\",\"name\":\"4yrmqc\",\"type\":\"Microsoft.Monitor/accounts\",\"etag\":\"\\\"cf008c6d-0000-0100-0000-687600630000\\\"\",\"systemData\":{\"createdBy\":\"v-jiaji@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2025-07-15T07:16:41.3825454Z\",\"lastModifiedBy\":\"v-jiaji@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2025-07-15T07:16:41.3825454Z\"}}", "isContentBase64": false } }, - "AzMonitorWorkspace+[NoContext]+List1+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/accounts?api-version=2023-04-03+1": { + "AzMonitorWorkspace+[NoContext]+List1+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/accounts?api-version=2023-04-03+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/accounts?api-version=2023-04-03", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/accounts?api-version=2023-04-03", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "4" ], - "x-ms-client-request-id": [ "7527bda5-b676-4130-a2a2-eb7becf8569b" ], + "x-ms-client-request-id": [ "6651e76a-5e61-4a96-8d3c-abb9f73cbf6a" ], "CommandName": [ "Get-AzMonitorWorkspace" ], "FullCommandName": [ "Get-AzMonitorWorkspace_List1" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.4", "Az.MonitorWorkspace/0.1.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.MonitorWorkspace/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -101,39 +107,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], + "x-ms-original-request-ids": [ "" ], "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], - "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ "64f0fd9a-f73c-4e35-a858-8aaa666d4c63" ], - "x-ms-correlation-request-id": [ "64f0fd9a-f73c-4e35-a858-8aaa666d4c63" ], - "x-ms-routing-request-id": [ "JAPANEAST:20230427T103413Z:64f0fd9a-f73c-4e35-a858-8aaa666d4c63" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2023-06-01-preview, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-request-id": [ "c60b9666-196c-47e3-9ac5-49d5484922cb" ], + "x-ms-correlation-request-id": [ "c60b9666-196c-47e3-9ac5-49d5484922cb" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T071653Z:c60b9666-196c-47e3-9ac5-49d5484922cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 27 Apr 2023 10:34:12 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 049EA30192874ECDB5C8336A171BB552 Ref B: MAA201060516049 Ref C: 2025-07-15T07:16:52Z" ], + "Date": [ "Tue, 15 Jul 2025 07:16:53 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "3673" ], + "Content-Length": [ "2403" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"properties\":{\"accountId\":\"9f490129-16a6-458e-8461-3c05f7aba832\",\"metrics\":{\"prometheusQueryEndpoint\":\"https://lnxmonitorworkspace-blo4.eastus.prometheus.monitor.azure.com\",\"internalId\":\"mac_9f490129-16a6-458e-8461-3c05f7aba832\"},\"provisioningState\":\"Succeeded\",\"defaultIngestionSettings\":{\"dataCollectionRuleResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_lnxmonitorworkspace_eastus_managed/providers/Microsoft.Insights/dataCollectionRules/lnxmonitorworkspace\",\"dataCollectionEndpointResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_lnxmonitorworkspace_eastus_managed/providers/Microsoft.Insights/dataCollectionEndpoints/lnxmonitorworkspace\"},\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"tags\":{},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/lnxtest/providers/microsoft.monitor/accounts/lnxmonitorworkspace\",\"name\":\"lnxMonitorworkspace\",\"type\":\"Microsoft.Monitor/accounts\",\"etag\":\"\\\"4300a8a3-0000-0100-0000-643c52af0000\\\"\",\"systemData\":{\"createdBy\":\"nanxiangliu@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-04-16T19:55:03.8973255Z\",\"lastModifiedBy\":\"nanxiangliu@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-04-16T19:55:03.8973255Z\"}},{\"properties\":{\"accountId\":\"9c78e568-c228-4b9e-8890-bbc37c420c28\",\"metrics\":{\"prometheusQueryEndpoint\":\"https://ytkoq0-as21.eastus.prometheus.monitor.azure.com\",\"internalId\":\"mac_9c78e568-c228-4b9e-8890-bbc37c420c28\"},\"provisioningState\":\"Succeeded\",\"defaultIngestionSettings\":{\"dataCollectionRuleResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_ytkoq0_eastus_managed/providers/Microsoft.Insights/dataCollectionRules/ytkoq0\",\"dataCollectionEndpointResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_ytkoq0_eastus_managed/providers/Microsoft.Insights/dataCollectionEndpoints/ytkoq0\"},\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup-monitorworkspace/providers/microsoft.monitor/accounts/ytkoq0\",\"name\":\"ytkoq0\",\"type\":\"Microsoft.Monitor/accounts\",\"etag\":\"\\\"02019d06-0000-0100-0000-644a4f850000\\\"\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-04-27T10:33:23.4987197Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-04-27T10:33:23.4987197Z\"}},{\"properties\":{\"accountId\":\"a948f1b3-0945-404f-b2fe-77cc0cd4d7dd\",\"metrics\":{\"prometheusQueryEndpoint\":\"https://3axj01-kluh.eastus.prometheus.monitor.azure.com\",\"internalId\":\"mac_a948f1b3-0945-404f-b2fe-77cc0cd4d7dd\"},\"provisioningState\":\"Succeeded\",\"defaultIngestionSettings\":{\"dataCollectionRuleResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_3axj01_eastus_managed/providers/Microsoft.Insights/dataCollectionRules/3axj01\",\"dataCollectionEndpointResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_3axj01_eastus_managed/providers/Microsoft.Insights/dataCollectionEndpoints/3axj01\"},\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup-monitorworkspace/providers/microsoft.monitor/accounts/3axj01\",\"name\":\"3axj01\",\"type\":\"Microsoft.Monitor/accounts\",\"etag\":\"\\\"0201ff07-0000-0100-0000-644a4fa40000\\\"\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-04-27T10:33:43.6560931Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-04-27T10:33:43.6560931Z\"}}],\"nextLink\":null}", + "Content": "{\"value\":[{\"properties\":{\"accountId\":\"34537bb9-e835-4c91-9c14-4215c028c1a1\",\"metrics\":{\"prometheusQueryEndpoint\":\"https://olq76n-b6hxfug9byh4eecw.eastus.prometheus.monitor.azure.com\",\"internalId\":\"mac_34537bb9-e835-4c91-9c14-4215c028c1a1\"},\"provisioningState\":\"Succeeded\",\"defaultIngestionSettings\":{\"dataCollectionRuleResourceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/MA_olq76n_eastus_managed/providers/Microsoft.Insights/dataCollectionRules/olq76n\",\"dataCollectionEndpointResourceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/MA_olq76n_eastus_managed/providers/Microsoft.Insights/dataCollectionEndpoints/olq76n\"},\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourcegroups/testgroup-monitorworkspace/providers/microsoft.monitor/accounts/olq76n\",\"name\":\"olq76n\",\"type\":\"Microsoft.Monitor/accounts\",\"etag\":\"\\\"cf00156d-0000-0100-0000-687600560000\\\"\",\"systemData\":{\"createdBy\":\"v-jiaji@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2025-07-15T07:16:27.5923675Z\",\"lastModifiedBy\":\"v-jiaji@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2025-07-15T07:16:27.5923675Z\"}},{\"properties\":{\"accountId\":\"25822c41-9685-405c-8226-0fbbe10d955f\",\"metrics\":{\"prometheusQueryEndpoint\":\"https://4yrmqc-ccdegqc0gadtgbdb.eastus.prometheus.monitor.azure.com\",\"internalId\":\"mac_25822c41-9685-405c-8226-0fbbe10d955f\"},\"provisioningState\":\"Succeeded\",\"defaultIngestionSettings\":{\"dataCollectionRuleResourceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/MA_4yrmqc_eastus_managed/providers/Microsoft.Insights/dataCollectionRules/4yrmqc\",\"dataCollectionEndpointResourceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/MA_4yrmqc_eastus_managed/providers/Microsoft.Insights/dataCollectionEndpoints/4yrmqc\"},\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourcegroups/testgroup-monitorworkspace/providers/microsoft.monitor/accounts/4yrmqc\",\"name\":\"4yrmqc\",\"type\":\"Microsoft.Monitor/accounts\",\"etag\":\"\\\"cf008c6d-0000-0100-0000-687600630000\\\"\",\"systemData\":{\"createdBy\":\"v-jiaji@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2025-07-15T07:16:41.3825454Z\",\"lastModifiedBy\":\"v-jiaji@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2025-07-15T07:16:41.3825454Z\"}}]}", "isContentBase64": false } }, - "AzMonitorWorkspace+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/ytkoq0?api-version=2023-04-03+1": { + "AzMonitorWorkspace+[NoContext]+Get+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/olq76n?api-version=2023-04-03+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/ytkoq0?api-version=2023-04-03", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/olq76n?api-version=2023-04-03", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "5" ], - "x-ms-client-request-id": [ "aa6d41fe-a227-4775-a936-970a1e222957" ], + "x-ms-client-request-id": [ "2e52416e-e583-4b9c-9d02-c07cbf0ac795" ], "CommandName": [ "Get-AzMonitorWorkspace" ], "FullCommandName": [ "Get-AzMonitorWorkspace_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.4", "Az.MonitorWorkspace/0.1.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.MonitorWorkspace/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -145,39 +154,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11998" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], - "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ "7d6a1c44-82fe-4016-a83e-a6927eae5a48" ], - "x-ms-correlation-request-id": [ "7d6a1c44-82fe-4016-a83e-a6927eae5a48" ], - "x-ms-routing-request-id": [ "JAPANEAST:20230427T103413Z:7d6a1c44-82fe-4016-a83e-a6927eae5a48" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2023-06-01-preview, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-request-id": [ "3096ce63-0fb9-457c-946c-3a51be3225a8" ], + "x-ms-correlation-request-id": [ "3096ce63-0fb9-457c-946c-3a51be3225a8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T071655Z:3096ce63-0fb9-457c-946c-3a51be3225a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 27 Apr 2023 10:34:13 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 926A0429E2E5478ABAFCC1D335690C4C Ref B: MAA201060516049 Ref C: 2025-07-15T07:16:54Z" ], + "Date": [ "Tue, 15 Jul 2025 07:16:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1185" ], + "Content-Length": [ "1195" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"accountId\":\"9c78e568-c228-4b9e-8890-bbc37c420c28\",\"metrics\":{\"prometheusQueryEndpoint\":\"https://ytkoq0-as21.eastus.prometheus.monitor.azure.com\",\"internalId\":\"mac_9c78e568-c228-4b9e-8890-bbc37c420c28\"},\"provisioningState\":\"Succeeded\",\"defaultIngestionSettings\":{\"dataCollectionRuleResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_ytkoq0_eastus_managed/providers/Microsoft.Insights/dataCollectionRules/ytkoq0\",\"dataCollectionEndpointResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_ytkoq0_eastus_managed/providers/Microsoft.Insights/dataCollectionEndpoints/ytkoq0\"},\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup-monitorworkspace/providers/microsoft.monitor/accounts/ytkoq0\",\"name\":\"ytkoq0\",\"type\":\"Microsoft.Monitor/accounts\",\"etag\":\"\\\"02019d06-0000-0100-0000-644a4f850000\\\"\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-04-27T10:33:23.4987197Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-04-27T10:33:23.4987197Z\"}}", + "Content": "{\"properties\":{\"accountId\":\"34537bb9-e835-4c91-9c14-4215c028c1a1\",\"metrics\":{\"prometheusQueryEndpoint\":\"https://olq76n-b6hxfug9byh4eecw.eastus.prometheus.monitor.azure.com\",\"internalId\":\"mac_34537bb9-e835-4c91-9c14-4215c028c1a1\"},\"provisioningState\":\"Succeeded\",\"defaultIngestionSettings\":{\"dataCollectionRuleResourceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/MA_olq76n_eastus_managed/providers/Microsoft.Insights/dataCollectionRules/olq76n\",\"dataCollectionEndpointResourceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/MA_olq76n_eastus_managed/providers/Microsoft.Insights/dataCollectionEndpoints/olq76n\"},\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourcegroups/testgroup-monitorworkspace/providers/microsoft.monitor/accounts/olq76n\",\"name\":\"olq76n\",\"type\":\"Microsoft.Monitor/accounts\",\"etag\":\"\\\"cf00156d-0000-0100-0000-687600560000\\\"\",\"systemData\":{\"createdBy\":\"v-jiaji@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2025-07-15T07:16:27.5923675Z\",\"lastModifiedBy\":\"v-jiaji@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2025-07-15T07:16:27.5923675Z\"}}", "isContentBase64": false } }, - "AzMonitorWorkspace+[NoContext]+List+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts?api-version=2023-04-03+1": { + "AzMonitorWorkspace+[NoContext]+List+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts?api-version=2023-04-03+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts?api-version=2023-04-03", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts?api-version=2023-04-03", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "6" ], - "x-ms-client-request-id": [ "0c24d241-6a6c-4670-bfad-9c8a03442b14" ], + "x-ms-client-request-id": [ "15600093-0a5b-4732-9630-446d2294e6a0" ], "CommandName": [ "Get-AzMonitorWorkspace" ], "FullCommandName": [ "Get-AzMonitorWorkspace_List" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.4", "Az.MonitorWorkspace/0.1.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.MonitorWorkspace/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -189,30 +200,33 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11997" ], + "x-ms-original-request-ids": [ "" ], "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], - "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ "f604efba-6667-4909-a7bf-c294aa67945d" ], - "x-ms-correlation-request-id": [ "f604efba-6667-4909-a7bf-c294aa67945d" ], - "x-ms-routing-request-id": [ "JAPANEAST:20230427T103414Z:f604efba-6667-4909-a7bf-c294aa67945d" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2023-06-01-preview, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-request-id": [ "48bd3f80-1dc9-418a-b55d-49f49cd5ad60" ], + "x-ms-correlation-request-id": [ "48bd3f80-1dc9-418a-b55d-49f49cd5ad60" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T071657Z:48bd3f80-1dc9-418a-b55d-49f49cd5ad60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 27 Apr 2023 10:34:13 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6A75548B6EB24469B72DBA96A4C5606C Ref B: MAA201060516049 Ref C: 2025-07-15T07:16:55Z" ], + "Date": [ "Tue, 15 Jul 2025 07:16:56 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "2399" ], + "Content-Length": [ "2403" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"value\":[{\"properties\":{\"accountId\":\"9c78e568-c228-4b9e-8890-bbc37c420c28\",\"metrics\":{\"prometheusQueryEndpoint\":\"https://ytkoq0-as21.eastus.prometheus.monitor.azure.com\",\"internalId\":\"mac_9c78e568-c228-4b9e-8890-bbc37c420c28\"},\"provisioningState\":\"Succeeded\",\"defaultIngestionSettings\":{\"dataCollectionRuleResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_ytkoq0_eastus_managed/providers/Microsoft.Insights/dataCollectionRules/ytkoq0\",\"dataCollectionEndpointResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_ytkoq0_eastus_managed/providers/Microsoft.Insights/dataCollectionEndpoints/ytkoq0\"},\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup-monitorworkspace/providers/microsoft.monitor/accounts/ytkoq0\",\"name\":\"ytkoq0\",\"type\":\"Microsoft.Monitor/accounts\",\"etag\":\"\\\"02019d06-0000-0100-0000-644a4f850000\\\"\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-04-27T10:33:23.4987197Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-04-27T10:33:23.4987197Z\"}},{\"properties\":{\"accountId\":\"a948f1b3-0945-404f-b2fe-77cc0cd4d7dd\",\"metrics\":{\"prometheusQueryEndpoint\":\"https://3axj01-kluh.eastus.prometheus.monitor.azure.com\",\"internalId\":\"mac_a948f1b3-0945-404f-b2fe-77cc0cd4d7dd\"},\"provisioningState\":\"Succeeded\",\"defaultIngestionSettings\":{\"dataCollectionRuleResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_3axj01_eastus_managed/providers/Microsoft.Insights/dataCollectionRules/3axj01\",\"dataCollectionEndpointResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_3axj01_eastus_managed/providers/Microsoft.Insights/dataCollectionEndpoints/3axj01\"},\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup-monitorworkspace/providers/microsoft.monitor/accounts/3axj01\",\"name\":\"3axj01\",\"type\":\"Microsoft.Monitor/accounts\",\"etag\":\"\\\"0201ff07-0000-0100-0000-644a4fa40000\\\"\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-04-27T10:33:43.6560931Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-04-27T10:33:43.6560931Z\"}}],\"nextLink\":null}", + "Content": "{\"value\":[{\"properties\":{\"accountId\":\"34537bb9-e835-4c91-9c14-4215c028c1a1\",\"metrics\":{\"prometheusQueryEndpoint\":\"https://olq76n-b6hxfug9byh4eecw.eastus.prometheus.monitor.azure.com\",\"internalId\":\"mac_34537bb9-e835-4c91-9c14-4215c028c1a1\"},\"provisioningState\":\"Succeeded\",\"defaultIngestionSettings\":{\"dataCollectionRuleResourceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/MA_olq76n_eastus_managed/providers/Microsoft.Insights/dataCollectionRules/olq76n\",\"dataCollectionEndpointResourceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/MA_olq76n_eastus_managed/providers/Microsoft.Insights/dataCollectionEndpoints/olq76n\"},\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourcegroups/testgroup-monitorworkspace/providers/microsoft.monitor/accounts/olq76n\",\"name\":\"olq76n\",\"type\":\"Microsoft.Monitor/accounts\",\"etag\":\"\\\"cf00156d-0000-0100-0000-687600560000\\\"\",\"systemData\":{\"createdBy\":\"v-jiaji@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2025-07-15T07:16:27.5923675Z\",\"lastModifiedBy\":\"v-jiaji@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2025-07-15T07:16:27.5923675Z\"}},{\"properties\":{\"accountId\":\"25822c41-9685-405c-8226-0fbbe10d955f\",\"metrics\":{\"prometheusQueryEndpoint\":\"https://4yrmqc-ccdegqc0gadtgbdb.eastus.prometheus.monitor.azure.com\",\"internalId\":\"mac_25822c41-9685-405c-8226-0fbbe10d955f\"},\"provisioningState\":\"Succeeded\",\"defaultIngestionSettings\":{\"dataCollectionRuleResourceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/MA_4yrmqc_eastus_managed/providers/Microsoft.Insights/dataCollectionRules/4yrmqc\",\"dataCollectionEndpointResourceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/MA_4yrmqc_eastus_managed/providers/Microsoft.Insights/dataCollectionEndpoints/4yrmqc\"},\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourcegroups/testgroup-monitorworkspace/providers/microsoft.monitor/accounts/4yrmqc\",\"name\":\"4yrmqc\",\"type\":\"Microsoft.Monitor/accounts\",\"etag\":\"\\\"cf008c6d-0000-0100-0000-687600630000\\\"\",\"systemData\":{\"createdBy\":\"v-jiaji@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2025-07-15T07:16:41.3825454Z\",\"lastModifiedBy\":\"v-jiaji@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2025-07-15T07:16:41.3825454Z\"}}]}", "isContentBase64": false } }, - "AzMonitorWorkspace+[NoContext]+UpdateExpanded+$PATCH+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/ytkoq0?api-version=2023-04-03+1": { + "AzMonitorWorkspace+[NoContext]+UpdateExpanded+$PATCH+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/olq76n?api-version=2023-04-03+1": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/ytkoq0?api-version=2023-04-03", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/olq76n?api-version=2023-04-03", "Content": "{\r\n \"tags\": {\r\n \"123\": \"abc\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -228,39 +242,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1197" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southeastasia/d4228827-b710-4ede-b43b-fc629926dd30" ], "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], - "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ "30a45678-2e96-48e3-9622-66c945a5fc5c" ], - "x-ms-correlation-request-id": [ "30a45678-2e96-48e3-9622-66c945a5fc5c" ], - "x-ms-routing-request-id": [ "JAPANEAST:20230427T103416Z:30a45678-2e96-48e3-9622-66c945a5fc5c" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2023-06-01-preview, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "199" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "2999" ], + "x-ms-request-id": [ "e202a6a7-7d75-40bf-9f06-df2056c013f8" ], + "x-ms-correlation-request-id": [ "e202a6a7-7d75-40bf-9f06-df2056c013f8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T071702Z:e202a6a7-7d75-40bf-9f06-df2056c013f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 27 Apr 2023 10:34:15 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: D292FFE1AA8D4A4496AFD146CF535A36 Ref B: MAA201060516049 Ref C: 2025-07-15T07:16:57Z" ], + "Date": [ "Tue, 15 Jul 2025 07:17:01 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1206" ], + "Content-Length": [ "1215" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"accountId\":\"9c78e568-c228-4b9e-8890-bbc37c420c28\",\"metrics\":{\"prometheusQueryEndpoint\":\"https://ytkoq0-as21.eastus.prometheus.monitor.azure.com\",\"internalId\":\"mac_9c78e568-c228-4b9e-8890-bbc37c420c28\"},\"provisioningState\":\"Succeeded\",\"defaultIngestionSettings\":{\"dataCollectionRuleResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_ytkoq0_eastus_managed/providers/Microsoft.Insights/dataCollectionRules/ytkoq0\",\"dataCollectionEndpointResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_ytkoq0_eastus_managed/providers/Microsoft.Insights/dataCollectionEndpoints/ytkoq0\"},\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"tags\":{\"123\":\"abc\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup-monitorworkspace/providers/microsoft.monitor/accounts/ytkoq0\",\"name\":\"ytkoq0\",\"type\":\"Microsoft.Monitor/accounts\",\"etag\":\"\\\"02012708-0000-0100-0000-644a4fa70000\\\"\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-04-27T10:33:23.4987197Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-04-27T10:34:14.8453241Z\"}}", + "Content": "{\"properties\":{\"accountId\":\"34537bb9-e835-4c91-9c14-4215c028c1a1\",\"metrics\":{\"prometheusQueryEndpoint\":\"https://olq76n-b6hxfug9byh4eecw.eastus.prometheus.monitor.azure.com\",\"internalId\":\"mac_34537bb9-e835-4c91-9c14-4215c028c1a1\"},\"provisioningState\":\"Succeeded\",\"defaultIngestionSettings\":{\"dataCollectionRuleResourceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/MA_olq76n_eastus_managed/providers/Microsoft.Insights/dataCollectionRules/olq76n\",\"dataCollectionEndpointResourceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/MA_olq76n_eastus_managed/providers/Microsoft.Insights/dataCollectionEndpoints/olq76n\"},\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"tags\":{\"123\":\"abc\"},\"id\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourcegroups/testgroup-monitorworkspace/providers/microsoft.monitor/accounts/olq76n\",\"name\":\"olq76n\",\"type\":\"Microsoft.Monitor/accounts\",\"etag\":\"\\\"cf00cb6d-0000-0100-0000-6876006b0000\\\"\",\"systemData\":{\"createdBy\":\"v-jiaji@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2025-07-15T07:16:27.5923675Z\",\"lastModifiedBy\":\"v-jiaji@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2025-07-15T07:16:59.191812Z\"}}", "isContentBase64": false } }, - "AzMonitorWorkspace+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/3axj01?api-version=2023-04-03+1": { + "AzMonitorWorkspace+[NoContext]+UpdateViaIdentityExpanded+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/4yrmqc?api-version=2023-04-03+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/3axj01?api-version=2023-04-03", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/4yrmqc?api-version=2023-04-03", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "8" ], - "x-ms-client-request-id": [ "b12459b3-91b0-4dad-be82-d05b3873930c" ], + "x-ms-client-request-id": [ "2f2bab8c-ce76-4605-a219-7d12c0ca7ed4" ], "CommandName": [ "Get-AzMonitorWorkspace" ], "FullCommandName": [ "Get-AzMonitorWorkspace_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.4", "Az.MonitorWorkspace/0.1.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.MonitorWorkspace/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -272,30 +289,32 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11996" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], - "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ "30d5a3f9-d15b-4676-99b7-6530a166820e" ], - "x-ms-correlation-request-id": [ "30d5a3f9-d15b-4676-99b7-6530a166820e" ], - "x-ms-routing-request-id": [ "JAPANEAST:20230427T103416Z:30d5a3f9-d15b-4676-99b7-6530a166820e" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2023-06-01-preview, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-request-id": [ "63c9a562-fee4-4469-94f2-7689fa811eb4" ], + "x-ms-correlation-request-id": [ "63c9a562-fee4-4469-94f2-7689fa811eb4" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T071703Z:63c9a562-fee4-4469-94f2-7689fa811eb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 27 Apr 2023 10:34:16 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 6FFA9C50D52944DDB3376271B8D17528 Ref B: MAA201060516049 Ref C: 2025-07-15T07:17:02Z" ], + "Date": [ "Tue, 15 Jul 2025 07:17:02 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1185" ], + "Content-Length": [ "1195" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"accountId\":\"a948f1b3-0945-404f-b2fe-77cc0cd4d7dd\",\"metrics\":{\"prometheusQueryEndpoint\":\"https://3axj01-kluh.eastus.prometheus.monitor.azure.com\",\"internalId\":\"mac_a948f1b3-0945-404f-b2fe-77cc0cd4d7dd\"},\"provisioningState\":\"Succeeded\",\"defaultIngestionSettings\":{\"dataCollectionRuleResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_3axj01_eastus_managed/providers/Microsoft.Insights/dataCollectionRules/3axj01\",\"dataCollectionEndpointResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_3axj01_eastus_managed/providers/Microsoft.Insights/dataCollectionEndpoints/3axj01\"},\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup-monitorworkspace/providers/microsoft.monitor/accounts/3axj01\",\"name\":\"3axj01\",\"type\":\"Microsoft.Monitor/accounts\",\"etag\":\"\\\"0201ff07-0000-0100-0000-644a4fa40000\\\"\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-04-27T10:33:43.6560931Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-04-27T10:33:43.6560931Z\"}}", + "Content": "{\"properties\":{\"accountId\":\"25822c41-9685-405c-8226-0fbbe10d955f\",\"metrics\":{\"prometheusQueryEndpoint\":\"https://4yrmqc-ccdegqc0gadtgbdb.eastus.prometheus.monitor.azure.com\",\"internalId\":\"mac_25822c41-9685-405c-8226-0fbbe10d955f\"},\"provisioningState\":\"Succeeded\",\"defaultIngestionSettings\":{\"dataCollectionRuleResourceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/MA_4yrmqc_eastus_managed/providers/Microsoft.Insights/dataCollectionRules/4yrmqc\",\"dataCollectionEndpointResourceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/MA_4yrmqc_eastus_managed/providers/Microsoft.Insights/dataCollectionEndpoints/4yrmqc\"},\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"id\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourcegroups/testgroup-monitorworkspace/providers/microsoft.monitor/accounts/4yrmqc\",\"name\":\"4yrmqc\",\"type\":\"Microsoft.Monitor/accounts\",\"etag\":\"\\\"cf008c6d-0000-0100-0000-687600630000\\\"\",\"systemData\":{\"createdBy\":\"v-jiaji@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2025-07-15T07:16:41.3825454Z\",\"lastModifiedBy\":\"v-jiaji@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2025-07-15T07:16:41.3825454Z\"}}", "isContentBase64": false } }, - "AzMonitorWorkspace+[NoContext]+UpdateViaIdentityExpanded+$PATCH+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/3axj01?api-version=2023-04-03+2": { + "AzMonitorWorkspace+[NoContext]+UpdateViaIdentityExpanded+$PATCH+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/4yrmqc?api-version=2023-04-03+2": { "Request": { "Method": "PATCH", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/3axj01?api-version=2023-04-03", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/4yrmqc?api-version=2023-04-03", "Content": "{\r\n \"tags\": {\r\n \"123\": \"abc\"\r\n }\r\n}", "isContentBase64": false, "Headers": { @@ -311,39 +330,42 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1196" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southeastasia/df9b1f83-61cf-475f-b98a-e40d4acbf51e" ], "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], - "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ "84ffbd21-9bfc-49ef-8fea-443bcd47e680" ], - "x-ms-correlation-request-id": [ "84ffbd21-9bfc-49ef-8fea-443bcd47e680" ], - "x-ms-routing-request-id": [ "JAPANEAST:20230427T103419Z:84ffbd21-9bfc-49ef-8fea-443bcd47e680" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2023-06-01-preview, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "199" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "2999" ], + "x-ms-request-id": [ "a8d27a26-dffd-48fc-a044-fbf38c0b43f6" ], + "x-ms-correlation-request-id": [ "a8d27a26-dffd-48fc-a044-fbf38c0b43f6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T071708Z:a8d27a26-dffd-48fc-a044-fbf38c0b43f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 27 Apr 2023 10:34:18 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 167FB285786341B195275790C366FE50 Ref B: MAA201060516049 Ref C: 2025-07-15T07:17:03Z" ], + "Date": [ "Tue, 15 Jul 2025 07:17:07 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1206" ], + "Content-Length": [ "1216" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"accountId\":\"a948f1b3-0945-404f-b2fe-77cc0cd4d7dd\",\"metrics\":{\"prometheusQueryEndpoint\":\"https://3axj01-kluh.eastus.prometheus.monitor.azure.com\",\"internalId\":\"mac_a948f1b3-0945-404f-b2fe-77cc0cd4d7dd\"},\"provisioningState\":\"Succeeded\",\"defaultIngestionSettings\":{\"dataCollectionRuleResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_3axj01_eastus_managed/providers/Microsoft.Insights/dataCollectionRules/3axj01\",\"dataCollectionEndpointResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_3axj01_eastus_managed/providers/Microsoft.Insights/dataCollectionEndpoints/3axj01\"},\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"tags\":{\"123\":\"abc\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup-monitorworkspace/providers/microsoft.monitor/accounts/3axj01\",\"name\":\"3axj01\",\"type\":\"Microsoft.Monitor/accounts\",\"etag\":\"\\\"02014808-0000-0100-0000-644a4fa90000\\\"\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-04-27T10:33:43.6560931Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-04-27T10:34:17.3610849Z\"}}", + "Content": "{\"properties\":{\"accountId\":\"25822c41-9685-405c-8226-0fbbe10d955f\",\"metrics\":{\"prometheusQueryEndpoint\":\"https://4yrmqc-ccdegqc0gadtgbdb.eastus.prometheus.monitor.azure.com\",\"internalId\":\"mac_25822c41-9685-405c-8226-0fbbe10d955f\"},\"provisioningState\":\"Succeeded\",\"defaultIngestionSettings\":{\"dataCollectionRuleResourceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/MA_4yrmqc_eastus_managed/providers/Microsoft.Insights/dataCollectionRules/4yrmqc\",\"dataCollectionEndpointResourceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/MA_4yrmqc_eastus_managed/providers/Microsoft.Insights/dataCollectionEndpoints/4yrmqc\"},\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"tags\":{\"123\":\"abc\"},\"id\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourcegroups/testgroup-monitorworkspace/providers/microsoft.monitor/accounts/4yrmqc\",\"name\":\"4yrmqc\",\"type\":\"Microsoft.Monitor/accounts\",\"etag\":\"\\\"cf000a6e-0000-0100-0000-687600720000\\\"\",\"systemData\":{\"createdBy\":\"v-jiaji@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2025-07-15T07:16:41.3825454Z\",\"lastModifiedBy\":\"v-jiaji@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2025-07-15T07:17:05.5741616Z\"}}", "isContentBase64": false } }, - "AzMonitorWorkspace+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/ytkoq0?api-version=2023-04-03+1": { + "AzMonitorWorkspace+[NoContext]+Delete+$DELETE+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/olq76n?api-version=2023-04-03+1": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/ytkoq0?api-version=2023-04-03", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/olq76n?api-version=2023-04-03", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "10" ], - "x-ms-client-request-id": [ "cc70e9db-9257-418d-961b-d20242e9cf87" ], + "x-ms-client-request-id": [ "a7762e2c-3c3d-4d30-990c-33f48a1629d7" ], "CommandName": [ "Remove-AzMonitorWorkspace" ], "FullCommandName": [ "Remove-AzMonitorWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.4", "Az.MonitorWorkspace/0.1.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.MonitorWorkspace/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -354,19 +376,22 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationStatuses/36c300c6-f028-4907-9703-e8945c295e88?api-version=2023-04-03" ], + "Location": [ "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/locationOperationStatuses/5389cf4a-0982-43b1-804d-69ca9e9ce8fd?api-version=2023-04-03\u0026t=638881606321174099\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=TMnEolOyEfduRAqjJKMXt3emQx_1wtiTvRrIev2rMNOQm_e2l6ATM9YwlZxjvZnQqxMVoBFYh_s8c61KwT1Hnr4VHDNX6sa58WS0AFoznYFuPP-3xXHWFSqLBsIYpxby9CxZ0uykzKpx3qxMauQUDfhdVaOOYz1m9zFbHX-uwb1oFFJgi8d7W_fjSl_Ft0SSaZBrMXOXkPNcw_Ee_eGYRzKTNQcOlpjTm1pk1j8hIJcfzfCwd6F9_sLxOODgn5MpjZMoIwjhZLn1HBUzw-MptqKHm8AS10PXGq49mmr5ZObngzRCKmA4KeJ2DUmaYwTlIbRMn7x0nQ6Sj6OWG7HU6g\u0026h=z39F3bEv-vMQpmyYLYo4D53QlBsZ9vR3RenIjL_ElK8" ], "Retry-After": [ "15" ], "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationResults/36c300c6-f028-4907-9703-e8945c295e88?api-version=2023-04-03" ], - "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-request-id": [ "8f58faab-833b-41af-b931-e1ce84137f36" ], - "x-ms-correlation-request-id": [ "8f58faab-833b-41af-b931-e1ce84137f36" ], - "x-ms-routing-request-id": [ "JAPANEAST:20230427T103420Z:8f58faab-833b-41af-b931-e1ce84137f36" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/5389cf4a-0982-43b1-804d-69ca9e9ce8fd?api-version=2023-04-03\u0026t=638881606321174099\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=b90R90_vUq_E2fzfKKdb5yk6ZwLlhjKDc7tRh5GAegYNZlWBYWwWepPZBXsFm52cxeH46C82PCSHaalyiIbr4hKlaBuOvL-vD-t6eFsD23LyHepWsYVHDG6Jm968mX8MmznTIrlkDxJgxNdViz86xFKO9-GyPAxKQnZIyV6aw4Uhd_nyeMdw60wQ9wpGvbNr-F8ip1yJi081Fe06rpIwzqUUbRQvZdWo7J4heFs4KfOy9YxbmTqe_eAuEnjwG3hwm3J2BWWBNkOKVzACqLK_-JeXHGDJTXWvFaDacZ-kWcOnflPPZBMFmBhmj0w6mfPeJABwx9-7T7vo8VXdoXcNFg\u0026h=A61vGsf2LrHFDdCe4UtjenGVYDN9uiuAZ9o59mR1Vj4" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2023-06-01-preview, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southeastasia/8a92665a-8f45-4e39-9451-bf3b449af9e6" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "199" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "2999" ], + "x-ms-request-id": [ "10aa5e9e-bc88-49a8-ab7a-630f84f695c5" ], + "x-ms-correlation-request-id": [ "10aa5e9e-bc88-49a8-ab7a-630f84f695c5" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T071712Z:10aa5e9e-bc88-49a8-ab7a-630f84f695c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 27 Apr 2023 10:34:19 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DB20FE47710847B5ADBBB037372FAFEA Ref B: MAA201060516049 Ref C: 2025-07-15T07:17:08Z" ], + "Date": [ "Tue, 15 Jul 2025 07:17:11 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -376,20 +401,20 @@ "isContentBase64": false } }, - "AzMonitorWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationResults/36c300c6-f028-4907-9703-e8945c295e88?api-version=2023-04-03+2": { + "AzMonitorWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/5389cf4a-0982-43b1-804d-69ca9e9ce8fd?api-version=2023-04-03\u0026t=638881606321174099\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=b90R90_vUq_E2fzfKKdb5yk6ZwLlhjKDc7tRh5GAegYNZlWBYWwWepPZBXsFm52cxeH46C82PCSHaalyiIbr4hKlaBuOvL-vD-t6eFsD23LyHepWsYVHDG6Jm968mX8MmznTIrlkDxJgxNdViz86xFKO9-GyPAxKQnZIyV6aw4Uhd_nyeMdw60wQ9wpGvbNr-F8ip1yJi081Fe06rpIwzqUUbRQvZdWo7J4heFs4KfOy9YxbmTqe_eAuEnjwG3hwm3J2BWWBNkOKVzACqLK_-JeXHGDJTXWvFaDacZ-kWcOnflPPZBMFmBhmj0w6mfPeJABwx9-7T7vo8VXdoXcNFg\u0026h=A61vGsf2LrHFDdCe4UtjenGVYDN9uiuAZ9o59mR1Vj4+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationResults/36c300c6-f028-4907-9703-e8945c295e88?api-version=2023-04-03", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/5389cf4a-0982-43b1-804d-69ca9e9ce8fd?api-version=2023-04-03\u0026t=638881606321174099\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=b90R90_vUq_E2fzfKKdb5yk6ZwLlhjKDc7tRh5GAegYNZlWBYWwWepPZBXsFm52cxeH46C82PCSHaalyiIbr4hKlaBuOvL-vD-t6eFsD23LyHepWsYVHDG6Jm968mX8MmznTIrlkDxJgxNdViz86xFKO9-GyPAxKQnZIyV6aw4Uhd_nyeMdw60wQ9wpGvbNr-F8ip1yJi081Fe06rpIwzqUUbRQvZdWo7J4heFs4KfOy9YxbmTqe_eAuEnjwG3hwm3J2BWWBNkOKVzACqLK_-JeXHGDJTXWvFaDacZ-kWcOnflPPZBMFmBhmj0w6mfPeJABwx9-7T7vo8VXdoXcNFg\u0026h=A61vGsf2LrHFDdCe4UtjenGVYDN9uiuAZ9o59mR1Vj4", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "11" ], - "x-ms-client-request-id": [ "cc70e9db-9257-418d-961b-d20242e9cf87" ], + "x-ms-client-request-id": [ "a7762e2c-3c3d-4d30-990c-33f48a1629d7" ], "CommandName": [ "Remove-AzMonitorWorkspace" ], "FullCommandName": [ "Remove-AzMonitorWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.4", "Az.MonitorWorkspace/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.MonitorWorkspace/0.1.0" ] }, "ContentHeaders": { } @@ -401,16 +426,19 @@ "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southeastasia/86914ed3-761a-4506-8dbc-f642b47ca980" ], "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], - "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ "973c5cc0-9655-4d46-9186-25a5850e8e96" ], - "x-ms-correlation-request-id": [ "973c5cc0-9655-4d46-9186-25a5850e8e96" ], - "x-ms-routing-request-id": [ "JAPANEAST:20230427T103436Z:973c5cc0-9655-4d46-9186-25a5850e8e96" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-request-id": [ "97cbffa9-184e-4824-8dc5-cd6373b6a6bf" ], + "x-ms-correlation-request-id": [ "97cbffa9-184e-4824-8dc5-cd6373b6a6bf" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T071728Z:97cbffa9-184e-4824-8dc5-cd6373b6a6bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 27 Apr 2023 10:34:35 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C0DC2AC4C22F422EA010C5C4038CBDFF Ref B: MAA201060516049 Ref C: 2025-07-15T07:17:27Z" ], + "Date": [ "Tue, 15 Jul 2025 07:17:27 GMT" ] }, "ContentHeaders": { "Content-Length": [ "23" ], @@ -421,20 +449,20 @@ "isContentBase64": false } }, - "AzMonitorWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationResults/36c300c6-f028-4907-9703-e8945c295e88?api-version=2023-04-03+3": { + "AzMonitorWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/5389cf4a-0982-43b1-804d-69ca9e9ce8fd?api-version=2023-04-03\u0026t=638881606321174099\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=b90R90_vUq_E2fzfKKdb5yk6ZwLlhjKDc7tRh5GAegYNZlWBYWwWepPZBXsFm52cxeH46C82PCSHaalyiIbr4hKlaBuOvL-vD-t6eFsD23LyHepWsYVHDG6Jm968mX8MmznTIrlkDxJgxNdViz86xFKO9-GyPAxKQnZIyV6aw4Uhd_nyeMdw60wQ9wpGvbNr-F8ip1yJi081Fe06rpIwzqUUbRQvZdWo7J4heFs4KfOy9YxbmTqe_eAuEnjwG3hwm3J2BWWBNkOKVzACqLK_-JeXHGDJTXWvFaDacZ-kWcOnflPPZBMFmBhmj0w6mfPeJABwx9-7T7vo8VXdoXcNFg\u0026h=A61vGsf2LrHFDdCe4UtjenGVYDN9uiuAZ9o59mR1Vj4+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationResults/36c300c6-f028-4907-9703-e8945c295e88?api-version=2023-04-03", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/5389cf4a-0982-43b1-804d-69ca9e9ce8fd?api-version=2023-04-03\u0026t=638881606321174099\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=b90R90_vUq_E2fzfKKdb5yk6ZwLlhjKDc7tRh5GAegYNZlWBYWwWepPZBXsFm52cxeH46C82PCSHaalyiIbr4hKlaBuOvL-vD-t6eFsD23LyHepWsYVHDG6Jm968mX8MmznTIrlkDxJgxNdViz86xFKO9-GyPAxKQnZIyV6aw4Uhd_nyeMdw60wQ9wpGvbNr-F8ip1yJi081Fe06rpIwzqUUbRQvZdWo7J4heFs4KfOy9YxbmTqe_eAuEnjwG3hwm3J2BWWBNkOKVzACqLK_-JeXHGDJTXWvFaDacZ-kWcOnflPPZBMFmBhmj0w6mfPeJABwx9-7T7vo8VXdoXcNFg\u0026h=A61vGsf2LrHFDdCe4UtjenGVYDN9uiuAZ9o59mR1Vj4", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "12" ], - "x-ms-client-request-id": [ "cc70e9db-9257-418d-961b-d20242e9cf87" ], + "x-ms-client-request-id": [ "a7762e2c-3c3d-4d30-990c-33f48a1629d7" ], "CommandName": [ "Remove-AzMonitorWorkspace" ], "FullCommandName": [ "Remove-AzMonitorWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.4", "Az.MonitorWorkspace/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.MonitorWorkspace/0.1.0" ] }, "ContentHeaders": { } @@ -446,16 +474,19 @@ "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11994" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southeastasia/1f17c5e2-e123-48fa-885d-f0a69ff72c4a" ], "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], - "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ "a386e73d-2faa-4ddd-8329-32b92bc55383" ], - "x-ms-correlation-request-id": [ "a386e73d-2faa-4ddd-8329-32b92bc55383" ], - "x-ms-routing-request-id": [ "JAPANEAST:20230427T103451Z:a386e73d-2faa-4ddd-8329-32b92bc55383" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-request-id": [ "b0decd30-a8b3-4773-a0e1-fac40801f9f6" ], + "x-ms-correlation-request-id": [ "b0decd30-a8b3-4773-a0e1-fac40801f9f6" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T071744Z:b0decd30-a8b3-4773-a0e1-fac40801f9f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 27 Apr 2023 10:34:51 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: B48A330B8F114205A8968E3479779CBB Ref B: MAA201060516049 Ref C: 2025-07-15T07:17:43Z" ], + "Date": [ "Tue, 15 Jul 2025 07:17:43 GMT" ] }, "ContentHeaders": { "Content-Length": [ "23" ], @@ -466,20 +497,20 @@ "isContentBase64": false } }, - "AzMonitorWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationResults/36c300c6-f028-4907-9703-e8945c295e88?api-version=2023-04-03+4": { + "AzMonitorWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/5389cf4a-0982-43b1-804d-69ca9e9ce8fd?api-version=2023-04-03\u0026t=638881606321174099\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=b90R90_vUq_E2fzfKKdb5yk6ZwLlhjKDc7tRh5GAegYNZlWBYWwWepPZBXsFm52cxeH46C82PCSHaalyiIbr4hKlaBuOvL-vD-t6eFsD23LyHepWsYVHDG6Jm968mX8MmznTIrlkDxJgxNdViz86xFKO9-GyPAxKQnZIyV6aw4Uhd_nyeMdw60wQ9wpGvbNr-F8ip1yJi081Fe06rpIwzqUUbRQvZdWo7J4heFs4KfOy9YxbmTqe_eAuEnjwG3hwm3J2BWWBNkOKVzACqLK_-JeXHGDJTXWvFaDacZ-kWcOnflPPZBMFmBhmj0w6mfPeJABwx9-7T7vo8VXdoXcNFg\u0026h=A61vGsf2LrHFDdCe4UtjenGVYDN9uiuAZ9o59mR1Vj4+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationResults/36c300c6-f028-4907-9703-e8945c295e88?api-version=2023-04-03", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/5389cf4a-0982-43b1-804d-69ca9e9ce8fd?api-version=2023-04-03\u0026t=638881606321174099\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=b90R90_vUq_E2fzfKKdb5yk6ZwLlhjKDc7tRh5GAegYNZlWBYWwWepPZBXsFm52cxeH46C82PCSHaalyiIbr4hKlaBuOvL-vD-t6eFsD23LyHepWsYVHDG6Jm968mX8MmznTIrlkDxJgxNdViz86xFKO9-GyPAxKQnZIyV6aw4Uhd_nyeMdw60wQ9wpGvbNr-F8ip1yJi081Fe06rpIwzqUUbRQvZdWo7J4heFs4KfOy9YxbmTqe_eAuEnjwG3hwm3J2BWWBNkOKVzACqLK_-JeXHGDJTXWvFaDacZ-kWcOnflPPZBMFmBhmj0w6mfPeJABwx9-7T7vo8VXdoXcNFg\u0026h=A61vGsf2LrHFDdCe4UtjenGVYDN9uiuAZ9o59mR1Vj4", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "13" ], - "x-ms-client-request-id": [ "cc70e9db-9257-418d-961b-d20242e9cf87" ], + "x-ms-client-request-id": [ "a7762e2c-3c3d-4d30-990c-33f48a1629d7" ], "CommandName": [ "Remove-AzMonitorWorkspace" ], "FullCommandName": [ "Remove-AzMonitorWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.4", "Az.MonitorWorkspace/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.MonitorWorkspace/0.1.0" ] }, "ContentHeaders": { } @@ -491,16 +522,19 @@ "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southeastasia/2ebc8f44-e319-43ba-8909-4660367dbb70" ], "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], - "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ "1a60517e-d2f8-4810-99fb-23f7dbcb78f3" ], - "x-ms-correlation-request-id": [ "1a60517e-d2f8-4810-99fb-23f7dbcb78f3" ], - "x-ms-routing-request-id": [ "JAPANEAST:20230427T103507Z:1a60517e-d2f8-4810-99fb-23f7dbcb78f3" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-request-id": [ "fb15387d-5d13-4ed3-b51b-a3c30d91fb50" ], + "x-ms-correlation-request-id": [ "fb15387d-5d13-4ed3-b51b-a3c30d91fb50" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T071800Z:fb15387d-5d13-4ed3-b51b-a3c30d91fb50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 27 Apr 2023 10:35:06 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8A4461E2561C42438DF0F1350067C660 Ref B: MAA201060516049 Ref C: 2025-07-15T07:18:00Z" ], + "Date": [ "Tue, 15 Jul 2025 07:18:00 GMT" ] }, "ContentHeaders": { "Content-Length": [ "23" ], @@ -511,20 +545,20 @@ "isContentBase64": false } }, - "AzMonitorWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationResults/36c300c6-f028-4907-9703-e8945c295e88?api-version=2023-04-03+5": { + "AzMonitorWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/5389cf4a-0982-43b1-804d-69ca9e9ce8fd?api-version=2023-04-03\u0026t=638881606321174099\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=b90R90_vUq_E2fzfKKdb5yk6ZwLlhjKDc7tRh5GAegYNZlWBYWwWepPZBXsFm52cxeH46C82PCSHaalyiIbr4hKlaBuOvL-vD-t6eFsD23LyHepWsYVHDG6Jm968mX8MmznTIrlkDxJgxNdViz86xFKO9-GyPAxKQnZIyV6aw4Uhd_nyeMdw60wQ9wpGvbNr-F8ip1yJi081Fe06rpIwzqUUbRQvZdWo7J4heFs4KfOy9YxbmTqe_eAuEnjwG3hwm3J2BWWBNkOKVzACqLK_-JeXHGDJTXWvFaDacZ-kWcOnflPPZBMFmBhmj0w6mfPeJABwx9-7T7vo8VXdoXcNFg\u0026h=A61vGsf2LrHFDdCe4UtjenGVYDN9uiuAZ9o59mR1Vj4+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationResults/36c300c6-f028-4907-9703-e8945c295e88?api-version=2023-04-03", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/5389cf4a-0982-43b1-804d-69ca9e9ce8fd?api-version=2023-04-03\u0026t=638881606321174099\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=b90R90_vUq_E2fzfKKdb5yk6ZwLlhjKDc7tRh5GAegYNZlWBYWwWepPZBXsFm52cxeH46C82PCSHaalyiIbr4hKlaBuOvL-vD-t6eFsD23LyHepWsYVHDG6Jm968mX8MmznTIrlkDxJgxNdViz86xFKO9-GyPAxKQnZIyV6aw4Uhd_nyeMdw60wQ9wpGvbNr-F8ip1yJi081Fe06rpIwzqUUbRQvZdWo7J4heFs4KfOy9YxbmTqe_eAuEnjwG3hwm3J2BWWBNkOKVzACqLK_-JeXHGDJTXWvFaDacZ-kWcOnflPPZBMFmBhmj0w6mfPeJABwx9-7T7vo8VXdoXcNFg\u0026h=A61vGsf2LrHFDdCe4UtjenGVYDN9uiuAZ9o59mR1Vj4", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "14" ], - "x-ms-client-request-id": [ "cc70e9db-9257-418d-961b-d20242e9cf87" ], + "x-ms-client-request-id": [ "a7762e2c-3c3d-4d30-990c-33f48a1629d7" ], "CommandName": [ "Remove-AzMonitorWorkspace" ], "FullCommandName": [ "Remove-AzMonitorWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.4", "Az.MonitorWorkspace/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.MonitorWorkspace/0.1.0" ] }, "ContentHeaders": { } @@ -536,16 +570,19 @@ "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southeastasia/c90d9d00-e902-49dd-828e-55e2eb630cec" ], "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], - "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ "05a9e6cd-814d-4474-b648-d7a8b4ca904a" ], - "x-ms-correlation-request-id": [ "05a9e6cd-814d-4474-b648-d7a8b4ca904a" ], - "x-ms-routing-request-id": [ "JAPANEAST:20230427T103522Z:05a9e6cd-814d-4474-b648-d7a8b4ca904a" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-request-id": [ "6a387696-0007-4b2a-8d2a-1dbea7f5429c" ], + "x-ms-correlation-request-id": [ "6a387696-0007-4b2a-8d2a-1dbea7f5429c" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T071816Z:6a387696-0007-4b2a-8d2a-1dbea7f5429c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 27 Apr 2023 10:35:21 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7E3C1926A30242939709017DFFFFAC75 Ref B: MAA201060516049 Ref C: 2025-07-15T07:18:16Z" ], + "Date": [ "Tue, 15 Jul 2025 07:18:16 GMT" ] }, "ContentHeaders": { "Content-Length": [ "23" ], @@ -556,20 +593,20 @@ "isContentBase64": false } }, - "AzMonitorWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationResults/36c300c6-f028-4907-9703-e8945c295e88?api-version=2023-04-03+6": { + "AzMonitorWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/5389cf4a-0982-43b1-804d-69ca9e9ce8fd?api-version=2023-04-03\u0026t=638881606321174099\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=b90R90_vUq_E2fzfKKdb5yk6ZwLlhjKDc7tRh5GAegYNZlWBYWwWepPZBXsFm52cxeH46C82PCSHaalyiIbr4hKlaBuOvL-vD-t6eFsD23LyHepWsYVHDG6Jm968mX8MmznTIrlkDxJgxNdViz86xFKO9-GyPAxKQnZIyV6aw4Uhd_nyeMdw60wQ9wpGvbNr-F8ip1yJi081Fe06rpIwzqUUbRQvZdWo7J4heFs4KfOy9YxbmTqe_eAuEnjwG3hwm3J2BWWBNkOKVzACqLK_-JeXHGDJTXWvFaDacZ-kWcOnflPPZBMFmBhmj0w6mfPeJABwx9-7T7vo8VXdoXcNFg\u0026h=A61vGsf2LrHFDdCe4UtjenGVYDN9uiuAZ9o59mR1Vj4+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationResults/36c300c6-f028-4907-9703-e8945c295e88?api-version=2023-04-03", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/5389cf4a-0982-43b1-804d-69ca9e9ce8fd?api-version=2023-04-03\u0026t=638881606321174099\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=b90R90_vUq_E2fzfKKdb5yk6ZwLlhjKDc7tRh5GAegYNZlWBYWwWepPZBXsFm52cxeH46C82PCSHaalyiIbr4hKlaBuOvL-vD-t6eFsD23LyHepWsYVHDG6Jm968mX8MmznTIrlkDxJgxNdViz86xFKO9-GyPAxKQnZIyV6aw4Uhd_nyeMdw60wQ9wpGvbNr-F8ip1yJi081Fe06rpIwzqUUbRQvZdWo7J4heFs4KfOy9YxbmTqe_eAuEnjwG3hwm3J2BWWBNkOKVzACqLK_-JeXHGDJTXWvFaDacZ-kWcOnflPPZBMFmBhmj0w6mfPeJABwx9-7T7vo8VXdoXcNFg\u0026h=A61vGsf2LrHFDdCe4UtjenGVYDN9uiuAZ9o59mR1Vj4", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "15" ], - "x-ms-client-request-id": [ "cc70e9db-9257-418d-961b-d20242e9cf87" ], + "x-ms-client-request-id": [ "a7762e2c-3c3d-4d30-990c-33f48a1629d7" ], "CommandName": [ "Remove-AzMonitorWorkspace" ], "FullCommandName": [ "Remove-AzMonitorWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.4", "Az.MonitorWorkspace/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.MonitorWorkspace/0.1.0" ] }, "ContentHeaders": { } @@ -581,16 +618,19 @@ "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11991" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southeastasia/4d363c6a-997e-47a5-b18d-c8f66d040fe3" ], "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], - "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ "6f15cf40-8546-47fe-b8eb-65f102018d9c" ], - "x-ms-correlation-request-id": [ "6f15cf40-8546-47fe-b8eb-65f102018d9c" ], - "x-ms-routing-request-id": [ "JAPANEAST:20230427T103537Z:6f15cf40-8546-47fe-b8eb-65f102018d9c" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-request-id": [ "5140ce57-c74d-4d65-97c8-ea6de3622eb1" ], + "x-ms-correlation-request-id": [ "5140ce57-c74d-4d65-97c8-ea6de3622eb1" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T071833Z:5140ce57-c74d-4d65-97c8-ea6de3622eb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 27 Apr 2023 10:35:36 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: E7BBD2606068468F96110795CDC697C8 Ref B: MAA201060516049 Ref C: 2025-07-15T07:18:32Z" ], + "Date": [ "Tue, 15 Jul 2025 07:18:32 GMT" ] }, "ContentHeaders": { "Content-Length": [ "22" ], @@ -601,20 +641,20 @@ "isContentBase64": false } }, - "AzMonitorWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationStatuses/36c300c6-f028-4907-9703-e8945c295e88?api-version=2023-04-03+7": { + "AzMonitorWorkspace+[NoContext]+Delete+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/locationOperationStatuses/5389cf4a-0982-43b1-804d-69ca9e9ce8fd?api-version=2023-04-03\u0026t=638881606321174099\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=TMnEolOyEfduRAqjJKMXt3emQx_1wtiTvRrIev2rMNOQm_e2l6ATM9YwlZxjvZnQqxMVoBFYh_s8c61KwT1Hnr4VHDNX6sa58WS0AFoznYFuPP-3xXHWFSqLBsIYpxby9CxZ0uykzKpx3qxMauQUDfhdVaOOYz1m9zFbHX-uwb1oFFJgi8d7W_fjSl_Ft0SSaZBrMXOXkPNcw_Ee_eGYRzKTNQcOlpjTm1pk1j8hIJcfzfCwd6F9_sLxOODgn5MpjZMoIwjhZLn1HBUzw-MptqKHm8AS10PXGq49mmr5ZObngzRCKmA4KeJ2DUmaYwTlIbRMn7x0nQ6Sj6OWG7HU6g\u0026h=z39F3bEv-vMQpmyYLYo4D53QlBsZ9vR3RenIjL_ElK8+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationStatuses/36c300c6-f028-4907-9703-e8945c295e88?api-version=2023-04-03", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/locationOperationStatuses/5389cf4a-0982-43b1-804d-69ca9e9ce8fd?api-version=2023-04-03\u0026t=638881606321174099\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=TMnEolOyEfduRAqjJKMXt3emQx_1wtiTvRrIev2rMNOQm_e2l6ATM9YwlZxjvZnQqxMVoBFYh_s8c61KwT1Hnr4VHDNX6sa58WS0AFoznYFuPP-3xXHWFSqLBsIYpxby9CxZ0uykzKpx3qxMauQUDfhdVaOOYz1m9zFbHX-uwb1oFFJgi8d7W_fjSl_Ft0SSaZBrMXOXkPNcw_Ee_eGYRzKTNQcOlpjTm1pk1j8hIJcfzfCwd6F9_sLxOODgn5MpjZMoIwjhZLn1HBUzw-MptqKHm8AS10PXGq49mmr5ZObngzRCKmA4KeJ2DUmaYwTlIbRMn7x0nQ6Sj6OWG7HU6g\u0026h=z39F3bEv-vMQpmyYLYo4D53QlBsZ9vR3RenIjL_ElK8", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "16" ], - "x-ms-client-request-id": [ "cc70e9db-9257-418d-961b-d20242e9cf87" ], + "x-ms-client-request-id": [ "a7762e2c-3c3d-4d30-990c-33f48a1629d7" ], "CommandName": [ "Remove-AzMonitorWorkspace" ], "FullCommandName": [ "Remove-AzMonitorWorkspace_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.4", "Az.MonitorWorkspace/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.MonitorWorkspace/0.1.0" ] }, "ContentHeaders": { } @@ -625,15 +665,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], - "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11990" ], - "x-ms-request-id": [ "1299c038-f875-4ed8-8c01-015e39be3cf2" ], - "x-ms-correlation-request-id": [ "1299c038-f875-4ed8-8c01-015e39be3cf2" ], - "x-ms-routing-request-id": [ "JAPANEAST:20230427T103537Z:1299c038-f875-4ed8-8c01-015e39be3cf2" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southeastasia/d46b8b36-edf5-4283-830b-d3034e769c9d" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-request-id": [ "7925ea70-fa73-4b39-878a-56a05f3dbd79" ], + "x-ms-correlation-request-id": [ "7925ea70-fa73-4b39-878a-56a05f3dbd79" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T071834Z:7925ea70-fa73-4b39-878a-56a05f3dbd79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 27 Apr 2023 10:35:37 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 330E14A817D0463CBB85F614E4D90F6E Ref B: MAA201060516049 Ref C: 2025-07-15T07:18:33Z" ], + "Date": [ "Tue, 15 Jul 2025 07:18:33 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ] @@ -642,19 +685,19 @@ "isContentBase64": false } }, - "AzMonitorWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/3axj01?api-version=2023-04-03+1": { + "AzMonitorWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/4yrmqc?api-version=2023-04-03+1": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/3axj01?api-version=2023-04-03", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/4yrmqc?api-version=2023-04-03", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "17" ], - "x-ms-client-request-id": [ "127750b1-0ccb-455f-af68-6af3250351bb" ], + "x-ms-client-request-id": [ "7e62ba17-66cf-4495-9483-9edf903a5d1c" ], "CommandName": [ "Get-AzMonitorWorkspace" ], "FullCommandName": [ "Get-AzMonitorWorkspace_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.4", "Az.MonitorWorkspace/0.1.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.MonitorWorkspace/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -666,39 +709,41 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11989" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], - "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ "cc0f0bf0-11f4-4278-b91f-30eb8bdc6e83" ], - "x-ms-correlation-request-id": [ "cc0f0bf0-11f4-4278-b91f-30eb8bdc6e83" ], - "x-ms-routing-request-id": [ "JAPANEAST:20230427T103539Z:cc0f0bf0-11f4-4278-b91f-30eb8bdc6e83" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2023-06-01-preview, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-request-id": [ "78c0d02b-d7d8-48de-a665-a7fa17d9a61b" ], + "x-ms-correlation-request-id": [ "78c0d02b-d7d8-48de-a665-a7fa17d9a61b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T071835Z:78c0d02b-d7d8-48de-a665-a7fa17d9a61b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 27 Apr 2023 10:35:38 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C4746B0C95A1435AA41AFA7F9F4DB472 Ref B: MAA201060516049 Ref C: 2025-07-15T07:18:34Z" ], + "Date": [ "Tue, 15 Jul 2025 07:18:34 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1206" ], + "Content-Length": [ "1216" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"properties\":{\"accountId\":\"a948f1b3-0945-404f-b2fe-77cc0cd4d7dd\",\"metrics\":{\"prometheusQueryEndpoint\":\"https://3axj01-kluh.eastus.prometheus.monitor.azure.com\",\"internalId\":\"mac_a948f1b3-0945-404f-b2fe-77cc0cd4d7dd\"},\"provisioningState\":\"Succeeded\",\"defaultIngestionSettings\":{\"dataCollectionRuleResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_3axj01_eastus_managed/providers/Microsoft.Insights/dataCollectionRules/3axj01\",\"dataCollectionEndpointResourceId\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/MA_3axj01_eastus_managed/providers/Microsoft.Insights/dataCollectionEndpoints/3axj01\"},\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"tags\":{\"123\":\"abc\"},\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/testgroup-monitorworkspace/providers/microsoft.monitor/accounts/3axj01\",\"name\":\"3axj01\",\"type\":\"Microsoft.Monitor/accounts\",\"etag\":\"\\\"02014808-0000-0100-0000-644a4fa90000\\\"\",\"systemData\":{\"createdBy\":\"v-jinpel@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2023-04-27T10:33:43.6560931Z\",\"lastModifiedBy\":\"v-jinpel@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2023-04-27T10:34:17.3610849Z\"}}", + "Content": "{\"properties\":{\"accountId\":\"25822c41-9685-405c-8226-0fbbe10d955f\",\"metrics\":{\"prometheusQueryEndpoint\":\"https://4yrmqc-ccdegqc0gadtgbdb.eastus.prometheus.monitor.azure.com\",\"internalId\":\"mac_25822c41-9685-405c-8226-0fbbe10d955f\"},\"provisioningState\":\"Succeeded\",\"defaultIngestionSettings\":{\"dataCollectionRuleResourceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/MA_4yrmqc_eastus_managed/providers/Microsoft.Insights/dataCollectionRules/4yrmqc\",\"dataCollectionEndpointResourceId\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/MA_4yrmqc_eastus_managed/providers/Microsoft.Insights/dataCollectionEndpoints/4yrmqc\"},\"publicNetworkAccess\":\"Enabled\"},\"location\":\"eastus\",\"tags\":{\"123\":\"abc\"},\"id\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourcegroups/testgroup-monitorworkspace/providers/microsoft.monitor/accounts/4yrmqc\",\"name\":\"4yrmqc\",\"type\":\"Microsoft.Monitor/accounts\",\"etag\":\"\\\"cf000a6e-0000-0100-0000-687600720000\\\"\",\"systemData\":{\"createdBy\":\"v-jiaji@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2025-07-15T07:16:41.3825454Z\",\"lastModifiedBy\":\"v-jiaji@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2025-07-15T07:17:05.5741616Z\"}}", "isContentBase64": false } }, - "AzMonitorWorkspace+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/3axj01?api-version=2023-04-03+2": { + "AzMonitorWorkspace+[NoContext]+DeleteViaIdentity+$DELETE+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/4yrmqc?api-version=2023-04-03+2": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/3axj01?api-version=2023-04-03", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/testgroup-monitorworkspace/providers/Microsoft.Monitor/accounts/4yrmqc?api-version=2023-04-03", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "18" ], - "x-ms-client-request-id": [ "f124efa5-643b-4f62-916a-47d8b49555d4" ], + "x-ms-client-request-id": [ "9264f5ec-87b5-4918-a7e9-6f7f09416b15" ], "CommandName": [ "Remove-AzMonitorWorkspace" ], "FullCommandName": [ "Remove-AzMonitorWorkspace_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.4", "Az.MonitorWorkspace/0.1.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.MonitorWorkspace/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -709,19 +754,22 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Location": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationStatuses/47f84736-7f82-4b1b-823d-cf6e62e248e5?api-version=2023-04-03" ], + "Location": [ "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/locationOperationStatuses/7391bf02-6d90-4a73-bc15-d65545bfc504?api-version=2023-04-03\u0026t=638881607187538670\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=QVNOk6Sm2xnMZWEHbS2jRv9orZiGJbLEeh4C2ydUo-qmgpdWsDWj3vdu4MASN_ZyV_mQq45h9otZbe1yUbasTz4M6hJUnocVKh6RD_zXxP8WyXqMxkGtbN9IuUT33qN1YGpfllYO6THahs0f18RPNBZ-CFQOZnQam9_CDan1U1yZN75ZFsajoF_mYr1D7Tjb8riaq3U-OtYc885babj8hz_mqU2ItnteO9CifI4fsL2UElmvKxkKnfCs6dExXySIb_sz5hIwGEEcFhTC0QYWT2GRXHvlZHB03eQoHAva0xjm5SW0d_Fi4jW-Al8OkItB6MTGrE_9dtj6-zsvGYin5g\u0026h=RGywMnY9MqZuD6d0RQsh9Lexrx1jpFSPr6riMGG8Z_8" ], "Retry-After": [ "15" ], "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], - "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationResults/47f84736-7f82-4b1b-823d-cf6e62e248e5?api-version=2023-04-03" ], - "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], - "x-ms-request-id": [ "a1283a71-1435-426c-9d65-7a71d8ab226a" ], - "x-ms-correlation-request-id": [ "a1283a71-1435-426c-9d65-7a71d8ab226a" ], - "x-ms-routing-request-id": [ "JAPANEAST:20230427T103540Z:a1283a71-1435-426c-9d65-7a71d8ab226a" ], + "Azure-AsyncOperation": [ "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/7391bf02-6d90-4a73-bc15-d65545bfc504?api-version=2023-04-03\u0026t=638881607187382441\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=CZL8QPiknT2-cLCaFhSMxqEfxfWV_G9TnZ3ZHb3RM_z_PJAth89O1G7zZV6AWpf57fhimWfMLHsZcYZRTWH0OtYOv6tUE2qQRgrpiU4j7S9Ypnigf4cYbJIZSwEhQYNfA_EJ3EvClxQ3sTkOW_EPE7I927GoY3L1ptsSS1vF1W-NBN0bOGwGu_A1j7K-a3INqRVcLs2cUnc8HJN7MS2TQJpOV7YJ3Jsd5w3OdAVn8xV5Fl8kSNp473kmxtb_d1nRbdUh1b-RoZdW8INV8mBwAKdiBTNPxaC8jxadCcmot5P9Ljb5m2h_jPWbGWO96WoK5v2lEjJNakxXSoSUH34Dzw\u0026h=Smf8s7wrRgwIDOv9qcqpezO42pia2Jw2XrQGja005Ng" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2023-06-01-preview, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southeastasia/c15bbaca-8488-40f9-ae12-f63376ad4def" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "199" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "2999" ], + "x-ms-request-id": [ "cf934934-b2c0-4c2a-9110-fe708a96f855" ], + "x-ms-correlation-request-id": [ "cf934934-b2c0-4c2a-9110-fe708a96f855" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T071838Z:cf934934-b2c0-4c2a-9110-fe708a96f855" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 27 Apr 2023 10:35:39 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8F541BF7E6E6486FBA91678F3F72FF2E Ref B: MAA201060516049 Ref C: 2025-07-15T07:18:35Z" ], + "Date": [ "Tue, 15 Jul 2025 07:18:37 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], @@ -731,20 +779,20 @@ "isContentBase64": false } }, - "AzMonitorWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationResults/47f84736-7f82-4b1b-823d-cf6e62e248e5?api-version=2023-04-03+3": { + "AzMonitorWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/7391bf02-6d90-4a73-bc15-d65545bfc504?api-version=2023-04-03\u0026t=638881607187382441\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=CZL8QPiknT2-cLCaFhSMxqEfxfWV_G9TnZ3ZHb3RM_z_PJAth89O1G7zZV6AWpf57fhimWfMLHsZcYZRTWH0OtYOv6tUE2qQRgrpiU4j7S9Ypnigf4cYbJIZSwEhQYNfA_EJ3EvClxQ3sTkOW_EPE7I927GoY3L1ptsSS1vF1W-NBN0bOGwGu_A1j7K-a3INqRVcLs2cUnc8HJN7MS2TQJpOV7YJ3Jsd5w3OdAVn8xV5Fl8kSNp473kmxtb_d1nRbdUh1b-RoZdW8INV8mBwAKdiBTNPxaC8jxadCcmot5P9Ljb5m2h_jPWbGWO96WoK5v2lEjJNakxXSoSUH34Dzw\u0026h=Smf8s7wrRgwIDOv9qcqpezO42pia2Jw2XrQGja005Ng+3": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationResults/47f84736-7f82-4b1b-823d-cf6e62e248e5?api-version=2023-04-03", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/7391bf02-6d90-4a73-bc15-d65545bfc504?api-version=2023-04-03\u0026t=638881607187382441\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=CZL8QPiknT2-cLCaFhSMxqEfxfWV_G9TnZ3ZHb3RM_z_PJAth89O1G7zZV6AWpf57fhimWfMLHsZcYZRTWH0OtYOv6tUE2qQRgrpiU4j7S9Ypnigf4cYbJIZSwEhQYNfA_EJ3EvClxQ3sTkOW_EPE7I927GoY3L1ptsSS1vF1W-NBN0bOGwGu_A1j7K-a3INqRVcLs2cUnc8HJN7MS2TQJpOV7YJ3Jsd5w3OdAVn8xV5Fl8kSNp473kmxtb_d1nRbdUh1b-RoZdW8INV8mBwAKdiBTNPxaC8jxadCcmot5P9Ljb5m2h_jPWbGWO96WoK5v2lEjJNakxXSoSUH34Dzw\u0026h=Smf8s7wrRgwIDOv9qcqpezO42pia2Jw2XrQGja005Ng", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "19" ], - "x-ms-client-request-id": [ "f124efa5-643b-4f62-916a-47d8b49555d4" ], + "x-ms-client-request-id": [ "9264f5ec-87b5-4918-a7e9-6f7f09416b15" ], "CommandName": [ "Remove-AzMonitorWorkspace" ], "FullCommandName": [ "Remove-AzMonitorWorkspace_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.4", "Az.MonitorWorkspace/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.MonitorWorkspace/0.1.0" ] }, "ContentHeaders": { } @@ -756,16 +804,19 @@ "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11988" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southeastasia/160cc323-6090-425b-a375-5d17c431de4b" ], "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], - "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ "0f2bc13a-44a1-4e02-b2b9-0f55c7d375fa" ], - "x-ms-correlation-request-id": [ "0f2bc13a-44a1-4e02-b2b9-0f55c7d375fa" ], - "x-ms-routing-request-id": [ "JAPANEAST:20230427T103555Z:0f2bc13a-44a1-4e02-b2b9-0f55c7d375fa" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-request-id": [ "f870297b-3ced-40b1-9bbd-e102019582c8" ], + "x-ms-correlation-request-id": [ "f870297b-3ced-40b1-9bbd-e102019582c8" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T071854Z:f870297b-3ced-40b1-9bbd-e102019582c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 27 Apr 2023 10:35:54 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DA87FBE004C44F558FD338F13B7055D1 Ref B: MAA201060516049 Ref C: 2025-07-15T07:18:54Z" ], + "Date": [ "Tue, 15 Jul 2025 07:18:53 GMT" ] }, "ContentHeaders": { "Content-Length": [ "23" ], @@ -776,20 +827,20 @@ "isContentBase64": false } }, - "AzMonitorWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationResults/47f84736-7f82-4b1b-823d-cf6e62e248e5?api-version=2023-04-03+4": { + "AzMonitorWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/7391bf02-6d90-4a73-bc15-d65545bfc504?api-version=2023-04-03\u0026t=638881607187382441\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=CZL8QPiknT2-cLCaFhSMxqEfxfWV_G9TnZ3ZHb3RM_z_PJAth89O1G7zZV6AWpf57fhimWfMLHsZcYZRTWH0OtYOv6tUE2qQRgrpiU4j7S9Ypnigf4cYbJIZSwEhQYNfA_EJ3EvClxQ3sTkOW_EPE7I927GoY3L1ptsSS1vF1W-NBN0bOGwGu_A1j7K-a3INqRVcLs2cUnc8HJN7MS2TQJpOV7YJ3Jsd5w3OdAVn8xV5Fl8kSNp473kmxtb_d1nRbdUh1b-RoZdW8INV8mBwAKdiBTNPxaC8jxadCcmot5P9Ljb5m2h_jPWbGWO96WoK5v2lEjJNakxXSoSUH34Dzw\u0026h=Smf8s7wrRgwIDOv9qcqpezO42pia2Jw2XrQGja005Ng+4": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationResults/47f84736-7f82-4b1b-823d-cf6e62e248e5?api-version=2023-04-03", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/7391bf02-6d90-4a73-bc15-d65545bfc504?api-version=2023-04-03\u0026t=638881607187382441\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=CZL8QPiknT2-cLCaFhSMxqEfxfWV_G9TnZ3ZHb3RM_z_PJAth89O1G7zZV6AWpf57fhimWfMLHsZcYZRTWH0OtYOv6tUE2qQRgrpiU4j7S9Ypnigf4cYbJIZSwEhQYNfA_EJ3EvClxQ3sTkOW_EPE7I927GoY3L1ptsSS1vF1W-NBN0bOGwGu_A1j7K-a3INqRVcLs2cUnc8HJN7MS2TQJpOV7YJ3Jsd5w3OdAVn8xV5Fl8kSNp473kmxtb_d1nRbdUh1b-RoZdW8INV8mBwAKdiBTNPxaC8jxadCcmot5P9Ljb5m2h_jPWbGWO96WoK5v2lEjJNakxXSoSUH34Dzw\u0026h=Smf8s7wrRgwIDOv9qcqpezO42pia2Jw2XrQGja005Ng", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "20" ], - "x-ms-client-request-id": [ "f124efa5-643b-4f62-916a-47d8b49555d4" ], + "x-ms-client-request-id": [ "9264f5ec-87b5-4918-a7e9-6f7f09416b15" ], "CommandName": [ "Remove-AzMonitorWorkspace" ], "FullCommandName": [ "Remove-AzMonitorWorkspace_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.4", "Az.MonitorWorkspace/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.MonitorWorkspace/0.1.0" ] }, "ContentHeaders": { } @@ -801,16 +852,19 @@ "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11987" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southeastasia/882c169b-5451-4257-98e2-23622b2b7853" ], "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], - "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ "69dbaec4-5a35-4310-b41f-3aa9eab7debd" ], - "x-ms-correlation-request-id": [ "69dbaec4-5a35-4310-b41f-3aa9eab7debd" ], - "x-ms-routing-request-id": [ "JAPANEAST:20230427T103610Z:69dbaec4-5a35-4310-b41f-3aa9eab7debd" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-request-id": [ "48a3cf15-70f2-4e9b-a3b4-320b6162e20b" ], + "x-ms-correlation-request-id": [ "48a3cf15-70f2-4e9b-a3b4-320b6162e20b" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T071911Z:48a3cf15-70f2-4e9b-a3b4-320b6162e20b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 27 Apr 2023 10:36:10 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 4B7F32A708B243D49B58D25A5AEC6DEF Ref B: MAA201060516049 Ref C: 2025-07-15T07:19:10Z" ], + "Date": [ "Tue, 15 Jul 2025 07:19:10 GMT" ] }, "ContentHeaders": { "Content-Length": [ "23" ], @@ -821,20 +875,20 @@ "isContentBase64": false } }, - "AzMonitorWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationResults/47f84736-7f82-4b1b-823d-cf6e62e248e5?api-version=2023-04-03+5": { + "AzMonitorWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/7391bf02-6d90-4a73-bc15-d65545bfc504?api-version=2023-04-03\u0026t=638881607187382441\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=CZL8QPiknT2-cLCaFhSMxqEfxfWV_G9TnZ3ZHb3RM_z_PJAth89O1G7zZV6AWpf57fhimWfMLHsZcYZRTWH0OtYOv6tUE2qQRgrpiU4j7S9Ypnigf4cYbJIZSwEhQYNfA_EJ3EvClxQ3sTkOW_EPE7I927GoY3L1ptsSS1vF1W-NBN0bOGwGu_A1j7K-a3INqRVcLs2cUnc8HJN7MS2TQJpOV7YJ3Jsd5w3OdAVn8xV5Fl8kSNp473kmxtb_d1nRbdUh1b-RoZdW8INV8mBwAKdiBTNPxaC8jxadCcmot5P9Ljb5m2h_jPWbGWO96WoK5v2lEjJNakxXSoSUH34Dzw\u0026h=Smf8s7wrRgwIDOv9qcqpezO42pia2Jw2XrQGja005Ng+5": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationResults/47f84736-7f82-4b1b-823d-cf6e62e248e5?api-version=2023-04-03", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/7391bf02-6d90-4a73-bc15-d65545bfc504?api-version=2023-04-03\u0026t=638881607187382441\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=CZL8QPiknT2-cLCaFhSMxqEfxfWV_G9TnZ3ZHb3RM_z_PJAth89O1G7zZV6AWpf57fhimWfMLHsZcYZRTWH0OtYOv6tUE2qQRgrpiU4j7S9Ypnigf4cYbJIZSwEhQYNfA_EJ3EvClxQ3sTkOW_EPE7I927GoY3L1ptsSS1vF1W-NBN0bOGwGu_A1j7K-a3INqRVcLs2cUnc8HJN7MS2TQJpOV7YJ3Jsd5w3OdAVn8xV5Fl8kSNp473kmxtb_d1nRbdUh1b-RoZdW8INV8mBwAKdiBTNPxaC8jxadCcmot5P9Ljb5m2h_jPWbGWO96WoK5v2lEjJNakxXSoSUH34Dzw\u0026h=Smf8s7wrRgwIDOv9qcqpezO42pia2Jw2XrQGja005Ng", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "21" ], - "x-ms-client-request-id": [ "f124efa5-643b-4f62-916a-47d8b49555d4" ], + "x-ms-client-request-id": [ "9264f5ec-87b5-4918-a7e9-6f7f09416b15" ], "CommandName": [ "Remove-AzMonitorWorkspace" ], "FullCommandName": [ "Remove-AzMonitorWorkspace_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.4", "Az.MonitorWorkspace/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.MonitorWorkspace/0.1.0" ] }, "ContentHeaders": { } @@ -846,16 +900,19 @@ "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11986" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southeastasia/e73190d0-af1b-46a8-9d5c-91ed7d1e9152" ], "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], - "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ "5e8ba301-6aff-47a1-8798-f5b60acb6b08" ], - "x-ms-correlation-request-id": [ "5e8ba301-6aff-47a1-8798-f5b60acb6b08" ], - "x-ms-routing-request-id": [ "JAPANEAST:20230427T103626Z:5e8ba301-6aff-47a1-8798-f5b60acb6b08" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-request-id": [ "19dc4e4f-a21d-414f-81df-d468dc1dc9f7" ], + "x-ms-correlation-request-id": [ "19dc4e4f-a21d-414f-81df-d468dc1dc9f7" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T071927Z:19dc4e4f-a21d-414f-81df-d468dc1dc9f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 27 Apr 2023 10:36:26 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: DEBA803EC3AE450CA28D999085D98EAB Ref B: MAA201060516049 Ref C: 2025-07-15T07:19:26Z" ], + "Date": [ "Tue, 15 Jul 2025 07:19:26 GMT" ] }, "ContentHeaders": { "Content-Length": [ "23" ], @@ -866,20 +923,20 @@ "isContentBase64": false } }, - "AzMonitorWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationResults/47f84736-7f82-4b1b-823d-cf6e62e248e5?api-version=2023-04-03+6": { + "AzMonitorWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/7391bf02-6d90-4a73-bc15-d65545bfc504?api-version=2023-04-03\u0026t=638881607187382441\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=CZL8QPiknT2-cLCaFhSMxqEfxfWV_G9TnZ3ZHb3RM_z_PJAth89O1G7zZV6AWpf57fhimWfMLHsZcYZRTWH0OtYOv6tUE2qQRgrpiU4j7S9Ypnigf4cYbJIZSwEhQYNfA_EJ3EvClxQ3sTkOW_EPE7I927GoY3L1ptsSS1vF1W-NBN0bOGwGu_A1j7K-a3INqRVcLs2cUnc8HJN7MS2TQJpOV7YJ3Jsd5w3OdAVn8xV5Fl8kSNp473kmxtb_d1nRbdUh1b-RoZdW8INV8mBwAKdiBTNPxaC8jxadCcmot5P9Ljb5m2h_jPWbGWO96WoK5v2lEjJNakxXSoSUH34Dzw\u0026h=Smf8s7wrRgwIDOv9qcqpezO42pia2Jw2XrQGja005Ng+6": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationResults/47f84736-7f82-4b1b-823d-cf6e62e248e5?api-version=2023-04-03", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/7391bf02-6d90-4a73-bc15-d65545bfc504?api-version=2023-04-03\u0026t=638881607187382441\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=CZL8QPiknT2-cLCaFhSMxqEfxfWV_G9TnZ3ZHb3RM_z_PJAth89O1G7zZV6AWpf57fhimWfMLHsZcYZRTWH0OtYOv6tUE2qQRgrpiU4j7S9Ypnigf4cYbJIZSwEhQYNfA_EJ3EvClxQ3sTkOW_EPE7I927GoY3L1ptsSS1vF1W-NBN0bOGwGu_A1j7K-a3INqRVcLs2cUnc8HJN7MS2TQJpOV7YJ3Jsd5w3OdAVn8xV5Fl8kSNp473kmxtb_d1nRbdUh1b-RoZdW8INV8mBwAKdiBTNPxaC8jxadCcmot5P9Ljb5m2h_jPWbGWO96WoK5v2lEjJNakxXSoSUH34Dzw\u0026h=Smf8s7wrRgwIDOv9qcqpezO42pia2Jw2XrQGja005Ng", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "22" ], - "x-ms-client-request-id": [ "f124efa5-643b-4f62-916a-47d8b49555d4" ], + "x-ms-client-request-id": [ "9264f5ec-87b5-4918-a7e9-6f7f09416b15" ], "CommandName": [ "Remove-AzMonitorWorkspace" ], "FullCommandName": [ "Remove-AzMonitorWorkspace_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.4", "Az.MonitorWorkspace/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.MonitorWorkspace/0.1.0" ] }, "ContentHeaders": { } @@ -891,16 +948,19 @@ "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11985" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southeastasia/4462223f-fd78-46db-bfbd-f226bd5be487" ], "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], - "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ "b904eede-8053-4b13-aee2-64a116a1adad" ], - "x-ms-correlation-request-id": [ "b904eede-8053-4b13-aee2-64a116a1adad" ], - "x-ms-routing-request-id": [ "JAPANEAST:20230427T103641Z:b904eede-8053-4b13-aee2-64a116a1adad" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-request-id": [ "741c1d6c-c79a-485a-a947-1a254aee7af3" ], + "x-ms-correlation-request-id": [ "741c1d6c-c79a-485a-a947-1a254aee7af3" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T071943Z:741c1d6c-c79a-485a-a947-1a254aee7af3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 27 Apr 2023 10:36:41 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: F34CAE48A2764C40882ECA85011126CC Ref B: MAA201060516049 Ref C: 2025-07-15T07:19:42Z" ], + "Date": [ "Tue, 15 Jul 2025 07:19:42 GMT" ] }, "ContentHeaders": { "Content-Length": [ "23" ], @@ -911,20 +971,20 @@ "isContentBase64": false } }, - "AzMonitorWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationResults/47f84736-7f82-4b1b-823d-cf6e62e248e5?api-version=2023-04-03+7": { + "AzMonitorWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/7391bf02-6d90-4a73-bc15-d65545bfc504?api-version=2023-04-03\u0026t=638881607187382441\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=CZL8QPiknT2-cLCaFhSMxqEfxfWV_G9TnZ3ZHb3RM_z_PJAth89O1G7zZV6AWpf57fhimWfMLHsZcYZRTWH0OtYOv6tUE2qQRgrpiU4j7S9Ypnigf4cYbJIZSwEhQYNfA_EJ3EvClxQ3sTkOW_EPE7I927GoY3L1ptsSS1vF1W-NBN0bOGwGu_A1j7K-a3INqRVcLs2cUnc8HJN7MS2TQJpOV7YJ3Jsd5w3OdAVn8xV5Fl8kSNp473kmxtb_d1nRbdUh1b-RoZdW8INV8mBwAKdiBTNPxaC8jxadCcmot5P9Ljb5m2h_jPWbGWO96WoK5v2lEjJNakxXSoSUH34Dzw\u0026h=Smf8s7wrRgwIDOv9qcqpezO42pia2Jw2XrQGja005Ng+7": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationResults/47f84736-7f82-4b1b-823d-cf6e62e248e5?api-version=2023-04-03", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/7391bf02-6d90-4a73-bc15-d65545bfc504?api-version=2023-04-03\u0026t=638881607187382441\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=CZL8QPiknT2-cLCaFhSMxqEfxfWV_G9TnZ3ZHb3RM_z_PJAth89O1G7zZV6AWpf57fhimWfMLHsZcYZRTWH0OtYOv6tUE2qQRgrpiU4j7S9Ypnigf4cYbJIZSwEhQYNfA_EJ3EvClxQ3sTkOW_EPE7I927GoY3L1ptsSS1vF1W-NBN0bOGwGu_A1j7K-a3INqRVcLs2cUnc8HJN7MS2TQJpOV7YJ3Jsd5w3OdAVn8xV5Fl8kSNp473kmxtb_d1nRbdUh1b-RoZdW8INV8mBwAKdiBTNPxaC8jxadCcmot5P9Ljb5m2h_jPWbGWO96WoK5v2lEjJNakxXSoSUH34Dzw\u0026h=Smf8s7wrRgwIDOv9qcqpezO42pia2Jw2XrQGja005Ng", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], "x-ms-unique-id": [ "23" ], - "x-ms-client-request-id": [ "f124efa5-643b-4f62-916a-47d8b49555d4" ], + "x-ms-client-request-id": [ "9264f5ec-87b5-4918-a7e9-6f7f09416b15" ], "CommandName": [ "Remove-AzMonitorWorkspace" ], "FullCommandName": [ "Remove-AzMonitorWorkspace_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.4", "Az.MonitorWorkspace/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.MonitorWorkspace/0.1.0" ] }, "ContentHeaders": { } @@ -936,16 +996,211 @@ "Pragma": [ "no-cache" ], "Retry-After": [ "15" ], "Vary": [ "Accept-Encoding" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11984" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southeastasia/d3518437-f98b-4c43-ad7c-786d36897dd7" ], "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], - "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-request-id": [ "316a1ab9-8bc8-4afa-94fa-322dd65bc271" ], - "x-ms-correlation-request-id": [ "316a1ab9-8bc8-4afa-94fa-322dd65bc271" ], - "x-ms-routing-request-id": [ "JAPANEAST:20230427T103656Z:316a1ab9-8bc8-4afa-94fa-322dd65bc271" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-request-id": [ "6c2d5238-e3ba-4963-8943-dad26039ba84" ], + "x-ms-correlation-request-id": [ "6c2d5238-e3ba-4963-8943-dad26039ba84" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T071959Z:6c2d5238-e3ba-4963-8943-dad26039ba84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 27 Apr 2023 10:36:56 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 208B928FB51048BFA57BF2D617C85D16 Ref B: MAA201060516049 Ref C: 2025-07-15T07:19:58Z" ], + "Date": [ "Tue, 15 Jul 2025 07:19:58 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "23" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"InProgress\"}", + "isContentBase64": false + } + }, + "AzMonitorWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/7391bf02-6d90-4a73-bc15-d65545bfc504?api-version=2023-04-03\u0026t=638881607187382441\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=CZL8QPiknT2-cLCaFhSMxqEfxfWV_G9TnZ3ZHb3RM_z_PJAth89O1G7zZV6AWpf57fhimWfMLHsZcYZRTWH0OtYOv6tUE2qQRgrpiU4j7S9Ypnigf4cYbJIZSwEhQYNfA_EJ3EvClxQ3sTkOW_EPE7I927GoY3L1ptsSS1vF1W-NBN0bOGwGu_A1j7K-a3INqRVcLs2cUnc8HJN7MS2TQJpOV7YJ3Jsd5w3OdAVn8xV5Fl8kSNp473kmxtb_d1nRbdUh1b-RoZdW8INV8mBwAKdiBTNPxaC8jxadCcmot5P9Ljb5m2h_jPWbGWO96WoK5v2lEjJNakxXSoSUH34Dzw\u0026h=Smf8s7wrRgwIDOv9qcqpezO42pia2Jw2XrQGja005Ng+8": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/7391bf02-6d90-4a73-bc15-d65545bfc504?api-version=2023-04-03\u0026t=638881607187382441\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=CZL8QPiknT2-cLCaFhSMxqEfxfWV_G9TnZ3ZHb3RM_z_PJAth89O1G7zZV6AWpf57fhimWfMLHsZcYZRTWH0OtYOv6tUE2qQRgrpiU4j7S9Ypnigf4cYbJIZSwEhQYNfA_EJ3EvClxQ3sTkOW_EPE7I927GoY3L1ptsSS1vF1W-NBN0bOGwGu_A1j7K-a3INqRVcLs2cUnc8HJN7MS2TQJpOV7YJ3Jsd5w3OdAVn8xV5Fl8kSNp473kmxtb_d1nRbdUh1b-RoZdW8INV8mBwAKdiBTNPxaC8jxadCcmot5P9Ljb5m2h_jPWbGWO96WoK5v2lEjJNakxXSoSUH34Dzw\u0026h=Smf8s7wrRgwIDOv9qcqpezO42pia2Jw2XrQGja005Ng", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "24" ], + "x-ms-client-request-id": [ "9264f5ec-87b5-4918-a7e9-6f7f09416b15" ], + "CommandName": [ "Remove-AzMonitorWorkspace" ], + "FullCommandName": [ "Remove-AzMonitorWorkspace_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.MonitorWorkspace/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "15" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southeastasia/23d75e5e-d3de-49c8-a31e-f1f9c328719f" ], + "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-request-id": [ "77395c37-6076-4d86-a9d4-49aec1bd5093" ], + "x-ms-correlation-request-id": [ "77395c37-6076-4d86-a9d4-49aec1bd5093" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T072015Z:77395c37-6076-4d86-a9d4-49aec1bd5093" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8C140B8966434E569582B2080908A602 Ref B: MAA201060516049 Ref C: 2025-07-15T07:20:15Z" ], + "Date": [ "Tue, 15 Jul 2025 07:20:15 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "23" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"InProgress\"}", + "isContentBase64": false + } + }, + "AzMonitorWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/7391bf02-6d90-4a73-bc15-d65545bfc504?api-version=2023-04-03\u0026t=638881607187382441\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=CZL8QPiknT2-cLCaFhSMxqEfxfWV_G9TnZ3ZHb3RM_z_PJAth89O1G7zZV6AWpf57fhimWfMLHsZcYZRTWH0OtYOv6tUE2qQRgrpiU4j7S9Ypnigf4cYbJIZSwEhQYNfA_EJ3EvClxQ3sTkOW_EPE7I927GoY3L1ptsSS1vF1W-NBN0bOGwGu_A1j7K-a3INqRVcLs2cUnc8HJN7MS2TQJpOV7YJ3Jsd5w3OdAVn8xV5Fl8kSNp473kmxtb_d1nRbdUh1b-RoZdW8INV8mBwAKdiBTNPxaC8jxadCcmot5P9Ljb5m2h_jPWbGWO96WoK5v2lEjJNakxXSoSUH34Dzw\u0026h=Smf8s7wrRgwIDOv9qcqpezO42pia2Jw2XrQGja005Ng+9": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/7391bf02-6d90-4a73-bc15-d65545bfc504?api-version=2023-04-03\u0026t=638881607187382441\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=CZL8QPiknT2-cLCaFhSMxqEfxfWV_G9TnZ3ZHb3RM_z_PJAth89O1G7zZV6AWpf57fhimWfMLHsZcYZRTWH0OtYOv6tUE2qQRgrpiU4j7S9Ypnigf4cYbJIZSwEhQYNfA_EJ3EvClxQ3sTkOW_EPE7I927GoY3L1ptsSS1vF1W-NBN0bOGwGu_A1j7K-a3INqRVcLs2cUnc8HJN7MS2TQJpOV7YJ3Jsd5w3OdAVn8xV5Fl8kSNp473kmxtb_d1nRbdUh1b-RoZdW8INV8mBwAKdiBTNPxaC8jxadCcmot5P9Ljb5m2h_jPWbGWO96WoK5v2lEjJNakxXSoSUH34Dzw\u0026h=Smf8s7wrRgwIDOv9qcqpezO42pia2Jw2XrQGja005Ng", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "25" ], + "x-ms-client-request-id": [ "9264f5ec-87b5-4918-a7e9-6f7f09416b15" ], + "CommandName": [ "Remove-AzMonitorWorkspace" ], + "FullCommandName": [ "Remove-AzMonitorWorkspace_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.MonitorWorkspace/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "15" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southeastasia/95206ef8-c847-498d-a4f7-193808b074d0" ], + "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-request-id": [ "031138f1-10b5-4306-a647-adb15a80d104" ], + "x-ms-correlation-request-id": [ "031138f1-10b5-4306-a647-adb15a80d104" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T072031Z:031138f1-10b5-4306-a647-adb15a80d104" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C8D333B63B35449D93F562DBCACE14FA Ref B: MAA201060516049 Ref C: 2025-07-15T07:20:31Z" ], + "Date": [ "Tue, 15 Jul 2025 07:20:31 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "23" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"InProgress\"}", + "isContentBase64": false + } + }, + "AzMonitorWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/7391bf02-6d90-4a73-bc15-d65545bfc504?api-version=2023-04-03\u0026t=638881607187382441\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=CZL8QPiknT2-cLCaFhSMxqEfxfWV_G9TnZ3ZHb3RM_z_PJAth89O1G7zZV6AWpf57fhimWfMLHsZcYZRTWH0OtYOv6tUE2qQRgrpiU4j7S9Ypnigf4cYbJIZSwEhQYNfA_EJ3EvClxQ3sTkOW_EPE7I927GoY3L1ptsSS1vF1W-NBN0bOGwGu_A1j7K-a3INqRVcLs2cUnc8HJN7MS2TQJpOV7YJ3Jsd5w3OdAVn8xV5Fl8kSNp473kmxtb_d1nRbdUh1b-RoZdW8INV8mBwAKdiBTNPxaC8jxadCcmot5P9Ljb5m2h_jPWbGWO96WoK5v2lEjJNakxXSoSUH34Dzw\u0026h=Smf8s7wrRgwIDOv9qcqpezO42pia2Jw2XrQGja005Ng+10": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/7391bf02-6d90-4a73-bc15-d65545bfc504?api-version=2023-04-03\u0026t=638881607187382441\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=CZL8QPiknT2-cLCaFhSMxqEfxfWV_G9TnZ3ZHb3RM_z_PJAth89O1G7zZV6AWpf57fhimWfMLHsZcYZRTWH0OtYOv6tUE2qQRgrpiU4j7S9Ypnigf4cYbJIZSwEhQYNfA_EJ3EvClxQ3sTkOW_EPE7I927GoY3L1ptsSS1vF1W-NBN0bOGwGu_A1j7K-a3INqRVcLs2cUnc8HJN7MS2TQJpOV7YJ3Jsd5w3OdAVn8xV5Fl8kSNp473kmxtb_d1nRbdUh1b-RoZdW8INV8mBwAKdiBTNPxaC8jxadCcmot5P9Ljb5m2h_jPWbGWO96WoK5v2lEjJNakxXSoSUH34Dzw\u0026h=Smf8s7wrRgwIDOv9qcqpezO42pia2Jw2XrQGja005Ng", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "26" ], + "x-ms-client-request-id": [ "9264f5ec-87b5-4918-a7e9-6f7f09416b15" ], + "CommandName": [ "Remove-AzMonitorWorkspace" ], + "FullCommandName": [ "Remove-AzMonitorWorkspace_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.MonitorWorkspace/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "15" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southeastasia/e4f4772c-a08e-4356-9b95-83ad15219a09" ], + "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-request-id": [ "28604369-4377-4467-a7b9-02e3a1d40d6a" ], + "x-ms-correlation-request-id": [ "28604369-4377-4467-a7b9-02e3a1d40d6a" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T072048Z:28604369-4377-4467-a7b9-02e3a1d40d6a" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 49298CE7763C423FBC93BB37F92DA693 Ref B: MAA201060516049 Ref C: 2025-07-15T07:20:47Z" ], + "Date": [ "Tue, 15 Jul 2025 07:20:47 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "23" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"status\":\"InProgress\"}", + "isContentBase64": false + } + }, + "AzMonitorWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/7391bf02-6d90-4a73-bc15-d65545bfc504?api-version=2023-04-03\u0026t=638881607187382441\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=CZL8QPiknT2-cLCaFhSMxqEfxfWV_G9TnZ3ZHb3RM_z_PJAth89O1G7zZV6AWpf57fhimWfMLHsZcYZRTWH0OtYOv6tUE2qQRgrpiU4j7S9Ypnigf4cYbJIZSwEhQYNfA_EJ3EvClxQ3sTkOW_EPE7I927GoY3L1ptsSS1vF1W-NBN0bOGwGu_A1j7K-a3INqRVcLs2cUnc8HJN7MS2TQJpOV7YJ3Jsd5w3OdAVn8xV5Fl8kSNp473kmxtb_d1nRbdUh1b-RoZdW8INV8mBwAKdiBTNPxaC8jxadCcmot5P9Ljb5m2h_jPWbGWO96WoK5v2lEjJNakxXSoSUH34Dzw\u0026h=Smf8s7wrRgwIDOv9qcqpezO42pia2Jw2XrQGja005Ng+11": { + "Request": { + "Method": "GET", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/operationResults/7391bf02-6d90-4a73-bc15-d65545bfc504?api-version=2023-04-03\u0026t=638881607187382441\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=CZL8QPiknT2-cLCaFhSMxqEfxfWV_G9TnZ3ZHb3RM_z_PJAth89O1G7zZV6AWpf57fhimWfMLHsZcYZRTWH0OtYOv6tUE2qQRgrpiU4j7S9Ypnigf4cYbJIZSwEhQYNfA_EJ3EvClxQ3sTkOW_EPE7I927GoY3L1ptsSS1vF1W-NBN0bOGwGu_A1j7K-a3INqRVcLs2cUnc8HJN7MS2TQJpOV7YJ3Jsd5w3OdAVn8xV5Fl8kSNp473kmxtb_d1nRbdUh1b-RoZdW8INV8mBwAKdiBTNPxaC8jxadCcmot5P9Ljb5m2h_jPWbGWO96WoK5v2lEjJNakxXSoSUH34Dzw\u0026h=Smf8s7wrRgwIDOv9qcqpezO42pia2Jw2XrQGja005Ng", + "Content": null, + "isContentBase64": false, + "Headers": { + "Authorization": [ "[Filtered]" ], + "x-ms-unique-id": [ "27" ], + "x-ms-client-request-id": [ "9264f5ec-87b5-4918-a7e9-6f7f09416b15" ], + "CommandName": [ "Remove-AzMonitorWorkspace" ], + "FullCommandName": [ "Remove-AzMonitorWorkspace_DeleteViaIdentity" ], + "ParameterSetName": [ "__AllParameterSets" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.MonitorWorkspace/0.1.0" ] + }, + "ContentHeaders": { + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Retry-After": [ "15" ], + "Vary": [ "Accept-Encoding" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southeastasia/311ab955-0add-4a9c-9bb4-14034e5982be" ], + "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-request-id": [ "645c7e79-d3de-4c3b-898e-19a09e48da89" ], + "x-ms-correlation-request-id": [ "645c7e79-d3de-4c3b-898e-19a09e48da89" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T072105Z:645c7e79-d3de-4c3b-898e-19a09e48da89" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: C79955306A8C4A03BFD9CD914F2BF5EA Ref B: MAA201060516049 Ref C: 2025-07-15T07:21:04Z" ], + "Date": [ "Tue, 15 Jul 2025 07:21:04 GMT" ] }, "ContentHeaders": { "Content-Length": [ "22" ], @@ -956,20 +1211,20 @@ "isContentBase64": false } }, - "AzMonitorWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationStatuses/47f84736-7f82-4b1b-823d-cf6e62e248e5?api-version=2023-04-03+8": { + "AzMonitorWorkspace+[NoContext]+DeleteViaIdentity+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/locationOperationStatuses/7391bf02-6d90-4a73-bc15-d65545bfc504?api-version=2023-04-03\u0026t=638881607187538670\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=QVNOk6Sm2xnMZWEHbS2jRv9orZiGJbLEeh4C2ydUo-qmgpdWsDWj3vdu4MASN_ZyV_mQq45h9otZbe1yUbasTz4M6hJUnocVKh6RD_zXxP8WyXqMxkGtbN9IuUT33qN1YGpfllYO6THahs0f18RPNBZ-CFQOZnQam9_CDan1U1yZN75ZFsajoF_mYr1D7Tjb8riaq3U-OtYc885babj8hz_mqU2ItnteO9CifI4fsL2UElmvKxkKnfCs6dExXySIb_sz5hIwGEEcFhTC0QYWT2GRXHvlZHB03eQoHAva0xjm5SW0d_Fi4jW-Al8OkItB6MTGrE_9dtj6-zsvGYin5g\u0026h=RGywMnY9MqZuD6d0RQsh9Lexrx1jpFSPr6riMGG8Z_8+12": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Monitor/locations/eastus/operationStatuses/47f84736-7f82-4b1b-823d-cf6e62e248e5?api-version=2023-04-03", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/providers/Microsoft.Monitor/locations/eastus/locationOperationStatuses/7391bf02-6d90-4a73-bc15-d65545bfc504?api-version=2023-04-03\u0026t=638881607187538670\u0026c=MIIHhzCCBm-gAwIBAgITfAeDEnPW_KxJbq8EjgAAB4MSczANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNDIwMTUyMDI3WhcNMjUxMDE3MTUyMDI3WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALO1SAvt4DI7FxxBmZBcfoKDLiXpS8U5adZbRlRvVm-EcAWqGNnVo1AxaXu3ghKMY95LxffhvcYAZ56WhgOxA_gpAUzm4t0yW0aVzv7vAOWZHIG1fvTcWY_sHCkuTyCNAcRbNbaqbidaK9ZOTQ19baUQ26kVkP7tjTi6DWWRlM25d4YQcGaWJoBwUtol-hgB5Z_rVMljRF5Q1T9_3YpRBw57SpHvmb30JNQSpndyeu--Ip8pMwpNaiIRF70G8WfbTBoJhRqNqNAKBLU3CAVV4H6lYrXtSK-gkZC0EzjZ4ze_XVDGBd1sOPsbMx4aQgZEiuDJuuk9eqTzzur3IDUdrP0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSRrAa71kVppeoZonY7QPy_R7XWQzAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAChQXwS0_EaMb7G3BWGDeoNhAAEaoKkJVUy5HVGyWKADFm6Tp2WidwOIMoOu-IuoA634ORJ7bIwsC2WhUA0Z8-c2AAD956dAtCkn5pEBXSqwuKMM3l9KOClAY1RiAQcP-GWtmb_mqZspO78GHaq-mwiyIDUICM-uZl-qR6UVt6rLn5xPqHNkenxrslS_G3IJ9yCV1sflxhz93B7VR9H7BtOxd_nqZOD5uSV3OpPnATTRO0KB3VBbZ0KqvdtWoHjNywLqMuhJUufHw2zmlQ-Yj3ndha_yTvOQlT-85ikSoyWI0P4_GeEwX9RdkiVHVzx3gR8HzFKkJXOwRvxQE_9Ov_0\u0026s=QVNOk6Sm2xnMZWEHbS2jRv9orZiGJbLEeh4C2ydUo-qmgpdWsDWj3vdu4MASN_ZyV_mQq45h9otZbe1yUbasTz4M6hJUnocVKh6RD_zXxP8WyXqMxkGtbN9IuUT33qN1YGpfllYO6THahs0f18RPNBZ-CFQOZnQam9_CDan1U1yZN75ZFsajoF_mYr1D7Tjb8riaq3U-OtYc885babj8hz_mqU2ItnteO9CifI4fsL2UElmvKxkKnfCs6dExXySIb_sz5hIwGEEcFhTC0QYWT2GRXHvlZHB03eQoHAva0xjm5SW0d_Fi4jW-Al8OkItB6MTGrE_9dtj6-zsvGYin5g\u0026h=RGywMnY9MqZuD6d0RQsh9Lexrx1jpFSPr6riMGG8Z_8", "Content": null, "isContentBase64": false, "Headers": { "Authorization": [ "[Filtered]" ], - "x-ms-unique-id": [ "24" ], - "x-ms-client-request-id": [ "f124efa5-643b-4f62-916a-47d8b49555d4" ], + "x-ms-unique-id": [ "28" ], + "x-ms-client-request-id": [ "9264f5ec-87b5-4918-a7e9-6f7f09416b15" ], "CommandName": [ "Remove-AzMonitorWorkspace" ], "FullCommandName": [ "Remove-AzMonitorWorkspace_DeleteViaIdentity" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.3.4", "Az.MonitorWorkspace/0.1.0" ] + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.MonitorWorkspace/0.1.0" ] }, "ContentHeaders": { } @@ -980,15 +1235,18 @@ "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], "Request-Context": [ "appId=cid-v1:74683e7d-3ee8-4856-bfe7-e63c83b6737e" ], - "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03" ], - "Server": [ "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11983" ], - "x-ms-request-id": [ "8d6efed7-2a15-4950-a16c-cc1ddb2f13c4" ], - "x-ms-correlation-request-id": [ "8d6efed7-2a15-4950-a16c-cc1ddb2f13c4" ], - "x-ms-routing-request-id": [ "JAPANEAST:20230427T103657Z:8d6efed7-2a15-4950-a16c-cc1ddb2f13c4" ], + "api-supported-versions": [ "2021-06-01-preview, 2021-06-03-preview, 2023-04-01, 2023-04-03, 2024-04-01-preview, 2024-04-03-preview, 2024-10-01-preview, 2024-10-03-preview, 2025-05-01-preview, 2025-05-03-preview" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southeastasia/955d5908-21c1-47bb-b252-106d16d12e31" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-request-id": [ "2f55ad17-e0ee-44ef-a7de-dfb24713e6d2" ], + "x-ms-correlation-request-id": [ "2f55ad17-e0ee-44ef-a7de-dfb24713e6d2" ], + "x-ms-routing-request-id": [ "SOUTHEASTASIA:20250715T072106Z:2f55ad17-e0ee-44ef-a7de-dfb24713e6d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Thu, 27 Apr 2023 10:36:56 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 8D0A9DA191794BD180476896E3F539F0 Ref B: MAA201060516049 Ref C: 2025-07-15T07:21:05Z" ], + "Date": [ "Tue, 15 Jul 2025 07:21:05 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ] diff --git a/src/Monitor/MonitorWorkspace.Autorest/test/env.json b/src/Monitor/MonitorWorkspace.Autorest/test/env.json index dc2c45ed6a99..a1e3cb51de56 100644 --- a/src/Monitor/MonitorWorkspace.Autorest/test/env.json +++ b/src/Monitor/MonitorWorkspace.Autorest/test/env.json @@ -1,8 +1,8 @@ { - "monitorWorkspace2": "3axj01", - "monitorWorkspace1": "ytkoq0", - "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "SubscriptionId": "9e223dbe-3399-4e19-88eb-0975f02ac87f", + "Tenant": "213e87ed-8e08-4eb4-a63c-c073058f7b00", + "SubscriptionId": "0e745469-49f8-48c9-873b-24ca87143db1", "location": "eastus", - "resourceGroup": "testgroup-monitorworkspace" + "monitorWorkspace2": "4yrmqc", + "resourceGroup": "testgroup-monitorworkspace", + "monitorWorkspace1": "olq76n" } diff --git a/src/Monitor/ScheduledQueryRule.Autorest/Properties/AssemblyInfo.cs b/src/Monitor/ScheduledQueryRule.Autorest/Properties/AssemblyInfo.cs index 405a916b491b..83073b9b8b3b 100644 --- a/src/Monitor/ScheduledQueryRule.Autorest/Properties/AssemblyInfo.cs +++ b/src/Monitor/ScheduledQueryRule.Autorest/Properties/AssemblyInfo.cs @@ -20,7 +20,7 @@ [assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © Microsoft")] [assembly: System.Reflection.AssemblyProductAttribute("Microsoft Azure PowerShell")] [assembly: System.Reflection.AssemblyTitleAttribute("Microsoft Azure PowerShell - ScheduledQueryRule")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("6.0.2")] -[assembly: System.Reflection.AssemblyVersionAttribute("6.0.2")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("6.0.3")] +[assembly: System.Reflection.AssemblyVersionAttribute("6.0.3")] [assembly: System.Runtime.InteropServices.ComVisibleAttribute(false)] [assembly: System.CLSCompliantAttribute(false)] diff --git a/src/Monitor/ScheduledQueryRule.Autorest/README.md b/src/Monitor/ScheduledQueryRule.Autorest/README.md index 55f355306759..f6e2ff032870 100644 --- a/src/Monitor/ScheduledQueryRule.Autorest/README.md +++ b/src/Monitor/ScheduledQueryRule.Autorest/README.md @@ -39,22 +39,13 @@ title: ScheduledQueryRule module-version: 0.1.0 subject-prefix: ScheduledQueryRule namespace: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule -nested-object-to-string: true - -# If there are post APIs for some kinds of actions in the RP, you may need to -# uncomment following line to support viaIdentity for these post APIs -# identity-correction-for-post: true - -# For new modules, please avoid setting 3.x using the use-extension method and instead, use 4.x as the default option -use-extension: - "@autorest/powershell": "3.x" directive: # Following is two common directive which are normally required in all the RPs # 1. Remove the unexpanded parameter set # 2. For New-* cmdlets, ViaIdentity is not required, so CreateViaIdentityExpanded is removed as well - where: - variant: ^Create$|^CreateViaIdentity$|^CreateViaIdentityExpanded$|^Update$|^UpdateViaIdentity$ + variant: ^(Create|Update)(?!.*?(Expanded|JsonFilePath|JsonString))|^CreateViaIdentityExpanded$ remove: true - where: verb: Set @@ -84,39 +75,7 @@ directive: "format": "int64", "description": "Severity of the alert. Should be an integer between [0-4]. Value of 0 is severest. Relevant and required only for rules of the kind LogAlert." } - # Rename 'Equals' - - from: source-file-csharp - where: $ - transform: $ = $.replace('public static Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator Equals = @"Equals";', 'public static Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator Equal = @"Equals";'); - # - model-cmdlet: - # - Condition - # - Dimension - - where: - verb: Get|Update|New - subject: ScheduledQueryRule - set: - breaking-change: - deprecated-output-properties: - - ActionGroup - - CriterionAllOf - - Scope - - TargetResourceType - new-output-properties: - - ActionGroup - - CriterionAllOf - - Scope - - TargetResourceType - change-description: The types of the properties ActionGroup, CriterionAllOf, Scope and TargetResourceType will be changed from single object or fixed array to 'List'. - deprecated-by-version: 7.0.0 - deprecated-by-azversion: 15.0.0 - change-effective-date: 2025/11/03 - - where: - parameter-name: Dimension|Value - set: - breaking-change: - old-parameter-type: Array - new-parameter-type: List - deprecated-by-version: 7.0.0 - deprecated-by-azversion: 15.0.0 - change-effective-date: 2025/11/03 + - model-cmdlet: + - model-name: Condition + - model-name: Dimension ``` diff --git a/src/Monitor/ScheduledQueryRule.Autorest/custom/New-AzScheduledQueryRuleConditionObject.ps1 b/src/Monitor/ScheduledQueryRule.Autorest/custom/autogen-model-cmdlets/New-AzScheduledQueryRuleConditionObject.ps1 similarity index 85% rename from src/Monitor/ScheduledQueryRule.Autorest/custom/New-AzScheduledQueryRuleConditionObject.ps1 rename to src/Monitor/ScheduledQueryRule.Autorest/custom/autogen-model-cmdlets/New-AzScheduledQueryRuleConditionObject.ps1 index cb57d7429a3c..30f4327bdf96 100644 --- a/src/Monitor/ScheduledQueryRule.Autorest/custom/New-AzScheduledQueryRuleConditionObject.ps1 +++ b/src/Monitor/ScheduledQueryRule.Autorest/custom/autogen-model-cmdlets/New-AzScheduledQueryRuleConditionObject.ps1 @@ -21,17 +21,18 @@ Create an in-memory object for Condition. Create an in-memory object for Condition. .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.Condition +Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Condition .Link -https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzScheduledQueryRuleConditionObject +https://learn.microsoft.com/powershell/module/Az.Monitor/new-azscheduledqueryruleconditionobject #> function New-AzScheduledQueryRuleConditionObject { - [OutputType('Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.Condition')] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.ModelCmdletAttribute()] + [OutputType('Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Condition')] [CmdletBinding(PositionalBinding=$false)] Param( - [Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.ParameterBreakingChange("Dimension", "15.0.0", "7.0.0", "2025/11/03", OldParamaterType="Array", NewParameterType="List")] + [Parameter(HelpMessage="List of Dimensions conditions.")] - [Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension[]] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IDimension[]] $Dimension, [Parameter(HelpMessage="The number of violations to trigger an alert. Should be smaller or equal to numberOfEvaluationPeriods. Default value is 1.")] [long] @@ -46,8 +47,8 @@ function New-AzScheduledQueryRuleConditionObject { [string] $MetricName, [Parameter(HelpMessage="The criteria operator. Relevant and required only for rules of the kind LogAlert.")] - [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator])] - [Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.PSArgumentCompleterAttribute("Equals", "GreaterThan", "GreaterThanOrEqual", "LessThan", "LessThanOrEqual")] + [string] $Operator, [Parameter(HelpMessage="Log query alert.")] [string] @@ -59,13 +60,13 @@ function New-AzScheduledQueryRuleConditionObject { [double] $Threshold, [Parameter(HelpMessage="Aggregation type. Relevant and required only for rules of the kind LogAlert.")] - [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation])] - [Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.PSArgumentCompleterAttribute("Count", "Average", "Minimum", "Maximum", "Total")] + [string] $TimeAggregation ) process { - $Object = [Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.Condition]::New() + $Object = [Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Condition]::New() if ($PSBoundParameters.ContainsKey('Dimension')) { $Object.Dimension = $Dimension diff --git a/src/Monitor/ScheduledQueryRule.Autorest/custom/New-AzScheduledQueryRuleDimensionObject.ps1 b/src/Monitor/ScheduledQueryRule.Autorest/custom/autogen-model-cmdlets/New-AzScheduledQueryRuleDimensionObject.ps1 similarity index 78% rename from src/Monitor/ScheduledQueryRule.Autorest/custom/New-AzScheduledQueryRuleDimensionObject.ps1 rename to src/Monitor/ScheduledQueryRule.Autorest/custom/autogen-model-cmdlets/New-AzScheduledQueryRuleDimensionObject.ps1 index 2721bc4b1cf7..def3000b8e1c 100644 --- a/src/Monitor/ScheduledQueryRule.Autorest/custom/New-AzScheduledQueryRuleDimensionObject.ps1 +++ b/src/Monitor/ScheduledQueryRule.Autorest/custom/autogen-model-cmdlets/New-AzScheduledQueryRuleDimensionObject.ps1 @@ -21,12 +21,13 @@ Create an in-memory object for Dimension. Create an in-memory object for Dimension. .Outputs -Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.Dimension +Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Dimension .Link -https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzScheduledQueryRuleDimensionObject +https://learn.microsoft.com/powershell/module/Az.Monitor/new-azscheduledqueryruledimensionobject #> function New-AzScheduledQueryRuleDimensionObject { - [OutputType('Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.Dimension')] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.ModelCmdletAttribute()] + [OutputType('Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Dimension')] [CmdletBinding(PositionalBinding=$false)] Param( @@ -34,17 +35,16 @@ function New-AzScheduledQueryRuleDimensionObject { [string] $Name, [Parameter(Mandatory, HelpMessage="Operator for dimension values.")] - [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.DimensionOperator])] - [Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.DimensionOperator] + [Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.PSArgumentCompleterAttribute("Include", "Exclude")] + [string] $Operator, - [Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Runtime.ParameterBreakingChange("Value", "15.0.0", "7.0.0", "2025/11/03", OldParamaterType="Array", NewParameterType="List")] [Parameter(Mandatory, HelpMessage="List of dimension values.")] [string[]] $Value ) process { - $Object = [Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.Dimension]::New() + $Object = [Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Dimension]::New() if ($PSBoundParameters.ContainsKey('Name')) { $Object.Name = $Name diff --git a/src/Monitor/ScheduledQueryRule.Autorest/docs/Az.ScheduledQueryRule.md b/src/Monitor/ScheduledQueryRule.Autorest/docs/Az.ScheduledQueryRule.md index b9c8e4708234..618ecafcfa30 100644 --- a/src/Monitor/ScheduledQueryRule.Autorest/docs/Az.ScheduledQueryRule.md +++ b/src/Monitor/ScheduledQueryRule.Autorest/docs/Az.ScheduledQueryRule.md @@ -1,6 +1,6 @@ --- Module Name: Az.ScheduledQueryRule -Module Guid: 806a79ac-f0d4-4c15-92e5-3b6fc73a71cd +Module Guid: c4b4ebbe-2687-4d11-a069-46f874c1fc2c Download Help Link: https://learn.microsoft.com/powershell/module/az.scheduledqueryrule Help Version: 1.0.0.0 Locale: en-US @@ -15,7 +15,7 @@ Microsoft Azure PowerShell: ScheduledQueryRule cmdlets Retrieve an scheduled query rule definition. ### [New-AzScheduledQueryRule](New-AzScheduledQueryRule.md) -Creates or updates a scheduled query rule. +Create a scheduled query rule. ### [New-AzScheduledQueryRuleConditionObject](New-AzScheduledQueryRuleConditionObject.md) Create an in-memory object for Condition. diff --git a/src/Monitor/ScheduledQueryRule.Autorest/docs/Get-AzScheduledQueryRule.md b/src/Monitor/ScheduledQueryRule.Autorest/docs/Get-AzScheduledQueryRule.md index 5f4abf2ea49f..9cbecec242fa 100644 --- a/src/Monitor/ScheduledQueryRule.Autorest/docs/Get-AzScheduledQueryRule.md +++ b/src/Monitor/ScheduledQueryRule.Autorest/docs/Get-AzScheduledQueryRule.md @@ -81,7 +81,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity @@ -150,7 +149,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleResource ## NOTES diff --git a/src/Monitor/ScheduledQueryRule.Autorest/docs/New-AzScheduledQueryRule.md b/src/Monitor/ScheduledQueryRule.Autorest/docs/New-AzScheduledQueryRule.md index 9978ffb29bb2..7733e8349167 100644 --- a/src/Monitor/ScheduledQueryRule.Autorest/docs/New-AzScheduledQueryRule.md +++ b/src/Monitor/ScheduledQueryRule.Autorest/docs/New-AzScheduledQueryRule.md @@ -8,22 +8,35 @@ schema: 2.0.0 # New-AzScheduledQueryRule ## SYNOPSIS -Creates or updates a scheduled query rule. +Create a scheduled query rule. ## SYNTAX +### CreateExpanded (Default) ``` New-AzScheduledQueryRule -Name -ResourceGroupName -Location [-SubscriptionId ] [-ActionCustomProperty ] [-ActionGroupResourceId ] [-AutoMitigate] [-CheckWorkspaceAlertsStorageConfigured] [-CriterionAllOf ] - [-Description ] [-DisplayName ] [-Enabled] [-EvaluationFrequency ] [-Kind ] + [-Description ] [-DisplayName ] [-Enabled] [-EvaluationFrequency ] [-Kind ] [-MuteActionsDuration ] [-OverrideQueryTimeRange ] [-Scope ] [-Severity ] [-SkipQueryValidation] [-Tag ] [-TargetResourceType ] [-WindowSize ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] ``` +### CreateViaJsonFilePath +``` +New-AzScheduledQueryRule -Name -ResourceGroupName -JsonFilePath + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### CreateViaJsonString +``` +New-AzScheduledQueryRule -Name -ResourceGroupName -JsonString + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION -Creates or updates a scheduled query rule. +Create a scheduled query rule. ## EXAMPLES @@ -44,7 +57,7 @@ The properties of an alert payload. ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -59,7 +72,7 @@ Action Group resource Ids to invoke when the alert fires. ```yaml Type: System.String[] -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -76,7 +89,7 @@ Relevant only for rules of the kind LogAlert. ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -93,7 +106,7 @@ Relevant only for rules of the kind LogAlert. ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -105,11 +118,10 @@ Accept wildcard characters: False ### -CriterionAllOf A list of conditions to evaluate against the specified scopes -To construct, see NOTES section for CRITERIONALLOF properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[] -Parameter Sets: (All) +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.ICondition[] +Parameter Sets: CreateExpanded Aliases: Required: False @@ -140,7 +152,7 @@ The description of the scheduled query rule. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -155,7 +167,7 @@ The display name of the alert rule ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -171,7 +183,7 @@ Value should be true or false ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -187,7 +199,7 @@ Relevant and required only for rules of the kind LogAlert. ```yaml Type: System.TimeSpan -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -197,13 +209,43 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Create operation + +```yaml +Type: System.String +Parameter Sets: CreateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Kind Indicates the type of scheduled query rule. The default is LogAlert. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind -Parameter Sets: (All) +Type: System.String +Parameter Sets: CreateExpanded Aliases: Required: False @@ -218,7 +260,7 @@ The geo-location where the resource lives ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: True @@ -234,7 +276,7 @@ Relevant only for rules of the kind LogAlert. ```yaml Type: System.TimeSpan -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -265,7 +307,7 @@ Relevant only for rules of the kind LogAlert. ```yaml Type: System.TimeSpan -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -296,7 +338,7 @@ The list of resource id's that this scheduled query rule is scoped to. ```yaml Type: System.String[] -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -314,7 +356,7 @@ Relevant and required only for rules of the kind LogAlert. ```yaml Type: System.Int64 -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -331,7 +373,7 @@ Relevant only for rules of the kind LogAlert. ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -361,7 +403,7 @@ Resource tags. ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -378,7 +420,7 @@ Relevant only for rules of the kind LogAlert ```yaml Type: System.String[] -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -394,7 +436,7 @@ Relevant and required only for rules of the kind LogAlert. ```yaml Type: System.TimeSpan -Parameter Sets: (All) +Parameter Sets: CreateExpanded Aliases: Required: False @@ -442,7 +484,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleResource ## NOTES diff --git a/src/Monitor/ScheduledQueryRule.Autorest/docs/New-AzScheduledQueryRuleConditionObject.md b/src/Monitor/ScheduledQueryRule.Autorest/docs/New-AzScheduledQueryRuleConditionObject.md index 96bbdfb389fc..93630e9c24b9 100644 --- a/src/Monitor/ScheduledQueryRule.Autorest/docs/New-AzScheduledQueryRuleConditionObject.md +++ b/src/Monitor/ScheduledQueryRule.Autorest/docs/New-AzScheduledQueryRuleConditionObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzScheduledQueryRuleConditionObject +online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-azscheduledqueryruleconditionobject schema: 2.0.0 --- @@ -15,8 +15,8 @@ Create an in-memory object for Condition. ``` New-AzScheduledQueryRuleConditionObject [-Dimension ] [-FailingPeriodMinFailingPeriodsToAlert ] [-FailingPeriodNumberOfEvaluationPeriod ] - [-MetricMeasureColumn ] [-MetricName ] [-Operator ] [-Query ] - [-ResourceIdColumn ] [-Threshold ] [-TimeAggregation ] [] + [-MetricMeasureColumn ] [-MetricName ] [-Operator ] [-Query ] + [-ResourceIdColumn ] [-Threshold ] [-TimeAggregation ] [] ``` ## DESCRIPTION @@ -36,10 +36,9 @@ Create condition object ### -Dimension List of Dimensions conditions. -To construct, see NOTES section for DIMENSION properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension[] +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IDimension[] Parameter Sets: (All) Aliases: @@ -121,7 +120,7 @@ The criteria operator. Relevant and required only for rules of the kind LogAlert. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator +Type: System.String Parameter Sets: (All) Aliases: @@ -185,7 +184,7 @@ Aggregation type. Relevant and required only for rules of the kind LogAlert. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation +Type: System.String Parameter Sets: (All) Aliases: @@ -203,7 +202,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.Condition +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Condition ## NOTES diff --git a/src/Monitor/ScheduledQueryRule.Autorest/docs/New-AzScheduledQueryRuleDimensionObject.md b/src/Monitor/ScheduledQueryRule.Autorest/docs/New-AzScheduledQueryRuleDimensionObject.md index 0a94ac9942f3..98ebadaf57bb 100644 --- a/src/Monitor/ScheduledQueryRule.Autorest/docs/New-AzScheduledQueryRuleDimensionObject.md +++ b/src/Monitor/ScheduledQueryRule.Autorest/docs/New-AzScheduledQueryRuleDimensionObject.md @@ -1,7 +1,7 @@ --- external help file: Module Name: Az.Monitor -online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-AzScheduledQueryRuleDimensionObject +online version: https://learn.microsoft.com/powershell/module/Az.Monitor/new-azscheduledqueryruledimensionobject schema: 2.0.0 --- @@ -13,7 +13,7 @@ Create an in-memory object for Dimension. ## SYNTAX ``` -New-AzScheduledQueryRuleDimensionObject -Name -Operator -Value +New-AzScheduledQueryRuleDimensionObject -Name -Operator -Value [] ``` @@ -50,7 +50,7 @@ Accept wildcard characters: False Operator for dimension values. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.DimensionOperator +Type: System.String Parameter Sets: (All) Aliases: @@ -83,7 +83,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.Dimension +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Dimension ## NOTES diff --git a/src/Monitor/ScheduledQueryRule.Autorest/docs/Remove-AzScheduledQueryRule.md b/src/Monitor/ScheduledQueryRule.Autorest/docs/Remove-AzScheduledQueryRule.md index d31f20e60b98..cc946bb5b617 100644 --- a/src/Monitor/ScheduledQueryRule.Autorest/docs/Remove-AzScheduledQueryRule.md +++ b/src/Monitor/ScheduledQueryRule.Autorest/docs/Remove-AzScheduledQueryRule.md @@ -56,7 +56,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity diff --git a/src/Monitor/ScheduledQueryRule.Autorest/docs/Update-AzScheduledQueryRule.md b/src/Monitor/ScheduledQueryRule.Autorest/docs/Update-AzScheduledQueryRule.md index 6de3d5d704b0..480f5e3c247f 100644 --- a/src/Monitor/ScheduledQueryRule.Autorest/docs/Update-AzScheduledQueryRule.md +++ b/src/Monitor/ScheduledQueryRule.Autorest/docs/Update-AzScheduledQueryRule.md @@ -34,6 +34,18 @@ Update-AzScheduledQueryRule -InputObject [-ActionC [] ``` +### UpdateViaJsonFilePath +``` +Update-AzScheduledQueryRule -Name -ResourceGroupName -JsonFilePath + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + +### UpdateViaJsonString +``` +Update-AzScheduledQueryRule -Name -ResourceGroupName -JsonString + [-SubscriptionId ] [-DefaultProfile ] [-Confirm] [-WhatIf] [] +``` + ## DESCRIPTION Update a scheduled query rule. @@ -54,7 +66,7 @@ The properties of an alert payload. ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -69,7 +81,7 @@ Action Group resource Ids to invoke when the alert fires. ```yaml Type: System.String[] -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -86,7 +98,7 @@ Relevant only for rules of the kind LogAlert. ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -103,7 +115,7 @@ Relevant only for rules of the kind LogAlert. ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -115,11 +127,10 @@ Accept wildcard characters: False ### -CriterionAllOf A list of conditions to evaluate against the specified scopes -To construct, see NOTES section for CRITERIONALLOF properties and create a hash table. ```yaml -Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition[] -Parameter Sets: (All) +Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.ICondition[] +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -150,7 +161,7 @@ The description of the scheduled query rule. ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -165,7 +176,7 @@ The display name of the alert rule ```yaml Type: System.String -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -181,7 +192,7 @@ Value should be true or false ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -197,7 +208,7 @@ Relevant and required only for rules of the kind LogAlert. ```yaml Type: System.TimeSpan -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -209,7 +220,6 @@ Accept wildcard characters: False ### -InputObject Identity Parameter -To construct, see NOTES section for INPUTOBJECT properties and create a hash table. ```yaml Type: Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleIdentity @@ -223,13 +233,43 @@ Accept pipeline input: True (ByValue) Accept wildcard characters: False ``` +### -JsonFilePath +Path of Json file supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonFilePath +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JsonString +Json string supplied to the Update operation + +```yaml +Type: System.String +Parameter Sets: UpdateViaJsonString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -MuteActionsDuration Mute actions for the chosen period of time (in ISO 8601 duration format) after the alert is fired. Relevant only for rules of the kind LogAlert. ```yaml Type: System.TimeSpan -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -244,7 +284,7 @@ The name of the rule. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString Aliases: Required: True @@ -260,7 +300,7 @@ Relevant only for rules of the kind LogAlert. ```yaml Type: System.TimeSpan -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -276,7 +316,7 @@ The name is case insensitive. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString Aliases: Required: True @@ -291,7 +331,7 @@ The list of resource id's that this scheduled query rule is scoped to. ```yaml Type: System.String[] -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -309,7 +349,7 @@ Relevant and required only for rules of the kind LogAlert. ```yaml Type: System.Int64 -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -326,7 +366,7 @@ Relevant only for rules of the kind LogAlert. ```yaml Type: System.Management.Automation.SwitchParameter -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -341,7 +381,7 @@ The ID of the target subscription. ```yaml Type: System.String -Parameter Sets: UpdateExpanded +Parameter Sets: UpdateExpanded, UpdateViaJsonFilePath, UpdateViaJsonString Aliases: Required: False @@ -356,7 +396,7 @@ Resource tags ```yaml Type: System.Collections.Hashtable -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -373,7 +413,7 @@ Relevant only for rules of the kind LogAlert ```yaml Type: System.String[] -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -389,7 +429,7 @@ Relevant and required only for rules of the kind LogAlert. ```yaml Type: System.TimeSpan -Parameter Sets: (All) +Parameter Sets: UpdateExpanded, UpdateViaIdentityExpanded Aliases: Required: False @@ -439,7 +479,7 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## OUTPUTS -### Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource +### Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IScheduledQueryRuleResource ## NOTES diff --git a/src/Monitor/ScheduledQueryRule.Autorest/generate-info.json b/src/Monitor/ScheduledQueryRule.Autorest/generate-info.json index 3509c94e05e0..9979ccc2e45b 100644 --- a/src/Monitor/ScheduledQueryRule.Autorest/generate-info.json +++ b/src/Monitor/ScheduledQueryRule.Autorest/generate-info.json @@ -1,3 +1,3 @@ { - "generate_Id": "53f643da-e033-4998-94da-05be732ad29b" + "generate_Id": "426487d3-fded-40e7-a1b9-f93765db761a" } diff --git a/src/Monitor/ScheduledQueryRule.Autorest/test/ScheduledQueryRule.Recording.json b/src/Monitor/ScheduledQueryRule.Autorest/test/ScheduledQueryRule.Recording.json index 158181569d60..b0fbff2790cb 100644 --- a/src/Monitor/ScheduledQueryRule.Autorest/test/ScheduledQueryRule.Recording.json +++ b/src/Monitor/ScheduledQueryRule.Autorest/test/ScheduledQueryRule.Recording.json @@ -1,15 +1,15 @@ { - "ScheduledQueryRule+[NoContext]+CRUD+$PUT+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/scheduled-query-rule-groupwgnbyd/providers/Microsoft.Insights/scheduledQueryRules/test-rule3dq5jv?api-version=2021-08-01+1": { + "ScheduledQueryRule+[NoContext]+CRUD+$PUT+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/scheduled-query-rule-group0716/providers/Microsoft.Insights/scheduledQueryRules/test-rule5gklzr?api-version=2021-08-01+1": { "Request": { "Method": "PUT", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/scheduled-query-rule-groupwgnbyd/providers/Microsoft.Insights/scheduledQueryRules/test-rule3dq5jv?api-version=2021-08-01", - "Content": "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"criteria\": {\r\n \"allOf\": [\r\n {\r\n \"failingPeriods\": {\r\n \"numberOfEvaluationPeriods\": 1,\r\n \"minFailingPeriodsToAlert\": 1\r\n },\r\n \"query\": \"Perf | where ObjectName == \\\"Processor\\\" and CounterName == \\\"% Processor Time\\\" | summarize AggregatedValue = avg(CounterValue) by bin(TimeGenerated, 5m), Computer\",\r\n \"timeAggregation\": \"Average\",\r\n \"metricMeasureColumn\": \"AggregatedValue\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Computer\",\r\n \"operator\": \"Include\",\r\n \"values\": [ \"*\" ]\r\n }\r\n ],\r\n \"operator\": \"GreaterThan\",\r\n \"threshold\": 70\r\n }\r\n ]\r\n },\r\n \"displayName\": \"test-rule\",\r\n \"severity\": 4,\r\n \"scopes\": [ \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/scheduled-query-rule-groupwgnbyd/providers/Microsoft.Compute/virtualMachines/test-vm5fq4nb\" ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT10M\"\r\n }\r\n}", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/scheduled-query-rule-group0716/providers/Microsoft.Insights/scheduledQueryRules/test-rule5gklzr?api-version=2021-08-01", + "Content": "{\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"criteria\": {\r\n \"allOf\": [\r\n {\r\n \"failingPeriods\": {\r\n \"numberOfEvaluationPeriods\": 1,\r\n \"minFailingPeriodsToAlert\": 1\r\n },\r\n \"query\": \"Perf | where ObjectName == \\\"Processor\\\" and CounterName == \\\"% Processor Time\\\" | summarize AggregatedValue = avg(CounterValue) by bin(TimeGenerated, 5m), Computer\",\r\n \"timeAggregation\": \"Average\",\r\n \"metricMeasureColumn\": \"AggregatedValue\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Computer\",\r\n \"operator\": \"Include\",\r\n \"values\": [ \"*\" ]\r\n }\r\n ],\r\n \"operator\": \"GreaterThan\",\r\n \"threshold\": 70\r\n }\r\n ]\r\n },\r\n \"displayName\": \"test-rule\",\r\n \"severity\": 4,\r\n \"scopes\": [ \"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/scheduled-query-rule-group0716/providers/Microsoft.Compute/virtualMachines/testvm250716\" ],\r\n \"evaluationFrequency\": \"PT5M\",\r\n \"windowSize\": \"PT10M\"\r\n }\r\n}", "isContentBase64": false, "Headers": { }, "ContentHeaders": { "Content-Type": [ "application/json" ], - "Content-Length": [ "1082" ] + "Content-Length": [ "1080" ] } }, "Response": { @@ -17,40 +17,46 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "Set-Cookie": [ "ARRAffinity=f929b3932b0be89c8b82fb99505574adcf7a61cbba6457cb7cd10973be7d395d;Path=/;HttpOnly;Secure;Domain=lsa.eastus2.prod.alertsrp.azure.com", "ARRAffinitySameSite=f929b3932b0be89c8b82fb99505574adcf7a61cbba6457cb7cd10973be7d395d;Path=/;HttpOnly;SameSite=None;Secure;Domain=lsa.eastus2.prod.alertsrp.azure.com" ], + "x-ms-request-id": [ "fef6c975-2c35-4250-b936-69feeaf9be2d" ], + "api-supported-versions": [ "2017-09-01-preview, 2017-09-01, 2018-04-16, 2020-05-01-preview, 2021-02-01-preview, 2021-08-01, 2022-06-15, 2022-08-01-preview, 2023-03-15-preview, 2023-12-01, 2024-01-01-preview, 2025-01-01-preview" ], "X-Rate-Limit-Limit": [ "1m" ], - "X-Rate-Limit-Remaining": [ "14" ], - "X-Rate-Limit-Reset": [ "2022-09-21T08:07:26.5863251Z" ], - "Server": [ "Kestrel" ], - "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], - "x-ms-request-id": [ "65f0d975-ad01-43c8-ba38-6b48d5551fe6" ], - "x-ms-correlation-request-id": [ "65f0d975-ad01-43c8-ba38-6b48d5551fe6" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220921T080639Z:65f0d975-ad01-43c8-ba38-6b48d5551fe6" ], + "X-Rate-Limit-Remaining": [ "29" ], + "X-Rate-Limit-Reset": [ "2025-07-16T08:50:49.6285544Z" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southindia/174a43be-daba-484a-83e3-9bca156b03b4" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "199" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "2999" ], + "x-ms-correlation-request-id": [ "fef6c975-2c35-4250-b936-69feeaf9be2d" ], + "x-ms-routing-request-id": [ "SOUTHINDIA:20250716T084955Z:fef6c975-2c35-4250-b936-69feeaf9be2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 21 Sep 2022 08:06:38 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 096CC420E30A43658571A592E30547A1 Ref B: MAA201060515029 Ref C: 2025-07-16T08:49:45Z" ], + "Date": [ "Wed, 16 Jul 2025 08:49:54 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1245" ], + "Content-Length": [ "1282" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/scheduled-query-rule-groupwgnbyd/providers/microsoft.insights/scheduledqueryrules/test-rule3dq5jv\",\"name\":\"test-rule3dq5jv\",\"type\":\"microsoft.insights/scheduledqueryrules\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"yabhu@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-09-21T08:06:26.4964881Z\",\"lastModifiedBy\":\"yabhu@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2022-09-21T08:06:26.4964881Z\"},\"properties\":{\"displayName\":\"test-rule\",\"severity\":4,\"enabled\":true,\"evaluationFrequency\":\"PT5M\",\"scopes\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/scheduled-query-rule-groupwgnbyd/providers/Microsoft.Compute/virtualMachines/test-vm5fq4nb\"],\"windowSize\":\"PT10M\",\"criteria\":{\"allOf\":[{\"query\":\"Perf | where ObjectName == \\\"Processor\\\" and CounterName == \\\"% Processor Time\\\" | summarize AggregatedValue = avg(CounterValue) by bin(TimeGenerated, 5m), Computer\",\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"AggregatedValue\",\"dimensions\":[{\"name\":\"Computer\",\"operator\":\"Include\",\"values\":[\"*\"]}],\"operator\":\"GreaterThan\",\"threshold\":70.0,\"failingPeriods\":{\"numberOfEvaluationPeriods\":1,\"minFailingPeriodsToAlert\":1}}]}}}", + "Content": "{\"id\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/scheduled-query-rule-group0716/providers/microsoft.insights/scheduledqueryrules/test-rule5gklzr\",\"name\":\"test-rule5gklzr\",\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"v-jiaji@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2025-07-16T08:49:48.2767226Z\",\"lastModifiedBy\":\"v-jiaji@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2025-07-16T08:49:48.2767226Z\"},\"properties\":{\"createdWithApiVersion\":\"2021-08-01\",\"displayName\":\"test-rule\",\"severity\":4,\"enabled\":true,\"evaluationFrequency\":\"PT5M\",\"scopes\":[\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/scheduled-query-rule-group0716/providers/Microsoft.Compute/virtualMachines/testvm250716\"],\"windowSize\":\"PT10M\",\"criteria\":{\"allOf\":[{\"query\":\"Perf | where ObjectName == \\\"Processor\\\" and CounterName == \\\"% Processor Time\\\" | summarize AggregatedValue = avg(CounterValue) by bin(TimeGenerated, 5m), Computer\",\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"AggregatedValue\",\"dimensions\":[{\"name\":\"Computer\",\"operator\":\"Include\",\"values\":[\"*\"]}],\"operator\":\"GreaterThan\",\"threshold\":70.0,\"failingPeriods\":{\"numberOfEvaluationPeriods\":1,\"minFailingPeriodsToAlert\":1}}]}}}", "isContentBase64": false } }, - "ScheduledQueryRule+[NoContext]+CRUD+$GET+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/scheduled-query-rule-groupwgnbyd/providers/Microsoft.Insights/scheduledQueryRules/test-rule3dq5jv?api-version=2021-08-01+2": { + "ScheduledQueryRule+[NoContext]+CRUD+$GET+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/scheduled-query-rule-group0716/providers/Microsoft.Insights/scheduledQueryRules/test-rule5gklzr?api-version=2021-08-01+2": { "Request": { "Method": "GET", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/scheduled-query-rule-groupwgnbyd/providers/Microsoft.Insights/scheduledQueryRules/test-rule3dq5jv?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/scheduled-query-rule-group0716/providers/Microsoft.Insights/scheduledQueryRules/test-rule5gklzr?api-version=2021-08-01", "Content": null, "isContentBase64": false, "Headers": { "x-ms-unique-id": [ "3" ], - "x-ms-client-request-id": [ "5cb5ea31-30ae-4626-a063-cc9be4dc655d" ], + "x-ms-client-request-id": [ "51deb325-e0bb-428e-8392-761a48394a54" ], "CommandName": [ "Get-AzScheduledQueryRule" ], "FullCommandName": [ "Get-AzScheduledQueryRule_Get" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.6", "Az.ScheduledQueryRule/0.1.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.ScheduledQueryRule/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -61,40 +67,90 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "Set-Cookie": [ "ARRAffinity=9f7151225e66ec8053cafe9939ba36982979d3d25ed061eb4b454eb2e8474798;Path=/;HttpOnly;Secure;Domain=lsa.eastus2.prod.alertsrp.azure.com", "ARRAffinitySameSite=9f7151225e66ec8053cafe9939ba36982979d3d25ed061eb4b454eb2e8474798;Path=/;HttpOnly;SameSite=None;Secure;Domain=lsa.eastus2.prod.alertsrp.azure.com" ], + "x-ms-ratelimit-remaining-subscription-reads": [ "249" ], + "x-ms-request-id": [ "a310b78d-68a9-41e5-b4ae-1e5fb76bbcbe" ], + "x-ms-orig-api-version": [ "2021-08-01" ], + "api-supported-versions": [ "2017-09-01-preview, 2017-09-01, 2018-04-16, 2020-05-01-preview, 2021-02-01-preview, 2021-08-01, 2022-06-15, 2022-08-01-preview, 2023-03-15-preview, 2023-12-01, 2024-01-01-preview, 2025-01-01-preview" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ "3749" ], + "x-ms-correlation-request-id": [ "a310b78d-68a9-41e5-b4ae-1e5fb76bbcbe" ], + "x-ms-routing-request-id": [ "SOUTHINDIA:20250716T084958Z:a310b78d-68a9-41e5-b4ae-1e5fb76bbcbe" ], + "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: FAB6CE893AF0435988539944AC0224DE Ref B: MAA201060515029 Ref C: 2025-07-16T08:49:55Z" ], + "Date": [ "Wed, 16 Jul 2025 08:49:57 GMT" ] + }, + "ContentHeaders": { + "Content-Length": [ "1282" ], + "Content-Type": [ "application/json; charset=utf-8" ], + "Expires": [ "-1" ] + }, + "Content": "{\"id\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/scheduled-query-rule-group0716/providers/microsoft.insights/scheduledqueryrules/test-rule5gklzr\",\"name\":\"test-rule5gklzr\",\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"v-jiaji@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2025-07-16T08:49:48.2767226Z\",\"lastModifiedBy\":\"v-jiaji@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2025-07-16T08:49:48.2767226Z\"},\"properties\":{\"createdWithApiVersion\":\"2021-08-01\",\"displayName\":\"test-rule\",\"severity\":4,\"enabled\":true,\"evaluationFrequency\":\"PT5M\",\"scopes\":[\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/scheduled-query-rule-group0716/providers/Microsoft.Compute/virtualMachines/testvm250716\"],\"windowSize\":\"PT10M\",\"criteria\":{\"allOf\":[{\"query\":\"Perf | where ObjectName == \\\"Processor\\\" and CounterName == \\\"% Processor Time\\\" | summarize AggregatedValue = avg(CounterValue) by bin(TimeGenerated, 5m), Computer\",\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"AggregatedValue\",\"dimensions\":[{\"name\":\"Computer\",\"operator\":\"Include\",\"values\":[\"*\"]}],\"operator\":\"GreaterThan\",\"threshold\":70.0,\"failingPeriods\":{\"numberOfEvaluationPeriods\":1,\"minFailingPeriodsToAlert\":1}}]}}}", + "isContentBase64": false + } + }, + "ScheduledQueryRule+[NoContext]+CRUD+$PATCH+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/scheduled-query-rule-group0716/providers/Microsoft.Insights/scheduledQueryRules/test-rule5gklzr?api-version=2021-08-01+3": { + "Request": { + "Method": "PATCH", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/scheduled-query-rule-group0716/providers/Microsoft.Insights/scheduledQueryRules/test-rule5gklzr?api-version=2021-08-01", + "Content": "{\r\n \"properties\": {\r\n \"description\": \"Updated description\"\r\n }\r\n}", + "isContentBase64": false, + "Headers": { + }, + "ContentHeaders": { + "Content-Type": [ "application/json" ], + "Content-Length": [ "70" ] + } + }, + "Response": { + "StatusCode": 200, + "Headers": { + "Cache-Control": [ "no-cache" ], + "Pragma": [ "no-cache" ], + "Vary": [ "Accept-Encoding" ], + "Set-Cookie": [ "ARRAffinity=868db824452979a2f0e9fc65f4e4a7c1b3faaeb156895ba3525dfba9042ab533;Path=/;HttpOnly;Secure;Domain=lsa.eastus2.prod.alertsrp.azure.com", "ARRAffinitySameSite=868db824452979a2f0e9fc65f4e4a7c1b3faaeb156895ba3525dfba9042ab533;Path=/;HttpOnly;SameSite=None;Secure;Domain=lsa.eastus2.prod.alertsrp.azure.com" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southindia/45c2fb1c-3298-45d6-986d-f1b0f1b9f2b0" ], + "x-ms-request-id": [ "2fdf2fbb-c90e-48aa-b1a4-dd3d3e901643" ], + "api-supported-versions": [ "2017-09-01-preview, 2017-09-01, 2018-04-16, 2020-05-01-preview, 2021-02-01-preview, 2021-08-01, 2022-06-15, 2022-08-01-preview, 2023-03-15-preview, 2023-12-01, 2024-01-01-preview, 2025-01-01-preview" ], "X-Rate-Limit-Limit": [ "1m" ], - "X-Rate-Limit-Remaining": [ "49" ], - "X-Rate-Limit-Reset": [ "2022-09-21T08:07:39.8363171Z" ], - "Server": [ "Kestrel" ], - "x-ms-ratelimit-remaining-subscription-reads": [ "11999" ], - "x-ms-request-id": [ "559cc5ff-78d9-4bda-bb44-05624995d5cd" ], - "x-ms-correlation-request-id": [ "559cc5ff-78d9-4bda-bb44-05624995d5cd" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220921T080640Z:559cc5ff-78d9-4bda-bb44-05624995d5cd" ], + "X-Rate-Limit-Remaining": [ "29" ], + "X-Rate-Limit-Reset": [ "2025-07-16T08:51:00.9263377Z" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-writes": [ "199" ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ "2999" ], + "x-ms-correlation-request-id": [ "2fdf2fbb-c90e-48aa-b1a4-dd3d3e901643" ], + "x-ms-routing-request-id": [ "SOUTHINDIA:20250716T085006Z:2fdf2fbb-c90e-48aa-b1a4-dd3d3e901643" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 21 Sep 2022 08:06:39 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 7098BA1693BC4FB2ADA3D243ED80C585 Ref B: MAA201060515029 Ref C: 2025-07-16T08:49:58Z" ], + "Date": [ "Wed, 16 Jul 2025 08:50:05 GMT" ] }, "ContentHeaders": { - "Content-Length": [ "1245" ], + "Content-Length": [ "1317" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "Content": "{\"id\":\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/scheduled-query-rule-groupwgnbyd/providers/microsoft.insights/scheduledqueryrules/test-rule3dq5jv\",\"name\":\"test-rule3dq5jv\",\"type\":\"microsoft.insights/scheduledqueryrules\",\"location\":\"eastus\",\"systemData\":{\"createdBy\":\"yabhu@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2022-09-21T08:06:26.4964881Z\",\"lastModifiedBy\":\"yabhu@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2022-09-21T08:06:26.4964881Z\"},\"properties\":{\"displayName\":\"test-rule\",\"severity\":4,\"enabled\":true,\"evaluationFrequency\":\"PT5M\",\"scopes\":[\"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/scheduled-query-rule-groupwgnbyd/providers/Microsoft.Compute/virtualMachines/test-vm5fq4nb\"],\"windowSize\":\"PT10M\",\"criteria\":{\"allOf\":[{\"query\":\"Perf | where ObjectName == \\\"Processor\\\" and CounterName == \\\"% Processor Time\\\" | summarize AggregatedValue = avg(CounterValue) by bin(TimeGenerated, 5m), Computer\",\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"AggregatedValue\",\"dimensions\":[{\"name\":\"Computer\",\"operator\":\"Include\",\"values\":[\"*\"]}],\"operator\":\"GreaterThan\",\"threshold\":70.0,\"failingPeriods\":{\"numberOfEvaluationPeriods\":1,\"minFailingPeriodsToAlert\":1}}]}}}", + "Content": "{\"id\":\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/scheduled-query-rule-group0716/providers/microsoft.insights/scheduledqueryrules/test-rule5gklzr\",\"name\":\"test-rule5gklzr\",\"type\":\"Microsoft.Insights/scheduledQueryRules\",\"location\":\"eastus2\",\"systemData\":{\"createdBy\":\"v-jiaji@microsoft.com\",\"createdByType\":\"User\",\"createdAt\":\"2025-07-16T08:49:48.2767226Z\",\"lastModifiedBy\":\"v-jiaji@microsoft.com\",\"lastModifiedByType\":\"User\",\"lastModifiedAt\":\"2025-07-16T08:49:59.727038Z\"},\"properties\":{\"createdWithApiVersion\":\"2021-08-01\",\"displayName\":\"test-rule\",\"description\":\"Updated description\",\"severity\":4,\"enabled\":true,\"evaluationFrequency\":\"PT5M\",\"scopes\":[\"/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/scheduled-query-rule-group0716/providers/Microsoft.Compute/virtualMachines/testvm250716\"],\"windowSize\":\"PT10M\",\"criteria\":{\"allOf\":[{\"query\":\"Perf | where ObjectName == \\\"Processor\\\" and CounterName == \\\"% Processor Time\\\" | summarize AggregatedValue = avg(CounterValue) by bin(TimeGenerated, 5m), Computer\",\"timeAggregation\":\"Average\",\"metricMeasureColumn\":\"AggregatedValue\",\"dimensions\":[{\"name\":\"Computer\",\"operator\":\"Include\",\"values\":[\"*\"]}],\"operator\":\"GreaterThan\",\"threshold\":70.0,\"failingPeriods\":{\"numberOfEvaluationPeriods\":1,\"minFailingPeriodsToAlert\":1}}]}}}", "isContentBase64": false } }, - "ScheduledQueryRule+[NoContext]+CRUD+$DELETE+https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/scheduled-query-rule-groupwgnbyd/providers/Microsoft.Insights/scheduledQueryRules/test-rule3dq5jv?api-version=2021-08-01+3": { + "ScheduledQueryRule+[NoContext]+CRUD+$DELETE+https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/scheduled-query-rule-group0716/providers/Microsoft.Insights/scheduledQueryRules/test-rule5gklzr?api-version=2021-08-01+4": { "Request": { "Method": "DELETE", - "RequestUri": "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/scheduled-query-rule-groupwgnbyd/providers/Microsoft.Insights/scheduledQueryRules/test-rule3dq5jv?api-version=2021-08-01", + "RequestUri": "https://management.azure.com/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/scheduled-query-rule-group0716/providers/Microsoft.Insights/scheduledQueryRules/test-rule5gklzr?api-version=2021-08-01", "Content": null, "isContentBase64": false, "Headers": { - "x-ms-unique-id": [ "4" ], - "x-ms-client-request-id": [ "57f3e242-d9f0-4b3b-9c29-96a4ce9a60b3" ], + "x-ms-unique-id": [ "5" ], + "x-ms-client-request-id": [ "264b5c7f-17d9-44f0-a953-b884924a785c" ], "CommandName": [ "Remove-AzScheduledQueryRule" ], "FullCommandName": [ "Remove-AzScheduledQueryRule_Delete" ], "ParameterSetName": [ "__AllParameterSets" ], - "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.2.6", "Az.ScheduledQueryRule/0.1.0" ], + "User-Agent": [ "AzurePowershell/v0.0.0", "PSVersion/v7.5.1", "Az.ScheduledQueryRule/0.1.0" ], "Authorization": [ "[Filtered]" ] }, "ContentHeaders": { @@ -105,14 +161,20 @@ "Headers": { "Cache-Control": [ "no-cache" ], "Pragma": [ "no-cache" ], - "Server": [ "Kestrel" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ "14999" ], - "x-ms-request-id": [ "be924b92-9336-4a22-a054-3f2d35670c4e" ], - "x-ms-correlation-request-id": [ "be924b92-9336-4a22-a054-3f2d35670c4e" ], - "x-ms-routing-request-id": [ "SOUTHEASTASIA:20220921T080647Z:be924b92-9336-4a22-a054-3f2d35670c4e" ], + "Set-Cookie": [ "ARRAffinity=9f7151225e66ec8053cafe9939ba36982979d3d25ed061eb4b454eb2e8474798;Path=/;HttpOnly;Secure;Domain=lsa.eastus2.prod.alertsrp.azure.com", "ARRAffinitySameSite=9f7151225e66ec8053cafe9939ba36982979d3d25ed061eb4b454eb2e8474798;Path=/;HttpOnly;SameSite=None;Secure;Domain=lsa.eastus2.prod.alertsrp.azure.com" ], + "x-ms-request-id": [ "49fdf6bc-15ab-4540-9058-8109caae07a4" ], + "api-supported-versions": [ "2017-09-01-preview, 2017-09-01, 2018-04-16, 2020-05-01-preview, 2021-02-01-preview, 2021-08-01, 2022-06-15, 2022-08-01-preview, 2023-03-15-preview, 2023-12-01, 2024-01-01-preview, 2025-01-01-preview" ], + "X-Powered-By": [ "ASP.NET" ], + "x-ms-operation-identifier": [ "tenantId=213e87ed-8e08-4eb4-a63c-c073058f7b00,objectId=5dce0ce9-f0a7-437f-aea2-760d05c62ca9/southindia/afe47f91-4a76-4b4f-8d0f-30243a5aba51" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ "199" ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ "2999" ], + "x-ms-correlation-request-id": [ "49fdf6bc-15ab-4540-9058-8109caae07a4" ], + "x-ms-routing-request-id": [ "SOUTHINDIA:20250716T085010Z:49fdf6bc-15ab-4540-9058-8109caae07a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ "Wed, 21 Sep 2022 08:06:46 GMT" ] + "X-Cache": [ "CONFIG_NOCACHE" ], + "X-MSEdge-Ref": [ "Ref A: 08B9675F05DE4703AD107EC450ACEDF6 Ref B: MAA201060515029 Ref C: 2025-07-16T08:50:06Z" ], + "Date": [ "Wed, 16 Jul 2025 08:50:09 GMT" ] }, "ContentHeaders": { "Expires": [ "-1" ], diff --git a/src/Monitor/ScheduledQueryRule.Autorest/test/ScheduledQueryRule.Tests.ps1 b/src/Monitor/ScheduledQueryRule.Autorest/test/ScheduledQueryRule.Tests.ps1 index c935eaa68e13..7f26a1829af7 100644 --- a/src/Monitor/ScheduledQueryRule.Autorest/test/ScheduledQueryRule.Tests.ps1 +++ b/src/Monitor/ScheduledQueryRule.Autorest/test/ScheduledQueryRule.Tests.ps1 @@ -18,9 +18,13 @@ Describe 'ScheduledQueryRule' { It 'CRUD' { $dimension = New-AzScheduledQueryRuleDimensionObject -Name Computer -Operator Include -Value * $condition=New-AzScheduledQueryRuleConditionObject -Dimension $dimension -Query "Perf | where ObjectName == `"Processor`" and CounterName == `"% Processor Time`" | summarize AggregatedValue = avg(CounterValue) by bin(TimeGenerated, 5m), Computer" -TimeAggregation "Average" -MetricMeasureColumn "AggregatedValue" -Operator "GreaterThan" -Threshold "70" -FailingPeriodNumberOfEvaluationPeriod 1 -FailingPeriodMinFailingPeriodsToAlert 1 - New-AzScheduledQueryRule -Name $env.scheduledQueryRuleName -ResourceGroupName $env.resourceGroupName -Location eastus -DisplayName test-rule -Scope $env.vmId -Severity 4 -WindowSize ([System.TimeSpan]::New(0,10,0)) -EvaluationFrequency ([System.TimeSpan]::New(0,5,0)) -CriterionAllOf $condition + New-AzScheduledQueryRule -Name $env.scheduledQueryRuleName -ResourceGroupName $env.resourceGroupName -Location $env.location -DisplayName test-rule -Scope $env.vmId -Severity 4 -WindowSize ([System.TimeSpan]::New(0,10,0)) -EvaluationFrequency ([System.TimeSpan]::New(0,5,0)) -CriterionAllOf $condition $rule = Get-AzScheduledQueryRule -Name $env.scheduledQueryRuleName -ResourceGroupName $env.resourceGroupName + $rule.Name | Should -Be $env.scheduledQueryRuleName + $update = Update-AzScheduledQueryRule -Name $env.scheduledQueryRuleName -ResourceGroupName $env.resourceGroupName -Description "Updated description" + $update.Description | Should -Be "Updated description" + Remove-AzScheduledQueryRule -Name $env.scheduledQueryRuleName -ResourceGroupName $env.resourceGroupName } } \ No newline at end of file diff --git a/src/Monitor/ScheduledQueryRule.Autorest/test/env.json b/src/Monitor/ScheduledQueryRule.Autorest/test/env.json index 31f2077b18a3..c65f0f91fe82 100644 --- a/src/Monitor/ScheduledQueryRule.Autorest/test/env.json +++ b/src/Monitor/ScheduledQueryRule.Autorest/test/env.json @@ -1,8 +1,9 @@ { - "vmName": "test-vm5fq4nb", - "vmId": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/scheduled-query-rule-groupwgnbyd/providers/Microsoft.Compute/virtualMachines/test-vm5fq4nb", - "Tenant": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "SubscriptionId": "9e223dbe-3399-4e19-88eb-0975f02ac87f", - "scheduledQueryRuleName": "test-rule3dq5jv", - "resourceGroupName": "scheduled-query-rule-groupwgnbyd" + "resourceGroupName": "scheduled-query-rule-group0716", + "vmId": "/subscriptions/0e745469-49f8-48c9-873b-24ca87143db1/resourceGroups/scheduled-query-rule-group0716/providers/Microsoft.Compute/virtualMachines/testvm250716", + "location": "eastus2", + "vmName": "testvm250716", + "SubscriptionId": "0e745469-49f8-48c9-873b-24ca87143db1", + "Tenant": "213e87ed-8e08-4eb4-a63c-c073058f7b00", + "scheduledQueryRuleName": "test-rule5gklzr" } diff --git a/src/Monitor/ScheduledQueryRule.Autorest/test/utils.ps1 b/src/Monitor/ScheduledQueryRule.Autorest/test/utils.ps1 index bebc0c8e3b37..17facfcd9814 100644 --- a/src/Monitor/ScheduledQueryRule.Autorest/test/utils.ps1 +++ b/src/Monitor/ScheduledQueryRule.Autorest/test/utils.ps1 @@ -45,18 +45,31 @@ function setupEnv() { $env.Tenant = (Get-AzContext).Tenant.Id # For any resources you created for test, you should add it to $env here. - $resourceGroupName = 'scheduled-query-rule-group' + (RandomString -allChars $false -len 6) - write-host "start to create test group $resourceGroupName" - New-AzResourceGroup -Name $resourceGroupName -Location eastus + # $resourceGroupName = 'scheduled-query-rule-group' + (RandomString -allChars $false -len 6) + $resourceGroupName = 'scheduled-query-rule-group0716' + $location = 'eastus2' + try { + Get-AzResourceGroup -Name $resourceGroupName -ErrorAction Stop + Write-Host 'Get created group' + } catch { + write-host "start to create test group $resourceGroupName" + New-AzResourceGroup -Name $resourceGroupName -Location $location + } $null = $env.Add("resourceGroupName", $resourceGroupName) + $null = $env.Add("location", $location) - $vmName = 'test-vm' + (RandomString -allChars $false -len 6) - $vmPassword = ConvertTo-SecureString "Testpassword001!" -AsPlainText -Force - $vmCred = New-Object System.Management.Automation.PSCredential('USERNAME', $vmPassword) - write-host "start to create vm $vmName" - New-AzVM -Credential $vmCred -Name $vmName -ResourceGroup $resourceGroupName + # $vmName = 'testvm' + (RandomString -allChars $false -len 6) + # $vmPassword = 'REDACTED' + # $vmCred = New-Object System.Management.Automation.PSCredential('USERNAME', $vmPassword) + # write-host "start to create vm $vmName" + # New-AzVM -Credential $vmCred -Name $vmName -ResourceGroup $resourceGroupName + $vmName = 'testvm250716' $null = $env.Add("vmName", $vmName) $vmId = (Get-AzVM -ResourceGroupName $resourceGroupName -Name $vmName).Id + if($null -eq $vmId) + { + Write-Host "Failed to get the required virtual machine." + } $null = $env.Add("vmId", $vmId) $scheduledQueryRuleName = 'test-rule' + (RandomString -allChars $false -len 6) diff --git a/tools/StaticAnalysis/Exceptions/Az.Monitor/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Monitor/BreakingChangeIssues.csv index bcc1c9e874bd..bafc94f4a6e5 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Monitor/BreakingChangeIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Monitor/BreakingChangeIssues.csv @@ -1,4 +1,122 @@ "Module","ClassName","Target","Severity","ProblemId","Description","Remediation" +"Az.Monitor","Get-AzScheduledQueryRule","Get-AzScheduledQueryRule","0","3000","The type of property 'CriterionAllOf' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.ICondition' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.ICondition]'.","Change the type of property 'CriterionAllOf' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.ICondition'." +"Az.Monitor","Get-AzScheduledQueryRule","Get-AzScheduledQueryRule","0","3000","The type of property 'SystemDataLastModifiedByType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.CreatedByType]' to 'System.String'.","Change the type of property 'SystemDataLastModifiedByType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.CreatedByType]'." +"Az.Monitor","Get-AzScheduledQueryRule","Get-AzScheduledQueryRule","0","3000","The type of property 'SystemDataCreatedByType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.CreatedByType]' to 'System.String'.","Change the type of property 'SystemDataCreatedByType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.CreatedByType]'." +"Az.Monitor","Get-AzScheduledQueryRule","Get-AzScheduledQueryRule","0","3000","The type of property 'Kind' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind]' to 'System.String'.","Change the type of property 'Kind' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind]'." +"Az.Monitor","Get-AzScheduledQueryRule","Get-AzScheduledQueryRule","0","3000","The type of property 'Scope' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'Scope' back to 'System.String[]'." +"Az.Monitor","Get-AzScheduledQueryRule","Get-AzScheduledQueryRule","0","3000","The type of property 'TargetResourceType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'TargetResourceType' back to 'System.String[]'." +"Az.Monitor","Get-AzScheduledQueryRule","Get-AzScheduledQueryRule","0","3000","The type of property 'ActionGroup' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'ActionGroup' back to 'System.String[]'." +"Az.Monitor","New-AzScheduledQueryRule","New-AzScheduledQueryRule","0","3000","The type of property 'CriterionAllOf' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.ICondition' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.ICondition]'.","Change the type of property 'CriterionAllOf' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.ICondition'." +"Az.Monitor","New-AzScheduledQueryRule","New-AzScheduledQueryRule","0","3000","The type of property 'SystemDataLastModifiedByType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.CreatedByType]' to 'System.String'.","Change the type of property 'SystemDataLastModifiedByType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.CreatedByType]'." +"Az.Monitor","New-AzScheduledQueryRule","New-AzScheduledQueryRule","0","3000","The type of property 'SystemDataCreatedByType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.CreatedByType]' to 'System.String'.","Change the type of property 'SystemDataCreatedByType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.CreatedByType]'." +"Az.Monitor","New-AzScheduledQueryRule","New-AzScheduledQueryRule","0","3000","The type of property 'Kind' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind]' to 'System.String'.","Change the type of property 'Kind' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind]'." +"Az.Monitor","New-AzScheduledQueryRule","New-AzScheduledQueryRule","0","3000","The type of property 'Scope' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'Scope' back to 'System.String[]'." +"Az.Monitor","New-AzScheduledQueryRule","New-AzScheduledQueryRule","0","3000","The type of property 'TargetResourceType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'TargetResourceType' back to 'System.String[]'." +"Az.Monitor","New-AzScheduledQueryRule","New-AzScheduledQueryRule","0","3000","The type of property 'ActionGroup' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'ActionGroup' back to 'System.String[]'." +"Az.Monitor","New-AzScheduledQueryRule","New-AzScheduledQueryRule","0","3000","The type of property 'Dimension' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IDimension' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IDimension]'.","Change the type of property 'Dimension' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IDimension'." +"Az.Monitor","New-AzScheduledQueryRule","New-AzScheduledQueryRule","0","3000","The type of property 'Operator' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator]' to 'System.String'.","Change the type of property 'Operator' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator]'." +"Az.Monitor","New-AzScheduledQueryRule","New-AzScheduledQueryRule","0","3000","The type of property 'TimeAggregation' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.ICondition' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation]' to 'System.String'.","Change the type of property 'TimeAggregation' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation]'." +"Az.Monitor","New-AzScheduledQueryRule","New-AzScheduledQueryRule","0","2020","The cmdlet 'New-AzScheduledQueryRule' no longer supports the type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind' for parameter 'Kind'.","Change the type for parameter 'Kind' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind'." +"Az.Monitor","New-AzScheduledQueryRuleConditionObject","New-AzScheduledQueryRuleConditionObject","0","3000","The type of property 'Dimension' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.Condition' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IDimension' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IDimension]'.","Change the type of property 'Dimension' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.IDimension'." +"Az.Monitor","New-AzScheduledQueryRuleConditionObject","New-AzScheduledQueryRuleConditionObject","0","3000","The type of property 'Operator' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.Condition' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator]' to 'System.String'.","Change the type of property 'Operator' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator]'." +"Az.Monitor","New-AzScheduledQueryRuleConditionObject","New-AzScheduledQueryRuleConditionObject","0","3000","The type of property 'TimeAggregation' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.Condition' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation]' to 'System.String'.","Change the type of property 'TimeAggregation' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation]'." +"Az.Monitor","New-AzScheduledQueryRuleConditionObject","New-AzScheduledQueryRuleConditionObject","0","3000","The type of property 'Operator' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.DimensionOperator' to 'System.String'.","Change the type of property 'Operator' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.DimensionOperator'." +"Az.Monitor","New-AzScheduledQueryRuleConditionObject","New-AzScheduledQueryRuleConditionObject","0","3000","The type of property 'Value' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IDimension' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'Value' back to 'System.String[]'." +"Az.Monitor","New-AzScheduledQueryRuleConditionObject","New-AzScheduledQueryRuleConditionObject","0","2020","The cmdlet 'New-AzScheduledQueryRuleConditionObject' no longer supports the type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator' for parameter 'Operator'.","Change the type for parameter 'Operator' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.ConditionOperator'." +"Az.Monitor","New-AzScheduledQueryRuleConditionObject","New-AzScheduledQueryRuleConditionObject","0","2020","The cmdlet 'New-AzScheduledQueryRuleConditionObject' no longer supports the type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation' for parameter 'TimeAggregation'.","Change the type for parameter 'TimeAggregation' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.TimeAggregation'." +"Az.Monitor","New-AzScheduledQueryRuleDimensionObject","New-AzScheduledQueryRuleDimensionObject","0","3000","The type of property 'Operator' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.Dimension' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.DimensionOperator' to 'System.String'.","Change the type of property 'Operator' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.DimensionOperator'." +"Az.Monitor","New-AzScheduledQueryRuleDimensionObject","New-AzScheduledQueryRuleDimensionObject","0","3000","The type of property 'Value' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.Dimension' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'Value' back to 'System.String[]'." +"Az.Monitor","New-AzScheduledQueryRuleDimensionObject","New-AzScheduledQueryRuleDimensionObject","0","2020","The cmdlet 'New-AzScheduledQueryRuleDimensionObject' no longer supports the type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.DimensionOperator' for parameter 'Operator'.","Change the type for parameter 'Operator' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.DimensionOperator'." +"Az.Monitor","Update-AzScheduledQueryRule","Update-AzScheduledQueryRule","0","3000","The type of property 'CriterionAllOf' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.ICondition' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.ICondition]'.","Change the type of property 'CriterionAllOf' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.ICondition'." +"Az.Monitor","Update-AzScheduledQueryRule","Update-AzScheduledQueryRule","0","3000","The type of property 'SystemDataLastModifiedByType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.CreatedByType]' to 'System.String'.","Change the type of property 'SystemDataLastModifiedByType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.CreatedByType]'." +"Az.Monitor","Update-AzScheduledQueryRule","Update-AzScheduledQueryRule","0","3000","The type of property 'SystemDataCreatedByType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.CreatedByType]' to 'System.String'.","Change the type of property 'SystemDataCreatedByType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.CreatedByType]'." +"Az.Monitor","Update-AzScheduledQueryRule","Update-AzScheduledQueryRule","0","3000","The type of property 'Kind' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind]' to 'System.String'.","Change the type of property 'Kind' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Support.Kind]'." +"Az.Monitor","Update-AzScheduledQueryRule","Update-AzScheduledQueryRule","0","3000","The type of property 'Scope' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'Scope' back to 'System.String[]'." +"Az.Monitor","Update-AzScheduledQueryRule","Update-AzScheduledQueryRule","0","3000","The type of property 'TargetResourceType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'TargetResourceType' back to 'System.String[]'." +"Az.Monitor","Update-AzScheduledQueryRule","Update-AzScheduledQueryRule","0","3000","The type of property 'ActionGroup' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ScheduledQueryRule.Models.Api20210801.IScheduledQueryRuleResource' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'ActionGroup' back to 'System.String[]'." +"Az.Monitor","Update-AzScheduledQueryRule","Update-AzScheduledQueryRule","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Update-AzScheduledQueryRule' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Update-AzScheduledQueryRule'." +"Az.Monitor","Get-AzMonitorWorkspace","Get-AzMonitorWorkspace","0","3000","The type of property 'PrivateEndpointConnection' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.Api20230403.IAzureMonitorWorkspaceResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.IPrivateEndpointConnection' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.IPrivateEndpointConnection]'.","Change the type of property 'PrivateEndpointConnection' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.IPrivateEndpointConnection'." +"Az.Monitor","Get-AzMonitorWorkspace","Get-AzMonitorWorkspace","0","3000","The type of property 'ProvisioningState' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.Api20230403.IAzureMonitorWorkspaceResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Support.ProvisioningState]' to 'System.String'.","Change the type of property 'ProvisioningState' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Support.ProvisioningState]'." +"Az.Monitor","Get-AzMonitorWorkspace","Get-AzMonitorWorkspace","0","3000","The type of property 'PublicNetworkAccess' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.Api20230403.IAzureMonitorWorkspaceResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Support.PublicNetworkAccess]' to 'System.String'.","Change the type of property 'PublicNetworkAccess' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Support.PublicNetworkAccess]'." +"Az.Monitor","New-AzMonitorWorkspace","New-AzMonitorWorkspace","0","3000","The type of property 'PrivateEndpointConnection' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.Api20230403.IAzureMonitorWorkspaceResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.IPrivateEndpointConnection' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.IPrivateEndpointConnection]'.","Change the type of property 'PrivateEndpointConnection' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.IPrivateEndpointConnection'." +"Az.Monitor","New-AzMonitorWorkspace","New-AzMonitorWorkspace","0","3000","The type of property 'ProvisioningState' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.Api20230403.IAzureMonitorWorkspaceResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Support.ProvisioningState]' to 'System.String'.","Change the type of property 'ProvisioningState' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Support.ProvisioningState]'." +"Az.Monitor","New-AzMonitorWorkspace","New-AzMonitorWorkspace","0","3000","The type of property 'PublicNetworkAccess' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.Api20230403.IAzureMonitorWorkspaceResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Support.PublicNetworkAccess]' to 'System.String'.","Change the type of property 'PublicNetworkAccess' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Support.PublicNetworkAccess]'." +"Az.Monitor","New-AzMonitorWorkspace","New-AzMonitorWorkspace","0","1050","The parameter set '__AllParameterSets' for cmdlet 'New-AzMonitorWorkspace' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'New-AzMonitorWorkspace'." +"Az.Monitor","Update-AzMonitorWorkspace","Update-AzMonitorWorkspace","0","3000","The type of property 'PrivateEndpointConnection' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.Api20230403.IAzureMonitorWorkspaceResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.IPrivateEndpointConnection' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.IPrivateEndpointConnection]'.","Change the type of property 'PrivateEndpointConnection' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.IPrivateEndpointConnection'." +"Az.Monitor","Update-AzMonitorWorkspace","Update-AzMonitorWorkspace","0","3000","The type of property 'ProvisioningState' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.Api20230403.IAzureMonitorWorkspaceResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Support.ProvisioningState]' to 'System.String'.","Change the type of property 'ProvisioningState' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Support.ProvisioningState]'." +"Az.Monitor","Update-AzMonitorWorkspace","Update-AzMonitorWorkspace","0","3000","The type of property 'PublicNetworkAccess' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Models.Api20230403.IAzureMonitorWorkspaceResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Support.PublicNetworkAccess]' to 'System.String'.","Change the type of property 'PublicNetworkAccess' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.MonitorWorkspace.Support.PublicNetworkAccess]'." +"Az.Monitor","Update-AzMonitorWorkspace","Update-AzMonitorWorkspace","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Update-AzMonitorWorkspace' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Update-AzMonitorWorkspace'." +"Az.Monitor","Get-AzDiagnosticSetting","Get-AzDiagnosticSetting","0","3000","The type of property 'Log' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.IDiagnosticSettingsResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ILogSettings' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ILogSettings]'.","Change the type of property 'Log' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ILogSettings'." +"Az.Monitor","Get-AzDiagnosticSetting","Get-AzDiagnosticSetting","0","3000","The type of property 'Metric' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.IDiagnosticSettingsResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IMetricSettings' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IMetricSettings]'.","Change the type of property 'Metric' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IMetricSettings'." +"Az.Monitor","Get-AzDiagnosticSetting","Get-AzDiagnosticSetting","0","3000","The type of property 'SystemDataCreatedByType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.IDiagnosticSettingsResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Support.CreatedByType]' to 'System.String'.","Change the type of property 'SystemDataCreatedByType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Support.CreatedByType]'." +"Az.Monitor","Get-AzDiagnosticSetting","Get-AzDiagnosticSetting","0","3000","The type of property 'SystemDataLastModifiedByType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.IDiagnosticSettingsResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Support.CreatedByType]' to 'System.String'.","Change the type of property 'SystemDataLastModifiedByType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Support.CreatedByType]'." +"Az.Monitor","Get-AzDiagnosticSettingCategory","Get-AzDiagnosticSettingCategory","0","3000","The type of property 'CategoryType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.IDiagnosticSettingsCategoryResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Support.CategoryType]' to 'System.String'.","Change the type of property 'CategoryType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Support.CategoryType]'." +"Az.Monitor","Get-AzDiagnosticSettingCategory","Get-AzDiagnosticSettingCategory","0","3000","The type of property 'SystemDataCreatedByType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.IDiagnosticSettingsCategoryResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Support.CreatedByType]' to 'System.String'.","Change the type of property 'SystemDataCreatedByType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Support.CreatedByType]'." +"Az.Monitor","Get-AzDiagnosticSettingCategory","Get-AzDiagnosticSettingCategory","0","3000","The type of property 'SystemDataLastModifiedByType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.IDiagnosticSettingsCategoryResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Support.CreatedByType]' to 'System.String'.","Change the type of property 'SystemDataLastModifiedByType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Support.CreatedByType]'." +"Az.Monitor","Get-AzDiagnosticSettingCategory","Get-AzDiagnosticSettingCategory","0","3000","The type of property 'CategoryGroup' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.IDiagnosticSettingsCategoryResource' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'CategoryGroup' back to 'System.String[]'." +"Az.Monitor","Get-AzSubscriptionDiagnosticSetting","Get-AzSubscriptionDiagnosticSetting","0","3000","The type of property 'Log' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.ISubscriptionDiagnosticSettingsResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ISubscriptionLogSettings' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ISubscriptionLogSettings]'.","Change the type of property 'Log' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ISubscriptionLogSettings'." +"Az.Monitor","Get-AzSubscriptionDiagnosticSetting","Get-AzSubscriptionDiagnosticSetting","0","3000","The type of property 'SystemDataCreatedByType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.ISubscriptionDiagnosticSettingsResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Support.CreatedByType]' to 'System.String'.","Change the type of property 'SystemDataCreatedByType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Support.CreatedByType]'." +"Az.Monitor","Get-AzSubscriptionDiagnosticSetting","Get-AzSubscriptionDiagnosticSetting","0","3000","The type of property 'SystemDataLastModifiedByType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.ISubscriptionDiagnosticSettingsResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Support.CreatedByType]' to 'System.String'.","Change the type of property 'SystemDataLastModifiedByType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Support.CreatedByType]'." +"Az.Monitor","New-AzDiagnosticSetting","New-AzDiagnosticSetting","0","3000","The type of property 'Log' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.IDiagnosticSettingsResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ILogSettings' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ILogSettings]'.","Change the type of property 'Log' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ILogSettings'." +"Az.Monitor","New-AzDiagnosticSetting","New-AzDiagnosticSetting","0","3000","The type of property 'Metric' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.IDiagnosticSettingsResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IMetricSettings' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IMetricSettings]'.","Change the type of property 'Metric' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.IMetricSettings'." +"Az.Monitor","New-AzDiagnosticSetting","New-AzDiagnosticSetting","0","3000","The type of property 'SystemDataCreatedByType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.IDiagnosticSettingsResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Support.CreatedByType]' to 'System.String'.","Change the type of property 'SystemDataCreatedByType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Support.CreatedByType]'." +"Az.Monitor","New-AzDiagnosticSetting","New-AzDiagnosticSetting","0","3000","The type of property 'SystemDataLastModifiedByType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.IDiagnosticSettingsResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Support.CreatedByType]' to 'System.String'.","Change the type of property 'SystemDataLastModifiedByType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Support.CreatedByType]'." +"Az.Monitor","New-AzSubscriptionDiagnosticSetting","New-AzSubscriptionDiagnosticSetting","0","3000","The type of property 'Log' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.ISubscriptionDiagnosticSettingsResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ISubscriptionLogSettings' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ISubscriptionLogSettings]'.","Change the type of property 'Log' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.ISubscriptionLogSettings'." +"Az.Monitor","New-AzSubscriptionDiagnosticSetting","New-AzSubscriptionDiagnosticSetting","0","3000","The type of property 'SystemDataCreatedByType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.ISubscriptionDiagnosticSettingsResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Support.CreatedByType]' to 'System.String'.","Change the type of property 'SystemDataCreatedByType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Support.CreatedByType]'." +"Az.Monitor","New-AzSubscriptionDiagnosticSetting","New-AzSubscriptionDiagnosticSetting","0","3000","The type of property 'SystemDataLastModifiedByType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Models.Api20210501Preview.ISubscriptionDiagnosticSettingsResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Support.CreatedByType]' to 'System.String'.","Change the type of property 'SystemDataLastModifiedByType' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.DiagnosticSetting.Support.CreatedByType]'." +"Az.Monitor","Get-AzAutoscalePredictiveMetric","Get-AzAutoscalePredictiveMetric","0","3000","The type of property 'Data' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IPredictiveResponse' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IPredictiveValue' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IPredictiveValue]'.","Change the type of property 'Data' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IPredictiveValue'." +"Az.Monitor","Get-AzAutoscaleSetting","Get-AzAutoscaleSetting","0","3000","The type of property 'Notification' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleSettingResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleNotification' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleNotification]'.","Change the type of property 'Notification' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleNotification'." +"Az.Monitor","Get-AzAutoscaleSetting","Get-AzAutoscaleSetting","0","3000","The type of property 'Profile' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleSettingResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleProfile' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleProfile]'.","Change the type of property 'Profile' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleProfile'." +"Az.Monitor","Get-AzAutoscaleSetting","Get-AzAutoscaleSetting","0","3000","The type of property 'PredictiveAutoscalePolicyScaleMode' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleSettingResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.PredictiveAutoscalePolicyScaleMode]' to 'System.String'.","Change the type of property 'PredictiveAutoscalePolicyScaleMode' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.PredictiveAutoscalePolicyScaleMode]'." +"Az.Monitor","New-AzAutoscaleNotificationObject","New-AzAutoscaleNotificationObject","0","3000","The type of property 'Webhook' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.AutoscaleNotification' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IWebhookNotification' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IWebhookNotification]'.","Change the type of property 'Webhook' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IWebhookNotification'." +"Az.Monitor","New-AzAutoscaleNotificationObject","New-AzAutoscaleNotificationObject","0","3000","The type of property 'EmailCustomEmail' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.AutoscaleNotification' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'EmailCustomEmail' back to 'System.String[]'." +"Az.Monitor","New-AzAutoscaleProfileObject","New-AzAutoscaleProfileObject","0","3000","The type of property 'Rule' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.AutoscaleProfile' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IScaleRule' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IScaleRule]'.","Change the type of property 'Rule' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IScaleRule'." +"Az.Monitor","New-AzAutoscaleProfileObject","New-AzAutoscaleProfileObject","0","3000","The type of property 'ScheduleHour' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.AutoscaleProfile' has changed from 'System.Int32[]' to 'System.Collections.Generic.List`1[System.Int32]'.","Change the type of property 'ScheduleHour' back to 'System.Int32[]'." +"Az.Monitor","New-AzAutoscaleProfileObject","New-AzAutoscaleProfileObject","0","3000","The type of property 'ScheduleMinute' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.AutoscaleProfile' has changed from 'System.Int32[]' to 'System.Collections.Generic.List`1[System.Int32]'.","Change the type of property 'ScheduleMinute' back to 'System.Int32[]'." +"Az.Monitor","New-AzAutoscaleProfileObject","New-AzAutoscaleProfileObject","0","3000","The type of property 'RecurrenceFrequency' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.AutoscaleProfile' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.RecurrenceFrequency]' to 'System.String'.","Change the type of property 'RecurrenceFrequency' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.RecurrenceFrequency]'." +"Az.Monitor","New-AzAutoscaleProfileObject","New-AzAutoscaleProfileObject","0","3000","The type of property 'ScheduleDay' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.AutoscaleProfile' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'ScheduleDay' back to 'System.String[]'." +"Az.Monitor","New-AzAutoscaleProfileObject","New-AzAutoscaleProfileObject","0","3000","The type of property 'MetricTriggerDimension' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IScaleRule' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IScaleRuleMetricDimension' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IScaleRuleMetricDimension]'.","Change the type of property 'MetricTriggerDimension' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IScaleRuleMetricDimension'." +"Az.Monitor","New-AzAutoscaleProfileObject","New-AzAutoscaleProfileObject","0","3000","The type of property 'MetricTriggerOperator' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IScaleRule' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ComparisonOperationType' to 'System.String'.","Change the type of property 'MetricTriggerOperator' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ComparisonOperationType'." +"Az.Monitor","New-AzAutoscaleProfileObject","New-AzAutoscaleProfileObject","0","3000","The type of property 'MetricTriggerStatistic' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IScaleRule' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.MetricStatisticType' to 'System.String'.","Change the type of property 'MetricTriggerStatistic' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.MetricStatisticType'." +"Az.Monitor","New-AzAutoscaleProfileObject","New-AzAutoscaleProfileObject","0","3000","The type of property 'ScaleActionDirection' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IScaleRule' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleDirection' to 'System.String'.","Change the type of property 'ScaleActionDirection' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleDirection'." +"Az.Monitor","New-AzAutoscaleProfileObject","New-AzAutoscaleProfileObject","0","3000","The type of property 'ScaleActionType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IScaleRule' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleType' to 'System.String'.","Change the type of property 'ScaleActionType' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleType'." +"Az.Monitor","New-AzAutoscaleProfileObject","New-AzAutoscaleProfileObject","0","3000","The type of property 'MetricTriggerTimeAggregation' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IScaleRule' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.TimeAggregationType' to 'System.String'.","Change the type of property 'MetricTriggerTimeAggregation' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.TimeAggregationType'." +"Az.Monitor","New-AzAutoscaleProfileObject","New-AzAutoscaleProfileObject","0","2020","The cmdlet 'New-AzAutoscaleProfileObject' no longer supports the type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.RecurrenceFrequency' for parameter 'RecurrenceFrequency'.","Change the type for parameter 'RecurrenceFrequency' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.RecurrenceFrequency'." +"Az.Monitor","New-AzAutoscaleScaleRuleMetricDimensionObject","New-AzAutoscaleScaleRuleMetricDimensionObject","0","3000","The type of property 'Operator' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.ScaleRuleMetricDimension' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleRuleMetricDimensionOperationType' to 'System.String'.","Change the type of property 'Operator' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleRuleMetricDimensionOperationType'." +"Az.Monitor","New-AzAutoscaleScaleRuleMetricDimensionObject","New-AzAutoscaleScaleRuleMetricDimensionObject","0","3000","The type of property 'Value' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.ScaleRuleMetricDimension' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'Value' back to 'System.String[]'." +"Az.Monitor","New-AzAutoscaleScaleRuleMetricDimensionObject","New-AzAutoscaleScaleRuleMetricDimensionObject","0","2020","The cmdlet 'New-AzAutoscaleScaleRuleMetricDimensionObject' no longer supports the type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleRuleMetricDimensionOperationType' for parameter 'Operator'.","Change the type for parameter 'Operator' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleRuleMetricDimensionOperationType'." +"Az.Monitor","New-AzAutoscaleScaleRuleObject","New-AzAutoscaleScaleRuleObject","0","3000","The type of property 'MetricTriggerDimension' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.ScaleRule' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IScaleRuleMetricDimension' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IScaleRuleMetricDimension]'.","Change the type of property 'MetricTriggerDimension' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IScaleRuleMetricDimension'." +"Az.Monitor","New-AzAutoscaleScaleRuleObject","New-AzAutoscaleScaleRuleObject","0","3000","The type of property 'MetricTriggerOperator' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.ScaleRule' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ComparisonOperationType' to 'System.String'.","Change the type of property 'MetricTriggerOperator' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ComparisonOperationType'." +"Az.Monitor","New-AzAutoscaleScaleRuleObject","New-AzAutoscaleScaleRuleObject","0","3000","The type of property 'MetricTriggerStatistic' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.ScaleRule' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.MetricStatisticType' to 'System.String'.","Change the type of property 'MetricTriggerStatistic' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.MetricStatisticType'." +"Az.Monitor","New-AzAutoscaleScaleRuleObject","New-AzAutoscaleScaleRuleObject","0","3000","The type of property 'ScaleActionDirection' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.ScaleRule' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleDirection' to 'System.String'.","Change the type of property 'ScaleActionDirection' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleDirection'." +"Az.Monitor","New-AzAutoscaleScaleRuleObject","New-AzAutoscaleScaleRuleObject","0","3000","The type of property 'ScaleActionType' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.ScaleRule' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleType' to 'System.String'.","Change the type of property 'ScaleActionType' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleType'." +"Az.Monitor","New-AzAutoscaleScaleRuleObject","New-AzAutoscaleScaleRuleObject","0","3000","The type of property 'MetricTriggerTimeAggregation' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.ScaleRule' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.TimeAggregationType' to 'System.String'.","Change the type of property 'MetricTriggerTimeAggregation' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.TimeAggregationType'." +"Az.Monitor","New-AzAutoscaleScaleRuleObject","New-AzAutoscaleScaleRuleObject","0","2020","The cmdlet 'New-AzAutoscaleScaleRuleObject' no longer supports the type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ComparisonOperationType' for parameter 'MetricTriggerOperator'.","Change the type for parameter 'MetricTriggerOperator' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ComparisonOperationType'." +"Az.Monitor","New-AzAutoscaleScaleRuleObject","New-AzAutoscaleScaleRuleObject","0","2020","The cmdlet 'New-AzAutoscaleScaleRuleObject' no longer supports the type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.MetricStatisticType' for parameter 'MetricTriggerStatistic'.","Change the type for parameter 'MetricTriggerStatistic' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.MetricStatisticType'." +"Az.Monitor","New-AzAutoscaleScaleRuleObject","New-AzAutoscaleScaleRuleObject","0","2020","The cmdlet 'New-AzAutoscaleScaleRuleObject' no longer supports the type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.TimeAggregationType' for parameter 'MetricTriggerTimeAggregation'.","Change the type for parameter 'MetricTriggerTimeAggregation' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.TimeAggregationType'." +"Az.Monitor","New-AzAutoscaleScaleRuleObject","New-AzAutoscaleScaleRuleObject","0","2020","The cmdlet 'New-AzAutoscaleScaleRuleObject' no longer supports the type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleDirection' for parameter 'ScaleActionDirection'.","Change the type for parameter 'ScaleActionDirection' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleDirection'." +"Az.Monitor","New-AzAutoscaleScaleRuleObject","New-AzAutoscaleScaleRuleObject","0","2020","The cmdlet 'New-AzAutoscaleScaleRuleObject' no longer supports the type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleType' for parameter 'ScaleActionType'.","Change the type for parameter 'ScaleActionType' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleType'." +"Az.Monitor","New-AzAutoscaleScaleRuleObject","New-AzAutoscaleScaleRuleObject","0","3000","The type of property 'Operator' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IScaleRuleMetricDimension' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleRuleMetricDimensionOperationType' to 'System.String'.","Change the type of property 'Operator' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.ScaleRuleMetricDimensionOperationType'." +"Az.Monitor","New-AzAutoscaleScaleRuleObject","New-AzAutoscaleScaleRuleObject","0","3000","The type of property 'Value' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IScaleRuleMetricDimension' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'Value' back to 'System.String[]'." +"Az.Monitor","New-AzAutoscaleSetting","New-AzAutoscaleSetting","0","3000","The type of property 'Notification' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleSettingResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleNotification' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleNotification]'.","Change the type of property 'Notification' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleNotification'." +"Az.Monitor","New-AzAutoscaleSetting","New-AzAutoscaleSetting","0","3000","The type of property 'Profile' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleSettingResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleProfile' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleProfile]'.","Change the type of property 'Profile' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleProfile'." +"Az.Monitor","New-AzAutoscaleSetting","New-AzAutoscaleSetting","0","3000","The type of property 'PredictiveAutoscalePolicyScaleMode' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleSettingResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.PredictiveAutoscalePolicyScaleMode]' to 'System.String'.","Change the type of property 'PredictiveAutoscalePolicyScaleMode' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.PredictiveAutoscalePolicyScaleMode]'." +"Az.Monitor","New-AzAutoscaleSetting","New-AzAutoscaleSetting","0","1060","The parameter set 'CreateViaIdentity' for cmdlet 'New-AzAutoscaleSetting' is no longer the default parameter set.","Change the default parameter for cmdlet 'New-AzAutoscaleSetting' back to 'CreateViaIdentity'." +"Az.Monitor","New-AzAutoscaleSetting","New-AzAutoscaleSetting","0","3000","The type of property 'Rule' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleProfile' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IScaleRule' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IScaleRule]'.","Change the type of property 'Rule' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IScaleRule'." +"Az.Monitor","New-AzAutoscaleSetting","New-AzAutoscaleSetting","0","3000","The type of property 'ScheduleHour' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleProfile' has changed from 'System.Int32[]' to 'System.Collections.Generic.List`1[System.Int32]'.","Change the type of property 'ScheduleHour' back to 'System.Int32[]'." +"Az.Monitor","New-AzAutoscaleSetting","New-AzAutoscaleSetting","0","3000","The type of property 'ScheduleMinute' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleProfile' has changed from 'System.Int32[]' to 'System.Collections.Generic.List`1[System.Int32]'.","Change the type of property 'ScheduleMinute' back to 'System.Int32[]'." +"Az.Monitor","New-AzAutoscaleSetting","New-AzAutoscaleSetting","0","3000","The type of property 'RecurrenceFrequency' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleProfile' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.RecurrenceFrequency]' to 'System.String'.","Change the type of property 'RecurrenceFrequency' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.RecurrenceFrequency]'." +"Az.Monitor","New-AzAutoscaleSetting","New-AzAutoscaleSetting","0","3000","The type of property 'ScheduleDay' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleProfile' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'ScheduleDay' back to 'System.String[]'." +"Az.Monitor","New-AzAutoscaleSetting","New-AzAutoscaleSetting","0","3000","The type of property 'Webhook' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleNotification' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IWebhookNotification' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IWebhookNotification]'.","Change the type of property 'Webhook' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IWebhookNotification'." +"Az.Monitor","New-AzAutoscaleSetting","New-AzAutoscaleSetting","0","3000","The type of property 'EmailCustomEmail' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleNotification' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'EmailCustomEmail' back to 'System.String[]'." +"Az.Monitor","New-AzAutoscaleSetting","New-AzAutoscaleSetting","0","2020","The cmdlet 'New-AzAutoscaleSetting' no longer supports the type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.PredictiveAutoscalePolicyScaleMode' for parameter 'PredictiveAutoscalePolicyScaleMode'.","Change the type for parameter 'PredictiveAutoscalePolicyScaleMode' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.PredictiveAutoscalePolicyScaleMode'." +"Az.Monitor","New-AzAutoscaleSetting","New-AzAutoscaleSetting","0","2000","The cmdlet 'New-AzAutoscaleSetting' no longer supports the parameter 'Parameter' and no alias was found for the original parameter name.","Add the parameter 'Parameter' back to the cmdlet 'New-AzAutoscaleSetting', or add an alias to the original parameter name." +"Az.Monitor","New-AzAutoscaleSetting","New-AzAutoscaleSetting","0","1050","The parameter set 'CreateViaIdentity' for cmdlet 'New-AzAutoscaleSetting' has been removed.","Add parameter set 'CreateViaIdentity' back to cmdlet 'New-AzAutoscaleSetting'." +"Az.Monitor","New-AzAutoscaleSetting","New-AzAutoscaleSetting","0","1050","The parameter set '__AllParameterSets' for cmdlet 'New-AzAutoscaleSetting' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'New-AzAutoscaleSetting'." +"Az.Monitor","Update-AzAutoscaleSetting","Update-AzAutoscaleSetting","0","3000","The type of property 'Notification' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleSettingResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleNotification' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleNotification]'.","Change the type of property 'Notification' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleNotification'." +"Az.Monitor","Update-AzAutoscaleSetting","Update-AzAutoscaleSetting","0","3000","The type of property 'Profile' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleSettingResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleProfile' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleProfile]'.","Change the type of property 'Profile' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.IAutoscaleProfile'." +"Az.Monitor","Update-AzAutoscaleSetting","Update-AzAutoscaleSetting","0","3000","The type of property 'PredictiveAutoscalePolicyScaleMode' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Models.Api20221001.IAutoscaleSettingResource' has changed from 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.PredictiveAutoscalePolicyScaleMode]' to 'System.String'.","Change the type of property 'PredictiveAutoscalePolicyScaleMode' back to 'System.Nullable`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.PredictiveAutoscalePolicyScaleMode]'." +"Az.Monitor","Update-AzAutoscaleSetting","Update-AzAutoscaleSetting","0","2020","The cmdlet 'Update-AzAutoscaleSetting' no longer supports the type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.PredictiveAutoscalePolicyScaleMode' for parameter 'PredictiveAutoscalePolicyScaleMode'.","Change the type for parameter 'PredictiveAutoscalePolicyScaleMode' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.Autoscale.Support.PredictiveAutoscalePolicyScaleMode'." "Az.Monitor","Get-AzActivityLogAlert","Get-AzActivityLogAlert","0","3000","The type of property 'ActionGroup' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ActivityLogAlert.Models.Api20201001.IActivityLogAlertResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ActivityLogAlert.Models.IActionGroup' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ActivityLogAlert.Models.IActionGroup]'.","Change the type of property 'ActionGroup' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ActivityLogAlert.Models.IActionGroup'." "Az.Monitor","Get-AzActivityLogAlert","Get-AzActivityLogAlert","0","3000","The type of property 'ConditionAllOf' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ActivityLogAlert.Models.Api20201001.IActivityLogAlertResource' has changed from 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ActivityLogAlert.Models.IAlertRuleAnyOfOrLeafCondition' to 'System.Collections.Generic.List`1[Microsoft.Azure.PowerShell.Cmdlets.Monitor.ActivityLogAlert.Models.IAlertRuleAnyOfOrLeafCondition]'.","Change the type of property 'ConditionAllOf' back to 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ActivityLogAlert.Models.IAlertRuleAnyOfOrLeafCondition'." "Az.Monitor","Get-AzActivityLogAlert","Get-AzActivityLogAlert","0","3000","The type of property 'Scope' of type 'Microsoft.Azure.PowerShell.Cmdlets.Monitor.ActivityLogAlert.Models.Api20201001.IActivityLogAlertResource' has changed from 'System.String[]' to 'System.Collections.Generic.List`1[System.String]'.","Change the type of property 'Scope' back to 'System.String[]'."