Skip to content
Closed
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
8 changes: 4 additions & 4 deletions sdk/compute/arm-compute/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5152,7 +5152,7 @@ export interface GalleryArtifactPublishingProfileBase {
endOfLifeDate?: Date;
/**
* Specifies the storage account type to be used to store the image. This property is not
* updatable. Possible values include: 'Standard_LRS', 'Standard_ZRS'
* updatable. Possible values include: 'Standard_LRS', 'Standard_ZRS', 'Premium_LRS'
*/
storageAccountType?: StorageAccountType;
}
Expand Down Expand Up @@ -5587,7 +5587,7 @@ export interface TargetRegion {
regionalReplicaCount?: number;
/**
* Specifies the storage account type to be used to store the image. This property is not
* updatable. Possible values include: 'Standard_LRS', 'Standard_ZRS'
* updatable. Possible values include: 'Standard_LRS', 'Standard_ZRS', 'Premium_LRS'
*/
storageAccountType?: StorageAccountType;
encryption?: EncryptionImages;
Expand Down Expand Up @@ -7032,11 +7032,11 @@ export type ReplicationState = 'Unknown' | 'Replicating' | 'Completed' | 'Failed

/**
* Defines values for StorageAccountType.
* Possible values include: 'Standard_LRS', 'Standard_ZRS'
* Possible values include: 'Standard_LRS', 'Standard_ZRS', 'Premium_LRS'
* @readonly
* @enum {string}
*/
export type StorageAccountType = 'Standard_LRS' | 'Standard_ZRS';
export type StorageAccountType = 'Standard_LRS' | 'Standard_ZRS' | 'Premium_LRS';

/**
* Defines values for HostCaching.
Expand Down