/* PostgreSQL Flex API This is the documentation for the STACKIT Postgres Flex service API version: 3alpha1 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. package postgresflexalpha 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/postgresflexalpha", Debug: false, Servers: config.ServerConfigurations{ { URL: "https://postgres-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 }