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] batch/data-plane #4940

Merged
merged 1 commit into from
Jun 3, 2019
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
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