File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/azure-cli/azure/cli/command_modules/vm/tests/latest Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -12014,7 +12014,8 @@ def test_vm_trusted_launch_os_disk_secure_upload(self):
1201412014 ])
1201512015 self.cmd('disk grant-access -n {disk} -g {rg} --access-level Write --duration-in-seconds 86400', checks=[
1201612016 self.exists('accessSAS'),
12017- self.exists('securityDataAccessSAS')
12017+ self.exists('securityDataAccessSAS'),
12018+ self.exists('securityMetadataAccessSAS'),
1201812019 ])
1201912020
1202012021 self.cmd('disk create -n {disk1} -g {rg} --os-type Windows --hyper-v-generation v2 --security-type TrustedLaunch --upload-type UploadWithSecurityData --upload-size-bytes 34359738880 --sku standard_lrs', checks=[
@@ -12023,7 +12024,8 @@ def test_vm_trusted_launch_os_disk_secure_upload(self):
1202312024 ])
1202412025 self.cmd('disk grant-access -n {disk1} -g {rg} --access-level Write --duration-in-seconds 86400 --secure-vm-guest-state-sas', checks=[
1202512026 self.exists('accessSAS'),
12026- self.exists('securityDataAccessSAS')
12027+ self.exists('securityDataAccessSAS'),
12028+ self.exists('securityMetadataAccessSAS'),
1202712029 ])
1202812030
1202912031 self.cmd('disk create -n {disk2} -g {rg} --os-type Windows --hyper-v-generation v2 --upload-type Upload --upload-size-bytes 34359738880 --sku standard_lrs', checks=[
You can’t perform that action at this time.
0 commit comments