Share via


ImportImageParameters Constructors

Definition

Overloads

ImportImageParameters()

Initializes a new instance of the ImportImageParameters class.

ImportImageParameters(ImportSource, IList<String>, IList<String>, String)

Initializes a new instance of the ImportImageParameters class.

ImportImageParameters()

Initializes a new instance of the ImportImageParameters class.

public ImportImageParameters ();
Public Sub New ()

Applies to

ImportImageParameters(ImportSource, IList<String>, IList<String>, String)

Initializes a new instance of the ImportImageParameters class.

public ImportImageParameters (Microsoft.Azure.Management.ContainerRegistry.Models.ImportSource source, System.Collections.Generic.IList<string> targetTags = default, System.Collections.Generic.IList<string> untaggedTargetRepositories = default, string mode = default);
new Microsoft.Azure.Management.ContainerRegistry.Models.ImportImageParameters : Microsoft.Azure.Management.ContainerRegistry.Models.ImportSource * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * string -> Microsoft.Azure.Management.ContainerRegistry.Models.ImportImageParameters
Public Sub New (source As ImportSource, Optional targetTags As IList(Of String) = Nothing, Optional untaggedTargetRepositories As IList(Of String) = Nothing, Optional mode As String = Nothing)

Parameters

source
ImportSource

The source of the image.

targetTags
IList<String>

List of strings of the form repo[:tag]. When tag is omitted the source will be used (or 'latest' if source tag is also omitted).

untaggedTargetRepositories
IList<String>

List of strings of repository names to do a manifest only copy. No tag will be created.

mode
String

When Force, any existing target tags will be overwritten. When NoForce, any existing target tags will fail the operation before any copying begins. Possible values include: 'NoForce', 'Force'

Applies to