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
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Installing AutoRest version: 2.0.4302
AutoRest installed successfully.
Commencing code generation
Generating CSharp code
Executing AutoRest command
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/search/data-plane/Microsoft.Azure.Search.Data/readme.md --csharp --version=2.0.4302 --reflect-api-versions --tag=track1-package-2019-05 --csharp-sdks-folder=C:\Projects\azure-sdk-for-net\sdk
2019-10-22 17:22:47 UTC
Azure-rest-api-specs repository information
GitHub fork: Azure
Branch: master
Commit: 282efa7dd8301ba615d8741f740f1ed7f500fed1
AutoRest information
Requested version: 2.0.4302
Bootstrapper version: autorest@2.0.4302
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ AutoRest installed successfully.
Commencing code generation
Generating CSharp code
Executing AutoRest command
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/search/data-plane/Microsoft.Azure.Search.Service/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=D:\src\azure-sdk-for-net\sdk
2019-08-21 17:09:45 UTC
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/search/data-plane/Microsoft.Azure.Search.Service/readme.md --csharp --version=latest --reflect-api-versions --tag=track1-package-2019-05 --csharp-sdks-folder=C:\Projects\azure-sdk-for-net\sdk
2019-10-22 17:07:06 UTC
Azure-rest-api-specs repository information
GitHub fork: Azure
Branch: master
Commit: 156dd2a4a7549e9d443d7e262129e037846ead1a
Commit: 282efa7dd8301ba615d8741f740f1ed7f500fed1
AutoRest information
Requested version: latest
Bootstrapper version: autorest@2.0.4283
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Microsoft.Azure.Search.Common
using System.Linq;

/// <summary>
/// Defines extension methods for IEnumerable that are used in the implementation of the Azure Search
/// Defines extension methods for IEnumerable that are used in the implementation of the Azure Cognitive Search
/// .NET SDK.
/// </summary>
public static class EnumerableExtensions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ namespace Microsoft.Azure.Search.Models

/// <summary>
/// Indicates that the public properties of a model type should be serialized as camel-case in order to match
/// the field names of an Azure Search index.
/// the field names of a search index.
/// </summary>
/// <remarks>
/// Types without this attribute are expected to have property names that exactly match their corresponding
/// fields names in Azure Search. Otherwise, it would not be possible to use instances of the type to populate
/// fields names in Azure Cognitive Search. Otherwise, it would not be possible to use instances of the type to populate
/// the index.
/// </remarks>
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, AllowMultiple = false, Inherited = true)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ namespace Microsoft.Azure.Search
using Rest;

/// <summary>
/// Credentials used to authenticate to an Azure Search service.
/// Credentials used to authenticate to a search service.
/// <see href="https://docs.microsoft.com/rest/api/searchservice/"/>
/// </summary>
/// <remarks>
/// See <see href="https://docs.microsoft.com/azure/search/search-security-api-keys"/> for more information about API keys in Azure Search.
/// See <see href="https://docs.microsoft.com/azure/search/search-security-api-keys"/> for more information about API keys in Azure Cognitive Search.
/// </remarks>
public class SearchCredentials : ServiceClientCredentials
{
/// <summary>
/// Initializes a new instance of the SearchCredentials class with a query key or an admin key. Use a query
/// key if your application does not require write access to the Search Service or index.
/// </summary>
/// <param name="apiKey">api-key used to authenticate to the Azure Search service.</param>
/// <param name="apiKey">api-key used to authenticate to the search service.</param>
/// <remarks>
/// If your application performs only query operations on an index, we recommend passing a query key for the
/// <paramref name="apiKey"/> parameter. This ensures that you have read-only access to the index, which is
Expand All @@ -36,7 +36,7 @@ public SearchCredentials(string apiKey)
}

/// <summary>
/// api-key used to authenticate to an Azure Search service. Can be either a query key for querying only, or
/// api-key used to authenticate to a search service. Can be either a query key for querying only, or
/// an admin key that enables index and document management as well.
/// </summary>
public string ApiKey { get; }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageTags>Microsoft Azure Search;Search</PackageTags>
<Description>Common types needed by the Azure Search .NET libraries. This is not the package you are looking for; It is only meant to be used as a dependency.</Description>
<AssemblyTitle>Microsoft Azure Search Common Library</AssemblyTitle>
<PackageTags>Microsoft Azure Cognitive Search;Microsoft Azure Search;Search</PackageTags>
<Description>Common types needed by the Azure Cognitive Search .NET libraries. This is not the package you are looking for; It is only meant to be used as a dependency.</Description>
<AssemblyTitle>Microsoft Azure Cognitive Search Common Library</AssemblyTitle>
<TargetFrameworks>$(RequiredTargetFrameworks)</TargetFrameworks>
<PackageReleaseNotes>See the Microsoft.Azure.Search package for detailed release notes on the entire Azure Search .NET SDK.</PackageReleaseNotes>
<PackageReleaseNotes>See the Microsoft.Azure.Cognitive Search package for detailed release notes on the entire Azure Cognitive Search .NET SDK.</PackageReleaseNotes>
</PropertyGroup>
</Project>
Loading