Skip to content

feat: add operation IDs #107

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading