Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Error ¶
type Error struct {
/* code
*/
Code int64 `json:"code,omitempty"`
/* message
Required: true
*/
Message *string `json:"message"`
}
Error error
swagger:model Error
type ServiceManagerConnectionCreateRequest ¶
type ServiceManagerConnectionCreateRequest struct {
/* Connection id
Required: true
*/
ConnectionID *string `json:"connection_id"`
/* key value map with connection details (Service manager won't interpret the details of the map it will send this back to the requester as is)
*/
Details map[string]interface{} `json:"details,omitempty"`
}
ServiceManagerConnectionCreateRequest service manager connection create request
swagger:model ServiceManagerConnectionCreateRequest
type ServiceManagerConnectionResponse ¶
type ServiceManagerConnectionResponse struct {
/* key value map with connection details (Service manager won't interpret the details of the map it will send this back to the requester as is)
*/
Details map[string]interface{} `json:"details,omitempty"`
/* Processing type
Required: true
*/
ProcessingType *string `json:"processing_type"`
/* status
Required: true
*/
Status *string `json:"status"`
}
ServiceManagerConnectionResponse service manager connection response
swagger:model ServiceManagerConnectionResponse
type ServiceManagerWorkspaceCreateRequest ¶
type ServiceManagerWorkspaceCreateRequest struct {
/* key value map with connection details (Service manager won't interpret the details of the map it will send this back to the requester as is)
*/
Details map[string]interface{} `json:"details,omitempty"`
/* Workspace id
Required: true
*/
WorkspaceID *string `json:"workspace_id"`
}
ServiceManagerWorkspaceCreateRequest service manager workspace create request
swagger:model ServiceManagerWorkspaceCreateRequest
type ServiceManagerWorkspaceResponse ¶
type ServiceManagerWorkspaceResponse struct {
/* key value map with connection details (Service manager won't interpret the details of the map it will send this back to the requester as is)
*/
Details map[string]interface{} `json:"details,omitempty"`
/* Processing type
Required: true
*/
ProcessingType *string `json:"processing_type"`
/* status
Required: true
*/
Status *string `json:"status"`
}
ServiceManagerWorkspaceResponse service manager workspace response
swagger:model ServiceManagerWorkspaceResponse
type StatusDiagnostic ¶
type StatusDiagnostic struct {
/* Full description of the diagnostic (e.g. This diagnostic attempts to connect to a MySQL Server using the configured credentials)
Required: true
*/
Description *string `json:"description"`
/* Contains any detail that informs the success or failure of the diagnostic that was perfomed.
Required: true
*/
Message *string `json:"message"`
/* Name of the diagnostic (e.g. Credential verification)
Required: true
*/
Name *string `json:"name"`
/* Status of the diagnostic
Required: true
*/
Status *string `json:"status"`
}
StatusDiagnostic status diagnostic
swagger:model StatusDiagnostic
type StatusResponse ¶
type StatusResponse struct {
/* Optional array of diagnostics performed by the SIDECAR during ping
*/
Diagnostics []*StatusDiagnostic `json:"diagnostics,omitempty"`
/* Contains any detail that informs the success or failure of the diagnostic that was performed
Required: true
*/
Message *string `json:"message"`
/* Processing type
Required: true
*/
ProcessingType *string `json:"processing_type"`
/* Contains information about the service type
*/
ServiceType string `json:"service_type,omitempty"`
/* Status of the ping request. If the SIDECAR implementation is confident that it can perform all functions correctly, it should return "successful". Otherwise, "failed"
Required: true
*/
Status *string `json:"status"`
}
StatusResponse status response
swagger:model StatusResponse