Deploy or request deployment of an API

post

/apiplatform/management/v1/apis/{apiId}/deployments

Creates a new deployment request for the {apiId} API.

Users requesting this resource must be assigned the API Manager, or Gateway Manager role and must be issued the Gateway Manager, Deploy to Gateway, or Request Deployment to Gateway grant for the gateway they are deploying to. For a new deployment, the user must also be issued the Deploy API grant for the specified API.

Request

Supported Media Types
Path Parameters
Body ()
Root Schema : CreateGatewayDeploymentRequest
Match All
Show Source
Nested Schema : CreateGatewayDeploymentRequest-allOf[0]
Type: object
Show Source
Nested Schema : CreateForm
Type: object
Show Source
  • The deployment action. Valid values are DEPLOY (to create a new deployment), UNDEPLOY (to undeploy a deployment), ACTIVATE (to activate a deployment), and INACTIVATE (to inactivate a deployment).
  • The deployment's description. This is an optional value and is applicable to only the DEPLOY action. If no value is specified and a deployment already exists, it defaults to the existing description.
  • A unique ID referencing a specific iteration of an API. This is an optional attribute and is applicable to only the DEPLOY action. If unspecified, it defaults to the latest iteration.
  • The deployment's runtime state. This is an optional attribute and is applicable to only the DEPLOY action. If the API is being deployed to the gateway for the first time, this attribute defaults to INACTIVE; otherwise, it defaults to the existing deployment state.

    Valid values are ACTIVE and INACTIVE.

Back to Top

Response

Supported Media Types

201 Response

The deployment was created.
Body ()
Root Schema : DeploymentId
Type: object
Show Source

403 Response

Forbidden.
Body ()
Root Schema : Error
Type: object
Show Source
Nested Schema : errorDetails
Type: array
additional errors
Show Source

500 Response

Unexpected error.
Body ()
Root Schema : Error
Type: object
Show Source
Nested Schema : errorDetails
Type: array
additional errors
Show Source
Back to Top

Examples

The following example shows how to create a deployment request for the API submitting a POST request on the REST resource using cURL. For more information about cURL, see Use cURL

curl -i -X POST 
-H "Authorization: Bearer access_token"
-H "Content-Type:application/json"
-d @deployment.json
https://example.com//apiplatform/management/v1/apis/{apiId}/deployments

{apiId} is the unique ID for an API. To retrieve available API IDs, see Get APIs.

Example of Request Body

The following shows an example of the request body, included with the request above in a file named deployment.json.

{"gatewayId":"100","action":"DEPLOY","description":"","runtimeState":"ACTIVE"}

Example of Response Headers

The following shows an example of the response headers.

HTTP/1.1 200 OK
Server: Oracle-Traffic-Director/12.2.1.0.0
Date:  Fri, 17 Mar 2017 06:33:50 GMT
Content-Length:  12
Content-Type:  application/json
X-oracle-dms-ecid:  f102c33f-1c5b-4409-806d-03bf5706c492-0002ac6f
X-oracle-dms-rid: 0:1
Via: 1.1 otd_opc
Proxy-agent: Oracle-Traffic-Director/12.2.1.0.0

Example of Response Body

The following example shows the contents of the response body in JSON format, including the deployment ID.

{
    "id": "103"
}
Back to Top