2022-05-11 22:47:31 +00:00
|
|
|
package dnsproviders
|
|
|
|
|
|
|
|
func getDNSCyon() Provider {
|
|
|
|
return Provider{
|
2023-01-12 06:25:43 +00:00
|
|
|
Title: "dns_cyon",
|
|
|
|
Type: "object",
|
|
|
|
AdditionalProperties: false,
|
|
|
|
Required: []string{
|
|
|
|
"CY_Username",
|
|
|
|
"CY_Password",
|
|
|
|
"CY_OTP_Secret",
|
|
|
|
},
|
|
|
|
Properties: map[string]providerField{
|
|
|
|
"CY_Username": {
|
|
|
|
Title: "user",
|
|
|
|
Type: "string",
|
|
|
|
MinLength: 1,
|
2022-05-11 22:47:31 +00:00
|
|
|
},
|
2023-01-12 06:25:43 +00:00
|
|
|
"CY_Password": {
|
|
|
|
Title: "password",
|
|
|
|
Type: "string",
|
|
|
|
MinLength: 1,
|
|
|
|
IsSecret: true,
|
2022-05-11 22:47:31 +00:00
|
|
|
},
|
2023-01-12 06:25:43 +00:00
|
|
|
"CY_OTP_Secret": {
|
|
|
|
Title: "otp-secret",
|
|
|
|
Type: "string",
|
|
|
|
MinLength: 1,
|
|
|
|
IsSecret: true,
|
2022-05-11 22:47:31 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|