Skip to content

Commit 12b93e7

Browse files
isra-felazure-powershell-botdingmeng-xueBethanyZhou
authored
Move ContainerInstance to main (#17837)
* Move ContainerInstance to main * changelog * Update src/ContainerInstance/Changelog.md Co-authored-by: Beisi Zhou <[email protected]> * Create BreakingChangeIssues.csv Co-authored-by: azure-powershell-bot <[email protected]> Co-authored-by: Dingmeng Xue <[email protected]> Co-authored-by: Beisi Zhou <[email protected]>
1 parent d0d79fa commit 12b93e7

File tree

105 files changed

+3261
-1047
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+3261
-1047
lines changed

src/ContainerInstance/Az.ContainerInstance.psd1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 2/24/2022
6+
# Generated on: 4/18/2022
77
#
88

99
@{
@@ -95,7 +95,7 @@ CmdletsToExport = @()
9595
# VariablesToExport = @()
9696

9797
# 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.
98-
AliasesToExport = 'Get-AzContainerGroupOutboundNetworkDependencyEndpoint'
98+
AliasesToExport = 'Get-AzContainerGroupOutboundNetworkDependencyEndpoint', '*'
9999

100100
# DSC resources to export from this module
101101
# DscResourcesToExport = @()
@@ -124,7 +124,7 @@ PrivateData = @{
124124
# IconUri = ''
125125

126126
# ReleaseNotes of this module
127-
ReleaseNotes = '* Fixed Identity Bug in ImageRegistryCredential'
127+
# ReleaseNotes = ''
128128

129129
# Prerelease string of this module
130130
# Prerelease = ''

src/ContainerInstance/Az.ContainerInstance.psm1

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@
2525
}
2626
}
2727
if(-not $accountsModule) {
28-
$hasAdequateVersion = (Get-Module -Name $accountsName -ListAvailable | Where-Object { $_.Version -ge [System.Version]'2.2.3' } | Measure-Object).Count -gt 0
28+
$hasAdequateVersion = (Get-Module -Name $accountsName -ListAvailable | Where-Object { $_.Version -ge [System.Version]'2.7.5' } | Measure-Object).Count -gt 0
2929
if($hasAdequateVersion) {
30-
$accountsModule = Import-Module -Name $accountsName -MinimumVersion 2.2.3 -Scope Global -PassThru
30+
$accountsModule = Import-Module -Name $accountsName -MinimumVersion 2.7.5 -Scope Global -PassThru
3131
}
3232
}
3333
}
3434

3535
if(-not $accountsModule) {
36-
Write-Error "`nThis module requires $accountsName version 2.2.3 or greater. For installation instructions, please see: https://docs.microsoft.com/powershell/azure/install-az-ps" -ErrorAction Stop
37-
} elseif (($accountsModule.Version -lt [System.Version]'2.2.3') -and (-not $localAccounts)) {
38-
Write-Error "`nThis module requires $accountsName version 2.2.3 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
36+
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
37+
} elseif (($accountsModule.Version -lt [System.Version]'2.7.5') -and (-not $localAccounts)) {
38+
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
3939
}
4040
Write-Information "Loaded Module '$($accountsModule.Name)'"
4141

@@ -50,6 +50,10 @@
5050

5151
# Tweaks the pipeline on module load
5252
$instance.OnModuleLoad = $VTable.OnModuleLoad
53+
54+
# Following two delegates are added for telemetry
55+
$instance.GetTelemetryId = $VTable.GetTelemetryId
56+
$instance.Telemetry = $VTable.Telemetry
5357

5458

5559
# Tweaks the pipeline per call

src/ContainerInstance/Changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
-->
2020

