RegistryInner Constructors

Definition

Overloads

RegistryInner()

Initializes a new instance of the RegistryInner class.

RegistryInner(Sku, String, String, String, String, IDictionary<String, String>, String, Nullable<DateTime>, String, Status, Nullable<Boolean>, StorageAccountProperties)

Initializes a new instance of the RegistryInner class.

RegistryInner()

Initializes a new instance of the RegistryInner class.

public RegistryInner ();
Public Sub New ()

Applies to

RegistryInner(Sku, String, String, String, String, IDictionary<String, String>, String, Nullable<DateTime>, String, Status, Nullable<Boolean>, StorageAccountProperties)

Initializes a new instance of the RegistryInner class.

public RegistryInner (Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.Sku sku, string location = default, string id = default, string name = default, string type = default, System.Collections.Generic.IDictionary<string,string> tags = default, string loginServer = default, DateTime? creationDate = default, string provisioningState = default, Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.Status status = default, bool? adminUserEnabled = default, Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.StorageAccountProperties storageAccount = default);
new Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.RegistryInner : Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.Sku * string * string * string * string * System.Collections.Generic.IDictionary<string, string> * string * Nullable<DateTime> * string * Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.Status * Nullable<bool> * Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.StorageAccountProperties -> Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.RegistryInner
Public Sub New (sku As Sku, Optional location As String = Nothing, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional loginServer As String = Nothing, Optional creationDate As Nullable(Of DateTime) = Nothing, Optional provisioningState As String = Nothing, Optional status As Status = Nothing, Optional adminUserEnabled As Nullable(Of Boolean) = Nothing, Optional storageAccount As StorageAccountProperties = Nothing)

Parameters

sku
Sku

The SKU of the container registry.

location
String
id
String
name
String
type
String
loginServer
String

The URL that can be used to log into the container registry.

creationDate
Nullable<DateTime>

The creation date of the container registry in ISO8601 format.

provisioningState
String

The provisioning state of the container registry at the time the operation was called. Possible values include: 'Creating', 'Updating', 'Deleting', 'Succeeded', 'Failed', 'Canceled'

status
Status

The status of the container registry at the time the operation was called.

adminUserEnabled
Nullable<Boolean>

The value that indicates whether the admin user is enabled.

storageAccount
StorageAccountProperties

The properties of the storage account for the container registry. Only applicable to Classic SKU.

Applies to