1// Copyright (c) 2016, 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2// Code generated. DO NOT EDIT.
3
4package objectstorage
5
6import (
7	"github.com/oracle/oci-go-sdk/common"
8	"net/http"
9)
10
11// AbortMultipartUploadRequest wrapper for the AbortMultipartUpload operation
12type AbortMultipartUploadRequest struct {
13
14	// The Object Storage namespace used for the request.
15	NamespaceName *string `mandatory:"true" contributesTo:"path" name:"namespaceName"`
16
17	// The name of the bucket. Avoid entering confidential information.
18	// Example: `my-new-bucket1`
19	BucketName *string `mandatory:"true" contributesTo:"path" name:"bucketName"`
20
21	// The name of the object. Avoid entering confidential information.
22	// Example: `test/object1.log`
23	ObjectName *string `mandatory:"true" contributesTo:"path" name:"objectName"`
24
25	// The upload ID for a multipart upload.
26	UploadId *string `mandatory:"true" contributesTo:"query" name:"uploadId"`
27
28	// The client request ID for tracing.
29	OpcClientRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-client-request-id"`
30
31	// Metadata about the request. This information will not be transmitted to the service, but
32	// represents information that the SDK will consume to drive retry behavior.
33	RequestMetadata common.RequestMetadata
34}
35
36func (request AbortMultipartUploadRequest) String() string {
37	return common.PointerString(request)
38}
39
40// HTTPRequest implements the OCIRequest interface
41func (request AbortMultipartUploadRequest) HTTPRequest(method, path string) (http.Request, error) {
42	return common.MakeDefaultHTTPRequestWithTaggedStruct(method, path, request)
43}
44
45// RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
46func (request AbortMultipartUploadRequest) RetryPolicy() *common.RetryPolicy {
47	return request.RequestMetadata.RetryPolicy
48}
49
50// AbortMultipartUploadResponse wrapper for the AbortMultipartUpload operation
51type AbortMultipartUploadResponse struct {
52
53	// The underlying http response
54	RawResponse *http.Response
55
56	// Echoes back the value passed in the opc-client-request-id header, for use by clients when debugging.
57	OpcClientRequestId *string `presentIn:"header" name:"opc-client-request-id"`
58
59	// Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular
60	// request, provide this request ID.
61	OpcRequestId *string `presentIn:"header" name:"opc-request-id"`
62}
63
64func (response AbortMultipartUploadResponse) String() string {
65	return common.PointerString(response)
66}
67
68// HTTPResponse implements the OCIResponse interface
69func (response AbortMultipartUploadResponse) HTTPResponse() *http.Response {
70	return response.RawResponse
71}
72