ImportImageParametersInner Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ImportImageParametersInner() |
Initializes a new instance of the ImportImageParametersInner class. |
ImportImageParametersInner(ImportSource, IList<String>, IList<String>, String) |
Initializes a new instance of the ImportImageParametersInner class. |
ImportImageParametersInner()
Initializes a new instance of the ImportImageParametersInner class.
public ImportImageParametersInner ();
Public Sub New ()
Applies to
ImportImageParametersInner(ImportSource, IList<String>, IList<String>, String)
Initializes a new instance of the ImportImageParametersInner class.
public ImportImageParametersInner (Microsoft.Azure.Management.ContainerRegistry.Fluent.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.Fluent.Models.ImportImageParametersInner : Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.ImportSource * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * string -> Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.ImportImageParametersInner
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.
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).
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
Azure SDK for .NET