-
Notifications
You must be signed in to change notification settings - Fork 638
/
api_op_DescribeCachediSCSIVolumes.go
129 lines (106 loc) · 4.26 KB
/
api_op_DescribeCachediSCSIVolumes.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package storagegateway
import (
"context"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/internal/awsutil"
)
// Please also see https://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeCachediSCSIVolumesInput
type DescribeCachediSCSIVolumesInput struct {
_ struct{} `type:"structure"`
// An array of strings where each string represents the Amazon Resource Name
// (ARN) of a cached volume. All of the specified cached volumes must from the
// same gateway. Use ListVolumes to get volume ARNs for a gateway.
//
// VolumeARNs is a required field
VolumeARNs []string `type:"list" required:"true"`
}
// String returns the string representation
func (s DescribeCachediSCSIVolumesInput) String() string {
return awsutil.Prettify(s)
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *DescribeCachediSCSIVolumesInput) Validate() error {
invalidParams := aws.ErrInvalidParams{Context: "DescribeCachediSCSIVolumesInput"}
if s.VolumeARNs == nil {
invalidParams.Add(aws.NewErrParamRequired("VolumeARNs"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// A JSON object containing the following fields:
// Please also see https://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeCachediSCSIVolumesOutput
type DescribeCachediSCSIVolumesOutput struct {
_ struct{} `type:"structure"`
// An array of objects where each object contains metadata about one cached
// volume.
CachediSCSIVolumes []CachediSCSIVolume `type:"list"`
}
// String returns the string representation
func (s DescribeCachediSCSIVolumesOutput) String() string {
return awsutil.Prettify(s)
}
const opDescribeCachediSCSIVolumes = "DescribeCachediSCSIVolumes"
// DescribeCachediSCSIVolumesRequest returns a request value for making API operation for
// AWS Storage Gateway.
//
// Returns a description of the gateway volumes specified in the request. This
// operation is only supported in the cached volume gateway types.
//
// The list of gateway volumes in the request must be from one gateway. In the
// response Amazon Storage Gateway returns volume information sorted by volume
// Amazon Resource Name (ARN).
//
// // Example sending a request using DescribeCachediSCSIVolumesRequest.
// req := client.DescribeCachediSCSIVolumesRequest(params)
// resp, err := req.Send(context.TODO())
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/storagegateway-2013-06-30/DescribeCachediSCSIVolumes
func (c *Client) DescribeCachediSCSIVolumesRequest(input *DescribeCachediSCSIVolumesInput) DescribeCachediSCSIVolumesRequest {
op := &aws.Operation{
Name: opDescribeCachediSCSIVolumes,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &DescribeCachediSCSIVolumesInput{}
}
req := c.newRequest(op, input, &DescribeCachediSCSIVolumesOutput{})
return DescribeCachediSCSIVolumesRequest{Request: req, Input: input, Copy: c.DescribeCachediSCSIVolumesRequest}
}
// DescribeCachediSCSIVolumesRequest is the request type for the
// DescribeCachediSCSIVolumes API operation.
type DescribeCachediSCSIVolumesRequest struct {
*aws.Request
Input *DescribeCachediSCSIVolumesInput
Copy func(*DescribeCachediSCSIVolumesInput) DescribeCachediSCSIVolumesRequest
}
// Send marshals and sends the DescribeCachediSCSIVolumes API request.
func (r DescribeCachediSCSIVolumesRequest) Send(ctx context.Context) (*DescribeCachediSCSIVolumesResponse, error) {
r.Request.SetContext(ctx)
err := r.Request.Send()
if err != nil {
return nil, err
}
resp := &DescribeCachediSCSIVolumesResponse{
DescribeCachediSCSIVolumesOutput: r.Request.Data.(*DescribeCachediSCSIVolumesOutput),
response: &aws.Response{Request: r.Request},
}
return resp, nil
}
// DescribeCachediSCSIVolumesResponse is the response type for the
// DescribeCachediSCSIVolumes API operation.
type DescribeCachediSCSIVolumesResponse struct {
*DescribeCachediSCSIVolumesOutput
response *aws.Response
}
// SDKResponseMetdata returns the response metadata for the
// DescribeCachediSCSIVolumes request.
func (r *DescribeCachediSCSIVolumesResponse) SDKResponseMetdata() *aws.Response {
return r.response
}