RegistryListCredentialsResult

The response from the ListCredentials operation.

AzureContainer ImagesContainersDockerRegistry

Properties

Name Type Description
passwords array The list of passwords for a container registry.
username string The username for a container registry.
View JSON Schema on GitHub

JSON Schema

azure-container-registry-registry-list-credentials-result-schema.json Raw ↑
{
  "$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-registry-list-credentials-result-schema.json",
  "title": "RegistryListCredentialsResult",
  "description": "The response from the ListCredentials operation.",
  "type": "object",
  "properties": {
    "passwords": {
      "description": "The list of passwords for a container registry.",
      "items": {
        "$ref": "#/definitions/RegistryPassword"
      },
      "type": "array"
    },
    "username": {
      "description": "The username for a container registry.",
      "type": "string"
    }
  }
}