forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
.NET SDK Resource Provider:'Runtime'
REST Spec PR 'Azure/azure-rest-api-specs#5793' REST Spec PR Author 'moabba' REST Spec PR Last commit
- Loading branch information
Showing
25 changed files
with
1,371 additions
and
963 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
70 changes: 0 additions & 70 deletions
70
src/SDKs/CognitiveServices/dataPlane/Language/LUIS/Runtime/Generated/IPrediction.cs
This file was deleted.
Oops, something went wrong.
104 changes: 104 additions & 0 deletions
104
...SDKs/CognitiveServices/dataPlane/Language/LUIS/Runtime/Generated/IPredictionOperations.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,104 @@ | ||
// <auto-generated> | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. See License.txt in the project root for | ||
// license information. | ||
// | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
// Changes may cause incorrect behavior and will be lost if the code is | ||
// regenerated. | ||
// </auto-generated> | ||
|
||
namespace Microsoft.Azure.CognitiveServices.Language.LUIS.Runtime | ||
{ | ||
using Microsoft.Rest; | ||
using Models; | ||
using System.Collections; | ||
using System.Collections.Generic; | ||
using System.Threading; | ||
using System.Threading.Tasks; | ||
|
||
/// <summary> | ||
/// PredictionOperations operations. | ||
/// </summary> | ||
public partial interface IPredictionOperations | ||
{ | ||
/// <summary> | ||
/// Gets the predictions for an application version. | ||
/// </summary> | ||
/// <param name='appId'> | ||
/// The application ID. | ||
/// </param> | ||
/// <param name='versionId'> | ||
/// The application version ID. | ||
/// </param> | ||
/// <param name='predictionRequest'> | ||
/// The prediction request parameters. | ||
/// </param> | ||
/// <param name='verbose'> | ||
/// Indicates whether to get extra metadata for the entities | ||
/// predictions or not. | ||
/// </param> | ||
/// <param name='showAllIntents'> | ||
/// Indicates whether to return all the intents in the response or just | ||
/// the top intent. | ||
/// </param> | ||
/// <param name='log'> | ||
/// Indicates whether to log the endpoint query or not. | ||
/// </param> | ||
/// <param name='customHeaders'> | ||
/// The headers that will be added to request. | ||
/// </param> | ||
/// <param name='cancellationToken'> | ||
/// The cancellation token. | ||
/// </param> | ||
/// <exception cref="ErrorException"> | ||
/// Thrown when the operation returned an invalid status code | ||
/// </exception> | ||
/// <exception cref="Microsoft.Rest.SerializationException"> | ||
/// Thrown when unable to deserialize the response | ||
/// </exception> | ||
/// <exception cref="Microsoft.Rest.ValidationException"> | ||
/// Thrown when a required parameter is null | ||
/// </exception> | ||
Task<HttpOperationResponse<PredictionResponse>> GetVersionPredictionWithHttpMessagesAsync(System.Guid appId, string versionId, PredictionRequest predictionRequest, bool? verbose = default(bool?), bool? showAllIntents = default(bool?), bool? log = default(bool?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); | ||
/// <summary> | ||
/// Gets the predictions for an application slot. | ||
/// </summary> | ||
/// <param name='appId'> | ||
/// The application ID. | ||
/// </param> | ||
/// <param name='slotName'> | ||
/// The application slot name. | ||
/// </param> | ||
/// <param name='predictionRequest'> | ||
/// The prediction request parameters. | ||
/// </param> | ||
/// <param name='verbose'> | ||
/// Indicates whether to get extra metadata for the entities | ||
/// predictions or not. | ||
/// </param> | ||
/// <param name='showAllIntents'> | ||
/// Indicates whether to return all the intents in the response or just | ||
/// the top intent. | ||
/// </param> | ||
/// <param name='log'> | ||
/// Indicates whether to log the endpoint query or not. | ||
/// </param> | ||
/// <param name='customHeaders'> | ||
/// The headers that will be added to request. | ||
/// </param> | ||
/// <param name='cancellationToken'> | ||
/// The cancellation token. | ||
/// </param> | ||
/// <exception cref="ErrorException"> | ||
/// Thrown when the operation returned an invalid status code | ||
/// </exception> | ||
/// <exception cref="Microsoft.Rest.SerializationException"> | ||
/// Thrown when unable to deserialize the response | ||
/// </exception> | ||
/// <exception cref="Microsoft.Rest.ValidationException"> | ||
/// Thrown when a required parameter is null | ||
/// </exception> | ||
Task<HttpOperationResponse<PredictionResponse>> GetSlotPredictionWithHttpMessagesAsync(System.Guid appId, string slotName, PredictionRequest predictionRequest, bool? verbose = default(bool?), bool? showAllIntents = default(bool?), bool? log = default(bool?), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); | ||
} | ||
} |
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.