38 lines
940 B
Go
38 lines
940 B
Go
/*
|
|
STACKIT Run Commands Service API
|
|
|
|
API endpoints for the STACKIT Run Commands Service API
|
|
|
|
API version: 2beta.0
|
|
*/
|
|
|
|
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
|
|
|
|
package runcommandbeta
|
|
|
|
import (
|
|
"github.com/stackitcloud/stackit-sdk-go/core/config"
|
|
)
|
|
|
|
// NewConfiguration returns a new Configuration object
|
|
func NewConfiguration() *config.Configuration {
|
|
cfg := &config.Configuration{
|
|
DefaultHeader: make(map[string]string),
|
|
UserAgent: "stackit-sdk-go/runcommandbeta",
|
|
Debug: false,
|
|
Servers: config.ServerConfigurations{
|
|
{
|
|
URL: "https://run-command.api.stackit.cloud",
|
|
Description: "No description provided",
|
|
Variables: map[string]config.ServerVariable{
|
|
"region": {
|
|
Description: "No description provided",
|
|
DefaultValue: "global",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
OperationServers: map[string]config.ServerConfigurations{},
|
|
}
|
|
return cfg
|
|
}
|