Skip to content

Latest commit

 

History

History
81 lines (51 loc) · 2.53 KB

DatabaseDeploymentHistoryAPI.md

File metadata and controls

81 lines (51 loc) · 2.53 KB

\DatabaseDeploymentHistoryAPI

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

Method HTTP request Description
ListDatabaseDeploymentHistory Get /database/{databaseId}/deploymentHistory List database deploys

ListDatabaseDeploymentHistory

ListDatabaseDeploymentHistory200Response ListDatabaseDeploymentHistory(ctx, databaseId).StartId(startId).Execute()

List database deploys

Example

package main

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

func main() {
	databaseId := "38400000-8cf0-11bd-b23e-10b96e4ef00d" // string | Database ID
	startId := "38400000-8cf0-11bd-b23e-10b96e4ef00d" // string | Starting point after which to return results (optional)

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

Path Parameters

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

Other Parameters

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

Name Type Description Notes

startId | string | Starting point after which to return results |

Return type

ListDatabaseDeploymentHistory200Response

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]