chore: initial push to be able to work together

This commit is contained in:
Marcel S. Henselin 2025-12-11 09:59:41 +01:00
parent 81e8d48cf6
commit 30070d8470
263 changed files with 45437 additions and 2 deletions

View file

@ -0,0 +1,41 @@
/*
STACKIT MSSQL Service API
This is the documentation for the STACKIT MSSQL service
API version: 3alpha1
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package sqlserverflexalpha
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/sqlserverflexalpha",
Debug: false,
Servers: config.ServerConfigurations{
{
URL: "https://mssql-flex-service.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
}