Skip to content
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

fix: add parent field to twilio vendor extensions #57

Merged
merged 4 commits into from
May 17, 2022
Merged
Show file tree
Hide file tree
Changes from 3 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
19 changes: 19 additions & 0 deletions spec/json/twilio_accounts_v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@
}
],
"x-twilio": {
"className": "auth_token_promotion",
"defaultOutputProperties": [
"account_sid",
"auth_token",
Expand Down Expand Up @@ -279,6 +280,7 @@
}
],
"x-twilio": {
"className": "secondary_auth_token",
"defaultOutputProperties": [
"account_sid",
"secondary_auth_token",
Expand All @@ -287,6 +289,19 @@
"pathType": "instance"
}
},
"/v1/Credentials": {
"description": "TODO: Resource-level docs",
"servers": [
{
"url": "https://accounts.twilio.com"
}
],
"x-twilio": {
"className": "credential",
"defaultOutputProperties": [],
"pathType": "list"
}
},
"/v1/Credentials/AWS": {
"description": "User provided AWS keys",
"get": {
Expand Down Expand Up @@ -429,6 +444,7 @@
"friendly_name",
"date_created"
],
"parent": "/Credentials",
"pathType": "list"
}
},
Expand Down Expand Up @@ -568,6 +584,7 @@
"friendly_name",
"date_created"
],
"parent": "/Credentials",
"pathType": "instance"
}
},
Expand Down Expand Up @@ -713,6 +730,7 @@
"friendly_name",
"date_created"
],
"parent": "/Credentials",
"pathType": "list"
}
},
Expand Down Expand Up @@ -852,6 +870,7 @@
"friendly_name",
"date_created"
],
"parent": "/Credentials",
"pathType": "instance"
}
}
Expand Down
Loading