Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -227,11 +227,13 @@ model RegistryNameCheckRequest {
*/
@maxLength(90)
@minLength(1)
@added(Versions.vLatestPreview)
resourceGroupName?: string;

/**
* The auto generated domain name label of the container registry. This value defaults to "Unsecure".
*/
@added(Versions.vLatestPreview)
autoGeneratedDomainNameLabelScope?: AutoGeneratedDomainNameLabelScope = AutoGeneratedDomainNameLabelScope.Unsecure;
}

Expand Down Expand Up @@ -335,6 +337,7 @@ model RegistryProperties {
/**
* Determines the domain name label reuse scope.
*/
@added(Versions.vLatestPreview)
autoGeneratedDomainNameLabelScope?: AutoGeneratedDomainNameLabelScope = AutoGeneratedDomainNameLabelScope.Unsecure;

/**
Expand Down Expand Up @@ -710,6 +713,7 @@ model RegistryNameStatus {
/**
* The complete login server name with domain name label (DNL) hash, if available
*/
@added(Versions.vLatestPreview)
availableLoginServerName?: string;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5690,50 +5690,6 @@
"type": {
"$ref": "#/definitions/ContainerRegistryResourceType",
"description": "The resource type of the container registry. This field must be set to 'Microsoft.ContainerRegistry/registries'."
},
"resourceGroupName": {
"type": "string",
"description": "The resource group name of the container registry.",
"minLength": 1,
"maxLength": 90
},
"autoGeneratedDomainNameLabelScope": {
"type": "string",
"description": "The auto generated domain name label of the container registry. This value defaults to \"Unsecure\".",
"default": "Unsecure",
"enum": [
"Unsecure",
"TenantReuse",
"SubscriptionReuse",
"ResourceGroupReuse",
"NoReuse"
],
"x-ms-enum": {
"name": "AutoGeneratedDomainNameLabelScope",
"modelAsString": true,
"values": [
{
"name": "Unsecure",
"value": "Unsecure"
},
{
"name": "TenantReuse",
"value": "TenantReuse"
},
{
"name": "SubscriptionReuse",
"value": "SubscriptionReuse"
},
{
"name": "ResourceGroupReuse",
"value": "ResourceGroupReuse"
},
{
"name": "NoReuse",
"value": "NoReuse"
}
]
}
}
},
"required": [
Expand All @@ -5745,10 +5701,6 @@
"type": "object",
"description": "The result of a request to check the availability of a container registry name.",
"properties": {
"availableLoginServerName": {
"type": "string",
"description": "The complete login server name with domain name label (DNL) hash, if available"
},
"nameAvailable": {
"type": "boolean",
"description": "The value that indicates whether the name is available."
Expand Down Expand Up @@ -5918,44 +5870,6 @@
"description": "Enables registry-wide pull from unauthenticated clients.",
"default": false
},
"autoGeneratedDomainNameLabelScope": {
"type": "string",
"description": "Determines the domain name label reuse scope.",
"default": "Unsecure",
"enum": [
"Unsecure",
"TenantReuse",
"SubscriptionReuse",
"ResourceGroupReuse",
"NoReuse"
],
"x-ms-enum": {
"name": "AutoGeneratedDomainNameLabelScope",
"modelAsString": true,
"values": [
{
"name": "Unsecure",
"value": "Unsecure"
},
{
"name": "TenantReuse",
"value": "TenantReuse"
},
{
"name": "SubscriptionReuse",
"value": "SubscriptionReuse"
},
{
"name": "ResourceGroupReuse",
"value": "ResourceGroupReuse"
},
{
"name": "NoReuse",
"value": "NoReuse"
}
]
}
},
"roleAssignmentMode": {
"type": "string",
"description": "Determines registry role assignment mode.",
Expand Down
Loading