(name string)
| 1733 | } |
| 1734 | |
| 1735 | func classifySandboxNetworkMutationPath(name string) (configSetValueKind, bool, bool) { |
| 1736 | switch name { |
| 1737 | case "allow_public_ingress", "allow_outbound", configRequiredKey: |
| 1738 | return configSetBool, false, true |
| 1739 | case "allow_list", "deny_list": |
| 1740 | return configSetStringSlice, false, true |
| 1741 | default: |
| 1742 | return configSetString, false, false |
| 1743 | } |
| 1744 | } |
| 1745 | |
| 1746 | func classifySandboxDaytonaMutationPath(name string) (configSetValueKind, bool, bool) { |
| 1747 | switch name { |
no outgoing calls
no test coverage detected