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

Update to the latest swagger #18630

Closed
wants to merge 1 commit into from
Closed
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 @@ -460,6 +460,65 @@ public CustomAnalyzer(string name, Azure.Search.Documents.Indexes.Models.Lexical
public System.Collections.Generic.IList<Azure.Search.Documents.Indexes.Models.TokenFilterName> TokenFilters { get { throw null; } }
public Azure.Search.Documents.Indexes.Models.LexicalTokenizerName TokenizerName { get { throw null; } set { } }
}
public partial class CustomEntity
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These were added in Azure/azure-rest-api-specs#11113 and, it seems, never picked up (we hadn't generated isnce Oct. 2020).

{
public CustomEntity(string name) { }
public bool? AccentSensitive { get { throw null; } set { } }
public System.Collections.Generic.IList<Azure.Search.Documents.Indexes.Models.CustomEntityAlias> Aliases { get { throw null; } set { } }
public bool? CaseSensitive { get { throw null; } set { } }
public bool? DefaultAccentSensitive { get { throw null; } set { } }
public bool? DefaultCaseSensitive { get { throw null; } set { } }
public int? DefaultFuzzyEditDistance { get { throw null; } set { } }
public string Description { get { throw null; } set { } }
public int? FuzzyEditDistance { get { throw null; } set { } }
public string Id { get { throw null; } set { } }
public string Name { get { throw null; } set { } }
public string Subtype { get { throw null; } set { } }
public string Type { get { throw null; } set { } }
}
public partial class CustomEntityAlias
{
public CustomEntityAlias(string text) { }
public bool? AccentSensitive { get { throw null; } set { } }
public bool? CaseSensitive { get { throw null; } set { } }
public int? FuzzyEditDistance { get { throw null; } set { } }
public string Text { get { throw null; } set { } }
}
public partial class CustomEntityLookupSkill : Azure.Search.Documents.Indexes.Models.SearchIndexerSkill
{
public CustomEntityLookupSkill(System.Collections.Generic.IEnumerable<Azure.Search.Documents.Indexes.Models.InputFieldMappingEntry> inputs, System.Collections.Generic.IEnumerable<Azure.Search.Documents.Indexes.Models.OutputFieldMappingEntry> outputs) { }
public Azure.Search.Documents.Indexes.Models.CustomEntityLookupSkillLanguage? DefaultLanguageCode { get { throw null; } set { } }
public string EntitiesDefinitionUri { get { throw null; } set { } }
public bool? GlobalDefaultAccentSensitive { get { throw null; } set { } }
public bool? GlobalDefaultCaseSensitive { get { throw null; } set { } }
public int? GlobalDefaultFuzzyEditDistance { get { throw null; } set { } }
public System.Collections.Generic.IList<Azure.Search.Documents.Indexes.Models.CustomEntity> InlineEntitiesDefinition { get { throw null; } set { } }
}
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
public readonly partial struct CustomEntityLookupSkillLanguage : System.IEquatable<Azure.Search.Documents.Indexes.Models.CustomEntityLookupSkillLanguage>
{
private readonly object _dummy;
private readonly int _dummyPrimitive;
public CustomEntityLookupSkillLanguage(string value) { throw null; }
public static Azure.Search.Documents.Indexes.Models.CustomEntityLookupSkillLanguage Da { get { throw null; } }
public static Azure.Search.Documents.Indexes.Models.CustomEntityLookupSkillLanguage De { get { throw null; } }
public static Azure.Search.Documents.Indexes.Models.CustomEntityLookupSkillLanguage En { get { throw null; } }
public static Azure.Search.Documents.Indexes.Models.CustomEntityLookupSkillLanguage Es { get { throw null; } }
public static Azure.Search.Documents.Indexes.Models.CustomEntityLookupSkillLanguage Fi { get { throw null; } }
public static Azure.Search.Documents.Indexes.Models.CustomEntityLookupSkillLanguage Fr { get { throw null; } }
public static Azure.Search.Documents.Indexes.Models.CustomEntityLookupSkillLanguage It { get { throw null; } }
public static Azure.Search.Documents.Indexes.Models.CustomEntityLookupSkillLanguage Ko { get { throw null; } }
public static Azure.Search.Documents.Indexes.Models.CustomEntityLookupSkillLanguage Pt { get { throw null; } }
public bool Equals(Azure.Search.Documents.Indexes.Models.CustomEntityLookupSkillLanguage other) { throw null; }
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
public override bool Equals(object obj) { throw null; }
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
public override int GetHashCode() { throw null; }
public static bool operator ==(Azure.Search.Documents.Indexes.Models.CustomEntityLookupSkillLanguage left, Azure.Search.Documents.Indexes.Models.CustomEntityLookupSkillLanguage right) { throw null; }
public static implicit operator Azure.Search.Documents.Indexes.Models.CustomEntityLookupSkillLanguage (string value) { throw null; }
public static bool operator !=(Azure.Search.Documents.Indexes.Models.CustomEntityLookupSkillLanguage left, Azure.Search.Documents.Indexes.Models.CustomEntityLookupSkillLanguage right) { throw null; }
public override string ToString() { throw null; }
}
public partial class DataChangeDetectionPolicy
{
internal DataChangeDetectionPolicy() { }
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading