Skip to content

Commit 1d5f595

Browse files
authored
feat: add operation IDs (twilio#107)
1 parent a7735c0 commit 1d5f595

33 files changed

+1210
-0
lines changed

src/services/twilio-api/twilio_accounts_v1.json

+13
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@
150150
"description": "Auth Token promotion",
151151
"post": {
152152
"description": "Promote the secondary Auth Token to primary. After promoting the new token, all requests to Twilio using your old primary Auth Token will result in an error.",
153+
"operationId": "UpdateAuthTokenPromotion",
153154
"requestBody": {
154155
"content": {
155156
"application/x-www-form-urlencoded": {
@@ -196,6 +197,7 @@
196197
"/v1/AuthTokens/Secondary": {
197198
"delete": {
198199
"description": "Delete the secondary Auth Token from your account",
200+
"operationId": "DeleteSecondaryAuthToken",
199201
"responses": {
200202
"204": {
201203
"description": "The resource was deleted successfully."
@@ -213,6 +215,7 @@
213215
"description": "Secondary Auth Token",
214216
"post": {
215217
"description": "Create a new secondary Auth Token",
218+
"operationId": "CreateSecondaryAuthToken",
216219
"requestBody": {
217220
"content": {
218221
"application/x-www-form-urlencoded": {
@@ -260,6 +263,7 @@
260263
"description": "User provided AWS keys",
261264
"get": {
262265
"description": "Retrieves a collection of AWS Credentials belonging to the account used to make the request",
266+
"operationId": "ListCredentialAws",
263267
"parameters": [
264268
{
265269
"description": "How many resources to return in each list page. The default is 50, and the maximum is 1000.",
@@ -333,6 +337,7 @@
333337
},
334338
"post": {
335339
"description": "Create a new AWS Credential",
340+
"operationId": "CreateCredentialAws",
336341
"requestBody": {
337342
"content": {
338343
"application/x-www-form-urlencoded": {
@@ -398,6 +403,7 @@
398403
"/v1/Credentials/AWS/{Sid}": {
399404
"delete": {
400405
"description": "Delete a Credential from your account",
406+
"operationId": "DeleteCredentialAws",
401407
"parameters": [
402408
{
403409
"description": "The Twilio-provided string that uniquely identifies the AWS resource to delete.",
@@ -429,6 +435,7 @@
429435
"description": "User provided AWS keys",
430436
"get": {
431437
"description": "Fetch the AWS credentials specified by the provided Credential Sid",
438+
"operationId": "FetchCredentialAws",
432439
"parameters": [
433440
{
434441
"description": "The Twilio-provided string that uniquely identifies the AWS resource to fetch.",
@@ -466,6 +473,7 @@
466473
},
467474
"post": {
468475
"description": "Modify the properties of a given Account",
476+
"operationId": "UpdateCredentialAws",
469477
"parameters": [
470478
{
471479
"description": "The Twilio-provided string that uniquely identifies the AWS resource to update.",
@@ -532,6 +540,7 @@
532540
"description": "User provided public keys",
533541
"get": {
534542
"description": "Retrieves a collection of Public Key Credentials belonging to the account used to make the request",
543+
"operationId": "ListCredentialPublicKey",
535544
"parameters": [
536545
{
537546
"description": "How many resources to return in each list page. The default is 50, and the maximum is 1000.",
@@ -605,6 +614,7 @@
605614
},
606615
"post": {
607616
"description": "Create a new Public Key Credential",
617+
"operationId": "CreateCredentialPublicKey",
608618
"requestBody": {
609619
"content": {
610620
"application/x-www-form-urlencoded": {
@@ -670,6 +680,7 @@
670680
"/v1/Credentials/PublicKeys/{Sid}": {
671681
"delete": {
672682
"description": "Delete a Credential from your account",
683+
"operationId": "DeleteCredentialPublicKey",
673684
"parameters": [
674685
{
675686
"description": "The Twilio-provided string that uniquely identifies the PublicKey resource to delete.",
@@ -701,6 +712,7 @@
701712
"description": "User provided public keys",
702713
"get": {
703714
"description": "Fetch the public key specified by the provided Credential Sid",
715+
"operationId": "FetchCredentialPublicKey",
704716
"parameters": [
705717
{
706718
"description": "The Twilio-provided string that uniquely identifies the PublicKey resource to fetch.",
@@ -738,6 +750,7 @@
738750
},
739751
"post": {
740752
"description": "Modify the properties of a given Account",
753+
"operationId": "UpdateCredentialPublicKey",
741754
"parameters": [
742755
{
743756
"description": "The Twilio-provided string that uniquely identifies the PublicKey resource to update.",

0 commit comments

Comments
 (0)