From 185659f356eb12c0c001ce5db9fcf455f678cefe Mon Sep 17 00:00:00 2001 From: Flynn Date: Wed, 15 Jun 2022 12:57:26 +0800 Subject: [PATCH] format the help markdown file of Az.ServiceLinker --- .../help/Get-AzServiceLinkerConfigurationForContainerApp.md | 2 +- .../help/Get-AzServiceLinkerConfigurationForSpringCloud.md | 2 +- .../help/Get-AzServiceLinkerConfigurationForWebApp.md | 2 +- .../help/Get-AzServiceLinkerForContainerApp.md | 6 +++--- src/ServiceLinker/help/Get-AzServiceLinkerForSpringCloud.md | 4 ++-- src/ServiceLinker/help/Get-AzServiceLinkerForWebApp.md | 4 ++-- .../help/Test-AzServiceLinkerForContainerApp.md | 2 +- .../help/Test-AzServiceLinkerForSpringCloud.md | 2 +- src/ServiceLinker/help/Test-AzServiceLinkerForWebApp.md | 2 +- 9 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForContainerApp.md b/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForContainerApp.md index 8e9f877fb0b6..c090ee12c581 100644 --- a/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForContainerApp.md +++ b/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForContainerApp.md @@ -25,7 +25,7 @@ list source configurations for a linker in container app. ### Example 1: Get container app's linker configuration list ```powershell -Get-AzServiceLinkerConfigurationForContainerApp -ContainerApp servicelinker-containerapp -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker |fl +Get-AzServiceLinkerConfigurationForContainerApp -ContainerApp servicelinker-containerapp -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker | Format-List ``` ```output diff --git a/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForSpringCloud.md b/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForSpringCloud.md index 03c3299c680d..de83cd0c0542 100644 --- a/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForSpringCloud.md +++ b/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForSpringCloud.md @@ -25,7 +25,7 @@ list source configurations for a linker in spring cloud. ### Example 1: Get spring cloud's linker configuration list ```powershell -Get-AzServiceLinkerConfigurationForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker |fl +Get-AzServiceLinkerConfigurationForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker | Format-List ``` ```output diff --git a/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForWebApp.md b/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForWebApp.md index 542aa15d2f69..64f40370ad11 100644 --- a/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForWebApp.md +++ b/src/ServiceLinker/help/Get-AzServiceLinkerConfigurationForWebApp.md @@ -25,7 +25,7 @@ list source configurations for a linker in webapp. ### Example 1: Get webapp's linker configuration list ```powershell -Get-AzServiceLinkerConfigurationForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker |fl +Get-AzServiceLinkerConfigurationForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -LinkerName postgresql_linker | Format-List ``` ```output diff --git a/src/ServiceLinker/help/Get-AzServiceLinkerForContainerApp.md b/src/ServiceLinker/help/Get-AzServiceLinkerForContainerApp.md index 8458d3c8f4ad..3c043147bf7e 100644 --- a/src/ServiceLinker/help/Get-AzServiceLinkerForContainerApp.md +++ b/src/ServiceLinker/help/Get-AzServiceLinkerForContainerApp.md @@ -37,7 +37,7 @@ Returns Linker resource for a given name in container app. ### Example 1: List all linkers in a container app ```powershell -Get-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group -Scope 'simple-hello-world-container' +Get-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group ``` ```output @@ -53,7 +53,7 @@ List all linkers in the container app ### Example 2: Get linker by name ```powershell -Get-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Get-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List ``` ```output @@ -89,7 +89,7 @@ $identity = @{ ResourceUri = '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.App/containerApps/servicelinker-app' LinkerName = 'postgresql_connection'} -$identity | Get-AzServiceLinkerForContainerApp |fl +$identity | Get-AzServiceLinkerForContainerApp | Format-List ``` ```output diff --git a/src/ServiceLinker/help/Get-AzServiceLinkerForSpringCloud.md b/src/ServiceLinker/help/Get-AzServiceLinkerForSpringCloud.md index a2c7fbeab5e6..80534ad278eb 100644 --- a/src/ServiceLinker/help/Get-AzServiceLinkerForSpringCloud.md +++ b/src/ServiceLinker/help/Get-AzServiceLinkerForSpringCloud.md @@ -55,7 +55,7 @@ List all linkers in a spring cloud app's deployment ### Example 2: Get linker by name ```powershell -Get-AzServiceLinkerForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -DeploymentName "default" -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Get-AzServiceLinkerForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -DeploymentName "default" -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List ``` ```output @@ -91,7 +91,7 @@ $identity = @{ ResourceUri = '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.AppPlatform/Spring/servicelinker-springcloud/apps/appconfiguration/deployments/default' LinkerName = 'postgresql_connection'} -$identity | Get-AzServiceLinkerForSpringCloud |fl +$identity | Get-AzServiceLinkerForSpringCloud | Format-List ``` ```output diff --git a/src/ServiceLinker/help/Get-AzServiceLinkerForWebApp.md b/src/ServiceLinker/help/Get-AzServiceLinkerForWebApp.md index c06a7229c0fb..3ceb9ebacd75 100644 --- a/src/ServiceLinker/help/Get-AzServiceLinkerForWebApp.md +++ b/src/ServiceLinker/help/Get-AzServiceLinkerForWebApp.md @@ -53,7 +53,7 @@ List all linkers in the webapp ### Example 2: Get linker by name ```powershell -Get-AzServiceLinkerForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Get-AzServiceLinkerForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List ``` ```output @@ -89,7 +89,7 @@ $identity = @{ ResourceUri = '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/servicelinker-test-linux-group/providers/Microsoft.Web/sites/servicelinker-webapp' LinkerName = 'postgresql_connection'} -$identity | Get-AzServiceLinkerForWebApp |fl +$identity | Get-AzServiceLinkerForWebApp | Format-List ``` ```output diff --git a/src/ServiceLinker/help/Test-AzServiceLinkerForContainerApp.md b/src/ServiceLinker/help/Test-AzServiceLinkerForContainerApp.md index 3f58a912fd59..c68eb2cbbc9a 100644 --- a/src/ServiceLinker/help/Test-AzServiceLinkerForContainerApp.md +++ b/src/ServiceLinker/help/Test-AzServiceLinkerForContainerApp.md @@ -32,7 +32,7 @@ Validate a link in container app. ### Example 1: Test Linker ```powershell -Test-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Test-AzServiceLinkerForContainerApp -ContainerApp servicelinker-app -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List ``` ```output diff --git a/src/ServiceLinker/help/Test-AzServiceLinkerForSpringCloud.md b/src/ServiceLinker/help/Test-AzServiceLinkerForSpringCloud.md index ec2fd7d12244..cd6067f602db 100644 --- a/src/ServiceLinker/help/Test-AzServiceLinkerForSpringCloud.md +++ b/src/ServiceLinker/help/Test-AzServiceLinkerForSpringCloud.md @@ -32,7 +32,7 @@ Validate a link in spring cloud. ### Example 1: Test Linker ```powershell -Test-AzServiceLinkerForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -DeploymentName "default" -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Test-AzServiceLinkerForSpringCloud -ServiceName servicelinker-springcloud -AppName appconfiguration -DeploymentName "default" -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List ``` ```output diff --git a/src/ServiceLinker/help/Test-AzServiceLinkerForWebApp.md b/src/ServiceLinker/help/Test-AzServiceLinkerForWebApp.md index 12298a2159f5..52d4b28d2daf 100644 --- a/src/ServiceLinker/help/Test-AzServiceLinkerForWebApp.md +++ b/src/ServiceLinker/help/Test-AzServiceLinkerForWebApp.md @@ -32,7 +32,7 @@ Validate a link in webapp. ### Example 1: Test Linker ```powershell -Test-AzServiceLinkerForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -Name postgresql_connection | fl +Test-AzServiceLinkerForWebApp -WebApp servicelinker-webapp -ResourceGroupName servicelinker-test-group -Name postgresql_connection | Format-List ``` ```output