-
Notifications
You must be signed in to change notification settings - Fork 875
Generate ListBucketInventoryConfigurations #4156
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
Generate ListBucketInventoryConfigurations #4156
Conversation
cda4f5e to
ce45e13
Compare
028eb81 to
524c8be
Compare
BREAKING CHANGES ANALYSIS - ListBucketInventoryConfigurations MigrationFiles Analyzed: 4 of 4 files changedFiles with BREAKING CHANGES:1. sdk/src/Services/S3/Generated/Model/Internal/MarshallTransformations/ListBucketInventoryConfigurationsResponseUnmarshaller.csISSUE: IsTruncated unmarshaller type changedCustom Code (Old): if (context.TestExpression("IsTruncated", targetDepth))
{
response.IsTruncated = BoolUnmarshaller.Instance.Unmarshall(context);
continue;
}Generated Code (New): if (context.TestExpression("IsTruncated", targetDepth))
{
var unmarshaller = NullableBoolUnmarshaller.Instance;
response.IsTruncated = unmarshaller.Unmarshall(context);
continue;
}Breaking Change Details:
SummaryTotal Files Analyzed: 4 of 4
Files with Breaking Changes: 1 Total Breaking Changes Found: 1 Critical Issues:
No Breaking Changes Found In:
|
|
the breaking change called out by the AI analysis tool isn't a breaking change because |
stack-info: PR: #4156, branch: peterrsongg/petesong/phase-3-pr4-3/3
| } | ||
|
|
||
| // Check to see if InventoryConfigurationList property is set | ||
| internal bool IsSetInventoryConfigurationList() |
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.
Same as https://github.com/aws/aws-sdk-net/pull/4154/files#r2557873142 though here there is a higher change of it being used, since it is part of the response which users are expected to check and validate but the other one is part of a request.
stack-info: PR: #4156, branch: peterrsongg/petesong/phase-3-pr4-3/3
stack-info: PR: #4156, branch: peterrsongg/petesong/phase-3-pr4-3/3
ce45e13 to
0880c10
Compare
524c8be to
d83ef19
Compare
|
merged manually |
* Generate PutBucketInventoryConfiguration stack-info: PR: #4154, branch: peterrsongg/petesong/phase-3-pr4-3/1 * Generate GetBucketInventoryConfiguration stack-info: PR: #4155, branch: peterrsongg/petesong/phase-3-pr4-3/2 * Generate ListBucketInventoryConfigurations stack-info: PR: #4156, branch: peterrsongg/petesong/phase-3-pr4-3/3 * Geneate DeleteBucketInventoryConfiguration stack-info: PR: #4157, branch: peterrsongg/petesong/phase-3-pr4-3/4 * Generate PutBucketAcclerateConfiguration stack-info: PR: #4158, branch: peterrsongg/petesong/phase-3-pr4-3/5
* Generate PutBucketInventoryConfiguration stack-info: PR: #4154, branch: peterrsongg/petesong/phase-3-pr4-3/1 * Generate GetBucketInventoryConfiguration stack-info: PR: #4155, branch: peterrsongg/petesong/phase-3-pr4-3/2 * Generate ListBucketInventoryConfigurations stack-info: PR: #4156, branch: peterrsongg/petesong/phase-3-pr4-3/3 * Geneate DeleteBucketInventoryConfiguration stack-info: PR: #4157, branch: peterrsongg/petesong/phase-3-pr4-3/4 * Generate PutBucketAcclerateConfiguration stack-info: PR: #4158, branch: peterrsongg/petesong/phase-3-pr4-3/5 * Generate PutBucketRequestPayment stack-info: PR: #4159, branch: peterrsongg/petesong/phase-3-pr4-3/6
Description
Generates
ListBucketInventoryConfigurationMade from public to internal
This method has been moved from public to internal. Will call that out in changelog. It is just the IsSet method.
Motivation and Context
Testing
DRY_RUN Build id: 207f32c4-32c7-4ed1-bb1e-fea3028bf563 succeeded
Screenshots (if appropriate)
Types of changes
Checklist
License