From c0457e8d920fc00ac3c55483558d84b14892f8bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20W=C3=BCrbach?= Date: Mon, 6 Nov 2023 11:23:58 +0100 Subject: [PATCH] feat: bump to oapi-codegen v2 --- Makefile | 2 +- client/client.gen.go | 888 ++++++++++++++++++++++--------------------- go.mod | 68 +--- go.sum | 238 +----------- 4 files changed, 464 insertions(+), 732 deletions(-) diff --git a/Makefile b/Makefile index 8c4b6b2..cc1af5d 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ fetch-openapi: curl -fsSL https://api-docs.humanitec.com/openapi.json > ./docs/openapi.json generate: - go run github.com/deepmap/oapi-codegen/cmd/oapi-codegen@v1.13.0 -generate types,client -package client ./docs/openapi.json > client/client.gen.go + go run github.com/deepmap/oapi-codegen/v2/cmd/oapi-codegen@v2.0.0 -generate types,client -package client ./docs/openapi.json > client/client.gen.go test: go test ./... -cover diff --git a/client/client.gen.go b/client/client.gen.go index 7e13a00..ff419b2 100644 --- a/client/client.gen.go +++ b/client/client.gen.go @@ -1,6 +1,6 @@ // Package client provides primitives to interact with the openapi HTTP API. // -// Code generated by github.com/deepmap/oapi-codegen version v1.13.0 DO NOT EDIT. +// Code generated by github.com/deepmap/oapi-codegen/v2 version v2.0.0 DO NOT EDIT. package client import ( @@ -14,8 +14,8 @@ import ( "strings" "time" - "github.com/deepmap/oapi-codegen/pkg/runtime" - openapi_types "github.com/deepmap/oapi-codegen/pkg/types" + "github.com/oapi-codegen/runtime" + openapi_types "github.com/oapi-codegen/runtime/types" ) // Defines values for PipelineApprovalRequestStatus. @@ -1067,7 +1067,7 @@ type MatchingCriteriaRuleRequest struct { // ModuleDeltasRequest ModuleDeltas groups the different operations together. type ModuleDeltasRequest struct { - Add *map[string]ModuleRequest `json:"add"` + Add *map[string]*ModuleRequest `json:"add"` Remove *[]string `json:"remove"` Update *map[string][]UpdateActionRequest `json:"update"` } @@ -3208,7 +3208,7 @@ func (a *ModuleRequest) UnmarshalJSON(b []byte) error { var fieldVal ControllerRequest err := json.Unmarshal(fieldBuf, &fieldVal) if err != nil { - return fmt.Errorf("error unmarshalling field %s: %w", fieldName, err) + return fmt.Errorf("error unmarshaling field %s: %w", fieldName, err) } a.AdditionalProperties[fieldName] = fieldVal } @@ -3321,7 +3321,7 @@ func (a *ModuleResponse) UnmarshalJSON(b []byte) error { var fieldVal ControllerResponse err := json.Unmarshal(fieldBuf, &fieldVal) if err != nil { - return fmt.Errorf("error unmarshalling field %s: %w", fieldName, err) + return fmt.Errorf("error unmarshaling field %s: %w", fieldName, err) } a.AdditionalProperties[fieldName] = fieldVal } @@ -3441,7 +3441,7 @@ type ClientInterface interface { // GetCurrentUser request GetCurrentUser(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) - // PatchCurrentUser request with any body + // PatchCurrentUserWithBody request with any body PatchCurrentUserWithBody(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PatchCurrentUser(ctx context.Context, body PatchCurrentUserJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3455,7 +3455,7 @@ type ClientInterface interface { // GetOrgsOrgIdApps request GetOrgsOrgIdApps(ctx context.Context, orgId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdApps request with any body + // PostOrgsOrgIdAppsWithBody request with any body PostOrgsOrgIdAppsWithBody(ctx context.Context, orgId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdApps(ctx context.Context, orgId string, body PostOrgsOrgIdAppsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3472,7 +3472,7 @@ type ClientInterface interface { // GetOrgsOrgIdAppsAppIdDeltas request GetOrgsOrgIdAppsAppIdDeltas(ctx context.Context, orgId string, appId string, params *GetOrgsOrgIdAppsAppIdDeltasParams, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdAppsAppIdDeltas request with any body + // PostOrgsOrgIdAppsAppIdDeltasWithBody request with any body PostOrgsOrgIdAppsAppIdDeltasWithBody(ctx context.Context, orgId string, appId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdAppsAppIdDeltas(ctx context.Context, orgId string, appId string, body PostOrgsOrgIdAppsAppIdDeltasJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3480,27 +3480,27 @@ type ClientInterface interface { // GetDelta request GetDelta(ctx context.Context, orgId string, appId string, deltaId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PatchOrgsOrgIdAppsAppIdDeltasDeltaId request with any body + // PatchOrgsOrgIdAppsAppIdDeltasDeltaIdWithBody request with any body PatchOrgsOrgIdAppsAppIdDeltasDeltaIdWithBody(ctx context.Context, orgId string, appId string, deltaId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PatchOrgsOrgIdAppsAppIdDeltasDeltaId(ctx context.Context, orgId string, appId string, deltaId string, body PatchOrgsOrgIdAppsAppIdDeltasDeltaIdJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) - // PutDelta request with any body + // PutDeltaWithBody request with any body PutDeltaWithBody(ctx context.Context, orgId string, appId string, deltaId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PutDelta(ctx context.Context, orgId string, appId string, deltaId string, body PutDeltaJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) - // PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataArchived request with any body + // PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataArchivedWithBody request with any body PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataArchivedWithBody(ctx context.Context, orgId string, appId string, deltaId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataArchived(ctx context.Context, orgId string, appId string, deltaId string, body PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataArchivedJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) - // PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataEnvId request with any body + // PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataEnvIdWithBody request with any body PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataEnvIdWithBody(ctx context.Context, orgId string, appId string, deltaId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataEnvId(ctx context.Context, orgId string, appId string, deltaId string, body PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataEnvIdJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) - // PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataName request with any body + // PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataNameWithBody request with any body PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataNameWithBody(ctx context.Context, orgId string, appId string, deltaId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataName(ctx context.Context, orgId string, appId string, deltaId string, body PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataNameJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3508,7 +3508,7 @@ type ClientInterface interface { // GetOrgsOrgIdAppsAppIdEnvs request GetOrgsOrgIdAppsAppIdEnvs(ctx context.Context, orgId string, appId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdAppsAppIdEnvs request with any body + // PostOrgsOrgIdAppsAppIdEnvsWithBody request with any body PostOrgsOrgIdAppsAppIdEnvsWithBody(ctx context.Context, orgId string, appId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdAppsAppIdEnvs(ctx context.Context, orgId string, appId string, body PostOrgsOrgIdAppsAppIdEnvsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3522,7 +3522,7 @@ type ClientInterface interface { // ListDeployments request ListDeployments(ctx context.Context, orgId string, appId string, envId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdAppsAppIdEnvsEnvIdDeploys request with any body + // PostOrgsOrgIdAppsAppIdEnvsEnvIdDeploysWithBody request with any body PostOrgsOrgIdAppsAppIdEnvsEnvIdDeploysWithBody(ctx context.Context, orgId string, appId string, envId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdAppsAppIdEnvsEnvIdDeploys(ctx context.Context, orgId string, appId string, envId string, body PostOrgsOrgIdAppsAppIdEnvsEnvIdDeploysJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3533,7 +3533,7 @@ type ClientInterface interface { // ListDeploymentErrors request ListDeploymentErrors(ctx context.Context, orgId string, appId string, envId string, deployId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PutOrgsOrgIdAppsAppIdEnvsEnvIdFromDeployId request with any body + // PutOrgsOrgIdAppsAppIdEnvsEnvIdFromDeployIdWithBody request with any body PutOrgsOrgIdAppsAppIdEnvsEnvIdFromDeployIdWithBody(ctx context.Context, orgId string, appId string, envId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PutOrgsOrgIdAppsAppIdEnvsEnvIdFromDeployId(ctx context.Context, orgId string, appId string, envId string, body PutOrgsOrgIdAppsAppIdEnvsEnvIdFromDeployIdJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3541,7 +3541,7 @@ type ClientInterface interface { // GetOrgsOrgIdAppsAppIdEnvsEnvIdResources request GetOrgsOrgIdAppsAppIdEnvsEnvIdResources(ctx context.Context, orgId string, appId string, envId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdAppsAppIdEnvsEnvIdResourcesGraph request with any body + // PostOrgsOrgIdAppsAppIdEnvsEnvIdResourcesGraphWithBody request with any body PostOrgsOrgIdAppsAppIdEnvsEnvIdResourcesGraphWithBody(ctx context.Context, orgId string, appId string, envId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdAppsAppIdEnvsEnvIdResourcesGraph(ctx context.Context, orgId string, appId string, envId string, body PostOrgsOrgIdAppsAppIdEnvsEnvIdResourcesGraphJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3552,7 +3552,7 @@ type ClientInterface interface { // GetOrgsOrgIdAppsAppIdEnvsEnvIdRules request GetOrgsOrgIdAppsAppIdEnvsEnvIdRules(ctx context.Context, orgId string, appId string, envId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdAppsAppIdEnvsEnvIdRules request with any body + // PostOrgsOrgIdAppsAppIdEnvsEnvIdRulesWithBody request with any body PostOrgsOrgIdAppsAppIdEnvsEnvIdRulesWithBody(ctx context.Context, orgId string, appId string, envId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdAppsAppIdEnvsEnvIdRules(ctx context.Context, orgId string, appId string, envId string, body PostOrgsOrgIdAppsAppIdEnvsEnvIdRulesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3563,7 +3563,7 @@ type ClientInterface interface { // GetOrgsOrgIdAppsAppIdEnvsEnvIdRulesRuleId request GetOrgsOrgIdAppsAppIdEnvsEnvIdRulesRuleId(ctx context.Context, orgId string, appId string, envId string, ruleId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PutOrgsOrgIdAppsAppIdEnvsEnvIdRulesRuleId request with any body + // PutOrgsOrgIdAppsAppIdEnvsEnvIdRulesRuleIdWithBody request with any body PutOrgsOrgIdAppsAppIdEnvsEnvIdRulesRuleIdWithBody(ctx context.Context, orgId string, appId string, envId string, ruleId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PutOrgsOrgIdAppsAppIdEnvsEnvIdRulesRuleId(ctx context.Context, orgId string, appId string, envId string, ruleId string, body PutOrgsOrgIdAppsAppIdEnvsEnvIdRulesRuleIdJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3571,12 +3571,12 @@ type ClientInterface interface { // GetOrgsOrgIdAppsAppIdEnvsEnvIdRuntime request GetOrgsOrgIdAppsAppIdEnvsEnvIdRuntime(ctx context.Context, orgId string, appId string, envId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PutOrgsOrgIdAppsAppIdEnvsEnvIdRuntimePaused request with any body + // PutOrgsOrgIdAppsAppIdEnvsEnvIdRuntimePausedWithBody request with any body PutOrgsOrgIdAppsAppIdEnvsEnvIdRuntimePausedWithBody(ctx context.Context, orgId string, appId string, envId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PutOrgsOrgIdAppsAppIdEnvsEnvIdRuntimePaused(ctx context.Context, orgId string, appId string, envId string, body PutOrgsOrgIdAppsAppIdEnvsEnvIdRuntimePausedJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) - // PatchOrgsOrgIdAppsAppIdEnvsEnvIdRuntimeReplicas request with any body + // PatchOrgsOrgIdAppsAppIdEnvsEnvIdRuntimeReplicasWithBody request with any body PatchOrgsOrgIdAppsAppIdEnvsEnvIdRuntimeReplicasWithBody(ctx context.Context, orgId string, appId string, envId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PatchOrgsOrgIdAppsAppIdEnvsEnvIdRuntimeReplicas(ctx context.Context, orgId string, appId string, envId string, body PatchOrgsOrgIdAppsAppIdEnvsEnvIdRuntimeReplicasJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3587,17 +3587,17 @@ type ClientInterface interface { // GetOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionId request GetOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionId(ctx context.Context, orgId string, appId string, envId string, valueSetVersionId openapi_types.UUID, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdPurgeKey request with any body + // PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdPurgeKeyWithBody request with any body PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdPurgeKeyWithBody(ctx context.Context, orgId string, appId string, envId string, valueSetVersionId openapi_types.UUID, key string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdPurgeKey(ctx context.Context, orgId string, appId string, envId string, valueSetVersionId openapi_types.UUID, key string, body PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdPurgeKeyJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestore request with any body + // PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestoreWithBody request with any body PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestoreWithBody(ctx context.Context, orgId string, appId string, envId string, valueSetVersionId openapi_types.UUID, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestore(ctx context.Context, orgId string, appId string, envId string, valueSetVersionId openapi_types.UUID, body PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestoreJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestoreKey request with any body + // PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestoreKeyWithBody request with any body PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestoreKeyWithBody(ctx context.Context, orgId string, appId string, envId string, valueSetVersionId openapi_types.UUID, key string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestoreKey(ctx context.Context, orgId string, appId string, envId string, valueSetVersionId openapi_types.UUID, key string, body PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestoreKeyJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3608,7 +3608,7 @@ type ClientInterface interface { // GetOrgsOrgIdAppsAppIdEnvsEnvIdValues request GetOrgsOrgIdAppsAppIdEnvsEnvIdValues(ctx context.Context, orgId string, appId string, envId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdAppsAppIdEnvsEnvIdValues request with any body + // PostOrgsOrgIdAppsAppIdEnvsEnvIdValuesWithBody request with any body PostOrgsOrgIdAppsAppIdEnvsEnvIdValuesWithBody(ctx context.Context, orgId string, appId string, envId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdAppsAppIdEnvsEnvIdValues(ctx context.Context, orgId string, appId string, envId string, body PostOrgsOrgIdAppsAppIdEnvsEnvIdValuesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3616,12 +3616,12 @@ type ClientInterface interface { // DeleteOrgsOrgIdAppsAppIdEnvsEnvIdValuesKey request DeleteOrgsOrgIdAppsAppIdEnvsEnvIdValuesKey(ctx context.Context, orgId string, appId string, envId string, key string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PatchOrgsOrgIdAppsAppIdEnvsEnvIdValuesKey request with any body + // PatchOrgsOrgIdAppsAppIdEnvsEnvIdValuesKeyWithBody request with any body PatchOrgsOrgIdAppsAppIdEnvsEnvIdValuesKeyWithBody(ctx context.Context, orgId string, appId string, envId string, key string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PatchOrgsOrgIdAppsAppIdEnvsEnvIdValuesKey(ctx context.Context, orgId string, appId string, envId string, key string, body PatchOrgsOrgIdAppsAppIdEnvsEnvIdValuesKeyJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) - // PutOrgsOrgIdAppsAppIdEnvsEnvIdValuesKey request with any body + // PutOrgsOrgIdAppsAppIdEnvsEnvIdValuesKeyWithBody request with any body PutOrgsOrgIdAppsAppIdEnvsEnvIdValuesKeyWithBody(ctx context.Context, orgId string, appId string, envId string, key string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PutOrgsOrgIdAppsAppIdEnvsEnvIdValuesKey(ctx context.Context, orgId string, appId string, envId string, key string, body PutOrgsOrgIdAppsAppIdEnvsEnvIdValuesKeyJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3632,7 +3632,7 @@ type ClientInterface interface { // ListPipelines request ListPipelines(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, params *ListPipelinesParams, reqEditors ...RequestEditorFn) (*http.Response, error) - // CreatePipeline request with any body + // CreatePipelineWithBody request with any body CreatePipelineWithBody(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) // DeletePipeline request @@ -3641,13 +3641,13 @@ type ClientInterface interface { // GetPipeline request GetPipeline(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, pipelineId PipelineIdPathParam, params *GetPipelineParams, reqEditors ...RequestEditorFn) (*http.Response, error) - // UpdatePipeline request with any body + // UpdatePipelineWithBody request with any body UpdatePipelineWithBody(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, pipelineId PipelineIdPathParam, params *UpdatePipelineParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) // ListPipelineRuns request ListPipelineRuns(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, pipelineId PipelineIdPathParam, params *ListPipelineRunsParams, reqEditors ...RequestEditorFn) (*http.Response, error) - // CreatePipelineRun request with any body + // CreatePipelineRunWithBody request with any body CreatePipelineRunWithBody(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, pipelineId PipelineIdPathParam, params *CreatePipelineRunParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) CreatePipelineRun(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, pipelineId PipelineIdPathParam, params *CreatePipelineRunParams, body CreatePipelineRunJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3697,7 +3697,7 @@ type ClientInterface interface { // GetOrgsOrgIdAppsAppIdSetsSetId request GetOrgsOrgIdAppsAppIdSetsSetId(ctx context.Context, orgId string, appId string, setId string, params *GetOrgsOrgIdAppsAppIdSetsSetIdParams, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdAppsAppIdSetsSetId request with any body + // PostOrgsOrgIdAppsAppIdSetsSetIdWithBody request with any body PostOrgsOrgIdAppsAppIdSetsSetIdWithBody(ctx context.Context, orgId string, appId string, setId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdAppsAppIdSetsSetId(ctx context.Context, orgId string, appId string, setId string, body PostOrgsOrgIdAppsAppIdSetsSetIdJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3708,7 +3708,7 @@ type ClientInterface interface { // GetOrgsOrgIdAppsAppIdUsers request GetOrgsOrgIdAppsAppIdUsers(ctx context.Context, orgId string, appId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdAppsAppIdUsers request with any body + // PostOrgsOrgIdAppsAppIdUsersWithBody request with any body PostOrgsOrgIdAppsAppIdUsersWithBody(ctx context.Context, orgId string, appId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdAppsAppIdUsers(ctx context.Context, orgId string, appId string, body PostOrgsOrgIdAppsAppIdUsersJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3719,7 +3719,7 @@ type ClientInterface interface { // GetOrgsOrgIdAppsAppIdUsersUserId request GetOrgsOrgIdAppsAppIdUsersUserId(ctx context.Context, orgId string, appId string, userId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PatchOrgsOrgIdAppsAppIdUsersUserId request with any body + // PatchOrgsOrgIdAppsAppIdUsersUserIdWithBody request with any body PatchOrgsOrgIdAppsAppIdUsersUserIdWithBody(ctx context.Context, orgId string, appId string, userId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PatchOrgsOrgIdAppsAppIdUsersUserId(ctx context.Context, orgId string, appId string, userId string, body PatchOrgsOrgIdAppsAppIdUsersUserIdJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3730,17 +3730,17 @@ type ClientInterface interface { // GetOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionId request GetOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionId(ctx context.Context, orgId string, appId string, valueSetVersionId openapi_types.UUID, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdPurgeKey request with any body + // PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdPurgeKeyWithBody request with any body PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdPurgeKeyWithBody(ctx context.Context, orgId string, appId string, valueSetVersionId openapi_types.UUID, key string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdPurgeKey(ctx context.Context, orgId string, appId string, valueSetVersionId openapi_types.UUID, key string, body PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdPurgeKeyJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestore request with any body + // PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestoreWithBody request with any body PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestoreWithBody(ctx context.Context, orgId string, appId string, valueSetVersionId openapi_types.UUID, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestore(ctx context.Context, orgId string, appId string, valueSetVersionId openapi_types.UUID, body PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestoreJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestoreKey request with any body + // PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestoreKeyWithBody request with any body PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestoreKeyWithBody(ctx context.Context, orgId string, appId string, valueSetVersionId openapi_types.UUID, key string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestoreKey(ctx context.Context, orgId string, appId string, valueSetVersionId openapi_types.UUID, key string, body PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestoreKeyJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3751,7 +3751,7 @@ type ClientInterface interface { // GetOrgsOrgIdAppsAppIdValues request GetOrgsOrgIdAppsAppIdValues(ctx context.Context, orgId string, appId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdAppsAppIdValues request with any body + // PostOrgsOrgIdAppsAppIdValuesWithBody request with any body PostOrgsOrgIdAppsAppIdValuesWithBody(ctx context.Context, orgId string, appId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdAppsAppIdValues(ctx context.Context, orgId string, appId string, body PostOrgsOrgIdAppsAppIdValuesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3759,12 +3759,12 @@ type ClientInterface interface { // DeleteOrgsOrgIdAppsAppIdValuesKey request DeleteOrgsOrgIdAppsAppIdValuesKey(ctx context.Context, orgId string, appId string, key string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PatchOrgsOrgIdAppsAppIdValuesKey request with any body + // PatchOrgsOrgIdAppsAppIdValuesKeyWithBody request with any body PatchOrgsOrgIdAppsAppIdValuesKeyWithBody(ctx context.Context, orgId string, appId string, key string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PatchOrgsOrgIdAppsAppIdValuesKey(ctx context.Context, orgId string, appId string, key string, body PatchOrgsOrgIdAppsAppIdValuesKeyJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) - // PutOrgsOrgIdAppsAppIdValuesKey request with any body + // PutOrgsOrgIdAppsAppIdValuesKeyWithBody request with any body PutOrgsOrgIdAppsAppIdValuesKeyWithBody(ctx context.Context, orgId string, appId string, key string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PutOrgsOrgIdAppsAppIdValuesKey(ctx context.Context, orgId string, appId string, key string, body PutOrgsOrgIdAppsAppIdValuesKeyJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3772,7 +3772,7 @@ type ClientInterface interface { // GetOrgsOrgIdAppsAppIdWebhooks request GetOrgsOrgIdAppsAppIdWebhooks(ctx context.Context, orgId string, appId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdAppsAppIdWebhooks request with any body + // PostOrgsOrgIdAppsAppIdWebhooksWithBody request with any body PostOrgsOrgIdAppsAppIdWebhooksWithBody(ctx context.Context, orgId string, appId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdAppsAppIdWebhooks(ctx context.Context, orgId string, appId string, body PostOrgsOrgIdAppsAppIdWebhooksJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3783,7 +3783,7 @@ type ClientInterface interface { // GetOrgsOrgIdAppsAppIdWebhooksJobId request GetOrgsOrgIdAppsAppIdWebhooksJobId(ctx context.Context, orgId string, appId string, jobId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PatchOrgsOrgIdAppsAppIdWebhooksJobId request with any body + // PatchOrgsOrgIdAppsAppIdWebhooksJobIdWithBody request with any body PatchOrgsOrgIdAppsAppIdWebhooksJobIdWithBody(ctx context.Context, orgId string, appId string, jobId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PatchOrgsOrgIdAppsAppIdWebhooksJobId(ctx context.Context, orgId string, appId string, jobId string, body PatchOrgsOrgIdAppsAppIdWebhooksJobIdJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3791,7 +3791,7 @@ type ClientInterface interface { // ListArtefactVersionsInOrg request ListArtefactVersionsInOrg(ctx context.Context, orgId string, params *ListArtefactVersionsInOrgParams, reqEditors ...RequestEditorFn) (*http.Response, error) - // CreateArtefactVersion request with any body + // CreateArtefactVersionWithBody request with any body CreateArtefactVersionWithBody(ctx context.Context, orgId string, params *CreateArtefactVersionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) CreateArtefactVersion(ctx context.Context, orgId string, params *CreateArtefactVersionParams, body CreateArtefactVersionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3808,7 +3808,7 @@ type ClientInterface interface { // ListArtefactVersions request ListArtefactVersions(ctx context.Context, orgId string, artefactId string, params *ListArtefactVersionsParams, reqEditors ...RequestEditorFn) (*http.Response, error) - // PatchArtefactVersion request with any body + // PatchArtefactVersionWithBody request with any body PatchArtefactVersionWithBody(ctx context.Context, orgId string, artefactId string, versionId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PatchArtefactVersion(ctx context.Context, orgId string, artefactId string, versionId string, body PatchArtefactVersionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3816,7 +3816,7 @@ type ClientInterface interface { // GetOrgsOrgIdEnvTypes request GetOrgsOrgIdEnvTypes(ctx context.Context, orgId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdEnvTypes request with any body + // PostOrgsOrgIdEnvTypesWithBody request with any body PostOrgsOrgIdEnvTypesWithBody(ctx context.Context, orgId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdEnvTypes(ctx context.Context, orgId string, body PostOrgsOrgIdEnvTypesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3827,7 +3827,7 @@ type ClientInterface interface { // GetOrgsOrgIdEnvTypesEnvTypeId request GetOrgsOrgIdEnvTypesEnvTypeId(ctx context.Context, orgId string, envTypeId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdEnvTypesEnvTypeUsers request with any body + // PostOrgsOrgIdEnvTypesEnvTypeUsersWithBody request with any body PostOrgsOrgIdEnvTypesEnvTypeUsersWithBody(ctx context.Context, orgId string, envType string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdEnvTypesEnvTypeUsers(ctx context.Context, orgId string, envType string, body PostOrgsOrgIdEnvTypesEnvTypeUsersJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3838,7 +3838,7 @@ type ClientInterface interface { // GetOrgsOrgIdEnvTypesEnvTypeUsersUserId request GetOrgsOrgIdEnvTypesEnvTypeUsersUserId(ctx context.Context, orgId string, envType string, userId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PatchOrgsOrgIdEnvTypesEnvTypeUsersUserId request with any body + // PatchOrgsOrgIdEnvTypesEnvTypeUsersUserIdWithBody request with any body PatchOrgsOrgIdEnvTypesEnvTypeUsersUserIdWithBody(ctx context.Context, orgId string, envType string, userId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PatchOrgsOrgIdEnvTypesEnvTypeUsersUserId(ctx context.Context, orgId string, envType string, userId string, body PatchOrgsOrgIdEnvTypesEnvTypeUsersUserIdJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3858,7 +3858,7 @@ type ClientInterface interface { // ListDeprecatedImageBuilds request ListDeprecatedImageBuilds(ctx context.Context, orgId string, imageId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // CreateDeprecatedImageBuild request with any body + // CreateDeprecatedImageBuildWithBody request with any body CreateDeprecatedImageBuildWithBody(ctx context.Context, orgId string, imageId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) CreateDeprecatedImageBuild(ctx context.Context, orgId string, imageId string, body CreateDeprecatedImageBuildJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3866,7 +3866,7 @@ type ClientInterface interface { // GetOrgsOrgIdInvitations request GetOrgsOrgIdInvitations(ctx context.Context, orgId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdInvitations request with any body + // PostOrgsOrgIdInvitationsWithBody request with any body PostOrgsOrgIdInvitationsWithBody(ctx context.Context, orgId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdInvitations(ctx context.Context, orgId string, body PostOrgsOrgIdInvitationsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3874,7 +3874,7 @@ type ClientInterface interface { // ListPublicKeys request ListPublicKeys(ctx context.Context, orgId string, params *ListPublicKeysParams, reqEditors ...RequestEditorFn) (*http.Response, error) - // CreatePublicKey request with any body + // CreatePublicKeyWithBody request with any body CreatePublicKeyWithBody(ctx context.Context, orgId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) CreatePublicKey(ctx context.Context, orgId string, body CreatePublicKeyJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3897,7 +3897,7 @@ type ClientInterface interface { // GetOrgsOrgIdRegistries request GetOrgsOrgIdRegistries(ctx context.Context, orgId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdRegistries request with any body + // PostOrgsOrgIdRegistriesWithBody request with any body PostOrgsOrgIdRegistriesWithBody(ctx context.Context, orgId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdRegistries(ctx context.Context, orgId string, body PostOrgsOrgIdRegistriesJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3908,7 +3908,7 @@ type ClientInterface interface { // GetOrgsOrgIdRegistriesRegId request GetOrgsOrgIdRegistriesRegId(ctx context.Context, orgId string, regId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PatchOrgsOrgIdRegistriesRegId request with any body + // PatchOrgsOrgIdRegistriesRegIdWithBody request with any body PatchOrgsOrgIdRegistriesRegIdWithBody(ctx context.Context, orgId string, regId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PatchOrgsOrgIdRegistriesRegId(ctx context.Context, orgId string, regId string, body PatchOrgsOrgIdRegistriesRegIdJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3922,7 +3922,7 @@ type ClientInterface interface { // GetOrgsOrgIdResourcesAccounts request GetOrgsOrgIdResourcesAccounts(ctx context.Context, orgId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdResourcesAccounts request with any body + // PostOrgsOrgIdResourcesAccountsWithBody request with any body PostOrgsOrgIdResourcesAccountsWithBody(ctx context.Context, orgId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdResourcesAccounts(ctx context.Context, orgId string, body PostOrgsOrgIdResourcesAccountsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3933,7 +3933,7 @@ type ClientInterface interface { // GetOrgsOrgIdResourcesAccountsAccId request GetOrgsOrgIdResourcesAccountsAccId(ctx context.Context, orgId string, accId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PatchOrgsOrgIdResourcesAccountsAccId request with any body + // PatchOrgsOrgIdResourcesAccountsAccIdWithBody request with any body PatchOrgsOrgIdResourcesAccountsAccIdWithBody(ctx context.Context, orgId string, accId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PatchOrgsOrgIdResourcesAccountsAccId(ctx context.Context, orgId string, accId string, body PatchOrgsOrgIdResourcesAccountsAccIdJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3941,7 +3941,7 @@ type ClientInterface interface { // GetOrgsOrgIdResourcesDefs request GetOrgsOrgIdResourcesDefs(ctx context.Context, orgId string, params *GetOrgsOrgIdResourcesDefsParams, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdResourcesDefs request with any body + // PostOrgsOrgIdResourcesDefsWithBody request with any body PostOrgsOrgIdResourcesDefsWithBody(ctx context.Context, orgId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdResourcesDefs(ctx context.Context, orgId string, body PostOrgsOrgIdResourcesDefsJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3952,17 +3952,17 @@ type ClientInterface interface { // GetOrgsOrgIdResourcesDefsDefId request GetOrgsOrgIdResourcesDefsDefId(ctx context.Context, orgId string, defId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PatchOrgsOrgIdResourcesDefsDefId request with any body + // PatchOrgsOrgIdResourcesDefsDefIdWithBody request with any body PatchOrgsOrgIdResourcesDefsDefIdWithBody(ctx context.Context, orgId string, defId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PatchOrgsOrgIdResourcesDefsDefId(ctx context.Context, orgId string, defId string, body PatchOrgsOrgIdResourcesDefsDefIdJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) - // PutOrgsOrgIdResourcesDefsDefId request with any body + // PutOrgsOrgIdResourcesDefsDefIdWithBody request with any body PutOrgsOrgIdResourcesDefsDefIdWithBody(ctx context.Context, orgId string, defId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PutOrgsOrgIdResourcesDefsDefId(ctx context.Context, orgId string, defId string, body PutOrgsOrgIdResourcesDefsDefIdJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdResourcesDefsDefIdCriteria request with any body + // PostOrgsOrgIdResourcesDefsDefIdCriteriaWithBody request with any body PostOrgsOrgIdResourcesDefsDefIdCriteriaWithBody(ctx context.Context, orgId string, defId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdResourcesDefsDefIdCriteria(ctx context.Context, orgId string, defId string, body PostOrgsOrgIdResourcesDefsDefIdCriteriaJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3976,7 +3976,7 @@ type ClientInterface interface { // GetOrgsOrgIdResourcesDrivers request GetOrgsOrgIdResourcesDrivers(ctx context.Context, orgId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdResourcesDrivers request with any body + // PostOrgsOrgIdResourcesDriversWithBody request with any body PostOrgsOrgIdResourcesDriversWithBody(ctx context.Context, orgId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdResourcesDrivers(ctx context.Context, orgId string, body PostOrgsOrgIdResourcesDriversJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3987,7 +3987,7 @@ type ClientInterface interface { // GetOrgsOrgIdResourcesDriversDriverId request GetOrgsOrgIdResourcesDriversDriverId(ctx context.Context, orgId string, driverId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PutOrgsOrgIdResourcesDriversDriverId request with any body + // PutOrgsOrgIdResourcesDriversDriverIdWithBody request with any body PutOrgsOrgIdResourcesDriversDriverIdWithBody(ctx context.Context, orgId string, driverId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PutOrgsOrgIdResourcesDriversDriverId(ctx context.Context, orgId string, driverId string, body PutOrgsOrgIdResourcesDriversDriverIdJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -3998,7 +3998,7 @@ type ClientInterface interface { // GetOrgsOrgIdSecretstores request GetOrgsOrgIdSecretstores(ctx context.Context, orgId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdSecretstores request with any body + // PostOrgsOrgIdSecretstoresWithBody request with any body PostOrgsOrgIdSecretstoresWithBody(ctx context.Context, orgId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdSecretstores(ctx context.Context, orgId string, body PostOrgsOrgIdSecretstoresJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -4009,7 +4009,7 @@ type ClientInterface interface { // GetOrgsOrgIdSecretstoresStoreId request GetOrgsOrgIdSecretstoresStoreId(ctx context.Context, orgId string, storeId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PatchOrgsOrgIdSecretstoresStoreId request with any body + // PatchOrgsOrgIdSecretstoresStoreIdWithBody request with any body PatchOrgsOrgIdSecretstoresStoreIdWithBody(ctx context.Context, orgId string, storeId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PatchOrgsOrgIdSecretstoresStoreId(ctx context.Context, orgId string, storeId string, body PatchOrgsOrgIdSecretstoresStoreIdJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -4017,7 +4017,7 @@ type ClientInterface interface { // GetOrgsOrgIdUsers request GetOrgsOrgIdUsers(ctx context.Context, orgId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostOrgsOrgIdUsers request with any body + // PostOrgsOrgIdUsersWithBody request with any body PostOrgsOrgIdUsersWithBody(ctx context.Context, orgId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostOrgsOrgIdUsers(ctx context.Context, orgId string, body PostOrgsOrgIdUsersJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -4028,7 +4028,7 @@ type ClientInterface interface { // GetOrgsOrgIdUsersUserId request GetOrgsOrgIdUsersUserId(ctx context.Context, orgId string, userId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PatchOrgsOrgIdUsersUserId request with any body + // PatchOrgsOrgIdUsersUserIdWithBody request with any body PatchOrgsOrgIdUsersUserIdWithBody(ctx context.Context, orgId string, userId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PatchOrgsOrgIdUsersUserId(ctx context.Context, orgId string, userId string, body PatchOrgsOrgIdUsersUserIdJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -4036,13 +4036,13 @@ type ClientInterface interface { // ListWorkloadProfileChartVersions request ListWorkloadProfileChartVersions(ctx context.Context, orgId OrgIdPathParam, params *ListWorkloadProfileChartVersionsParams, reqEditors ...RequestEditorFn) (*http.Response, error) - // CreateWorkloadProfileChartVersion request with any body + // CreateWorkloadProfileChartVersionWithBody request with any body CreateWorkloadProfileChartVersionWithBody(ctx context.Context, orgId OrgIdPathParam, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) // ListWorkloadProfiles request ListWorkloadProfiles(ctx context.Context, orgId OrgIdPathParam, params *ListWorkloadProfilesParams, reqEditors ...RequestEditorFn) (*http.Response, error) - // CreateWorkloadProfile request with any body + // CreateWorkloadProfileWithBody request with any body CreateWorkloadProfileWithBody(ctx context.Context, orgId OrgIdPathParam, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) CreateWorkloadProfile(ctx context.Context, orgId OrgIdPathParam, body CreateWorkloadProfileJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -4053,7 +4053,7 @@ type ClientInterface interface { // GetWorkloadProfile request GetWorkloadProfile(ctx context.Context, orgId OrgIdPathParam, profileQid ProfileQidPathParam, reqEditors ...RequestEditorFn) (*http.Response, error) - // PatchWorkloadProfile request with any body + // PatchWorkloadProfileWithBody request with any body PatchWorkloadProfileWithBody(ctx context.Context, orgId OrgIdPathParam, profileQid ProfileQidPathParam, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PatchWorkloadProfile(ctx context.Context, orgId OrgIdPathParam, profileQid ProfileQidPathParam, body PatchWorkloadProfileJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -4061,7 +4061,7 @@ type ClientInterface interface { // ListWorkloadProfileVersions request ListWorkloadProfileVersions(ctx context.Context, orgId OrgIdPathParam, profileQid ProfileQidPathParam, params *ListWorkloadProfileVersionsParams, reqEditors ...RequestEditorFn) (*http.Response, error) - // CreateWorkloadProfileVersion request with any body + // CreateWorkloadProfileVersionWithBody request with any body CreateWorkloadProfileVersionWithBody(ctx context.Context, orgId OrgIdPathParam, profileQid ProfileQidPathParam, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) CreateWorkloadProfileVersion(ctx context.Context, orgId OrgIdPathParam, profileQid ProfileQidPathParam, body CreateWorkloadProfileVersionJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -4084,7 +4084,7 @@ type ClientInterface interface { // GetUsersUserIdTokens request GetUsersUserIdTokens(ctx context.Context, userId string, reqEditors ...RequestEditorFn) (*http.Response, error) - // PostUsersUserIdTokens request with any body + // PostUsersUserIdTokensWithBody request with any body PostUsersUserIdTokensWithBody(ctx context.Context, userId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*http.Response, error) PostUsersUserIdTokens(ctx context.Context, userId string, body PostUsersUserIdTokensJSONRequestBody, reqEditors ...RequestEditorFn) (*http.Response, error) @@ -9898,15 +9898,19 @@ func NewDeletePipelineRequest(server string, orgId OrgIdPathParam, appId AppIdPa return nil, err } - if params.IfMatch != nil { - var headerParam0 string + if params != nil { - headerParam0, err = runtime.StyleParamWithLocation("simple", false, "If-Match", runtime.ParamLocationHeader, *params.IfMatch) - if err != nil { - return nil, err + if params.IfMatch != nil { + var headerParam0 string + + headerParam0, err = runtime.StyleParamWithLocation("simple", false, "If-Match", runtime.ParamLocationHeader, *params.IfMatch) + if err != nil { + return nil, err + } + + req.Header.Set("If-Match", headerParam0) } - req.Header.Set("If-Match", headerParam0) } return req, nil @@ -10029,15 +10033,19 @@ func NewUpdatePipelineRequestWithBody(server string, orgId OrgIdPathParam, appId req.Header.Add("Content-Type", contentType) - if params.IfMatch != nil { - var headerParam0 string + if params != nil { - headerParam0, err = runtime.StyleParamWithLocation("simple", false, "If-Match", runtime.ParamLocationHeader, *params.IfMatch) - if err != nil { - return nil, err + if params.IfMatch != nil { + var headerParam0 string + + headerParam0, err = runtime.StyleParamWithLocation("simple", false, "If-Match", runtime.ParamLocationHeader, *params.IfMatch) + if err != nil { + return nil, err + } + + req.Header.Set("If-Match", headerParam0) } - req.Header.Set("If-Match", headerParam0) } return req, nil @@ -10251,15 +10259,19 @@ func NewCreatePipelineRunRequestWithBody(server string, orgId OrgIdPathParam, ap req.Header.Add("Content-Type", contentType) - if params.IdempotencyKey != nil { - var headerParam0 string + if params != nil { - headerParam0, err = runtime.StyleParamWithLocation("simple", false, "Idempotency-Key", runtime.ParamLocationHeader, *params.IdempotencyKey) - if err != nil { - return nil, err + if params.IdempotencyKey != nil { + var headerParam0 string + + headerParam0, err = runtime.StyleParamWithLocation("simple", false, "Idempotency-Key", runtime.ParamLocationHeader, *params.IdempotencyKey) + if err != nil { + return nil, err + } + + req.Header.Set("Idempotency-Key", headerParam0) } - req.Header.Set("Idempotency-Key", headerParam0) } return req, nil @@ -10317,15 +10329,19 @@ func NewDeletePipelineRunRequest(server string, orgId OrgIdPathParam, appId AppI return nil, err } - if params.IfMatch != nil { - var headerParam0 string + if params != nil { - headerParam0, err = runtime.StyleParamWithLocation("simple", false, "If-Match", runtime.ParamLocationHeader, *params.IfMatch) - if err != nil { - return nil, err + if params.IfMatch != nil { + var headerParam0 string + + headerParam0, err = runtime.StyleParamWithLocation("simple", false, "If-Match", runtime.ParamLocationHeader, *params.IfMatch) + if err != nil { + return nil, err + } + + req.Header.Set("If-Match", headerParam0) } - req.Header.Set("If-Match", headerParam0) } return req, nil @@ -10438,15 +10454,19 @@ func NewCancelPipelineRunRequest(server string, orgId OrgIdPathParam, appId AppI return nil, err } - if params.IfMatch != nil { - var headerParam0 string + if params != nil { - headerParam0, err = runtime.StyleParamWithLocation("simple", false, "If-Match", runtime.ParamLocationHeader, *params.IfMatch) - if err != nil { - return nil, err + if params.IfMatch != nil { + var headerParam0 string + + headerParam0, err = runtime.StyleParamWithLocation("simple", false, "If-Match", runtime.ParamLocationHeader, *params.IfMatch) + if err != nil { + return nil, err + } + + req.Header.Set("If-Match", headerParam0) } - req.Header.Set("If-Match", headerParam0) } return req, nil @@ -10973,15 +10993,19 @@ func NewRestartPipelineRunRequest(server string, orgId OrgIdPathParam, appId App return nil, err } - if params.IdempotencyKey != nil { - var headerParam0 string + if params != nil { - headerParam0, err = runtime.StyleParamWithLocation("simple", false, "Idempotency-Key", runtime.ParamLocationHeader, *params.IdempotencyKey) - if err != nil { - return nil, err + if params.IdempotencyKey != nil { + var headerParam0 string + + headerParam0, err = runtime.StyleParamWithLocation("simple", false, "Idempotency-Key", runtime.ParamLocationHeader, *params.IdempotencyKey) + if err != nil { + return nil, err + } + + req.Header.Set("Idempotency-Key", headerParam0) } - req.Header.Set("Idempotency-Key", headerParam0) } return req, nil @@ -11054,15 +11078,19 @@ func NewGetPipelineDefinitionRequest(server string, orgId OrgIdPathParam, appId return nil, err } - if params.Accept != nil { - var headerParam0 string + if params != nil { - headerParam0, err = runtime.StyleParamWithLocation("simple", false, "Accept", runtime.ParamLocationHeader, *params.Accept) - if err != nil { - return nil, err + if params.Accept != nil { + var headerParam0 string + + headerParam0, err = runtime.StyleParamWithLocation("simple", false, "Accept", runtime.ParamLocationHeader, *params.Accept) + if err != nil { + return nil, err + } + + req.Header.Set("Accept", headerParam0) } - req.Header.Set("Accept", headerParam0) } return req, nil @@ -16900,661 +16928,661 @@ func WithBaseURL(baseURL string) ClientOption { // ClientWithResponsesInterface is the interface specification for the client with responses above. type ClientWithResponsesInterface interface { - // GetCurrentUser request + // GetCurrentUserWithResponse request GetCurrentUserWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*GetCurrentUserResponse, error) - // PatchCurrentUser request with any body + // PatchCurrentUserWithBodyWithResponse request with any body PatchCurrentUserWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PatchCurrentUserResponse, error) PatchCurrentUserWithResponse(ctx context.Context, body PatchCurrentUserJSONRequestBody, reqEditors ...RequestEditorFn) (*PatchCurrentUserResponse, error) - // GetOrgs request + // GetOrgsWithResponse request GetOrgsWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*GetOrgsResponse, error) - // GetOrgsOrgId request + // GetOrgsOrgIdWithResponse request GetOrgsOrgIdWithResponse(ctx context.Context, orgId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdResponse, error) - // GetOrgsOrgIdApps request + // GetOrgsOrgIdAppsWithResponse request GetOrgsOrgIdAppsWithResponse(ctx context.Context, orgId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdAppsResponse, error) - // PostOrgsOrgIdApps request with any body + // PostOrgsOrgIdAppsWithBodyWithResponse request with any body PostOrgsOrgIdAppsWithBodyWithResponse(ctx context.Context, orgId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsResponse, error) PostOrgsOrgIdAppsWithResponse(ctx context.Context, orgId string, body PostOrgsOrgIdAppsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsResponse, error) - // DeleteOrgsOrgIdAppsAppId request + // DeleteOrgsOrgIdAppsAppIdWithResponse request DeleteOrgsOrgIdAppsAppIdWithResponse(ctx context.Context, orgId string, appId string, reqEditors ...RequestEditorFn) (*DeleteOrgsOrgIdAppsAppIdResponse, error) - // GetOrgsOrgIdAppsAppId request + // GetOrgsOrgIdAppsAppIdWithResponse request GetOrgsOrgIdAppsAppIdWithResponse(ctx context.Context, orgId string, appId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdAppsAppIdResponse, error) - // ListPipelineApprovalRequests request + // ListPipelineApprovalRequestsWithResponse request ListPipelineApprovalRequestsWithResponse(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, params *ListPipelineApprovalRequestsParams, reqEditors ...RequestEditorFn) (*ListPipelineApprovalRequestsResponse, error) - // GetOrgsOrgIdAppsAppIdDeltas request + // GetOrgsOrgIdAppsAppIdDeltasWithResponse request GetOrgsOrgIdAppsAppIdDeltasWithResponse(ctx context.Context, orgId string, appId string, params *GetOrgsOrgIdAppsAppIdDeltasParams, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdAppsAppIdDeltasResponse, error) - // PostOrgsOrgIdAppsAppIdDeltas request with any body + // PostOrgsOrgIdAppsAppIdDeltasWithBodyWithResponse request with any body PostOrgsOrgIdAppsAppIdDeltasWithBodyWithResponse(ctx context.Context, orgId string, appId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdDeltasResponse, error) PostOrgsOrgIdAppsAppIdDeltasWithResponse(ctx context.Context, orgId string, appId string, body PostOrgsOrgIdAppsAppIdDeltasJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdDeltasResponse, error) - // GetDelta request + // GetDeltaWithResponse request GetDeltaWithResponse(ctx context.Context, orgId string, appId string, deltaId string, reqEditors ...RequestEditorFn) (*GetDeltaResponse, error) - // PatchOrgsOrgIdAppsAppIdDeltasDeltaId request with any body + // PatchOrgsOrgIdAppsAppIdDeltasDeltaIdWithBodyWithResponse request with any body PatchOrgsOrgIdAppsAppIdDeltasDeltaIdWithBodyWithResponse(ctx context.Context, orgId string, appId string, deltaId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdAppsAppIdDeltasDeltaIdResponse, error) PatchOrgsOrgIdAppsAppIdDeltasDeltaIdWithResponse(ctx context.Context, orgId string, appId string, deltaId string, body PatchOrgsOrgIdAppsAppIdDeltasDeltaIdJSONRequestBody, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdAppsAppIdDeltasDeltaIdResponse, error) - // PutDelta request with any body + // PutDeltaWithBodyWithResponse request with any body PutDeltaWithBodyWithResponse(ctx context.Context, orgId string, appId string, deltaId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutDeltaResponse, error) PutDeltaWithResponse(ctx context.Context, orgId string, appId string, deltaId string, body PutDeltaJSONRequestBody, reqEditors ...RequestEditorFn) (*PutDeltaResponse, error) - // PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataArchived request with any body + // PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataArchivedWithBodyWithResponse request with any body PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataArchivedWithBodyWithResponse(ctx context.Context, orgId string, appId string, deltaId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataArchivedResponse, error) PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataArchivedWithResponse(ctx context.Context, orgId string, appId string, deltaId string, body PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataArchivedJSONRequestBody, reqEditors ...RequestEditorFn) (*PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataArchivedResponse, error) - // PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataEnvId request with any body + // PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataEnvIdWithBodyWithResponse request with any body PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataEnvIdWithBodyWithResponse(ctx context.Context, orgId string, appId string, deltaId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataEnvIdResponse, error) PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataEnvIdWithResponse(ctx context.Context, orgId string, appId string, deltaId string, body PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataEnvIdJSONRequestBody, reqEditors ...RequestEditorFn) (*PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataEnvIdResponse, error) - // PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataName request with any body + // PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataNameWithBodyWithResponse request with any body PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataNameWithBodyWithResponse(ctx context.Context, orgId string, appId string, deltaId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataNameResponse, error) PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataNameWithResponse(ctx context.Context, orgId string, appId string, deltaId string, body PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataNameJSONRequestBody, reqEditors ...RequestEditorFn) (*PutOrgsOrgIdAppsAppIdDeltasDeltaIdMetadataNameResponse, error) - // GetOrgsOrgIdAppsAppIdEnvs request + // GetOrgsOrgIdAppsAppIdEnvsWithResponse request GetOrgsOrgIdAppsAppIdEnvsWithResponse(ctx context.Context, orgId string, appId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdAppsAppIdEnvsResponse, error) - // PostOrgsOrgIdAppsAppIdEnvs request with any body + // PostOrgsOrgIdAppsAppIdEnvsWithBodyWithResponse request with any body PostOrgsOrgIdAppsAppIdEnvsWithBodyWithResponse(ctx context.Context, orgId string, appId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdEnvsResponse, error) PostOrgsOrgIdAppsAppIdEnvsWithResponse(ctx context.Context, orgId string, appId string, body PostOrgsOrgIdAppsAppIdEnvsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdEnvsResponse, error) - // DeleteOrgsOrgIdAppsAppIdEnvsEnvId request + // DeleteOrgsOrgIdAppsAppIdEnvsEnvIdWithResponse request DeleteOrgsOrgIdAppsAppIdEnvsEnvIdWithResponse(ctx context.Context, orgId string, appId string, envId string, reqEditors ...RequestEditorFn) (*DeleteOrgsOrgIdAppsAppIdEnvsEnvIdResponse, error) - // GetOrgsOrgIdAppsAppIdEnvsEnvId request + // GetOrgsOrgIdAppsAppIdEnvsEnvIdWithResponse request GetOrgsOrgIdAppsAppIdEnvsEnvIdWithResponse(ctx context.Context, orgId string, appId string, envId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdAppsAppIdEnvsEnvIdResponse, error) - // ListDeployments request + // ListDeploymentsWithResponse request ListDeploymentsWithResponse(ctx context.Context, orgId string, appId string, envId string, reqEditors ...RequestEditorFn) (*ListDeploymentsResponse, error) - // PostOrgsOrgIdAppsAppIdEnvsEnvIdDeploys request with any body + // PostOrgsOrgIdAppsAppIdEnvsEnvIdDeploysWithBodyWithResponse request with any body PostOrgsOrgIdAppsAppIdEnvsEnvIdDeploysWithBodyWithResponse(ctx context.Context, orgId string, appId string, envId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdEnvsEnvIdDeploysResponse, error) PostOrgsOrgIdAppsAppIdEnvsEnvIdDeploysWithResponse(ctx context.Context, orgId string, appId string, envId string, body PostOrgsOrgIdAppsAppIdEnvsEnvIdDeploysJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdEnvsEnvIdDeploysResponse, error) - // GetDeployment request + // GetDeploymentWithResponse request GetDeploymentWithResponse(ctx context.Context, orgId string, appId string, envId string, deployId string, reqEditors ...RequestEditorFn) (*GetDeploymentResponse, error) - // ListDeploymentErrors request + // ListDeploymentErrorsWithResponse request ListDeploymentErrorsWithResponse(ctx context.Context, orgId string, appId string, envId string, deployId string, reqEditors ...RequestEditorFn) (*ListDeploymentErrorsResponse, error) - // PutOrgsOrgIdAppsAppIdEnvsEnvIdFromDeployId request with any body + // PutOrgsOrgIdAppsAppIdEnvsEnvIdFromDeployIdWithBodyWithResponse request with any body PutOrgsOrgIdAppsAppIdEnvsEnvIdFromDeployIdWithBodyWithResponse(ctx context.Context, orgId string, appId string, envId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutOrgsOrgIdAppsAppIdEnvsEnvIdFromDeployIdResponse, error) PutOrgsOrgIdAppsAppIdEnvsEnvIdFromDeployIdWithResponse(ctx context.Context, orgId string, appId string, envId string, body PutOrgsOrgIdAppsAppIdEnvsEnvIdFromDeployIdJSONRequestBody, reqEditors ...RequestEditorFn) (*PutOrgsOrgIdAppsAppIdEnvsEnvIdFromDeployIdResponse, error) - // GetOrgsOrgIdAppsAppIdEnvsEnvIdResources request + // GetOrgsOrgIdAppsAppIdEnvsEnvIdResourcesWithResponse request GetOrgsOrgIdAppsAppIdEnvsEnvIdResourcesWithResponse(ctx context.Context, orgId string, appId string, envId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdAppsAppIdEnvsEnvIdResourcesResponse, error) - // PostOrgsOrgIdAppsAppIdEnvsEnvIdResourcesGraph request with any body + // PostOrgsOrgIdAppsAppIdEnvsEnvIdResourcesGraphWithBodyWithResponse request with any body PostOrgsOrgIdAppsAppIdEnvsEnvIdResourcesGraphWithBodyWithResponse(ctx context.Context, orgId string, appId string, envId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdEnvsEnvIdResourcesGraphResponse, error) PostOrgsOrgIdAppsAppIdEnvsEnvIdResourcesGraphWithResponse(ctx context.Context, orgId string, appId string, envId string, body PostOrgsOrgIdAppsAppIdEnvsEnvIdResourcesGraphJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdEnvsEnvIdResourcesGraphResponse, error) - // DeleteOrgsOrgIdAppsAppIdEnvsEnvIdResourcesTypeResId request + // DeleteOrgsOrgIdAppsAppIdEnvsEnvIdResourcesTypeResIdWithResponse request DeleteOrgsOrgIdAppsAppIdEnvsEnvIdResourcesTypeResIdWithResponse(ctx context.Context, orgId string, appId string, envId string, pType string, resId string, reqEditors ...RequestEditorFn) (*DeleteOrgsOrgIdAppsAppIdEnvsEnvIdResourcesTypeResIdResponse, error) - // GetOrgsOrgIdAppsAppIdEnvsEnvIdRules request + // GetOrgsOrgIdAppsAppIdEnvsEnvIdRulesWithResponse request GetOrgsOrgIdAppsAppIdEnvsEnvIdRulesWithResponse(ctx context.Context, orgId string, appId string, envId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdAppsAppIdEnvsEnvIdRulesResponse, error) - // PostOrgsOrgIdAppsAppIdEnvsEnvIdRules request with any body + // PostOrgsOrgIdAppsAppIdEnvsEnvIdRulesWithBodyWithResponse request with any body PostOrgsOrgIdAppsAppIdEnvsEnvIdRulesWithBodyWithResponse(ctx context.Context, orgId string, appId string, envId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdEnvsEnvIdRulesResponse, error) PostOrgsOrgIdAppsAppIdEnvsEnvIdRulesWithResponse(ctx context.Context, orgId string, appId string, envId string, body PostOrgsOrgIdAppsAppIdEnvsEnvIdRulesJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdEnvsEnvIdRulesResponse, error) - // DeleteOrgsOrgIdAppsAppIdEnvsEnvIdRulesRuleId request + // DeleteOrgsOrgIdAppsAppIdEnvsEnvIdRulesRuleIdWithResponse request DeleteOrgsOrgIdAppsAppIdEnvsEnvIdRulesRuleIdWithResponse(ctx context.Context, orgId string, appId string, envId string, ruleId string, reqEditors ...RequestEditorFn) (*DeleteOrgsOrgIdAppsAppIdEnvsEnvIdRulesRuleIdResponse, error) - // GetOrgsOrgIdAppsAppIdEnvsEnvIdRulesRuleId request + // GetOrgsOrgIdAppsAppIdEnvsEnvIdRulesRuleIdWithResponse request GetOrgsOrgIdAppsAppIdEnvsEnvIdRulesRuleIdWithResponse(ctx context.Context, orgId string, appId string, envId string, ruleId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdAppsAppIdEnvsEnvIdRulesRuleIdResponse, error) - // PutOrgsOrgIdAppsAppIdEnvsEnvIdRulesRuleId request with any body + // PutOrgsOrgIdAppsAppIdEnvsEnvIdRulesRuleIdWithBodyWithResponse request with any body PutOrgsOrgIdAppsAppIdEnvsEnvIdRulesRuleIdWithBodyWithResponse(ctx context.Context, orgId string, appId string, envId string, ruleId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutOrgsOrgIdAppsAppIdEnvsEnvIdRulesRuleIdResponse, error) PutOrgsOrgIdAppsAppIdEnvsEnvIdRulesRuleIdWithResponse(ctx context.Context, orgId string, appId string, envId string, ruleId string, body PutOrgsOrgIdAppsAppIdEnvsEnvIdRulesRuleIdJSONRequestBody, reqEditors ...RequestEditorFn) (*PutOrgsOrgIdAppsAppIdEnvsEnvIdRulesRuleIdResponse, error) - // GetOrgsOrgIdAppsAppIdEnvsEnvIdRuntime request + // GetOrgsOrgIdAppsAppIdEnvsEnvIdRuntimeWithResponse request GetOrgsOrgIdAppsAppIdEnvsEnvIdRuntimeWithResponse(ctx context.Context, orgId string, appId string, envId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdAppsAppIdEnvsEnvIdRuntimeResponse, error) - // PutOrgsOrgIdAppsAppIdEnvsEnvIdRuntimePaused request with any body + // PutOrgsOrgIdAppsAppIdEnvsEnvIdRuntimePausedWithBodyWithResponse request with any body PutOrgsOrgIdAppsAppIdEnvsEnvIdRuntimePausedWithBodyWithResponse(ctx context.Context, orgId string, appId string, envId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutOrgsOrgIdAppsAppIdEnvsEnvIdRuntimePausedResponse, error) PutOrgsOrgIdAppsAppIdEnvsEnvIdRuntimePausedWithResponse(ctx context.Context, orgId string, appId string, envId string, body PutOrgsOrgIdAppsAppIdEnvsEnvIdRuntimePausedJSONRequestBody, reqEditors ...RequestEditorFn) (*PutOrgsOrgIdAppsAppIdEnvsEnvIdRuntimePausedResponse, error) - // PatchOrgsOrgIdAppsAppIdEnvsEnvIdRuntimeReplicas request with any body + // PatchOrgsOrgIdAppsAppIdEnvsEnvIdRuntimeReplicasWithBodyWithResponse request with any body PatchOrgsOrgIdAppsAppIdEnvsEnvIdRuntimeReplicasWithBodyWithResponse(ctx context.Context, orgId string, appId string, envId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdAppsAppIdEnvsEnvIdRuntimeReplicasResponse, error) PatchOrgsOrgIdAppsAppIdEnvsEnvIdRuntimeReplicasWithResponse(ctx context.Context, orgId string, appId string, envId string, body PatchOrgsOrgIdAppsAppIdEnvsEnvIdRuntimeReplicasJSONRequestBody, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdAppsAppIdEnvsEnvIdRuntimeReplicasResponse, error) - // GetOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersions request + // GetOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsWithResponse request GetOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsWithResponse(ctx context.Context, orgId string, appId string, envId string, params *GetOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsParams, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsResponse, error) - // GetOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionId request + // GetOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdWithResponse request GetOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdWithResponse(ctx context.Context, orgId string, appId string, envId string, valueSetVersionId openapi_types.UUID, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdResponse, error) - // PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdPurgeKey request with any body + // PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdPurgeKeyWithBodyWithResponse request with any body PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdPurgeKeyWithBodyWithResponse(ctx context.Context, orgId string, appId string, envId string, valueSetVersionId openapi_types.UUID, key string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdPurgeKeyResponse, error) PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdPurgeKeyWithResponse(ctx context.Context, orgId string, appId string, envId string, valueSetVersionId openapi_types.UUID, key string, body PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdPurgeKeyJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdPurgeKeyResponse, error) - // PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestore request with any body + // PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestoreWithBodyWithResponse request with any body PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestoreWithBodyWithResponse(ctx context.Context, orgId string, appId string, envId string, valueSetVersionId openapi_types.UUID, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestoreResponse, error) PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestoreWithResponse(ctx context.Context, orgId string, appId string, envId string, valueSetVersionId openapi_types.UUID, body PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestoreJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestoreResponse, error) - // PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestoreKey request with any body + // PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestoreKeyWithBodyWithResponse request with any body PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestoreKeyWithBodyWithResponse(ctx context.Context, orgId string, appId string, envId string, valueSetVersionId openapi_types.UUID, key string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestoreKeyResponse, error) PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestoreKeyWithResponse(ctx context.Context, orgId string, appId string, envId string, valueSetVersionId openapi_types.UUID, key string, body PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestoreKeyJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdEnvsEnvIdValueSetVersionsValueSetVersionIdRestoreKeyResponse, error) - // DeleteOrgsOrgIdAppsAppIdEnvsEnvIdValues request + // DeleteOrgsOrgIdAppsAppIdEnvsEnvIdValuesWithResponse request DeleteOrgsOrgIdAppsAppIdEnvsEnvIdValuesWithResponse(ctx context.Context, orgId string, appId string, envId string, reqEditors ...RequestEditorFn) (*DeleteOrgsOrgIdAppsAppIdEnvsEnvIdValuesResponse, error) - // GetOrgsOrgIdAppsAppIdEnvsEnvIdValues request + // GetOrgsOrgIdAppsAppIdEnvsEnvIdValuesWithResponse request GetOrgsOrgIdAppsAppIdEnvsEnvIdValuesWithResponse(ctx context.Context, orgId string, appId string, envId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdAppsAppIdEnvsEnvIdValuesResponse, error) - // PostOrgsOrgIdAppsAppIdEnvsEnvIdValues request with any body + // PostOrgsOrgIdAppsAppIdEnvsEnvIdValuesWithBodyWithResponse request with any body PostOrgsOrgIdAppsAppIdEnvsEnvIdValuesWithBodyWithResponse(ctx context.Context, orgId string, appId string, envId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdEnvsEnvIdValuesResponse, error) PostOrgsOrgIdAppsAppIdEnvsEnvIdValuesWithResponse(ctx context.Context, orgId string, appId string, envId string, body PostOrgsOrgIdAppsAppIdEnvsEnvIdValuesJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdEnvsEnvIdValuesResponse, error) - // DeleteOrgsOrgIdAppsAppIdEnvsEnvIdValuesKey request + // DeleteOrgsOrgIdAppsAppIdEnvsEnvIdValuesKeyWithResponse request DeleteOrgsOrgIdAppsAppIdEnvsEnvIdValuesKeyWithResponse(ctx context.Context, orgId string, appId string, envId string, key string, reqEditors ...RequestEditorFn) (*DeleteOrgsOrgIdAppsAppIdEnvsEnvIdValuesKeyResponse, error) - // PatchOrgsOrgIdAppsAppIdEnvsEnvIdValuesKey request with any body + // PatchOrgsOrgIdAppsAppIdEnvsEnvIdValuesKeyWithBodyWithResponse request with any body PatchOrgsOrgIdAppsAppIdEnvsEnvIdValuesKeyWithBodyWithResponse(ctx context.Context, orgId string, appId string, envId string, key string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdAppsAppIdEnvsEnvIdValuesKeyResponse, error) PatchOrgsOrgIdAppsAppIdEnvsEnvIdValuesKeyWithResponse(ctx context.Context, orgId string, appId string, envId string, key string, body PatchOrgsOrgIdAppsAppIdEnvsEnvIdValuesKeyJSONRequestBody, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdAppsAppIdEnvsEnvIdValuesKeyResponse, error) - // PutOrgsOrgIdAppsAppIdEnvsEnvIdValuesKey request with any body + // PutOrgsOrgIdAppsAppIdEnvsEnvIdValuesKeyWithBodyWithResponse request with any body PutOrgsOrgIdAppsAppIdEnvsEnvIdValuesKeyWithBodyWithResponse(ctx context.Context, orgId string, appId string, envId string, key string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutOrgsOrgIdAppsAppIdEnvsEnvIdValuesKeyResponse, error) PutOrgsOrgIdAppsAppIdEnvsEnvIdValuesKeyWithResponse(ctx context.Context, orgId string, appId string, envId string, key string, body PutOrgsOrgIdAppsAppIdEnvsEnvIdValuesKeyJSONRequestBody, reqEditors ...RequestEditorFn) (*PutOrgsOrgIdAppsAppIdEnvsEnvIdValuesKeyResponse, error) - // DeleteOrgsOrgIdAppsAppIdJobs request + // DeleteOrgsOrgIdAppsAppIdJobsWithResponse request DeleteOrgsOrgIdAppsAppIdJobsWithResponse(ctx context.Context, orgId string, appId string, reqEditors ...RequestEditorFn) (*DeleteOrgsOrgIdAppsAppIdJobsResponse, error) - // ListPipelines request + // ListPipelinesWithResponse request ListPipelinesWithResponse(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, params *ListPipelinesParams, reqEditors ...RequestEditorFn) (*ListPipelinesResponse, error) - // CreatePipeline request with any body + // CreatePipelineWithBodyWithResponse request with any body CreatePipelineWithBodyWithResponse(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreatePipelineResponse, error) - // DeletePipeline request + // DeletePipelineWithResponse request DeletePipelineWithResponse(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, pipelineId PipelineIdPathParam, params *DeletePipelineParams, reqEditors ...RequestEditorFn) (*DeletePipelineResponse, error) - // GetPipeline request + // GetPipelineWithResponse request GetPipelineWithResponse(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, pipelineId PipelineIdPathParam, params *GetPipelineParams, reqEditors ...RequestEditorFn) (*GetPipelineResponse, error) - // UpdatePipeline request with any body + // UpdatePipelineWithBodyWithResponse request with any body UpdatePipelineWithBodyWithResponse(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, pipelineId PipelineIdPathParam, params *UpdatePipelineParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*UpdatePipelineResponse, error) - // ListPipelineRuns request + // ListPipelineRunsWithResponse request ListPipelineRunsWithResponse(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, pipelineId PipelineIdPathParam, params *ListPipelineRunsParams, reqEditors ...RequestEditorFn) (*ListPipelineRunsResponse, error) - // CreatePipelineRun request with any body + // CreatePipelineRunWithBodyWithResponse request with any body CreatePipelineRunWithBodyWithResponse(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, pipelineId PipelineIdPathParam, params *CreatePipelineRunParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreatePipelineRunResponse, error) CreatePipelineRunWithResponse(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, pipelineId PipelineIdPathParam, params *CreatePipelineRunParams, body CreatePipelineRunJSONRequestBody, reqEditors ...RequestEditorFn) (*CreatePipelineRunResponse, error) - // DeletePipelineRun request + // DeletePipelineRunWithResponse request DeletePipelineRunWithResponse(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, pipelineId PipelineIdPathParam, runId RunIdPathParam, params *DeletePipelineRunParams, reqEditors ...RequestEditorFn) (*DeletePipelineRunResponse, error) - // GetPipelineRun request + // GetPipelineRunWithResponse request GetPipelineRunWithResponse(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, pipelineId PipelineIdPathParam, runId RunIdPathParam, reqEditors ...RequestEditorFn) (*GetPipelineRunResponse, error) - // CancelPipelineRun request + // CancelPipelineRunWithResponse request CancelPipelineRunWithResponse(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, pipelineId PipelineIdPathParam, runId RunIdPathParam, params *CancelPipelineRunParams, reqEditors ...RequestEditorFn) (*CancelPipelineRunResponse, error) - // ListPipelineJobs request + // ListPipelineJobsWithResponse request ListPipelineJobsWithResponse(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, pipelineId PipelineIdPathParam, runId RunIdPathParam, params *ListPipelineJobsParams, reqEditors ...RequestEditorFn) (*ListPipelineJobsResponse, error) - // GetPipelineJob request + // GetPipelineJobWithResponse request GetPipelineJobWithResponse(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, pipelineId PipelineIdPathParam, runId RunIdPathParam, jobId JobIdPathParam, reqEditors ...RequestEditorFn) (*GetPipelineJobResponse, error) - // GetPipelineApprovalRequest request + // GetPipelineApprovalRequestWithResponse request GetPipelineApprovalRequestWithResponse(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, pipelineId PipelineIdPathParam, runId RunIdPathParam, jobId JobIdPathParam, approvalId ApprovalIdPathParam, reqEditors ...RequestEditorFn) (*GetPipelineApprovalRequestResponse, error) - // ApprovePipelineApprovalRequest request + // ApprovePipelineApprovalRequestWithResponse request ApprovePipelineApprovalRequestWithResponse(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, pipelineId PipelineIdPathParam, runId RunIdPathParam, jobId JobIdPathParam, approvalId ApprovalIdPathParam, reqEditors ...RequestEditorFn) (*ApprovePipelineApprovalRequestResponse, error) - // DenyPipelineApprovalRequest request + // DenyPipelineApprovalRequestWithResponse request DenyPipelineApprovalRequestWithResponse(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, pipelineId PipelineIdPathParam, runId RunIdPathParam, jobId JobIdPathParam, approvalId ApprovalIdPathParam, reqEditors ...RequestEditorFn) (*DenyPipelineApprovalRequestResponse, error) - // ListPipelineStepLogs request + // ListPipelineStepLogsWithResponse request ListPipelineStepLogsWithResponse(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, pipelineId PipelineIdPathParam, runId RunIdPathParam, jobId JobIdPathParam, stepIndex StepIndexPathParam, params *ListPipelineStepLogsParams, reqEditors ...RequestEditorFn) (*ListPipelineStepLogsResponse, error) - // RestartPipelineRun request + // RestartPipelineRunWithResponse request RestartPipelineRunWithResponse(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, pipelineId PipelineIdPathParam, runId RunIdPathParam, params *RestartPipelineRunParams, reqEditors ...RequestEditorFn) (*RestartPipelineRunResponse, error) - // GetPipelineDefinition request + // GetPipelineDefinitionWithResponse request GetPipelineDefinitionWithResponse(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, pipelineId PipelineIdPathParam, params *GetPipelineDefinitionParams, reqEditors ...RequestEditorFn) (*GetPipelineDefinitionResponse, error) - // ListPipelineVersions request + // ListPipelineVersionsWithResponse request ListPipelineVersionsWithResponse(ctx context.Context, orgId OrgIdPathParam, appId AppIdPathParam, pipelineId PipelineIdPathParam, params *ListPipelineVersionsParams, reqEditors ...RequestEditorFn) (*ListPipelineVersionsResponse, error) - // GetOrgsOrgIdAppsAppIdRuntime request + // GetOrgsOrgIdAppsAppIdRuntimeWithResponse request GetOrgsOrgIdAppsAppIdRuntimeWithResponse(ctx context.Context, orgId string, appId string, params *GetOrgsOrgIdAppsAppIdRuntimeParams, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdAppsAppIdRuntimeResponse, error) - // GetSets request + // GetSetsWithResponse request GetSetsWithResponse(ctx context.Context, orgId string, appId string, reqEditors ...RequestEditorFn) (*GetSetsResponse, error) - // GetOrgsOrgIdAppsAppIdSetsSetId request + // GetOrgsOrgIdAppsAppIdSetsSetIdWithResponse request GetOrgsOrgIdAppsAppIdSetsSetIdWithResponse(ctx context.Context, orgId string, appId string, setId string, params *GetOrgsOrgIdAppsAppIdSetsSetIdParams, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdAppsAppIdSetsSetIdResponse, error) - // PostOrgsOrgIdAppsAppIdSetsSetId request with any body + // PostOrgsOrgIdAppsAppIdSetsSetIdWithBodyWithResponse request with any body PostOrgsOrgIdAppsAppIdSetsSetIdWithBodyWithResponse(ctx context.Context, orgId string, appId string, setId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdSetsSetIdResponse, error) PostOrgsOrgIdAppsAppIdSetsSetIdWithResponse(ctx context.Context, orgId string, appId string, setId string, body PostOrgsOrgIdAppsAppIdSetsSetIdJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdSetsSetIdResponse, error) - // GetOrgsOrgIdAppsAppIdSetsSetIdDiffSourceSetId request + // GetOrgsOrgIdAppsAppIdSetsSetIdDiffSourceSetIdWithResponse request GetOrgsOrgIdAppsAppIdSetsSetIdDiffSourceSetIdWithResponse(ctx context.Context, orgId string, appId string, setId string, sourceSetId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdAppsAppIdSetsSetIdDiffSourceSetIdResponse, error) - // GetOrgsOrgIdAppsAppIdUsers request + // GetOrgsOrgIdAppsAppIdUsersWithResponse request GetOrgsOrgIdAppsAppIdUsersWithResponse(ctx context.Context, orgId string, appId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdAppsAppIdUsersResponse, error) - // PostOrgsOrgIdAppsAppIdUsers request with any body + // PostOrgsOrgIdAppsAppIdUsersWithBodyWithResponse request with any body PostOrgsOrgIdAppsAppIdUsersWithBodyWithResponse(ctx context.Context, orgId string, appId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdUsersResponse, error) PostOrgsOrgIdAppsAppIdUsersWithResponse(ctx context.Context, orgId string, appId string, body PostOrgsOrgIdAppsAppIdUsersJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdUsersResponse, error) - // DeleteOrgsOrgIdAppsAppIdUsersUserId request + // DeleteOrgsOrgIdAppsAppIdUsersUserIdWithResponse request DeleteOrgsOrgIdAppsAppIdUsersUserIdWithResponse(ctx context.Context, orgId string, appId string, userId string, reqEditors ...RequestEditorFn) (*DeleteOrgsOrgIdAppsAppIdUsersUserIdResponse, error) - // GetOrgsOrgIdAppsAppIdUsersUserId request + // GetOrgsOrgIdAppsAppIdUsersUserIdWithResponse request GetOrgsOrgIdAppsAppIdUsersUserIdWithResponse(ctx context.Context, orgId string, appId string, userId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdAppsAppIdUsersUserIdResponse, error) - // PatchOrgsOrgIdAppsAppIdUsersUserId request with any body + // PatchOrgsOrgIdAppsAppIdUsersUserIdWithBodyWithResponse request with any body PatchOrgsOrgIdAppsAppIdUsersUserIdWithBodyWithResponse(ctx context.Context, orgId string, appId string, userId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdAppsAppIdUsersUserIdResponse, error) PatchOrgsOrgIdAppsAppIdUsersUserIdWithResponse(ctx context.Context, orgId string, appId string, userId string, body PatchOrgsOrgIdAppsAppIdUsersUserIdJSONRequestBody, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdAppsAppIdUsersUserIdResponse, error) - // GetOrgsOrgIdAppsAppIdValueSetVersions request + // GetOrgsOrgIdAppsAppIdValueSetVersionsWithResponse request GetOrgsOrgIdAppsAppIdValueSetVersionsWithResponse(ctx context.Context, orgId string, appId string, params *GetOrgsOrgIdAppsAppIdValueSetVersionsParams, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdAppsAppIdValueSetVersionsResponse, error) - // GetOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionId request + // GetOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdWithResponse request GetOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdWithResponse(ctx context.Context, orgId string, appId string, valueSetVersionId openapi_types.UUID, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdResponse, error) - // PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdPurgeKey request with any body + // PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdPurgeKeyWithBodyWithResponse request with any body PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdPurgeKeyWithBodyWithResponse(ctx context.Context, orgId string, appId string, valueSetVersionId openapi_types.UUID, key string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdPurgeKeyResponse, error) PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdPurgeKeyWithResponse(ctx context.Context, orgId string, appId string, valueSetVersionId openapi_types.UUID, key string, body PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdPurgeKeyJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdPurgeKeyResponse, error) - // PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestore request with any body + // PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestoreWithBodyWithResponse request with any body PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestoreWithBodyWithResponse(ctx context.Context, orgId string, appId string, valueSetVersionId openapi_types.UUID, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestoreResponse, error) PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestoreWithResponse(ctx context.Context, orgId string, appId string, valueSetVersionId openapi_types.UUID, body PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestoreJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestoreResponse, error) - // PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestoreKey request with any body + // PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestoreKeyWithBodyWithResponse request with any body PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestoreKeyWithBodyWithResponse(ctx context.Context, orgId string, appId string, valueSetVersionId openapi_types.UUID, key string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestoreKeyResponse, error) PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestoreKeyWithResponse(ctx context.Context, orgId string, appId string, valueSetVersionId openapi_types.UUID, key string, body PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestoreKeyJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdValueSetVersionsValueSetVersionIdRestoreKeyResponse, error) - // DeleteOrgsOrgIdAppsAppIdValues request + // DeleteOrgsOrgIdAppsAppIdValuesWithResponse request DeleteOrgsOrgIdAppsAppIdValuesWithResponse(ctx context.Context, orgId string, appId string, reqEditors ...RequestEditorFn) (*DeleteOrgsOrgIdAppsAppIdValuesResponse, error) - // GetOrgsOrgIdAppsAppIdValues request + // GetOrgsOrgIdAppsAppIdValuesWithResponse request GetOrgsOrgIdAppsAppIdValuesWithResponse(ctx context.Context, orgId string, appId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdAppsAppIdValuesResponse, error) - // PostOrgsOrgIdAppsAppIdValues request with any body + // PostOrgsOrgIdAppsAppIdValuesWithBodyWithResponse request with any body PostOrgsOrgIdAppsAppIdValuesWithBodyWithResponse(ctx context.Context, orgId string, appId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdValuesResponse, error) PostOrgsOrgIdAppsAppIdValuesWithResponse(ctx context.Context, orgId string, appId string, body PostOrgsOrgIdAppsAppIdValuesJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdValuesResponse, error) - // DeleteOrgsOrgIdAppsAppIdValuesKey request + // DeleteOrgsOrgIdAppsAppIdValuesKeyWithResponse request DeleteOrgsOrgIdAppsAppIdValuesKeyWithResponse(ctx context.Context, orgId string, appId string, key string, reqEditors ...RequestEditorFn) (*DeleteOrgsOrgIdAppsAppIdValuesKeyResponse, error) - // PatchOrgsOrgIdAppsAppIdValuesKey request with any body + // PatchOrgsOrgIdAppsAppIdValuesKeyWithBodyWithResponse request with any body PatchOrgsOrgIdAppsAppIdValuesKeyWithBodyWithResponse(ctx context.Context, orgId string, appId string, key string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdAppsAppIdValuesKeyResponse, error) PatchOrgsOrgIdAppsAppIdValuesKeyWithResponse(ctx context.Context, orgId string, appId string, key string, body PatchOrgsOrgIdAppsAppIdValuesKeyJSONRequestBody, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdAppsAppIdValuesKeyResponse, error) - // PutOrgsOrgIdAppsAppIdValuesKey request with any body + // PutOrgsOrgIdAppsAppIdValuesKeyWithBodyWithResponse request with any body PutOrgsOrgIdAppsAppIdValuesKeyWithBodyWithResponse(ctx context.Context, orgId string, appId string, key string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutOrgsOrgIdAppsAppIdValuesKeyResponse, error) PutOrgsOrgIdAppsAppIdValuesKeyWithResponse(ctx context.Context, orgId string, appId string, key string, body PutOrgsOrgIdAppsAppIdValuesKeyJSONRequestBody, reqEditors ...RequestEditorFn) (*PutOrgsOrgIdAppsAppIdValuesKeyResponse, error) - // GetOrgsOrgIdAppsAppIdWebhooks request + // GetOrgsOrgIdAppsAppIdWebhooksWithResponse request GetOrgsOrgIdAppsAppIdWebhooksWithResponse(ctx context.Context, orgId string, appId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdAppsAppIdWebhooksResponse, error) - // PostOrgsOrgIdAppsAppIdWebhooks request with any body + // PostOrgsOrgIdAppsAppIdWebhooksWithBodyWithResponse request with any body PostOrgsOrgIdAppsAppIdWebhooksWithBodyWithResponse(ctx context.Context, orgId string, appId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdWebhooksResponse, error) PostOrgsOrgIdAppsAppIdWebhooksWithResponse(ctx context.Context, orgId string, appId string, body PostOrgsOrgIdAppsAppIdWebhooksJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdAppsAppIdWebhooksResponse, error) - // DeleteOrgsOrgIdAppsAppIdWebhooksJobId request + // DeleteOrgsOrgIdAppsAppIdWebhooksJobIdWithResponse request DeleteOrgsOrgIdAppsAppIdWebhooksJobIdWithResponse(ctx context.Context, orgId string, appId string, jobId string, reqEditors ...RequestEditorFn) (*DeleteOrgsOrgIdAppsAppIdWebhooksJobIdResponse, error) - // GetOrgsOrgIdAppsAppIdWebhooksJobId request + // GetOrgsOrgIdAppsAppIdWebhooksJobIdWithResponse request GetOrgsOrgIdAppsAppIdWebhooksJobIdWithResponse(ctx context.Context, orgId string, appId string, jobId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdAppsAppIdWebhooksJobIdResponse, error) - // PatchOrgsOrgIdAppsAppIdWebhooksJobId request with any body + // PatchOrgsOrgIdAppsAppIdWebhooksJobIdWithBodyWithResponse request with any body PatchOrgsOrgIdAppsAppIdWebhooksJobIdWithBodyWithResponse(ctx context.Context, orgId string, appId string, jobId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdAppsAppIdWebhooksJobIdResponse, error) PatchOrgsOrgIdAppsAppIdWebhooksJobIdWithResponse(ctx context.Context, orgId string, appId string, jobId string, body PatchOrgsOrgIdAppsAppIdWebhooksJobIdJSONRequestBody, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdAppsAppIdWebhooksJobIdResponse, error) - // ListArtefactVersionsInOrg request + // ListArtefactVersionsInOrgWithResponse request ListArtefactVersionsInOrgWithResponse(ctx context.Context, orgId string, params *ListArtefactVersionsInOrgParams, reqEditors ...RequestEditorFn) (*ListArtefactVersionsInOrgResponse, error) - // CreateArtefactVersion request with any body + // CreateArtefactVersionWithBodyWithResponse request with any body CreateArtefactVersionWithBodyWithResponse(ctx context.Context, orgId string, params *CreateArtefactVersionParams, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreateArtefactVersionResponse, error) CreateArtefactVersionWithResponse(ctx context.Context, orgId string, params *CreateArtefactVersionParams, body CreateArtefactVersionJSONRequestBody, reqEditors ...RequestEditorFn) (*CreateArtefactVersionResponse, error) - // GetArtefactVersion request + // GetArtefactVersionWithResponse request GetArtefactVersionWithResponse(ctx context.Context, orgId string, artefactVersionId string, reqEditors ...RequestEditorFn) (*GetArtefactVersionResponse, error) - // ListArtefacts request + // ListArtefactsWithResponse request ListArtefactsWithResponse(ctx context.Context, orgId string, params *ListArtefactsParams, reqEditors ...RequestEditorFn) (*ListArtefactsResponse, error) - // DeleteArtefact request + // DeleteArtefactWithResponse request DeleteArtefactWithResponse(ctx context.Context, orgId string, artefactId string, reqEditors ...RequestEditorFn) (*DeleteArtefactResponse, error) - // ListArtefactVersions request + // ListArtefactVersionsWithResponse request ListArtefactVersionsWithResponse(ctx context.Context, orgId string, artefactId string, params *ListArtefactVersionsParams, reqEditors ...RequestEditorFn) (*ListArtefactVersionsResponse, error) - // PatchArtefactVersion request with any body + // PatchArtefactVersionWithBodyWithResponse request with any body PatchArtefactVersionWithBodyWithResponse(ctx context.Context, orgId string, artefactId string, versionId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PatchArtefactVersionResponse, error) PatchArtefactVersionWithResponse(ctx context.Context, orgId string, artefactId string, versionId string, body PatchArtefactVersionJSONRequestBody, reqEditors ...RequestEditorFn) (*PatchArtefactVersionResponse, error) - // GetOrgsOrgIdEnvTypes request + // GetOrgsOrgIdEnvTypesWithResponse request GetOrgsOrgIdEnvTypesWithResponse(ctx context.Context, orgId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdEnvTypesResponse, error) - // PostOrgsOrgIdEnvTypes request with any body + // PostOrgsOrgIdEnvTypesWithBodyWithResponse request with any body PostOrgsOrgIdEnvTypesWithBodyWithResponse(ctx context.Context, orgId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdEnvTypesResponse, error) PostOrgsOrgIdEnvTypesWithResponse(ctx context.Context, orgId string, body PostOrgsOrgIdEnvTypesJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdEnvTypesResponse, error) - // DeleteOrgsOrgIdEnvTypesEnvTypeId request + // DeleteOrgsOrgIdEnvTypesEnvTypeIdWithResponse request DeleteOrgsOrgIdEnvTypesEnvTypeIdWithResponse(ctx context.Context, orgId string, envTypeId string, reqEditors ...RequestEditorFn) (*DeleteOrgsOrgIdEnvTypesEnvTypeIdResponse, error) - // GetOrgsOrgIdEnvTypesEnvTypeId request + // GetOrgsOrgIdEnvTypesEnvTypeIdWithResponse request GetOrgsOrgIdEnvTypesEnvTypeIdWithResponse(ctx context.Context, orgId string, envTypeId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdEnvTypesEnvTypeIdResponse, error) - // PostOrgsOrgIdEnvTypesEnvTypeUsers request with any body + // PostOrgsOrgIdEnvTypesEnvTypeUsersWithBodyWithResponse request with any body PostOrgsOrgIdEnvTypesEnvTypeUsersWithBodyWithResponse(ctx context.Context, orgId string, envType string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdEnvTypesEnvTypeUsersResponse, error) PostOrgsOrgIdEnvTypesEnvTypeUsersWithResponse(ctx context.Context, orgId string, envType string, body PostOrgsOrgIdEnvTypesEnvTypeUsersJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdEnvTypesEnvTypeUsersResponse, error) - // DeleteOrgsOrgIdEnvTypesEnvTypeUsersUserId request + // DeleteOrgsOrgIdEnvTypesEnvTypeUsersUserIdWithResponse request DeleteOrgsOrgIdEnvTypesEnvTypeUsersUserIdWithResponse(ctx context.Context, orgId string, envType string, userId string, reqEditors ...RequestEditorFn) (*DeleteOrgsOrgIdEnvTypesEnvTypeUsersUserIdResponse, error) - // GetOrgsOrgIdEnvTypesEnvTypeUsersUserId request + // GetOrgsOrgIdEnvTypesEnvTypeUsersUserIdWithResponse request GetOrgsOrgIdEnvTypesEnvTypeUsersUserIdWithResponse(ctx context.Context, orgId string, envType string, userId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdEnvTypesEnvTypeUsersUserIdResponse, error) - // PatchOrgsOrgIdEnvTypesEnvTypeUsersUserId request with any body + // PatchOrgsOrgIdEnvTypesEnvTypeUsersUserIdWithBodyWithResponse request with any body PatchOrgsOrgIdEnvTypesEnvTypeUsersUserIdWithBodyWithResponse(ctx context.Context, orgId string, envType string, userId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdEnvTypesEnvTypeUsersUserIdResponse, error) PatchOrgsOrgIdEnvTypesEnvTypeUsersUserIdWithResponse(ctx context.Context, orgId string, envType string, userId string, body PatchOrgsOrgIdEnvTypesEnvTypeUsersUserIdJSONRequestBody, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdEnvTypesEnvTypeUsersUserIdResponse, error) - // GetOrgsOrgIdEvents request + // GetOrgsOrgIdEventsWithResponse request GetOrgsOrgIdEventsWithResponse(ctx context.Context, orgId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdEventsResponse, error) - // ListHumanitecPublicKeys request + // ListHumanitecPublicKeysWithResponse request ListHumanitecPublicKeysWithResponse(ctx context.Context, orgId string, params *ListHumanitecPublicKeysParams, reqEditors ...RequestEditorFn) (*ListHumanitecPublicKeysResponse, error) - // ListDeprecatedImages request + // ListDeprecatedImagesWithResponse request ListDeprecatedImagesWithResponse(ctx context.Context, orgId string, reqEditors ...RequestEditorFn) (*ListDeprecatedImagesResponse, error) - // GetDeprecatedImage request + // GetDeprecatedImageWithResponse request GetDeprecatedImageWithResponse(ctx context.Context, orgId string, imageId string, reqEditors ...RequestEditorFn) (*GetDeprecatedImageResponse, error) - // ListDeprecatedImageBuilds request + // ListDeprecatedImageBuildsWithResponse request ListDeprecatedImageBuildsWithResponse(ctx context.Context, orgId string, imageId string, reqEditors ...RequestEditorFn) (*ListDeprecatedImageBuildsResponse, error) - // CreateDeprecatedImageBuild request with any body + // CreateDeprecatedImageBuildWithBodyWithResponse request with any body CreateDeprecatedImageBuildWithBodyWithResponse(ctx context.Context, orgId string, imageId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreateDeprecatedImageBuildResponse, error) CreateDeprecatedImageBuildWithResponse(ctx context.Context, orgId string, imageId string, body CreateDeprecatedImageBuildJSONRequestBody, reqEditors ...RequestEditorFn) (*CreateDeprecatedImageBuildResponse, error) - // GetOrgsOrgIdInvitations request + // GetOrgsOrgIdInvitationsWithResponse request GetOrgsOrgIdInvitationsWithResponse(ctx context.Context, orgId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdInvitationsResponse, error) - // PostOrgsOrgIdInvitations request with any body + // PostOrgsOrgIdInvitationsWithBodyWithResponse request with any body PostOrgsOrgIdInvitationsWithBodyWithResponse(ctx context.Context, orgId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdInvitationsResponse, error) PostOrgsOrgIdInvitationsWithResponse(ctx context.Context, orgId string, body PostOrgsOrgIdInvitationsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdInvitationsResponse, error) - // ListPublicKeys request + // ListPublicKeysWithResponse request ListPublicKeysWithResponse(ctx context.Context, orgId string, params *ListPublicKeysParams, reqEditors ...RequestEditorFn) (*ListPublicKeysResponse, error) - // CreatePublicKey request with any body + // CreatePublicKeyWithBodyWithResponse request with any body CreatePublicKeyWithBodyWithResponse(ctx context.Context, orgId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreatePublicKeyResponse, error) CreatePublicKeyWithResponse(ctx context.Context, orgId string, body CreatePublicKeyJSONRequestBody, reqEditors ...RequestEditorFn) (*CreatePublicKeyResponse, error) - // DeletePublicKey request + // DeletePublicKeyWithResponse request DeletePublicKeyWithResponse(ctx context.Context, orgId string, keyId string, reqEditors ...RequestEditorFn) (*DeletePublicKeyResponse, error) - // GetPublicKey request + // GetPublicKeyWithResponse request GetPublicKeyWithResponse(ctx context.Context, orgId string, keyId string, reqEditors ...RequestEditorFn) (*GetPublicKeyResponse, error) - // ListPipelineRunsByOrg request + // ListPipelineRunsByOrgWithResponse request ListPipelineRunsByOrgWithResponse(ctx context.Context, orgId OrgIdPathParam, params *ListPipelineRunsByOrgParams, reqEditors ...RequestEditorFn) (*ListPipelineRunsByOrgResponse, error) - // GetLatestPipelineDefinitionSchema request + // GetLatestPipelineDefinitionSchemaWithResponse request GetLatestPipelineDefinitionSchemaWithResponse(ctx context.Context, orgId OrgIdPathParam, reqEditors ...RequestEditorFn) (*GetLatestPipelineDefinitionSchemaResponse, error) - // ListPipelinesInOrg request + // ListPipelinesInOrgWithResponse request ListPipelinesInOrgWithResponse(ctx context.Context, orgId OrgIdPathParam, params *ListPipelinesInOrgParams, reqEditors ...RequestEditorFn) (*ListPipelinesInOrgResponse, error) - // GetOrgsOrgIdRegistries request + // GetOrgsOrgIdRegistriesWithResponse request GetOrgsOrgIdRegistriesWithResponse(ctx context.Context, orgId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdRegistriesResponse, error) - // PostOrgsOrgIdRegistries request with any body + // PostOrgsOrgIdRegistriesWithBodyWithResponse request with any body PostOrgsOrgIdRegistriesWithBodyWithResponse(ctx context.Context, orgId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdRegistriesResponse, error) PostOrgsOrgIdRegistriesWithResponse(ctx context.Context, orgId string, body PostOrgsOrgIdRegistriesJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdRegistriesResponse, error) - // DeleteOrgsOrgIdRegistriesRegId request + // DeleteOrgsOrgIdRegistriesRegIdWithResponse request DeleteOrgsOrgIdRegistriesRegIdWithResponse(ctx context.Context, orgId string, regId string, reqEditors ...RequestEditorFn) (*DeleteOrgsOrgIdRegistriesRegIdResponse, error) - // GetOrgsOrgIdRegistriesRegId request + // GetOrgsOrgIdRegistriesRegIdWithResponse request GetOrgsOrgIdRegistriesRegIdWithResponse(ctx context.Context, orgId string, regId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdRegistriesRegIdResponse, error) - // PatchOrgsOrgIdRegistriesRegId request with any body + // PatchOrgsOrgIdRegistriesRegIdWithBodyWithResponse request with any body PatchOrgsOrgIdRegistriesRegIdWithBodyWithResponse(ctx context.Context, orgId string, regId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdRegistriesRegIdResponse, error) PatchOrgsOrgIdRegistriesRegIdWithResponse(ctx context.Context, orgId string, regId string, body PatchOrgsOrgIdRegistriesRegIdJSONRequestBody, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdRegistriesRegIdResponse, error) - // GetOrgsOrgIdRegistriesRegIdCreds request + // GetOrgsOrgIdRegistriesRegIdCredsWithResponse request GetOrgsOrgIdRegistriesRegIdCredsWithResponse(ctx context.Context, orgId string, regId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdRegistriesRegIdCredsResponse, error) - // GetOrgsOrgIdResourcesAccountTypes request + // GetOrgsOrgIdResourcesAccountTypesWithResponse request GetOrgsOrgIdResourcesAccountTypesWithResponse(ctx context.Context, orgId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdResourcesAccountTypesResponse, error) - // GetOrgsOrgIdResourcesAccounts request + // GetOrgsOrgIdResourcesAccountsWithResponse request GetOrgsOrgIdResourcesAccountsWithResponse(ctx context.Context, orgId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdResourcesAccountsResponse, error) - // PostOrgsOrgIdResourcesAccounts request with any body + // PostOrgsOrgIdResourcesAccountsWithBodyWithResponse request with any body PostOrgsOrgIdResourcesAccountsWithBodyWithResponse(ctx context.Context, orgId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdResourcesAccountsResponse, error) PostOrgsOrgIdResourcesAccountsWithResponse(ctx context.Context, orgId string, body PostOrgsOrgIdResourcesAccountsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdResourcesAccountsResponse, error) - // DeleteOrgsOrgIdResourcesAccountsAccId request + // DeleteOrgsOrgIdResourcesAccountsAccIdWithResponse request DeleteOrgsOrgIdResourcesAccountsAccIdWithResponse(ctx context.Context, orgId string, accId string, reqEditors ...RequestEditorFn) (*DeleteOrgsOrgIdResourcesAccountsAccIdResponse, error) - // GetOrgsOrgIdResourcesAccountsAccId request + // GetOrgsOrgIdResourcesAccountsAccIdWithResponse request GetOrgsOrgIdResourcesAccountsAccIdWithResponse(ctx context.Context, orgId string, accId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdResourcesAccountsAccIdResponse, error) - // PatchOrgsOrgIdResourcesAccountsAccId request with any body + // PatchOrgsOrgIdResourcesAccountsAccIdWithBodyWithResponse request with any body PatchOrgsOrgIdResourcesAccountsAccIdWithBodyWithResponse(ctx context.Context, orgId string, accId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdResourcesAccountsAccIdResponse, error) PatchOrgsOrgIdResourcesAccountsAccIdWithResponse(ctx context.Context, orgId string, accId string, body PatchOrgsOrgIdResourcesAccountsAccIdJSONRequestBody, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdResourcesAccountsAccIdResponse, error) - // GetOrgsOrgIdResourcesDefs request + // GetOrgsOrgIdResourcesDefsWithResponse request GetOrgsOrgIdResourcesDefsWithResponse(ctx context.Context, orgId string, params *GetOrgsOrgIdResourcesDefsParams, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdResourcesDefsResponse, error) - // PostOrgsOrgIdResourcesDefs request with any body + // PostOrgsOrgIdResourcesDefsWithBodyWithResponse request with any body PostOrgsOrgIdResourcesDefsWithBodyWithResponse(ctx context.Context, orgId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdResourcesDefsResponse, error) PostOrgsOrgIdResourcesDefsWithResponse(ctx context.Context, orgId string, body PostOrgsOrgIdResourcesDefsJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdResourcesDefsResponse, error) - // DeleteOrgsOrgIdResourcesDefsDefId request + // DeleteOrgsOrgIdResourcesDefsDefIdWithResponse request DeleteOrgsOrgIdResourcesDefsDefIdWithResponse(ctx context.Context, orgId string, defId string, params *DeleteOrgsOrgIdResourcesDefsDefIdParams, reqEditors ...RequestEditorFn) (*DeleteOrgsOrgIdResourcesDefsDefIdResponse, error) - // GetOrgsOrgIdResourcesDefsDefId request + // GetOrgsOrgIdResourcesDefsDefIdWithResponse request GetOrgsOrgIdResourcesDefsDefIdWithResponse(ctx context.Context, orgId string, defId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdResourcesDefsDefIdResponse, error) - // PatchOrgsOrgIdResourcesDefsDefId request with any body + // PatchOrgsOrgIdResourcesDefsDefIdWithBodyWithResponse request with any body PatchOrgsOrgIdResourcesDefsDefIdWithBodyWithResponse(ctx context.Context, orgId string, defId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdResourcesDefsDefIdResponse, error) PatchOrgsOrgIdResourcesDefsDefIdWithResponse(ctx context.Context, orgId string, defId string, body PatchOrgsOrgIdResourcesDefsDefIdJSONRequestBody, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdResourcesDefsDefIdResponse, error) - // PutOrgsOrgIdResourcesDefsDefId request with any body + // PutOrgsOrgIdResourcesDefsDefIdWithBodyWithResponse request with any body PutOrgsOrgIdResourcesDefsDefIdWithBodyWithResponse(ctx context.Context, orgId string, defId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutOrgsOrgIdResourcesDefsDefIdResponse, error) PutOrgsOrgIdResourcesDefsDefIdWithResponse(ctx context.Context, orgId string, defId string, body PutOrgsOrgIdResourcesDefsDefIdJSONRequestBody, reqEditors ...RequestEditorFn) (*PutOrgsOrgIdResourcesDefsDefIdResponse, error) - // PostOrgsOrgIdResourcesDefsDefIdCriteria request with any body + // PostOrgsOrgIdResourcesDefsDefIdCriteriaWithBodyWithResponse request with any body PostOrgsOrgIdResourcesDefsDefIdCriteriaWithBodyWithResponse(ctx context.Context, orgId string, defId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdResourcesDefsDefIdCriteriaResponse, error) PostOrgsOrgIdResourcesDefsDefIdCriteriaWithResponse(ctx context.Context, orgId string, defId string, body PostOrgsOrgIdResourcesDefsDefIdCriteriaJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdResourcesDefsDefIdCriteriaResponse, error) - // DeleteOrgsOrgIdResourcesDefsDefIdCriteriaCriteriaId request + // DeleteOrgsOrgIdResourcesDefsDefIdCriteriaCriteriaIdWithResponse request DeleteOrgsOrgIdResourcesDefsDefIdCriteriaCriteriaIdWithResponse(ctx context.Context, orgId string, defId string, criteriaId string, params *DeleteOrgsOrgIdResourcesDefsDefIdCriteriaCriteriaIdParams, reqEditors ...RequestEditorFn) (*DeleteOrgsOrgIdResourcesDefsDefIdCriteriaCriteriaIdResponse, error) - // GetOrgsOrgIdResourcesDefsDefIdResources request + // GetOrgsOrgIdResourcesDefsDefIdResourcesWithResponse request GetOrgsOrgIdResourcesDefsDefIdResourcesWithResponse(ctx context.Context, orgId string, defId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdResourcesDefsDefIdResourcesResponse, error) - // GetOrgsOrgIdResourcesDrivers request + // GetOrgsOrgIdResourcesDriversWithResponse request GetOrgsOrgIdResourcesDriversWithResponse(ctx context.Context, orgId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdResourcesDriversResponse, error) - // PostOrgsOrgIdResourcesDrivers request with any body + // PostOrgsOrgIdResourcesDriversWithBodyWithResponse request with any body PostOrgsOrgIdResourcesDriversWithBodyWithResponse(ctx context.Context, orgId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdResourcesDriversResponse, error) PostOrgsOrgIdResourcesDriversWithResponse(ctx context.Context, orgId string, body PostOrgsOrgIdResourcesDriversJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdResourcesDriversResponse, error) - // DeleteOrgsOrgIdResourcesDriversDriverId request + // DeleteOrgsOrgIdResourcesDriversDriverIdWithResponse request DeleteOrgsOrgIdResourcesDriversDriverIdWithResponse(ctx context.Context, orgId string, driverId string, reqEditors ...RequestEditorFn) (*DeleteOrgsOrgIdResourcesDriversDriverIdResponse, error) - // GetOrgsOrgIdResourcesDriversDriverId request + // GetOrgsOrgIdResourcesDriversDriverIdWithResponse request GetOrgsOrgIdResourcesDriversDriverIdWithResponse(ctx context.Context, orgId string, driverId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdResourcesDriversDriverIdResponse, error) - // PutOrgsOrgIdResourcesDriversDriverId request with any body + // PutOrgsOrgIdResourcesDriversDriverIdWithBodyWithResponse request with any body PutOrgsOrgIdResourcesDriversDriverIdWithBodyWithResponse(ctx context.Context, orgId string, driverId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PutOrgsOrgIdResourcesDriversDriverIdResponse, error) PutOrgsOrgIdResourcesDriversDriverIdWithResponse(ctx context.Context, orgId string, driverId string, body PutOrgsOrgIdResourcesDriversDriverIdJSONRequestBody, reqEditors ...RequestEditorFn) (*PutOrgsOrgIdResourcesDriversDriverIdResponse, error) - // GetOrgsOrgIdResourcesTypes request + // GetOrgsOrgIdResourcesTypesWithResponse request GetOrgsOrgIdResourcesTypesWithResponse(ctx context.Context, orgId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdResourcesTypesResponse, error) - // GetOrgsOrgIdSecretstores request + // GetOrgsOrgIdSecretstoresWithResponse request GetOrgsOrgIdSecretstoresWithResponse(ctx context.Context, orgId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdSecretstoresResponse, error) - // PostOrgsOrgIdSecretstores request with any body + // PostOrgsOrgIdSecretstoresWithBodyWithResponse request with any body PostOrgsOrgIdSecretstoresWithBodyWithResponse(ctx context.Context, orgId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdSecretstoresResponse, error) PostOrgsOrgIdSecretstoresWithResponse(ctx context.Context, orgId string, body PostOrgsOrgIdSecretstoresJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdSecretstoresResponse, error) - // DeleteOrgsOrgIdSecretstoresStoreId request + // DeleteOrgsOrgIdSecretstoresStoreIdWithResponse request DeleteOrgsOrgIdSecretstoresStoreIdWithResponse(ctx context.Context, orgId string, storeId string, reqEditors ...RequestEditorFn) (*DeleteOrgsOrgIdSecretstoresStoreIdResponse, error) - // GetOrgsOrgIdSecretstoresStoreId request + // GetOrgsOrgIdSecretstoresStoreIdWithResponse request GetOrgsOrgIdSecretstoresStoreIdWithResponse(ctx context.Context, orgId string, storeId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdSecretstoresStoreIdResponse, error) - // PatchOrgsOrgIdSecretstoresStoreId request with any body + // PatchOrgsOrgIdSecretstoresStoreIdWithBodyWithResponse request with any body PatchOrgsOrgIdSecretstoresStoreIdWithBodyWithResponse(ctx context.Context, orgId string, storeId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdSecretstoresStoreIdResponse, error) PatchOrgsOrgIdSecretstoresStoreIdWithResponse(ctx context.Context, orgId string, storeId string, body PatchOrgsOrgIdSecretstoresStoreIdJSONRequestBody, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdSecretstoresStoreIdResponse, error) - // GetOrgsOrgIdUsers request + // GetOrgsOrgIdUsersWithResponse request GetOrgsOrgIdUsersWithResponse(ctx context.Context, orgId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdUsersResponse, error) - // PostOrgsOrgIdUsers request with any body + // PostOrgsOrgIdUsersWithBodyWithResponse request with any body PostOrgsOrgIdUsersWithBodyWithResponse(ctx context.Context, orgId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdUsersResponse, error) PostOrgsOrgIdUsersWithResponse(ctx context.Context, orgId string, body PostOrgsOrgIdUsersJSONRequestBody, reqEditors ...RequestEditorFn) (*PostOrgsOrgIdUsersResponse, error) - // DeleteOrgsOrgIdUsersUserId request + // DeleteOrgsOrgIdUsersUserIdWithResponse request DeleteOrgsOrgIdUsersUserIdWithResponse(ctx context.Context, orgId string, userId string, reqEditors ...RequestEditorFn) (*DeleteOrgsOrgIdUsersUserIdResponse, error) - // GetOrgsOrgIdUsersUserId request + // GetOrgsOrgIdUsersUserIdWithResponse request GetOrgsOrgIdUsersUserIdWithResponse(ctx context.Context, orgId string, userId string, reqEditors ...RequestEditorFn) (*GetOrgsOrgIdUsersUserIdResponse, error) - // PatchOrgsOrgIdUsersUserId request with any body + // PatchOrgsOrgIdUsersUserIdWithBodyWithResponse request with any body PatchOrgsOrgIdUsersUserIdWithBodyWithResponse(ctx context.Context, orgId string, userId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdUsersUserIdResponse, error) PatchOrgsOrgIdUsersUserIdWithResponse(ctx context.Context, orgId string, userId string, body PatchOrgsOrgIdUsersUserIdJSONRequestBody, reqEditors ...RequestEditorFn) (*PatchOrgsOrgIdUsersUserIdResponse, error) - // ListWorkloadProfileChartVersions request + // ListWorkloadProfileChartVersionsWithResponse request ListWorkloadProfileChartVersionsWithResponse(ctx context.Context, orgId OrgIdPathParam, params *ListWorkloadProfileChartVersionsParams, reqEditors ...RequestEditorFn) (*ListWorkloadProfileChartVersionsResponse, error) - // CreateWorkloadProfileChartVersion request with any body + // CreateWorkloadProfileChartVersionWithBodyWithResponse request with any body CreateWorkloadProfileChartVersionWithBodyWithResponse(ctx context.Context, orgId OrgIdPathParam, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreateWorkloadProfileChartVersionResponse, error) - // ListWorkloadProfiles request + // ListWorkloadProfilesWithResponse request ListWorkloadProfilesWithResponse(ctx context.Context, orgId OrgIdPathParam, params *ListWorkloadProfilesParams, reqEditors ...RequestEditorFn) (*ListWorkloadProfilesResponse, error) - // CreateWorkloadProfile request with any body + // CreateWorkloadProfileWithBodyWithResponse request with any body CreateWorkloadProfileWithBodyWithResponse(ctx context.Context, orgId OrgIdPathParam, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreateWorkloadProfileResponse, error) CreateWorkloadProfileWithResponse(ctx context.Context, orgId OrgIdPathParam, body CreateWorkloadProfileJSONRequestBody, reqEditors ...RequestEditorFn) (*CreateWorkloadProfileResponse, error) - // DeleteWorkloadProfile request + // DeleteWorkloadProfileWithResponse request DeleteWorkloadProfileWithResponse(ctx context.Context, orgId OrgIdPathParam, profileQid ProfileQidPathParam, reqEditors ...RequestEditorFn) (*DeleteWorkloadProfileResponse, error) - // GetWorkloadProfile request + // GetWorkloadProfileWithResponse request GetWorkloadProfileWithResponse(ctx context.Context, orgId OrgIdPathParam, profileQid ProfileQidPathParam, reqEditors ...RequestEditorFn) (*GetWorkloadProfileResponse, error) - // PatchWorkloadProfile request with any body + // PatchWorkloadProfileWithBodyWithResponse request with any body PatchWorkloadProfileWithBodyWithResponse(ctx context.Context, orgId OrgIdPathParam, profileQid ProfileQidPathParam, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PatchWorkloadProfileResponse, error) PatchWorkloadProfileWithResponse(ctx context.Context, orgId OrgIdPathParam, profileQid ProfileQidPathParam, body PatchWorkloadProfileJSONRequestBody, reqEditors ...RequestEditorFn) (*PatchWorkloadProfileResponse, error) - // ListWorkloadProfileVersions request + // ListWorkloadProfileVersionsWithResponse request ListWorkloadProfileVersionsWithResponse(ctx context.Context, orgId OrgIdPathParam, profileQid ProfileQidPathParam, params *ListWorkloadProfileVersionsParams, reqEditors ...RequestEditorFn) (*ListWorkloadProfileVersionsResponse, error) - // CreateWorkloadProfileVersion request with any body + // CreateWorkloadProfileVersionWithBodyWithResponse request with any body CreateWorkloadProfileVersionWithBodyWithResponse(ctx context.Context, orgId OrgIdPathParam, profileQid ProfileQidPathParam, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*CreateWorkloadProfileVersionResponse, error) CreateWorkloadProfileVersionWithResponse(ctx context.Context, orgId OrgIdPathParam, profileQid ProfileQidPathParam, body CreateWorkloadProfileVersionJSONRequestBody, reqEditors ...RequestEditorFn) (*CreateWorkloadProfileVersionResponse, error) - // GetLatestWorkloadProfileVersion request + // GetLatestWorkloadProfileVersionWithResponse request GetLatestWorkloadProfileVersionWithResponse(ctx context.Context, orgId OrgIdPathParam, profileQid ProfileQidPathParam, reqEditors ...RequestEditorFn) (*GetLatestWorkloadProfileVersionResponse, error) - // DeleteWorkloadProfileVersion request + // DeleteWorkloadProfileVersionWithResponse request DeleteWorkloadProfileVersionWithResponse(ctx context.Context, orgId OrgIdPathParam, profileQid ProfileQidPathParam, version VersionPathParam, reqEditors ...RequestEditorFn) (*DeleteWorkloadProfileVersionResponse, error) - // GetTokens request + // GetTokensWithResponse request GetTokensWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*GetTokensResponse, error) - // DeleteTokensTokenId request + // DeleteTokensTokenIdWithResponse request DeleteTokensTokenIdWithResponse(ctx context.Context, tokenId string, reqEditors ...RequestEditorFn) (*DeleteTokensTokenIdResponse, error) - // GetUsersMe request + // GetUsersMeWithResponse request GetUsersMeWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*GetUsersMeResponse, error) - // GetUsersUserIdTokens request + // GetUsersUserIdTokensWithResponse request GetUsersUserIdTokensWithResponse(ctx context.Context, userId string, reqEditors ...RequestEditorFn) (*GetUsersUserIdTokensResponse, error) - // PostUsersUserIdTokens request with any body + // PostUsersUserIdTokensWithBodyWithResponse request with any body PostUsersUserIdTokensWithBodyWithResponse(ctx context.Context, userId string, contentType string, body io.Reader, reqEditors ...RequestEditorFn) (*PostUsersUserIdTokensResponse, error) PostUsersUserIdTokensWithResponse(ctx context.Context, userId string, body PostUsersUserIdTokensJSONRequestBody, reqEditors ...RequestEditorFn) (*PostUsersUserIdTokensResponse, error) - // DeleteUsersUserIdTokensTokenId request + // DeleteUsersUserIdTokensTokenIdWithResponse request DeleteUsersUserIdTokensTokenIdWithResponse(ctx context.Context, userId string, tokenId string, reqEditors ...RequestEditorFn) (*DeleteUsersUserIdTokensTokenIdResponse, error) - // GetUsersUserIdTokensTokenId request + // GetUsersUserIdTokensTokenIdWithResponse request GetUsersUserIdTokensTokenIdWithResponse(ctx context.Context, userId string, tokenId string, reqEditors ...RequestEditorFn) (*GetUsersUserIdTokensTokenIdResponse, error) } @@ -17746,7 +17774,7 @@ type ListPipelineApprovalRequestsResponse struct { Body []byte HTTPResponse *http.Response JSON200 *[]PipelineApprovalRequest - JSON400 *HumanitecErrorResponse + JSON400 *N400BadRequest } // Status returns HTTPResponse.Status @@ -18689,8 +18717,8 @@ type ListPipelinesResponse struct { Body []byte HTTPResponse *http.Response JSON200 *[]Pipeline - JSON400 *HumanitecErrorResponse - JSON404 *HumanitecErrorResponse + JSON400 *N400BadRequest + JSON404 *N404NotFound } // Status returns HTTPResponse.Status @@ -18713,9 +18741,9 @@ type CreatePipelineResponse struct { Body []byte HTTPResponse *http.Response JSON201 *Pipeline - JSON400 *HumanitecErrorResponse - JSON404 *HumanitecErrorResponse - JSON409 *HumanitecErrorResponse + JSON400 *N400BadRequest + JSON404 *N404NotFound + JSON409 *N409Conflict } // Status returns HTTPResponse.Status @@ -18737,10 +18765,10 @@ func (r CreatePipelineResponse) StatusCode() int { type DeletePipelineResponse struct { Body []byte HTTPResponse *http.Response - JSON400 *HumanitecErrorResponse - JSON404 *HumanitecErrorResponse - JSON409 *HumanitecErrorResponse - JSON412 *ErrorResponse + JSON400 *N400BadRequest + JSON404 *N404NotFound + JSON409 *N409Conflict + JSON412 *N412PreconditionFailed } // Status returns HTTPResponse.Status @@ -18763,8 +18791,8 @@ type GetPipelineResponse struct { Body []byte HTTPResponse *http.Response JSON200 *Pipeline - JSON400 *HumanitecErrorResponse - JSON404 *HumanitecErrorResponse + JSON400 *N400BadRequest + JSON404 *N404NotFound } // Status returns HTTPResponse.Status @@ -18787,10 +18815,10 @@ type UpdatePipelineResponse struct { Body []byte HTTPResponse *http.Response JSON200 *Pipeline - JSON400 *HumanitecErrorResponse - JSON404 *HumanitecErrorResponse - JSON409 *HumanitecErrorResponse - JSON412 *ErrorResponse + JSON400 *N400BadRequest + JSON404 *N404NotFound + JSON409 *N409Conflict + JSON412 *N412PreconditionFailed } // Status returns HTTPResponse.Status @@ -18813,8 +18841,8 @@ type ListPipelineRunsResponse struct { Body []byte HTTPResponse *http.Response JSON200 *[]PipelineRun - JSON400 *HumanitecErrorResponse - JSON404 *HumanitecErrorResponse + JSON400 *N400BadRequest + JSON404 *N404NotFound } // Status returns HTTPResponse.Status @@ -18837,10 +18865,10 @@ type CreatePipelineRunResponse struct { Body []byte HTTPResponse *http.Response JSON201 *PipelineRun - JSON400 *HumanitecErrorResponse - JSON404 *HumanitecErrorResponse - JSON409 *HumanitecErrorResponse - JSON422 *ErrorResponse + JSON400 *N400BadRequest + JSON404 *N404NotFound + JSON409 *N409Conflict + JSON422 *N422UnprocessableContent } // Status returns HTTPResponse.Status @@ -18862,10 +18890,10 @@ func (r CreatePipelineRunResponse) StatusCode() int { type DeletePipelineRunResponse struct { Body []byte HTTPResponse *http.Response - JSON400 *HumanitecErrorResponse - JSON404 *HumanitecErrorResponse - JSON409 *HumanitecErrorResponse - JSON412 *ErrorResponse + JSON400 *N400BadRequest + JSON404 *N404NotFound + JSON409 *N409Conflict + JSON412 *N412PreconditionFailed } // Status returns HTTPResponse.Status @@ -18888,7 +18916,7 @@ type GetPipelineRunResponse struct { Body []byte HTTPResponse *http.Response JSON200 *PipelineRun - JSON404 *HumanitecErrorResponse + JSON404 *N404NotFound } // Status returns HTTPResponse.Status @@ -18910,10 +18938,10 @@ func (r GetPipelineRunResponse) StatusCode() int { type CancelPipelineRunResponse struct { Body []byte HTTPResponse *http.Response - JSON400 *HumanitecErrorResponse - JSON404 *HumanitecErrorResponse - JSON409 *HumanitecErrorResponse - JSON412 *ErrorResponse + JSON400 *N400BadRequest + JSON404 *N404NotFound + JSON409 *N409Conflict + JSON412 *N412PreconditionFailed } // Status returns HTTPResponse.Status @@ -18936,7 +18964,7 @@ type ListPipelineJobsResponse struct { Body []byte HTTPResponse *http.Response JSON200 *[]PipelineJobPartial - JSON404 *HumanitecErrorResponse + JSON404 *N404NotFound } // Status returns HTTPResponse.Status @@ -18959,7 +18987,7 @@ type GetPipelineJobResponse struct { Body []byte HTTPResponse *http.Response JSON200 *PipelineJob - JSON404 *HumanitecErrorResponse + JSON404 *N404NotFound } // Status returns HTTPResponse.Status @@ -18982,7 +19010,7 @@ type GetPipelineApprovalRequestResponse struct { Body []byte HTTPResponse *http.Response JSON200 *PipelineApprovalRequest - JSON404 *HumanitecErrorResponse + JSON404 *N404NotFound } // Status returns HTTPResponse.Status @@ -19005,9 +19033,9 @@ type ApprovePipelineApprovalRequestResponse struct { Body []byte HTTPResponse *http.Response JSON200 *PipelineApprovalRequest - JSON400 *HumanitecErrorResponse - JSON403 *ErrorResponse - JSON404 *HumanitecErrorResponse + JSON400 *N400BadRequest + JSON403 *N403Forbidden + JSON404 *N404NotFound } // Status returns HTTPResponse.Status @@ -19030,9 +19058,9 @@ type DenyPipelineApprovalRequestResponse struct { Body []byte HTTPResponse *http.Response JSON200 *PipelineApprovalRequest - JSON400 *HumanitecErrorResponse - JSON403 *ErrorResponse - JSON404 *HumanitecErrorResponse + JSON400 *N400BadRequest + JSON403 *N403Forbidden + JSON404 *N404NotFound } // Status returns HTTPResponse.Status @@ -19055,7 +19083,7 @@ type ListPipelineStepLogsResponse struct { Body []byte HTTPResponse *http.Response JSON200 *[]PipelineStepLog - JSON404 *HumanitecErrorResponse + JSON404 *N404NotFound } // Status returns HTTPResponse.Status @@ -19078,10 +19106,10 @@ type RestartPipelineRunResponse struct { Body []byte HTTPResponse *http.Response JSON201 *PipelineRun - JSON400 *HumanitecErrorResponse - JSON404 *HumanitecErrorResponse - JSON409 *HumanitecErrorResponse - JSON422 *ErrorResponse + JSON400 *N400BadRequest + JSON404 *N404NotFound + JSON409 *N409Conflict + JSON422 *N422UnprocessableContent } // Status returns HTTPResponse.Status @@ -19104,8 +19132,8 @@ type GetPipelineDefinitionResponse struct { Body []byte HTTPResponse *http.Response JSON200 *map[string]interface{} - JSON400 *HumanitecErrorResponse - JSON404 *HumanitecErrorResponse + JSON400 *N400BadRequest + JSON404 *N404NotFound } // Status returns HTTPResponse.Status @@ -19128,8 +19156,8 @@ type ListPipelineVersionsResponse struct { Body []byte HTTPResponse *http.Response JSON200 *[]PipelineVersion - JSON400 *HumanitecErrorResponse - JSON404 *HumanitecErrorResponse + JSON400 *N400BadRequest + JSON404 *N404NotFound } // Status returns HTTPResponse.Status @@ -20378,8 +20406,8 @@ type ListPipelineRunsByOrgResponse struct { Body []byte HTTPResponse *http.Response JSON200 *[]PipelineRun - JSON400 *HumanitecErrorResponse - JSON404 *HumanitecErrorResponse + JSON400 *N400BadRequest + JSON404 *N404NotFound } // Status returns HTTPResponse.Status @@ -20402,7 +20430,7 @@ type GetLatestPipelineDefinitionSchemaResponse struct { Body []byte HTTPResponse *http.Response JSON200 *map[string]interface{} - JSON400 *HumanitecErrorResponse + JSON400 *N400BadRequest } // Status returns HTTPResponse.Status @@ -20425,8 +20453,8 @@ type ListPipelinesInOrgResponse struct { Body []byte HTTPResponse *http.Response JSON200 *[]Pipeline - JSON400 *HumanitecErrorResponse - JSON404 *HumanitecErrorResponse + JSON400 *N400BadRequest + JSON404 *N404NotFound } // Status returns HTTPResponse.Status @@ -21354,8 +21382,8 @@ type CreateWorkloadProfileChartVersionResponse struct { Body []byte HTTPResponse *http.Response JSON201 *WorkloadProfileChartVersionResponse - JSON400 *HumanitecErrorResponse - JSON409 *HumanitecErrorResponse + JSON400 *N400BadRequest + JSON409 *N409Conflict } // Status returns HTTPResponse.Status @@ -21400,8 +21428,8 @@ type CreateWorkloadProfileResponse struct { Body []byte HTTPResponse *http.Response JSON201 *WorkloadProfileResponse - JSON400 *HumanitecErrorResponse - JSON409 *HumanitecErrorResponse + JSON400 *N400BadRequest + JSON409 *N409Conflict } // Status returns HTTPResponse.Status @@ -21423,8 +21451,8 @@ func (r CreateWorkloadProfileResponse) StatusCode() int { type DeleteWorkloadProfileResponse struct { Body []byte HTTPResponse *http.Response - JSON400 *HumanitecErrorResponse - JSON404 *HumanitecErrorResponse + JSON400 *N400BadRequest + JSON404 *N404NotFound } // Status returns HTTPResponse.Status @@ -21447,8 +21475,8 @@ type GetWorkloadProfileResponse struct { Body []byte HTTPResponse *http.Response JSON200 *WorkloadProfileResponse - JSON400 *HumanitecErrorResponse - JSON404 *HumanitecErrorResponse + JSON400 *N400BadRequest + JSON404 *N404NotFound } // Status returns HTTPResponse.Status @@ -21471,8 +21499,8 @@ type PatchWorkloadProfileResponse struct { Body []byte HTTPResponse *http.Response JSON200 *WorkloadProfileResponse - JSON400 *HumanitecErrorResponse - JSON404 *HumanitecErrorResponse + JSON400 *N400BadRequest + JSON404 *N404NotFound } // Status returns HTTPResponse.Status @@ -21495,7 +21523,7 @@ type ListWorkloadProfileVersionsResponse struct { Body []byte HTTPResponse *http.Response JSON200 *[]WorkloadProfileVersionResponse - JSON404 *HumanitecErrorResponse + JSON404 *N404NotFound } // Status returns HTTPResponse.Status @@ -21518,9 +21546,9 @@ type CreateWorkloadProfileVersionResponse struct { Body []byte HTTPResponse *http.Response JSON201 *WorkloadProfileVersionResponse - JSON400 *HumanitecErrorResponse - JSON404 *HumanitecErrorResponse - JSON409 *HumanitecErrorResponse + JSON400 *N400BadRequest + JSON404 *N404NotFound + JSON409 *N409Conflict } // Status returns HTTPResponse.Status @@ -21543,7 +21571,7 @@ type GetLatestWorkloadProfileVersionResponse struct { Body []byte HTTPResponse *http.Response JSON200 *WorkloadProfileVersionResponse - JSON404 *HumanitecErrorResponse + JSON404 *N404NotFound } // Status returns HTTPResponse.Status @@ -21565,7 +21593,7 @@ func (r GetLatestWorkloadProfileVersionResponse) StatusCode() int { type DeleteWorkloadProfileVersionResponse struct { Body []byte HTTPResponse *http.Response - JSON404 *HumanitecErrorResponse + JSON404 *N404NotFound } // Status returns HTTPResponse.Status @@ -24114,7 +24142,7 @@ func ParseListPipelineApprovalRequestsResponse(rsp *http.Response) (*ListPipelin response.JSON200 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -25443,14 +25471,14 @@ func ParseListPipelinesResponse(rsp *http.Response) (*ListPipelinesResponse, err response.JSON200 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON400 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -25483,21 +25511,21 @@ func ParseCreatePipelineResponse(rsp *http.Response) (*CreatePipelineResponse, e response.JSON201 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON400 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON404 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 409: - var dest HumanitecErrorResponse + var dest N409Conflict if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -25523,28 +25551,28 @@ func ParseDeletePipelineResponse(rsp *http.Response) (*DeletePipelineResponse, e switch { case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON400 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON404 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 409: - var dest HumanitecErrorResponse + var dest N409Conflict if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON409 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 412: - var dest ErrorResponse + var dest N412PreconditionFailed if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -25577,14 +25605,14 @@ func ParseGetPipelineResponse(rsp *http.Response) (*GetPipelineResponse, error) response.JSON200 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON400 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -25617,28 +25645,28 @@ func ParseUpdatePipelineResponse(rsp *http.Response) (*UpdatePipelineResponse, e response.JSON200 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON400 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON404 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 409: - var dest HumanitecErrorResponse + var dest N409Conflict if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON409 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 412: - var dest ErrorResponse + var dest N412PreconditionFailed if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -25671,14 +25699,14 @@ func ParseListPipelineRunsResponse(rsp *http.Response) (*ListPipelineRunsRespons response.JSON200 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON400 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -25711,28 +25739,28 @@ func ParseCreatePipelineRunResponse(rsp *http.Response) (*CreatePipelineRunRespo response.JSON201 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON400 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON404 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 409: - var dest HumanitecErrorResponse + var dest N409Conflict if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON409 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 422: - var dest ErrorResponse + var dest N422UnprocessableContent if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -25758,28 +25786,28 @@ func ParseDeletePipelineRunResponse(rsp *http.Response) (*DeletePipelineRunRespo switch { case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON400 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON404 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 409: - var dest HumanitecErrorResponse + var dest N409Conflict if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON409 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 412: - var dest ErrorResponse + var dest N412PreconditionFailed if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -25812,7 +25840,7 @@ func ParseGetPipelineRunResponse(rsp *http.Response) (*GetPipelineRunResponse, e response.JSON200 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -25838,28 +25866,28 @@ func ParseCancelPipelineRunResponse(rsp *http.Response) (*CancelPipelineRunRespo switch { case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON400 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON404 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 409: - var dest HumanitecErrorResponse + var dest N409Conflict if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON409 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 412: - var dest ErrorResponse + var dest N412PreconditionFailed if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -25892,7 +25920,7 @@ func ParseListPipelineJobsResponse(rsp *http.Response) (*ListPipelineJobsRespons response.JSON200 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -25925,7 +25953,7 @@ func ParseGetPipelineJobResponse(rsp *http.Response) (*GetPipelineJobResponse, e response.JSON200 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -25958,7 +25986,7 @@ func ParseGetPipelineApprovalRequestResponse(rsp *http.Response) (*GetPipelineAp response.JSON200 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -25991,21 +26019,21 @@ func ParseApprovePipelineApprovalRequestResponse(rsp *http.Response) (*ApprovePi response.JSON200 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON400 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 403: - var dest ErrorResponse + var dest N403Forbidden if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON403 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -26038,21 +26066,21 @@ func ParseDenyPipelineApprovalRequestResponse(rsp *http.Response) (*DenyPipeline response.JSON200 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON400 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 403: - var dest ErrorResponse + var dest N403Forbidden if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON403 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -26085,7 +26113,7 @@ func ParseListPipelineStepLogsResponse(rsp *http.Response) (*ListPipelineStepLog response.JSON200 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -26118,28 +26146,28 @@ func ParseRestartPipelineRunResponse(rsp *http.Response) (*RestartPipelineRunRes response.JSON201 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON400 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON404 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 409: - var dest HumanitecErrorResponse + var dest N409Conflict if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON409 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 422: - var dest ErrorResponse + var dest N422UnprocessableContent if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -26172,14 +26200,14 @@ func ParseGetPipelineDefinitionResponse(rsp *http.Response) (*GetPipelineDefinit response.JSON200 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON400 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -26215,14 +26243,14 @@ func ParseListPipelineVersionsResponse(rsp *http.Response) (*ListPipelineVersion response.JSON200 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON400 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -28038,14 +28066,14 @@ func ParseListPipelineRunsByOrgResponse(rsp *http.Response) (*ListPipelineRunsBy response.JSON200 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON400 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -28078,7 +28106,7 @@ func ParseGetLatestPipelineDefinitionSchemaResponse(rsp *http.Response) (*GetLat response.JSON200 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -28111,14 +28139,14 @@ func ParseListPipelinesInOrgResponse(rsp *http.Response) (*ListPipelinesInOrgRes response.JSON200 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON400 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -29622,14 +29650,14 @@ func ParseCreateWorkloadProfileChartVersionResponse(rsp *http.Response) (*Create response.JSON201 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON400 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 409: - var dest HumanitecErrorResponse + var dest N409Conflict if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -29688,14 +29716,14 @@ func ParseCreateWorkloadProfileResponse(rsp *http.Response) (*CreateWorkloadProf response.JSON201 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON400 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 409: - var dest HumanitecErrorResponse + var dest N409Conflict if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -29721,14 +29749,14 @@ func ParseDeleteWorkloadProfileResponse(rsp *http.Response) (*DeleteWorkloadProf switch { case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON400 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -29761,14 +29789,14 @@ func ParseGetWorkloadProfileResponse(rsp *http.Response) (*GetWorkloadProfileRes response.JSON200 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON400 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -29801,14 +29829,14 @@ func ParsePatchWorkloadProfileResponse(rsp *http.Response) (*PatchWorkloadProfil response.JSON200 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON400 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -29841,7 +29869,7 @@ func ParseListWorkloadProfileVersionsResponse(rsp *http.Response) (*ListWorkload response.JSON200 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -29874,21 +29902,21 @@ func ParseCreateWorkloadProfileVersionResponse(rsp *http.Response) (*CreateWorkl response.JSON201 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 400: - var dest HumanitecErrorResponse + var dest N400BadRequest if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON400 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } response.JSON404 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 409: - var dest HumanitecErrorResponse + var dest N409Conflict if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -29921,7 +29949,7 @@ func ParseGetLatestWorkloadProfileVersionResponse(rsp *http.Response) (*GetLates response.JSON200 = &dest case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } @@ -29947,7 +29975,7 @@ func ParseDeleteWorkloadProfileVersionResponse(rsp *http.Response) (*DeleteWorkl switch { case strings.Contains(rsp.Header.Get("Content-Type"), "json") && rsp.StatusCode == 404: - var dest HumanitecErrorResponse + var dest N404NotFound if err := json.Unmarshal(bodyBytes, &dest); err != nil { return nil, err } diff --git a/go.mod b/go.mod index 4404fad..6a983a0 100644 --- a/go.mod +++ b/go.mod @@ -5,78 +5,16 @@ go 1.21 toolchain go1.21.0 require ( - github.com/deepmap/oapi-codegen v1.16.2 + github.com/oapi-codegen/runtime v1.0.0 github.com/stretchr/testify v1.8.4 ) require ( - github.com/BurntSushi/toml v1.3.2 // indirect - github.com/CloudyKit/fastprinter v0.0.0-20200109182630-33d98a066a53 // indirect - github.com/CloudyKit/jet/v6 v6.2.0 // indirect - github.com/Joker/jade v1.1.3 // indirect - github.com/Shopify/goreferrer v0.0.0-20220729165902-8cddb4f5de06 // indirect - github.com/andybalholm/brotli v1.0.5 // indirect github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect - github.com/aymerick/douceur v0.2.0 // indirect - github.com/bytedance/sonic v1.10.0-rc3 // indirect - github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect - github.com/chenzhuoyu/iasm v0.9.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect - github.com/fatih/structs v1.1.0 // indirect - github.com/flosch/pongo2/v4 v4.0.2 // indirect - github.com/gabriel-vasile/mimetype v1.4.2 // indirect - github.com/gin-contrib/sse v0.1.0 // indirect - github.com/gin-gonic/gin v1.9.1 // indirect - github.com/go-playground/locales v0.14.1 // indirect - github.com/go-playground/universal-translator v0.18.1 // indirect - github.com/go-playground/validator/v10 v10.14.1 // indirect - github.com/goccy/go-json v0.10.2 // indirect - github.com/golang/snappy v0.0.4 // indirect - github.com/gomarkdown/markdown v0.0.0-20230716120725-531d2d74bc12 // indirect github.com/google/uuid v1.3.1 // indirect - github.com/gorilla/css v1.0.0 // indirect - github.com/iris-contrib/schema v0.0.6 // indirect - github.com/josharian/intern v1.0.0 // indirect - github.com/json-iterator/go v1.1.12 // indirect - github.com/kataras/blocks v0.0.7 // indirect - github.com/kataras/golog v0.1.9 // indirect - github.com/kataras/iris/v12 v12.2.6-0.20230908161203-24ba4e8933b9 // indirect - github.com/kataras/pio v0.0.12 // indirect - github.com/kataras/sitemap v0.0.6 // indirect - github.com/kataras/tunnel v0.0.4 // indirect - github.com/klauspost/compress v1.16.7 // indirect - github.com/klauspost/cpuid/v2 v2.2.5 // indirect - github.com/labstack/echo/v4 v4.11.1 // indirect - github.com/labstack/gommon v0.4.0 // indirect - github.com/leodido/go-urn v1.2.4 // indirect - github.com/mailgun/raymond/v2 v2.0.48 // indirect - github.com/mailru/easyjson v0.7.7 // indirect - github.com/mattn/go-colorable v0.1.13 // indirect - github.com/mattn/go-isatty v0.0.19 // indirect - github.com/microcosm-cc/bluemonday v1.0.25 // indirect - github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect - github.com/modern-go/reflect2 v1.0.2 // indirect - github.com/pelletier/go-toml/v2 v2.0.9 // indirect + github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect github.com/pmezard/go-difflib v1.0.0 // indirect - github.com/russross/blackfriday/v2 v2.1.0 // indirect - github.com/schollz/closestmatch v2.1.0+incompatible // indirect - github.com/sirupsen/logrus v1.8.1 // indirect - github.com/tdewolff/minify/v2 v2.12.9 // indirect - github.com/tdewolff/parse/v2 v2.6.8 // indirect - github.com/twitchyliquid64/golang-asm v0.15.1 // indirect - github.com/ugorji/go/codec v1.2.11 // indirect - github.com/valyala/bytebufferpool v1.0.0 // indirect - github.com/valyala/fasttemplate v1.2.2 // indirect - github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect - github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect - github.com/yosssi/ace v0.0.5 // indirect - golang.org/x/arch v0.4.0 // indirect - golang.org/x/crypto v0.14.0 // indirect - golang.org/x/net v0.17.0 // indirect - golang.org/x/sys v0.13.0 // indirect - golang.org/x/text v0.13.0 // indirect - golang.org/x/time v0.3.0 // indirect - google.golang.org/protobuf v1.31.0 // indirect - gopkg.in/ini.v1 v1.67.0 // indirect + gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) diff --git a/go.sum b/go.sum index a99deb0..bbf1685 100644 --- a/go.sum +++ b/go.sum @@ -1,263 +1,29 @@ -github.com/BurntSushi/toml v1.3.2 h1:o7IhLm0Msx3BaB+n3Ag7L8EVlByGnpq14C4YWiu/gL8= -github.com/BurntSushi/toml v1.3.2/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ= -github.com/CloudyKit/fastprinter v0.0.0-20200109182630-33d98a066a53 h1:sR+/8Yb4slttB4vD+b9btVEnWgL3Q00OBTzVT8B9C0c= -github.com/CloudyKit/fastprinter v0.0.0-20200109182630-33d98a066a53/go.mod h1:+3IMCy2vIlbG1XG/0ggNQv0SvxCAIpPM5b1nCz56Xno= -github.com/CloudyKit/jet/v6 v6.2.0 h1:EpcZ6SR9n28BUGtNJSvlBqf90IpjeFr36Tizxhn/oME= -github.com/CloudyKit/jet/v6 v6.2.0/go.mod h1:d3ypHeIRNo2+XyqnGA8s+aphtcVpjP5hPwP/Lzo7Ro4= -github.com/Joker/hpp v1.0.0 h1:65+iuJYdRXv/XyN62C1uEmmOx3432rNG/rKlX6V7Kkc= -github.com/Joker/hpp v1.0.0/go.mod h1:8x5n+M1Hp5hC0g8okX3sR3vFQwynaX/UgSOM9MeBKzY= -github.com/Joker/jade v1.1.3 h1:Qbeh12Vq6BxURXT1qZBRHsDxeURB8ztcL6f3EXSGeHk= -github.com/Joker/jade v1.1.3/go.mod h1:T+2WLyt7VH6Lp0TRxQrUYEs64nRc83wkMQrfeIQKduM= github.com/RaveNoX/go-jsoncommentstrip v1.0.0/go.mod h1:78ihd09MekBnJnxpICcwzCMzGrKSKYe4AqU6PDYYpjk= -github.com/Shopify/goreferrer v0.0.0-20220729165902-8cddb4f5de06 h1:KkH3I3sJuOLP3TjA/dfr4NAY8bghDwnXiU7cTKxQqo0= -github.com/Shopify/goreferrer v0.0.0-20220729165902-8cddb4f5de06/go.mod h1:7erjKLwalezA0k99cWs5L11HWOAPNjdUZ6RxH1BXbbM= -github.com/ajg/form v1.5.1 h1:t9c7v8JUKu/XxOGBU0yjNpaMloxGEJhUkqFRq0ibGeU= -github.com/ajg/form v1.5.1/go.mod h1:uL1WgH+h2mgNtvBq0339dVnzXdBETtL2LeUXaIv25UY= -github.com/andybalholm/brotli v1.0.5 h1:8uQZIdzKmjc/iuPu7O2ioW48L81FgatrcpfFmiq/cCs= -github.com/andybalholm/brotli v1.0.5/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHGRSepvi9Eig= github.com/apapsch/go-jsonmerge/v2 v2.0.0 h1:axGnT1gRIfimI7gJifB699GoE/oq+F2MU7Dml6nw9rQ= github.com/apapsch/go-jsonmerge/v2 v2.0.0/go.mod h1:lvDnEdqiQrp0O42VQGgmlKpxL1AP2+08jFMw88y4klk= -github.com/aymerick/douceur v0.2.0 h1:Mv+mAeH1Q+n9Fr+oyamOlAkUNPWPlA8PPGR0QAaYuPk= -github.com/aymerick/douceur v0.2.0/go.mod h1:wlT5vV2O3h55X9m7iVYN0TBM0NH/MmbLnd30/FjWUq4= github.com/bmatcuk/doublestar v1.1.1/go.mod h1:UD6OnuiIn0yFxxA2le/rnRU1G4RaI4UvFv1sNto9p6w= -github.com/bytedance/sonic v1.5.0/go.mod h1:ED5hyg4y6t3/9Ku1R6dU/4KyJ48DZ4jPhfY1O2AihPM= -github.com/bytedance/sonic v1.10.0-rc/go.mod h1:ElCzW+ufi8qKqNW0FY314xriJhyJhuoJ3gFZdAHF7NM= -github.com/bytedance/sonic v1.10.0-rc3 h1:uNSnscRapXTwUgTyOF0GVljYD08p9X/Lbr9MweSV3V0= -github.com/bytedance/sonic v1.10.0-rc3/go.mod h1:iZcSUejdk5aukTND/Eu/ivjQuEL0Cu9/rf50Hi0u/g4= -github.com/chenzhuoyu/base64x v0.0.0-20211019084208-fb5309c8db06/go.mod h1:DH46F32mSOjUmXrMHnKwZdA8wcEefY7UVqBKYGjpdQY= -github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311/go.mod h1:b583jCggY9gE99b6G5LEC39OIiVsWj+R97kbl5odCEk= -github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d h1:77cEq6EriyTZ0g/qfRdp61a3Uu/AWrgIq2s0ClJV1g0= -github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d/go.mod h1:8EPpVsBuRksnlj1mLy4AWzRNQYxauNi62uWcE3to6eA= -github.com/chenzhuoyu/iasm v0.9.0 h1:9fhXjVzq5hUy2gkhhgHl95zG2cEAhw9OSGs8toWWAwo= -github.com/chenzhuoyu/iasm v0.9.0/go.mod h1:Xjy2NpN3h7aUqeqM+woSuuvxmIe6+DDsiNLIrkAmYog= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/deepmap/oapi-codegen v1.16.2 h1:xGHx0dNqYfy9gE8a7AVgVM8Sd5oF9SEgePzP+UPAUXI= -github.com/deepmap/oapi-codegen v1.16.2/go.mod h1:rdYoEA2GE+riuZ91DvpmBX9hJbQpuY9wchXpfQ3n+ho= -github.com/fatih/color v1.15.0 h1:kOqh6YHBtK8aywxGerMG2Eq3H6Qgoqeo13Bk2Mv/nBs= -github.com/fatih/color v1.15.0/go.mod h1:0h5ZqXfHYED7Bhv2ZJamyIOUej9KtShiJESRwBDUSsw= -github.com/fatih/structs v1.1.0 h1:Q7juDM0QtcnhCpeyLGQKyg4TOIghuNXrkL32pHAUMxo= -github.com/fatih/structs v1.1.0/go.mod h1:9NiDSp5zOcgEDl+j00MP/WkGVPOlPRLejGD8Ga6PJ7M= -github.com/flosch/pongo2/v4 v4.0.2 h1:gv+5Pe3vaSVmiJvh/BZa82b7/00YUGm0PIyVVLop0Hw= -github.com/flosch/pongo2/v4 v4.0.2/go.mod h1:B5ObFANs/36VwxxlgKpdchIJHMvHB562PW+BWPhwZD8= -github.com/gabriel-vasile/mimetype v1.4.2 h1:w5qFW6JKBz9Y393Y4q372O9A7cUSequkh1Q7OhCmWKU= -github.com/gabriel-vasile/mimetype v1.4.2/go.mod h1:zApsH/mKG4w07erKIaJPFiX0Tsq9BFQgN3qGY5GnNgA= -github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE= -github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= -github.com/gin-gonic/gin v1.9.1 h1:4idEAncQnU5cB7BeOkPtxjfCSye0AAm1R0RVIqJ+Jmg= -github.com/gin-gonic/gin v1.9.1/go.mod h1:hPrL7YrpYKXt5YId3A/Tnip5kqbEAP+KLuI3SUcPTeU= -github.com/go-playground/assert/v2 v2.2.0 h1:JvknZsQTYeFEAhQwI4qEt9cyV5ONwRHC+lYKSsYSR8s= -github.com/go-playground/assert/v2 v2.2.0/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4= -github.com/go-playground/locales v0.14.1 h1:EWaQ/wswjilfKLTECiXz7Rh+3BjFhfDFKv/oXslEjJA= -github.com/go-playground/locales v0.14.1/go.mod h1:hxrqLVvrK65+Rwrd5Fc6F2O76J/NuW9t0sjnWqG1slY= -github.com/go-playground/universal-translator v0.18.1 h1:Bcnm0ZwsGyWbCzImXv+pAJnYK9S473LQFuzCbDbfSFY= -github.com/go-playground/universal-translator v0.18.1/go.mod h1:xekY+UJKNuX9WP91TpwSH2VMlDf28Uj24BCp08ZFTUY= -github.com/go-playground/validator/v10 v10.14.1 h1:9c50NUPC30zyuKprjL3vNZ0m5oG+jU0zvx4AqHGnv4k= -github.com/go-playground/validator/v10 v10.14.1/go.mod h1:9iXMNT7sEkjXb0I+enO7QXmzG6QCsPWY4zveKFVRSyU= -github.com/gobwas/glob v0.2.3 h1:A4xDbljILXROh+kObIiy5kIaPYD8e96x1tgBhUI5J+Y= -github.com/gobwas/glob v0.2.3/go.mod h1:d3Ez4x06l9bZtSvzIay5+Yzi0fmZzPgnTbPcKjJAkT8= -github.com/goccy/go-json v0.10.2 h1:CrxCmQqYDkv1z7lO7Wbh2HN93uovUHgrECaO5ZrCXAU= -github.com/goccy/go-json v0.10.2/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I= -github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= -github.com/golang/snappy v0.0.4 h1:yAGX7huGHXlcLOEtBnF4w7FQwA26wojNCwOYAEhLjQM= -github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/gomarkdown/markdown v0.0.0-20230716120725-531d2d74bc12 h1:uK3X/2mt4tbSGoHvbLBHUny7CKiuwUip3MArtukol4E= -github.com/gomarkdown/markdown v0.0.0-20230716120725-531d2d74bc12/go.mod h1:JDGcbDT52eL4fju3sZ4TeHGsQwhG9nbDV21aMyhwPoA= -github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU= -github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= -github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8= -github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU= -github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/uuid v1.3.1 h1:KjJaJ9iWZ3jOFZIf1Lqf4laDRCasjl0BCmnEGxkdLb4= github.com/google/uuid v1.3.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/gorilla/css v1.0.0 h1:BQqNyPTi50JCFMTw/b67hByjMVXZRwGha6wxVGkeihY= -github.com/gorilla/css v1.0.0/go.mod h1:Dn721qIggHpt4+EFCcTLTU/vk5ySda2ReITrtgBl60c= -github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc= -github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= -github.com/imkira/go-interpol v1.1.0 h1:KIiKr0VSG2CUW1hl1jpiyuzuJeKUUpC8iM1AIE7N1Vk= -github.com/imkira/go-interpol v1.1.0/go.mod h1:z0h2/2T3XF8kyEPpRgJ3kmNv+C43p+I/CoI+jC3w2iA= -github.com/iris-contrib/httpexpect/v2 v2.15.2 h1:T9THsdP1woyAqKHwjkEsbCnMefsAFvk8iJJKokcJ3Go= -github.com/iris-contrib/httpexpect/v2 v2.15.2/go.mod h1:JLDgIqnFy5loDSUv1OA2j0mb6p/rDhiCqigP22Uq9xE= -github.com/iris-contrib/schema v0.0.6 h1:CPSBLyx2e91H2yJzPuhGuifVRnZBBJ3pCOMbOvPZaTw= -github.com/iris-contrib/schema v0.0.6/go.mod h1:iYszG0IOsuIsfzjymw1kMzTL8YQcCWlm65f3wX8J5iA= -github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY= -github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y= -github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM= -github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo= github.com/juju/gnuflag v0.0.0-20171113085948-2ce1bb71843d/go.mod h1:2PavIy+JPciBPrBUjwbNvtwB6RQlve+hkpll6QSNmOE= -github.com/kataras/blocks v0.0.7 h1:cF3RDY/vxnSRezc7vLFlQFTYXG/yAr1o7WImJuZbzC4= -github.com/kataras/blocks v0.0.7/go.mod h1:UJIU97CluDo0f+zEjbnbkeMRlvYORtmc1304EeyXf4I= -github.com/kataras/golog v0.1.9 h1:vLvSDpP7kihFGKFAvBSofYo7qZNULYSHOH2D7rPTKJk= -github.com/kataras/golog v0.1.9/go.mod h1:jlpk/bOaYCyqDqH18pgDHdaJab72yBE6i0O3s30hpWY= -github.com/kataras/iris/v12 v12.2.6-0.20230908161203-24ba4e8933b9 h1:Vx8kDVhO2qepK8w44lBtp+RzN3ld743i+LYPzODJSpQ= -github.com/kataras/iris/v12 v12.2.6-0.20230908161203-24ba4e8933b9/go.mod h1:ldkoR3iXABBeqlTibQ3MYaviA1oSlPvim6f55biwBh4= -github.com/kataras/pio v0.0.12 h1:o52SfVYauS3J5X08fNjlGS5arXHjW/ItLkyLcKjoH6w= -github.com/kataras/pio v0.0.12/go.mod h1:ODK/8XBhhQ5WqrAhKy+9lTPS7sBf6O3KcLhc9klfRcY= -github.com/kataras/sitemap v0.0.6 h1:w71CRMMKYMJh6LR2wTgnk5hSgjVNB9KL60n5e2KHvLY= -github.com/kataras/sitemap v0.0.6/go.mod h1:dW4dOCNs896OR1HmG+dMLdT7JjDk7mYBzoIRwuj5jA4= -github.com/kataras/tunnel v0.0.4 h1:sCAqWuJV7nPzGrlb0os3j49lk2JhILT0rID38NHNLpA= -github.com/kataras/tunnel v0.0.4/go.mod h1:9FkU4LaeifdMWqZu7o20ojmW4B7hdhv2CMLwfnHGpYw= -github.com/klauspost/compress v1.16.7 h1:2mk3MPGNzKyxErAw8YaohYh69+pa4sIQSC0fPGCFR9I= -github.com/klauspost/compress v1.16.7/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE= -github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= -github.com/klauspost/cpuid/v2 v2.2.5 h1:0E5MSMDEoAulmXNFquVs//DdoomxaoTY1kUhbc/qbZg= -github.com/klauspost/cpuid/v2 v2.2.5/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= -github.com/knz/go-libedit v1.10.1/go.mod h1:MZTVkCWyz0oBc7JOWP3wNAzd002ZbM/5hgShxwh4x8M= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= -github.com/labstack/echo/v4 v4.11.1 h1:dEpLU2FLg4UVmvCGPuk/APjlH6GDpbEPti61srUUUs4= -github.com/labstack/echo/v4 v4.11.1/go.mod h1:YuYRTSM3CHs2ybfrL8Px48bO6BAnYIN4l8wSTMP6BDQ= -github.com/labstack/gommon v0.4.0 h1:y7cvthEAEbU0yHOf4axH8ZG2NH8knB9iNSoTO8dyIk8= -github.com/labstack/gommon v0.4.0/go.mod h1:uW6kP17uPlLJsD3ijUYn3/M5bAxtlZhMI6m3MFxTMTM= -github.com/leodido/go-urn v1.2.4 h1:XlAE/cm/ms7TE/VMVoduSpNBoyc2dOxHs5MZSwAN63Q= -github.com/leodido/go-urn v1.2.4/go.mod h1:7ZrI8mTSeBSHl/UaRyKQW1qZeMgak41ANeCNaVckg+4= -github.com/mailgun/raymond/v2 v2.0.48 h1:5dmlB680ZkFG2RN/0lvTAghrSxIESeu9/2aeDqACtjw= -github.com/mailgun/raymond/v2 v2.0.48/go.mod h1:lsgvL50kgt1ylcFJYZiULi5fjPBkkhNfj4KA0W54Z18= -github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0= -github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc= -github.com/mattn/go-colorable v0.1.11/go.mod h1:u5H1YNBxpqRaxsYJYSkiCWKzEfiAb1Gb520KVy5xxl4= -github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= -github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= -github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= -github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= -github.com/mattn/go-isatty v0.0.19 h1:JITubQf0MOLdlGRuRq+jtsDlekdYPia9ZFsB8h/APPA= -github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= -github.com/microcosm-cc/bluemonday v1.0.25 h1:4NEwSfiJ+Wva0VxN5B8OwMicaJvD8r9tlJWm9rtloEg= -github.com/microcosm-cc/bluemonday v1.0.25/go.mod h1:ZIOjCQp1OrzBBPIJmfX4qDYFuhU02nx4bn030ixfHLE= -github.com/mitchellh/go-wordwrap v1.0.1 h1:TLuKupo69TCn6TQSyGxwI1EblZZEsQ0vMlAFQflz0v0= -github.com/mitchellh/go-wordwrap v1.0.1/go.mod h1:R62XHJLzvMFRBbcrT7m7WgmE1eOyTSsCt+hzestvNj0= -github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= -github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= -github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= -github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M= -github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk= github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs= github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno= -github.com/pelletier/go-toml/v2 v2.0.9 h1:uH2qQXheeefCCkuBBSLi7jCiSmj3VRh2+Goq2N7Xxu0= -github.com/pelletier/go-toml/v2 v2.0.9/go.mod h1:tJU2Z3ZkXwnxa4DPO899bsyIoywizdUvyaeZurnPPDc= +github.com/oapi-codegen/runtime v1.0.0 h1:P4rqFX5fMFWqRzY9M/3YF9+aPSPPB06IzP2P7oOxrWo= +github.com/oapi-codegen/runtime v1.0.0/go.mod h1:LmCUMQuPB4M/nLXilQXhHw+BLZdDb18B34OO356yJ/A= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk= -github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= -github.com/sanity-io/litter v1.5.5 h1:iE+sBxPBzoK6uaEP5Lt3fHNgpKcHXc/A2HGETy0uJQo= -github.com/sanity-io/litter v1.5.5/go.mod h1:9gzJgR2i4ZpjZHsKvUXIRQVk7P+yM3e+jAF7bU2UI5U= -github.com/schollz/closestmatch v2.1.0+incompatible h1:Uel2GXEpJqOWBrlyI+oY9LTiyyjYS17cCYRqP13/SHk= -github.com/schollz/closestmatch v2.1.0+incompatible/go.mod h1:RtP1ddjLong6gTkbtmuhtR2uUrrJOpYzYRvbcPAid+g= -github.com/sergi/go-diff v1.0.0 h1:Kpca3qRNrduNnOQeazBd0ysaKrUJiIuISHxogkT9RPQ= -github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo= -github.com/sirupsen/logrus v1.8.1 h1:dJKuHgqk1NNQlqoA6BTlM1Wf9DOH3NBjQyu0h9+AZZE= -github.com/sirupsen/logrus v1.8.1/go.mod h1:yWOB1SBYBC5VeMP7gHvWumXLIWorT60ONWic61uBYv0= github.com/spkg/bom v0.0.0-20160624110644-59b7046e48ad/go.mod h1:qLr4V1qq6nMqFKkMo8ZTx3f+BZEkzsRUY10Xsm2mwU0= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= -github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= -github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= -github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= -github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= -github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= -github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= -github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= -github.com/tdewolff/minify/v2 v2.12.9 h1:dvn5MtmuQ/DFMwqf5j8QhEVpPX6fi3WGImhv8RUB4zA= -github.com/tdewolff/minify/v2 v2.12.9/go.mod h1:qOqdlDfL+7v0/fyymB+OP497nIxJYSvX4MQWA8OoiXU= -github.com/tdewolff/parse/v2 v2.6.8 h1:mhNZXYCx//xG7Yq2e/kVLNZw4YfYmeHbhx+Zc0OvFMA= -github.com/tdewolff/parse/v2 v2.6.8/go.mod h1:XHDhaU6IBgsryfdnpzUXBlT6leW/l25yrFBTEb4eIyM= -github.com/tdewolff/test v1.0.9 h1:SswqJCmeN4B+9gEAi/5uqT0qpi1y2/2O47V/1hhGZT0= -github.com/tdewolff/test v1.0.9/go.mod h1:6DAvZliBAAnD7rhVgwaM7DE5/d9NMOAJ09SqYqeK4QE= -github.com/twitchyliquid64/golang-asm v0.15.1 h1:SU5vSMR7hnwNxj24w34ZyCi/FmDZTkS4MhqMhdFk5YI= -github.com/twitchyliquid64/golang-asm v0.15.1/go.mod h1:a1lVb/DtPvCB8fslRZhAngC2+aY1QWCk3Cedj/Gdt08= -github.com/ugorji/go/codec v1.2.11 h1:BMaWp1Bb6fHwEtbplGBGJ498wD+LKlNSl25MjdZY4dU= -github.com/ugorji/go/codec v1.2.11/go.mod h1:UNopzCgEMSXjBc6AOMqYvWC1ktqTAfzJZUZgYf6w6lg= -github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw= -github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc= -github.com/valyala/fasttemplate v1.2.1/go.mod h1:KHLXt3tVN2HBp8eijSv/kGJopbvo7S+qRAEEKiv+SiQ= -github.com/valyala/fasttemplate v1.2.2 h1:lxLXG0uE3Qnshl9QyaK6XJxMXlQZELvChBOCmQD0Loo= -github.com/valyala/fasttemplate v1.2.2/go.mod h1:KHLXt3tVN2HBp8eijSv/kGJopbvo7S+qRAEEKiv+SiQ= -github.com/vmihailenco/msgpack/v5 v5.3.5 h1:5gO0H1iULLWGhs2H5tbAHIZTV8/cYafcFOr9znI5mJU= -github.com/vmihailenco/msgpack/v5 v5.3.5/go.mod h1:7xyJ9e+0+9SaZT0Wt1RGleJXzli6Q/V5KbhBonMG9jc= -github.com/vmihailenco/tagparser/v2 v2.0.0 h1:y09buUbR+b5aycVFQs/g70pqKVZNBmxwAhO7/IwNM9g= -github.com/vmihailenco/tagparser/v2 v2.0.0/go.mod h1:Wri+At7QHww0WTrCBeu4J6bNtoV6mEfg5OIWRZA9qds= -github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f h1:J9EGpcZtP0E/raorCMxlFGSTBrsSlaDGf3jU/qvAE2c= -github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f/go.mod h1:N2zxlSyiKSe5eX1tZViRH5QA0qijqEDrYZiPEAiq3wU= -github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 h1:EzJWgHovont7NscjpAxXsDA8S8BMYve8Y5+7cuRE7R0= -github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415/go.mod h1:GwrjFmJcFw6At/Gs6z4yjiIwzuJ1/+UwLxMQDVQXShQ= -github.com/xeipuuv/gojsonschema v1.2.0 h1:LhYJRs+L4fBtjZUfuSZIKGeVu0QRy8e5Xi7D17UxZ74= -github.com/xeipuuv/gojsonschema v1.2.0/go.mod h1:anYRn/JVcOK2ZgGU+IjEV4nwlhoK5sQluxsYJ78Id3Y= -github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0 h1:6fRhSjgLCkTD3JnJxvaJ4Sj+TYblw757bqYgZaOq5ZY= -github.com/yalp/jsonpath v0.0.0-20180802001716-5cc68e5049a0/go.mod h1:/LWChgwKmvncFJFHJ7Gvn9wZArjbV5/FppcK2fKk/tI= -github.com/yosssi/ace v0.0.5 h1:tUkIP/BLdKqrlrPwcmH0shwEEhTRHoGnc1wFIWmaBUA= -github.com/yosssi/ace v0.0.5/go.mod h1:ALfIzm2vT7t5ZE7uoIZqF3TQ7SAOyupFZnkrF5id+K0= -github.com/yudai/gojsondiff v1.0.0 h1:27cbfqXLVEJ1o8I6v3y9lg8Ydm53EKqHXAOMxEGlCOA= -github.com/yudai/gojsondiff v1.0.0/go.mod h1:AY32+k2cwILAkW1fbgxQ5mUmMiZFgLIV+FBNExI05xg= -github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 h1:BHyfKlQyqbsFN5p3IfnEUduWvb9is428/nNb5L3U01M= -github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82/go.mod h1:lgjkn3NuSvDfVJdfcVVdX+jpBxNmX4rDAzaS45IcYoM= -github.com/yuin/goldmark v1.4.1/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k= -golang.org/x/arch v0.0.0-20210923205945-b76863e36670/go.mod h1:5om86z9Hs0C8fWVUuoMHwpExlXzs5Tkyp9hOrfG7pp8= -golang.org/x/arch v0.4.0 h1:A8WCeEWhLwPBKNbFi5Wv5UTCBx5zzubnXDlMOFAzFMc= -golang.org/x/arch v0.4.0/go.mod h1:5om86z9Hs0C8fWVUuoMHwpExlXzs5Tkyp9hOrfG7pp8= -golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.14.0 h1:wBqGXzWJW6m1XrIKlAH0Hs1JJ7+9KBwnIO8v66Q9cHc= -golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= -golang.org/x/mod v0.5.1/go.mod h1:5OXOZSfqPIIbmVBIIKWRFfZjPR0E5r58TLhUjH0a2Ro= -golang.org/x/net v0.0.0-20190327091125-710a502c58a2/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= -golang.org/x/net v0.0.0-20211015210444-4f30a5c0130f/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.17.0 h1:pVaXccu2ozPjCXewfr1S7xza/zcXTity9cCdXQYSjIM= -golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= -golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20211103235746-7861aae1554b/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.13.0 h1:Af8nKPmuFypiUBjVoU9V20FiaFXOcuZI21p0ycVYYGE= -golang.org/x/sys v0.13.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= -golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= -golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.13.0 h1:ablQoSUd0tRdKxZewP80B+BaqeKJuVhuRxj/dkrun3k= -golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= -golang.org/x/time v0.3.0 h1:rg5rLMjNzMS1RkNLzCG38eapWhnYLFYXDXj2gOlr8j4= -golang.org/x/time v0.3.0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= -golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.1.9/go.mod h1:nABZi5QlRsZVlzPpHl034qft6wpY4eDcsTt5AaioBiU= -golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE= -golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= -google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8= -google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b h1:QRR6H1YWRnHb4Y/HeNFCTJLFVxaq6wH4YuVdsUOr75U= gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/ini.v1 v1.67.0 h1:Dgnx+6+nfE+IfzjUEISNeydPJh9AXNNsWbGP9KzCsOA= -gopkg.in/ini.v1 v1.67.0/go.mod h1:pNLf8WUiyNEtQjuu5G5vTm06TEv9tsIgeAvK8hOrP4k= -gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY= -gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ= -gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -moul.io/http2curl/v2 v2.3.0 h1:9r3JfDzWPcbIklMOs2TnIFzDYvfAZvjeavG6EzP7jYs= -moul.io/http2curl/v2 v2.3.0/go.mod h1:RW4hyBjTWSYDOxapodpNEtX0g5Eb16sxklBqmd2RHcE= -nullprogram.com/x/optparse v1.0.0/go.mod h1:KdyPE+Igbe0jQUrVfMqDMeJQIJZEuyV7pjYmp6pbG50= -rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4=