-
Notifications
You must be signed in to change notification settings - Fork 639
/
api_op_ListV2LoggingLevels.go
173 lines (139 loc) · 5.19 KB
/
api_op_ListV2LoggingLevels.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package iot
import (
"context"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/internal/awsutil"
"github.com/aws/aws-sdk-go-v2/private/protocol"
)
type ListV2LoggingLevelsInput struct {
_ struct{} `type:"structure"`
// The maximum number of results to return at one time.
MaxResults *int64 `location:"querystring" locationName:"maxResults" min:"1" type:"integer"`
// The token used to get the next set of results, or null if there are no additional
// results.
NextToken *string `location:"querystring" locationName:"nextToken" type:"string"`
// The type of resource for which you are configuring logging. Must be THING_Group.
TargetType LogTargetType `location:"querystring" locationName:"targetType" type:"string" enum:"true"`
}
// String returns the string representation
func (s ListV2LoggingLevelsInput) String() string {
return awsutil.Prettify(s)
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *ListV2LoggingLevelsInput) Validate() error {
invalidParams := aws.ErrInvalidParams{Context: "ListV2LoggingLevelsInput"}
if s.MaxResults != nil && *s.MaxResults < 1 {
invalidParams.Add(aws.NewErrParamMinValue("MaxResults", 1))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// MarshalFields encodes the AWS API shape using the passed in protocol encoder.
func (s ListV2LoggingLevelsInput) MarshalFields(e protocol.FieldEncoder) error {
e.SetValue(protocol.HeaderTarget, "Content-Type", protocol.StringValue("application/json"), protocol.Metadata{})
if s.MaxResults != nil {
v := *s.MaxResults
metadata := protocol.Metadata{}
e.SetValue(protocol.QueryTarget, "maxResults", protocol.Int64Value(v), metadata)
}
if s.NextToken != nil {
v := *s.NextToken
metadata := protocol.Metadata{}
e.SetValue(protocol.QueryTarget, "nextToken", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata)
}
if len(s.TargetType) > 0 {
v := s.TargetType
metadata := protocol.Metadata{}
e.SetValue(protocol.QueryTarget, "targetType", protocol.QuotedValue{ValueMarshaler: v}, metadata)
}
return nil
}
type ListV2LoggingLevelsOutput struct {
_ struct{} `type:"structure"`
// The logging configuration for a target.
LogTargetConfigurations []LogTargetConfiguration `locationName:"logTargetConfigurations" type:"list"`
// The token used to get the next set of results, or null if there are no additional
// results.
NextToken *string `locationName:"nextToken" type:"string"`
}
// String returns the string representation
func (s ListV2LoggingLevelsOutput) String() string {
return awsutil.Prettify(s)
}
// MarshalFields encodes the AWS API shape using the passed in protocol encoder.
func (s ListV2LoggingLevelsOutput) MarshalFields(e protocol.FieldEncoder) error {
if s.LogTargetConfigurations != nil {
v := s.LogTargetConfigurations
metadata := protocol.Metadata{}
ls0 := e.List(protocol.BodyTarget, "logTargetConfigurations", metadata)
ls0.Start()
for _, v1 := range v {
ls0.ListAddFields(v1)
}
ls0.End()
}
if s.NextToken != nil {
v := *s.NextToken
metadata := protocol.Metadata{}
e.SetValue(protocol.BodyTarget, "nextToken", protocol.QuotedValue{ValueMarshaler: protocol.StringValue(v)}, metadata)
}
return nil
}
const opListV2LoggingLevels = "ListV2LoggingLevels"
// ListV2LoggingLevelsRequest returns a request value for making API operation for
// AWS IoT.
//
// Lists logging levels.
//
// // Example sending a request using ListV2LoggingLevelsRequest.
// req := client.ListV2LoggingLevelsRequest(params)
// resp, err := req.Send(context.TODO())
// if err == nil {
// fmt.Println(resp)
// }
func (c *Client) ListV2LoggingLevelsRequest(input *ListV2LoggingLevelsInput) ListV2LoggingLevelsRequest {
op := &aws.Operation{
Name: opListV2LoggingLevels,
HTTPMethod: "GET",
HTTPPath: "/v2LoggingLevel",
}
if input == nil {
input = &ListV2LoggingLevelsInput{}
}
req := c.newRequest(op, input, &ListV2LoggingLevelsOutput{})
return ListV2LoggingLevelsRequest{Request: req, Input: input, Copy: c.ListV2LoggingLevelsRequest}
}
// ListV2LoggingLevelsRequest is the request type for the
// ListV2LoggingLevels API operation.
type ListV2LoggingLevelsRequest struct {
*aws.Request
Input *ListV2LoggingLevelsInput
Copy func(*ListV2LoggingLevelsInput) ListV2LoggingLevelsRequest
}
// Send marshals and sends the ListV2LoggingLevels API request.
func (r ListV2LoggingLevelsRequest) Send(ctx context.Context) (*ListV2LoggingLevelsResponse, error) {
r.Request.SetContext(ctx)
err := r.Request.Send()
if err != nil {
return nil, err
}
resp := &ListV2LoggingLevelsResponse{
ListV2LoggingLevelsOutput: r.Request.Data.(*ListV2LoggingLevelsOutput),
response: &aws.Response{Request: r.Request},
}
return resp, nil
}
// ListV2LoggingLevelsResponse is the response type for the
// ListV2LoggingLevels API operation.
type ListV2LoggingLevelsResponse struct {
*ListV2LoggingLevelsOutput
response *aws.Response
}
// SDKResponseMetdata returns the response metadata for the
// ListV2LoggingLevels request.
func (r *ListV2LoggingLevelsResponse) SDKResponseMetdata() *aws.Response {
return r.response
}