* chore: initial push to be able to work together * chore: add missing wait folder * chore: add missing folders * chore: cleanup alpha branch * feat: mssql alpha instance (#2) * fix: remove unused attribute types and functions from backup models * fix: update API client references to use sqlserverflexalpha package * fix: update package references to use sqlserverflexalpha and modify user data source model * fix: add sqlserverflexalpha user data source to provider * fix: add sqlserverflexalpha user resource and update related functionality * chore: add stackit_sqlserverflexalpha_user resource and instance_id variable * fix: refactor sqlserverflexalpha user resource and enhance schema with status and default_database --------- Co-authored-by: Andre Harms <andre.harms@stackit.cloud> Co-authored-by: Marcel S. Henselin <marcel.henselin@stackit.cloud> * feat: add sqlserver instance * chore: fixing tests * chore: update docs --------- Co-authored-by: Marcel S. Henselin <marcel.henselin@stackit.cloud> Co-authored-by: Andre Harms <andre.harms@stackit.cloud>
41 lines
1,012 B
Go
41 lines
1,012 B
Go
/*
|
|
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
|
|
}
|