-
Notifications
You must be signed in to change notification settings - Fork 249
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
DescribeImagesFluentBuilder
's image_ids
function does not take a Vec<String>
as the docs say
#825
Labels
bug
This issue is a bug.
documentation
This is a problem with documentation
p2
This is a standard priority issue
Comments
cole-h
added
bug
This issue is a bug.
needs-triage
This issue or PR still needs to be triaged.
labels
Jun 12, 2023
rcoh
added
documentation
This is a problem with documentation
good first issue
Good for newcomers
and removed
needs-triage
This issue or PR still needs to be triaged.
labels
Jun 13, 2023
Ahhh, gotcha. Thanks for the clarification! |
2 tasks
github-merge-queue bot
pushed a commit
to smithy-lang/smithy-rs
that referenced
this issue
Aug 14, 2023
Previously the docs said `Vec<String>` when the method actually accepted `String`, similarly for HashMap. ## Motivation and Context - awslabs/aws-sdk-rust#825 ## Description Fix the generator to be aware of Vec/Hashmap methods ## Testing - UT - [x] audit codegen diff ## Checklist <!--- If a checkbox below is not applicable, then please DELETE it rather than leaving it unchecked --> - [x] I have updated `CHANGELOG.next.toml` if I made changes to the AWS SDK, generated SDK code, or SDK runtime crates ---- _By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice._
aws-sdk-rust-ci
pushed a commit
that referenced
this issue
Aug 23, 2023
…members (#2914) Previously the docs said `Vec<String>` when the method actually accepted `String`, similarly for HashMap. ## Motivation and Context - #825 ## Description Fix the generator to be aware of Vec/Hashmap methods ## Testing - UT - [x] audit codegen diff ## Checklist <!--- If a checkbox below is not applicable, then please DELETE it rather than leaving it unchecked --> - [x] I have updated `CHANGELOG.next.toml` if I made changes to the AWS SDK, generated SDK code, or SDK runtime crates ---- _By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice._
rcoh
added
pending-release
This issue will be fixed by an approved PR that hasn't been released yet.
and removed
good first issue
Good for newcomers
labels
Aug 29, 2023
this was actually released, we're just still in the docs queue |
|
rcoh
removed
the
pending-release
This issue will be fixed by an approved PR that hasn't been released yet.
label
Nov 7, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
bug
This issue is a bug.
documentation
This is a problem with documentation
p2
This is a standard priority issue
Describe the bug
The docs for
Client::describe_images
say that theimage_ids
function should accept aVec<String>
, but the function only acceptsimpl Into<String>
, notimpl Into<Vec<String>>
. However,set_image_ids
accepts anOption<Vec<String>>
, so I can work around it for now.Expected Behavior
I expected to be able to pass a list of image ids to this function, not a single image id.
Current Behavior
Reproduction Steps
Try to compile the following:
Possible Solution
Just change the type signature to also accept a
Vec<String>
:DAdditional Information/Context
No response
Version
Environment details (OS name and version, etc.)
Linux
Logs
No response
The text was updated successfully, but these errors were encountered: