@@ -750,7 +750,7 @@ export interface Volume extends BaseResource {
750750 */
751751 exportPolicy ?: VolumePropertiesExportPolicy ;
752752 /**
753- * protocolTypes. Set of protocol types, default NFSv3, CIFS fro SMB protocol
753+ * protocolTypes. Set of protocol types, default NFSv3, CIFS for SMB protocol
754754 */
755755 protocolTypes ?: string [ ] ;
756756 /**
@@ -1395,10 +1395,10 @@ export interface Backup extends BaseResource {
13951395 */
13961396 label ?: string ;
13971397 /**
1398- * Type of backup adhoc or scheduled
1398+ * backupType. Type of backup Manual or Scheduled. Possible values include: 'Manual', 'Scheduled'
13991399 * **NOTE: This property will not be serialized. It can only be populated by the server.**
14001400 */
1401- readonly backupType ?: string ;
1401+ readonly backupType ?: BackupType ;
14021402 /**
14031403 * Failure reason
14041404 * **NOTE: This property will not be serialized. It can only be populated by the server.**
@@ -1444,10 +1444,10 @@ export interface BackupPatch extends BaseResource {
14441444 */
14451445 label ?: string ;
14461446 /**
1447- * Type of backup adhoc or scheduled
1447+ * backupType. Type of backup Manual or Scheduled. Possible values include: 'Manual', 'Scheduled'
14481448 * **NOTE: This property will not be serialized. It can only be populated by the server.**
14491449 */
1450- readonly backupType ?: string ;
1450+ readonly backupType ?: BackupType ;
14511451 /**
14521452 * Failure reason
14531453 * **NOTE: This property will not be serialized. It can only be populated by the server.**
@@ -2043,6 +2043,14 @@ export type RelationshipStatus = 'Idle' | 'Transferring';
20432043 */
20442044export type MirrorState = 'Uninitialized' | 'Mirrored' | 'Broken' ;
20452045
2046+ /**
2047+ * Defines values for BackupType.
2048+ * Possible values include: 'Manual', 'Scheduled'
2049+ * @readonly
2050+ * @enum {string}
2051+ */
2052+ export type BackupType = 'Manual' | 'Scheduled' ;
2053+
20462054/**
20472055 * Contains response data for the list operation.
20482056 */
0 commit comments