Skip to content

Latest commit

 

History

History
99 lines (53 loc) · 3.03 KB

DeploymentsApi.md

File metadata and controls

99 lines (53 loc) · 3.03 KB

\DeploymentsApi

All URIs are relative to http://localhost:8080

Method HTTP request Description
create_deployment POST /api/v1/workspaces/{workspace_id}/applications/{application_id}/deployments
list_deployments GET /api/v1/workspaces/{workspace_id}/applications/{application_id}/deployments
read_deployment GET /api/v1/workspaces/{workspace_id}/applications/{application_id}/deployments/{deployment_id}

create_deployment

models::CreateDeploymentSuccess create_deployment(workspace_id, application_id)

Parameters

Name Type Description Required Notes
workspace_id uuid::Uuid The workspace's id [required]
application_id uuid::Uuid The application's id [required]

Return type

models::CreateDeploymentSuccess

Authorization

bearer_auth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

list_deployments

models::ListDeploymentsSuccess list_deployments(workspace_id, application_id)

Parameters

Name Type Description Required Notes
workspace_id uuid::Uuid The workspace's id [required]
application_id uuid::Uuid The application's id [required]

Return type

models::ListDeploymentsSuccess

Authorization

bearer_auth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

read_deployment

models::ReadDeploymentSuccess read_deployment(workspace_id, application_id, deployment_id)

Parameters

Name Type Description Required Notes
workspace_id uuid::Uuid The workspace's id [required]
application_id uuid::Uuid The application's id [required]
deployment_id u64 The deployment's id [required]

Return type

models::ReadDeploymentSuccess

Authorization

bearer_auth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]