Skip to content

Latest commit

 

History

History
145 lines (84 loc) · 4.51 KB

ServicesEnvironmentsDeploymentsApi.md

File metadata and controls

145 lines (84 loc) · 4.51 KB

ServicesEnvironmentsDeploymentsApi

All URIs are relative to https://serverless.twilio.com

Method HTTP request Description
CreateDeployment Post /v1/Services/{ServiceSid}/Environments/{EnvironmentSid}/Deployments Create a new Deployment.
FetchDeployment Get /v1/Services/{ServiceSid}/Environments/{EnvironmentSid}/Deployments/{Sid} Retrieve a specific Deployment.
ListDeployment Get /v1/Services/{ServiceSid}/Environments/{EnvironmentSid}/Deployments Retrieve a list of all Deployments.

CreateDeployment

ServerlessV1Deployment CreateDeployment(ctx, ServiceSidEnvironmentSidoptional)

Create a new Deployment.

Create a new Deployment.

Path Parameters

Name Type Description
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ServiceSid string The SID of the Service to create the Deployment resource under.
EnvironmentSid string The SID of the Environment for the Deployment.

Other Parameters

Other parameters are passed through a pointer to a CreateDeploymentParams struct

Name Type Description
BuildSid string The SID of the Build for the Deployment.
IsPlugin bool Whether the Deployment is a plugin.

Return type

ServerlessV1Deployment

Authorization

accountSid_authToken

HTTP request headers

  • Content-Type: application/x-www-form-urlencoded
  • Accept: application/json

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

FetchDeployment

ServerlessV1Deployment FetchDeployment(ctx, ServiceSidEnvironmentSidSid)

Retrieve a specific Deployment.

Retrieve a specific Deployment.

Path Parameters

Name Type Description
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ServiceSid string The SID of the Service to fetch the Deployment resource from.
EnvironmentSid string The SID of the Environment used by the Deployment to fetch.
Sid string The SID that identifies the Deployment resource to fetch.

Other Parameters

Other parameters are passed through a pointer to a FetchDeploymentParams struct

Name Type Description

Return type

ServerlessV1Deployment

Authorization

accountSid_authToken

HTTP request headers

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

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

ListDeployment

[]ServerlessV1Deployment ListDeployment(ctx, ServiceSidEnvironmentSidoptional)

Retrieve a list of all Deployments.

Retrieve a list of all Deployments.

Path Parameters

Name Type Description
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ServiceSid string The SID of the Service to read the Deployment resources from.
EnvironmentSid string The SID of the Environment used by the Deployment resources to read.

Other Parameters

Other parameters are passed through a pointer to a ListDeploymentParams struct

Name Type Description
PageSize int How many resources to return in each list page. The default is 50, and the maximum is 1000.
Limit int Max number of records to return.

Return type

[]ServerlessV1Deployment

Authorization

accountSid_authToken

HTTP request headers

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

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