@@ -42,19 +42,17 @@ function New-BcEnvironment {
42
42
[string ] $ringName = " PROD" ,
43
43
[string ] $applicationVersion = " " ,
44
44
[string ] $applicationInsightsKey = " " ,
45
- [string ] $apiVersion = " v2.3 " ,
45
+ [string ] $apiVersion = " v2.18 " ,
46
46
[switch ] $doNotWait
47
47
)
48
48
49
49
$telemetryScope = InitTelemetryScope - name $MyInvocation.InvocationName - parameterValues $PSBoundParameters - includeParameters @ ()
50
50
try {
51
+ $bcAuthContext = Renew- BcAuthContext - bcAuthContext $bcAuthContext
51
52
Wait-BcEnvironmentsReady - environments @ ($environment ) - bcAuthContext $bcAuthContext - apiVersion $apiVersion - applicationFamily $applicationFamily
52
53
53
- $bcAuthContext = Renew- BcAuthContext - bcAuthContext $bcAuthContext
54
- $bearerAuthValue = " Bearer $ ( $bcAuthContext.AccessToken ) "
55
- $headers = @ {
56
- " Authorization" = $bearerAuthValue
57
- }
54
+ $bcAuthContext , $headers , $endPointURL = Create- SaasUrl - bcAuthContext $authContext - applicationFamily $applicationFamily - apiVersion $apiVersion
55
+
58
56
$body = @ {}
59
57
" environmentType" , " countryCode" , " applicationVersion" , " ringName" | % {
60
58
$var = Get-Variable - Name $_ - ErrorAction SilentlyContinue
@@ -64,16 +62,6 @@ function New-BcEnvironment {
64
62
}
65
63
}
66
64
}
67
- $endPointURL = " $ ( $bcContainerHelperConfig.apiBaseUrl.TrimEnd (' /' )) /admin/$apiVersion "
68
- if (($null -ne $applicationFamily ) -and ($applicationFamily -ne " " )) {
69
- $endPointURL += " /applications/$applicationFamily "
70
- }
71
- if (($null -ne $environment ) -and ($environment -ne " " )) {
72
- $endPointURL += " /environments/$environment "
73
- }
74
- else {
75
- $endPointURL += " /environments"
76
- }
77
65
78
66
Write-Host " Submitting new environment request for $applicationFamily /$environment "
79
67
$body | ConvertTo-Json | Out-Host
@@ -93,6 +81,7 @@ function New-BcEnvironment {
93
81
do {
94
82
Start-Sleep - Seconds 2
95
83
Write-Host - NoNewline " ."
84
+ $bcAuthContext = Renew- BcAuthContext - bcAuthContext $bcAuthContext
96
85
$Operation = (Get-BcEnvironmentsOperations - bcAuthContext $bcAuthContext - apiVersion $apiVersion - applicationFamily $applicationFamily | Where-Object { ($_.productFamily -eq $applicationFamily ) -and ($_.type -eq $environmentResult.type ) -and ($_.id -eq $environmentResult.id ) })
97
86
} while ($Operation.status -in " queued" , " scheduled" , " running" )
98
87
Write-Host $Operation.status
0 commit comments