diff --git a/services/runcommand/api_default.go b/services/runcommand/api_default.go index d22cb354d..9d474bc59 100644 --- a/services/runcommand/api_default.go +++ b/services/runcommand/api_default.go @@ -3,7 +3,7 @@ STACKIT Run Commands Service API API endpoints for the STACKIT Run Commands Service API -API version: 1.0 +API version: 2.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -30,6 +30,7 @@ type ApiCreateCommandRequest struct { apiService *DefaultApiService projectId string serverId string + region string createCommandPayload *CreateCommandPayload } @@ -53,9 +54,10 @@ func (r ApiCreateCommandRequest) Execute() (*NewCommandResponse, error) { return localVarReturnValue, &oapierror.GenericOpenAPIError{ErrorMessage: err.Error()} } - localVarPath := localBasePath + "/v1/projects/{projectId}/servers/{serverId}/commands" + localVarPath := localBasePath + "/v2/projects/{projectId}/regions/{region}/servers/{serverId}/commands" localVarPath = strings.Replace(localVarPath, "{"+"projectId"+"}", url.PathEscape(ParameterValueToString(r.projectId, "projectId")), -1) localVarPath = strings.Replace(localVarPath, "{"+"serverId"+"}", url.PathEscape(ParameterValueToString(r.serverId, "serverId")), -1) + localVarPath = strings.Replace(localVarPath, "{"+"region"+"}", url.PathEscape(ParameterValueToString(r.region, "region")), -1) localVarHeaderParams := make(map[string]string) localVarQueryParams := url.Values{} @@ -168,23 +170,26 @@ Creates a new command for execution @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param projectId ID of the project @param serverId Server ID of the machine + @param region region @return ApiCreateCommandRequest */ -func (a *APIClient) CreateCommand(ctx context.Context, projectId string, serverId string) ApiCreateCommandRequest { +func (a *APIClient) CreateCommand(ctx context.Context, projectId string, serverId string, region string) ApiCreateCommandRequest { return ApiCreateCommandRequest{ apiService: a.defaultApi, ctx: ctx, projectId: projectId, serverId: serverId, + region: region, } } -func (a *APIClient) CreateCommandExecute(ctx context.Context, projectId string, serverId string) (*NewCommandResponse, error) { +func (a *APIClient) CreateCommandExecute(ctx context.Context, projectId string, serverId string, region string) (*NewCommandResponse, error) { r := ApiCreateCommandRequest{ apiService: a.defaultApi, ctx: ctx, projectId: projectId, serverId: serverId, + region: region, } return r.Execute() } @@ -193,6 +198,7 @@ type ApiGetCommandRequest struct { ctx context.Context apiService *DefaultApiService projectId string + region string serverId string commandId string } @@ -210,8 +216,9 @@ func (r ApiGetCommandRequest) Execute() (*CommandDetails, error) { return localVarReturnValue, &oapierror.GenericOpenAPIError{ErrorMessage: err.Error()} } - localVarPath := localBasePath + "/v1/projects/{projectId}/servers/{serverId}/commands/{commandId}" + localVarPath := localBasePath + "/v2/projects/{projectId}/regions/{region}/servers/{serverId}/commands/{commandId}" localVarPath = strings.Replace(localVarPath, "{"+"projectId"+"}", url.PathEscape(ParameterValueToString(r.projectId, "projectId")), -1) + localVarPath = strings.Replace(localVarPath, "{"+"region"+"}", url.PathEscape(ParameterValueToString(r.region, "region")), -1) localVarPath = strings.Replace(localVarPath, "{"+"serverId"+"}", url.PathEscape(ParameterValueToString(r.serverId, "serverId")), -1) localVarPath = strings.Replace(localVarPath, "{"+"commandId"+"}", url.PathEscape(ParameterValueToString(r.commandId, "commandId")), -1) @@ -323,25 +330,28 @@ Returns details about a command @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param projectId ID of the project + @param region region @param serverId Server ID of the machine @param commandId ID of the command @return ApiGetCommandRequest */ -func (a *APIClient) GetCommand(ctx context.Context, projectId string, serverId string, commandId string) ApiGetCommandRequest { +func (a *APIClient) GetCommand(ctx context.Context, projectId string, region string, serverId string, commandId string) ApiGetCommandRequest { return ApiGetCommandRequest{ apiService: a.defaultApi, ctx: ctx, projectId: projectId, + region: region, serverId: serverId, commandId: commandId, } } -func (a *APIClient) GetCommandExecute(ctx context.Context, projectId string, serverId string, commandId string) (*CommandDetails, error) { +func (a *APIClient) GetCommandExecute(ctx context.Context, projectId string, region string, serverId string, commandId string) (*CommandDetails, error) { r := ApiGetCommandRequest{ apiService: a.defaultApi, ctx: ctx, projectId: projectId, + region: region, serverId: serverId, commandId: commandId, } @@ -354,6 +364,7 @@ type ApiGetCommandTemplateRequest struct { projectId string serverId string commandTemplateName string + region string } func (r ApiGetCommandTemplateRequest) Execute() (*CommandTemplateSchema, error) { @@ -369,10 +380,11 @@ func (r ApiGetCommandTemplateRequest) Execute() (*CommandTemplateSchema, error) return localVarReturnValue, &oapierror.GenericOpenAPIError{ErrorMessage: err.Error()} } - localVarPath := localBasePath + "/v1/projects/{projectId}/servers/{serverId}/command-templates/{commandTemplateName}" + localVarPath := localBasePath + "/v2/projects/{projectId}/regions/{region}/servers/{serverId}/command-templates/{commandTemplateName}" localVarPath = strings.Replace(localVarPath, "{"+"projectId"+"}", url.PathEscape(ParameterValueToString(r.projectId, "projectId")), -1) localVarPath = strings.Replace(localVarPath, "{"+"serverId"+"}", url.PathEscape(ParameterValueToString(r.serverId, "serverId")), -1) localVarPath = strings.Replace(localVarPath, "{"+"commandTemplateName"+"}", url.PathEscape(ParameterValueToString(r.commandTemplateName, "commandTemplateName")), -1) + localVarPath = strings.Replace(localVarPath, "{"+"region"+"}", url.PathEscape(ParameterValueToString(r.region, "region")), -1) localVarHeaderParams := make(map[string]string) localVarQueryParams := url.Values{} @@ -484,25 +496,28 @@ Returns details about a command template @param projectId ID of the project @param serverId Server ID of the machine @param commandTemplateName Name of the template + @param region region @return ApiGetCommandTemplateRequest */ -func (a *APIClient) GetCommandTemplate(ctx context.Context, projectId string, serverId string, commandTemplateName string) ApiGetCommandTemplateRequest { +func (a *APIClient) GetCommandTemplate(ctx context.Context, projectId string, serverId string, commandTemplateName string, region string) ApiGetCommandTemplateRequest { return ApiGetCommandTemplateRequest{ apiService: a.defaultApi, ctx: ctx, projectId: projectId, serverId: serverId, commandTemplateName: commandTemplateName, + region: region, } } -func (a *APIClient) GetCommandTemplateExecute(ctx context.Context, projectId string, serverId string, commandTemplateName string) (*CommandTemplateSchema, error) { +func (a *APIClient) GetCommandTemplateExecute(ctx context.Context, projectId string, serverId string, commandTemplateName string, region string) (*CommandTemplateSchema, error) { r := ApiGetCommandTemplateRequest{ apiService: a.defaultApi, ctx: ctx, projectId: projectId, serverId: serverId, commandTemplateName: commandTemplateName, + region: region, } return r.Execute() } @@ -533,7 +548,7 @@ func (r ApiListCommandTemplatesRequest) Execute() (*CommandTemplateResponse, err return localVarReturnValue, &oapierror.GenericOpenAPIError{ErrorMessage: err.Error()} } - localVarPath := localBasePath + "/v1/command-templates" + localVarPath := localBasePath + "/v2/command-templates" localVarHeaderParams := make(map[string]string) localVarQueryParams := url.Values{} @@ -656,6 +671,7 @@ type ApiListCommandsRequest struct { apiService *DefaultApiService projectId string serverId string + region string } func (r ApiListCommandsRequest) Execute() (*GetCommandsResponse, error) { @@ -671,9 +687,10 @@ func (r ApiListCommandsRequest) Execute() (*GetCommandsResponse, error) { return localVarReturnValue, &oapierror.GenericOpenAPIError{ErrorMessage: err.Error()} } - localVarPath := localBasePath + "/v1/projects/{projectId}/servers/{serverId}/commands" + localVarPath := localBasePath + "/v2/projects/{projectId}/regions/{region}/servers/{serverId}/commands" localVarPath = strings.Replace(localVarPath, "{"+"projectId"+"}", url.PathEscape(ParameterValueToString(r.projectId, "projectId")), -1) localVarPath = strings.Replace(localVarPath, "{"+"serverId"+"}", url.PathEscape(ParameterValueToString(r.serverId, "serverId")), -1) + localVarPath = strings.Replace(localVarPath, "{"+"region"+"}", url.PathEscape(ParameterValueToString(r.region, "region")), -1) localVarHeaderParams := make(map[string]string) localVarQueryParams := url.Values{} @@ -784,23 +801,26 @@ Returns a list of commands @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @param projectId ID of the project @param serverId Server ID of the machine + @param region region @return ApiListCommandsRequest */ -func (a *APIClient) ListCommands(ctx context.Context, projectId string, serverId string) ApiListCommandsRequest { +func (a *APIClient) ListCommands(ctx context.Context, projectId string, serverId string, region string) ApiListCommandsRequest { return ApiListCommandsRequest{ apiService: a.defaultApi, ctx: ctx, projectId: projectId, serverId: serverId, + region: region, } } -func (a *APIClient) ListCommandsExecute(ctx context.Context, projectId string, serverId string) (*GetCommandsResponse, error) { +func (a *APIClient) ListCommandsExecute(ctx context.Context, projectId string, serverId string, region string) (*GetCommandsResponse, error) { r := ApiListCommandsRequest{ apiService: a.defaultApi, ctx: ctx, projectId: projectId, serverId: serverId, + region: region, } return r.Execute() } diff --git a/services/runcommand/api_default_test.go b/services/runcommand/api_default_test.go index 7077e9b3b..0c9ea30b3 100644 --- a/services/runcommand/api_default_test.go +++ b/services/runcommand/api_default_test.go @@ -24,11 +24,13 @@ import ( func Test_runcommand_DefaultApiService(t *testing.T) { t.Run("Test DefaultApiService CreateCommand", func(t *testing.T) { - path := "/v1/projects/{projectId}/servers/{serverId}/commands" + path := "/v2/projects/{projectId}/regions/{region}/servers/{serverId}/commands" projectIdValue := "projectId" path = strings.Replace(path, "{"+"projectId"+"}", url.PathEscape(ParameterValueToString(projectIdValue, "projectId")), -1) serverIdValue := "serverId" path = strings.Replace(path, "{"+"serverId"+"}", url.PathEscape(ParameterValueToString(serverIdValue, "serverId")), -1) + regionValue := "region" + path = strings.Replace(path, "{"+"region"+"}", url.PathEscape(ParameterValueToString(regionValue, "region")), -1) testDefaultApiServeMux := http.NewServeMux() testDefaultApiServeMux.HandleFunc(path, func(w http.ResponseWriter, req *http.Request) { @@ -67,8 +69,9 @@ func Test_runcommand_DefaultApiService(t *testing.T) { projectId := "projectId" serverId := "serverId" + region := "region" - resp, reqErr := apiClient.CreateCommand(context.Background(), projectId, serverId).Execute() + resp, reqErr := apiClient.CreateCommand(context.Background(), projectId, serverId, region).Execute() if reqErr != nil { t.Fatalf("error in call: %v", reqErr) @@ -79,9 +82,11 @@ func Test_runcommand_DefaultApiService(t *testing.T) { }) t.Run("Test DefaultApiService GetCommand", func(t *testing.T) { - path := "/v1/projects/{projectId}/servers/{serverId}/commands/{commandId}" + path := "/v2/projects/{projectId}/regions/{region}/servers/{serverId}/commands/{commandId}" projectIdValue := "projectId" path = strings.Replace(path, "{"+"projectId"+"}", url.PathEscape(ParameterValueToString(projectIdValue, "projectId")), -1) + regionValue := "region" + path = strings.Replace(path, "{"+"region"+"}", url.PathEscape(ParameterValueToString(regionValue, "region")), -1) serverIdValue := "serverId" path = strings.Replace(path, "{"+"serverId"+"}", url.PathEscape(ParameterValueToString(serverIdValue, "serverId")), -1) commandIdValue := "commandId" @@ -123,10 +128,11 @@ func Test_runcommand_DefaultApiService(t *testing.T) { } projectId := "projectId" + region := "region" serverId := "serverId" commandId := "commandId" - resp, reqErr := apiClient.GetCommand(context.Background(), projectId, serverId, commandId).Execute() + resp, reqErr := apiClient.GetCommand(context.Background(), projectId, region, serverId, commandId).Execute() if reqErr != nil { t.Fatalf("error in call: %v", reqErr) @@ -137,13 +143,15 @@ func Test_runcommand_DefaultApiService(t *testing.T) { }) t.Run("Test DefaultApiService GetCommandTemplate", func(t *testing.T) { - path := "/v1/projects/{projectId}/servers/{serverId}/command-templates/{commandTemplateName}" + path := "/v2/projects/{projectId}/regions/{region}/servers/{serverId}/command-templates/{commandTemplateName}" projectIdValue := "projectId" path = strings.Replace(path, "{"+"projectId"+"}", url.PathEscape(ParameterValueToString(projectIdValue, "projectId")), -1) serverIdValue := "serverId" path = strings.Replace(path, "{"+"serverId"+"}", url.PathEscape(ParameterValueToString(serverIdValue, "serverId")), -1) commandTemplateNameValue := "commandTemplateName" path = strings.Replace(path, "{"+"commandTemplateName"+"}", url.PathEscape(ParameterValueToString(commandTemplateNameValue, "commandTemplateName")), -1) + regionValue := "region" + path = strings.Replace(path, "{"+"region"+"}", url.PathEscape(ParameterValueToString(regionValue, "region")), -1) testDefaultApiServeMux := http.NewServeMux() testDefaultApiServeMux.HandleFunc(path, func(w http.ResponseWriter, req *http.Request) { @@ -183,8 +191,9 @@ func Test_runcommand_DefaultApiService(t *testing.T) { projectId := "projectId" serverId := "serverId" commandTemplateName := "commandTemplateName" + region := "region" - resp, reqErr := apiClient.GetCommandTemplate(context.Background(), projectId, serverId, commandTemplateName).Execute() + resp, reqErr := apiClient.GetCommandTemplate(context.Background(), projectId, serverId, commandTemplateName, region).Execute() if reqErr != nil { t.Fatalf("error in call: %v", reqErr) @@ -195,7 +204,7 @@ func Test_runcommand_DefaultApiService(t *testing.T) { }) t.Run("Test DefaultApiService ListCommandTemplates", func(t *testing.T) { - path := "/v1/command-templates" + path := "/v2/command-templates" testDefaultApiServeMux := http.NewServeMux() testDefaultApiServeMux.HandleFunc(path, func(w http.ResponseWriter, req *http.Request) { @@ -243,11 +252,13 @@ func Test_runcommand_DefaultApiService(t *testing.T) { }) t.Run("Test DefaultApiService ListCommands", func(t *testing.T) { - path := "/v1/projects/{projectId}/servers/{serverId}/commands" + path := "/v2/projects/{projectId}/regions/{region}/servers/{serverId}/commands" projectIdValue := "projectId" path = strings.Replace(path, "{"+"projectId"+"}", url.PathEscape(ParameterValueToString(projectIdValue, "projectId")), -1) serverIdValue := "serverId" path = strings.Replace(path, "{"+"serverId"+"}", url.PathEscape(ParameterValueToString(serverIdValue, "serverId")), -1) + regionValue := "region" + path = strings.Replace(path, "{"+"region"+"}", url.PathEscape(ParameterValueToString(regionValue, "region")), -1) testDefaultApiServeMux := http.NewServeMux() testDefaultApiServeMux.HandleFunc(path, func(w http.ResponseWriter, req *http.Request) { @@ -286,8 +297,9 @@ func Test_runcommand_DefaultApiService(t *testing.T) { projectId := "projectId" serverId := "serverId" + region := "region" - resp, reqErr := apiClient.ListCommands(context.Background(), projectId, serverId).Execute() + resp, reqErr := apiClient.ListCommands(context.Background(), projectId, serverId, region).Execute() if reqErr != nil { t.Fatalf("error in call: %v", reqErr) diff --git a/services/runcommand/client.go b/services/runcommand/client.go index 4aba2f5c3..5c5066291 100644 --- a/services/runcommand/client.go +++ b/services/runcommand/client.go @@ -3,7 +3,7 @@ STACKIT Run Commands Service API API endpoints for the STACKIT Run Commands Service API -API version: 1.0 +API version: 2.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -42,7 +42,7 @@ var ( queryDescape = strings.NewReplacer("%5B", "[", "%5D", "]") ) -// APIClient manages communication with the STACKIT Run Commands Service API API v1.0 +// APIClient manages communication with the STACKIT Run Commands Service API API v2.0 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *config.Configuration diff --git a/services/runcommand/configuration.go b/services/runcommand/configuration.go index 5ddfa35fd..80ece04bd 100644 --- a/services/runcommand/configuration.go +++ b/services/runcommand/configuration.go @@ -3,7 +3,7 @@ STACKIT Run Commands Service API API endpoints for the STACKIT Run Commands Service API -API version: 1.0 +API version: 2.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -22,15 +22,12 @@ func NewConfiguration() *config.Configuration { Debug: false, Servers: config.ServerConfigurations{ { - URL: "https://run-command.api.{region}stackit.cloud", + URL: "https://run-command.api.stackit.cloud", Description: "No description provided", Variables: map[string]config.ServerVariable{ "region": { Description: "No description provided", - DefaultValue: "eu01.", - EnumValues: []string{ - "eu01.", - }, + DefaultValue: "global", }, }, }, diff --git a/services/runcommand/model_command_details.go b/services/runcommand/model_command_details.go index 7fb7867e5..733c578ed 100644 --- a/services/runcommand/model_command_details.go +++ b/services/runcommand/model_command_details.go @@ -3,7 +3,7 @@ STACKIT Run Commands Service API API endpoints for the STACKIT Run Commands Service API -API version: 1.0 +API version: 2.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/services/runcommand/model_command_template.go b/services/runcommand/model_command_template.go index 8ec716ec0..abe21d602 100644 --- a/services/runcommand/model_command_template.go +++ b/services/runcommand/model_command_template.go @@ -3,7 +3,7 @@ STACKIT Run Commands Service API API endpoints for the STACKIT Run Commands Service API -API version: 1.0 +API version: 2.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/services/runcommand/model_command_template_response.go b/services/runcommand/model_command_template_response.go index 6ad0932b0..15b1de054 100644 --- a/services/runcommand/model_command_template_response.go +++ b/services/runcommand/model_command_template_response.go @@ -3,7 +3,7 @@ STACKIT Run Commands Service API API endpoints for the STACKIT Run Commands Service API -API version: 1.0 +API version: 2.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/services/runcommand/model_command_template_schema.go b/services/runcommand/model_command_template_schema.go index a4c7a8577..7fb337298 100644 --- a/services/runcommand/model_command_template_schema.go +++ b/services/runcommand/model_command_template_schema.go @@ -3,7 +3,7 @@ STACKIT Run Commands Service API API endpoints for the STACKIT Run Commands Service API -API version: 1.0 +API version: 2.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/services/runcommand/model_commands.go b/services/runcommand/model_commands.go index ff0c5b283..ce17fbcef 100644 --- a/services/runcommand/model_commands.go +++ b/services/runcommand/model_commands.go @@ -3,7 +3,7 @@ STACKIT Run Commands Service API API endpoints for the STACKIT Run Commands Service API -API version: 1.0 +API version: 2.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/services/runcommand/model_create_command_payload.go b/services/runcommand/model_create_command_payload.go index a7451afdf..7275d70c4 100644 --- a/services/runcommand/model_create_command_payload.go +++ b/services/runcommand/model_create_command_payload.go @@ -3,7 +3,7 @@ STACKIT Run Commands Service API API endpoints for the STACKIT Run Commands Service API -API version: 1.0 +API version: 2.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/services/runcommand/model_error_response.go b/services/runcommand/model_error_response.go index 92ae87e8e..f388f4dca 100644 --- a/services/runcommand/model_error_response.go +++ b/services/runcommand/model_error_response.go @@ -3,7 +3,7 @@ STACKIT Run Commands Service API API endpoints for the STACKIT Run Commands Service API -API version: 1.0 +API version: 2.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/services/runcommand/model_field.go b/services/runcommand/model_field.go index 91675b9ed..02b40a7ec 100644 --- a/services/runcommand/model_field.go +++ b/services/runcommand/model_field.go @@ -3,7 +3,7 @@ STACKIT Run Commands Service API API endpoints for the STACKIT Run Commands Service API -API version: 1.0 +API version: 2.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/services/runcommand/model_get_commands_response.go b/services/runcommand/model_get_commands_response.go index 3e1a85495..c9ecc0767 100644 --- a/services/runcommand/model_get_commands_response.go +++ b/services/runcommand/model_get_commands_response.go @@ -3,7 +3,7 @@ STACKIT Run Commands Service API API endpoints for the STACKIT Run Commands Service API -API version: 1.0 +API version: 2.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/services/runcommand/model_new_command_response.go b/services/runcommand/model_new_command_response.go index 0474a642a..9a6400e49 100644 --- a/services/runcommand/model_new_command_response.go +++ b/services/runcommand/model_new_command_response.go @@ -3,7 +3,7 @@ STACKIT Run Commands Service API API endpoints for the STACKIT Run Commands Service API -API version: 1.0 +API version: 2.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/services/runcommand/model_parameters_schema.go b/services/runcommand/model_parameters_schema.go index 18d94bf28..b429c978b 100644 --- a/services/runcommand/model_parameters_schema.go +++ b/services/runcommand/model_parameters_schema.go @@ -3,7 +3,7 @@ STACKIT Run Commands Service API API endpoints for the STACKIT Run Commands Service API -API version: 1.0 +API version: 2.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/services/runcommand/model_properties.go b/services/runcommand/model_properties.go index 4df15d7de..c64a8ff67 100644 --- a/services/runcommand/model_properties.go +++ b/services/runcommand/model_properties.go @@ -3,7 +3,7 @@ STACKIT Run Commands Service API API endpoints for the STACKIT Run Commands Service API -API version: 1.0 +API version: 2.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/services/runcommand/utils.go b/services/runcommand/utils.go index 7dcb6f7b0..1ea5bb1dc 100644 --- a/services/runcommand/utils.go +++ b/services/runcommand/utils.go @@ -3,7 +3,7 @@ STACKIT Run Commands Service API API endpoints for the STACKIT Run Commands Service API -API version: 1.0 +API version: 2.0 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.