41 lines
970 B
Go
41 lines
970 B
Go
/*
|
|
STACKIT Intake API
|
|
|
|
This API provides endpoints for managing Intakes.
|
|
|
|
API version: 1beta.3.5
|
|
*/
|
|
|
|
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
|
|
|
|
package intakebeta
|
|
|
|
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/intakebeta",
|
|
Debug: false,
|
|
Servers: config.ServerConfigurations{
|
|
{
|
|
URL: "https://intake.api.{region}stackit.cloud",
|
|
Description: "No description provided",
|
|
Variables: map[string]config.ServerVariable{
|
|
"region": {
|
|
Description: "No description provided",
|
|
DefaultValue: "eu01.",
|
|
EnumValues: []string{
|
|
"eu01.",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
OperationServers: map[string]config.ServerConfigurations{},
|
|
}
|
|
return cfg
|
|
}
|