-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
48 lines (46 loc) · 1.7 KB
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package smile_databricks_gateway
type Config struct {
DBHostname string `docopt:"--host"`
DBPort int `docopt:"--dbport"`
DBToken string `docopt:"--dbtoken"`
DBTokenComment string `docopt:"--dbtokencomment"`
DBHttpPath string `docopt:"--dbhttppath"`
DBVolumePath string `docopt:"--dbvolumepath"`
DLTPipelineName string `docopt:"--dltpipelinename"`
SMILESchema string `docopt:"--smileschema"`
RequestTable string `docopt:"--requesttable"`
SampleTable string `docopt:"--sampletable"`
MomUrl string `docopt:"--momurl"`
MomCert string `docopt:"--momcert"`
MomKey string `docopt:"--momkey"`
MomCons string `docopt:"--momcons"`
MomPw string `docopt:"--mompw"`
MomSub string `docopt:"--momsub"`
MomNrf string `docopt:"--momnrf"`
MomUrf string `docopt:"--momurf"`
MomUsf string `docopt:"--momusf"`
OTELTracerHost string `docopt:"--tracerhost"`
OTELTracerPort int `docopt:"--tracerport"`
DatadogServiceName string `docopt:"--ddservicename"`
SlackURL string `docopt:"--slackurl"`
SAML2AWSBin string `docopt:"--saml2aws"`
SAMLProfile string `docopt:"--saml2profile"`
SAMLRegion string `docopt:"--saml2region"`
AWSDestBucket string `docopt:"--awsdestbucket"`
}
var TestConfig = Config{
DBHostname: "",
DBPort: 443,
DBToken: "",
DBTokenComment: "",
DBHttpPath: "",
DBVolumePath: "",
DLTPipelineName: "",
SMILESchema: "",
RequestTable: "",
SampleTable: "",
SAML2AWSBin: "",
SAMLProfile: "",
SAMLRegion: "",
AWSDestBucket: "",
}