UNPKG

@itentialopensource/adapter-apic

Version:

Cisco Application Policy Infrastructure Controller (Cisco APIC) is the unifying point of automation and management for the Application Centric Infrastructure (ACI) fabric.

142 lines (141 loc) 3.34 kB
openapi: 3.0.0 info: title: adapter-apic contact: {} version: '1.0.0' servers: - url: https://{defaultHost} variables: defaultHost: default: www.example.com paths: /mo/uni/{tenantName}: post: summary: createApplicationProfile description: '' operationId: createApplicationProfile parameters: - name: tenantName in: path description: '' required: true style: simple schema: type: string requestBody: description: '' content: application/json: schema: type: object required: false responses: '200': description: Successful operation headers: {} content: application/json: schema: type: object deprecated: false delete: summary: deleteTenant description: '' operationId: deleteTenant parameters: - name: tenantName in: path description: '' required: true style: simple schema: type: string responses: '200': description: Successful operation headers: {} content: application/json: schema: type: object deprecated: false /mo/uni/{tenantName}/{applicationProfile}: post: summary: createEPG description: '' operationId: createEPG parameters: - name: tenantName in: path description: '' required: true style: simple schema: type: string - name: applicationProfile in: path description: '' required: true style: simple schema: type: string requestBody: description: '' content: application/json: schema: type: object required: false responses: '200': description: Successful operation headers: {} content: application/json: schema: type: object deprecated: false /mo/uni/{tenantName}/{applicationProfile}/{epgName}: post: summary: assignPort description: '' operationId: assignPort parameters: - name: tenantName in: path description: '' required: true style: simple schema: type: string - name: applicationProfile in: path description: '' required: true style: simple schema: type: string - name: epgName in: path description: '' required: true style: simple schema: type: string requestBody: description: '' content: application/json: schema: type: object required: false responses: '200': description: Successful operation headers: {} content: application/json: schema: type: object deprecated: false tags: []