// Copyright (c) 2016, 2018, 2019, Oracle and/or its affiliates. All rights reserved. // Code generated. DO NOT EDIT. package objectstorage import ( "github.com/oracle/oci-go-sdk/common" "net/http" ) // ListWorkRequestErrorsRequest wrapper for the ListWorkRequestErrors operation type ListWorkRequestErrorsRequest struct { // The ID of the asynchronous request. WorkRequestId *string `mandatory:"true" contributesTo:"path" name:"workRequestId"` // The page at which to start retrieving results. Page *string `mandatory:"false" contributesTo:"query" name:"page"` // The maximum number of items to return. Limit *int `mandatory:"false" contributesTo:"query" name:"limit"` // The client request ID for tracing. OpcClientRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-client-request-id"` // Metadata about the request. This information will not be transmitted to the service, but // represents information that the SDK will consume to drive retry behavior. RequestMetadata common.RequestMetadata } func (request ListWorkRequestErrorsRequest) String() string { return common.PointerString(request) } // HTTPRequest implements the OCIRequest interface func (request ListWorkRequestErrorsRequest) HTTPRequest(method, path string) (http.Request, error) { return common.MakeDefaultHTTPRequestWithTaggedStruct(method, path, request) } // RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy. func (request ListWorkRequestErrorsRequest) RetryPolicy() *common.RetryPolicy { return request.RequestMetadata.RetryPolicy } // ListWorkRequestErrorsResponse wrapper for the ListWorkRequestErrors operation type ListWorkRequestErrorsResponse struct { // The underlying http response RawResponse *http.Response // A list of []WorkRequestError instances Items []WorkRequestError `presentIn:"body"` // Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular // request, provide this request ID. OpcRequestId *string `presentIn:"header" name:"opc-request-id"` // Paginating a list of work request errors. // In the GET request, set the limit to the number of work request errors that you want returned in the // response. If the opc-next-page header appears in the response, then this is a partial list and there are // additional work request errors to get. Include the header's value as the `page` parameter in the subsequent // GET request to get the next batch of work request errors. Repeat this process to retrieve the entire list of work // request errors. OpcNextPage *string `presentIn:"header" name:"opc-next-page"` // Echoes back the value passed in the opc-client-request-id header, for use by clients when debugging. OpcClientRequestId *string `presentIn:"header" name:"opc-client-request-id"` } func (response ListWorkRequestErrorsResponse) String() string { return common.PointerString(response) } // HTTPResponse implements the OCIResponse interface func (response ListWorkRequestErrorsResponse) HTTPResponse() *http.Response { return response.RawResponse }