Skip to content

Commit

Permalink
Generated from 8c306b9774829c9683c09365e29ff4265e655bcf (#1679)
Browse files Browse the repository at this point in the history
add a copy image operation to Azure Container Registry

- adds an operation to support copying a Docker image from one registry to another
- supports copying to multiple places in the target registry
- only one source and one target registry are supported
  • Loading branch information
AutorestCI authored Apr 23, 2018
1 parent 4cc51ac commit 8b598cc
Show file tree
Hide file tree
Showing 4 changed files with 197 additions and 0 deletions.
13 changes: 13 additions & 0 deletions profiles/latest/containerregistry/mgmt/containerregistry/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ const (
)

type BaseClient = original.BaseClient
type ImportMode = original.ImportMode

const (
Force ImportMode = original.Force
NoForce ImportMode = original.NoForce
)

type PasswordName = original.PasswordName

const (
Expand Down Expand Up @@ -93,6 +100,8 @@ type EventListResultIterator = original.EventListResultIterator
type EventListResultPage = original.EventListResultPage
type EventRequestMessage = original.EventRequestMessage
type EventResponseMessage = original.EventResponseMessage
type ImportImageParameters = original.ImportImageParameters
type ImportSource = original.ImportSource
type OperationDefinition = original.OperationDefinition
type OperationDisplayDefinition = original.OperationDisplayDefinition
type OperationListResult = original.OperationListResult
Expand All @@ -101,6 +110,7 @@ type OperationListResultPage = original.OperationListResultPage
type RegenerateCredentialParameters = original.RegenerateCredentialParameters
type RegistriesCreateFuture = original.RegistriesCreateFuture
type RegistriesDeleteFuture = original.RegistriesDeleteFuture
type RegistriesImportImageFuture = original.RegistriesImportImageFuture
type RegistriesUpdateFuture = original.RegistriesUpdateFuture
type Registry = original.Registry
type RegistryListCredentialsResult = original.RegistryListCredentialsResult
Expand Down Expand Up @@ -154,6 +164,9 @@ func New(subscriptionID string) BaseClient {
func NewWithBaseURI(baseURI string, subscriptionID string) BaseClient {
return original.NewWithBaseURI(baseURI, subscriptionID)
}
func PossibleImportModeValues() []ImportMode {
return original.PossibleImportModeValues()
}
func PossiblePasswordNameValues() []PasswordName {
return original.PossiblePasswordNameValues()
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ const (
)

type BaseClient = original.BaseClient
type ImportMode = original.ImportMode

const (
Force ImportMode = original.Force
NoForce ImportMode = original.NoForce
)

type PasswordName = original.PasswordName

const (
Expand Down Expand Up @@ -93,6 +100,8 @@ type EventListResultIterator = original.EventListResultIterator
type EventListResultPage = original.EventListResultPage
type EventRequestMessage = original.EventRequestMessage
type EventResponseMessage = original.EventResponseMessage
type ImportImageParameters = original.ImportImageParameters
type ImportSource = original.ImportSource
type OperationDefinition = original.OperationDefinition
type OperationDisplayDefinition = original.OperationDisplayDefinition
type OperationListResult = original.OperationListResult
Expand All @@ -101,6 +110,7 @@ type OperationListResultPage = original.OperationListResultPage
type RegenerateCredentialParameters = original.RegenerateCredentialParameters
type RegistriesCreateFuture = original.RegistriesCreateFuture
type RegistriesDeleteFuture = original.RegistriesDeleteFuture
type RegistriesImportImageFuture = original.RegistriesImportImageFuture
type RegistriesUpdateFuture = original.RegistriesUpdateFuture
type Registry = original.Registry
type RegistryListCredentialsResult = original.RegistryListCredentialsResult
Expand Down Expand Up @@ -154,6 +164,9 @@ func New(subscriptionID string) BaseClient {
func NewWithBaseURI(baseURI string, subscriptionID string) BaseClient {
return original.NewWithBaseURI(baseURI, subscriptionID)
}
func PossibleImportModeValues() []ImportMode {
return original.PossibleImportModeValues()
}
func PossiblePasswordNameValues() []PasswordName {
return original.PossiblePasswordNameValues()
}
Expand Down

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

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

0 comments on commit 8b598cc

Please sign in to comment.