github.com/sacloud/iaas-api-go@v1.12.0/types/database_version.go (about) 1 // Copyright 2022-2023 The sacloud/iaas-api-go Authors 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 package types 16 17 import "strings" 18 19 // RDBMSType データベースアプライアンスでのRDBMS種別 20 type RDBMSType string 21 22 // String RDBMSTypeの文字列表現 23 func (t RDBMSType) String() string { 24 return string(t) 25 } 26 27 const ( 28 // RDBMSTypesMariaDB MariaDB 29 RDBMSTypesMariaDB = RDBMSType("MariaDB") 30 // RDBMSTypesPostgreSQL PostgreSQL 31 RDBMSTypesPostgreSQL = RDBMSType("postgres") 32 ) 33 34 // RDBMSTypeStrings 有効なRDBMS種別を示す文字列 35 var RDBMSTypeStrings = []string{ 36 strings.ToLower(RDBMSTypesMariaDB.String()), 37 strings.ToLower(RDBMSTypesPostgreSQL.String()), 38 } 39 40 // RDBMSTypeFromString 文字列からRDBMSTypeを取得 41 func RDBMSTypeFromString(s string) RDBMSType { 42 switch { 43 case s == strings.ToLower(RDBMSTypesMariaDB.String()): 44 return RDBMSTypesMariaDB 45 case strings.ToLower(s) == "postgresql": 46 return RDBMSTypesPostgreSQL 47 default: 48 return RDBMSType(s) 49 } 50 }