Skip to content
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

Remove FieldBuilder #12464

Merged
merged 2 commits into from
Jun 3, 2020
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 @@ -102,20 +102,6 @@ public SuggestOptions() { }
}
namespace Azure.Search.Documents.Indexes
{
public static partial class FieldBuilder
{
public static System.Collections.Generic.IList<Azure.Search.Documents.Indexes.Models.SearchField> Build(System.Type type) { throw null; }
public static System.Collections.Generic.IList<Azure.Search.Documents.Indexes.Models.SearchField> Build<T>() { throw null; }
}
[System.AttributeUsageAttribute(System.AttributeTargets.Field | System.AttributeTargets.Property, AllowMultiple=false, Inherited=true)]
public partial class SearchableFieldAttribute : Azure.Search.Documents.Indexes.SimpleFieldAttribute
{
public SearchableFieldAttribute(bool collection = false) : base (default(Azure.Search.Documents.Indexes.Models.SearchFieldDataType), default(bool)) { }
public string AnalyzerName { get { throw null; } set { } }
public string IndexAnalyzerName { get { throw null; } set { } }
public string SearchAnalyzerName { get { throw null; } set { } }
public string[] SynonymMapNames { get { throw null; } set { } }
}
public partial class SearchIndexClient
{
protected SearchIndexClient() { }
Expand Down Expand Up @@ -215,17 +201,6 @@ public SearchIndexerClient(System.Uri endpoint, Azure.AzureKeyCredential credent
public virtual Azure.Response RunIndexer(string indexerName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
public virtual System.Threading.Tasks.Task<Azure.Response> RunIndexerAsync(string indexerName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
}
[System.AttributeUsageAttribute(System.AttributeTargets.Field | System.AttributeTargets.Property, AllowMultiple=false, Inherited=true)]
public partial class SimpleFieldAttribute : System.Attribute
{
public SimpleFieldAttribute(Azure.Search.Documents.Indexes.Models.SearchFieldDataType type, bool collection = false) { }
public bool IsFacetable { get { throw null; } set { } }
public bool IsFilterable { get { throw null; } set { } }
public bool IsHidden { get { throw null; } set { } }
public bool IsKey { get { throw null; } set { } }
public bool IsSortable { get { throw null; } set { } }
public Azure.Search.Documents.Indexes.Models.SearchFieldDataType Type { get { throw null; } }
}
}
namespace Azure.Search.Documents.Indexes.Models
{
Expand Down
49 changes: 0 additions & 49 deletions sdk/search/Azure.Search.Documents/src/Indexes/FieldBuilder.cs

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

21 changes: 0 additions & 21 deletions sdk/search/Azure.Search.Documents/tests/FieldBuilderTests.cs

This file was deleted.

This file was deleted.

Loading