Radius Containers API

The Containers API from Radius — 2 operation(s) for containers.

Operations 5

GET /{rootScope}/providers/Applications.Core/containers #
GET /{rootScope}/providers/Applications.Core/containers/{containerName} #
PUT /{rootScope}/providers/Applications.Core/containers/{containerName} #
PATCH /{rootScope}/providers/Applications.Core/containers/{containerName} #
DELETE /{rootScope}/providers/Applications.Core/containers/{containerName} #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/radius-containers-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

radius-containers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Applications.Core Management APIs ApiVersions Containers API
  version: 2023-10-01-preview
  description: REST APIs for Applications.Core
  x-typespec-generated:
  - emitter: '@azure-tools/typespec-autorest'
servers:
- url: https://management.azure.com
security:
- azure_auth:
  - user_impersonation
tags:
- name: Containers
paths:
  /{rootScope}/providers/Applications.Core/containers:
    get:
      operationId: Containers_ListByScope
      tags:
      - Containers
      description: List ContainerResource resources by Scope
      parameters:
      - $ref: ../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter
      - $ref: '#/components/parameters/RootScopeParameter'
      responses:
        '200':
          description: Azure operation completed successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContainerResourceListResult'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: ../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse
      x-ms-examples:
        List containers at resource group:
          $ref: ./examples/Containers_List.json
        List containers at root scope:
          $ref: ./examples/Containers_ListByScope.json
      x-ms-pageable:
        nextLinkName: nextLink
  /{rootScope}/providers/Applications.Core/containers/{containerName}:
    get:
      operationId: Containers_Get
      tags:
      - Containers
      description: Get a ContainerResource
      parameters:
      - $ref: ../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter
      - $ref: '#/components/parameters/RootScopeParameter'
      - name: containerName
        in: path
        description: Container name
        required: true
        schema:
          type: string
          maxLength: 63
          pattern: ^[A-Za-z]([-A-Za-z0-9]*[A-Za-z0-9])?$
      responses:
        '200':
          description: Azure operation completed successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContainerResource'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: ../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse
      x-ms-examples:
        Get an container resource:
          $ref: ./examples/Containers_Get.json
    put:
      operationId: Containers_CreateOrUpdate
      tags:
      - Containers
      description: Create a ContainerResource
      parameters:
      - $ref: ../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter
      - $ref: '#/components/parameters/RootScopeParameter'
      - name: containerName
        in: path
        description: Container name
        required: true
        schema:
          type: string
          maxLength: 63
          pattern: ^[A-Za-z]([-A-Za-z0-9]*[A-Za-z0-9])?$
      responses:
        '200':
          description: Resource 'ContainerResource' update operation succeeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContainerResource'
        '201':
          description: Resource 'ContainerResource' create operation succeeded
          headers:
            Azure-AsyncOperation:
              description: A link to the status monitor
              schema:
                type: string
            Retry-After:
              description: The Retry-After header can indicate how long the client should wait before polling the operation status.
              schema:
                type: integer
                format: int32
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContainerResource'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: ../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse
      x-ms-examples:
        Create or update an container resource:
          $ref: ./examples/Containers_CreateOrUpdate.json
        Create or update an container resource with base manifest:
          $ref: ./examples/Containers_CreateOrUpdate_BaseManifest.json
      x-ms-long-running-operation-options:
        final-state-via: azure-async-operation
      x-ms-long-running-operation: true
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ContainerResource'
        description: Resource create parameters.
        required: true
    patch:
      operationId: Containers_Update
      tags:
      - Containers
      description: Update a ContainerResource
      parameters:
      - $ref: ../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter
      - $ref: '#/components/parameters/RootScopeParameter'
      - name: containerName
        in: path
        description: Container name
        required: true
        schema:
          type: string
          maxLength: 63
          pattern: ^[A-Za-z]([-A-Za-z0-9]*[A-Za-z0-9])?$
      responses:
        '200':
          description: Azure operation completed successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ContainerResource'
        '202':
          description: Resource update request accepted.
          headers:
            Location:
              description: The Location header contains the URL where the status of the long running operation can be checked.
              schema:
                type: string
            Retry-After:
              description: The Retry-After header can indicate how long the client should wait before polling the operation status.
              schema:
                type: integer
                format: int32
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: ../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse
      x-ms-long-running-operation-options:
        final-state-via: location
      x-ms-long-running-operation: true
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ContainerResourceUpdate'
        description: The resource properties to be updated.
        required: true
    delete:
      operationId: Containers_Delete
      tags:
      - Containers
      description: Delete a ContainerResource
      parameters:
      - $ref: ../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter
      - $ref: '#/components/parameters/RootScopeParameter'
      - name: containerName
        in: path
        description: Container name
        required: true
        schema:
          type: string
          maxLength: 63
          pattern: ^[A-Za-z]([-A-Za-z0-9]*[A-Za-z0-9])?$
      responses:
        '202':
          description: Resource deletion accepted.
          headers:
            Location:
              description: The Location header contains the URL where the status of the long running operation can be checked.
              schema:
                type: string
            Retry-After:
              description: The Retry-After header can indicate how long the client should wait before polling the operation status.
              schema:
                type: integer
                format: int32
        '204':
          description: Resource does not exist.
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: ../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse
      x-ms-examples:
        Delete an container resource:
          $ref: ./examples/Containers_Delete.json
      x-ms-long-running-operation-options:
        final-state-via: location
      x-ms-long-running-operation: true
