Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions sdk/storage/arm-storage/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -720,11 +720,11 @@ export interface GeoReplicationStats {
*/
export interface BlobRestoreRange {
/**
* Blob start range. Empty means account start.
* Blob start range. This is inclusive. Empty means account start.
*/
startRange: string;
/**
* Blob end range. Empty means account end.
* Blob end range. This is exclusive. Empty means account end.
*/
endRange: string;
}
Expand Down Expand Up @@ -1924,6 +1924,11 @@ export interface RestorePolicyProperties {
* DeleteRetentionPolicy.days.
*/
days?: number;
/**
* Returns the date and time the restore policy was last enabled.
* **NOTE: This property will not be serialized. It can only be populated by the server.**
*/
readonly lastEnabledTime?: Date;
}

/**
Expand Down
7 changes: 7 additions & 0 deletions sdk/storage/arm-storage/src/models/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3082,6 +3082,13 @@ export const RestorePolicyProperties: msRest.CompositeMapper = {
type: {
name: "Number"
}
},
lastEnabledTime: {
readOnly: true,
serializedName: "lastEnabledTime",
type: {
name: "DateTime"
}
}
}
}
Expand Down