You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tools/AzureRM.BootStrapper/help/about_version_profiles.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -6,39 +6,39 @@ schema: 2.0.0
6
6
7
7
# About Version Profiles
8
8
9
-
Different concrete instances of Azure (AzureCloud, AzureChinaCloud, AzureGermanCloud, AzureUSGovernmentCloud, AzureStack) may have different versions of Azure services installed, with different capabilities. Azure Version Profiles provide a mechanism for managing these version differences. Each Azure instance has a discoverable set of supported version profiles. A user can select a version profile supported by the instances of Azure they target, and this version profile corresponds to versions of the Azure PowerShell modules. Users cna then select these Azure PowerShell module versions and be confident that their scripts will work when targeting those Azure instances.
9
+
Different concrete instances of Azure (AzureCloud, AzureChinaCloud, AzureGermanCloud, AzureUSGovernmentCloud, AzureStack) may have different versions of Azure services installed, with different capabilities. Azure Version Profiles provide a mechanism for managing these version differences. Each Azure instance has a discoverable set of supported version profiles. A user can select a version profile supported by the instances of Azure they target, and this version profile corresponds to versions of the Azure PowerShell modules. Users can then select these Azure PowerShell module versions and be confident that their scripts will work when targeting those Azure instances.
10
10
11
11
The AzureRM.Bootstrapper module provides cmdlets to discover, acquire, and use modules that are appropriate for the azure version profile you are targeting.
12
12
13
13
You can also use Tags in the AzureRM modules to discover profile information for each module version. Tags for a Profile use the form ```VersionProfile:2015-05```
14
14
15
15
# Finding appropriate version profiles
16
16
17
-
Use the ```Get-AzureRMVersionProfile``` cmdlet to discover availabel profile versions, and profile versions supported by an Azure instance.
17
+
Use the ```Get-AzureRMVersionProfile``` cmdlet to discover available profile versions, and profile versions supported by an Azure instance.
18
18
19
19
```Get-AzureRmProfile -ListAvailable``` lists all available version profiles.
20
20
21
21
```Get-AzureRMProfile -Environment AzureChinaCloud``` lists the profiles supported by the Azure China cloud.
22
22
23
-
```Get-AzureRMProfile -Endpoint https://manage.myazurestackinstance.com``` lists the profiles supported by the azure instance at the given endpoint
23
+
```Get-AzureRMProfile -Endpoint https://manage.myazurestackinstance.com``` lists the profiles supported by the azure instance at the given endpoint.
24
24
25
25
## Targeting a concrete Azure instance
26
26
27
27
```Get-AzureRMProfile -Environment AzureChinaCloud``` lists the profiles supported by the Azure China cloud.
28
28
29
29
Use ```Use-AzureRmProfile -Profile 2015-05``` to install and load cmdlets for one of the listed profiles.
30
30
31
-
```Get-AzureRMProfile -Endpoint https://manage.myazurestackinstance.com``` lists the profiles supported by the azure instance at the
31
+
```Get-AzureRMProfile -Endpoint https://manage.myazurestackinstance.com``` lists the profiles supported by the azure instance at the given endpoint.
32
32
33
33
## Targeting all Azure Instances
34
34
35
-
```Get-AzureRMProfile -Common``` lists the profiles that are supported by all Azure endpoints
35
+
```Get-AzureRMProfile -Common``` lists the profiles that are supported by all Azure endpoints.
36
36
37
37
Use ```Use-AzureRmProfile -Profile 2015-05``` to install and load cmdlets for one of the listed profiles.
38
38
39
39
## Targeting the Latest Stable Features
40
40
41
-
```Get-AzureRMProfile -Latest``` lists the latest profile supported by any Azure instance
41
+
```Get-AzureRMProfile -Latest``` lists the latest profile supported by any Azure instance.
42
42
43
43
Use ```Use-AzureRmProfile -Profile Latest``` to install and load cmdlets for one of the listed profiles.
44
44
@@ -60,7 +60,7 @@ The AzureRM bootstrapper uses the PowerShell Gallery to install and load needed
60
60
Use-AzureRmProfile -Profile 2015-05 -Force
61
61
```
62
62
63
-
Checks if the modules associated with the ```2015-05``` profile are installed in the current scope, downloads and installs the modules if necessary, and then loads the modules in the current session. You must open a new PowerShell session to target a different version profile. Using the ```Force``` parameter installs the necessary module swithout prompting.
63
+
Checks if the modules associated with the ```2015-05``` profile are installed in the current scope, downloads and installs the modules if necessary, and then loads the modules in the current session. You must open a new PowerShell session to target a different version profile. Using the ```Force``` parameter installs the necessary modules without prompting.
64
64
65
65
## Acquire and Load Selected Azure modules using the Bootstrapper
0 commit comments