Skip to content

Commit 7e7916f

Browse files
fix: add objectstoragemanagement
1 parent d0b350a commit 7e7916f

File tree

1 file changed

+21
-19
lines changed

1 file changed

+21
-19
lines changed

shared/fileconfiguration/fileconfiguration.go

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,34 @@ package fileconfiguration
33
import (
44
"crypto/x509"
55
"fmt"
6-
"github.com/ionos-cloud/sdk-go-bundle/shared"
76
"gopkg.in/yaml.v3"
87
"net/http"
98
"os"
109
"path/filepath"
10+
11+
"github.com/ionos-cloud/sdk-go-bundle/shared"
1112
)
1213

1314
const (
14-
Cloud = "cloud"
15-
Mariadb = "mariadb"
16-
Logging = "logging"
17-
PSQL = "psql"
18-
Mongo = "mongo"
19-
Monitoring = "monitoring"
20-
Cert = "cert"
21-
ContainerRegistry = "containerregistry"
22-
Dataplatform = "dataplatform"
23-
DNS = "dns"
24-
Autoscaling = "autoscaling"
25-
Kafka = "kafka"
26-
CDN = "cdn"
27-
APIGateway = "apigateway"
28-
VPN = "vpn"
29-
InMemoryDB = "inmemorydb"
30-
ObjectStorage = "objectstorage"
31-
NFS = "nfs"
15+
Cloud = "cloud"
16+
Mariadb = "mariadb"
17+
Logging = "logging"
18+
PSQL = "psql"
19+
Mongo = "mongo"
20+
Monitoring = "monitoring"
21+
Cert = "cert"
22+
ContainerRegistry = "containerregistry"
23+
Dataplatform = "dataplatform"
24+
DNS = "dns"
25+
Autoscaling = "autoscaling"
26+
Kafka = "kafka"
27+
CDN = "cdn"
28+
APIGateway = "apigateway"
29+
VPN = "vpn"
30+
InMemoryDB = "inmemorydb"
31+
ObjectStorage = "objectstorage"
32+
ObjectStorageManagement = "objectstoragemanagement"
33+
NFS = "nfs"
3234
)
3335

3436
// ClientOverrideOptions is a struct that represents the client override options

0 commit comments

Comments
 (0)