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) GenerateLogFileDownloadLink ¶
func (c *Client) GenerateLogFileDownloadLink(ctx context.Context, req *GenerateLogFileDownloadLinkRequest) (*GenerateLogFileDownloadLinkResult, error)
func (*Client) ListLogFiles ¶
func (c *Client) ListLogFiles(ctx context.Context, req *ListLogFilesRequest) (*ListLogFilesResult, error)
type GenerateLogFileDownloadLinkRequest ¶
type GenerateLogFileDownloadLinkRequest struct { client.BaseRequest FileName string }
func (*GenerateLogFileDownloadLinkRequest) Method ¶
func (r *GenerateLogFileDownloadLinkRequest) Method() string
func (*GenerateLogFileDownloadLinkRequest) ResourcePath ¶
func (r *GenerateLogFileDownloadLinkRequest) ResourcePath() string
func (*GenerateLogFileDownloadLinkRequest) Validate ¶
func (r *GenerateLogFileDownloadLinkRequest) Validate() error
type GenerateLogFileDownloadLinkResult ¶
type GenerateLogFileDownloadLinkResult struct { client.ResultMetadata LogFileDownloadLink string `json:"logFileDownloadLink"` }
func (*GenerateLogFileDownloadLinkResult) ValidateResultMetadata ¶
func (gr *GenerateLogFileDownloadLinkResult) ValidateResultMetadata() error
type ListLogFilesRequest ¶
type ListLogFilesRequest struct { client.BaseRequest Marker string Limit int }
func (*ListLogFilesRequest) Method ¶
func (r *ListLogFilesRequest) Method() string
func (*ListLogFilesRequest) RequestParams ¶
func (r *ListLogFilesRequest) RequestParams() map[string]string
func (*ListLogFilesRequest) ResourcePath ¶
func (r *ListLogFilesRequest) ResourcePath() string
func (*ListLogFilesRequest) Validate ¶
func (r *ListLogFilesRequest) Validate() error
type ListLogFilesResult ¶
type ListLogFilesResult struct { client.ResultMetadata Logs []Log `json:"data"` Marker string `json:"marker"` }
Click to show internal directories.
Click to hide internal directories.