-
Notifications
You must be signed in to change notification settings - Fork 636
/
api_op_UpdateRulesOfIpGroup.go
125 lines (101 loc) · 3.37 KB
/
api_op_UpdateRulesOfIpGroup.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
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package workspaces
import (
"context"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/internal/awsutil"
)
type UpdateRulesOfIpGroupInput struct {
_ struct{} `type:"structure"`
// The identifier of the group.
//
// GroupId is a required field
GroupId *string `type:"string" required:"true"`
// One or more rules.
//
// UserRules is a required field
UserRules []IpRuleItem `type:"list" required:"true"`
}
// String returns the string representation
func (s UpdateRulesOfIpGroupInput) String() string {
return awsutil.Prettify(s)
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *UpdateRulesOfIpGroupInput) Validate() error {
invalidParams := aws.ErrInvalidParams{Context: "UpdateRulesOfIpGroupInput"}
if s.GroupId == nil {
invalidParams.Add(aws.NewErrParamRequired("GroupId"))
}
if s.UserRules == nil {
invalidParams.Add(aws.NewErrParamRequired("UserRules"))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
type UpdateRulesOfIpGroupOutput struct {
_ struct{} `type:"structure"`
}
// String returns the string representation
func (s UpdateRulesOfIpGroupOutput) String() string {
return awsutil.Prettify(s)
}
const opUpdateRulesOfIpGroup = "UpdateRulesOfIpGroup"
// UpdateRulesOfIpGroupRequest returns a request value for making API operation for
// Amazon WorkSpaces.
//
// Replaces the current rules of the specified IP access control group with
// the specified rules.
//
// // Example sending a request using UpdateRulesOfIpGroupRequest.
// req := client.UpdateRulesOfIpGroupRequest(params)
// resp, err := req.Send(context.TODO())
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/UpdateRulesOfIpGroup
func (c *Client) UpdateRulesOfIpGroupRequest(input *UpdateRulesOfIpGroupInput) UpdateRulesOfIpGroupRequest {
op := &aws.Operation{
Name: opUpdateRulesOfIpGroup,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &UpdateRulesOfIpGroupInput{}
}
req := c.newRequest(op, input, &UpdateRulesOfIpGroupOutput{})
return UpdateRulesOfIpGroupRequest{Request: req, Input: input, Copy: c.UpdateRulesOfIpGroupRequest}
}
// UpdateRulesOfIpGroupRequest is the request type for the
// UpdateRulesOfIpGroup API operation.
type UpdateRulesOfIpGroupRequest struct {
*aws.Request
Input *UpdateRulesOfIpGroupInput
Copy func(*UpdateRulesOfIpGroupInput) UpdateRulesOfIpGroupRequest
}
// Send marshals and sends the UpdateRulesOfIpGroup API request.
func (r UpdateRulesOfIpGroupRequest) Send(ctx context.Context) (*UpdateRulesOfIpGroupResponse, error) {
r.Request.SetContext(ctx)
err := r.Request.Send()
if err != nil {
return nil, err
}
resp := &UpdateRulesOfIpGroupResponse{
UpdateRulesOfIpGroupOutput: r.Request.Data.(*UpdateRulesOfIpGroupOutput),
response: &aws.Response{Request: r.Request},
}
return resp, nil
}
// UpdateRulesOfIpGroupResponse is the response type for the
// UpdateRulesOfIpGroup API operation.
type UpdateRulesOfIpGroupResponse struct {
*UpdateRulesOfIpGroupOutput
response *aws.Response
}
// SDKResponseMetdata returns the response metadata for the
// UpdateRulesOfIpGroup request.
func (r *UpdateRulesOfIpGroupResponse) SDKResponseMetdata() *aws.Response {
return r.response
}