PipelinesApi
Method
HTTP request
Description
PipelinesDelete
var result = PipelinesDelete(ctx, pipelineId)
.Execute()Example
package main
import (
"context"
"fmt"
"os"
monitoring "github.com/ionos-cloud/sdk-go-bundle/products/monitoring"
"github.com/ionos-cloud/sdk-go-bundle/shared"
)
func main() {
pipelineId := "f72521ba-1590-5998-bf96-6eb997a5887d" // string | The ID (UUID) of the Pipeline.
configuration := shared.NewConfiguration("USERNAME", "PASSWORD", "TOKEN", "HOST_URL")
apiClient := monitoring.NewAPIClient(configuration)
resp, err := apiClient.PipelinesApi.PipelinesDelete(context.Background(), pipelineId).Execute()
if err != nil {
fmt.Fprintf(os.Stderr, "Error when calling `PipelinesApi.PipelinesDelete``: %v\n", err)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", resp)
}
}Path Parameters
Name
Type
Description
Notes
Other Parameters
Return type
HTTP request headers
PipelinesFindById
Example
Path Parameters
Name
Type
Description
Notes
Other Parameters
Return type
HTTP request headers
PipelinesGet
Example
Path Parameters
Other Parameters
Name
Type
Description
Notes
Return type
HTTP request headers
PipelinesPost
Example
Path Parameters
Other Parameters
Name
Type
Description
Notes
Return type
HTTP request headers
PipelinesPut
Example
Path Parameters
Name
Type
Description
Notes
Other Parameters
Name
Type
Description
Notes
Return type
HTTP request headers
Last updated
