Skip to content

Commit 769f979

Browse files
committed
Update cloudservice
1 parent 155ad42 commit 769f979

File tree

167 files changed

+3638
-4364
lines changed

Some content is hidden

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

167 files changed

+3638
-4364
lines changed

src/CloudService/Az.CloudService.psd1

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

99
@{
@@ -127,7 +127,7 @@ PrivateData = @{
127127
# IconUri = ''
128128

129129
# ReleaseNotes of this module
130-
ReleaseNotes = '* First preview release for module Az.CloudService.'
130+
# ReleaseNotes = ''
131131

132132
# Prerelease string of this module
133133
# Prerelease = ''

src/CloudService/Az.CloudService.psm1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,17 @@
2424
}
2525
}
2626
if(-not $accountsModule) {
27-
$hasAdequateVersion = (Get-Module -Name $accountsName -ListAvailable | Where-Object { $_.Version -ge [System.Version]'1.8.1' } | Measure-Object).Count -gt 0
27+
$hasAdequateVersion = (Get-Module -Name $accountsName -ListAvailable | Where-Object { $_.Version -ge [System.Version]'2.2.3' } | Measure-Object).Count -gt 0
2828
if($hasAdequateVersion) {
29-
$accountsModule = Import-Module -Name $accountsName -MinimumVersion 1.8.1 -Scope Global -PassThru
29+
$accountsModule = Import-Module -Name $accountsName -MinimumVersion 2.2.3 -Scope Global -PassThru
3030
}
3131
}
3232
}
3333

3434
if(-not $accountsModule) {
35-
Write-Error "`nThis module requires $accountsName version 1.8.1 or greater. For installation instructions, please see: https://docs.microsoft.com/en-us/powershell/azure/install-az-ps" -ErrorAction Stop
36-
} elseif (($accountsModule.Version -lt [System.Version]'1.8.1') -and (-not $localAccounts)) {
37-
Write-Error "`nThis module requires $accountsName version 1.8.1 or greater. An earlier version of Az.Accounts is imported in the current PowerShell session. If you are running test, please try to remove '.PSSharedModules' in your home directory. 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
35+
Write-Error "`nThis module requires $accountsName version 2.2.3 or greater. For installation instructions, please see: https://docs.microsoft.com/en-us/powershell/azure/install-az-ps" -ErrorAction Stop
36+
} elseif (($accountsModule.Version -lt [System.Version]'2.2.3') -and (-not $localAccounts)) {
37+
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 remove '.PSSharedModules' in your home directory. 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
3838
}
3939
Write-Information "Loaded Module '$($accountsModule.Name)'"
4040

src/CloudService/build-module.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ $null = New-Item -ItemType Directory -Force -Path $examplesFolder
122122