components:
  schemas:
    RestartPolicy:
      type: string
      description: Restart policy for the container
      enum:
      - Always
      - OnFailure
      - Never
      x-ms-enum:
        name: RestartPolicy
        modelAsString: false
        values:
        - name: Always
          value: Always
          description: Always
        - name: OnFailure
          value: OnFailure
          description: OnFailure
        - name: Never
          value: Never
          description: Never
    SecretReference:
      type: object
      description: This secret is used within a recipe. Secrets are encrypted, often have fine-grained access control, auditing and are recommended to be used to hold sensitive data.
      properties:
        source:
          type: string
          description: The ID of an Applications.Core/SecretStore resource containing sensitive data required for recipe execution.
        key:
          type: string
          description: The key for the secret in the secret store.
      required:
      - source
      - key
    KubernetesPodSpec:
      type: object
      description: A strategic merge patch that will be applied to the PodSpec object when this container is being deployed.
      additionalProperties: {}
    Volume:
      type: object
      description: Specifies a volume for a container
      properties:
        kind:
          type: string
          description: Discriminator property for Volume.
        mountPath:
          type: string
          description: The path where the volume is mounted
      discriminator:
        propertyName: kind
      required:
      - kind
    RuntimesProperties:
      type: object
      description: The properties for runtime configuration
      properties:
        kubernetes:
          $ref: '#/components/schemas/KubernetesRuntimeProperties'
          description: The runtime configuration properties for Kubernetes
        aci:
          $ref: '#/components/schemas/ACIRuntimeProperties'
          description: The runtime configuration properties for ACI
    ResourceReference:
      type: object
      description: Describes a reference to an existing resource
      properties:
        id:
          type: string
          description: Resource id of an existing resource
      required:
      - id
    ACIRuntimeProperties:
      type: object
      description: The runtime configuration properties for Kubernetes
      properties:
        gatewayID:
          type: string
          description: The ID of the gateway that is providing L7 traffic for the container
    ContainerResourceListResult:
      type: object
      description: The response of a ContainerResource list operation.
      properties:
        value:
          type: array
          description: The ContainerResource items on this page
          items:
            $ref: '#/components/schemas/ContainerResource'
        nextLink:
          type: string
          format: uri
          description: The link to the next page of items
      required:
      - value
    KubernetesRuntimeProperties:
      type: object
      description: The runtime configuration properties for Kubernetes
      properties:
        base:
          type: string
          description: The serialized YAML manifest which represents the base Kubernetes resources to deploy, such as Deployment, Service, ServiceAccount, Secrets, and ConfigMaps.
        pod:
          $ref: '#/components/schemas/KubernetesPodSpec'
          description: A strategic merge patch that will be applied to the PodSpec object when this container is being deployed.
    IamProperties:
      type: object
      description: IAM properties
      properties:
        kind:
          $ref: '#/components/schemas/IAMKind'
          description: The kind of IAM provider to configure
        roles:
          type: array
          description: RBAC permissions to be assigned on the source resource
          items:
            type: string
      required:
      - kind
    IAMKind:
      type: string
      description: The kind of IAM provider to configure
      enum:
      - azure
      - string
      x-ms-enum:
        name: IAMKind
        modelAsString: false
        values:
        - name: azure
          value: azure
          description: Azure Active Directory
        - name: string
          value: string
    EnvironmentCompute:
      type: object
      description: Represents backing compute resource
      properties:
        kind:
          type: string
          description: Discriminator property for EnvironmentCompute.
        resourceId:
          type: string
          description: The resource id of the compute resource for application environment.
        identity:
          $ref: '#/components/schemas/IdentitySettings'
          description: Configuration for supported external identity providers
      discriminator:
        propertyName: kind
      required:
      - kind
    OutputResource:
      type: object
      description: Properties of an output resource.
      properties:
        localId:
          type: string
          description: The logical identifier scoped to the owning Radius resource. This is only needed or used when a resource has a dependency relationship. LocalIDs do not have any particular format or meaning beyond being compared to determine dependency relationships.
        id:
          type: string
          description: The UCP resource ID of the underlying resource.
        radiusManaged:
          type: boolean
          description: Determines whether Radius manages the lifecycle of the underlying resource.
    PortProtocol:
      type: string
      description: The protocol in use by the port
      enum:
      - TCP
      - UDP
      x-ms-enum:
        name: PortProtocol
        modelAsString: false
        values:
        - name: TCP
          value: TCP
          description: TCP protocol
        - name: UDP
          value: UDP
          description: UDP protocol
    Extension:
      type: object
      description: Extension of a environment/application resource.
      properties:
        kind:
          type: string
          description: Discriminator property for Extension.
      discriminator:
        propertyName: kind
      required:
      - kind
    ContainerResourceProvisioning:
      type: string
      description: Specifies how the underlying service/resource is provisioned and managed. Available values are 'internal', where Radius manages the lifecycle of the resource internally, and 'manual', where a user manages the resource.
      enum:
      - internal
      - manual
      x-ms-enum:
        name: ContainerResourceProvisioning
        modelAsString: false
        values:
        - name: internal
          value: internal
          description: The resource lifecycle will be managed internally by Radius
        - name: manual
          value: manual
          description: The resource lifecycle will be managed by the user
    IdentitySettingKind:
      type: string
      description: IdentitySettingKind is the kind of supported external identity setting
      enum:
      - undefined
      - azure.com.workload
      - userAssigned
      - systemAssigned
      - systemAssignedUserAssigned
      x-ms-enum:
        name: IdentitySettingKind
        modelAsString: false
        values:
        - name: undefined
          value: undefined
          description: undefined identity
        - name: azure.com.workload
          value: azure.com.workload
          description: azure ad workload identity
        - name: userAssigned
          value: userAssigned
          description: User assigned managed identity
        - name: systemAssigned
          value: systemAssigned
          description: System assigned managed identity
        - name: systemAssignedUserAssigned
          value: systemAssignedUserAssigned
          description: System assigned and user assigned managed identity
    ContainerProperties:
      type: object
      description: Container properties
      properties:
        environment:
          type: string
          description: Fully qualified resource ID for the environment that the application is linked to
        application:
          type: string
          description: Fully qualified resource ID for the application
        provisioningState:
          $ref: '#/components/schemas/ProvisioningState'
          description: The status of the asynchronous operation.
          readOnly: true
        status:
          $ref: '#/components/schemas/ResourceStatus'
          description: Status of a resource.
          readOnly: true
        container:
          $ref: '#/components/schemas/Container'
          description: Definition of a container.
        connections:
          type: object
          description: Specifies a connection to another resource.
          additionalProperties:
            $ref: '#/components/schemas/ConnectionProperties'
        identity:
          $ref: '#/components/schemas/IdentitySettings'
          description: Configuration for supported external identity providers
        extensions:
          type: array
          description: Extensions spec of the resource
          items:
            $ref: '#/components/schemas/Extension'
          x-ms-identifiers: []
        resourceProvisioning:
          $ref: '#/components/schemas/ContainerResourceProvisioning'
          description: Specifies how the underlying container resource is provisioned and managed.
        resources:
          type: array
          description: A collection of references to resources associated with the container
          items:
            $ref: '#/components/schemas/ResourceReference'
        restartPolicy:
          $ref: '#/components/schemas/RestartPolicy'
          description: The restart policy for the underlying container
        runtimes:
          $ref: '#/components/schemas/RuntimesProperties'
          description: Specifies Runtime-specific functionality
      required:
      - application
      - container
    ResourceStatus:
      type: object
      description: Status of a resource.
      properties:
        compute:
          $ref: '#/components/schemas/EnvironmentCompute'
          description: The compute resource associated with the resource.
        recipe:
          $ref: '#/components/schemas/RecipeStatus'
          description: The recipe data at the time of deployment
          readOnly: true
        outputResources:
          type: array
          description: Properties of an output resource
          items:
            $ref: '#/components/schemas/OutputResource'
          x-ms-identifiers: []
    ContainerResourceUpdate:
      type: object
      description: Concrete tracked resource types can be created by aliasing this type using a specific property type.
      allOf:
      - $ref: '#/components/schemas/Azure.ResourceManager.CommonTypes.TrackedResourceUpdate'
    EnvironmentVariableReference:
      type: object
      description: The reference to the variable
      properties:
        secretRef:
          $ref: '#/components/schemas/SecretReference'
          description: The secret reference
      required:
      - secretRef
    ConnectionProperties:
      type: object
      description: Connection Properties
      properties:
        source:
          type: string
          description: The source of the connection
        disableDefaultEnvVars:
          type: boolean
          description: default environment variable override
        iam:
          $ref: '#/components/schemas/IamProperties'
          description: iam properties
      required:
      - source
    ContainerPortProperties:
      type: object
      description: Specifies a listening port for the container
      properties:
        containerPort:
          type: integer
          format: int32
          description: The listening port number
        protocol:
          $ref: '#/components/schemas/PortProtocol'
          description: Protocol in use by the port
        scheme:
          type: string
          description: Specifies the URL scheme of the communication protocol. Consumers can use the scheme to construct a URL. The value defaults to 'http' or 'https' depending on the port value
        port:
          type: integer
          format: int32
          description: Specifies the port that will be exposed by this container. Must be set when value different from containerPort is desired
      required:
      - containerPort
    HealthProbeProperties:
      type: object
      description: Properties for readiness/liveness probe
      properties:
        kind:
          type: string
          description: Discriminator property for HealthProbeProperties.
        initialDelaySeconds:
          type: number
          format: float
          description: Initial delay in seconds before probing for readiness/liveness
        failureThreshold:
          type: number
          format: float
          description: Threshold number of times the probe fails after which a failure would be reported
        periodSeconds:
          type: number
          format: float
          description: Interval for the readiness/liveness probe in seconds
        timeoutSeconds:
          type: number
          format: float
          description: Number of seconds after which the readiness/liveness probe times out. Defaults to 5 seconds
          default: 5
      discriminator:
        propertyName: kind
      required:
      - kind
    ContainerResource:
      type: object
      description: Concrete tracked resource types can be created by aliasing this type using a specific property type.
      properties:
        properties:
          $ref: '#/components/schemas/ContainerProperties'
          description: The resource-specific properties for this resource.
          x-ms-client-flatten: true
          x-ms-mutability:
          - read
          - create
      required:
      - properties
      allOf:
      - $ref: ../../../../../common-types/resource-management/v3/types.json#/definitions/TrackedResource
    EnvironmentVariable:
      type: object
      description: Environment variables type
      properties:
        value:
          type: string
          description: The value of the environment variable
        valueFrom:
          $ref: '#/components/schemas/EnvironmentVariableReference'
          description: The reference to the variable
    RecipeStatus:
      type: object
      description: Recipe status at deployment time for a resource.
      properties:
        templateKind:
          type: string
          description: TemplateKind is the kind of the recipe template used by the portable resource upon deployment.
        templatePath:
          type: string
          description: TemplatePath is the path of the recipe consumed by the portable resource upon deployment.
        templateVersion:
          type: string
          description: TemplateVersion is the version number of the template.
      required:
      - templateKind
      - templatePath
    Azure.ResourceManager.CommonTypes.TrackedResourceUpdate:
      type: object
      title: Tracked Resource
      description: The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location'
      properties:
        tags:
          type: object
          description: Resource tags.
          additionalProperties:
            type: string
      allOf:
      - $ref: ../../../../../common-types/resource-management/v3/types.json#/definitions/Resource
    ImagePullPolicy:
      type: string
      description: The image pull policy for the container
      enum:
      - Always
      - IfNotPresent
      - Never
      x-ms-enum:
        name: ImagePullPolicy
        modelAsString: false
        values:
        - name: Always
          value: Always
          description: Always
        - name: IfNotPresent
          value: IfNotPresent
          description: IfNotPresent
        - name: Never
          value: Never
          description: Never
    ProvisioningState:
      type: string
      description: Provisioning state of the resource at the time the operation was called
      enum:
      - Creating
      - Updating
      - Deleting
      - Accepted
      - Provisioning
      - Succeeded
      - Failed
      - Canceled
      x-ms-enum:
        name: ProvisioningState
        modelAsString: false
        values:
        - name: Creating
          value: Creating
          description: The resource is being created
        - name: Updating
          value: Updating
          description: The resource is being updated
        - name: Deleting
          value: Deleting
          description: The resource is being deleted
        - name: Accepted
          value: Accepted
          description: The resource create request has been accepted
        - name: Provisioning
          value: Provisioning
          description: The resource is being provisioned
        - name: Succeeded
          value: Succeeded
          description: The resource has been successfully provisioned
        - name: Failed
          value: Failed
          description: The resource provisioning has failed
        - name: Canceled
          value: Canceled
          description: The resource provisioning has been canceled
      readOnly: true
    Container:
      type: object
      description: Definition of a container
      properties:
        image:
          type: string
          description: The registry and image to download and run in your container
        imagePullPolicy:
          $ref: '#/components/schemas/ImagePullPolicy'
          description: The pull policy for the container image
        env:
          type: object
          description: environment
          additionalProperties:
            $ref: '#/components/schemas/EnvironmentVariable'
        ports:
          type: object
          description: container ports
          additionalProperties:
            $ref: '#/components/schemas/ContainerPortProperties'
        readinessProbe:
          $ref: '#/components/schemas/HealthProbeProperties'
          description: readiness probe properties
        livenessProbe:
          $ref: '#/components/schemas/HealthProbeProperties'
          description: liveness probe properties
        volumes:
          type: object
          description: container volumes
          additionalProperties:
            $ref: '#/components/schemas/Volume'
        command:
          type: array
          description: Entrypoint array. Overrides the container image's ENTRYPOINT
          items:
            type: string
        args:
          type: array
          description: Arguments to the entrypoint. Overrides the container image's CMD
          items:
            type: string
        workingDir:
          type: string
          description: Working directory for the container
      required:
      - image
    IdentitySettings:
      type: object
      description: IdentitySettings is the external identity setting.
      properties:
        kind:
          $ref: '#/components/schemas/IdentitySettingKind'
          description: kind of identity setting
        oidcIssuer:
          type: string
          description: The URI for your compute platform's OIDC issuer
        resource:
          type: string
          description: The resource ID of the provisioned identity
        managedIdentity:
          type: array
          description: The list of user assigned managed identities
          items:
            type: string
      required:
      - kind
  parameters:
    RootScopeParameter:
      name: rootScope
      in: path
      description: The scope in which the resource is present. UCP Scope is /planes/{planeType}/{planeName}/resourceGroup/{resourcegroupID} and Azure resource scope is /subscriptions/{subscriptionID}/resourceGroup/{resourcegroupID}
      required: true
      x-ms-parameter-location: client
      x-ms-skip-url-encoding: true
      schema:
        type: string
        minLength: 1
  securitySchemes:
    azure_auth:
      type: oauth2
      flows:
        implicit:
          scopes:
            user_impersonation: impersonate your user account
          authorizationUrl: https://login.microsoftonline.com/common/oauth2/authorize
      description: Azure Active Directory OAuth2 Flow.