-
Notifications
You must be signed in to change notification settings - Fork 4k
EventGrid: Updated to use the latest version of the .NET SDK #5367
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
Changes from all commits
bc7dee6
f081465
03aa72f
5584981
2c24733
6cfdc4f
209856d
6b92c2e
cde0c4e
2c0c0c9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Microsoft.Azure.Management.EventGrid" version="1.1.0-preview" targetFramework="net452" /> | ||
<package id="Microsoft.Azure.Management.EventGrid" version="1.2.0-preview" targetFramework="net452" /> | ||
</packages> |
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.
@kalyanaj does this affect when users should decide between
New-AzureRmEventGridSubscription
vsUpdate-AzureRmEventGridSubscription
?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.
No, it shouldn't. Update-AzureRmEventGridSubscription maps to a PATCH request and can be used to perform a partial update of the resource (e.g. in the case of event subscriptions, I want to update only the "filter" and not the "destination"). New-AzureRmEventGridSubscription maps to a PUT request which either creates or replaces the resource.