UpdateRepositoryRequest

UpdateRepositoryRequest schema from Amazon CodeArtifact API

AmazonArtifact RepositoryPackage ManagementDevOpsSoftware Supply ChainnpmMavenPyPINuGet

Properties

Name Type Description
description object
upstreams object
View JSON Schema on GitHub

JSON Schema

codeartifact-update-repository-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeartifact/refs/heads/main/json-schema/codeartifact-update-repository-request-schema.json",
  "title": "UpdateRepositoryRequest",
  "description": "UpdateRepositoryRequest schema from Amazon CodeArtifact API",
  "type": "object",
  "properties": {
    "description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Description"
        },
        {
          "description": " An updated repository description. "
        }
      ]
    },
    "upstreams": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UpstreamRepositoryList"
        },
        {
          "description": " A list of upstream repositories to associate with the repository. The order of the upstream repositories in the list determines their priority order when CodeArtifact looks for a requested package version. For more information, see <a href=\"https://docs.aws.amazon.com/codeartifact/latest/ug/repos-upstream.html\">Working with upstream repositories</a>. "
        }
      ]
    }
  }
}