-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathservices_environments_variables.go
315 lines (256 loc) · 9.17 KB
/
services_environments_variables.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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
/*
* This code was generated by
* ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __
* | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/
* | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \
*
* Twilio - Serverless
* This is the public Twilio REST API.
*
* NOTE: This class is auto generated by OpenAPI Generator.
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package openapi
import (
"encoding/json"
"fmt"
"net/url"
"strings"
"github.com/twilio/twilio-go/client"
)
// Optional parameters for the method 'CreateVariable'
type CreateVariableParams struct {
// A string by which the Variable resource can be referenced. It can be a maximum of 128 characters.
Key *string `json:"Key,omitempty"`
// A string that contains the actual value of the Variable. It can be a maximum of 450 bytes in size.
Value *string `json:"Value,omitempty"`
}
func (params *CreateVariableParams) SetKey(Key string) *CreateVariableParams {
params.Key = &Key
return params
}
func (params *CreateVariableParams) SetValue(Value string) *CreateVariableParams {
params.Value = &Value
return params
}
// Create a new Variable.
func (c *ApiService) CreateVariable(ServiceSid string, EnvironmentSid string, params *CreateVariableParams) (*ServerlessV1Variable, error) {
path := "/v1/Services/{ServiceSid}/Environments/{EnvironmentSid}/Variables"
path = strings.Replace(path, "{"+"ServiceSid"+"}", ServiceSid, -1)
path = strings.Replace(path, "{"+"EnvironmentSid"+"}", EnvironmentSid, -1)
data := url.Values{}
headers := map[string]interface{}{
"Content-Type": "application/x-www-form-urlencoded",
}
if params != nil && params.Key != nil {
data.Set("Key", *params.Key)
}
if params != nil && params.Value != nil {
data.Set("Value", *params.Value)
}
resp, err := c.requestHandler.Post(c.baseURL+path, data, headers)
if err != nil {
return nil, err
}
defer resp.Body.Close()
ps := &ServerlessV1Variable{}
if err := json.NewDecoder(resp.Body).Decode(ps); err != nil {
return nil, err
}
return ps, err
}
// Delete a specific Variable.
func (c *ApiService) DeleteVariable(ServiceSid string, EnvironmentSid string, Sid string) error {
path := "/v1/Services/{ServiceSid}/Environments/{EnvironmentSid}/Variables/{Sid}"
path = strings.Replace(path, "{"+"ServiceSid"+"}", ServiceSid, -1)
path = strings.Replace(path, "{"+"EnvironmentSid"+"}", EnvironmentSid, -1)
path = strings.Replace(path, "{"+"Sid"+"}", Sid, -1)
data := url.Values{}
headers := map[string]interface{}{
"Content-Type": "application/x-www-form-urlencoded",
}
resp, err := c.requestHandler.Delete(c.baseURL+path, data, headers)
if err != nil {
return err
}
defer resp.Body.Close()
return nil
}
// Retrieve a specific Variable.
func (c *ApiService) FetchVariable(ServiceSid string, EnvironmentSid string, Sid string) (*ServerlessV1Variable, error) {
path := "/v1/Services/{ServiceSid}/Environments/{EnvironmentSid}/Variables/{Sid}"
path = strings.Replace(path, "{"+"ServiceSid"+"}", ServiceSid, -1)
path = strings.Replace(path, "{"+"EnvironmentSid"+"}", EnvironmentSid, -1)
path = strings.Replace(path, "{"+"Sid"+"}", Sid, -1)
data := url.Values{}
headers := map[string]interface{}{
"Content-Type": "application/x-www-form-urlencoded",
}
resp, err := c.requestHandler.Get(c.baseURL+path, data, headers)
if err != nil {
return nil, err
}
defer resp.Body.Close()
ps := &ServerlessV1Variable{}
if err := json.NewDecoder(resp.Body).Decode(ps); err != nil {
return nil, err
}
return ps, err
}
// Optional parameters for the method 'ListVariable'
type ListVariableParams struct {
// How many resources to return in each list page. The default is 50, and the maximum is 1000.
PageSize *int `json:"PageSize,omitempty"`
// Max number of records to return.
Limit *int `json:"limit,omitempty"`
}
func (params *ListVariableParams) SetPageSize(PageSize int) *ListVariableParams {
params.PageSize = &PageSize
return params
}
func (params *ListVariableParams) SetLimit(Limit int) *ListVariableParams {
params.Limit = &Limit
return params
}
// Retrieve a single page of Variable records from the API. Request is executed immediately.
func (c *ApiService) PageVariable(ServiceSid string, EnvironmentSid string, params *ListVariableParams, pageToken, pageNumber string) (*ListVariableResponse, error) {
path := "/v1/Services/{ServiceSid}/Environments/{EnvironmentSid}/Variables"
path = strings.Replace(path, "{"+"ServiceSid"+"}", ServiceSid, -1)
path = strings.Replace(path, "{"+"EnvironmentSid"+"}", EnvironmentSid, -1)
data := url.Values{}
headers := map[string]interface{}{
"Content-Type": "application/x-www-form-urlencoded",
}
if params != nil && params.PageSize != nil {
data.Set("PageSize", fmt.Sprint(*params.PageSize))
}
if pageToken != "" {
data.Set("PageToken", pageToken)
}
if pageNumber != "" {
data.Set("Page", pageNumber)
}
resp, err := c.requestHandler.Get(c.baseURL+path, data, headers)
if err != nil {
return nil, err
}
defer resp.Body.Close()
ps := &ListVariableResponse{}
if err := json.NewDecoder(resp.Body).Decode(ps); err != nil {
return nil, err
}
return ps, err
}
// Lists Variable records from the API as a list. Unlike stream, this operation is eager and loads 'limit' records into memory before returning.
func (c *ApiService) ListVariable(ServiceSid string, EnvironmentSid string, params *ListVariableParams) ([]ServerlessV1Variable, error) {
response, errors := c.StreamVariable(ServiceSid, EnvironmentSid, params)
records := make([]ServerlessV1Variable, 0)
for record := range response {
records = append(records, record)
}
if err := <-errors; err != nil {
return nil, err
}
return records, nil
}
// Streams Variable records from the API as a channel stream. This operation lazily loads records as efficiently as possible until the limit is reached.
func (c *ApiService) StreamVariable(ServiceSid string, EnvironmentSid string, params *ListVariableParams) (chan ServerlessV1Variable, chan error) {
if params == nil {
params = &ListVariableParams{}
}
params.SetPageSize(client.ReadLimits(params.PageSize, params.Limit))
recordChannel := make(chan ServerlessV1Variable, 1)
errorChannel := make(chan error, 1)
response, err := c.PageVariable(ServiceSid, EnvironmentSid, params, "", "")
if err != nil {
errorChannel <- err
close(recordChannel)
close(errorChannel)
} else {
go c.streamVariable(response, params, recordChannel, errorChannel)
}
return recordChannel, errorChannel
}
func (c *ApiService) streamVariable(response *ListVariableResponse, params *ListVariableParams, recordChannel chan ServerlessV1Variable, errorChannel chan error) {
curRecord := 1
for response != nil {
responseRecords := response.Variables
for item := range responseRecords {
recordChannel <- responseRecords[item]
curRecord += 1
if params.Limit != nil && *params.Limit < curRecord {
close(recordChannel)
close(errorChannel)
return
}
}
record, err := client.GetNext(c.baseURL, response, c.getNextListVariableResponse)
if err != nil {
errorChannel <- err
break
} else if record == nil {
break
}
response = record.(*ListVariableResponse)
}
close(recordChannel)
close(errorChannel)
}
func (c *ApiService) getNextListVariableResponse(nextPageUrl string) (interface{}, error) {
if nextPageUrl == "" {
return nil, nil
}
resp, err := c.requestHandler.Get(nextPageUrl, nil, nil)
if err != nil {
return nil, err
}
defer resp.Body.Close()
ps := &ListVariableResponse{}
if err := json.NewDecoder(resp.Body).Decode(ps); err != nil {
return nil, err
}
return ps, nil
}
// Optional parameters for the method 'UpdateVariable'
type UpdateVariableParams struct {
// A string by which the Variable resource can be referenced. It can be a maximum of 128 characters.
Key *string `json:"Key,omitempty"`
// A string that contains the actual value of the Variable. It can be a maximum of 450 bytes in size.
Value *string `json:"Value,omitempty"`
}
func (params *UpdateVariableParams) SetKey(Key string) *UpdateVariableParams {
params.Key = &Key
return params
}
func (params *UpdateVariableParams) SetValue(Value string) *UpdateVariableParams {
params.Value = &Value
return params
}
// Update a specific Variable.
func (c *ApiService) UpdateVariable(ServiceSid string, EnvironmentSid string, Sid string, params *UpdateVariableParams) (*ServerlessV1Variable, error) {
path := "/v1/Services/{ServiceSid}/Environments/{EnvironmentSid}/Variables/{Sid}"
path = strings.Replace(path, "{"+"ServiceSid"+"}", ServiceSid, -1)
path = strings.Replace(path, "{"+"EnvironmentSid"+"}", EnvironmentSid, -1)
path = strings.Replace(path, "{"+"Sid"+"}", Sid, -1)
data := url.Values{}
headers := map[string]interface{}{
"Content-Type": "application/x-www-form-urlencoded",
}
if params != nil && params.Key != nil {
data.Set("Key", *params.Key)
}
if params != nil && params.Value != nil {
data.Set("Value", *params.Value)
}
resp, err := c.requestHandler.Post(c.baseURL+path, data, headers)
if err != nil {
return nil, err
}
defer resp.Body.Close()
ps := &ServerlessV1Variable{}
if err := json.NewDecoder(resp.Body).Decode(ps); err != nil {
return nil, err
}
return ps, err
}