Package version:

The parameters for updating a container registry.

interface RegistryUpdateParameters {
    adminUserEnabled?: boolean;
    anonymousPullEnabled?: boolean;
    dataEndpointEnabled?: boolean;
    encryption?: EncryptionProperty;
    identity?: IdentityProperties;
    metadataSearch?: string;
    networkRuleBypassOptions?: string;
    networkRuleSet?: NetworkRuleSet;
    policies?: Policies;
    publicNetworkAccess?: string;
    roleAssignmentMode?: string;
    sku?: Sku;
    tags?: {
        [propertyName: string]: string;
    };
}

Properties

adminUserEnabled?: boolean

The value that indicates whether the admin user is enabled.

anonymousPullEnabled?: boolean

Enables registry-wide pull from unauthenticated clients.

dataEndpointEnabled?: boolean

Enable a single data endpoint per region for serving data.

encryption?: EncryptionProperty

The encryption settings of container registry.

The identity of the container registry.

metadataSearch?: string

Determines whether registry artifacts are indexed for metadata search.

networkRuleBypassOptions?: string

Whether to allow trusted Azure services to access a network restricted registry.

networkRuleSet?: NetworkRuleSet

The network rule set for a container registry.

policies?: Policies

The policies for a container registry.

publicNetworkAccess?: string

Whether or not public network access is allowed for the container registry.

roleAssignmentMode?: string

Determines registry role assignment mode.

sku?: Sku

The SKU of the container registry.

tags?: {
    [propertyName: string]: string;
}

The tags for the container registry.