Skip to content

Commit 516013a

Browse files
[CloudService] Second preview release for CloudService (#14653)
* GA for CloudService. * GA for CloudService. * GA for CloudService. * Second preview release for CloudService * update ReleaseNotes in Az.CloudService.psd1 Co-authored-by: wyunchi-ms <[email protected]> Co-authored-by: Beisi Zhou <[email protected]>
1 parent 21a7a7d commit 516013a

File tree

362 files changed

+14321
-5828
lines changed

Some content is hidden

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

362 files changed

+14321
-5828
lines changed

src/CloudService/Az.CloudService.format.ps1xml

Lines changed: 330 additions & 62 deletions
Large diffs are not rendered by default.

src/CloudService/Az.CloudService.psd1

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 2021-03-02
6+
# Generated on: 2021-03-30
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
RootModule = './Az.CloudService.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.1.0'
15+
ModuleVersion = '0.2.0'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -70,8 +70,8 @@ FormatsToProcess = './Az.CloudService.format.ps1xml'
7070

7171
# 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.
7272
FunctionsToExport = 'Get-AzCloudService', 'Get-AzCloudServiceInstanceView',
73-
'Get-AzCloudServiceNetworkInterfaces',
74-
'Get-AzCloudServicePublicIPAddress',
73+
'Get-AzCloudServiceNetworkInterfaces', 'Get-AzCloudServiceOSFamily',
74+
'Get-AzCloudServiceOSVersion', 'Get-AzCloudServicePublicIPAddress',
7575
'Get-AzCloudServiceRoleInstance',
7676
'Get-AzCloudServiceRoleInstanceRemoteDesktopFile',
7777
'Get-AzCloudServiceRoleInstanceView',
@@ -127,7 +127,8 @@ PrivateData = @{
127127
# IconUri = ''
128128

129129
# ReleaseNotes of this module
130-
# ReleaseNotes = ''
130+
ReleaseNotes = '* Bumped API version to stable 2021-03-01
131+
* Supported OSFamily and OSVersion'
131132

132133
# Prerelease string of this module
133134
# Prerelease = ''

src/CloudService/Changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
-->
2020
## Upcoming Release
2121

22+
## Version 0.2.0
23+
* Bumped API version to stable 2021-03-01
24+
* Supported OSFamily and OSVersion
25+
2226
## Version 0.1.0
2327
* First preview release for module Az.CloudService
2428

src/CloudService/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
[assembly: ComVisible(false)]
2525
[assembly: CLSCompliant(false)]
2626
[assembly: Guid("1fe4b4c7-44d2-4800-a935-733381e663ae")]
27-
[assembly: AssemblyVersion("0.1.0")]
28-
[assembly: AssemblyFileVersion("0.1.0")]
27+
[assembly: AssemblyVersion("0.2.0")]
28+
[assembly: AssemblyFileVersion("0.2.0")]

src/CloudService/custom/Get-AzCloudServiceNetworkInterface.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function Get-AzCloudServiceNetworkInterfaces {
4444
[string] $RoleInstanceName,
4545

4646
[Parameter(Mandatory=$true, ParameterSetName="CloudService", HelpMessage="CloudService instance.")]
47-
[Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.CloudService] $CloudService
47+
[Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20210301.CloudService] $CloudService
4848
)
4949
process {
5050
$ApiVersion = "2020-06-01"

src/CloudService/custom/Get-AzCloudServicePublicIPAddress.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ function Get-AzCloudServicePublicIPAddress {
3838
[string] $CloudServiceName,
3939

4040
[Parameter(Mandatory=$true, ParameterSetName="CloudService", HelpMessage="CloudService instance.")]
41-
[Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.CloudService] $CloudService
41+
[Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20210301.CloudService] $CloudService
4242
)
4343
process {
4444
$ApiVersion = "2020-06-01"

src/CloudService/custom/New-AzCloudServiceDiagnosticsExtension.ps1

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,13 @@ Create a in-memory object for Diagnostics Extension
1919
Create a in-memory object for Diagnostics Extension
2020
2121
.Outputs
22-
Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.Extension
22+
Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20210301.Extension
23+
.Link
24+
https://docs.microsoft.com/powershell/module/az.CloudService/New-AzCloudServiceDiagnosticsExtension
2325
#>
2426

2527
function New-AzCloudServiceDiagnosticsExtension {
26-
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.Extension')]
28+
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20210301.Extension')]
2729
param(
2830
[Parameter(HelpMessage="Name of Diagnostics Extension.", Mandatory)]
2931
[string] $Name,

src/CloudService/custom/New-AzCloudServiceExtensionObject.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ Create a in-memory object for Extension
2020
Create a in-memory object for Extension
2121
2222
.Outputs
23-
Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.Extension
23+
Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20210301.Extension
2424
.Link
2525
https://docs.microsoft.com/powershell/module/az.CloudService/new-AzCloudServiceExtensionObject
2626
#>
2727
function New-AzCloudServiceExtensionObject {
28-
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.Extension')]
28+
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20210301.Extension')]
2929
[CmdletBinding(PositionalBinding=$false)]
3030
Param(
3131

@@ -56,7 +56,7 @@ function New-AzCloudServiceExtensionObject {
5656
)
5757

5858
process {
59-
$Object = [Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.Extension]::New()
59+
$Object = [Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20210301.Extension]::New()
6060

6161
$Object.AutoUpgradeMinorVersion = $AutoUpgradeMinorVersion
6262
$Object.Name = $Name

src/CloudService/custom/New-AzCloudServiceLoadBalancerConfigurationObject.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,25 +20,25 @@ Create a in-memory object for LoadBalancerConfiguration
2020
Create a in-memory object for LoadBalancerConfiguration
2121
2222
.Outputs
23-
Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.LoadBalancerConfiguration
23+
Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20210301.LoadBalancerConfiguration
2424
.Link
2525
https://docs.microsoft.com/powershell/module/az.CloudService/new-AzCloudServiceLoadBalancerConfigurationObject
2626
#>
2727
function New-AzCloudServiceLoadBalancerConfigurationObject {
28-
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.LoadBalancerConfiguration')]
28+
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20210301.LoadBalancerConfiguration')]
2929
[CmdletBinding(PositionalBinding=$false)]
3030
Param(
3131

3232
[Parameter(HelpMessage="FrontendIPConfiguration.")]
33-
[Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.ILoadBalancerFrontendIPConfiguration[]]
33+
[Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20210301.ILoadBalancerFrontendIPConfiguration[]]
3434
$FrontendIPConfiguration,
3535
[Parameter(HelpMessage="Name of LoadBalancerConfiguration.")]
3636
[string]
3737
$Name
3838
)
3939

4040
process {
41-
$Object = [Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.LoadBalancerConfiguration]::New()
41+
$Object = [Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20210301.LoadBalancerConfiguration]::New()
4242

4343
$Object.FrontendIPConfiguration = $FrontendIPConfiguration
4444
$Object.Name = $Name

src/CloudService/custom/New-AzCloudServiceLoadBalancerFrontendIPConfigurationObject.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ Create a in-memory object for LoadBalancerFrontendIPConfiguration
2020
Create a in-memory object for LoadBalancerFrontendIPConfiguration
2121
2222
.Outputs
23-
Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.LoadBalancerFrontendIPConfiguration
23+
Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20210301.LoadBalancerFrontendIPConfiguration
2424
.Link
2525
https://docs.microsoft.com/powershell/module/az.CloudService/new-AzCloudServiceLoadBalancerFrontendIPConfigurationObject
2626
#>
2727
function New-AzCloudServiceLoadBalancerFrontendIPConfigurationObject {
28-
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.LoadBalancerFrontendIPConfiguration')]
28+
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20210301.LoadBalancerFrontendIPConfiguration')]
2929
[CmdletBinding(PositionalBinding=$false)]
3030
Param(
3131

@@ -38,7 +38,7 @@ function New-AzCloudServiceLoadBalancerFrontendIPConfigurationObject {
3838
)
3939

4040
process {
41-
$Object = [Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.LoadBalancerFrontendIPConfiguration]::New()
41+
$Object = [Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20210301.LoadBalancerFrontendIPConfiguration]::New()
4242

4343
$Object.Name = $Name
4444
$Object.PublicIPAddressId = $PublicIPAddressId

0 commit comments

Comments
 (0)