Microsoft Azure Container Service Admin Client

Microsoft Azure Container Service Admin Client is a powerful tool that allows administrators to manage and monitor their containerized applications in the Azure cloud environment. This client provides a user-friendly interface for deploying, scaling, and updating container instances, as well as managing network configurations and workload scheduling.

OpenAPI Specification

containerserviceadminclient-openapi-original.yml Raw ↑
swagger: '2.0'
info:
  version: '2019-11-01'
  title: Microsoft Azure ContainerServiceAdminClient
  description: Admin Container Service Management Client.
host: management.azure.com
schemes:
  - https
consumes:
  - application/json
produces:
  - application/json
paths:
  /subscriptions/{subscriptionId}/providers/Microsoft.ContainerService.Admin/locations/{location}/quotas:
    get:
      x-ms-examples:
        Returns a list of container service quotas at the given location.:
          $ref: ./examples/Quotas/List.json
      tags:
        - ContainerServiceQuotas
      description: Returns a list of container service quotas at the given location.
      operationId: microsoftAzureContainerservicequotaList
      parameters:
        - $ref: >-
            ../../../../../../common-types/resource-management/v2/types.json#/parameters/SubscriptionIdParameter
        - $ref: >-
            ../../../../../../common-types/resource-management/v2/types.json#/parameters/LocationParameter
        - $ref: >-
            ../../../../../../common-types/resource-management/v2/types.json#/parameters/ApiVersionParameter
      responses:
        '200':
          description: OK -- The list of container service quotas has been returned.
          schema:
            $ref: '#/definitions/ContainerServiceQuotaList'
        default:
          description: Error Response.
          schema:
            $ref: >-
              ../../../../../../common-types/resource-management/v2/types.json#/definitions/ErrorResponse
      x-ms-pageable:
        nextLinkName: nextLink
      summary: >-
        Microsoft Azure Get Subscriptions Subscriptionid Providers Microsoft Containerservice Admin Locations Location Quotas
definitions:
  ContainerServiceQuotaProperties:
    description: Container service quota properties.
    type: object
    properties:
      name:
        description: Container service storage capacity
        type: string
        default: unlimited
  ContainerServiceQuotaList:
    description: List of container service quotas.
    type: object
    properties:
      value:
        description: List of container service quotas.
        type: array
        items:
          description: Container service quota.
          type: object
          properties:
            properties:
              description: Container service quota properties.
              x-ms-client-flatten: true
              $ref: '#/definitions/ContainerServiceQuotaProperties'
          allOf:
            - $ref: >-
                ../../../../../../common-types/resource-management/v2/types.json#/definitions/Resource
      nextLink:
        description: URI to the next page.
        type: string
securityDefinitions:
  azure_auth:
    type: oauth2
    authorizationUrl: https://login.microsoftonline.com/common/oauth2/authorize
    flow: implicit
    description: Authorization uses an Azure Active Directory OAuth2 flow.
    scopes:
      user_impersonation: impersonate your user account
security:
  - azure_auth:
      - user_impersonation
tags:
  - name: ContainerServiceQuotas