Skip to content

Commit

Permalink
Update URL of docs from docs.microsoft.com to learn.microsoft.com. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasYao93 authored Nov 28, 2022
1 parent 67a97bc commit 0fee0a5
Show file tree
Hide file tree
Showing 162 changed files with 188 additions and 188 deletions.
2 changes: 1 addition & 1 deletion src/ADDomainServices/Az.ADDomainServices.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
}

if(-not $accountsModule) {
Write-Error "`nThis module requires $accountsName version 2.7.5 or greater. For installation instructions, please see: https://docs.microsoft.com/powershell/azure/install-az-ps" -ErrorAction Stop
Write-Error "`nThis module requires $accountsName version 2.7.5 or greater. For installation instructions, please see: https://learn.microsoft.com/powershell/azure/install-az-ps" -ErrorAction Stop
} elseif (($accountsModule.Version -lt [System.Version]'2.7.5') -and (-not $localAccounts)) {
Write-Error "`nThis module requires $accountsName version 2.7.5 or greater. An earlier version of Az.Accounts is imported in the current PowerShell session. If you are running test, please try to add the switch '-RegenerateSupportModule' when executing 'test-module.ps1'. Otherwise please open a new PowerShell session and import this module again.`nAdditionally, this error could indicate that multiple incompatible versions of Azure PowerShell modules are installed on your system. For troubleshooting information, please see: https://aka.ms/azps-version-error" -ErrorAction Stop
}
Expand Down
2 changes: 1 addition & 1 deletion src/ADDomainServices/create-model-cmdlets.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ Create an in-memory object for ${ObjectType}.
.Outputs
${ObjectTypeWithNamespace}
.Link
https://docs.microsoft.com/powershell/module/az.${ModuleName}/new-Az${ModulePrefix}${ObjectType}Object
https://learn.microsoft.com/powershell/module/az.${ModuleName}/new-Az${ModulePrefix}${ObjectType}Object
#>
function New-Az${ModulePrefix}${ObjectType}Object {
[OutputType('${ObjectTypeWithNamespace}')]
Expand Down
2 changes: 1 addition & 1 deletion src/ADDomainServices/custom/New-AzADDomainService.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ REPLICASET <IReplicaSet[]>: List of ReplicaSets
[Location <String>]: Virtual network location
[SubnetId <String>]: The name of the virtual network that Domain Services will be deployed on. The id of the subnet that Domain Services will be deployed on. /virtualNetwork/vnetName/subnets/subnetName.
.Link
https://docs.microsoft.com/powershell/module/az.addomainservices/new-azaddomainservice
https://learn.microsoft.com/powershell/module/az.addomainservices/new-azaddomainservice
#>
function New-AzADDomainService {
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.IDomainService])]
Expand Down
2 changes: 1 addition & 1 deletion src/ADDomainServices/custom/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ These provide functionality to our HTTP pipeline and other useful features. In s
### Attributes
For processing the cmdlets, we've created some additional attributes:
- `Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.DescriptionAttribute`
- Used in C# cmdlets to provide a high-level description of the cmdlet. This is propagated to reference documentation via [help comments](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) in the exported scripts.
- Used in C# cmdlets to provide a high-level description of the cmdlet. This is propagated to reference documentation via [help comments](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_comment_based_help) in the exported scripts.
- `Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.DoNotExportAttribute`
- Used in C# and script cmdlets to suppress creating an exported cmdlet at build-time. These cmdlets will *not be exposed* by `Az.ADDomainServices`.
- `Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.InternalExportAttribute`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Create an in-memory object for ForestTrust.
.Outputs
Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.ForestTrust
.Link
https://docs.microsoft.com/powershell/module/az.ADDomainService/new-AzADDomainServiceForestTrustObject
https://learn.microsoft.com/powershell/module/az.ADDomainService/new-AzADDomainServiceForestTrustObject
#>
function New-AzADDomainServiceForestTrustObject {
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.ForestTrust')]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Create an in-memory object for ReplicaSet.
.Outputs
Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.ReplicaSet
.Link
https://docs.microsoft.com/powershell/module/az.ADDomainService/new-AzADDomainServiceReplicaSetObject
https://learn.microsoft.com/powershell/module/az.ADDomainService/new-AzADDomainServiceReplicaSetObject
#>
function New-AzADDomainServiceReplicaSetObject {
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.ReplicaSet')]
Expand Down
2 changes: 1 addition & 1 deletion src/ADDomainServices/exports/Get-AzADDomainService.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ INPUTOBJECT <IAdDomainServicesIdentity>: Identity Parameter
[ResourceGroupName <String>]: The name of the resource group within the user's subscription. The name is case insensitive.
[SubscriptionId <String>]: Gets subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
.Link
https://docs.microsoft.com/powershell/module/az.addomainservices/get-azaddomainservice
https://learn.microsoft.com/powershell/module/az.addomainservices/get-azaddomainservice
#>
function Get-AzADDomainService {
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.IDomainService])]
Expand Down
2 changes: 1 addition & 1 deletion src/ADDomainServices/exports/New-AzADDomainService.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ REPLICASET <IReplicaSet[]>: List of ReplicaSets
[Location <String>]: Virtual network location
[SubnetId <String>]: The name of the virtual network that Domain Services will be deployed on. The id of the subnet that Domain Services will be deployed on. /virtualNetwork/vnetName/subnets/subnetName.
.Link
https://docs.microsoft.com/powershell/module/az.addomainservices/new-azaddomainservice
https://learn.microsoft.com/powershell/module/az.addomainservices/new-azaddomainservice
#>
function New-AzADDomainService {
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.IDomainService])]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ New-AzADDomainServiceForestTrustObject -FriendlyName FriendlyNameTest
.Outputs
Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.ForestTrust
.Link
https://docs.microsoft.com/powershell/module/az.ADDomainService/new-AzADDomainServiceForestTrustObject
https://learn.microsoft.com/powershell/module/az.ADDomainService/new-AzADDomainServiceForestTrustObject
#>
function New-AzADDomainServiceForestTrustObject {
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.ForestTrust])]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ New-AzADDomainServiceReplicaSetObject -Location westus -SubnetId /subscriptions/
.Outputs
Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.ReplicaSet
.Link
https://docs.microsoft.com/powershell/module/az.ADDomainService/new-AzADDomainServiceReplicaSetObject
https://learn.microsoft.com/powershell/module/az.ADDomainService/new-AzADDomainServiceReplicaSetObject
#>
function New-AzADDomainServiceReplicaSetObject {
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.ReplicaSet])]
Expand Down
12 changes: 6 additions & 6 deletions src/ADDomainServices/exports/ProxyCmdletDefinitions.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ INPUTOBJECT <IAdDomainServicesIdentity>: Identity Parameter
[ResourceGroupName <String>]: The name of the resource group within the user's subscription. The name is case insensitive.
[SubscriptionId <String>]: Gets subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
.Link
https://docs.microsoft.com/powershell/module/az.addomainservices/get-azaddomainservice
https://learn.microsoft.com/powershell/module/az.addomainservices/get-azaddomainservice
#>
function Get-AzADDomainService {
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.IDomainService])]
Expand Down Expand Up @@ -236,7 +236,7 @@ INPUTOBJECT <IAdDomainServicesIdentity>: Identity Parameter
[ResourceGroupName <String>]: The name of the resource group within the user's subscription. The name is case insensitive.
[SubscriptionId <String>]: Gets subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
.Link
https://docs.microsoft.com/powershell/module/az.addomainservices/remove-azaddomainservice
https://learn.microsoft.com/powershell/module/az.addomainservices/remove-azaddomainservice
#>
function Remove-AzADDomainService {
[OutputType([System.Boolean])]
Expand Down Expand Up @@ -454,7 +454,7 @@ REPLICASET <IReplicaSet[]>: List of ReplicaSets
[Location <String>]: Virtual network location
[SubnetId <String>]: The name of the virtual network that Domain Services will be deployed on. The id of the subnet that Domain Services will be deployed on. /virtualNetwork/vnetName/subnets/subnetName.
.Link
https://docs.microsoft.com/powershell/module/az.addomainservices/update-azaddomainservice
https://learn.microsoft.com/powershell/module/az.addomainservices/update-azaddomainservice
#>
function Update-AzADDomainService {
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.IDomainService])]
Expand Down Expand Up @@ -815,7 +815,7 @@ REPLICASET <IReplicaSet[]>: List of ReplicaSets
[Location <String>]: Virtual network location
[SubnetId <String>]: The name of the virtual network that Domain Services will be deployed on. The id of the subnet that Domain Services will be deployed on. /virtualNetwork/vnetName/subnets/subnetName.
.Link
https://docs.microsoft.com/powershell/module/az.addomainservices/new-azaddomainservice
https://learn.microsoft.com/powershell/module/az.addomainservices/new-azaddomainservice
#>
function New-AzADDomainService {
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.IDomainService])]
Expand Down Expand Up @@ -1146,7 +1146,7 @@ New-AzADDomainServiceForestTrustObject -FriendlyName FriendlyNameTest
.Outputs
Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.ForestTrust
.Link
https://docs.microsoft.com/powershell/module/az.ADDomainService/new-AzADDomainServiceForestTrustObject
https://learn.microsoft.com/powershell/module/az.ADDomainService/new-AzADDomainServiceForestTrustObject
#>
function New-AzADDomainServiceForestTrustObject {
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.ForestTrust])]
Expand Down Expand Up @@ -1268,7 +1268,7 @@ New-AzADDomainServiceReplicaSetObject -Location westus -SubnetId /subscriptions/
.Outputs
Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.ReplicaSet
.Link
https://docs.microsoft.com/powershell/module/az.ADDomainService/new-AzADDomainServiceReplicaSetObject
https://learn.microsoft.com/powershell/module/az.ADDomainService/new-AzADDomainServiceReplicaSetObject
#>
function New-AzADDomainServiceReplicaSetObject {
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.ReplicaSet])]
Expand Down
2 changes: 1 addition & 1 deletion src/ADDomainServices/exports/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Exports
This directory contains the cmdlets *exported by* `Az.ADDomainServices`. No other cmdlets in this repository are directly exported. What that means is the `Az.ADDomainServices` module will run [Export-ModuleMember](https://docs.microsoft.com/powershell/module/microsoft.powershell.core/export-modulemember) on the cmldets in this directory. The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `..\custom` for all custom implementation.
This directory contains the cmdlets *exported by* `Az.ADDomainServices`. No other cmdlets in this repository are directly exported. What that means is the `Az.ADDomainServices` module will run [Export-ModuleMember](https://learn.microsoft.com/powershell/module/microsoft.powershell.core/export-modulemember) on the cmldets in this directory. The cmdlets in this directory are generated at **build-time**. Do not put any custom code, files, cmdlets, etc. into this directory. Please use `..\custom` for all custom implementation.

## Info
- Modifiable: no
Expand Down
2 changes: 1 addition & 1 deletion src/ADDomainServices/exports/Remove-AzADDomainService.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ INPUTOBJECT <IAdDomainServicesIdentity>: Identity Parameter
[ResourceGroupName <String>]: The name of the resource group within the user's subscription. The name is case insensitive.
[SubscriptionId <String>]: Gets subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
.Link
https://docs.microsoft.com/powershell/module/az.addomainservices/remove-azaddomainservice
https://learn.microsoft.com/powershell/module/az.addomainservices/remove-azaddomainservice
#>
function Remove-AzADDomainService {
[OutputType([System.Boolean])]
Expand Down
2 changes: 1 addition & 1 deletion src/ADDomainServices/exports/Update-AzADDomainService.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ REPLICASET <IReplicaSet[]>: List of ReplicaSets
[Location <String>]: Virtual network location
[SubnetId <String>]: The name of the virtual network that Domain Services will be deployed on. The id of the subnet that Domain Services will be deployed on. /virtualNetwork/vnetName/subnets/subnetName.
.Link
https://docs.microsoft.com/powershell/module/az.addomainservices/update-azaddomainservice
https://learn.microsoft.com/powershell/module/az.addomainservices/update-azaddomainservice
#>
function Update-AzADDomainService {
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.IDomainService])]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ internal class ModulePageMetadataOutput
{
public PsModuleHelpInfo ModuleInfo { get; }

private static string HelpLinkPrefix { get; } = @"https://docs.microsoft.com/powershell/module/";
private static string HelpLinkPrefix { get; } = @"https://learn.microsoft.com/powershell/module/";

public ModulePageMetadataOutput(PsModuleHelpInfo moduleInfo)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ internal class CommentInfo
public string OnlineVersion { get; }
public string[] RelatedLinks { get; }

private const string HelpLinkPrefix = @"https://docs.microsoft.com/powershell/module/";
private const string HelpLinkPrefix = @"https://learn.microsoft.com/powershell/module/";

public CommentInfo(VariantGroup variantGroup)
{
Expand Down
2 changes: 1 addition & 1 deletion src/ADDomainServices/help/Az.ADDomainServices.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
Module Name: Az.ADDomainServices
Module Guid: bba49006-4c09-406e-8fad-dd48d1b381e7
Download Help Link: https://docs.microsoft.com/powershell/module/az.addomainservices
Download Help Link: https://learn.microsoft.com/powershell/module/az.addomainservices
Help Version: 1.0.0.0
Locale: en-US
---
Expand Down
2 changes: 1 addition & 1 deletion src/ADDomainServices/help/Get-AzADDomainService.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.ADDomainServices
online version: https://docs.microsoft.com/powershell/module/az.addomainservices/get-azaddomainservice
online version: https://learn.microsoft.com/powershell/module/az.addomainservices/get-azaddomainservice
schema: 2.0.0
---

Expand Down
2 changes: 1 addition & 1 deletion src/ADDomainServices/help/New-AzADDomainService.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.ADDomainServices
online version: https://docs.microsoft.com/powershell/module/az.addomainservices/new-azaddomainservice
online version: https://learn.microsoft.com/powershell/module/az.addomainservices/new-azaddomainservice
schema: 2.0.0
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.ADDomainServices
online version: https://docs.microsoft.com/powershell/module/az.ADDomainService/new-AzADDomainServiceForestTrustObject
online version: https://learn.microsoft.com/powershell/module/az.ADDomainService/new-AzADDomainServiceForestTrustObject
schema: 2.0.0
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.ADDomainServices
online version: https://docs.microsoft.com/powershell/module/az.ADDomainService/new-AzADDomainServiceReplicaSetObject
online version: https://learn.microsoft.com/powershell/module/az.ADDomainService/new-AzADDomainServiceReplicaSetObject
schema: 2.0.0
---

Expand Down
2 changes: 1 addition & 1 deletion src/ADDomainServices/help/Remove-AzADDomainService.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.ADDomainServices
online version: https://docs.microsoft.com/powershell/module/az.addomainservices/remove-azaddomainservice
online version: https://learn.microsoft.com/powershell/module/az.addomainservices/remove-azaddomainservice
schema: 2.0.0
---

Expand Down
2 changes: 1 addition & 1 deletion src/ADDomainServices/help/Update-AzADDomainService.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
external help file:
Module Name: Az.ADDomainServices
online version: https://docs.microsoft.com/powershell/module/az.addomainservices/update-azaddomainservice
online version: https://learn.microsoft.com/powershell/module/az.addomainservices/update-azaddomainservice
schema: 2.0.0
---

Expand Down
2 changes: 1 addition & 1 deletion src/ADDomainServices/how-to.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To generate documentation, the process is now integrated into the `build-module.
To test the cmdlets, we use [Pester](https://github.com/pester/Pester). Tests scripts (`.ps1`) should be added to the `test` folder. To execute the Pester tests, run the `test-module.ps1` script. This will run all tests in `playback` mode within the `test` folder. To read more about testing cmdlets, look at the [README.md](examples/README.md) in the `examples` folder.

## Packing `Az.ADDomainServices`
To pack `Az.ADDomainServices` for distribution, run the `pack-module.ps1` script. This will take the contents of multiple directories and certain root-folder files to create a `.nupkg`. The structure of the `.nupkg` is created so it can be loaded part of a [PSRepository](https://docs.microsoft.com/powershell/module/powershellget/register-psrepository). Additionally, this package is in a format for distribution to the [PSGallery](https://www.powershellgallery.com/). For signing an Azure module, please contact the [Azure PowerShell](https://github.com/Azure/azure-powershell) team.
To pack `Az.ADDomainServices` for distribution, run the `pack-module.ps1` script. This will take the contents of multiple directories and certain root-folder files to create a `.nupkg`. The structure of the `.nupkg` is created so it can be loaded part of a [PSRepository](https://learn.microsoft.com/powershell/module/powershellget/register-psrepository). Additionally, this package is in a format for distribution to the [PSGallery](https://www.powershellgallery.com/). For signing an Azure module, please contact the [Azure PowerShell](https://github.com/Azure/azure-powershell) team.

## Module Script Details
There are multiple scripts created for performing different actions for developing `Az.ADDomainServices`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Lists all the available Domain Services operations.
.Outputs
Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.IOperationEntity
.Link
https://docs.microsoft.com/powershell/module/az.addomainservices/get-azaddomainserviceoperation
https://learn.microsoft.com/powershell/module/az.addomainservices/get-azaddomainserviceoperation
#>
function Get-AzADDomainServiceOperation {
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.IOperationEntity])]
Expand Down
2 changes: 1 addition & 1 deletion src/ADDomainServices/internal/New-AzADDomainService.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ REPLICASET <IReplicaSet[]>: List of ReplicaSets
[Location <String>]: Virtual network location
[SubnetId <String>]: The name of the virtual network that Domain Services will be deployed on. The id of the subnet that Domain Services will be deployed on. /virtualNetwork/vnetName/subnets/subnetName.
.Link
https://docs.microsoft.com/powershell/module/az.addomainservices/new-azaddomainservice
https://learn.microsoft.com/powershell/module/az.addomainservices/new-azaddomainservice
#>
function New-AzADDomainService {
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.IDomainService])]
Expand Down
4 changes: 2 additions & 2 deletions src/ADDomainServices/internal/ProxyCmdletDefinitions.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Lists all the available Domain Services operations.
.Outputs
Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.IOperationEntity
.Link
https://docs.microsoft.com/powershell/module/az.addomainservices/get-azaddomainserviceoperation
https://learn.microsoft.com/powershell/module/az.addomainservices/get-azaddomainserviceoperation
#>
function Get-AzADDomainServiceOperation {
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.IOperationEntity])]
Expand Down Expand Up @@ -160,7 +160,7 @@ REPLICASET <IReplicaSet[]>: List of ReplicaSets
[Location <String>]: Virtual network location
[SubnetId <String>]: The name of the virtual network that Domain Services will be deployed on. The id of the subnet that Domain Services will be deployed on. /virtualNetwork/vnetName/subnets/subnetName.
.Link
https://docs.microsoft.com/powershell/module/az.addomainservices/new-azaddomainservice
https://learn.microsoft.com/powershell/module/az.addomainservices/new-azaddomainservice
#>
function New-AzADDomainService {
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.ADDomainServices.Models.Api202001.IDomainService])]
Expand Down
Loading

0 comments on commit 0fee0a5

Please sign in to comment.