Skip to content

Commit c81de97

Browse files
committed
upgrading Compute and SF to latest KV management SDK
1 parent b743af7 commit c81de97

File tree

4 files changed

+139
-114
lines changed

4 files changed

+139
-114
lines changed

AzureRM/AzureRM.psd1

Lines changed: 110 additions & 97 deletions
Original file line numberDiff line numberDiff line change
@@ -1,100 +1,103 @@
1-
#
2-
# Module manifest for module 'AzureRM.Installer'
3-
#
4-
# Generated by: Microsoft Corporation
5-
#
6-
# Generated on: 9/18/2015
7-
#
8-
9-
@{
1+
#
2+
# Module manifest for module 'PSGet_AzureRM'
3+
#
4+
# Generated by: Microsoft Corporation
5+
#
6+
# Generated on: 3/29/2018
7+
#
8+
9+
@{
1010

1111
# Script module or binary module file associated with this manifest.
12+
RootModule = 'AzureRM.psm1'
13+
14+
# Version number of this module.
15+
ModuleVersion = '1.2.11'
16+
17+
# Supported PSEditions
18+
# CompatiblePSEditions = @()
19+
20+
# ID used to uniquely identify this module
21+
GUID = 'b433e830-b479-4f7f-9c80-9cc6c28e1b51'
22+
23+
# Author of this module
24+
Author = 'Microsoft Corporation'
25+
26+
# Company or vendor of this module
27+
CompanyName = 'Microsoft Corporation'
28+
29+
# Copyright statement for this module
30+
Copyright = 'Microsoft Corporation. All rights reserved.'
31+
32+
# Description of the functionality provided by this module
33+
Description = 'Azure Resource Manager Module'
34+
35+
# Minimum version of the Windows PowerShell engine required by this module
36+
PowerShellVersion = '3.0'
37+
38+
# Name of the Windows PowerShell host required by this module
39+
# PowerShellHostName = ''
40+
41+
# Minimum version of the Windows PowerShell host required by this module
42+
# PowerShellHostVersion = ''
43+
44+
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
45+
DotNetFrameworkVersion = '4.0'
46+
47+
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
48+
CLRVersion = '4.0'
49+
50+
# Processor architecture (None, X86, Amd64) required by this module
51+
# ProcessorArchitecture = ''
52+
53+
# Modules that must be imported into the global environment prior to importing this module
54+
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; RequiredVersion = '4.2.0'; },
55+
@{ModuleName = 'Azure.Storage'; RequiredVersion = '1.0.5.4'; },
56+
@{ModuleName = 'AzureRM.Compute'; RequiredVersion = '1.2.3.4'; },
57+
@{ModuleName = 'AzureRM.Dns'; RequiredVersion = '4.0.1'; },
58+
@{ModuleName = 'AzureRM.KeyVault'; RequiredVersion = '4.1.0'; },
59+
@{ModuleName = 'AzureRM.Network'; RequiredVersion = '1.0.5.4'; },
60+
@{ModuleName = 'AzureRM.Resources'; RequiredVersion = '5.2.0'; },
61+
@{ModuleName = 'AzureRM.Storage'; RequiredVersion = '1.0.5.4'; },
62+
@{ModuleName = 'AzureRM.Tags'; RequiredVersion = '4.0.0'; },
63+
@{ModuleName = 'AzureRM.UsageAggregates'; RequiredVersion = '4.0.0'; })
64+
65+
# Assemblies that must be loaded prior to importing this module
66+
# RequiredAssemblies = @()
67+
68+
# Script files (.ps1) that are run in the caller's environment prior to importing this module.
69+
# ScriptsToProcess = @()
70+
71+
# Type files (.ps1xml) to be loaded when importing this module
72+
# TypesToProcess = @()
73+
74+
# Format files (.ps1xml) to be loaded when importing this module
75+
# FormatsToProcess = @()
76+
77+
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
78+
# NestedModules = @()
79+
80+
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
81+
FunctionsToExport = @()
82+
83+
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
84+
CmdletsToExport = @()
85+
86+
# Variables to export from this module
87+
# VariablesToExport = @()
88+
89+
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
90+
AliasesToExport = @()
91+
92+
# DSC resources to export from this module
93+
# DscResourcesToExport = @()
94+
95+
# List of all modules packaged with this module
96+
# ModuleList = @()
97+
98+
# List of all files packaged with this module
99+
# FileList = @()
12100

