@@ -181,25 +181,18 @@ function Set-AzsRegistration{
181
181
' CustomCloud' = ' westcentralus' }[$AzureContext.Environment.Name ],
182
182
183
183
[Parameter (Mandatory = $false )]
184
- [ValidateSet (' Capacity' , ' PayAsYouUse' , ' Development' , ' Custom ' )]
184
+ [ValidateSet (' Capacity' , ' PayAsYouUse' , ' Development' )]
185
185
[string ] $BillingModel = ' Development' ,
186
186
187
187
[Parameter (Mandatory = $false )]
188
188
[switch ] $MarketplaceSyndicationEnabled = $true ,
189
189
190
190
[Parameter (Mandatory = $false )]
191
- [switch ] $UsageReportingEnabled = @ {' Capacity' = $true ;
192
- ' PayAsYouUse' = $true ;
193
- ' Development' = $true ;
194
- ' Custom' = $false }[$BillingModel ],
191
+ [switch ] $UsageReportingEnabled = $true ,
195
192
196
193
[Parameter (Mandatory = $false )]
197
194
[ValidateNotNull ()]
198
- [string ] $AgreementNumber ,
199
-
200
- [Parameter (Mandatory = $false )]
201
- [ValidateNotNull ()]
202
- [string ] $MsAssetTag
195
+ [string ] $AgreementNumber
203
196
)
204
197
# requires -Version 4.0
205
198
# requires -Modules @ {ModuleName = " AzureRM.Profile" ; ModuleVersion = " 1.0.4.4" }
@@ -229,7 +222,6 @@ function Set-AzsRegistration{
229
222
MarketplaceSyndicationEnabled = $MarketplaceSyndicationEnabled
230
223
UsageReportingEnabled = $UsageReportingEnabled
231
224
AgreementNumber = $AgreementNumber
232
- MsAssetTag = $MsAssetTag
233
225
}
234
226
Log- Output " Get-RegistrationToken parameters: $ ( ConvertTo-Json $getTokenParams ) "
235
227
if (($BillingModel -eq ' Capacity' ) -and ($UsageReportingEnabled ))
@@ -464,7 +456,7 @@ Function Get-AzsRegistrationToken{
464
456
[String ] $PrivilegedEndpoint ,
465
457
466
458
[Parameter (Mandatory = $true )]
467
- [ValidateSet (' Capacity' , ' Development' , ' Custom ' )]
459
+ [ValidateSet (' Capacity' , ' Development' )]
468
460
[string ] $BillingModel = ' Capacity' ,
469
461
470
462
[Parameter (Mandatory = $false )]
@@ -479,11 +471,7 @@ Function Get-AzsRegistrationToken{
479
471
480
472
[Parameter (Mandatory = $false )]
481
473
[ValidateNotNull ()]
482
- [string ] $AgreementNumber ,
483
-
484
- [Parameter (Mandatory = $false )]
485
- [ValidateNotNull ()]
486
- [string ] $MsAssetTag
474
+ [string ] $AgreementNumber
487
475
)
488
476
# requires -Version 4.0
489
477
# requires -RunAsAdministrator
@@ -528,7 +516,6 @@ Function Get-AzsRegistrationToken{
528
516
UsageReportingEnabled = $UsageReportingEnabled
529
517
AgreementNumber = $AgreementNumber
530
518
TokenOutputFilePath = $TokenOutputFilePath
531
- MsAssetTag = $MsAssetTag
532
519
}
533
520
534
521
Log- Output " Registration action params: $ ( ConvertTo-Json $params ) "
@@ -1059,7 +1046,7 @@ Function Get-RegistrationToken{
1059
1046
[String ] $PrivilegedEndpoint ,
1060
1047
1061
1048
[Parameter (Mandatory = $false )]
1062
- [ValidateSet (' Capacity' , ' PayAsYouUse' , ' Development' , ' Custom ' )]
1049
+ [ValidateSet (' Capacity' , ' PayAsYouUse' , ' Development' )]
1063
1050
[string ] $BillingModel = ' Development' ,
1064
1051
1065
1052
[Parameter (Mandatory = $false )]
@@ -1079,11 +1066,7 @@ Function Get-RegistrationToken{
1079
1066
[PSObject ] $StampInfo ,
1080
1067
1081
1068
[Parameter (Mandatory = $false )]
1082
- [String ] $TokenOutputFilePath ,
1083
-
1084
- [Parameter (Mandatory = $false )]
1085
- [ValidateNotNull ()]
1086
- [string ] $MsAssetTag
1069
+ [String ] $TokenOutputFilePath
1087
1070
)
1088
1071
1089
1072
if (-not $StampInfo )
@@ -1099,7 +1082,7 @@ Function Get-RegistrationToken{
1099
1082
try
1100
1083
{
1101
1084
Log- Output " Creating registration token. Attempt $currentAttempt of $maxAttempt "
1102
- $registrationToken = Invoke-Command - Session $session - ScriptBlock { New-RegistrationToken - BillingModel $using :BillingModel - MarketplaceSyndicationEnabled:$using :MarketplaceSyndicationEnabled - UsageReportingEnabled:$using :UsageReportingEnabled - AgreementNumber $using :AgreementNumber - MsAssetTag $ using :MsAssetTag }
1085
+ $registrationToken = Invoke-Command - Session $session - ScriptBlock { New-RegistrationToken - BillingModel $using :BillingModel - MarketplaceSyndicationEnabled:$using :MarketplaceSyndicationEnabled - UsageReportingEnabled:$using :UsageReportingEnabled - AgreementNumber $using :AgreementNumber }
1103
1086
if ($TokenOutputFilePath )
1104
1087
{
1105
1088
Log- Output " Registration token will be written to: $TokenOutputFilePath "
0 commit comments