Skip to content

Commit 3b96f2f

Browse files
authored
Generated from beed92f79dacff0ce3d1a65d3ecf42449d17a47c (#5154)
Removed extra comma
1 parent fe62607 commit 3b96f2f

File tree

8 files changed

+2008
-0
lines changed

8 files changed

+2008
-0
lines changed

profiles/latest/compute/mgmt/compute/computeapi/models.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ import original "github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2019-03
2323

2424
type AvailabilitySetsClientAPI = original.AvailabilitySetsClientAPI
2525
type ContainerServicesClientAPI = original.ContainerServicesClientAPI
26+
type DedicatedHostGroupsClientAPI = original.DedicatedHostGroupsClientAPI
27+
type DedicatedHostsClientAPI = original.DedicatedHostsClientAPI
2628
type DisksClientAPI = original.DisksClientAPI
2729
type GalleriesClientAPI = original.GalleriesClientAPI
2830
type GalleryImageVersionsClientAPI = original.GalleryImageVersionsClientAPI

profiles/latest/compute/mgmt/compute/models.go

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,14 @@ const (
128128
StandardGS5 ContainerServiceVMSizeTypes = original.StandardGS5
129129
)
130130

131+
type DedicatedHostLicenseTypes = original.DedicatedHostLicenseTypes
132+
133+
const (
134+
DedicatedHostLicenseTypesNone DedicatedHostLicenseTypes = original.DedicatedHostLicenseTypesNone
135+
DedicatedHostLicenseTypesWindowsServerHybrid DedicatedHostLicenseTypes = original.DedicatedHostLicenseTypesWindowsServerHybrid
136+
DedicatedHostLicenseTypesWindowsServerPerpetual DedicatedHostLicenseTypes = original.DedicatedHostLicenseTypesWindowsServerPerpetual
137+
)
138+
131139
type DiffDiskOptions = original.DiffDiskOptions
132140

133141
const (
@@ -660,6 +668,27 @@ type ContainerServicesDeleteFuture = original.ContainerServicesDeleteFuture
660668
type CreationData = original.CreationData
661669
type DataDisk = original.DataDisk
662670
type DataDiskImage = original.DataDiskImage
671+
type DedicatedHost = original.DedicatedHost
672+
type DedicatedHostAllocatableVM = original.DedicatedHostAllocatableVM
673+
type DedicatedHostAvailableCapacity = original.DedicatedHostAvailableCapacity
674+
type DedicatedHostCapacity = original.DedicatedHostCapacity
675+
type DedicatedHostGroup = original.DedicatedHostGroup
676+
type DedicatedHostGroupListResult = original.DedicatedHostGroupListResult
677+
type DedicatedHostGroupListResultIterator = original.DedicatedHostGroupListResultIterator
678+
type DedicatedHostGroupListResultPage = original.DedicatedHostGroupListResultPage
679+
type DedicatedHostGroupProperties = original.DedicatedHostGroupProperties
680+
type DedicatedHostGroupUpdate = original.DedicatedHostGroupUpdate
681+
type DedicatedHostGroupsClient = original.DedicatedHostGroupsClient
682+
type DedicatedHostInstanceView = original.DedicatedHostInstanceView
683+
type DedicatedHostListResult = original.DedicatedHostListResult
684+
type DedicatedHostListResultIterator = original.DedicatedHostListResultIterator
685+
type DedicatedHostListResultPage = original.DedicatedHostListResultPage
686+
type DedicatedHostProperties = original.DedicatedHostProperties
687+
type DedicatedHostUpdate = original.DedicatedHostUpdate
688+
type DedicatedHostsClient = original.DedicatedHostsClient
689+
type DedicatedHostsCreateOrUpdateFuture = original.DedicatedHostsCreateOrUpdateFuture
690+
type DedicatedHostsDeleteFuture = original.DedicatedHostsDeleteFuture
691+
type DedicatedHostsUpdateFuture = original.DedicatedHostsUpdateFuture
663692
type DiagnosticsProfile = original.DiagnosticsProfile
664693
type DiffDiskSettings = original.DiffDiskSettings
665694
type Disallowed = original.Disallowed
@@ -1024,6 +1053,30 @@ func NewContainerServicesClient(subscriptionID string) ContainerServicesClient {
10241053
func NewContainerServicesClientWithBaseURI(baseURI string, subscriptionID string) ContainerServicesClient {
10251054
return original.NewContainerServicesClientWithBaseURI(baseURI, subscriptionID)
10261055
}
1056+
func NewDedicatedHostGroupListResultIterator(page DedicatedHostGroupListResultPage) DedicatedHostGroupListResultIterator {
1057+
return original.NewDedicatedHostGroupListResultIterator(page)
1058+
}
1059+
func NewDedicatedHostGroupListResultPage(getNextPage func(context.Context, DedicatedHostGroupListResult) (DedicatedHostGroupListResult, error)) DedicatedHostGroupListResultPage {
1060+
return original.NewDedicatedHostGroupListResultPage(getNextPage)
1061+
}
1062+
func NewDedicatedHostGroupsClient(subscriptionID string) DedicatedHostGroupsClient {
1063+
return original.NewDedicatedHostGroupsClient(subscriptionID)
1064+
}
1065+
func NewDedicatedHostGroupsClientWithBaseURI(baseURI string, subscriptionID string) DedicatedHostGroupsClient {
1066+
return original.NewDedicatedHostGroupsClientWithBaseURI(baseURI, subscriptionID)
1067+
}
1068+
func NewDedicatedHostListResultIterator(page DedicatedHostListResultPage) DedicatedHostListResultIterator {
1069+
return original.NewDedicatedHostListResultIterator(page)
1070+
}
1071+
func NewDedicatedHostListResultPage(getNextPage func(context.Context, DedicatedHostListResult) (DedicatedHostListResult, error)) DedicatedHostListResultPage {
1072+
return original.NewDedicatedHostListResultPage(getNextPage)
1073+
}
1074+
func NewDedicatedHostsClient(subscriptionID string) DedicatedHostsClient {
1075+
return original.NewDedicatedHostsClient(subscriptionID)
1076+
}
1077+
func NewDedicatedHostsClientWithBaseURI(baseURI string, subscriptionID string) DedicatedHostsClient {
1078+
return original.NewDedicatedHostsClientWithBaseURI(baseURI, subscriptionID)
1079+
}
10271080
func NewDiskListIterator(page DiskListPage) DiskListIterator {
10281081
return original.NewDiskListIterator(page)
10291082
}
@@ -1276,6 +1329,9 @@ func PossibleContainerServiceOrchestratorTypesValues() []ContainerServiceOrchest
12761329
func PossibleContainerServiceVMSizeTypesValues() []ContainerServiceVMSizeTypes {
12771330
return original.PossibleContainerServiceVMSizeTypesValues()
12781331
}
1332+
func PossibleDedicatedHostLicenseTypesValues() []DedicatedHostLicenseTypes {
1333+
return original.PossibleDedicatedHostLicenseTypesValues()
1334+
}
12791335
func PossibleDiffDiskOptionsValues() []DiffDiskOptions {
12801336
return original.PossibleDiffDiskOptionsValues()
12811337
}

profiles/preview/compute/mgmt/compute/computeapi/models.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ import original "github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2019-03
2323

2424
type AvailabilitySetsClientAPI = original.AvailabilitySetsClientAPI
2525
type ContainerServicesClientAPI = original.ContainerServicesClientAPI
26+
type DedicatedHostGroupsClientAPI = original.DedicatedHostGroupsClientAPI
27+
type DedicatedHostsClientAPI = original.DedicatedHostsClientAPI
2628
type DisksClientAPI = original.DisksClientAPI
2729
type GalleriesClientAPI = original.GalleriesClientAPI
2830
type GalleryImageVersionsClientAPI = original.GalleryImageVersionsClientAPI

profiles/preview/compute/mgmt/compute/models.go

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,14 @@ const (
128128
StandardGS5 ContainerServiceVMSizeTypes = original.StandardGS5
129129
)
130130

131+
type DedicatedHostLicenseTypes = original.DedicatedHostLicenseTypes
132+
133+
const (
134+
DedicatedHostLicenseTypesNone DedicatedHostLicenseTypes = original.DedicatedHostLicenseTypesNone
135+
DedicatedHostLicenseTypesWindowsServerHybrid DedicatedHostLicenseTypes = original.DedicatedHostLicenseTypesWindowsServerHybrid
136+
DedicatedHostLicenseTypesWindowsServerPerpetual DedicatedHostLicenseTypes = original.DedicatedHostLicenseTypesWindowsServerPerpetual
137+
)
138+
131139
type DiffDiskOptions = original.DiffDiskOptions
132140

133141
const (
@@ -660,6 +668,27 @@ type ContainerServicesDeleteFuture = original.ContainerServicesDeleteFuture
660668
type CreationData = original.CreationData
661669
type DataDisk = original.DataDisk
662670
type DataDiskImage = original.DataDiskImage
671+
type DedicatedHost = original.DedicatedHost
672+
type DedicatedHostAllocatableVM = original.DedicatedHostAllocatableVM
673+
type DedicatedHostAvailableCapacity = original.DedicatedHostAvailableCapacity
674+
type DedicatedHostCapacity = original.DedicatedHostCapacity
675+
type DedicatedHostGroup = original.DedicatedHostGroup
676+
type DedicatedHostGroupListResult = original.DedicatedHostGroupListResult
677+
type DedicatedHostGroupListResultIterator = original.DedicatedHostGroupListResultIterator
678+
type DedicatedHostGroupListResultPage = original.DedicatedHostGroupListResultPage
679+
type DedicatedHostGroupProperties = original.DedicatedHostGroupProperties
680+
type DedicatedHostGroupUpdate = original.DedicatedHostGroupUpdate
681+
type DedicatedHostGroupsClient = original.DedicatedHostGroupsClient
682+
type DedicatedHostInstanceView = original.DedicatedHostInstanceView
683+
type DedicatedHostListResult = original.DedicatedHostListResult
684+
type DedicatedHostListResultIterator = original.DedicatedHostListResultIterator
685+
type DedicatedHostListResultPage = original.DedicatedHostListResultPage
686+
type DedicatedHostProperties = original.DedicatedHostProperties
687+
type DedicatedHostUpdate = original.DedicatedHostUpdate
688+
type DedicatedHostsClient = original.DedicatedHostsClient
689+
type DedicatedHostsCreateOrUpdateFuture = original.DedicatedHostsCreateOrUpdateFuture
690+
type DedicatedHostsDeleteFuture = original.DedicatedHostsDeleteFuture
691+
type DedicatedHostsUpdateFuture = original.DedicatedHostsUpdateFuture
663692
type DiagnosticsProfile = original.DiagnosticsProfile
664693
type DiffDiskSettings = original.DiffDiskSettings
665694
type Disallowed = original.Disallowed
@@ -1024,6 +1053,30 @@ func NewContainerServicesClient(subscriptionID string) ContainerServicesClient {
10241053
func NewContainerServicesClientWithBaseURI(baseURI string, subscriptionID string) ContainerServicesClient {
10251054
return original.NewContainerServicesClientWithBaseURI(baseURI, subscriptionID)
10261055
}
1056+
func NewDedicatedHostGroupListResultIterator(page DedicatedHostGroupListResultPage) DedicatedHostGroupListResultIterator {
1057+
return original.NewDedicatedHostGroupListResultIterator(page)
1058+
}
1059+
func NewDedicatedHostGroupListResultPage(getNextPage func(context.Context, DedicatedHostGroupListResult) (DedicatedHostGroupListResult, error)) DedicatedHostGroupListResultPage {
1060+
return original.NewDedicatedHostGroupListResultPage(getNextPage)
1061+
}
1062+
func NewDedicatedHostGroupsClient(subscriptionID string) DedicatedHostGroupsClient {
1063+
return original.NewDedicatedHostGroupsClient(subscriptionID)
1064+
}
1065+
func NewDedicatedHostGroupsClientWithBaseURI(baseURI string, subscriptionID string) DedicatedHostGroupsClient {
1066+
return original.NewDedicatedHostGroupsClientWithBaseURI(baseURI, subscriptionID)
1067+
}
1068+
func NewDedicatedHostListResultIterator(page DedicatedHostListResultPage) DedicatedHostListResultIterator {
1069+
return original.NewDedicatedHostListResultIterator(page)
1070+
}
1071+
func NewDedicatedHostListResultPage(getNextPage func(context.Context, DedicatedHostListResult) (DedicatedHostListResult, error)) DedicatedHostListResultPage {
1072+
return original.NewDedicatedHostListResultPage(getNextPage)
1073+
}
1074+
func NewDedicatedHostsClient(subscriptionID string) DedicatedHostsClient {
1075+
return original.NewDedicatedHostsClient(subscriptionID)
1076+
}
1077+
func NewDedicatedHostsClientWithBaseURI(baseURI string, subscriptionID string) DedicatedHostsClient {
1078+
return original.NewDedicatedHostsClientWithBaseURI(baseURI, subscriptionID)
1079+
}
10271080
func NewDiskListIterator(page DiskListPage) DiskListIterator {
10281081
return original.NewDiskListIterator(page)
10291082
}
@@ -1276,6 +1329,9 @@ func PossibleContainerServiceOrchestratorTypesValues() []ContainerServiceOrchest
12761329
func PossibleContainerServiceVMSizeTypesValues() []ContainerServiceVMSizeTypes {
12771330
return original.PossibleContainerServiceVMSizeTypesValues()
12781331
}
1332+
func PossibleDedicatedHostLicenseTypesValues() []DedicatedHostLicenseTypes {
1333+
return original.PossibleDedicatedHostLicenseTypesValues()
1334+
}
12791335
func PossibleDiffDiskOptionsValues() []DiffDiskOptions {
12801336
return original.PossibleDiffDiskOptionsValues()
12811337
}

services/compute/mgmt/2019-03-01/compute/computeapi/interfaces.go

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)