The parameters used to regenerate the login credential.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/azure-container-registry/refs/heads/main/json-schema/azure-container-registry-regenerate-credential-parameters-schema.json", "title": "RegenerateCredentialParameters", "description": "The parameters used to regenerate the login credential.", "type": "object", "properties": { "name": { "description": "Specifies name of the password which should be regenerated -- password or password2.", "enum": [ "password", "password2" ], "type": "string", "x-ms-enum": { "modelAsString": false, "name": "PasswordName" } } }, "required": [ "name" ] }