1// Copyright (c) 2016, 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2// Code generated. DO NOT EDIT.
3
4package core
5
6import (
7	"github.com/oracle/oci-go-sdk/common"
8	"net/http"
9)
10
11// CreateVolumeGroupBackupRequest wrapper for the CreateVolumeGroupBackup operation
12type CreateVolumeGroupBackupRequest struct {
13
14	// Request to create a new backup group of given volume group.
15	CreateVolumeGroupBackupDetails `contributesTo:"body"`
16
17	// A token that uniquely identifies a request so it can be retried in case of a timeout or
18	// server error without risk of executing that same action again. Retry tokens expire after 24
19	// hours, but can be invalidated before then due to conflicting operations (for example, if a resource
20	// has been deleted and purged from the system, then a retry of the original creation request
21	// may be rejected).
22	OpcRetryToken *string `mandatory:"false" contributesTo:"header" name:"opc-retry-token"`
23
24	// Unique Oracle-assigned identifier for the request.
25	// If you need to contact Oracle about a particular request, please provide the request ID.
26	OpcRequestId *string `mandatory:"false" contributesTo:"header" name:"opc-request-id"`
27
28	// Metadata about the request. This information will not be transmitted to the service, but
29	// represents information that the SDK will consume to drive retry behavior.
30	RequestMetadata common.RequestMetadata
31}
32
33func (request CreateVolumeGroupBackupRequest) String() string {
34	return common.PointerString(request)
35}
36
37// HTTPRequest implements the OCIRequest interface
38func (request CreateVolumeGroupBackupRequest) HTTPRequest(method, path string) (http.Request, error) {
39	return common.MakeDefaultHTTPRequestWithTaggedStruct(method, path, request)
40}
41
42// RetryPolicy implements the OCIRetryableRequest interface. This retrieves the specified retry policy.
43func (request CreateVolumeGroupBackupRequest) RetryPolicy() *common.RetryPolicy {
44	return request.RequestMetadata.RetryPolicy
45}
46
47// CreateVolumeGroupBackupResponse wrapper for the CreateVolumeGroupBackup operation
48type CreateVolumeGroupBackupResponse struct {
49
50	// The underlying http response
51	RawResponse *http.Response
52
53	// The VolumeGroupBackup instance
54	VolumeGroupBackup `presentIn:"body"`
55
56	// For optimistic concurrency control. See `if-match`.
57	Etag *string `presentIn:"header" name:"etag"`
58
59	// Unique Oracle-assigned identifier for the request. If you need to contact
60	// Oracle about a particular request, please provide the request ID.
61	OpcRequestId *string `presentIn:"header" name:"opc-request-id"`
62}
63
64func (response CreateVolumeGroupBackupResponse) String() string {
65	return common.PointerString(response)
66}
67
68// HTTPResponse implements the OCIResponse interface
69func (response CreateVolumeGroupBackupResponse) HTTPResponse() *http.Response {
70	return response.RawResponse
71}
72