Share via


RegistryUpdateParameters Constructors

Definition

Overloads

RegistryUpdateParameters()

Initializes a new instance of the RegistryUpdateParameters class.

RegistryUpdateParameters(IdentityProperties, IDictionary<String, String>, Sku, Nullable<Boolean>, NetworkRuleSet, Policies, EncryptionProperty, Nullable<Boolean>, String, String)

Initializes a new instance of the RegistryUpdateParameters class.

RegistryUpdateParameters()

Initializes a new instance of the RegistryUpdateParameters class.

public RegistryUpdateParameters ();
Public Sub New ()

Applies to

RegistryUpdateParameters(IdentityProperties, IDictionary<String, String>, Sku, Nullable<Boolean>, NetworkRuleSet, Policies, EncryptionProperty, Nullable<Boolean>, String, String)

Initializes a new instance of the RegistryUpdateParameters class.

public RegistryUpdateParameters (Microsoft.Azure.Management.ContainerRegistry.Models.IdentityProperties identity = default, System.Collections.Generic.IDictionary<string,string> tags = default, Microsoft.Azure.Management.ContainerRegistry.Models.Sku sku = default, bool? adminUserEnabled = default, Microsoft.Azure.Management.ContainerRegistry.Models.NetworkRuleSet networkRuleSet = default, Microsoft.Azure.Management.ContainerRegistry.Models.Policies policies = default, Microsoft.Azure.Management.ContainerRegistry.Models.EncryptionProperty encryption = default, bool? dataEndpointEnabled = default, string publicNetworkAccess = default, string networkRuleBypassOptions = default);
new Microsoft.Azure.Management.ContainerRegistry.Models.RegistryUpdateParameters : Microsoft.Azure.Management.ContainerRegistry.Models.IdentityProperties * System.Collections.Generic.IDictionary<string, string> * Microsoft.Azure.Management.ContainerRegistry.Models.Sku * Nullable<bool> * Microsoft.Azure.Management.ContainerRegistry.Models.NetworkRuleSet * Microsoft.Azure.Management.ContainerRegistry.Models.Policies * Microsoft.Azure.Management.ContainerRegistry.Models.EncryptionProperty * Nullable<bool> * string * string -> Microsoft.Azure.Management.ContainerRegistry.Models.RegistryUpdateParameters
Public Sub New (Optional identity As IdentityProperties = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional sku As Sku = Nothing, Optional adminUserEnabled As Nullable(Of Boolean) = Nothing, Optional networkRuleSet As NetworkRuleSet = Nothing, Optional policies As Policies = Nothing, Optional encryption As EncryptionProperty = Nothing, Optional dataEndpointEnabled As Nullable(Of Boolean) = Nothing, Optional publicNetworkAccess As String = Nothing, Optional networkRuleBypassOptions As String = Nothing)

Parameters

identity
IdentityProperties

The identity of the container registry.

tags
IDictionary<String,String>

The tags for the container registry.

sku
Sku

The SKU of the container registry.

adminUserEnabled
Nullable<Boolean>

The value that indicates whether the admin user is enabled.

networkRuleSet
NetworkRuleSet

The network rule set for a container registry.

policies
Policies

The policies for a container registry.

encryption
EncryptionProperty

The encryption settings of container registry.

dataEndpointEnabled
Nullable<Boolean>

Enable a single data endpoint per region for serving data.

publicNetworkAccess
String

Whether or not public network access is allowed for the container registry. Possible values include: 'Enabled', 'Disabled'

networkRuleBypassOptions
String

Whether to allow trusted Azure services to access a network restricted registry. Possible values include: 'AzureServices', 'None'

Applies to