Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/SDKs/EventGrid/AzSdk.RP.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!--This file and it's contents are updated at build time moving or editing might result in build failure. Take due deligence while editing this file-->
<PropertyGroup>
<AzureApiTag>EventGrid_2019-02-01-preview;</AzureApiTag>
<AzureApiTag>EventGrid_2019-06-01;</AzureApiTag>
<PackageTags>$(PackageTags);$(CommonTags);$(AzureApiTag);</PackageTags>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -51,19 +51,19 @@ internal DomainTopicsOperations(EventGridManagementClient client)
public EventGridManagementClient Client { get; private set; }

/// <summary>
/// Get a domain topic
/// Get a domain topic.
/// </summary>
/// <remarks>
/// Get properties of a domain topic
/// Get properties of a domain topic.
/// </remarks>
/// <param name='resourceGroupName'>
/// The name of the resource group within the user's subscription.
/// </param>
/// <param name='domainName'>
/// Name of the domain
/// Name of the domain.
/// </param>
/// <param name='domainTopicName'>
/// Name of the topic
/// Name of the topic.
/// </param>
/// <param name='customHeaders'>
/// Headers that will be added to request.
Expand Down Expand Up @@ -259,7 +259,7 @@ internal DomainTopicsOperations(EventGridManagementClient client)
}

/// <summary>
/// Create or update a domain topic
/// Create or update a domain topic.
/// </summary>
/// <remarks>
/// Asynchronously creates or updates a new domain topic with the specified
Expand All @@ -269,10 +269,10 @@ internal DomainTopicsOperations(EventGridManagementClient client)
/// The name of the resource group within the user's subscription.
/// </param>
/// <param name='domainName'>
/// Name of the domain
/// Name of the domain.
/// </param>
/// <param name='domainTopicName'>
/// Name of the domain topic
/// Name of the domain topic.
/// </param>
/// <param name='customHeaders'>
/// The headers that will be added to request.
Expand All @@ -288,19 +288,19 @@ internal DomainTopicsOperations(EventGridManagementClient client)
}

/// <summary>
/// Delete a domain topic
/// Delete a domain topic.
/// </summary>
/// <remarks>
/// Delete existing domain topic
/// Delete existing domain topic.
/// </remarks>
/// <param name='resourceGroupName'>
/// The name of the resource group within the user's subscription.
/// </param>
/// <param name='domainName'>
/// Name of the domain
/// Name of the domain.
/// </param>
/// <param name='domainTopicName'>
/// Name of the domain topic
/// Name of the domain topic.
/// </param>
/// <param name='customHeaders'>
/// The headers that will be added to request.
Expand Down Expand Up @@ -328,10 +328,18 @@ internal DomainTopicsOperations(EventGridManagementClient client)
/// Domain name.
/// </param>
/// <param name='filter'>
/// Filter the results using OData syntax.
/// The query used to filter the search results using OData syntax. Filtering
/// is permitted on the 'name' property only and with limited number of OData
/// operations. These operations are: the 'contains' function as well as the
/// following logical operations: not, and, or, eq (for equal), and ne (for not
/// equal). No arithmetic operations are supported. The following is a valid
/// filter example: $filter=contains(namE, 'PATTERN') and name ne 'PATTERN-1'.
/// The following is not a valid filter example: $filter=location eq 'westus'.
/// </param>
/// <param name='top'>
/// The number of results to return.
/// The number of results to return per page for the list operation. Valid
/// range for top parameter is 1 to 100. If not specified, the default number
/// of results to be returned is 20 items per page.
/// </param>
/// <param name='customHeaders'>
/// Headers that will be added to request.
Expand Down Expand Up @@ -531,7 +539,7 @@ internal DomainTopicsOperations(EventGridManagementClient client)
}

/// <summary>
/// Create or update a domain topic
/// Create or update a domain topic.
/// </summary>
/// <remarks>
/// Asynchronously creates or updates a new domain topic with the specified
Expand All @@ -541,10 +549,10 @@ internal DomainTopicsOperations(EventGridManagementClient client)
/// The name of the resource group within the user's subscription.
/// </param>
/// <param name='domainName'>
/// Name of the domain
/// Name of the domain.
/// </param>
/// <param name='domainTopicName'>
/// Name of the domain topic
/// Name of the domain topic.
/// </param>
/// <param name='customHeaders'>
/// Headers that will be added to request.
Expand Down Expand Up @@ -740,19 +748,19 @@ internal DomainTopicsOperations(EventGridManagementClient client)
}

/// <summary>
/// Delete a domain topic
/// Delete a domain topic.
/// </summary>
/// <remarks>
/// Delete existing domain topic
/// Delete existing domain topic.
/// </remarks>
/// <param name='resourceGroupName'>
/// The name of the resource group within the user's subscription.
/// </param>
/// <param name='domainName'>
/// Name of the domain
/// Name of the domain.
/// </param>
/// <param name='domainTopicName'>
/// Name of the domain topic
/// Name of the domain topic.
/// </param>
/// <param name='customHeaders'>
/// Headers that will be added to request.
Expand Down
Loading