1// Copyright (c) 2016, 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2// Code generated. DO NOT EDIT.
3
4package dts
5
6import (
7	"github.com/oracle/oci-go-sdk/common"
8	"net/http"
9)
10
11// DeleteTransferJobRequest wrapper for the DeleteTransferJob operation
12type DeleteTransferJobRequest struct {
13
14	// ID of the Transfer Job
15	Id *string `mandatory:"true" contributesTo:"path" name:"id"`
16
17	// Unique Oracle-assigned identifier for the request.
18	// If you need to contact Oracle about a particular request, please provide the request ID.
19	OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"`
20
21	// Metadata about the request. This information will not be transmitted to the service, but
22	// represents information that the SDK will consume to drive retry behavior.
23	RequestMetadata common.RequestMetadata
24}
25
26func (request DeleteTransferJobRequest) String() string {
27	return common.PointerString(request)
28}
29
30// HTTPRequest implements the OCIRequest interface
31func (request DeleteTransferJobRequest) HTTPRequest(method, path string) (http.Request, error) {
32	return common.MakeDefaultHTTPRequestWithTaggedStruct(method, path, request)
33}
34
35// RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
36func (request DeleteTransferJobRequest) RetryPolicy() *common.RetryPolicy {
37	return request.RequestMetadata.RetryPolicy
38}
39
40// DeleteTransferJobResponse wrapper for the DeleteTransferJob operation
41type DeleteTransferJobResponse struct {
42
43	// The underlying http response
44	RawResponse *http.Response
45
46	// Unique Oracle-assigned identifier for the request. If you need to contact
47	// Oracle about a particular request, please provide the request ID.
48	OpcRequestId *string `presentIn:"header" name:"opc-request-id"`
49}
50
51func (response DeleteTransferJobResponse) String() string {
52	return common.PointerString(response)
53}
54
55// HTTPResponse implements the OCIResponse interface
56func (response DeleteTransferJobResponse) HTTPResponse() *http.Response {
57	return response.RawResponse
58}
59