Documentation ¶
Index ¶
- type API
- type AppRegistryClient
- func (arc *AppRegistryClient) CleanupService(t *testing.T, serviceId string)
- func (arc *AppRegistryClient) CreateBasicAuthSecuredAPI(t *testing.T, targetURL, username, password string) string
- func (arc *AppRegistryClient) CreateNotSecuredAPI(t *testing.T, targetURL string) string
- func (arc *AppRegistryClient) CreateNotSecuredAPICustomHeaders(t *testing.T, targetURL string, headers map[string][]string) string
- func (arc *AppRegistryClient) CreateNotSecuredAPICustomQueryParams(t *testing.T, targetURL string, queryParams map[string][]string) string
- func (arc *AppRegistryClient) CreateOAuthSecuredAPI(t *testing.T, targetURL, authURL, clientID, clientSecret string) string
- type Basic
- type CertificateGen
- type Credentials
- type DocsObject
- type Documentation
- type ErrorResponse
- type Events
- type Oauth
- type PostServiceResponse
- type RequestParameters
- type Service
- type ServiceDetails
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type API ¶
type API struct { TargetUrl string `json:"targetUrl"` Credentials *Credentials `json:"credentials,omitempty"` Spec json.RawMessage `json:"spec,omitempty"` SpecificationUrl string `json:"specificationUrl,omitempty"` ApiType string `json:"apiType"` RequestParameters *RequestParameters `json:"requestParameters"` }
func (*API) WithBasicAuth ¶
func (*API) WithCustomHeaders ¶
func (*API) WithCustomQueryParams ¶
type AppRegistryClient ¶
type AppRegistryClient struct {
// contains filtered or unexported fields
}
func NewAppRegistryClient ¶
func NewAppRegistryClient(registryURL, application string) *AppRegistryClient
func (*AppRegistryClient) CleanupService ¶
func (arc *AppRegistryClient) CleanupService(t *testing.T, serviceId string)
func (*AppRegistryClient) CreateBasicAuthSecuredAPI ¶
func (arc *AppRegistryClient) CreateBasicAuthSecuredAPI(t *testing.T, targetURL, username, password string) string
func (*AppRegistryClient) CreateNotSecuredAPI ¶
func (arc *AppRegistryClient) CreateNotSecuredAPI(t *testing.T, targetURL string) string
func (*AppRegistryClient) CreateNotSecuredAPICustomHeaders ¶
func (*AppRegistryClient) CreateNotSecuredAPICustomQueryParams ¶
func (*AppRegistryClient) CreateOAuthSecuredAPI ¶
func (arc *AppRegistryClient) CreateOAuthSecuredAPI(t *testing.T, targetURL, authURL, clientID, clientSecret string) string
type CertificateGen ¶
type CertificateGen struct {
CommonName string `json:"commonName"`
}
type Credentials ¶
type Credentials struct { Oauth *Oauth `json:"oauth,omitempty"` Basic *Basic `json:"basic,omitempty"` CertificateGen *CertificateGen `json:"certificateGen,omitempty"` }
type DocsObject ¶
type Documentation ¶
type Documentation struct { DisplayName string `json:"displayName"` Description string `json:"description"` Type string `json:"type"` Tags []string `json:"tags,omitempty"` Docs []DocsObject `json:"docs,omitempty"` }
type ErrorResponse ¶
type Events ¶
type Events struct {
Spec json.RawMessage `json:"spec,omitempty"`
}
type PostServiceResponse ¶
type PostServiceResponse struct {
ID string `json:"id"`
}
type RequestParameters ¶
type Service ¶
type Service struct { ID string `json:"id"` Provider string `json:"provider"` Name string `json:"name"` Description string `json:"description"` ShortDescription string `json:"shortDescription,omitempty"` Identifier string `json:"identifier,omitempty"` Labels map[string]string `json:"labels,omitempty"` }
type ServiceDetails ¶
type ServiceDetails struct { Provider string `json:"provider"` Name string `json:"name"` Description string `json:"description"` ShortDescription string `json:"shortDescription,omitempty"` Identifier string `json:"identifier,omitempty"` Labels map[string]string `json:"labels,omitempty"` Api *API `json:"api,omitempty"` Events *Events `json:"events,omitempty"` Documentation *Documentation `json:"documentation,omitempty"` }
Click to show internal directories.
Click to hide internal directories.