Skip to content

Commit c71ce89

Browse files
committed
[Librarian] Regenerated @ 9e43c4b1c21f11427158cfc8a409854c419cd158
1 parent 90bd0b1 commit c71ce89

File tree

84 files changed

+1991
-54
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+1991
-54
lines changed

CHANGES.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
twilio-go changelog
22
====================
3+
[2022-08-10] Version 1.0.0-rc.6
4+
-------------------------------
5+
**Library - Test**
6+
- [PR #180](https://github.com/twilio/twilio-go/pull/180): fix for linting failures and using the proper PR branch. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
7+
- [PR #178](https://github.com/twilio/twilio-go/pull/178): Include a cluster test for Request Validator. Thanks to [@claudiachua](https://github.com/claudiachua)!
8+
- [PR #179](https://github.com/twilio/twilio-go/pull/179): add datarace detection for go. Thanks to [@JenniferMah](https://github.com/JenniferMah)!
9+
10+
**Routes**
11+
- Inbound Proccessing Region API - Public GA
12+
13+
**Supersim**
14+
- Allow updating `DataLimit` on a Fleet
15+
16+
317
[2022-07-21] Version 1.0.0-rc.5
418
-------------------------------
519
**Flex**

rest/accounts/v1/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This is the public Twilio REST API.
55
## Overview
66
This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project from the OpenAPI specs located at [twilio/twilio-oai](https://github.com/twilio/twilio-oai/tree/main/spec). By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client.
77

8-
- API version: 1.32.0
8+
- API version: 1.33.0
99
- Package version: 1.0.0
1010
- Build package: com.twilio.oai.TwilioGoGenerator
1111
For more information, please visit [https://support.twilio.com](https://support.twilio.com)

rest/api/v2010/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This is the public Twilio REST API.
55
## Overview
66
This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project from the OpenAPI specs located at [twilio/twilio-oai](https://github.com/twilio/twilio-oai/tree/main/spec). By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client.
77

8-
- API version: 1.32.0
8+
- API version: 1.33.0
99
- Package version: 1.0.0
1010
- Build package: com.twilio.oai.TwilioGoGenerator
1111
For more information, please visit [https://support.twilio.com](https://support.twilio.com)

rest/api/v2010/accounts_sipip_access_control_lists.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
type CreateSipIpAccessControlListParams struct {
2828
// The unique id of the [Account](https://www.twilio.com/docs/iam/api/account) responsible for this resource.
2929
PathAccountSid *string `json:"PathAccountSid,omitempty"`
30-
// A human readable descriptive text that describes the IpAccessControlList, up to 64 characters long.
30+
// A human readable descriptive text that describes the IpAccessControlList, up to 255 characters long.
3131
FriendlyName *string `json:"FriendlyName,omitempty"`
3232
}
3333

@@ -296,7 +296,7 @@ func (c *ApiService) getNextListSipIpAccessControlListResponse(nextPageUrl strin
296296
type UpdateSipIpAccessControlListParams struct {
297297
// The unique id of the [Account](https://www.twilio.com/docs/iam/api/account) responsible for this resource.
298298
PathAccountSid *string `json:"PathAccountSid,omitempty"`
299-
// A human readable descriptive text, up to 64 characters long.
299+
// A human readable descriptive text, up to 255 characters long.
300300
FriendlyName *string `json:"FriendlyName,omitempty"`
301301
}
302302

rest/api/v2010/accounts_sipip_access_control_lists_ip_addresses.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
type CreateSipIpAddressParams struct {
2828
// The unique id of the [Account](https://www.twilio.com/docs/iam/api/account) responsible for this resource.
2929
PathAccountSid *string `json:"PathAccountSid,omitempty"`
30-
// A human readable descriptive text for this resource, up to 64 characters long.
30+
// A human readable descriptive text for this resource, up to 255 characters long.
3131
FriendlyName *string `json:"FriendlyName,omitempty"`
3232
// An IP address in dotted decimal notation from which you want to accept traffic. Any SIP requests from this IP address will be allowed by Twilio. IPv4 only supported today.
3333
IpAddress *string `json:"IpAddress,omitempty"`
@@ -320,7 +320,7 @@ type UpdateSipIpAddressParams struct {
320320
PathAccountSid *string `json:"PathAccountSid,omitempty"`
321321
// An IP address in dotted decimal notation from which you want to accept traffic. Any SIP requests from this IP address will be allowed by Twilio. IPv4 only supported today.
322322
IpAddress *string `json:"IpAddress,omitempty"`
323-
// A human readable descriptive text for this resource, up to 64 characters long.
323+
// A human readable descriptive text for this resource, up to 255 characters long.
324324
FriendlyName *string `json:"FriendlyName,omitempty"`
325325
// An integer representing the length of the CIDR prefix to use with this IP address when accepting traffic. By default the entire IP address is used.
326326
CidrPrefixLength *int `json:"CidrPrefixLength,omitempty"`

rest/api/v2010/docs/AccountsSIPIpAccessControlListsApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Other parameters are passed through a pointer to a CreateSipIpAccessControlListP
3232
Name | Type | Description
3333
------------- | ------------- | -------------
3434
**PathAccountSid** | **string** | The unique id of the [Account](https://www.twilio.com/docs/iam/api/account) responsible for this resource.
35-
**FriendlyName** | **string** | A human readable descriptive text that describes the IpAccessControlList, up to 64 characters long.
35+
**FriendlyName** | **string** | A human readable descriptive text that describes the IpAccessControlList, up to 255 characters long.
3636

3737
### Return type
3838

@@ -203,7 +203,7 @@ Other parameters are passed through a pointer to a UpdateSipIpAccessControlListP
203203
Name | Type | Description
204204
------------- | ------------- | -------------
205205
**PathAccountSid** | **string** | The unique id of the [Account](https://www.twilio.com/docs/iam/api/account) responsible for this resource.
206-
**FriendlyName** | **string** | A human readable descriptive text, up to 64 characters long.
206+
**FriendlyName** | **string** | A human readable descriptive text, up to 255 characters long.
207207

208208
### Return type
209209

rest/api/v2010/docs/AccountsSIPIpAccessControlListsIpAddressesApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Other parameters are passed through a pointer to a CreateSipIpAddressParams stru
3636
Name | Type | Description
3737
------------- | ------------- | -------------
3838
**PathAccountSid** | **string** | The unique id of the [Account](https://www.twilio.com/docs/iam/api/account) responsible for this resource.
39-
**FriendlyName** | **string** | A human readable descriptive text for this resource, up to 64 characters long.
39+
**FriendlyName** | **string** | A human readable descriptive text for this resource, up to 255 characters long.
4040
**IpAddress** | **string** | An IP address in dotted decimal notation from which you want to accept traffic. Any SIP requests from this IP address will be allowed by Twilio. IPv4 only supported today.
4141
**CidrPrefixLength** | **int** | An integer representing the length of the CIDR prefix to use with this IP address when accepting traffic. By default the entire IP address is used.
4242

@@ -217,7 +217,7 @@ Name | Type | Description
217217
------------- | ------------- | -------------
218218
**PathAccountSid** | **string** | The unique id of the [Account](https://www.twilio.com/docs/iam/api/account) responsible for this resource.
219219
**IpAddress** | **string** | An IP address in dotted decimal notation from which you want to accept traffic. Any SIP requests from this IP address will be allowed by Twilio. IPv4 only supported today.
220-
**FriendlyName** | **string** | A human readable descriptive text for this resource, up to 64 characters long.
220+
**FriendlyName** | **string** | A human readable descriptive text for this resource, up to 255 characters long.
221221
**CidrPrefixLength** | **int** | An integer representing the length of the CIDR prefix to use with this IP address when accepting traffic. By default the entire IP address is used.
222222

223223
### Return type

rest/api/v2010/docs/ApiV2010SipIpAddress.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**Sid** | Pointer to **string** | A 34 character string that uniquely identifies this resource. |
88
**AccountSid** | Pointer to **string** | The unique id of the Account that is responsible for this resource. |
9-
**FriendlyName** | Pointer to **string** | A human readable descriptive text for this resource, up to 64 characters long. |
9+
**FriendlyName** | Pointer to **string** | A human readable descriptive text for this resource, up to 255 characters long. |
1010
**IpAddress** | Pointer to **string** | An IP address in dotted decimal notation from which you want to accept traffic. Any SIP requests from this IP address will be allowed by Twilio. IPv4 only supported today. |
1111
**CidrPrefixLength** | Pointer to **int** | An integer representing the length of the CIDR prefix to use with this IP address when accepting traffic. By default the entire IP address is used. |
1212
**IpAccessControlListSid** | Pointer to **string** | The unique id of the IpAccessControlList resource that includes this resource. |

rest/api/v2010/model_api_v2010_sip_ip_address.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ type ApiV2010SipIpAddress struct {
2020
Sid *string `json:"sid,omitempty"`
2121
// The unique id of the Account that is responsible for this resource.
2222
AccountSid *string `json:"account_sid,omitempty"`
23-
// A human readable descriptive text for this resource, up to 64 characters long.
23+
// A human readable descriptive text for this resource, up to 255 characters long.
2424
FriendlyName *string `json:"friendly_name,omitempty"`
2525
// An IP address in dotted decimal notation from which you want to accept traffic. Any SIP requests from this IP address will be allowed by Twilio. IPv4 only supported today.
2626
IpAddress *string `json:"ip_address,omitempty"`

rest/autopilot/v1/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This is the public Twilio REST API.
55
## Overview
66
This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project from the OpenAPI specs located at [twilio/twilio-oai](https://github.com/twilio/twilio-oai/tree/main/spec). By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client.
77

8-
- API version: 1.32.0
8+
- API version: 1.33.0
99
- Package version: 1.0.0
1010
- Build package: com.twilio.oai.TwilioGoGenerator
1111
For more information, please visit [https://support.twilio.com](https://support.twilio.com)

0 commit comments

Comments
 (0)