Skip to content

Commit

Permalink
Merge pull request #215 from cosminseceleanu/release-2022.5.0
Browse files Browse the repository at this point in the history
Cloud Manager 2022.5.0 API Docs
  • Loading branch information
TylerRush authored May 10, 2022
2 parents 2ad98e7 + 64a43b5 commit 4e5f8e6
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/data/permissions.json
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,12 @@
"method": "PUT",
"path": "/api/program/{programId}/networkInfrastructure/{networkInfrastructureId}"
},
{
"operation": "deleteNetworkInfrastructure",
"profiles": "Business Owner",
"method": "DELETE",
"path": "/api/program/{programId}/networkInfrastructure/{networkInfrastructureId}"
},
{
"operation": "enableEnvironmentAdvancedNetworkingConfiguration",
"profiles": "Deployment Manager, Business Owner",
Expand Down Expand Up @@ -205,4 +211,4 @@
"path":"/api/program/{programId}/environment/{environmentId}/logs/download"

}
]
]
41 changes: 41 additions & 0 deletions swagger-specs/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2827,6 +2827,47 @@ paths:
$ref: '#/definitions/NetworkInfrastructure'
'404':
description: Network Infrastructure not found
delete:
tags:
- Network infrastructure
summary: Delete network infrastructure
description: Deletes an existing network infrastructure
operationId: deleteNetworkInfrastructure
parameters:
- name: programId
in: path
description: Identifier of the program
required: true
type: string
- name: networkInfrastructureId
in: path
description: Identifier of the network infrastructure
required: true
type: string
- name: x-gw-ims-org-id
in: header
description: IMS organization ID that the request is being made under.
required: true
type: string
- name: Authorization
in: header
description: 'Bearer [token] - An access token for the technical account created through integration with Adobe IO'
required: true
type: string
- name: x-api-key
in: header
description: IMS Client ID (API Key) which is subscribed to consume services on console.adobe.io
required: true
type: string
responses:
'204':
description: Network infrastructure deleted
schema:
$ref: '#/definitions/NetworkInfrastructure'
'400':
description: Network Infrastructure cannot be deleted
'404':
description: Network Infrastructure not found
'/api/program/{programId}/environment/{environmentId}/advancedNetworking':
get:
tags:
Expand Down

0 comments on commit 4e5f8e6

Please sign in to comment.