Microsoft Azure · Schema

CredentialResults

The list of credential result response.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
kubeconfigs array The list of kubeconfigs.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-credentialresults-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CredentialResults",
  "title": "CredentialResults",
  "type": "object",
  "description": "The list of credential result response.",
  "properties": {
    "kubeconfigs": {
      "type": "array",
      "readOnly": true,
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "readOnly": true,
            "description": "The name of the credential."
          },
          "value": {
            "type": "string",
            "format": "byte",
            "readOnly": true,
            "description": "Base64-encoded Kubernetes config file."
          }
        }
      },
      "description": "The list of kubeconfigs.",
      "example": []
    }
  }
}