github.com/sap/cf-mta-plugin@v2.6.3+incompatible/clients/mtaclient_v2/mta_v2_client_operations.go (about) 1 package mtaclient_v2 2 3 import ( 4 models "github.com/cloudfoundry-incubator/multiapps-cli-plugin/clients/models" 5 strfmt "github.com/go-openapi/strfmt" 6 ) 7 8 // interface for all operations provided by the v2 client 9 type MtaV2ClientOperations interface { 10 GetMtas(name, namespace *string, spaceGuid string) ([]*models.Mta, error) 11 GetMtasForThisSpace(name, namespace *string) ([]*models.Mta, error) 12 } 13 14 // ResponseHeader response header 15 type ResponseHeader struct { 16 Location strfmt.URI 17 }