13-
14-
# Version number of this module.
15-
ModuleVersion = '1.2.11'
16-
17-
# ID used to uniquely identify this module
18-
GUID = 'B433E830-B479-4F7F-9C80-9CC6C28E1B51'
19-
20-
# Author of this module
21-
Author = 'Microsoft Corporation'
22-
23-
# Company or vendor of this module
24-
CompanyName = 'Microsoft Corporation'
25-
26-
# Copyright statement for this module
27-
Copyright = 'Microsoft Corporation. All rights reserved.'
28-
29-
# Description of the functionality provided by this module
30-
Description = 'Azure Resource Manager Module'
31-
32-
# Minimum version of the Windows PowerShell engine required by this module
33-
PowerShellVersion = '3.0'
34-
35-
# Name of the Windows PowerShell host required by this module
36-
PowerShellHostName = ''
37-
38-
# Minimum version of the Windows PowerShell host required by this module
39-
PowerShellHostVersion = ''
40-
41-
# Minimum version of the .NET Framework required by this module
42-
DotNetFrameworkVersion = '4.0'
43-
44-
# Minimum version of the common language runtime (CLR) required by this module
45-
CLRVersion='4.0'
46-
47-
# Processor architecture (None, X86, Amd64, IA64) required by this module
48-
ProcessorArchitecture = 'None'
49-
50-
# Modules that must be imported into the global environment prior to importing this module
51-
RequiredModules = @(@{ModuleName="AzureRM.Profile"; RequiredVersion="4.2.0"},
52-
@{ModuleName="Azure.Storage"; RequiredVersion="1.0.5.4"}
53-
@{ModuleName="AzureRM.Compute"; RequiredVersion="1.2.3.4"},
54-
@{ModuleName="AzureRM.Dns"; RequiredVersion="4.0.1"},
55-
@{ModuleName="AzureRM.KeyVault"; RequiredVersion="4.1.0"},
56-
@{ModuleName="AzureRM.Network"; RequiredVersion="1.0.5.4"},
57-
@{ModuleName="AzureRM.Resources"; RequiredVersion="5.2.0"},
58-
@{ModuleName="AzureRM.Storage"; RequiredVersion="1.0.5.4"},
59-
@{ModuleName="AzureRM.Tags"; RequiredVersion="4.0.0"},
60-
@{ModuleName="AzureRM.UsageAggregates"; RequiredVersion="4.0.0"})
61-
62-
# Assemblies that must be loaded prior to importing this module
63-
RequiredAssemblies = @()
64-
65-
# Script files (.ps1) that are run in the caller's environment prior to importing this module
66-
ScriptsToProcess = @()
67-
68-
# Type files (.ps1xml) to be loaded when importing this module
69-
TypesToProcess = @(
70-
)
71-
72-
# Format files (.ps1xml) to be loaded when importing this module
73-
FormatsToProcess = @(
74-
)
75-
76-
# Modules to import as nested modules of the module specified in ModuleToProcess
77-
NestedModules = @(
78-
)
79-
80-
# Functions to export from this module
81-
FunctionsToExport = '*'
82-
83-
# Cmdlets to export from this module
84-
CmdletsToExport = '*'
85-
86-
# Variables to export from this module
87-
VariablesToExport = '*'
88-
89-
# Aliases to export from this module
90-
AliasesToExport = @()
91-
92-
# List of all modules packaged with this module
93-
ModuleList = @()
94-
95-
# List of all files packaged with this module
96-
FileList = @()
97-
98101
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
99102
PrivateData = @{
100103

@@ -155,11 +158,21 @@ PrivateData = @{
155158
* Tag
156159
* -Force parmeter has been removed from the cmdlet Remove-AzureRmTag'
157160

161+
# Flag to indicate whether the module requires explicit user acceptance for install/update
162+
# RequireLicenseAcceptance = $false
163+
158164
# External dependent modules of this module
159-
# ExternalModuleDependencies = ''
165+
# ExternalModuleDependencies = @()
160166

161167
} # End of PSData hashtable
162168

163-
} # End of PrivateData hashtable
169+
} # End of PrivateData hashtable
170+
171+
# HelpInfo URI of this module
172+
# HelpInfoURI = ''
173+
174+
# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
175+
# DefaultCommandPrefix = ''
176+
177+
}
164178

165-
}

AzureRM/AzureRM.psm1

