Skip to content

Commit

Permalink
Adding connection property to event grid output attribute (#1835)
Browse files Browse the repository at this point in the history
* adding attribute

* comments

* updating version

* Update extensions/Worker.Extensions.EventGrid/release_notes.md

Co-authored-by: Lilian Kasem <[email protected]>

---------

Co-authored-by: Lilian Kasem <[email protected]>
  • Loading branch information
aishwaryabh and liliankasem authored Aug 23, 2023
1 parent 86f8186 commit ddfdc35
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions extensions/Worker.Extensions.EventGrid/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
- My change description (#PR/#issue)
-->

### Microsoft.Azure.Functions.Worker.Extensions.EventGrid <version>
### Microsoft.Azure.Functions.Worker.Extensions.EventGrid 3.4.0

- <event>
- Update EventGrid output binding to add Connection property (#1835)
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,10 @@ public EventGridOutputAttribute()

/// <summary>Gets or sets the Topic Key setting. You can find information on getting the Key for a topic here: https://docs.microsoft.com/en-us/azure/event-grid/custom-event-quickstart#send-an-event-to-your-topic </summary>
public string? TopicKeySetting { get; set; }

/// <summary>
/// Gets or sets the app setting name that contains the Event Grid topic's connection information. When setting the `Connection` property, the `TopicEndpointUri` and `TopicKeySetting` properties should NOT be set.
/// </summary>
public string? Connection { get; set; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Description>Azure Event Grid extensions for .NET isolated functions</Description>

<!--Version information-->
<VersionPrefix>3.3.0</VersionPrefix>
<VersionPrefix>3.4.0</VersionPrefix>

<!--Temporarily opting out of documentation. Pending documentation-->
<GenerateDocumentationFile>false</GenerateDocumentationFile>
Expand Down

0 comments on commit ddfdc35

Please sign in to comment.