-
Notifications
You must be signed in to change notification settings - Fork 4k
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
chore: update SDKv3 blob types model #27043
Conversation
Add a script that will automatically extract the blob parameter type data from the AWS SDKv3.
@@ -0,0 +1,561 @@ | |||
// This file was generated from the aws-sdk-js-v3 at Thu Sep 07 2023 13:59:10 GMT+0200 (Central European Summer Time) | |||
export interface BlobTypeMapping { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
export interface BlobTypeMapping { | |
export interface TypeCoercionMap { |
[action: string]: string[] | ||
} | ||
}; | ||
export const blobTypes: BlobTypeMapping = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
export const blobTypes: BlobTypeMapping = { | |
export const UINT8ARRAY_PARAMETERS: TypeCoercionMap = { |
Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
Add a script that will automatically extract the blob parameter type data from the AWS SDKv3. `scripts/update-sdkv3-blobs-model.sh` will download the files and drive `scripts/update-sdkv3-blobs-model.ts`, which does the actual collection. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
Add a script that will automatically extract the blob parameter type data from the AWS SDKv3.
scripts/update-sdkv3-blobs-model.sh
will download the files and drivescripts/update-sdkv3-blobs-model.ts
, which does the actual collection.By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license