(v string)
| 623 | } |
| 624 | |
| 625 | func apiTLSPolicyFor(v string) *string { |
| 626 | switch v { |
| 627 | case "recommended": |
| 628 | return auth0.String(customDomainTLSPolicyRecommended) |
| 629 | case "compatible": |
| 630 | return auth0.String(customDomainTLSPolicyCompatible) |
| 631 | default: |
| 632 | return auth0.String(v) |
| 633 | } |
| 634 | } |
| 635 | |
| 636 | func (c *cli) customDomainsPickerOptions(ctx context.Context) (pickerOptions, error) { |
| 637 | var opts pickerOptions |
no outgoing calls