123123
if($NoDocs) {
124124
Write-Host -ForegroundColor Green 'Creating exports...'
125-
Export-ProxyCmdlet -ModuleName $moduleName -ModulePath $modulePaths -ExportsFolder $exportsFolder -InternalFolder $internalFolder -ExcludeDocs
125+
Export-ProxyCmdlet -ModuleName $moduleName -ModulePath $modulePaths -ExportsFolder $exportsFolder -InternalFolder $internalFolder -ExcludeDocs -ExamplesFolder $examplesFolder
126126
} else {
127127
Write-Host -ForegroundColor Green 'Creating exports and docs...'
128128
$moduleDescription = 'Microsoft Azure PowerShell: CloudService cmdlets'

src/CloudService/check-dependencies.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ if(Test-Path -Path $localModulesPath) {
4646
$env:PSModulePath = "$localModulesPath$([IO.Path]::PathSeparator)$env:PSModulePath"
4747
}
4848

49-
DownloadModule -predicate ($all -or $Accounts) -path $localModulesPath -moduleName 'Az.Accounts' -versionMinimum '1.8.1'
49+
DownloadModule -predicate ($all -or $Accounts) -path $localModulesPath -moduleName 'Az.Accounts' -versionMinimum '2.2.3'
5050
DownloadModule -predicate ($all -or $Pester) -path $localModulesPath -moduleName 'Pester' -requiredVersion '4.10.1'
5151

5252
$tools = Join-Path $PSScriptRoot 'tools'
@@ -56,7 +56,7 @@ $resourceModule = Join-Path $HOME '.PSSharedModules\Resources\Az.Resources.TestS
5656
if ($Resources.IsPresent -and (-not (Test-Path -Path $resourceModule))) {
5757
Write-Host -ForegroundColor Green "Building local Resource module used for test..."
5858
Set-Location $resourceDir
59-
$null = autorest-beta .\readme.md --output-folder=$HOME/.PSSharedModules/Resources
59+
$null = autorest .\readme.md --use:@autorest/powershell@3.0.414 --output-folder=$HOME/.PSSharedModules/Resources
6060
$null = Copy-Item custom/* $HOME/.PSSharedModules/Resources/custom/
6161
Set-Location $HOME/.PSSharedModules/Resources
6262
$null = .\build-module.ps1

src/CloudService/custom/Get-AzCloudServiceNetworkInterface.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Get the network interfaces of a cloud service.
1919
.Description
2020
Get the network interfaces of a cloud service.
2121
.Link
22-
https://docs.microsoft.com/en-us/powershell/module/az.cloudservice/get-AzCloudServiceNetworkInterfaces
22+
https://docs.microsoft.com/powershell/module/az.cloudservice/get-AzCloudServiceNetworkInterfaces
2323
#>
2424

2525
function Get-AzCloudServiceNetworkInterfaces {

src/CloudService/custom/Get-AzCloudServicePublicIPAddress.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Get the public IP address of a cloud service.
1919
.Description
2020
Get the public IP address of a cloud service.
2121
.Link
22-
https://docs.microsoft.com/en-us/powershell/module/az.cloudservice/get-AzCloudServicePublicIPAddress
22+
https://docs.microsoft.com/powershell/module/az.cloudservice/get-AzCloudServicePublicIPAddress
2323
#>
2424
function Get-AzCloudServicePublicIPAddress {
2525
param(

src/CloudService/custom/New-AzCloudServiceDiagnosticsExtension.ps1

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ Create a in-memory object for Diagnostics Extension
2020
2121
.Outputs
2222
Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.Extension
23-
.Link
24-
https://docs.microsoft.com/en-us/powershell/module/az.cloudservice/new-azcloudservicediagnosticsextension
2523
#>
2624

2725
function New-AzCloudServiceDiagnosticsExtension {

src/CloudService/custom/New-AzCloudServiceExtensionObject.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Create a in-memory object for Extension
2222
.Outputs
2323
Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.Extension
2424
.Link
25-
https://docs.microsoft.com/en-us/powershell/module/az.CloudService/new-AzCloudServiceExtensionObject
25+
https://docs.microsoft.com/powershell/module/az.CloudService/new-AzCloudServiceExtensionObject
2626
#>
2727
function New-AzCloudServiceExtensionObject {
2828
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.Extension')]

src/CloudService/custom/New-AzCloudServiceLoadBalancerConfigurationObject.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Create a in-memory object for LoadBalancerConfiguration
2222
.Outputs
2323
Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.LoadBalancerConfiguration
2424
.Link
25-
https://docs.microsoft.com/en-us/powershell/module/az.CloudService/new-AzCloudServiceLoadBalancerConfigurationObject
25+
https://docs.microsoft.com/powershell/module/az.CloudService/new-AzCloudServiceLoadBalancerConfigurationObject
2626
#>
2727
function New-AzCloudServiceLoadBalancerConfigurationObject {
2828
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.LoadBalancerConfiguration')]

src/CloudService/custom/New-AzCloudServiceLoadBalancerFrontendIPConfigurationObject.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Create a in-memory object for LoadBalancerFrontendIPConfiguration
2222
.Outputs
2323
Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.LoadBalancerFrontendIPConfiguration
2424
.Link
25-
https://docs.microsoft.com/en-us/powershell/module/az.CloudService/new-AzCloudServiceLoadBalancerFrontendIPConfigurationObject
25+
https://docs.microsoft.com/powershell/module/az.CloudService/new-AzCloudServiceLoadBalancerFrontendIPConfigurationObject
2626
#>
2727
function New-AzCloudServiceLoadBalancerFrontendIPConfigurationObject {
2828
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.LoadBalancerFrontendIPConfiguration')]

src/CloudService/custom/New-AzCloudServiceRemoteDesktopExtensionObject.ps1

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@
1717
Create a in-memory object for Remote Desktop Extension
1818
.Description
1919
Create a in-memory object for Remote Desktop Extension
20-
21-
.Outputs
22-
Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.Extension
23-
.Link
24-
https://docs.microsoft.com/en-us/powershell/module/az.CloudService/new-azcloudserviceremotedesktopextensionobject
2520
#>
2621

2722
function New-AzCloudServiceRemoteDesktopExtensionObject {

src/CloudService/custom/New-AzCloudServiceRoleProfilePropertiesObject.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Create a in-memory object for CloudServiceRoleProfileProperties
2222
.Outputs
2323
Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.CloudServiceRoleProfileProperties
2424
.Link
25-
https://docs.microsoft.com/en-us/powershell/module/az.CloudService/new-AzCloudServiceRoleProfilePropertiesObject
25+
https://docs.microsoft.com/powershell/module/az.CloudService/new-AzCloudServiceRoleProfilePropertiesObject
2626
#>
2727
function New-AzCloudServiceRoleProfilePropertiesObject {
2828
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.CloudServiceRoleProfileProperties')]

src/CloudService/custom/New-AzCloudServiceVaultSecretGroupObject.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Create a in-memory object for Secret Group
2121
.Outputs
2222
Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.CloudServiceVaultSecretGroup
2323
.Link
24-
https://docs.microsoft.com/en-us/powershell/module/az.CloudService/new-AzCloudServiceVaultSecretGroupObject
24+
https://docs.microsoft.com/powershell/module/az.CloudService/new-AzCloudServiceVaultSecretGroupObject
2525
#>
2626

2727
function New-AzCloudServiceVaultSecretGroupObject {

src/CloudService/custom/Serialization/GetAzCloudServiceRoleInstanceRemoteDesktopFile_Get.cs

Lines changed: 0 additions & 42 deletions
This file was deleted.

src/CloudService/custom/Switch-AzCloudService.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Swaps VIPs between two cloud service (extended support) load balancers.
2020
Swaps VIPs between two cloud service (extended support) load balancers.
2121
2222
.Link
23-
https://docs.microsoft.com/en-us/powershell/module/az.cloudservice/Switch-AzCloudService
23+
https://docs.microsoft.com/powershell/module/az.cloudservice/Switch-AzCloudService
2424
2525
#>
2626
function Switch-AzCloudService {

src/CloudService/custom/readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@ These provide functionality to our HTTP pipeline and other useful features. In s
3131

3232
### Attributes
3333
For processing the cmdlets, we've created some additional attributes:
34-
- `Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.DescriptionAttribute`
34+
- `Microsoft.Azure.PowerShell.Cmdlets.CloudService.DescriptionAttribute`
3535
- Used in C# cmdlets to provide a high-level description of the cmdlet. This is propegated to reference documentation via [help comments](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_comment_based_help) in the exported scripts.
36-
- `Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.DoNotExportAttribute`
36+
- `Microsoft.Azure.PowerShell.Cmdlets.CloudService.DoNotExportAttribute`
3737
- Used in C# and script cmdlets to suppress creating an exported cmdlet at build-time. These cmdlets will *not be exposed* by `Az.CloudService`.
38-
- `Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.InternalExportAttribute`
38+
- `Microsoft.Azure.PowerShell.Cmdlets.CloudService.InternalExportAttribute`
3939
- Used in C# cmdlets to route exported cmdlets to the `..\internal`, which are *not exposed* by `Az.CloudService`. For more information, see [readme.md](..\internal/readme.md) in the `..\internal` folder.
40-
- `Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.ProfileAttribute`
40+
- `Microsoft.Azure.PowerShell.Cmdlets.CloudService.ProfileAttribute`
4141
- Used in C# and script cmdlets to define which Azure profiles the cmdlet supports. This is only supported for Azure (`--azure`) modules.

src/CloudService/exports/Get-AzCloudService.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ INPUTOBJECT <ICloudServiceIdentity>: Identity Parameter
7373
[SubscriptionId <String>]: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
7474
[UpdateDomain <Int32?>]: Specifies an integer value that identifies the update domain. Update domains are identified with a zero-based index: the first update domain has an ID of 0, the second has an ID of 1, and so on.
7575
.Link
76-
https://docs.microsoft.com/en-us/powershell/module/az.cloudservice/get-azcloudservice
76+
https://docs.microsoft.com/powershell/module/az.cloudservice/get-azcloudservice
7777
#>
7878
function Get-AzCloudService {
7979
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.ICloudService])]

src/CloudService/exports/Get-AzCloudServiceInstanceView.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ PS C:\>$cloudServiceInstanceView.ToJsonString()
6969
.Outputs
7070
Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.ICloudServiceInstanceView
7171
.Link
72-
https://docs.microsoft.com/en-us/powershell/module/az.cloudservice/get-azcloudserviceinstanceview
72+
https://docs.microsoft.com/powershell/module/az.cloudservice/get-azcloudserviceinstanceview
7373
#>
7474
function Get-AzCloudServiceInstanceView {
7575
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.ICloudServiceInstanceView])]

src/CloudService/exports/Get-AzCloudServiceNetworkInterfaces.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ CLOUDSERVICE <CloudService>: CloudService instance.
7878
[(Any) <String>]: This indicates any property can be added to this object.
7979
[UpgradeMode <CloudServiceUpgradeMode?>]: Update mode for the cloud service. Role instances are allocated to update domains when the service is deployed. Updates can be initiated manually in each update domain or initiated automatically in all update domains. Possible Values are <br /><br />**Auto**<br /><br />**Manual** <br /><br />**Simultaneous**<br /><br /> If not specified, the default value is Auto. If set to Manual, PUT UpdateDomain must be called to apply the update. If set to Auto, the update is automatically applied to each update domain in sequence.
8080
.Link
81-
https://docs.microsoft.com/en-us/powershell/module/az.cloudservice/get-AzCloudServiceNetworkInterfaces
81+
https://docs.microsoft.com/powershell/module/az.cloudservice/get-AzCloudServiceNetworkInterfaces
8282
#>
8383
function Get-AzCloudServiceNetworkInterfaces {
8484
[CmdletBinding(DefaultParameterSetName='CloudServiceName', PositionalBinding=$false)]

src/CloudService/exports/Get-AzCloudServicePublicIPAddress.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ CLOUDSERVICE <CloudService>: CloudService instance.
7575
[(Any) <String>]: This indicates any property can be added to this object.
7676
[UpgradeMode <CloudServiceUpgradeMode?>]: Update mode for the cloud service. Role instances are allocated to update domains when the service is deployed. Updates can be initiated manually in each update domain or initiated automatically in all update domains. Possible Values are <br /><br />**Auto**<br /><br />**Manual** <br /><br />**Simultaneous**<br /><br /> If not specified, the default value is Auto. If set to Manual, PUT UpdateDomain must be called to apply the update. If set to Auto, the update is automatically applied to each update domain in sequence.
7777
.Link
78-
https://docs.microsoft.com/en-us/powershell/module/az.cloudservice/get-AzCloudServicePublicIPAddress
78+
https://docs.microsoft.com/powershell/module/az.cloudservice/get-AzCloudServicePublicIPAddress
7979
#>
8080
function Get-AzCloudServicePublicIPAddress {
8181
[CmdletBinding(DefaultParameterSetName='CloudServiceName', PositionalBinding=$false)]

src/CloudService/exports/Get-AzCloudServiceRoleInstance.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ INPUTOBJECT <ICloudServiceIdentity>: Identity Parameter
5454
[SubscriptionId <String>]: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
5555
[UpdateDomain <Int32?>]: Specifies an integer value that identifies the update domain. Update domains are identified with a zero-based index: the first update domain has an ID of 0, the second has an ID of 1, and so on.
5656
.Link
57-
https://docs.microsoft.com/en-us/powershell/module/az.cloudservice/get-azcloudserviceroleinstance
57+
https://docs.microsoft.com/powershell/module/az.cloudservice/get-azcloudserviceroleinstance
5858
#>
5959
function Get-AzCloudServiceRoleInstance {
6060
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.IRoleInstance])]

src/CloudService/exports/Get-AzCloudServiceRoleInstanceRemoteDesktopFile.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ PS C:\> Get-AzCloudServiceRoleInstanceRemoteDesktopFile -ResourceGroupName "Cont
2424
.Outputs
2525
System.Boolean
2626
.Link
27-
https://docs.microsoft.com/en-us/powershell/module/az.cloudservice/get-azcloudserviceroleinstanceremotedesktopfile
27+
https://docs.microsoft.com/powershell/module/az.cloudservice/get-azcloudserviceroleinstanceremotedesktopfile
2828
#>
2929
function Get-AzCloudServiceRoleInstanceRemoteDesktopFile {
3030
[OutputType([System.Boolean])]

src/CloudService/exports/Get-AzCloudServiceRoleInstanceView.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Statuses PlatformFaultDomain PlatformUpdateDomain
2929
.Outputs
3030
Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.IRoleInstanceView
3131
.Link
32-
https://docs.microsoft.com/en-us/powershell/module/az.cloudservice/get-azcloudserviceroleinstanceview
32+
https://docs.microsoft.com/powershell/module/az.cloudservice/get-azcloudserviceroleinstanceview
3333
#>
3434
function Get-AzCloudServiceRoleInstanceView {
3535
[OutputType([Microsoft.Azure.PowerShell.Cmdlets.CloudService.Models.Api20201001Preview.IRoleInstanceView])]

src/CloudService/exports/Invoke-AzCloudServiceRebuild.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ INPUTOBJECT <ICloudServiceIdentity>: Identity Parameter
4444
[SubscriptionId <String>]: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
4545
[UpdateDomain <Int32?>]: Specifies an integer value that identifies the update domain. Update domains are identified with a zero-based index: the first update domain has an ID of 0, the second has an ID of 1, and so on.
4646
.Link
47-
https://docs.microsoft.com/en-us/powershell/module/az.cloudservice/invoke-azcloudservicerebuild
47+
https://docs.microsoft.com/powershell/module/az.cloudservice/invoke-azcloudservicerebuild
4848
#>
4949
function Invoke-AzCloudServiceRebuild {
5050
[OutputType([System.Boolean])]

src/CloudService/exports/Invoke-AzCloudServiceReimage.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ INPUTOBJECT <ICloudServiceIdentity>: Identity Parameter
4242
[SubscriptionId <String>]: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
4343
[UpdateDomain <Int32?>]: Specifies an integer value that identifies the update domain. Update domains are identified with a zero-based index: the first update domain has an ID of 0, the second has an ID of 1, and so on.
4444
.Link
45-
https://docs.microsoft.com/en-us/powershell/module/az.cloudservice/invoke-azcloudservicereimage
45+
https://docs.microsoft.com/powershell/module/az.cloudservice/invoke-azcloudservicereimage
4646
#>
4747
function Invoke-AzCloudServiceReimage {
4848
[OutputType([System.Boolean])]

0 commit comments

Comments
 (0)