-
Notifications
You must be signed in to change notification settings - Fork 865
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
Removed customization in ec2.customizations.json which excluded DryRun property from service request model and marked AmazonEC2Client.DryRun() extension method as obsolete. #3665
Conversation
47f6437
to
675307c
Compare
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.
Next time don't include the generated files or just include a small sample. Otherwise the PRs are too large and the page is very unresponsive.
"serviceName": "EC2", | ||
"type": "patch", | ||
"changeLogMessages": [ | ||
"Removed customization in ec2.customizations.json which excluded DryRun property from service request model and marked AmazonEC2Client.DryRun() extension method as obsolete." |
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.
The change log should be focused on the customer and they won't understanding anything about removing the customization file. Here is my suggestion.
[Breaking Change] Removed DryRun method from service client. To perform a dry run use the DryRun property on the request object for individual EC2 operations.
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.
Thanks for the review. Updated change log message.
675307c
to
b877e67
Compare
"serviceName": "EC2", | ||
"type": "patch", | ||
"changeLogMessages": [ | ||
"[Breaking Change] Removed DryRun method from service client. To perform a dry run use the DryRun property on the request object for individual EC2 operations." |
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.
My mistake in the previous comment. This should say obsoleted not removed.
[Breaking Change] Obsoleted DryRun method from service client. To perform a dry run use the DryRun property on the request object for individual EC2 operations.
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.
Fixed
…n property from service request model and marked AmazonEC2Client.DryRun() extension method as obsolete.
b877e67
to
932bbef
Compare
Description
Removed customization in ec2.customizations.json which excluded
DryRun
property from service request model and markedAmazonEC2Client.DryRun()
extension method as obsolete.Motivation and Context
Follow up action item for #3595 in V4.
NOTE:
DryRun
property astrue
when usingDescribeImages
API operation.DryRun
property is error response, which isDryRunOperation
if there are necessary permissions, otherwise, it isUnauthorizedOperation
.Testing
Dry-run
DRY_RUN-0c782e9e-d350-47d3-91bf-bce3093fc969
completed successfully.Screenshots (if appropriate)
Types of changes
Checklist
License