-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simplify the Azure Search AI events and centralize setting the FullIn…
…dexName (#17596)
- Loading branch information
1 parent
d711ff5
commit 2b129dd
Showing
24 changed files
with
218 additions
and
172 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
...ardCore/OrchardCore.Search.AzureAI.Core/Models/AzureAISearchIndexSettingsCreateContext.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace OrchardCore.Search.AzureAI.Models; | ||
|
||
public class AzureAISearchIndexSettingsCreateContext | ||
{ | ||
public AzureAISearchIndexSettings Settings { get; } | ||
|
||
public AzureAISearchIndexSettingsCreateContext(AzureAISearchIndexSettings settings) | ||
{ | ||
ArgumentNullException.ThrowIfNull(settings); | ||
|
||
Settings = settings; | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
...ardCore/OrchardCore.Search.AzureAI.Core/Models/AzureAISearchIndexSettingsUpdateContext.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
namespace OrchardCore.Search.AzureAI.Models; | ||
|
||
public class AzureAISearchIndexSettingsUpdateContext | ||
{ | ||
public AzureAISearchIndexSettings Settings { get; } | ||
|
||
public AzureAISearchIndexSettingsUpdateContext(AzureAISearchIndexSettings settings) | ||
{ | ||
ArgumentNullException.ThrowIfNull(settings); | ||
|
||
Settings = settings; | ||
} | ||
} |
13 changes: 0 additions & 13 deletions
13
...rdCore/OrchardCore.Search.AzureAI.Core/Models/AzureAISearchIndexSettingsUpdatedContext.cs
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
src/OrchardCore/OrchardCore.Search.AzureAI.Core/Models/AzureAISearchMappingContext.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.