| 8 | ) |
| 9 | |
| 10 | type Interface interface { |
| 11 | structs.Provider |
| 12 | |
| 13 | // raw http |
| 14 | Get(string, stdsdk.RequestOptions, interface{}) error |
| 15 | |
| 16 | // backwards compatibility |
| 17 | AppParametersGet(string) (map[string]string, error) |
| 18 | AppParametersSet(string, map[string]string) error |
| 19 | BuildCreateUpload(string, io.Reader, structs.BuildCreateOptions) (*structs.Build, error) |
| 20 | BuildImportMultipart(string, io.Reader) (*structs.Build, error) |
| 21 | BuildImportUrl(string, io.Reader) (*structs.Build, error) |
| 22 | CertificateCreateClassic(string, string, structs.CertificateCreateOptions) (*structs.Certificate, error) |
| 23 | EnvironmentSet(string, []byte) (*structs.Release, error) |
| 24 | EnvironmentUnset(string, string) (*structs.Release, error) |
| 25 | FormationGet(string) (structs.Services, error) |
| 26 | FormationUpdate(string, string, structs.ServiceUpdateOptions) error |
| 27 | InstanceShellClassic(string, io.ReadWriter, structs.InstanceShellOptions) (int, error) |
| 28 | ProcessRunAttached(string, string, io.ReadWriter, int, structs.ProcessRunOptions) (int, error) |
| 29 | ProcessRunDetached(string, string, structs.ProcessRunOptions) (string, error) |
| 30 | RackHost(rackOrgSlug string) (structs.RackData, error) |
| 31 | RegistryRemoveClassic(string) error |
| 32 | ResourceCreateClassic(string, structs.ResourceCreateOptions) (*structs.Resource, error) |
| 33 | ResourceUpdateClassic(string, structs.ResourceUpdateOptions) (*structs.Resource, error) |
| 34 | SystemJwtToken(opts structs.SystemJwtOptions) (*structs.SystemJwt, error) |
| 35 | SystemResourceCreateClassic(string, structs.ResourceCreateOptions) (*structs.Resource, error) |
| 36 | SystemResourceDeleteClassic(string) error |
| 37 | SystemResourceGetClassic(string) (*structs.Resource, error) |
| 38 | SystemResourceLinkClassic(string, string) (*structs.Resource, error) |
| 39 | SystemResourceListClassic() (structs.Resources, error) |
| 40 | SystemResourceTypesClassic() (structs.ResourceTypes, error) |
| 41 | SystemResourceUnlinkClassic(string, string) (*structs.Resource, error) |
| 42 | SystemResourceUpdateClassic(string, structs.ResourceUpdateOptions) (*structs.Resource, error) |
| 43 | } |
no outgoing calls
no test coverage detected