Skip to content

Commit

Permalink
[AutoPR batch/data-plane] [Batch] Add new data plane verison 2019-06-…
Browse files Browse the repository at this point in the history
…01 (Azure#4876)

* Generated from 1143452831aa606810a3cb4ff1c16ba263845004

Add new data plane version 2019-06-01

* Generated from 8ad857526957431e98e0b557fb7bcacdbfd5eb02

Add new data plane version 2019-06-01

* Generated from b0493535fd9ed2131d59963241b2009341fd217f

Add new data plane version 2019-06-01

* Generated from b0493535fd9ed2131d59963241b2009341fd217f

Add new data plane version 2019-06-01
  • Loading branch information
AutorestCI authored and jhendrixMSFT committed Jun 10, 2019
1 parent 6ea4ce7 commit b433970
Show file tree
Hide file tree
Showing 17 changed files with 15,104 additions and 20 deletions.
2 changes: 1 addition & 1 deletion profiles/latest/batch/batch/batchapi/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

package batchapi

import original "github.com/Azure/azure-sdk-for-go/services/batch/2018-12-01.8.0/batch/batchapi"
import original "github.com/Azure/azure-sdk-for-go/services/batch/2019-06-01.9.0/batch/batchapi"

type AccountClientAPI = original.AccountClientAPI
type ApplicationClientAPI = original.ApplicationClientAPI
Expand Down
38 changes: 29 additions & 9 deletions profiles/latest/batch/batch/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ package batch
import (
"context"

original "github.com/Azure/azure-sdk-for-go/services/batch/2018-12-01.8.0/batch"
original "github.com/Azure/azure-sdk-for-go/services/batch/2019-06-01.9.0/batch"
)

type AccessScope = original.AccessScope
Expand Down Expand Up @@ -136,6 +136,13 @@ const (
WaitingForStartTask ComputeNodeState = original.WaitingForStartTask
)

type ContainerWorkingDirectory = original.ContainerWorkingDirectory

const (
ContainerImageDefault ContainerWorkingDirectory = original.ContainerImageDefault
TaskWorkingDirectory ContainerWorkingDirectory = original.TaskWorkingDirectory
)

type DependencyAction = original.DependencyAction

const (
Expand Down Expand Up @@ -341,10 +348,17 @@ const (
TaskStateRunning TaskState = original.TaskStateRunning
)

type VerificationType = original.VerificationType

const (
Unverified VerificationType = original.Unverified
Verified VerificationType = original.Verified
)

type AccountClient = original.AccountClient
type AccountListNodeAgentSkusResult = original.AccountListNodeAgentSkusResult
type AccountListNodeAgentSkusResultIterator = original.AccountListNodeAgentSkusResultIterator
type AccountListNodeAgentSkusResultPage = original.AccountListNodeAgentSkusResultPage
type AccountListSupportedImagesResult = original.AccountListSupportedImagesResult
type AccountListSupportedImagesResultIterator = original.AccountListSupportedImagesResultIterator
type AccountListSupportedImagesResultPage = original.AccountListSupportedImagesResultPage
type AffinityInformation = original.AffinityInformation
type ApplicationClient = original.ApplicationClient
type ApplicationListResult = original.ApplicationListResult
Expand Down Expand Up @@ -410,6 +424,7 @@ type ExitConditions = original.ExitConditions
type ExitOptions = original.ExitOptions
type FileClient = original.FileClient
type FileProperties = original.FileProperties
type ImageInformation = original.ImageInformation
type ImageReference = original.ImageReference
type InboundEndpoint = original.InboundEndpoint
type InboundNATPool = original.InboundNATPool
Expand Down Expand Up @@ -444,7 +459,6 @@ type NameValuePair = original.NameValuePair
type NetworkConfiguration = original.NetworkConfiguration
type NetworkSecurityGroupRule = original.NetworkSecurityGroupRule
type NodeAgentInformation = original.NodeAgentInformation
type NodeAgentSku = original.NodeAgentSku
type NodeCounts = original.NodeCounts
type NodeDisableSchedulingParameter = original.NodeDisableSchedulingParameter
type NodeFile = original.NodeFile
Expand Down Expand Up @@ -519,11 +533,11 @@ func New(batchURL string) BaseClient {
func NewAccountClient(batchURL string) AccountClient {
return original.NewAccountClient(batchURL)
}
func NewAccountListNodeAgentSkusResultIterator(page AccountListNodeAgentSkusResultPage) AccountListNodeAgentSkusResultIterator {
return original.NewAccountListNodeAgentSkusResultIterator(page)
func NewAccountListSupportedImagesResultIterator(page AccountListSupportedImagesResultPage) AccountListSupportedImagesResultIterator {
return original.NewAccountListSupportedImagesResultIterator(page)
}
func NewAccountListNodeAgentSkusResultPage(getNextPage func(context.Context, AccountListNodeAgentSkusResult) (AccountListNodeAgentSkusResult, error)) AccountListNodeAgentSkusResultPage {
return original.NewAccountListNodeAgentSkusResultPage(getNextPage)
func NewAccountListSupportedImagesResultPage(getNextPage func(context.Context, AccountListSupportedImagesResult) (AccountListSupportedImagesResult, error)) AccountListSupportedImagesResultPage {
return original.NewAccountListSupportedImagesResultPage(getNextPage)
}
func NewApplicationClient(batchURL string) ApplicationClient {
return original.NewApplicationClient(batchURL)
Expand Down Expand Up @@ -657,6 +671,9 @@ func PossibleComputeNodeReimageOptionValues() []ComputeNodeReimageOption {
func PossibleComputeNodeStateValues() []ComputeNodeState {
return original.PossibleComputeNodeStateValues()
}
func PossibleContainerWorkingDirectoryValues() []ContainerWorkingDirectory {
return original.PossibleContainerWorkingDirectoryValues()
}
func PossibleDependencyActionValues() []DependencyAction {
return original.PossibleDependencyActionValues()
}
Expand Down Expand Up @@ -738,6 +755,9 @@ func PossibleTaskExecutionResultValues() []TaskExecutionResult {
func PossibleTaskStateValues() []TaskState {
return original.PossibleTaskStateValues()
}
func PossibleVerificationTypeValues() []VerificationType {
return original.PossibleVerificationTypeValues()
}
func UserAgent() string {
return original.UserAgent() + " profiles/latest"
}
Expand Down
2 changes: 1 addition & 1 deletion profiles/preview/batch/batch/batchapi/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

package batchapi

import original "github.com/Azure/azure-sdk-for-go/services/batch/2018-12-01.8.0/batch/batchapi"
import original "github.com/Azure/azure-sdk-for-go/services/batch/2019-06-01.9.0/batch/batchapi"

type AccountClientAPI = original.AccountClientAPI
type ApplicationClientAPI = original.ApplicationClientAPI
Expand Down
38 changes: 29 additions & 9 deletions profiles/preview/batch/batch/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ package batch
import (
"context"

original "github.com/Azure/azure-sdk-for-go/services/batch/2018-12-01.8.0/batch"
original "github.com/Azure/azure-sdk-for-go/services/batch/2019-06-01.9.0/batch"
)

type AccessScope = original.AccessScope
Expand Down Expand Up @@ -136,6 +136,13 @@ const (
WaitingForStartTask ComputeNodeState = original.WaitingForStartTask
)

type ContainerWorkingDirectory = original.ContainerWorkingDirectory

const (
ContainerImageDefault ContainerWorkingDirectory = original.ContainerImageDefault
TaskWorkingDirectory ContainerWorkingDirectory = original.TaskWorkingDirectory
)

type DependencyAction = original.DependencyAction

const (
Expand Down Expand Up @@ -341,10 +348,17 @@ const (
TaskStateRunning TaskState = original.TaskStateRunning
)

type VerificationType = original.VerificationType

const (
Unverified VerificationType = original.Unverified
Verified VerificationType = original.Verified
)

type AccountClient = original.AccountClient
type AccountListNodeAgentSkusResult = original.AccountListNodeAgentSkusResult
type AccountListNodeAgentSkusResultIterator = original.AccountListNodeAgentSkusResultIterator
type AccountListNodeAgentSkusResultPage = original.AccountListNodeAgentSkusResultPage
type AccountListSupportedImagesResult = original.AccountListSupportedImagesResult
type AccountListSupportedImagesResultIterator = original.AccountListSupportedImagesResultIterator
type AccountListSupportedImagesResultPage = original.AccountListSupportedImagesResultPage
type AffinityInformation = original.AffinityInformation
type ApplicationClient = original.ApplicationClient
type ApplicationListResult = original.ApplicationListResult
Expand Down Expand Up @@ -410,6 +424,7 @@ type ExitConditions = original.ExitConditions
type ExitOptions = original.ExitOptions
type FileClient = original.FileClient
type FileProperties = original.FileProperties
type ImageInformation = original.ImageInformation
type ImageReference = original.ImageReference
type InboundEndpoint = original.InboundEndpoint
type InboundNATPool = original.InboundNATPool
Expand Down Expand Up @@ -444,7 +459,6 @@ type NameValuePair = original.NameValuePair
type NetworkConfiguration = original.NetworkConfiguration
type NetworkSecurityGroupRule = original.NetworkSecurityGroupRule
type NodeAgentInformation = original.NodeAgentInformation
type NodeAgentSku = original.NodeAgentSku
type NodeCounts = original.NodeCounts
type NodeDisableSchedulingParameter = original.NodeDisableSchedulingParameter
type NodeFile = original.NodeFile
Expand Down Expand Up @@ -519,11 +533,11 @@ func New(batchURL string) BaseClient {
func NewAccountClient(batchURL string) AccountClient {
return original.NewAccountClient(batchURL)
}
func NewAccountListNodeAgentSkusResultIterator(page AccountListNodeAgentSkusResultPage) AccountListNodeAgentSkusResultIterator {
return original.NewAccountListNodeAgentSkusResultIterator(page)
func NewAccountListSupportedImagesResultIterator(page AccountListSupportedImagesResultPage) AccountListSupportedImagesResultIterator {
return original.NewAccountListSupportedImagesResultIterator(page)
}
func NewAccountListNodeAgentSkusResultPage(getNextPage func(context.Context, AccountListNodeAgentSkusResult) (AccountListNodeAgentSkusResult, error)) AccountListNodeAgentSkusResultPage {
return original.NewAccountListNodeAgentSkusResultPage(getNextPage)
func NewAccountListSupportedImagesResultPage(getNextPage func(context.Context, AccountListSupportedImagesResult) (AccountListSupportedImagesResult, error)) AccountListSupportedImagesResultPage {
return original.NewAccountListSupportedImagesResultPage(getNextPage)
}
func NewApplicationClient(batchURL string) ApplicationClient {
return original.NewApplicationClient(batchURL)
Expand Down Expand Up @@ -657,6 +671,9 @@ func PossibleComputeNodeReimageOptionValues() []ComputeNodeReimageOption {
func PossibleComputeNodeStateValues() []ComputeNodeState {
return original.PossibleComputeNodeStateValues()
}
func PossibleContainerWorkingDirectoryValues() []ContainerWorkingDirectory {
return original.PossibleContainerWorkingDirectoryValues()
}
func PossibleDependencyActionValues() []DependencyAction {
return original.PossibleDependencyActionValues()
}
Expand Down Expand Up @@ -738,6 +755,9 @@ func PossibleTaskExecutionResultValues() []TaskExecutionResult {
func PossibleTaskStateValues() []TaskState {
return original.PossibleTaskStateValues()
}
func PossibleVerificationTypeValues() []VerificationType {
return original.PossibleVerificationTypeValues()
}
func UserAgent() string {
return original.UserAgent() + " profiles/preview"
}
Expand Down
Loading

0 comments on commit b433970

Please sign in to comment.