You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Set this flag to true to get a boost on the performance target of the disk deployed, see here on the respective performance target. This flag can only be set on disk creation time and cannot be disabled after enabled. */
2862
2862
performancePlus?: boolean;
2863
+
/** Required if createOption is CopyFromSanSnapshot. This is the ARM id of the source elastic san volume snapshot. */
2864
+
elasticSanResourceId?: string;
2863
2865
}
2864
2866
2865
2867
/** The source image used for creating the disk. */
@@ -5562,6 +5564,11 @@ export interface Disk extends Resource {
5562
5564
dataAccessAuthMode?: DataAccessAuthMode;
5563
5565
/** Setting this property to true improves reliability and performance of data disks that are frequently (more than 5 times a day) by detached from one virtual machine and attached to another. This property should not be set for disks that are not detached and attached frequently as it causes the disks to not align with the fault domain of the virtual machine. */
5564
5566
optimizedForFrequentAttach?: boolean;
5567
+
/**
5568
+
* The UTC time when the ownership state of the disk was last changed i.e., the time the disk was last attached or detached from a VM or the time when the VM to which the disk was attached was deallocated or started.
5569
+
* NOTE: This property will not be serialized. It can only be populated by the server.
/** Similar to Import create option. Create a new Trusted Launch VM or Confidential VM supported disk by importing additional blob for VM guest state specified by securityDataUri in storage account specified by storageAccountId */
8380
8387
ImportSecure = "ImportSecure",
8381
8388
/** Similar to Upload create option. Create a new Trusted Launch VM or Confidential VM supported disk and upload using write token in both disk and VM guest state */
8382
-
UploadPreparedSecure = "UploadPreparedSecure"
8389
+
UploadPreparedSecure = "UploadPreparedSecure",
8390
+
/** Create a new disk by exporting from elastic san volume snapshot */
* **Upload**: Create a new disk by obtaining a write token and using it to directly upload the contents of the disk. \
8397
8406
* **CopyStart**: Create a new disk by using a deep copy process, where the resource creation is considered complete only after all data has been copied from the source. \
8398
8407
* **ImportSecure**: Similar to Import create option. Create a new Trusted Launch VM or Confidential VM supported disk by importing additional blob for VM guest state specified by securityDataUri in storage account specified by storageAccountId \
8399
-
* **UploadPreparedSecure**: Similar to Upload create option. Create a new Trusted Launch VM or Confidential VM supported disk and upload using write token in both disk and VM guest state
8408
+
* **UploadPreparedSecure**: Similar to Upload create option. Create a new Trusted Launch VM or Confidential VM supported disk and upload using write token in both disk and VM guest state \
8409
+
* **CopyFromSanSnapshot**: Create a new disk by exporting from elastic san volume snapshot
0 commit comments