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
Expand Up @@ -9,6 +9,10 @@ namespace Microsoft.Azure.Search
using Microsoft.Azure.Search.Models;
using Microsoft.Rest.Azure;

/// <summary>
/// Operations for managing datasources.
/// <see href="https://msdn.microsoft.com/library/azure/dn946891.aspx" />
/// </summary>
public static partial class DataSourcesOperationsExtensions
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ namespace Microsoft.Azure.Search
using Microsoft.Rest.Azure;
using Models;

/// <summary>
/// DataSourcesOperations operations.
/// </summary>
public partial interface IDataSourcesOperations
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ namespace Microsoft.Azure.Search
using Microsoft.Azure.Search.Models;
using Microsoft.Rest.Azure;

/// <summary>
/// Operations for querying an index and uploading, merging, and deleting documents.
/// <see href="https://msdn.microsoft.com/library/azure/dn800962.aspx" />
/// </summary>
public static partial class DocumentsOperationsExtensions
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,9 @@ namespace Microsoft.Azure.Search.Models
/// </summary>
public class Document : Dictionary<string, object>
{
/// <summary>
/// Initializes a new instance of the Document class.
/// </summary>
public Document() { }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ namespace Microsoft.Azure.Search
using Microsoft.Rest.Azure;
using Models;

/// <summary>
/// DataSourcesOperations operations.
/// </summary>
public partial interface IIndexersOperations
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@

namespace Microsoft.Azure.Search
{
using System.Net;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Azure.Search.Models;
using Microsoft.Rest.Azure;

public static partial class IndexerOperationsExtensions
/// <summary>
/// Operations for managing indexers.
/// <see href="https://msdn.microsoft.com/library/azure/dn946891.aspx" />
/// </summary>
public static partial class IndexersOperationsExtensions
{
/// <summary>
/// Determines whether or not the given indexer exists in the Azure Search service.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ namespace Microsoft.Azure.Search.Models
using System.Collections.Generic;
using Newtonsoft.Json;

/// <summary>
/// Represents the result of an individual indexer execution.
/// </summary>
public class IndexerExecutionResult
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ namespace Microsoft.Azure.Search
using Microsoft.Azure.Search.Models;
using Microsoft.Rest.Azure;

/// <summary>
/// Operations for managing indexes.
/// <see href="https://msdn.microsoft.com/library/azure/dn798918.aspx" />
/// </summary>
public static partial class IndexesOperationsExtensions
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ namespace Microsoft.Azure.Search.Models
using Microsoft.Rest;
using Newtonsoft.Json;

/// <summary>
/// Represents a field in an index definition in Azure Search, which describes the name, data type, and search
/// behavior of a field.
/// <see href="https://msdn.microsoft.com/library/azure/dn798941.aspx" />
/// </summary>
public class Field
{
[JsonProperty("type")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ namespace Microsoft.Azure.Search.Models
{
using Newtonsoft.Json;

/// <summary>
/// Provides parameter values to a magnitude scoring function.
/// </summary>
public class MagnitudeScoringParameters
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ namespace Microsoft.Azure.Search.Models
using Microsoft.Rest;
using Newtonsoft.Json;

/// <summary>
/// Defines parameters for an Azure Search index that influence scoring in search queries.
/// <see href="https://msdn.microsoft.com/library/azure/dn798928.aspx" />
/// </summary>
public class ScoringProfile
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ namespace Microsoft.Azure.Search.Models
using System;
using Newtonsoft.Json;

/// <summary>
/// Additional parameters for the Count operation.
/// </summary>
public partial class SearchRequestOptions
{
private Guid? _requestId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespace Microsoft.Azure.Search.Models
using Microsoft.Rest.Azure;

/// <summary>
/// Additional parameters for the Count operation.
/// Additional parameters for the Search operations.
/// </summary>
public partial class SearchRequestOptions
{
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Microsoft.Azure.Search
-->
<SdkNuGetPackage Include="Microsoft.Azure.Search">
<PackageVersion>1.0.0-preview</PackageVersion>
<PackageVersion>1.0.1-preview</PackageVersion>
<Folder>$(MSBuildThisFileDirectory)</Folder>
</SdkNuGetPackage>
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata minClientVersion="2.5">
<id>Microsoft.Azure.Search</id>
<title>Microsoft Azure Search Library</title>
<releaseNotes>IMPORTANT: This release contains breaking changes. See this article for details on how to upgrade: http://aka.ms/tl0wy8 This preview release of the Azure Search .NET SDK is based on the new AutoRest code generator and client runtime library. It includes serialization changes based on customer feedback, as well as interface changes to be consistent with other new AutoRest-based Azure client libraries.</releaseNotes>
<releaseNotes>IMPORTANT: This release contains breaking changes. See this article for details on how to upgrade: http://aka.ms/search-sdk-upgrade This preview release of the Azure Search .NET SDK is based on the new AutoRest code generator and client runtime library. It includes serialization changes based on customer feedback, as well as interface changes to be consistent with other new AutoRest-based Azure client libraries.</releaseNotes>
<version>$version$</version>
<authors>Microsoft</authors>
<owners>azure-sdk, Microsoft</owners>
Expand Down
3 changes: 1 addition & 2 deletions src/Search/Microsoft.Azure.Search/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using Microsoft.Azure.Search;

[assembly: AssemblyTitle("Microsoft Azure Search Library")]
Expand Down Expand Up @@ -35,6 +34,6 @@ internal class Consts
public const string TargetApiVersion = "2015-02-28";

// Making this a constant so we can use it to set the UserAgent header.
public const string AssemblyFileVersion = "1.0.0.0";
public const string AssemblyFileVersion = "1.0.1.0";
}
}