2121
## Upcoming Release
22+
* Supported empty directory volume and secret volume for creating container group [#17410]
2223

2324
## Version 3.0.1
2425
* Fixed Identity Bug in ImageRegistryCredential

src/ContainerInstance/ContainerInstance.sln

Lines changed: 78 additions & 78 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 16
44
VisualStudioVersion = 16.0.30114.105
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Accounts", "..\Accounts\Accounts\Accounts.csproj", "{EEC77869-F43C-492F-A203-89FB51902D5A}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Accounts", "..\Accounts\Accounts\Accounts.csproj", "{5E36A58C-9179-4197-803B-876929202A3B}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{C3346A13-2B6E-4B20-8102-2C0009520994}"
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{F47B96CE-C45D-476D-86D3-3E54860BD161}"
99
EndProject
10-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{D5760413-37FA-4938-8894-B8975648D03F}"
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{910BDC36-DAE5-42F2-8289-D02536741ACE}"
1111
EndProject
12-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthenticationAssemblyLoadContext", "..\Accounts\AuthenticationAssemblyLoadContext\AuthenticationAssemblyLoadContext.csproj", "{81D91039-447D-4C7C-9837-4EB84A4629B1}"
12+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthenticationAssemblyLoadContext", "..\Accounts\AuthenticationAssemblyLoadContext\AuthenticationAssemblyLoadContext.csproj", "{9DEAD20A-4771-43D3-BCB9-BE3347089E62}"
1313
EndProject
14-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accounts\Authenticators\Authenticators.csproj", "{71CDE8A5-660C-4665-AD7A-763A070B5BC0}"
14+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accounts\Authenticators\Authenticators.csproj", "{29825CB6-7123-417D-8420-6F63B42E048B}"
1515
EndProject
16-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.ContainerInstance", "Az.ContainerInstance.csproj", "{D167293D-4BD8-4506-BCEA-1EB00096F50F}"
16+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.ContainerInstance", "Az.ContainerInstance.csproj", "{B205CE86-4CD8-464C-90D9-42DFD1766B70}"
1717
EndProject
1818
Global
1919
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -28,77 +28,77 @@ Global
2828
HideSolutionNode = FALSE
2929
EndGlobalSection
3030
GlobalSection(ProjectConfigurationPlatforms) = postSolution
31-
{EEC77869-F43C-492F-A203-89FB51902D5A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
32-
{EEC77869-F43C-492F-A203-89FB51902D5A}.Debug|Any CPU.Build.0 = Debug|Any CPU
33-
{EEC77869-F43C-492F-A203-89FB51902D5A}.Debug|x64.ActiveCfg = Debug|Any CPU
34-
{EEC77869-F43C-492F-A203-89FB51902D5A}.Debug|x64.Build.0 = Debug|Any CPU
35-
{EEC77869-F43C-492F-A203-89FB51902D5A}.Debug|x86.ActiveCfg = Debug|Any CPU
36-
{EEC77869-F43C-492F-A203-89FB51902D5A}.Debug|x86.Build.0 = Debug|Any CPU
37-
{EEC77869-F43C-492F-A203-89FB51902D5A}.Release|Any CPU.ActiveCfg = Release|Any CPU
38-
{EEC77869-F43C-492F-A203-89FB51902D5A}.Release|Any CPU.Build.0 = Release|Any CPU
39-
{EEC77869-F43C-492F-A203-89FB51902D5A}.Release|x64.ActiveCfg = Release|Any CPU
40-
{EEC77869-F43C-492F-A203-89FB51902D5A}.Release|x64.Build.0 = Release|Any CPU
41-
{EEC77869-F43C-492F-A203-89FB51902D5A}.Release|x86.ActiveCfg = Release|Any CPU
42-
{EEC77869-F43C-492F-A203-89FB51902D5A}.Release|x86.Build.0 = Release|Any CPU
43-
{C3346A13-2B6E-4B20-8102-2C0009520994}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
44-
{C3346A13-2B6E-4B20-8102-2C0009520994}.Debug|Any CPU.Build.0 = Debug|Any CPU
45-
{C3346A13-2B6E-4B20-8102-2C0009520994}.Debug|x64.ActiveCfg = Debug|Any CPU
46-
{C3346A13-2B6E-4B20-8102-2C0009520994}.Debug|x64.Build.0 = Debug|Any CPU
47-
{C3346A13-2B6E-4B20-8102-2C0009520994}.Debug|x86.ActiveCfg = Debug|Any CPU
48-
{C3346A13-2B6E-4B20-8102-2C0009520994}.Debug|x86.Build.0 = Debug|Any CPU
49-
{C3346A13-2B6E-4B20-8102-2C0009520994}.Release|Any CPU.ActiveCfg = Release|Any CPU
50-
{C3346A13-2B6E-4B20-8102-2C0009520994}.Release|Any CPU.Build.0 = Release|Any CPU
51-
{C3346A13-2B6E-4B20-8102-2C0009520994}.Release|x64.ActiveCfg = Release|Any CPU
52-
{C3346A13-2B6E-4B20-8102-2C0009520994}.Release|x64.Build.0 = Release|Any CPU
53-
{C3346A13-2B6E-4B20-8102-2C0009520994}.Release|x86.ActiveCfg = Release|Any CPU
54-
{C3346A13-2B6E-4B20-8102-2C0009520994}.Release|x86.Build.0 = Release|Any CPU
55-
{D5760413-37FA-4938-8894-B8975648D03F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
56-
{D5760413-37FA-4938-8894-B8975648D03F}.Debug|Any CPU.Build.0 = Debug|Any CPU
57-
{D5760413-37FA-4938-8894-B8975648D03F}.Debug|x64.ActiveCfg = Debug|Any CPU
58-
{D5760413-37FA-4938-8894-B8975648D03F}.Debug|x64.Build.0 = Debug|Any CPU
59-
{D5760413-37FA-4938-8894-B8975648D03F}.Debug|x86.ActiveCfg = Debug|Any CPU
60-
{D5760413-37FA-4938-8894-B8975648D03F}.Debug|x86.Build.0 = Debug|Any CPU
61-
{D5760413-37FA-4938-8894-B8975648D03F}.Release|Any CPU.ActiveCfg = Release|Any CPU
62-
{D5760413-37FA-4938-8894-B8975648D03F}.Release|Any CPU.Build.0 = Release|Any CPU
63-
{D5760413-37FA-4938-8894-B8975648D03F}.Release|x64.ActiveCfg = Release|Any CPU
64-
{D5760413-37FA-4938-8894-B8975648D03F}.Release|x64.Build.0 = Release|Any CPU
65-
{D5760413-37FA-4938-8894-B8975648D03F}.Release|x86.ActiveCfg = Release|Any CPU
66-
{D5760413-37FA-4938-8894-B8975648D03F}.Release|x86.Build.0 = Release|Any CPU
67-
{81D91039-447D-4C7C-9837-4EB84A4629B1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
68-
{81D91039-447D-4C7C-9837-4EB84A4629B1}.Debug|Any CPU.Build.0 = Debug|Any CPU
69-
{81D91039-447D-4C7C-9837-4EB84A4629B1}.Debug|x64.ActiveCfg = Debug|Any CPU
70-
{81D91039-447D-4C7C-9837-4EB84A4629B1}.Debug|x64.Build.0 = Debug|Any CPU
71-
{81D91039-447D-4C7C-9837-4EB84A4629B1}.Debug|x86.ActiveCfg = Debug|Any CPU
72-
{81D91039-447D-4C7C-9837-4EB84A4629B1}.Debug|x86.Build.0 = Debug|Any CPU
73-
{81D91039-447D-4C7C-9837-4EB84A4629B1}.Release|Any CPU.ActiveCfg = Release|Any CPU
74-
{81D91039-447D-4C7C-9837-4EB84A4629B1}.Release|Any CPU.Build.0 = Release|Any CPU
75-
{81D91039-447D-4C7C-9837-4EB84A4629B1}.Release|x64.ActiveCfg = Release|Any CPU
76-
{81D91039-447D-4C7C-9837-4EB84A4629B1}.Release|x64.Build.0 = Release|Any CPU
77-
{81D91039-447D-4C7C-9837-4EB84A4629B1}.Release|x86.ActiveCfg = Release|Any CPU
78-
{81D91039-447D-4C7C-9837-4EB84A4629B1}.Release|x86.Build.0 = Release|Any CPU
79-
{71CDE8A5-660C-4665-AD7A-763A070B5BC0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
80-
{71CDE8A5-660C-4665-AD7A-763A070B5BC0}.Debug|Any CPU.Build.0 = Debug|Any CPU
81-
{71CDE8A5-660C-4665-AD7A-763A070B5BC0}.Debug|x64.ActiveCfg = Debug|Any CPU
82-
{71CDE8A5-660C-4665-AD7A-763A070B5BC0}.Debug|x64.Build.0 = Debug|Any CPU
83-
{71CDE8A5-660C-4665-AD7A-763A070B5BC0}.Debug|x86.ActiveCfg = Debug|Any CPU
84-
{71CDE8A5-660C-4665-AD7A-763A070B5BC0}.Debug|x86.Build.0 = Debug|Any CPU
85-
{71CDE8A5-660C-4665-AD7A-763A070B5BC0}.Release|Any CPU.ActiveCfg = Release|Any CPU
86-
{71CDE8A5-660C-4665-AD7A-763A070B5BC0}.Release|Any CPU.Build.0 = Release|Any CPU
87-
{71CDE8A5-660C-4665-AD7A-763A070B5BC0}.Release|x64.ActiveCfg = Release|Any CPU
88-
{71CDE8A5-660C-4665-AD7A-763A070B5BC0}.Release|x64.Build.0 = Release|Any CPU
89-
{71CDE8A5-660C-4665-AD7A-763A070B5BC0}.Release|x86.ActiveCfg = Release|Any CPU
90-
{71CDE8A5-660C-4665-AD7A-763A070B5BC0}.Release|x86.Build.0 = Release|Any CPU
91-
{D167293D-4BD8-4506-BCEA-1EB00096F50F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
92-
{D167293D-4BD8-4506-BCEA-1EB00096F50F}.Debug|Any CPU.Build.0 = Debug|Any CPU
93-
{D167293D-4BD8-4506-BCEA-1EB00096F50F}.Debug|x64.ActiveCfg = Debug|Any CPU
94-
{D167293D-4BD8-4506-BCEA-1EB00096F50F}.Debug|x64.Build.0 = Debug|Any CPU
95-
{D167293D-4BD8-4506-BCEA-1EB00096F50F}.Debug|x86.ActiveCfg = Debug|Any CPU
96-
{D167293D-4BD8-4506-BCEA-1EB00096F50F}.Debug|x86.Build.0 = Debug|Any CPU
97-
{D167293D-4BD8-4506-BCEA-1EB00096F50F}.Release|Any CPU.ActiveCfg = Release|Any CPU
98-
{D167293D-4BD8-4506-BCEA-1EB00096F50F}.Release|Any CPU.Build.0 = Release|Any CPU
99-
{D167293D-4BD8-4506-BCEA-1EB00096F50F}.Release|x64.ActiveCfg = Release|Any CPU
100-
{D167293D-4BD8-4506-BCEA-1EB00096F50F}.Release|x64.Build.0 = Release|Any CPU
101-
{D167293D-4BD8-4506-BCEA-1EB00096F50F}.Release|x86.ActiveCfg = Release|Any CPU
102-
{D167293D-4BD8-4506-BCEA-1EB00096F50F}.Release|x86.Build.0 = Release|Any CPU
31+
{5E36A58C-9179-4197-803B-876929202A3B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
32+
{5E36A58C-9179-4197-803B-876929202A3B}.Debug|Any CPU.Build.0 = Debug|Any CPU
33+
{5E36A58C-9179-4197-803B-876929202A3B}.Debug|x64.ActiveCfg = Debug|Any CPU
34+
{5E36A58C-9179-4197-803B-876929202A3B}.Debug|x64.Build.0 = Debug|Any CPU
35+
{5E36A58C-9179-4197-803B-876929202A3B}.Debug|x86.ActiveCfg = Debug|Any CPU
36+
{5E36A58C-9179-4197-803B-876929202A3B}.Debug|x86.Build.0 = Debug|Any CPU
37+
{5E36A58C-9179-4197-803B-876929202A3B}.Release|Any CPU.ActiveCfg = Release|Any CPU
38+
{5E36A58C-9179-4197-803B-876929202A3B}.Release|Any CPU.Build.0 = Release|Any CPU
39+
{5E36A58C-9179-4197-803B-876929202A3B}.Release|x64.ActiveCfg = Release|Any CPU
40+
{5E36A58C-9179-4197-803B-876929202A3B}.Release|x64.Build.0 = Release|Any CPU
41+
{5E36A58C-9179-4197-803B-876929202A3B}.Release|x86.ActiveCfg = Release|Any CPU
42+
{5E36A58C-9179-4197-803B-876929202A3B}.Release|x86.Build.0 = Release|Any CPU
43+
{F47B96CE-C45D-476D-86D3-3E54860BD161}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
44+
{F47B96CE-C45D-476D-86D3-3E54860BD161}.Debug|Any CPU.Build.0 = Debug|Any CPU
45+
{F47B96CE-C45D-476D-86D3-3E54860BD161}.Debug|x64.ActiveCfg = Debug|Any CPU
46+
{F47B96CE-C45D-476D-86D3-3E54860BD161}.Debug|x64.Build.0 = Debug|Any CPU
47+
{F47B96CE-C45D-476D-86D3-3E54860BD161}.Debug|x86.ActiveCfg = Debug|Any CPU
48+
{F47B96CE-C45D-476D-86D3-3E54860BD161}.Debug|x86.Build.0 = Debug|Any CPU
49+
{F47B96CE-C45D-476D-86D3-3E54860BD161}.Release|Any CPU.ActiveCfg = Release|Any CPU
50+
{F47B96CE-C45D-476D-86D3-3E54860BD161}.Release|Any CPU.Build.0 = Release|Any CPU
51+
{F47B96CE-C45D-476D-86D3-3E54860BD161}.Release|x64.ActiveCfg = Release|Any CPU
52+
{F47B96CE-C45D-476D-86D3-3E54860BD161}.Release|x64.Build.0 = Release|Any CPU
53+
{F47B96CE-C45D-476D-86D3-3E54860BD161}.Release|x86.ActiveCfg = Release|Any CPU
54+
{F47B96CE-C45D-476D-86D3-3E54860BD161}.Release|x86.Build.0 = Release|Any CPU
55+
{910BDC36-DAE5-42F2-8289-D02536741ACE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
56+
{910BDC36-DAE5-42F2-8289-D02536741ACE}.Debug|Any CPU.Build.0 = Debug|Any CPU
57+
{910BDC36-DAE5-42F2-8289-D02536741ACE}.Debug|x64.ActiveCfg = Debug|Any CPU
58+
{910BDC36-DAE5-42F2-8289-D02536741ACE}.Debug|x64.Build.0 = Debug|Any CPU
59+
{910BDC36-DAE5-42F2-8289-D02536741ACE}.Debug|x86.ActiveCfg = Debug|Any CPU
60+
{910BDC36-DAE5-42F2-8289-D02536741ACE}.Debug|x86.Build.0 = Debug|Any CPU
61+
{910BDC36-DAE5-42F2-8289-D02536741ACE}.Release|Any CPU.ActiveCfg = Release|Any CPU
62+
{910BDC36-DAE5-42F2-8289-D02536741ACE}.Release|Any CPU.Build.0 = Release|Any CPU
63+
{910BDC36-DAE5-42F2-8289-D02536741ACE}.Release|x64.ActiveCfg = Release|Any CPU
64+
{910BDC36-DAE5-42F2-8289-D02536741ACE}.Release|x64.Build.0 = Release|Any CPU
65+
{910BDC36-DAE5-42F2-8289-D02536741ACE}.Release|x86.ActiveCfg = Release|Any CPU
66+
{910BDC36-DAE5-42F2-8289-D02536741ACE}.Release|x86.Build.0 = Release|Any CPU
67+
{9DEAD20A-4771-43D3-BCB9-BE3347089E62}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
68+
{9DEAD20A-4771-43D3-BCB9-BE3347089E62}.Debug|Any CPU.Build.0 = Debug|Any CPU
69+
{9DEAD20A-4771-43D3-BCB9-BE3347089E62}.Debug|x64.ActiveCfg = Debug|Any CPU
70+
{9DEAD20A-4771-43D3-BCB9-BE3347089E62}.Debug|x64.Build.0 = Debug|Any CPU
71+
{9DEAD20A-4771-43D3-BCB9-BE3347089E62}.Debug|x86.ActiveCfg = Debug|Any CPU
72+
{9DEAD20A-4771-43D3-BCB9-BE3347089E62}.Debug|x86.Build.0 = Debug|Any CPU
73+
{9DEAD20A-4771-43D3-BCB9-BE3347089E62}.Release|Any CPU.ActiveCfg = Release|Any CPU
74+
{9DEAD20A-4771-43D3-BCB9-BE3347089E62}.Release|Any CPU.Build.0 = Release|Any CPU
75+
{9DEAD20A-4771-43D3-BCB9-BE3347089E62}.Release|x64.ActiveCfg = Release|Any CPU
76+
{9DEAD20A-4771-43D3-BCB9-BE3347089E62}.Release|x64.Build.0 = Release|Any CPU
77+
{9DEAD20A-4771-43D3-BCB9-BE3347089E62}.Release|x86.ActiveCfg = Release|Any CPU
78+
{9DEAD20A-4771-43D3-BCB9-BE3347089E62}.Release|x86.Build.0 = Release|Any CPU
79+
{29825CB6-7123-417D-8420-6F63B42E048B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
80+
{29825CB6-7123-417D-8420-6F63B42E048B}.Debug|Any CPU.Build.0 = Debug|Any CPU
81+
{29825CB6-7123-417D-8420-6F63B42E048B}.Debug|x64.ActiveCfg = Debug|Any CPU
82+
{29825CB6-7123-417D-8420-6F63B42E048B}.Debug|x64.Build.0 = Debug|Any CPU
83+
{29825CB6-7123-417D-8420-6F63B42E048B}.Debug|x86.ActiveCfg = Debug|Any CPU
84+
{29825CB6-7123-417D-8420-6F63B42E048B}.Debug|x86.Build.0 = Debug|Any CPU
85+
{29825CB6-7123-417D-8420-6F63B42E048B}.Release|Any CPU.ActiveCfg = Release|Any CPU
86+
{29825CB6-7123-417D-8420-6F63B42E048B}.Release|Any CPU.Build.0 = Release|Any CPU
87+
{29825CB6-7123-417D-8420-6F63B42E048B}.Release|x64.ActiveCfg = Release|Any CPU
88+
{29825CB6-7123-417D-8420-6F63B42E048B}.Release|x64.Build.0 = Release|Any CPU
89+
{29825CB6-7123-417D-8420-6F63B42E048B}.Release|x86.ActiveCfg = Release|Any CPU
90+
{29825CB6-7123-417D-8420-6F63B42E048B}.Release|x86.Build.0 = Release|Any CPU
91+
{B205CE86-4CD8-464C-90D9-42DFD1766B70}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
92+
{B205CE86-4CD8-464C-90D9-42DFD1766B70}.Debug|Any CPU.Build.0 = Debug|Any CPU
93+
{B205CE86-4CD8-464C-90D9-42DFD1766B70}.Debug|x64.ActiveCfg = Debug|Any CPU
94+
{B205CE86-4CD8-464C-90D9-42DFD1766B70}.Debug|x64.Build.0 = Debug|Any CPU
95+
{B205CE86-4CD8-464C-90D9-42DFD1766B70}.Debug|x86.ActiveCfg = Debug|Any CPU
96+
{B205CE86-4CD8-464C-90D9-42DFD1766B70}.Debug|x86.Build.0 = Debug|Any CPU
97+
{B205CE86-4CD8-464C-90D9-42DFD1766B70}.Release|Any CPU.ActiveCfg = Release|Any CPU
98+
{B205CE86-4CD8-464C-90D9-42DFD1766B70}.Release|Any CPU.Build.0 = Release|Any CPU
99+
{B205CE86-4CD8-464C-90D9-42DFD1766B70}.Release|x64.ActiveCfg = Release|Any CPU
100+
{B205CE86-4CD8-464C-90D9-42DFD1766B70}.Release|x64.Build.0 = Release|Any CPU
101+
{B205CE86-4CD8-464C-90D9-42DFD1766B70}.Release|x86.ActiveCfg = Release|Any CPU
102+
{B205CE86-4CD8-464C-90D9-42DFD1766B70}.Release|x86.Build.0 = Release|Any CPU
103103
EndGlobalSection
104104
EndGlobal

src/ContainerInstance/README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This directory contains the PowerShell module for the ContainerInstance service.
1717
This module was primarily generated via [AutoRest](https://github.com/Azure/autorest) using the [PowerShell](https://github.com/Azure/autorest.powershell) extension.
1818

1919
## Module Requirements
20-
- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 2.2.3 or greater
20+
- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 2.7.5 or greater
2121

2222
## Authentication
2323
AutoRest does not generate authentication code for the module. Authentication is handled via Az.Accounts by altering the HTTP payload before it is sent.
@@ -140,4 +140,15 @@ directive:
140140
$["204"] = {
141141
"description": "No content"
142142
}
143+
# Change the type of EmptyDir from IAny() to VolumeEmptyDir
144+
- from: swagger-document
145+
where: $.definitions.Volume.properties.emptyDir
146+
transform: >-
147+
return {
148+
"description": "The empty directory volume.",
149+
"type": "object",
150+
"additionalProperties": true
151+
}
152+
# - model-cmdlet:
153+
# - Volume # Hide to customize AzureFileStorageAccountKey from string to securestring
143154
```

src/ContainerInstance/check-dependencies.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ if(Test-Path -Path $localModulesPath) {
4747
$env:PSModulePath = "$localModulesPath$([IO.Path]::PathSeparator)$env:PSModulePath"
4848
}
4949

50-
DownloadModule -predicate ($all -or $Accounts) -path $localModulesPath -moduleName 'Az.Accounts' -versionMinimum '2.2.3'
50+
DownloadModule -predicate ($all -or $Accounts) -path $localModulesPath -moduleName 'Az.Accounts' -versionMinimum '2.7.5'
5151
DownloadModule -predicate ($all -or $Pester) -path $localModulesPath -moduleName 'Pester' -requiredVersion '4.10.1'
5252

5353
$tools = Join-Path $PSScriptRoot 'tools'

0 commit comments

Comments
 (0)