4.86 KB
Binary file not shown.

AzureStack/AzureStack.psd1

Lines changed: 29 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
1-
#
1+
#
22
# Module manifest for module 'PSGet_AzureStack'
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 11/14/2016
6+
# Generated on: 3/29/2018
77
#
88

99
@{
1010

11+
# Script module or binary module file associated with this manifest.
12+
RootModule = 'AzureStack.psm1'
13+
1114
# Version number of this module.
1215
ModuleVersion = '1.2.11'
1316

17+
# Supported PSEditions
18+
# CompatiblePSEditions = @()
19+
1420
# ID used to uniquely identify this module
1521
GUID = '65f1e943-5e22-4b21-8350-82c798c958d2'
1622

@@ -35,19 +41,19 @@ PowerShellVersion = '3.0'
3541
# Minimum version of the Windows PowerShell host required by this module
3642
# PowerShellHostVersion = ''
3743

38-
# Minimum version of Microsoft .NET Framework required by this module
44+
# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
3945
DotNetFrameworkVersion = '4.0'
4046

41-
# Minimum version of the common language runtime (CLR) required by this module
47+
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
4248
CLRVersion = '4.0'
4349

4450
# Processor architecture (None, X86, Amd64) required by this module
45-
# ProcessorArchitecture = 'None'
51+
# ProcessorArchitecture = ''
4652

4753
# Modules that must be imported into the global environment prior to importing this module
48-
RequiredModules = @(@{ModuleName="AzureRM.Profile"; RequiredVersion="4.2.0"},
49-
@{ModuleName="AzureRM.AzureStackAdmin"; RequiredVersion="0.11.1"},
50-
@{ModuleName="AzureRM.AzureStackStorage"; RequiredVersion="0.10.9"})
54+
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; RequiredVersion = '4.2.0'; },
55+
@{ModuleName = 'AzureRM.AzureStackAdmin'; RequiredVersion = '0.11.1'; },
56+
@{ModuleName = 'AzureRM.AzureStackStorage'; RequiredVersion = '0.10.9'; })
5157

5258
# Assemblies that must be loaded prior to importing this module
5359
# RequiredAssemblies = @()
@@ -64,17 +70,17 @@ RequiredModules = @(@{ModuleName="AzureRM.Profile"; RequiredVersion="4.2.0"},
6470
# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
6571
# NestedModules = @()
6672

67-
# Functions to export from this module
68-
# FunctionsToExport = @()
73+
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
74+
FunctionsToExport = @()
6975

70-
# Cmdlets to export from this module
71-
# CmdletsToExport = @()
76+
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
77+
CmdletsToExport = @()
7278

7379
# Variables to export from this module
7480
# VariablesToExport = @()
7581

76-
# Aliases to export from this module
77-
# AliasesToExport = @()
82+
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
83+
AliasesToExport = @()
7884

7985
# DSC resources to export from this module
8086
# DscResourcesToExport = @()
@@ -84,7 +90,7 @@ RequiredModules = @(@{ModuleName="AzureRM.Profile"; RequiredVersion="4.2.0"},
8490

8591
# List of all files packaged with this module
8692
# FileList = @()
87-
93+
8894
# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
8995
PrivateData = @{
9096

@@ -109,11 +115,16 @@ PrivateData = @{
109115
* Get-AzsTenantSubscription has been renamed to Get-AzsUserSubscription with alias support for backward compatibility
110116
* New-AzsTenantSubscription has been renamed to New-AzsUserSubscription with alias support for backward compatibility
111117
* Remove-AzsTenantSubscription has been renamed to Remove-AzsUserSubscription with alias support for backward compatibility'
118+
119+
# Flag to indicate whether the module requires explicit user acceptance for install/update
120+
# RequireLicenseAcceptance = $false
121+
112122
# External dependent modules of this module
113-
# ExternalModuleDependencies = ''
123+
# ExternalModuleDependencies = @()
114124

115125
} # End of PSData hashtable
116-
} # End of PrivateData hashtable
126+
127+
} # End of PrivateData hashtable
117128

118129
# HelpInfo URI of this module
119130
# HelpInfoURI = ''
@@ -122,3 +133,4 @@ PrivateData = @{
122133
# DefaultCommandPrefix = ''
123134

124135
}
136+

AzureStack/AzureStack.psm1

4.14 KB
Binary file not shown.

0 commit comments

Comments
 (0)