Skip to content

Commit

Permalink
feat: add operation IDs (twilio#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
JenniferMah committed Dec 14, 2020
1 parent a7735c0 commit 1d5f595
Show file tree
Hide file tree
Showing 33 changed files with 1,210 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/services/twilio-api/twilio_accounts_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@
"description": "Auth Token promotion",
"post": {
"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.",
"operationId": "UpdateAuthTokenPromotion",
"requestBody": {
"content": {
"application/x-www-form-urlencoded": {
Expand Down Expand Up @@ -196,6 +197,7 @@
"/v1/AuthTokens/Secondary": {
"delete": {
"description": "Delete the secondary Auth Token from your account",
"operationId": "DeleteSecondaryAuthToken",
"responses": {
"204": {
"description": "The resource was deleted successfully."
Expand All @@ -213,6 +215,7 @@
"description": "Secondary Auth Token",
"post": {
"description": "Create a new secondary Auth Token",
"operationId": "CreateSecondaryAuthToken",
"requestBody": {
"content": {
"application/x-www-form-urlencoded": {
Expand Down Expand Up @@ -260,6 +263,7 @@
"description": "User provided AWS keys",
"get": {
"description": "Retrieves a collection of AWS Credentials belonging to the account used to make the request",
"operationId": "ListCredentialAws",
"parameters": [
{
"description": "How many resources to return in each list page. The default is 50, and the maximum is 1000.",
Expand Down Expand Up @@ -333,6 +337,7 @@
},
"post": {
"description": "Create a new AWS Credential",
"operationId": "CreateCredentialAws",
"requestBody": {
"content": {
"application/x-www-form-urlencoded": {
Expand Down Expand Up @@ -398,6 +403,7 @@
"/v1/Credentials/AWS/{Sid}": {
"delete": {
"description": "Delete a Credential from your account",
"operationId": "DeleteCredentialAws",
"parameters": [
{
"description": "The Twilio-provided string that uniquely identifies the AWS resource to delete.",
Expand Down Expand Up @@ -429,6 +435,7 @@
"description": "User provided AWS keys",
"get": {
"description": "Fetch the AWS credentials specified by the provided Credential Sid",
"operationId": "FetchCredentialAws",
"parameters": [
{
"description": "The Twilio-provided string that uniquely identifies the AWS resource to fetch.",
Expand Down Expand Up @@ -466,6 +473,7 @@
},
"post": {
"description": "Modify the properties of a given Account",
"operationId": "UpdateCredentialAws",
"parameters": [
{
"description": "The Twilio-provided string that uniquely identifies the AWS resource to update.",
Expand Down Expand Up @@ -532,6 +540,7 @@
"description": "User provided public keys",
"get": {
"description": "Retrieves a collection of Public Key Credentials belonging to the account used to make the request",
"operationId": "ListCredentialPublicKey",
"parameters": [
{
"description": "How many resources to return in each list page. The default is 50, and the maximum is 1000.",
Expand Down Expand Up @@ -605,6 +614,7 @@
},
"post": {
"description": "Create a new Public Key Credential",
"operationId": "CreateCredentialPublicKey",
"requestBody": {
"content": {
"application/x-www-form-urlencoded": {
Expand Down Expand Up @@ -670,6 +680,7 @@
"/v1/Credentials/PublicKeys/{Sid}": {
"delete": {
"description": "Delete a Credential from your account",
"operationId": "DeleteCredentialPublicKey",
"parameters": [
{
"description": "The Twilio-provided string that uniquely identifies the PublicKey resource to delete.",
Expand Down Expand Up @@ -701,6 +712,7 @@
"description": "User provided public keys",
"get": {
"description": "Fetch the public key specified by the provided Credential Sid",
"operationId": "FetchCredentialPublicKey",
"parameters": [
{
"description": "The Twilio-provided string that uniquely identifies the PublicKey resource to fetch.",
Expand Down Expand Up @@ -738,6 +750,7 @@
},
"post": {
"description": "Modify the properties of a given Account",
"operationId": "UpdateCredentialPublicKey",
"parameters": [
{
"description": "The Twilio-provided string that uniquely identifies the PublicKey resource to update.",
Expand Down

0 comments on commit 1d5f595

Please sign in to comment.