Skip to content

Commit c891037

Browse files
format the help markdown file of Az.ApplicationInsights in generation (#18793)
1 parent de495a5 commit c891037

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/ApplicationInsights/docs/Remove-AzApplicationInsightsContinuousExport.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Delete a Continuous Export configuration of an Application Insights component.
3131

3232
### Example 1: Remove a continuous export configuration in an application insights resource
3333
```powershell
34-
Remove-AzApplicationInsightsContinuousExport -ResourceGroupName "testgroup" -Name "test" -ExportId "uGOoki0jQsyEs3IdQ83Q4QsNr4=" -PassThru
34+
Remove-AzApplicationInsightsContinuousExport -ResourceGroupName "testgroup" -Name "test" -ExportId "uGOoki0jQsyEs3IdQ83Q4QsNr4="
3535
```
3636

3737
Remove a continuous export configuration in an application insights resource

src/ApplicationInsights/docs/Set-AzApplicationInsightsContinuousExport.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ Create a Continuous Export configuration of an Application Insights component.
2929
```powershell
3030
$sastoken = New-AzStorageContainerSASToken -Name testcontainer -Context $context -ExpiryTime (Get-Date).AddYears(50) -Permission w
3131
$sasuri = "https://teststorageaccount.blob.core.windows.net/testcontainer" + $sastoken
32-
Set-AzApplicationInsightsContinuousExport -ResourceGroupName "testgroup" -Name "test"
33-
-DocumentType "Request","Trace" -ExportId "jlTFEiBg1rkDXOCIeJQ2mB2TxZg=" -StorageAccountId "/subscriptions/50359d91-7b9d-4823-85af-eb298a61ba96/resourceGroups/testgroup/providers/Microsoft.Storage/storageAccounts/teststorageaccount" -StorageLocation sourcecentralus
32+
Set-AzApplicationInsightsContinuousExport -ResourceGroupName "testgroup" -Name "test" `
33+
-DocumentType "Request","Trace" -ExportId "jlTFEiBg1rkDXOCIeJQ2mB2TxZg=" -StorageAccountId "/subscriptions/50359d91-7b9d-4823-85af-eb298a61ba96/resourceGroups/testgroup/providers/Microsoft.Storage/storageAccounts/teststorageaccount" -StorageLocation sourcecentralus `
3434
-StorageSASUri $sasuri
3535
```
3636

src/ApplicationInsights/examples/Remove-AzApplicationInsightsContinuousExport.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### Example 1: Remove a continuous export configuration in an application insights resource
22
```powershell
3-
Remove-AzApplicationInsightsContinuousExport -ResourceGroupName "testgroup" -Name "test" -ExportId "uGOoki0jQsyEs3IdQ83Q4QsNr4=" -PassThru
3+
Remove-AzApplicationInsightsContinuousExport -ResourceGroupName "testgroup" -Name "test" -ExportId "uGOoki0jQsyEs3IdQ83Q4QsNr4="
44
```
55

66
Remove a continuous export configuration in an application insights resource

src/ApplicationInsights/examples/Set-AzApplicationInsightsContinuousExport.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
```powershell
33
$sastoken = New-AzStorageContainerSASToken -Name testcontainer -Context $context -ExpiryTime (Get-Date).AddYears(50) -Permission w
44
$sasuri = "https://teststorageaccount.blob.core.windows.net/testcontainer" + $sastoken
5-
Set-AzApplicationInsightsContinuousExport -ResourceGroupName "testgroup" -Name "test"
6-
-DocumentType "Request","Trace" -ExportId "jlTFEiBg1rkDXOCIeJQ2mB2TxZg=" -StorageAccountId "/subscriptions/50359d91-7b9d-4823-85af-eb298a61ba96/resourceGroups/testgroup/providers/Microsoft.Storage/storageAccounts/teststorageaccount" -StorageLocation sourcecentralus
5+
Set-AzApplicationInsightsContinuousExport -ResourceGroupName "testgroup" -Name "test" `
6+
-DocumentType "Request","Trace" -ExportId "jlTFEiBg1rkDXOCIeJQ2mB2TxZg=" -StorageAccountId "/subscriptions/50359d91-7b9d-4823-85af-eb298a61ba96/resourceGroups/testgroup/providers/Microsoft.Storage/storageAccounts/teststorageaccount" -StorageLocation sourcecentralus `
77
-StorageSASUri $sasuri
88
```
99

0 commit comments

Comments
 (0)