Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
func (*Client) GetSupportBundleUploadURI ¶
type GraphQLErrors ¶ added in v0.12.1
type GraphQLErrors struct {
Errors []Error
}
func (GraphQLErrors) Error ¶ added in v0.12.1
func (e GraphQLErrors) Error() string
type SupportBundle ¶
type SupportBundleRequestResult ¶
type SupportBundleRequestResult struct {
UploadSupportBundle `json:"uploadSupportBundle,omitempty"`
}
type SupportBundleResponse ¶
type SupportBundleResponse struct { Data *SupportBundleResult `json:"data,omitempty"` Errors []Error `json:"errors,omitempty"` }
type SupportBundleResult ¶
type SupportBundleResult struct {
SupportBundle `json:"supportBundleSpec"`
}
type SupportBundleSpec ¶
type SupportBundleSpec struct {
CustomerID string
}
type SupportBundleUploadResponse ¶
type SupportBundleUploadResponse struct { Data *SupportBundleRequestResult `json:"data,omitempty"` Errors []Error `json:"errors,omitempty"` }
type UploadSupportBundle ¶
type UploadSupportBundle struct { UploadURI string `json:"uploadUri,omitempty"` UploadedSupportBundle `json:"supportBundle,omitempty"` }
type UploadedSupportBundle ¶
type UploadedSupportBundle struct {
ID string `json:"id,omitempty"`
}
Click to show internal directories.
Click to hide internal directories.