2022-06-01 09:23:56 +00:00
|
|
|
package dnsproviders
|
|
|
|
|
|
|
|
func getDNSTele3() Provider {
|
|
|
|
return Provider{
|
2023-01-12 06:25:43 +00:00
|
|
|
Title: "dns_tele3",
|
2023-01-13 00:09:26 +00:00
|
|
|
Type: "object",
|
2023-01-12 06:25:43 +00:00
|
|
|
AdditionalProperties: false,
|
|
|
|
Required: []string{
|
|
|
|
"TELE3_Key",
|
|
|
|
"TELE3_Secret",
|
|
|
|
},
|
|
|
|
Properties: map[string]providerField{
|
|
|
|
"TELE3_Key": {
|
|
|
|
Title: "key",
|
|
|
|
Type: "string",
|
|
|
|
MinLength: 1,
|
2022-06-01 09:23:56 +00:00
|
|
|
},
|
2023-01-12 06:25:43 +00:00
|
|
|
"TELE3_Secret": {
|
|
|
|
Title: "secret",
|
|
|
|
Type: "string",
|
|
|
|
MinLength: 1,
|
|
|
|
IsSecret: true,
|
2022-06-01 09:23:56 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|