Skip to content

Latest commit

 

History

History
79 lines (49 loc) · 2.2 KB

HelmDeploymentHistoryAPI.md

File metadata and controls

79 lines (49 loc) · 2.2 KB

\HelmDeploymentHistoryAPI

All URIs are relative to https://api.qovery.com

Method HTTP request Description
ListHelmDeploymentHistory Get /helm/{helmId}/deploymentHistory List helm deployments

ListHelmDeploymentHistory

ListHelmDeploymentHistory200Response ListHelmDeploymentHistory(ctx, helmId).Execute()

List helm deployments

Example

package main

import (
	"context"
	"fmt"
	"os"
	openapiclient "github.com/qovery/qovery-client-go"
)

func main() {
	helmId := "38400000-8cf0-11bd-b23e-10b96e4ef00d" // string | Helm ID

	configuration := openapiclient.NewConfiguration()
	apiClient := openapiclient.NewAPIClient(configuration)
	resp, r, err := apiClient.HelmDeploymentHistoryAPI.ListHelmDeploymentHistory(context.Background(), helmId).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `HelmDeploymentHistoryAPI.ListHelmDeploymentHistory``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `ListHelmDeploymentHistory`: ListHelmDeploymentHistory200Response
	fmt.Fprintf(os.Stdout, "Response from `HelmDeploymentHistoryAPI.ListHelmDeploymentHistory`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
helmId string Helm ID

Other Parameters

Other parameters are passed through a pointer to a apiListHelmDeploymentHistoryRequest struct via the builder pattern

Name Type Description Notes

Return type

ListHelmDeploymentHistory200Response

Authorization

ApiKeyAuth, bearerAuth

HTTP request headers

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

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