1// Copyright (c) 2016, 2018, 2020, Oracle and/or its affiliates.  All rights reserved.
2// This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
3// Code generated. DO NOT EDIT.
4
5package applicationmigration
6
7import (
8	"github.com/oracle/oci-go-sdk/common"
9	"net/http"
10)
11
12// GetWorkRequestRequest wrapper for the GetWorkRequest operation
13type GetWorkRequestRequest struct {
14
15	// The OCID of the work request.
16	WorkRequestId *string `mandatory:"true" contributesTo:"path" name:"workRequestId"`
17
18	// Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a
19	// particular request, please provide the request ID.
20	OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"`
21
22	// Metadata about the request. This information will not be transmitted to the service, but
23	// represents information that the SDK will consume to drive retry behavior.
24	RequestMetadata common.RequestMetadata
25}
26
27func (request GetWorkRequestRequest) String() string {
28	return common.PointerString(request)
29}
30
31// HTTPRequest implements the OCIRequest interface
32func (request GetWorkRequestRequest) HTTPRequest(method, path string) (http.Request, error) {
33	return common.MakeDefaultHTTPRequestWithTaggedStruct(method, path, request)
34}
35
36// RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
37func (request GetWorkRequestRequest) RetryPolicy() *common.RetryPolicy {
38	return request.RequestMetadata.RetryPolicy
39}
40
41// GetWorkRequestResponse wrapper for the GetWorkRequest operation
42type GetWorkRequestResponse struct {
43
44	// The underlying http response
45	RawResponse *http.Response
46
47	// The WorkRequest instance
48	WorkRequest `presentIn:"body"`
49
50	// Unique Oracle-assigned identifier for the request. If you need to contact
51	// Oracle about a particular request, please provide the request ID.
52	OpcRequestId *string `presentIn:"header" name:"opc-request-id"`
53
54	// For optimistic concurrency control. See `if-match`.
55	Etag *string `presentIn:"header" name:"etag"`
56}
57
58func (response GetWorkRequestResponse) String() string {
59	return common.PointerString(response)
60}
61
62// HTTPResponse implements the OCIResponse interface
63func (response GetWorkRequestResponse) HTTPResponse() *http.Response {
64	return response.RawResponse
65}
66