File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/DataBox/DataBox.Autorest/test Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,15 +12,15 @@ while(-not $mockingPath) {
1212. ($mockingPath | Select-Object - First 1 ).FullName
1313
1414Describe ' Update-AzDataBoxJob' {
15- It ' Microsoft managed to customer managed system assigned' - Skip {
15+ It ' Microsoft managed to customer managed system assigned' {
1616 $contactDetail = New-AzDataBoxContactDetailsObject - ContactName $env.ContactName - EmailList $env.EmailList - Phone $env.Phone
1717 $ShippingDetails = New-AzDataBoxShippingAddressObject - StreetAddress1 $env.StreetAddress1 - StateOrProvince $env.StateOrProvince - Country $env.Country - City $env.City - PostalCode $env.PostalCode - AddressType $env.AddressType
1818 Update-AzDataBoxJob - Name $env.JobName - ResourceGroupName $env.ResourceGroup - SubscriptionId $env.SubscriptionId - ContactDetail $contactDetail - ShippingAddress $ShippingDetails - EnableSystemAssignedIdentity $true
1919 $keyEncryptionDetails = New-AzDataBoxKeyEncryptionKeyObject - KekType " CustomerManaged" - IdentityProperty @ {Type = " SystemAssigned" } - KekUrl $env.KekUrl - KekVaultResourceId $env.KekVaultResourceId
2020 Update-AzDataBoxJob - Name $env.JobName - ResourceGroupName $env.ResourceGroup - SubscriptionId $env.SubscriptionId - KeyEncryptionKey $keyEncryptionDetails - ContactDetail $contactDetail - ShippingAddress $ShippingDetails - EnableSystemAssignedIdentity $true
2121
2222 }
23- It ' System assigned to user assigned' - Skip {
23+ It ' System assigned to user assigned' {
2424 $keyEncryptionDetails = New-AzDataBoxKeyEncryptionKeyObject - KekType " CustomerManaged" - IdentityProperty @ {Type = " UserAssigned" ; UserAssignedResourceId = $env.UserAssignedResourceId } - KekUrl $env.KekUrl - KekVaultResourceId $env.KekVaultResourceId
2525 Update-AzDataBoxJob - Name $env.JobName - ResourceGroupName $env.ResourceGroup - SubscriptionId $env.SubscriptionId - KeyEncryptionKey $keyEncryptionDetails - ContactDetail $contactDetail - ShippingAddress $ShippingDetails - EnableSystemAssignedIdentity $true - UserAssignedIdentity $env.UserAssignedResourceId
2626 }
You can’t perform that action at this time.
0 commit comments