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

reordered properties #70

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
34 changes: 17 additions & 17 deletions spec/yaml/twilio_accounts_v1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -290,14 +290,6 @@ paths:
application/x-www-form-urlencoded:
schema:
properties:
AccountSid:
description: The SID of the Subaccount that this Credential should
be associated with. Must be a valid Subaccount of the account
issuing the request.
maxLength: 34
minLength: 34
pattern: ^AC[0-9a-fA-F]{32}$
type: string
Credentials:
description: A string that contains the AWS access credentials in
the format `<AWS_ACCESS_KEY_ID>:<AWS_SECRET_ACCESS_KEY>`. For
Expand All @@ -307,6 +299,14 @@ paths:
description: A descriptive string that you create to describe the
resource. It can be up to 64 characters long.
type: string
AccountSid:
description: The SID of the Subaccount that this Credential should
be associated with. Must be a valid Subaccount of the account
issuing the request.
maxLength: 34
minLength: 34
pattern: ^AC[0-9a-fA-F]{32}$
type: string
required:
- Credentials
title: CreateCredentialAwsRequest
Expand Down Expand Up @@ -486,6 +486,15 @@ paths:
application/x-www-form-urlencoded:
schema:
properties:
PublicKey:
description: A URL encoded representation of the public key. For
example, `-----BEGIN PUBLIC KEY-----MIIBIjANB.pa9xQIDAQAB-----END
PUBLIC KEY-----`
type: string
FriendlyName:
description: A descriptive string that you create to describe the
resource. It can be up to 64 characters long.
type: string
AccountSid:
description: The SID of the Subaccount that this Credential should
be associated with. Must be a valid Subaccount of the account
Expand All @@ -494,15 +503,6 @@ paths:
minLength: 34
pattern: ^AC[0-9a-fA-F]{32}$
type: string
FriendlyName:
description: A descriptive string that you create to describe the
resource. It can be up to 64 characters long.
type: string
PublicKey:
description: A URL encoded representation of the public key. For
example, `-----BEGIN PUBLIC KEY-----MIIBIjANB.pa9xQIDAQAB-----END
PUBLIC KEY-----`
type: string
required:
- PublicKey
title: CreateCredentialPublicKeyRequest
Expand Down
2,706 changes: 1,353 additions & 1,353 deletions spec/yaml/twilio_api_v2010.yaml

Large diffs are not rendered by default.

166 changes: 83 additions & 83 deletions spec/yaml/twilio_autopilot_v1.yaml

Large diffs are not rendered by default.

36 changes: 18 additions & 18 deletions spec/yaml/twilio_bulkexports_v1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -354,16 +354,16 @@ paths:
description: If true, Twilio will automatically generate every day's
file when the day is over.
type: boolean
WebhookMethod:
description: Sets whether Twilio should call a webhook URL when
the automatic generation is complete, using GET or POST. The actual
destination is set in the webhook_url
type: string
WebhookUrl:
description: Stores the URL destination for the method specified
in webhook_method.
format: uri
type: string
WebhookMethod:
description: Sets whether Twilio should call a webhook URL when
the automatic generation is complete, using GET or POST. The actual
destination is set in the webhook_url
type: string
title: UpdateExportConfigurationRequest
type: object
responses:
Expand Down Expand Up @@ -577,11 +577,9 @@ paths:
application/x-www-form-urlencoded:
schema:
properties:
Email:
description: The optional email to send the completion notification
to. You can set both webhook, and email, or one or the other.
If you set neither, the job will run but you will have to query
to determine your job's status.
StartDay:
description: The start day for the custom export specified as a
string in the format of yyyy-mm-dd
type: string
EndDay:
description: The end day for the custom export specified as a string
Expand All @@ -591,20 +589,22 @@ paths:
FriendlyName:
description: The friendly name specified when creating the job
type: string
StartDay:
description: The start day for the custom export specified as a
string in the format of yyyy-mm-dd
type: string
WebhookMethod:
description: This is the method used to call the webhook on completion
of the job. If this is supplied, `WebhookUrl` must also be supplied.
type: string
WebhookUrl:
description: The optional webhook url called on completion of the
job. If this is supplied, `WebhookMethod` must also be supplied.
If you set neither webhook nor email, you will have to check your
job's status manually.
type: string
WebhookMethod:
description: This is the method used to call the webhook on completion
of the job. If this is supplied, `WebhookUrl` must also be supplied.
type: string
Email:
description: The optional email to send the completion notification
to. You can set both webhook, and email, or one or the other.
If you set neither, the job will run but you will have to query
to determine your job's status.
type: string
required:
- StartDay
- EndDay
Expand Down
Loading