-
Notifications
You must be signed in to change notification settings - Fork 636
/
api_op_AssociateTeamMember.go
159 lines (130 loc) · 5.03 KB
/
api_op_AssociateTeamMember.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
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package codestar
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/codestar-2017-04-19/AssociateTeamMemberRequest
type AssociateTeamMemberInput struct {
_ struct{} `type:"structure"`
// A user- or system-generated token that identifies the entity that requested
// the team member association to the project. This token can be used to repeat
// the request.
ClientRequestToken *string `locationName:"clientRequestToken" min:"1" type:"string"`
// The ID of the project to which you will add the IAM user.
//
// ProjectId is a required field
ProjectId *string `locationName:"projectId" min:"2" type:"string" required:"true"`
// The AWS CodeStar project role that will apply to this user. This role determines
// what actions a user can take in an AWS CodeStar project.
//
// ProjectRole is a required field
ProjectRole *string `locationName:"projectRole" type:"string" required:"true"`
// Whether the team member is allowed to use an SSH public/private key pair
// to remotely access project resources, for example Amazon EC2 instances.
RemoteAccessAllowed *bool `locationName:"remoteAccessAllowed" type:"boolean"`
// The Amazon Resource Name (ARN) for the IAM user you want to add to the AWS
// CodeStar project.
//
// UserArn is a required field
UserArn *string `locationName:"userArn" min:"32" type:"string" required:"true"`
}
// String returns the string representation
func (s AssociateTeamMemberInput) String() string {
return awsutil.Prettify(s)
}
// Validate inspects the fields of the type to determine if they are valid.
func (s *AssociateTeamMemberInput) Validate() error {
invalidParams := aws.ErrInvalidParams{Context: "AssociateTeamMemberInput"}
if s.ClientRequestToken != nil && len(*s.ClientRequestToken) < 1 {
invalidParams.Add(aws.NewErrParamMinLen("ClientRequestToken", 1))
}
if s.ProjectId == nil {
invalidParams.Add(aws.NewErrParamRequired("ProjectId"))
}
if s.ProjectId != nil && len(*s.ProjectId) < 2 {
invalidParams.Add(aws.NewErrParamMinLen("ProjectId", 2))
}
if s.ProjectRole == nil {
invalidParams.Add(aws.NewErrParamRequired("ProjectRole"))
}
if s.UserArn == nil {
invalidParams.Add(aws.NewErrParamRequired("UserArn"))
}
if s.UserArn != nil && len(*s.UserArn) < 32 {
invalidParams.Add(aws.NewErrParamMinLen("UserArn", 32))
}
if invalidParams.Len() > 0 {
return invalidParams
}
return nil
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/AssociateTeamMemberResult
type AssociateTeamMemberOutput struct {
_ struct{} `type:"structure"`
// The user- or system-generated token from the initial request that can be
// used to repeat the request.
ClientRequestToken *string `locationName:"clientRequestToken" min:"1" type:"string"`
}
// String returns the string representation
func (s AssociateTeamMemberOutput) String() string {
return awsutil.Prettify(s)
}
const opAssociateTeamMember = "AssociateTeamMember"
// AssociateTeamMemberRequest returns a request value for making API operation for
// AWS CodeStar.
//
// Adds an IAM user to the team for an AWS CodeStar project.
//
// // Example sending a request using AssociateTeamMemberRequest.
// req := client.AssociateTeamMemberRequest(params)
// resp, err := req.Send(context.TODO())
// if err == nil {
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/codestar-2017-04-19/AssociateTeamMember
func (c *Client) AssociateTeamMemberRequest(input *AssociateTeamMemberInput) AssociateTeamMemberRequest {
op := &aws.Operation{
Name: opAssociateTeamMember,
HTTPMethod: "POST",
HTTPPath: "/",
}
if input == nil {
input = &AssociateTeamMemberInput{}
}
req := c.newRequest(op, input, &AssociateTeamMemberOutput{})
return AssociateTeamMemberRequest{Request: req, Input: input, Copy: c.AssociateTeamMemberRequest}
}
// AssociateTeamMemberRequest is the request type for the
// AssociateTeamMember API operation.
type AssociateTeamMemberRequest struct {
*aws.Request
Input *AssociateTeamMemberInput
Copy func(*AssociateTeamMemberInput) AssociateTeamMemberRequest
}
// Send marshals and sends the AssociateTeamMember API request.
func (r AssociateTeamMemberRequest) Send(ctx context.Context) (*AssociateTeamMemberResponse, error) {
r.Request.SetContext(ctx)
err := r.Request.Send()
if err != nil {
return nil, err
}
resp := &AssociateTeamMemberResponse{
AssociateTeamMemberOutput: r.Request.Data.(*AssociateTeamMemberOutput),
response: &aws.Response{Request: r.Request},
}
return resp, nil
}
// AssociateTeamMemberResponse is the response type for the
// AssociateTeamMember API operation.
type AssociateTeamMemberResponse struct {
*AssociateTeamMemberOutput
response *aws.Response
}
// SDKResponseMetdata returns the response metadata for the
// AssociateTeamMember request.
func (r *AssociateTeamMemberResponse) SDKResponseMetdata() *aws.Response {
return r.response
}