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 resourcemanager
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 (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) 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 Oracle about a
51	// particular request, please provide the request ID.
52	OpcRequestId *string `presentIn:"header" name:"opc-request-id"`
53}
54
55func (response GetWorkRequestResponse) String() string {
56	return common.PointerString(response)
57}
58
59// HTTPResponse implements the OCIResponse interface
60func (response GetWorkRequestResponse) HTTPResponse() *http.Response {
61	return response.RawResponse
62}
63