Interface represents the set of methods required for a complete resource provider plugin. Longer term, we could remove this interface in favor of it's component parts (Unconfigured, Configured) for added safety and clarity.
| 158 | // provider plugin. Longer term, we could remove this interface in favor of it's |
| 159 | // component parts (Unconfigured, Configured) for added safety and clarity. |
| 160 | type Interface interface { |
| 161 | Configured |
| 162 | } |
| 163 | |
| 164 | // GetProviderSchemaResponse is the return type for GetProviderSchema, and |
| 165 | // should only be used when handling a value for that method. The handling of |
no outgoing calls
no test coverage detected