This repository was archived by the owner on Sep 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathDemo-GeneratedAzureStackRMCommands.ps1
62 lines (48 loc) · 2.35 KB
/
Demo-GeneratedAzureStackRMCommands.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
param(
[string]
$PSSwaggerClonePath = 'C:\Code\PSSwagger',
[string]
$TargetPath = 'C:\Temp\generatedmodule'
)
Microsoft.PowerShell.Core\Set-StrictMode -Version Latest
#region Handle Autorest installation
$autoRestVersion = "0.16.0"
$autoRestInstallation = get-package -Name AutoRest -RequiredVersion $autoRestVersion -ProviderName NuGet
if(-not $autoRestInstallation) {
$autoRestInstallation = Install-Package -Name AutoRest -Source https://www.nuget.org/api/v2 -RequiredVersion 0.16.0 -ProviderName NuGet -Scope CurrentUser -Force
}
$autoRestInstallationLocation = ($autoRestInstallation).Source
$autoRestInstallPath = Join-Path -ChildPath "tools" -Path (Split-Path $autoRestInstallationLocation)
if(-not (($env:Path -split ';') -match [regex]::Escape($autoRestInstallPath))){$env:Path += ";$autoRestInstallPath"}
#endregion Handle Autorest installation
if(-not (Test-Path -Path $PSSwaggerClonePath -PathType Container))
{
Throw "$PSSwaggerClonePath is not available."
}
Set-Location -Path $PSSwaggerClonePath
Import-Module .\PSSwagger\PSSwagger.psd1 -Force
# AzureStackRM.FabricResourceProvider
$ModuleName = 'Generated.AzureStackRM.FabricResourceProvider'
$param = @{
SpecificationUri = 'C:\code\swaggerrelated\JsonFiles\SwaggerTransformed.json'
Path = $TargetPath
Name = $ModuleName
UseAzureCsharpGenerator = $false
}
New-PSSwaggerModule @param
Import-Module "$PSSwaggerClonePath\PSSwagger\PSSwaggerUtility\PSSwaggerUtility.psd1" -verbose -force
Import-Module $TargetPath\$ModuleName -WarningAction SilentlyContinue
Get-Command -Module $ModuleName
Get-Command -Module $ModuleName -Syntax
$EnvironmentName = "Azure Stack PS"
$UserName = 'serviceadmin@thoroet.onmicrosoft.com'
$AzureStackDomain = 'azurestack.local'
$null = Add-AzSRmEnvironment -Name $EnvironmentName -UserName $UserName -AzureStackDomain $AzureStackDomain
$Credential = Get-Credential -UserName $UserName -Message "Enter credential to login to the AzureStack $EnvironmentName environment"
$null = Login-AzureRmAccount -EnvironmentName $EnvironmentName -Credential $Credential
# Get AzureStack Fabric Location
Get-AzSRegion -Subscription (Get-AzureRmContext).Subscription.SubscriptionId `
-ResourceGroup 'system' `
-Apiversion '2016-05-01' `
-FabricLocation 'local'
$null = Remove-AzSRmEnvironment -Name $EnvironmentName