Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR] compute/resource-manager #2685

Merged
merged 1 commit into from
Sep 13, 2018
Merged
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
22 changes: 19 additions & 3 deletions profiles/preview/compute/mgmt/compute/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,15 @@ const (
DiskCreateOptionTypesFromImage DiskCreateOptionTypes = original.DiskCreateOptionTypesFromImage
)

type DiskStorageAccountTypes = original.DiskStorageAccountTypes

const (
PremiumLRS DiskStorageAccountTypes = original.PremiumLRS
StandardLRS DiskStorageAccountTypes = original.StandardLRS
StandardSSDLRS DiskStorageAccountTypes = original.StandardSSDLRS
UltraSSDLRS DiskStorageAccountTypes = original.UltraSSDLRS
)

type HostCaching = original.HostCaching

const (
Expand Down Expand Up @@ -316,9 +325,9 @@ const (
type SnapshotStorageAccountTypes = original.SnapshotStorageAccountTypes

const (
PremiumLRS SnapshotStorageAccountTypes = original.PremiumLRS
StandardLRS SnapshotStorageAccountTypes = original.StandardLRS
StandardZRS SnapshotStorageAccountTypes = original.StandardZRS
SnapshotStorageAccountTypesPremiumLRS SnapshotStorageAccountTypes = original.SnapshotStorageAccountTypesPremiumLRS
SnapshotStorageAccountTypesStandardLRS SnapshotStorageAccountTypes = original.SnapshotStorageAccountTypesStandardLRS
SnapshotStorageAccountTypesStandardZRS SnapshotStorageAccountTypes = original.SnapshotStorageAccountTypesStandardZRS
)

type StatusLevelTypes = original.StatusLevelTypes
Expand All @@ -335,6 +344,7 @@ const (
StorageAccountTypesPremiumLRS StorageAccountTypes = original.StorageAccountTypesPremiumLRS
StorageAccountTypesStandardLRS StorageAccountTypes = original.StorageAccountTypesStandardLRS
StorageAccountTypesStandardSSDLRS StorageAccountTypes = original.StorageAccountTypesStandardSSDLRS
StorageAccountTypesUltraSSDLRS StorageAccountTypes = original.StorageAccountTypesUltraSSDLRS
)

type UpgradeMode = original.UpgradeMode
Expand Down Expand Up @@ -555,6 +565,7 @@ const (
)

type AccessURI = original.AccessURI
type AdditionalCapabilities = original.AdditionalCapabilities
type AdditionalUnattendContent = original.AdditionalUnattendContent
type APIEntityReference = original.APIEntityReference
type APIError = original.APIError
Expand Down Expand Up @@ -723,13 +734,15 @@ type Snapshot = original.Snapshot
type SnapshotList = original.SnapshotList
type SnapshotListIterator = original.SnapshotListIterator
type SnapshotListPage = original.SnapshotListPage
type SnapshotProperties = original.SnapshotProperties
type SnapshotsCreateOrUpdateFuture = original.SnapshotsCreateOrUpdateFuture
type SnapshotsDeleteFuture = original.SnapshotsDeleteFuture
type SnapshotsGrantAccessFuture = original.SnapshotsGrantAccessFuture
type SnapshotSku = original.SnapshotSku
type SnapshotsRevokeAccessFuture = original.SnapshotsRevokeAccessFuture
type SnapshotsUpdateFuture = original.SnapshotsUpdateFuture
type SnapshotUpdate = original.SnapshotUpdate
type SnapshotUpdateProperties = original.SnapshotUpdateProperties
type SourceVault = original.SourceVault
type SSHConfiguration = original.SSHConfiguration
type SSHPublicKey = original.SSHPublicKey
Expand Down Expand Up @@ -980,6 +993,9 @@ func PossibleDiskCreateOptionValues() []DiskCreateOption {
func PossibleDiskCreateOptionTypesValues() []DiskCreateOptionTypes {
return original.PossibleDiskCreateOptionTypesValues()
}
func PossibleDiskStorageAccountTypesValues() []DiskStorageAccountTypes {
return original.PossibleDiskStorageAccountTypesValues()
}
func PossibleHostCachingValues() []HostCaching {
return original.PossibleHostCachingValues()
}
Expand Down
16 changes: 8 additions & 8 deletions services/compute/mgmt/2018-06-01/compute/disks.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading