diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Features.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Features.cs index c0939ca4d880..d76caa0bde63 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Features.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Features.cs @@ -51,8 +51,7 @@ public Features(LUISAuthoringClient client) public LUISAuthoringClient Client { get; private set; } /// - /// [DEPRECATED NOTICE: This operation will soon be removed] Gets all the - /// pattern features. + /// Creates a new phraselist feature in a version of the application. /// /// /// The application ID. @@ -60,11 +59,9 @@ public Features(LUISAuthoringClient client) /// /// The version ID. /// - /// - /// The number of entries to skip. Default value is 0. - /// - /// - /// The number of entries to return. Maximum page size is 500. Default is 100. + /// + /// A Phraselist object containing Name, comma-separated Phrases and the + /// isExchangeable boolean. Default value for isExchangeable is true. /// /// /// Headers that will be added to request. @@ -87,8 +84,7 @@ public Features(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] - public async Task>> ListApplicationVersionPatternFeaturesWithHttpMessagesAsync(System.Guid appId, string versionId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> AddPhraseListWithHttpMessagesAsync(System.Guid appId, string versionId, PhraselistCreateObject phraselistCreateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -98,17 +94,9 @@ public Features(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } - if (skip < 0) - { - throw new ValidationException(ValidationRules.InclusiveMinimum, "skip", 0); - } - if (take > 500) - { - throw new ValidationException(ValidationRules.InclusiveMaximum, "take", 500); - } - if (take < 0) + if (phraselistCreateObject == null) { - throw new ValidationException(ValidationRules.InclusiveMinimum, "take", 0); + throw new ValidationException(ValidationRules.CannotBeNull, "phraselistCreateObject"); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -119,34 +107,20 @@ public Features(LUISAuthoringClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("appId", appId); tracingParameters.Add("versionId", versionId); - tracingParameters.Add("skip", skip); - tracingParameters.Add("take", take); + tracingParameters.Add("phraselistCreateObject", phraselistCreateObject); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListApplicationVersionPatternFeatures", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "AddPhraseList", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/patterns"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/phraselists"; _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); - List _queryParameters = new List(); - if (skip != null) - { - _queryParameters.Add(string.Format("skip={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(skip, Client.SerializationSettings).Trim('"')))); - } - if (take != null) - { - _queryParameters.Add(string.Format("take={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(take, Client.SerializationSettings).Trim('"')))); - } - if (_queryParameters.Count > 0) - { - _url += "?" + string.Join("&", _queryParameters); - } // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers @@ -165,6 +139,12 @@ public Features(LUISAuthoringClient client) // Serialize Request string _requestContent = null; + if(phraselistCreateObject != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(phraselistCreateObject, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -185,7 +165,7 @@ public Features(LUISAuthoringClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 201) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -215,16 +195,16 @@ public Features(LUISAuthoringClient client) throw ex; } // Create Result - var _result = new HttpOperationResponse>(); + var _result = new HttpOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response - if ((int)_statusCode == 200) + if ((int)_statusCode == 201) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -244,7 +224,7 @@ public Features(LUISAuthoringClient client) } /// - /// Creates a new phraselist feature in a version of the application. + /// Gets all the phraselist features in a version of the application. /// /// /// The application ID. @@ -252,9 +232,11 @@ public Features(LUISAuthoringClient client) /// /// The version ID. /// - /// - /// A Phraselist object containing Name, comma-separated Phrases and the - /// isExchangeable boolean. Default value for isExchangeable is true. + /// + /// The number of entries to skip. Default value is 0. + /// + /// + /// The number of entries to return. Maximum page size is 500. Default is 100. /// /// /// Headers that will be added to request. @@ -277,7 +259,7 @@ public Features(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task> AddPhraseListWithHttpMessagesAsync(System.Guid appId, string versionId, PhraselistCreateObject phraselistCreateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListPhraseListsWithHttpMessagesAsync(System.Guid appId, string versionId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -287,9 +269,17 @@ public Features(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } - if (phraselistCreateObject == null) + if (skip < 0) { - throw new ValidationException(ValidationRules.CannotBeNull, "phraselistCreateObject"); + throw new ValidationException(ValidationRules.InclusiveMinimum, "skip", 0); + } + if (take > 500) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "take", 500); + } + if (take < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "take", 0); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -300,9 +290,10 @@ public Features(LUISAuthoringClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("appId", appId); tracingParameters.Add("versionId", versionId); - tracingParameters.Add("phraselistCreateObject", phraselistCreateObject); + tracingParameters.Add("skip", skip); + tracingParameters.Add("take", take); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "AddPhraseList", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListPhraseLists", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; @@ -310,10 +301,23 @@ public Features(LUISAuthoringClient client) _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); + List _queryParameters = new List(); + if (skip != null) + { + _queryParameters.Add(string.Format("skip={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(skip, Client.SerializationSettings).Trim('"')))); + } + if (take != null) + { + _queryParameters.Add(string.Format("take={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(take, Client.SerializationSettings).Trim('"')))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers @@ -332,12 +336,6 @@ public Features(LUISAuthoringClient client) // Serialize Request string _requestContent = null; - if(phraselistCreateObject != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(phraselistCreateObject, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -358,7 +356,7 @@ public Features(LUISAuthoringClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 201) + if ((int)_statusCode != 200) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -388,16 +386,16 @@ public Features(LUISAuthoringClient client) throw ex; } // Create Result - var _result = new HttpOperationResponse(); + var _result = new HttpOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response - if ((int)_statusCode == 201) + if ((int)_statusCode == 200) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -417,7 +415,8 @@ public Features(LUISAuthoringClient client) } /// - /// Gets all the phraselist features in a version of the application. + /// Gets all the extraction phraselist and pattern features in a version of the + /// application. /// /// /// The application ID. @@ -452,7 +451,7 @@ public Features(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListPhraseListsWithHttpMessagesAsync(System.Guid appId, string versionId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ListWithHttpMessagesAsync(System.Guid appId, string versionId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -486,11 +485,11 @@ public Features(LUISAuthoringClient client) tracingParameters.Add("skip", skip); tracingParameters.Add("take", take); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListPhraseLists", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/phraselists"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/features"; _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); @@ -579,7 +578,7 @@ public Features(LUISAuthoringClient client) throw ex; } // Create Result - var _result = new HttpOperationResponse>(); + var _result = new HttpOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response @@ -588,7 +587,7 @@ public Features(LUISAuthoringClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -608,8 +607,7 @@ public Features(LUISAuthoringClient client) } /// - /// Gets all the extraction phraselist and pattern features in a version of the - /// application. + /// Gets phraselist feature info in a version of the application. /// /// /// The application ID. @@ -617,11 +615,8 @@ public Features(LUISAuthoringClient client) /// /// The version ID. /// - /// - /// The number of entries to skip. Default value is 0. - /// - /// - /// The number of entries to return. Maximum page size is 500. Default is 100. + /// + /// The ID of the feature to be retrieved. /// /// /// Headers that will be added to request. @@ -644,7 +639,7 @@ public Features(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ListWithHttpMessagesAsync(System.Guid appId, string versionId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetPhraseListWithHttpMessagesAsync(System.Guid appId, string versionId, int phraselistId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -654,18 +649,6 @@ public Features(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } - if (skip < 0) - { - throw new ValidationException(ValidationRules.InclusiveMinimum, "skip", 0); - } - if (take > 500) - { - throw new ValidationException(ValidationRules.InclusiveMaximum, "take", 500); - } - if (take < 0) - { - throw new ValidationException(ValidationRules.InclusiveMinimum, "take", 0); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -675,34 +658,191 @@ public Features(LUISAuthoringClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("appId", appId); tracingParameters.Add("versionId", versionId); - tracingParameters.Add("skip", skip); - tracingParameters.Add("take", take); + tracingParameters.Add("phraselistId", phraselistId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetPhraseList", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/features"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/phraselists/{phraselistId}"; _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); - List _queryParameters = new List(); - if (skip != null) + _url = _url.Replace("{phraselistId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(phraselistId, Client.SerializationSettings).Trim('"'))); + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + + + if (customHeaders != null) { - _queryParameters.Add(string.Format("skip={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(skip, Client.SerializationSettings).Trim('"')))); + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } } - if (take != null) + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) { - _queryParameters.Add(string.Format("take={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(take, Client.SerializationSettings).Trim('"')))); + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } - if (_queryParameters.Count > 0) + // Send Request + if (_shouldTrace) { - _url += "?" + string.Join("&", _queryParameters); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new HttpOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Updates the phrases, the state and the name of the phraselist feature in a + /// version of the application. + /// + /// + /// The application ID. + /// + /// + /// The version ID. + /// + /// + /// The ID of the feature to be updated. + /// + /// + /// The new values for: - Just a boolean called IsActive, in which case the + /// status of the feature will be changed. - Name, Pattern, Mode, and a boolean + /// called IsActive to update the feature. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> UpdatePhraseListWithHttpMessagesAsync(System.Guid appId, string versionId, int phraselistId, PhraselistUpdateObject phraselistUpdateObject = default(PhraselistUpdateObject), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.Endpoint == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.Endpoint"); + } + if (versionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("appId", appId); + tracingParameters.Add("versionId", versionId); + tracingParameters.Add("phraselistId", phraselistId); + tracingParameters.Add("phraselistUpdateObject", phraselistUpdateObject); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "UpdatePhraseList", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/phraselists/{phraselistId}"; + _url = _url.Replace("{Endpoint}", Client.Endpoint); + _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); + _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); + _url = _url.Replace("{phraselistId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(phraselistId, Client.SerializationSettings).Trim('"'))); // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PUT"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers @@ -721,6 +861,12 @@ public Features(LUISAuthoringClient client) // Serialize Request string _requestContent = null; + if(phraselistUpdateObject != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(phraselistUpdateObject, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -771,7 +917,7 @@ public Features(LUISAuthoringClient client) throw ex; } // Create Result - var _result = new HttpOperationResponse(); + var _result = new HttpOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response @@ -780,7 +926,7 @@ public Features(LUISAuthoringClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -800,7 +946,7 @@ public Features(LUISAuthoringClient client) } /// - /// Gets phraselist feature info in a version of the application. + /// Deletes a phraselist feature from a version of the application. /// /// /// The application ID. @@ -809,7 +955,7 @@ public Features(LUISAuthoringClient client) /// The version ID. /// /// - /// The ID of the feature to be retrieved. + /// The ID of the feature to be deleted. /// /// /// Headers that will be added to request. @@ -832,7 +978,7 @@ public Features(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetPhraseListWithHttpMessagesAsync(System.Guid appId, string versionId, int phraselistId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeletePhraseListWithHttpMessagesAsync(System.Guid appId, string versionId, int phraselistId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -853,7 +999,7 @@ public Features(LUISAuthoringClient client) tracingParameters.Add("versionId", versionId); tracingParameters.Add("phraselistId", phraselistId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetPhraseList", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "DeletePhraseList", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; @@ -865,7 +1011,7 @@ public Features(LUISAuthoringClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers @@ -934,7 +1080,7 @@ public Features(LUISAuthoringClient client) throw ex; } // Create Result - var _result = new HttpOperationResponse(); + var _result = new HttpOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response @@ -943,7 +1089,7 @@ public Features(LUISAuthoringClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -963,8 +1109,8 @@ public Features(LUISAuthoringClient client) } /// - /// Updates the phrases, the state and the name of the phraselist feature in a - /// version of the application. + /// Adds a new feature relation to be used by the intent in a version of the + /// application. /// /// /// The application ID. @@ -972,13 +1118,11 @@ public Features(LUISAuthoringClient client) /// /// The version ID. /// - /// - /// The ID of the feature to be updated. + /// + /// The intent classifier ID. /// - /// - /// The new values for: - Just a boolean called IsActive, in which case the - /// status of the feature will be changed. - Name, Pattern, Mode, and a boolean - /// called IsActive to update the feature. + /// + /// A Feature relation information object. /// /// /// Headers that will be added to request. @@ -1001,7 +1145,7 @@ public Features(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task> UpdatePhraseListWithHttpMessagesAsync(System.Guid appId, string versionId, int phraselistId, PhraselistUpdateObject phraselistUpdateObject = default(PhraselistUpdateObject), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> AddIntentFeatureWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid intentId, ModelFeatureInformation featureRelationCreateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -1011,6 +1155,10 @@ public Features(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } + if (featureRelationCreateObject == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "featureRelationCreateObject"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1020,22 +1168,22 @@ public Features(LUISAuthoringClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("appId", appId); tracingParameters.Add("versionId", versionId); - tracingParameters.Add("phraselistId", phraselistId); - tracingParameters.Add("phraselistUpdateObject", phraselistUpdateObject); + tracingParameters.Add("intentId", intentId); + tracingParameters.Add("featureRelationCreateObject", featureRelationCreateObject); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "UpdatePhraseList", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "AddIntentFeature", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/phraselists/{phraselistId}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/intents/{intentId}/features"; _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); - _url = _url.Replace("{phraselistId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(phraselistId, Client.SerializationSettings).Trim('"'))); + _url = _url.Replace("{intentId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(intentId, Client.SerializationSettings).Trim('"'))); // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers @@ -1054,9 +1202,9 @@ public Features(LUISAuthoringClient client) // Serialize Request string _requestContent = null; - if(phraselistUpdateObject != null) + if(featureRelationCreateObject != null) { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(phraselistUpdateObject, Client.SerializationSettings); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(featureRelationCreateObject, Client.SerializationSettings); _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } @@ -1139,7 +1287,8 @@ public Features(LUISAuthoringClient client) } /// - /// Deletes a phraselist feature from a version of the application. + /// Adds a new feature relation to be used by the entity in a version of the + /// application. /// /// /// The application ID. @@ -1147,8 +1296,11 @@ public Features(LUISAuthoringClient client) /// /// The version ID. /// - /// - /// The ID of the feature to be deleted. + /// + /// The entity extractor ID. + /// + /// + /// A Feature relation information object. /// /// /// Headers that will be added to request. @@ -1171,7 +1323,7 @@ public Features(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task> DeletePhraseListWithHttpMessagesAsync(System.Guid appId, string versionId, int phraselistId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> AddEntityFeatureWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid entityId, ModelFeatureInformation featureRelationCreateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -1181,6 +1333,10 @@ public Features(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } + if (featureRelationCreateObject == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "featureRelationCreateObject"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1190,21 +1346,22 @@ public Features(LUISAuthoringClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("appId", appId); tracingParameters.Add("versionId", versionId); - tracingParameters.Add("phraselistId", phraselistId); + tracingParameters.Add("entityId", entityId); + tracingParameters.Add("featureRelationCreateObject", featureRelationCreateObject); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "DeletePhraseList", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "AddEntityFeature", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/phraselists/{phraselistId}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/entities/{entityId}/features"; _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); - _url = _url.Replace("{phraselistId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(phraselistId, Client.SerializationSettings).Trim('"'))); + _url = _url.Replace("{entityId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(entityId, Client.SerializationSettings).Trim('"'))); // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers @@ -1223,6 +1380,12 @@ public Features(LUISAuthoringClient client) // Serialize Request string _requestContent = null; + if(featureRelationCreateObject != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(featureRelationCreateObject, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/FeaturesExtensions.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/FeaturesExtensions.cs index 4cf513f50045..22f8f77764e0 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/FeaturesExtensions.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/FeaturesExtensions.cs @@ -21,37 +21,6 @@ namespace Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring /// public static partial class FeaturesExtensions { - /// - /// [DEPRECATED NOTICE: This operation will soon be removed] Gets all the - /// pattern features. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The application ID. - /// - /// - /// The version ID. - /// - /// - /// The number of entries to skip. Default value is 0. - /// - /// - /// The number of entries to return. Maximum page size is 500. Default is 100. - /// - /// - /// The cancellation token. - /// - [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] - public static async Task> ListApplicationVersionPatternFeaturesAsync(this IFeatures operations, System.Guid appId, string versionId, int? skip = 0, int? take = 100, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.ListApplicationVersionPatternFeaturesWithHttpMessagesAsync(appId, versionId, skip, take, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - /// /// Creates a new phraselist feature in a version of the application. /// @@ -222,5 +191,65 @@ public static partial class FeaturesExtensions } } + /// + /// Adds a new feature relation to be used by the intent in a version of the + /// application. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The application ID. + /// + /// + /// The version ID. + /// + /// + /// The intent classifier ID. + /// + /// + /// A Feature relation information object. + /// + /// + /// The cancellation token. + /// + public static async Task AddIntentFeatureAsync(this IFeatures operations, System.Guid appId, string versionId, System.Guid intentId, ModelFeatureInformation featureRelationCreateObject, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.AddIntentFeatureWithHttpMessagesAsync(appId, versionId, intentId, featureRelationCreateObject, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Adds a new feature relation to be used by the entity in a version of the + /// application. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The application ID. + /// + /// + /// The version ID. + /// + /// + /// The entity extractor ID. + /// + /// + /// A Feature relation information object. + /// + /// + /// The cancellation token. + /// + public static async Task AddEntityFeatureAsync(this IFeatures operations, System.Guid appId, string versionId, System.Guid entityId, ModelFeatureInformation featureRelationCreateObject, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.AddEntityFeatureWithHttpMessagesAsync(appId, versionId, entityId, featureRelationCreateObject, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + } } diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/IFeatures.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/IFeatures.cs index f87b2df3b8df..53abb9f4d4a5 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/IFeatures.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/IFeatures.cs @@ -22,40 +22,6 @@ namespace Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring /// public partial interface IFeatures { - /// - /// [DEPRECATED NOTICE: This operation will soon be removed] Gets all - /// the pattern features. - /// - /// - /// The application ID. - /// - /// - /// The version ID. - /// - /// - /// The number of entries to skip. Default value is 0. - /// - /// - /// The number of entries to return. Maximum page size is 500. Default - /// is 100. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - [System.Obsolete("This operation is deprecated. Please do not use it any longer.")] - Task>> ListApplicationVersionPatternFeaturesWithHttpMessagesAsync(System.Guid appId, string versionId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Creates a new phraselist feature in a version of the application. /// @@ -241,5 +207,69 @@ public partial interface IFeatures /// Thrown when a required parameter is null /// Task> DeletePhraseListWithHttpMessagesAsync(System.Guid appId, string versionId, int phraselistId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Adds a new feature relation to be used by the intent in a version + /// of the application. + /// + /// + /// The application ID. + /// + /// + /// The version ID. + /// + /// + /// The intent classifier ID. + /// + /// + /// A Feature relation information object. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> AddIntentFeatureWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid intentId, ModelFeatureInformation featureRelationCreateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Adds a new feature relation to be used by the entity in a version + /// of the application. + /// + /// + /// The application ID. + /// + /// + /// The version ID. + /// + /// + /// The entity extractor ID. + /// + /// + /// A Feature relation information object. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> AddEntityFeatureWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid entityId, ModelFeatureInformation featureRelationCreateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/IModel.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/IModel.cs index 4e3abf48133e..3d95927a129b 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/IModel.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/IModel.cs @@ -40,7 +40,7 @@ public partial interface IModel /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -84,7 +84,7 @@ public partial interface IModel /// Task>> ListIntentsWithHttpMessagesAsync(System.Guid appId, string versionId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Adds a simple entity extractor to a version of the application. + /// Adds an entity extractor to a version of the application. /// /// /// The application ID. @@ -92,9 +92,9 @@ public partial interface IModel /// /// The version ID. /// - /// - /// A model object containing the name for the new simple entity - /// extractor. + /// + /// A model object containing the name of the new entity extractor and + /// its children. /// /// /// The headers that will be added to request. @@ -111,7 +111,7 @@ public partial interface IModel /// /// Thrown when a required parameter is null /// - Task> AddEntityWithHttpMessagesAsync(System.Guid appId, string versionId, ModelCreateObject modelCreateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> AddEntityWithHttpMessagesAsync(System.Guid appId, string versionId, EntityModelCreateObject entityModelCreateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets information about all the simple entity models in a version of /// the application. @@ -144,37 +144,7 @@ public partial interface IModel /// /// Thrown when a required parameter is null /// - Task>> ListEntitiesWithHttpMessagesAsync(System.Guid appId, string versionId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// - /// Adds a hierarchical entity extractor to a version of the - /// application. - /// - /// - /// The application ID. - /// - /// - /// The version ID. - /// - /// - /// A model containing the name and children of the new entity - /// extractor. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> AddHierarchicalEntityWithHttpMessagesAsync(System.Guid appId, string versionId, HierarchicalEntityModel hierarchicalModelCreateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListEntitiesWithHttpMessagesAsync(System.Guid appId, string versionId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets information about all the hierarchical entity models in a /// version of the application. @@ -209,35 +179,6 @@ public partial interface IModel /// Task>> ListHierarchicalEntitiesWithHttpMessagesAsync(System.Guid appId, string versionId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Adds a composite entity extractor to a version of the application. - /// - /// - /// The application ID. - /// - /// - /// The version ID. - /// - /// - /// A model containing the name and children of the new entity - /// extractor. - /// - /// - /// The headers that will be added to request. - /// - /// - /// The cancellation token. - /// - /// - /// Thrown when the operation returned an invalid status code - /// - /// - /// Thrown when unable to deserialize the response - /// - /// - /// Thrown when a required parameter is null - /// - Task> AddCompositeEntityWithHttpMessagesAsync(System.Guid appId, string versionId, CompositeEntityModel compositeModelCreateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); - /// /// Gets information about all the composite entity models in a version /// of the application. /// @@ -609,9 +550,166 @@ public partial interface IModel /// /// Thrown when a required parameter is null /// - Task> GetEntityWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid entityId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetEntityWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid entityId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes an entity or a child from a version of the application. + /// + /// + /// The application ID. + /// + /// + /// The version ID. + /// + /// + /// The entity extractor or the child entity extractor ID. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> DeleteEntityWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid entityId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Updates the name of an entity in a version of the application. + /// Updates the name of an entity extractor or the name and instanceOf + /// model of a child entity extractor. + /// + /// + /// The application ID. + /// + /// + /// The version ID. + /// + /// + /// The entity extractor or the child entity extractor ID. + /// + /// + /// A model object containing the name new entity extractor or the name + /// and instance of model of a child entity extractor + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> UpdateEntityChildWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid entityId, EntityModelUpdateObject entityModelUpdateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the information of the features used by the intent in a + /// version of the application. + /// + /// + /// The application ID. + /// + /// + /// The version ID. + /// + /// + /// The intent classifier ID. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> GetIntentFeaturesWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid intentId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the information of the features used by the intent in a + /// version of the application. + /// + /// + /// The application ID. + /// + /// + /// The version ID. + /// + /// + /// The intent classifier ID. + /// + /// + /// A list of feature information objects containing the new feature + /// relations. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> ReplaceIntentFeaturesWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid intentId, IList featureRelationsUpdateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Deletes a relation from the feature relations used by the intent in + /// a version of the application. + /// + /// + /// The application ID. + /// + /// + /// The version ID. + /// + /// + /// The intent classifier ID. + /// + /// + /// A feature information object containing the feature relation to + /// delete. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task> DeleteIntentFeatureWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid intentId, ModelFeatureInformation featureRelationDeleteObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Gets the information of the features used by the entity in a + /// version of the application. /// /// /// The application ID. @@ -622,8 +720,38 @@ public partial interface IModel /// /// The entity extractor ID. /// - /// - /// A model object containing the new entity extractor name. + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + Task>> GetEntityFeaturesWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid entityId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + /// + /// Updates the information of the features used by the entity in a + /// version of the application. + /// + /// + /// The application ID. + /// + /// + /// The version ID. + /// + /// + /// The entity extractor ID. + /// + /// + /// A list of feature information objects containing the new feature + /// relations. /// /// /// The headers that will be added to request. @@ -640,9 +768,10 @@ public partial interface IModel /// /// Thrown when a required parameter is null /// - Task> UpdateEntityWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid entityId, ModelUpdateObject modelUpdateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> ReplaceEntityFeaturesWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid entityId, IList featureRelationsUpdateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes an entity from a version of the application. + /// Deletes a relation from the feature relations used by the entity in + /// a version of the application. /// /// /// The application ID. @@ -653,6 +782,10 @@ public partial interface IModel /// /// The entity extractor ID. /// + /// + /// A feature information object containing the feature relation to + /// delete. + /// /// /// The headers that will be added to request. /// @@ -668,7 +801,7 @@ public partial interface IModel /// /// Thrown when a required parameter is null /// - Task> DeleteEntityWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid entityId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteEntityFeatureWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid entityId, ModelFeatureInformation featureRelationDeleteObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets information about a hierarchical entity in a version of the /// application. @@ -699,8 +832,8 @@ public partial interface IModel /// Task> GetHierarchicalEntityWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid hEntityId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Updates the name and children of a hierarchical entity model in a - /// version of the application. + /// Updates the name of a hierarchical entity model in a version of the + /// application. /// /// /// The application ID. @@ -711,8 +844,8 @@ public partial interface IModel /// /// The hierarchical entity extractor ID. /// - /// - /// Model containing names of the children of the hierarchical entity. + /// + /// Model containing names of the hierarchical entity. /// /// /// The headers that will be added to request. @@ -729,7 +862,7 @@ public partial interface IModel /// /// Thrown when a required parameter is null /// - Task> UpdateHierarchicalEntityWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid hEntityId, HierarchicalEntityModel hierarchicalModelUpdateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateHierarchicalEntityWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid hEntityId, ModelUpdateObject modelUpdateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Deletes a hierarchical entity from a version of the application. /// @@ -1385,8 +1518,8 @@ public partial interface IModel /// Task> DeleteCustomPrebuiltDomainWithHttpMessagesAsync(System.Guid appId, string versionId, string domainName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets information about the child's model contained in an - /// hierarchical entity child model in a version of the application. + /// Creates a single child in an existing entity model hierarchy in a + /// version of the application. /// /// /// The application ID. @@ -1394,11 +1527,12 @@ public partial interface IModel /// /// The version ID. /// - /// - /// The hierarchical entity extractor ID. + /// + /// The entity extractor ID. /// - /// - /// The hierarchical entity extractor child ID. + /// + /// A model object containing the name of the new child model and its + /// children. /// /// /// The headers that will be added to request. @@ -1415,10 +1549,10 @@ public partial interface IModel /// /// Thrown when a required parameter is null /// - Task> GetHierarchicalEntityChildWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid hEntityId, System.Guid hChildId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> AddEntityChildWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid entityId, ChildEntityModelCreateObject childEntityModelCreateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Renames a single child in an existing hierarchical entity model in - /// a version of the application. + /// Gets information about the child's model contained in an + /// hierarchical entity child model in a version of the application. /// /// /// The application ID. @@ -1432,9 +1566,6 @@ public partial interface IModel /// /// The hierarchical entity extractor child ID. /// - /// - /// Model object containing new name of the hierarchical entity child. - /// /// /// The headers that will be added to request. /// @@ -1450,10 +1581,10 @@ public partial interface IModel /// /// Thrown when a required parameter is null /// - Task> UpdateHierarchicalEntityChildWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid hEntityId, System.Guid hChildId, HierarchicalChildModelUpdateObject hierarchicalChildModelUpdateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetHierarchicalEntityChildWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid hEntityId, System.Guid hChildId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Deletes a hierarchical entity extractor child in a version of the - /// application. + /// Renames a single child in an existing hierarchical entity model in + /// a version of the application. /// /// /// The application ID. @@ -1467,6 +1598,9 @@ public partial interface IModel /// /// The hierarchical entity extractor child ID. /// + /// + /// Model object containing new name of the hierarchical entity child. + /// /// /// The headers that will be added to request. /// @@ -1482,10 +1616,10 @@ public partial interface IModel /// /// Thrown when a required parameter is null /// - Task> DeleteHierarchicalEntityChildWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid hEntityId, System.Guid hChildId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> UpdateHierarchicalEntityChildWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid hEntityId, System.Guid hChildId, HierarchicalChildModelUpdateObject hierarchicalChildModelUpdateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Creates a single child in an existing hierarchical entity model in - /// a version of the application. + /// Deletes a hierarchical entity extractor child in a version of the + /// application. /// /// /// The application ID. @@ -1496,9 +1630,8 @@ public partial interface IModel /// /// The hierarchical entity extractor ID. /// - /// - /// A model object containing the name of the new hierarchical child - /// model. + /// + /// The hierarchical entity extractor child ID. /// /// /// The headers that will be added to request. @@ -1515,7 +1648,7 @@ public partial interface IModel /// /// Thrown when a required parameter is null /// - Task> AddHierarchicalEntityChildWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid hEntityId, HierarchicalChildModelCreateObject hierarchicalChildModelCreateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> DeleteHierarchicalEntityChildWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid hEntityId, System.Guid hChildId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Creates a single child in an existing composite entity model in a /// version of the application. diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/LUISAuthoringClient.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/LUISAuthoringClient.cs index 3688c4eb7f47..4820cc329ee3 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/LUISAuthoringClient.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/LUISAuthoringClient.cs @@ -234,7 +234,7 @@ private void Initialize() Pattern = new Pattern(this); Settings = new Settings(this); AzureAccounts = new AzureAccounts(this); - BaseUri = "{Endpoint}/luis/api/v2.0"; + BaseUri = "{Endpoint}/luis/authoring/v3.0-preview"; SerializationSettings = new JsonSerializerSettings { Formatting = Newtonsoft.Json.Formatting.Indented, diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Model.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Model.cs index 2ced64aad804..44b8ca690257 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Model.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Model.cs @@ -68,7 +68,7 @@ public Model(LUISAuthoringClient client) /// /// The cancellation token. /// - /// + /// /// Thrown when the operation returned an invalid status code /// /// @@ -166,12 +166,19 @@ public Model(LUISAuthoringClient client) string _responseContent = null; if ((int)_statusCode != 201) { - var ex = new HttpOperationException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); - if (_httpResponse.Content != null) { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } } - else { - _responseContent = string.Empty; + catch (JsonException) + { + // Ignore the exception } ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); @@ -407,7 +414,7 @@ public Model(LUISAuthoringClient client) } /// - /// Adds a simple entity extractor to a version of the application. + /// Adds an entity extractor to a version of the application. /// /// /// The application ID. @@ -415,8 +422,9 @@ public Model(LUISAuthoringClient client) /// /// The version ID. /// - /// - /// A model object containing the name for the new simple entity extractor. + /// + /// A model object containing the name of the new entity extractor and its + /// children. /// /// /// Headers that will be added to request. @@ -439,7 +447,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task> AddEntityWithHttpMessagesAsync(System.Guid appId, string versionId, ModelCreateObject modelCreateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> AddEntityWithHttpMessagesAsync(System.Guid appId, string versionId, EntityModelCreateObject entityModelCreateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -449,9 +457,9 @@ public Model(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } - if (modelCreateObject == null) + if (entityModelCreateObject == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "modelCreateObject"); + throw new ValidationException(ValidationRules.CannotBeNull, "entityModelCreateObject"); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -462,7 +470,7 @@ public Model(LUISAuthoringClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("appId", appId); tracingParameters.Add("versionId", versionId); - tracingParameters.Add("modelCreateObject", modelCreateObject); + tracingParameters.Add("entityModelCreateObject", entityModelCreateObject); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "AddEntity", tracingParameters); } @@ -494,9 +502,9 @@ public Model(LUISAuthoringClient client) // Serialize Request string _requestContent = null; - if(modelCreateObject != null) + if(entityModelCreateObject != null) { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(modelCreateObject, Client.SerializationSettings); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(entityModelCreateObject, Client.SerializationSettings); _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } @@ -615,7 +623,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListEntitiesWithHttpMessagesAsync(System.Guid appId, string versionId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListEntitiesWithHttpMessagesAsync(System.Guid appId, string versionId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -742,7 +750,7 @@ public Model(LUISAuthoringClient client) throw ex; } // Create Result - var _result = new HttpOperationResponse>(); + var _result = new HttpOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response @@ -751,7 +759,7 @@ public Model(LUISAuthoringClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -771,7 +779,8 @@ public Model(LUISAuthoringClient client) } /// - /// Adds a hierarchical entity extractor to a version of the application. + /// Gets information about all the hierarchical entity models in a version of + /// the application. /// /// /// The application ID. @@ -779,8 +788,11 @@ public Model(LUISAuthoringClient client) /// /// The version ID. /// - /// - /// A model containing the name and children of the new entity extractor. + /// + /// The number of entries to skip. Default value is 0. + /// + /// + /// The number of entries to return. Maximum page size is 500. Default is 100. /// /// /// Headers that will be added to request. @@ -803,7 +815,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task> AddHierarchicalEntityWithHttpMessagesAsync(System.Guid appId, string versionId, HierarchicalEntityModel hierarchicalModelCreateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListHierarchicalEntitiesWithHttpMessagesAsync(System.Guid appId, string versionId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -813,9 +825,17 @@ public Model(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } - if (hierarchicalModelCreateObject == null) + if (skip < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "skip", 0); + } + if (take > 500) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "take", 500); + } + if (take < 0) { - throw new ValidationException(ValidationRules.CannotBeNull, "hierarchicalModelCreateObject"); + throw new ValidationException(ValidationRules.InclusiveMinimum, "take", 0); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -826,9 +846,10 @@ public Model(LUISAuthoringClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("appId", appId); tracingParameters.Add("versionId", versionId); - tracingParameters.Add("hierarchicalModelCreateObject", hierarchicalModelCreateObject); + tracingParameters.Add("skip", skip); + tracingParameters.Add("take", take); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "AddHierarchicalEntity", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListHierarchicalEntities", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; @@ -836,10 +857,23 @@ public Model(LUISAuthoringClient client) _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); + List _queryParameters = new List(); + if (skip != null) + { + _queryParameters.Add(string.Format("skip={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(skip, Client.SerializationSettings).Trim('"')))); + } + if (take != null) + { + _queryParameters.Add(string.Format("take={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(take, Client.SerializationSettings).Trim('"')))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers @@ -858,12 +892,6 @@ public Model(LUISAuthoringClient client) // Serialize Request string _requestContent = null; - if(hierarchicalModelCreateObject != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(hierarchicalModelCreateObject, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -884,7 +912,7 @@ public Model(LUISAuthoringClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 201) + if ((int)_statusCode != 200) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -914,16 +942,16 @@ public Model(LUISAuthoringClient client) throw ex; } // Create Result - var _result = new HttpOperationResponse(); + var _result = new HttpOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response - if ((int)_statusCode == 201) + if ((int)_statusCode == 200) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -943,8 +971,8 @@ public Model(LUISAuthoringClient client) } /// - /// Gets information about all the hierarchical entity models in a version of - /// the application. + /// Gets information about all the composite entity models in a version of the + /// application. /// /// /// The application ID. @@ -979,7 +1007,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListHierarchicalEntitiesWithHttpMessagesAsync(System.Guid appId, string versionId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListCompositeEntitiesWithHttpMessagesAsync(System.Guid appId, string versionId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -1013,11 +1041,11 @@ public Model(LUISAuthoringClient client) tracingParameters.Add("skip", skip); tracingParameters.Add("take", take); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListHierarchicalEntities", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListCompositeEntities", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/hierarchicalentities"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/compositeentities"; _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); @@ -1106,7 +1134,7 @@ public Model(LUISAuthoringClient client) throw ex; } // Create Result - var _result = new HttpOperationResponse>(); + var _result = new HttpOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response @@ -1115,7 +1143,7 @@ public Model(LUISAuthoringClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1135,7 +1163,8 @@ public Model(LUISAuthoringClient client) } /// - /// Adds a composite entity extractor to a version of the application. + /// Gets information about all the list entity models in a version of the + /// application. /// /// /// The application ID. @@ -1143,8 +1172,11 @@ public Model(LUISAuthoringClient client) /// /// The version ID. /// - /// - /// A model containing the name and children of the new entity extractor. + /// + /// The number of entries to skip. Default value is 0. + /// + /// + /// The number of entries to return. Maximum page size is 500. Default is 100. /// /// /// Headers that will be added to request. @@ -1167,7 +1199,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task> AddCompositeEntityWithHttpMessagesAsync(System.Guid appId, string versionId, CompositeEntityModel compositeModelCreateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListClosedListsWithHttpMessagesAsync(System.Guid appId, string versionId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -1177,9 +1209,17 @@ public Model(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } - if (compositeModelCreateObject == null) + if (skip < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "skip", 0); + } + if (take > 500) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "take", 500); + } + if (take < 0) { - throw new ValidationException(ValidationRules.CannotBeNull, "compositeModelCreateObject"); + throw new ValidationException(ValidationRules.InclusiveMinimum, "take", 0); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1190,20 +1230,34 @@ public Model(LUISAuthoringClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("appId", appId); tracingParameters.Add("versionId", versionId); - tracingParameters.Add("compositeModelCreateObject", compositeModelCreateObject); + tracingParameters.Add("skip", skip); + tracingParameters.Add("take", take); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "AddCompositeEntity", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListClosedLists", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/compositeentities"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/closedlists"; _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); + List _queryParameters = new List(); + if (skip != null) + { + _queryParameters.Add(string.Format("skip={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(skip, Client.SerializationSettings).Trim('"')))); + } + if (take != null) + { + _queryParameters.Add(string.Format("take={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(take, Client.SerializationSettings).Trim('"')))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers @@ -1222,12 +1276,6 @@ public Model(LUISAuthoringClient client) // Serialize Request string _requestContent = null; - if(compositeModelCreateObject != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(compositeModelCreateObject, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -1248,7 +1296,7 @@ public Model(LUISAuthoringClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 201) + if ((int)_statusCode != 200) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1278,16 +1326,16 @@ public Model(LUISAuthoringClient client) throw ex; } // Create Result - var _result = new HttpOperationResponse(); + var _result = new HttpOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response - if ((int)_statusCode == 201) + if ((int)_statusCode == 200) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1307,8 +1355,7 @@ public Model(LUISAuthoringClient client) } /// - /// Gets information about all the composite entity models in a version of the - /// application. + /// Adds a list entity model to a version of the application. /// /// /// The application ID. @@ -1316,11 +1363,8 @@ public Model(LUISAuthoringClient client) /// /// The version ID. /// - /// - /// The number of entries to skip. Default value is 0. - /// - /// - /// The number of entries to return. Maximum page size is 500. Default is 100. + /// + /// A model containing the name and words for the new list entity extractor. /// /// /// Headers that will be added to request. @@ -1343,7 +1387,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListCompositeEntitiesWithHttpMessagesAsync(System.Guid appId, string versionId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> AddClosedListWithHttpMessagesAsync(System.Guid appId, string versionId, ClosedListModelCreateObject closedListModelCreateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -1353,17 +1397,9 @@ public Model(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } - if (skip < 0) - { - throw new ValidationException(ValidationRules.InclusiveMinimum, "skip", 0); - } - if (take > 500) - { - throw new ValidationException(ValidationRules.InclusiveMaximum, "take", 500); - } - if (take < 0) + if (closedListModelCreateObject == null) { - throw new ValidationException(ValidationRules.InclusiveMinimum, "take", 0); + throw new ValidationException(ValidationRules.CannotBeNull, "closedListModelCreateObject"); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1374,34 +1410,20 @@ public Model(LUISAuthoringClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("appId", appId); tracingParameters.Add("versionId", versionId); - tracingParameters.Add("skip", skip); - tracingParameters.Add("take", take); + tracingParameters.Add("closedListModelCreateObject", closedListModelCreateObject); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListCompositeEntities", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "AddClosedList", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/compositeentities"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/closedlists"; _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); - List _queryParameters = new List(); - if (skip != null) - { - _queryParameters.Add(string.Format("skip={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(skip, Client.SerializationSettings).Trim('"')))); - } - if (take != null) - { - _queryParameters.Add(string.Format("take={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(take, Client.SerializationSettings).Trim('"')))); - } - if (_queryParameters.Count > 0) - { - _url += "?" + string.Join("&", _queryParameters); - } // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers @@ -1420,6 +1442,12 @@ public Model(LUISAuthoringClient client) // Serialize Request string _requestContent = null; + if(closedListModelCreateObject != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(closedListModelCreateObject, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -1440,7 +1468,7 @@ public Model(LUISAuthoringClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 201) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1470,16 +1498,16 @@ public Model(LUISAuthoringClient client) throw ex; } // Create Result - var _result = new HttpOperationResponse>(); + var _result = new HttpOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response - if ((int)_statusCode == 200) + if ((int)_statusCode == 201) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1499,8 +1527,7 @@ public Model(LUISAuthoringClient client) } /// - /// Gets information about all the list entity models in a version of the - /// application. + /// Adds a list of prebuilt entities to a version of the application. /// /// /// The application ID. @@ -1508,11 +1535,8 @@ public Model(LUISAuthoringClient client) /// /// The version ID. /// - /// - /// The number of entries to skip. Default value is 0. - /// - /// - /// The number of entries to return. Maximum page size is 500. Default is 100. + /// + /// An array of prebuilt entity extractor names. /// /// /// Headers that will be added to request. @@ -1535,7 +1559,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListClosedListsWithHttpMessagesAsync(System.Guid appId, string versionId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> AddPrebuiltWithHttpMessagesAsync(System.Guid appId, string versionId, IList prebuiltExtractorNames, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -1545,17 +1569,9 @@ public Model(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } - if (skip < 0) - { - throw new ValidationException(ValidationRules.InclusiveMinimum, "skip", 0); - } - if (take > 500) - { - throw new ValidationException(ValidationRules.InclusiveMaximum, "take", 500); - } - if (take < 0) + if (prebuiltExtractorNames == null) { - throw new ValidationException(ValidationRules.InclusiveMinimum, "take", 0); + throw new ValidationException(ValidationRules.CannotBeNull, "prebuiltExtractorNames"); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1566,34 +1582,20 @@ public Model(LUISAuthoringClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("appId", appId); tracingParameters.Add("versionId", versionId); - tracingParameters.Add("skip", skip); - tracingParameters.Add("take", take); + tracingParameters.Add("prebuiltExtractorNames", prebuiltExtractorNames); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListClosedLists", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "AddPrebuilt", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/closedlists"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/prebuilts"; _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); - List _queryParameters = new List(); - if (skip != null) - { - _queryParameters.Add(string.Format("skip={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(skip, Client.SerializationSettings).Trim('"')))); - } - if (take != null) - { - _queryParameters.Add(string.Format("take={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(take, Client.SerializationSettings).Trim('"')))); - } - if (_queryParameters.Count > 0) - { - _url += "?" + string.Join("&", _queryParameters); - } // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers @@ -1612,6 +1614,12 @@ public Model(LUISAuthoringClient client) // Serialize Request string _requestContent = null; + if(prebuiltExtractorNames != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(prebuiltExtractorNames, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -1632,7 +1640,7 @@ public Model(LUISAuthoringClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 201) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1662,16 +1670,16 @@ public Model(LUISAuthoringClient client) throw ex; } // Create Result - var _result = new HttpOperationResponse>(); + var _result = new HttpOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response - if ((int)_statusCode == 200) + if ((int)_statusCode == 201) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1691,7 +1699,8 @@ public Model(LUISAuthoringClient client) } /// - /// Adds a list entity model to a version of the application. + /// Gets information about all the prebuilt entities in a version of the + /// application. /// /// /// The application ID. @@ -1699,8 +1708,11 @@ public Model(LUISAuthoringClient client) /// /// The version ID. /// - /// - /// A model containing the name and words for the new list entity extractor. + /// + /// The number of entries to skip. Default value is 0. + /// + /// + /// The number of entries to return. Maximum page size is 500. Default is 100. /// /// /// Headers that will be added to request. @@ -1723,7 +1735,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task> AddClosedListWithHttpMessagesAsync(System.Guid appId, string versionId, ClosedListModelCreateObject closedListModelCreateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListPrebuiltsWithHttpMessagesAsync(System.Guid appId, string versionId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -1733,9 +1745,17 @@ public Model(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } - if (closedListModelCreateObject == null) + if (skip < 0) { - throw new ValidationException(ValidationRules.CannotBeNull, "closedListModelCreateObject"); + throw new ValidationException(ValidationRules.InclusiveMinimum, "skip", 0); + } + if (take > 500) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "take", 500); + } + if (take < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "take", 0); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1746,20 +1766,34 @@ public Model(LUISAuthoringClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("appId", appId); tracingParameters.Add("versionId", versionId); - tracingParameters.Add("closedListModelCreateObject", closedListModelCreateObject); + tracingParameters.Add("skip", skip); + tracingParameters.Add("take", take); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "AddClosedList", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListPrebuilts", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/closedlists"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/prebuilts"; _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); + List _queryParameters = new List(); + if (skip != null) + { + _queryParameters.Add(string.Format("skip={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(skip, Client.SerializationSettings).Trim('"')))); + } + if (take != null) + { + _queryParameters.Add(string.Format("take={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(take, Client.SerializationSettings).Trim('"')))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers @@ -1778,12 +1812,6 @@ public Model(LUISAuthoringClient client) // Serialize Request string _requestContent = null; - if(closedListModelCreateObject != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(closedListModelCreateObject, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -1804,7 +1832,7 @@ public Model(LUISAuthoringClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 201) + if ((int)_statusCode != 200) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -1834,16 +1862,16 @@ public Model(LUISAuthoringClient client) throw ex; } // Create Result - var _result = new HttpOperationResponse(); + var _result = new HttpOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response - if ((int)_statusCode == 201) + if ((int)_statusCode == 200) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -1863,7 +1891,7 @@ public Model(LUISAuthoringClient client) } /// - /// Adds a list of prebuilt entities to a version of the application. + /// Gets all the available prebuilt entities in a version of the application. /// /// /// The application ID. @@ -1871,9 +1899,6 @@ public Model(LUISAuthoringClient client) /// /// The version ID. /// - /// - /// An array of prebuilt entity extractor names. - /// /// /// Headers that will be added to request. /// @@ -1895,7 +1920,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> AddPrebuiltWithHttpMessagesAsync(System.Guid appId, string versionId, IList prebuiltExtractorNames, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListPrebuiltEntitiesWithHttpMessagesAsync(System.Guid appId, string versionId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -1905,10 +1930,6 @@ public Model(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } - if (prebuiltExtractorNames == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "prebuiltExtractorNames"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1918,20 +1939,19 @@ public Model(LUISAuthoringClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("appId", appId); tracingParameters.Add("versionId", versionId); - tracingParameters.Add("prebuiltExtractorNames", prebuiltExtractorNames); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "AddPrebuilt", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListPrebuiltEntities", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/prebuilts"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/listprebuilts"; _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers @@ -1950,12 +1970,6 @@ public Model(LUISAuthoringClient client) // Serialize Request string _requestContent = null; - if(prebuiltExtractorNames != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(prebuiltExtractorNames, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -1976,7 +1990,7 @@ public Model(LUISAuthoringClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 201) + if ((int)_statusCode != 200) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -2006,16 +2020,16 @@ public Model(LUISAuthoringClient client) throw ex; } // Create Result - var _result = new HttpOperationResponse>(); + var _result = new HttpOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response - if ((int)_statusCode == 201) + if ((int)_statusCode == 200) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -2035,7 +2049,7 @@ public Model(LUISAuthoringClient client) } /// - /// Gets information about all the prebuilt entities in a version of the + /// Gets information about all the intent and entity models in a version of the /// application. /// /// @@ -2071,7 +2085,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListPrebuiltsWithHttpMessagesAsync(System.Guid appId, string versionId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListModelsWithHttpMessagesAsync(System.Guid appId, string versionId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -2105,11 +2119,11 @@ public Model(LUISAuthoringClient client) tracingParameters.Add("skip", skip); tracingParameters.Add("take", take); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListPrebuilts", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListModels", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/prebuilts"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/models"; _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); @@ -2198,7 +2212,7 @@ public Model(LUISAuthoringClient client) throw ex; } // Create Result - var _result = new HttpOperationResponse>(); + var _result = new HttpOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response @@ -2207,7 +2221,7 @@ public Model(LUISAuthoringClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -2227,7 +2241,8 @@ public Model(LUISAuthoringClient client) } /// - /// Gets all the available prebuilt entities in a version of the application. + /// Gets the example utterances for the given intent or entity model in a + /// version of the application. /// /// /// The application ID. @@ -2235,6 +2250,15 @@ public Model(LUISAuthoringClient client) /// /// The version ID. /// + /// + /// The ID (GUID) of the model. + /// + /// + /// The number of entries to skip. Default value is 0. + /// + /// + /// The number of entries to return. Maximum page size is 500. Default is 100. + /// /// /// Headers that will be added to request. /// @@ -2256,7 +2280,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListPrebuiltEntitiesWithHttpMessagesAsync(System.Guid appId, string versionId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ExamplesMethodWithHttpMessagesAsync(System.Guid appId, string versionId, string modelId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -2266,6 +2290,22 @@ public Model(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } + if (modelId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "modelId"); + } + if (skip < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "skip", 0); + } + if (take > 500) + { + throw new ValidationException(ValidationRules.InclusiveMaximum, "take", 500); + } + if (take < 0) + { + throw new ValidationException(ValidationRules.InclusiveMinimum, "take", 0); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2275,15 +2315,32 @@ public Model(LUISAuthoringClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("appId", appId); tracingParameters.Add("versionId", versionId); + tracingParameters.Add("modelId", modelId); + tracingParameters.Add("skip", skip); + tracingParameters.Add("take", take); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListPrebuiltEntities", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ExamplesMethod", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/listprebuilts"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/models/{modelId}/examples"; _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); + _url = _url.Replace("{modelId}", System.Uri.EscapeDataString(modelId)); + List _queryParameters = new List(); + if (skip != null) + { + _queryParameters.Add(string.Format("skip={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(skip, Client.SerializationSettings).Trim('"')))); + } + if (take != null) + { + _queryParameters.Add(string.Format("take={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(take, Client.SerializationSettings).Trim('"')))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; @@ -2356,7 +2413,7 @@ public Model(LUISAuthoringClient client) throw ex; } // Create Result - var _result = new HttpOperationResponse>(); + var _result = new HttpOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response @@ -2365,7 +2422,7 @@ public Model(LUISAuthoringClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -2385,8 +2442,7 @@ public Model(LUISAuthoringClient client) } /// - /// Gets information about all the intent and entity models in a version of the - /// application. + /// Gets information about the intent model in a version of the application. /// /// /// The application ID. @@ -2394,11 +2450,8 @@ public Model(LUISAuthoringClient client) /// /// The version ID. /// - /// - /// The number of entries to skip. Default value is 0. - /// - /// - /// The number of entries to return. Maximum page size is 500. Default is 100. + /// + /// The intent classifier ID. /// /// /// Headers that will be added to request. @@ -2421,7 +2474,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListModelsWithHttpMessagesAsync(System.Guid appId, string versionId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetIntentWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid intentId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -2431,18 +2484,6 @@ public Model(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } - if (skip < 0) - { - throw new ValidationException(ValidationRules.InclusiveMinimum, "skip", 0); - } - if (take > 500) - { - throw new ValidationException(ValidationRules.InclusiveMaximum, "take", 500); - } - if (take < 0) - { - throw new ValidationException(ValidationRules.InclusiveMinimum, "take", 0); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -2452,34 +2493,701 @@ public Model(LUISAuthoringClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("appId", appId); tracingParameters.Add("versionId", versionId); - tracingParameters.Add("skip", skip); - tracingParameters.Add("take", take); + tracingParameters.Add("intentId", intentId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListModels", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetIntent", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/models"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/intents/{intentId}"; _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); - List _queryParameters = new List(); - if (skip != null) + _url = _url.Replace("{intentId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(intentId, Client.SerializationSettings).Trim('"'))); + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + + + if (customHeaders != null) { - _queryParameters.Add(string.Format("skip={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(skip, Client.SerializationSettings).Trim('"')))); + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } } - if (take != null) + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) { - _queryParameters.Add(string.Format("take={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(take, Client.SerializationSettings).Trim('"')))); + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); } - if (_queryParameters.Count > 0) + // Send Request + if (_shouldTrace) { - _url += "?" + string.Join("&", _queryParameters); + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; } + // Create Result + var _result = new HttpOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Updates the name of an intent in a version of the application. + /// + /// + /// The application ID. + /// + /// + /// The version ID. + /// + /// + /// The intent classifier ID. + /// + /// + /// A model object containing the new intent name. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> UpdateIntentWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid intentId, ModelUpdateObject modelUpdateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.Endpoint == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.Endpoint"); + } + if (versionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); + } + if (modelUpdateObject == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "modelUpdateObject"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("appId", appId); + tracingParameters.Add("versionId", versionId); + tracingParameters.Add("intentId", intentId); + tracingParameters.Add("modelUpdateObject", modelUpdateObject); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "UpdateIntent", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/intents/{intentId}"; + _url = _url.Replace("{Endpoint}", Client.Endpoint); + _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); + _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); + _url = _url.Replace("{intentId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(intentId, Client.SerializationSettings).Trim('"'))); + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + if(modelUpdateObject != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(modelUpdateObject, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new HttpOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes an intent from a version of the application. + /// + /// + /// The application ID. + /// + /// + /// The version ID. + /// + /// + /// The intent classifier ID. + /// + /// + /// If true, deletes the intent's example utterances. If false, moves the + /// example utterances to the None intent. The default value is false. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> DeleteIntentWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid intentId, bool? deleteUtterances = false, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.Endpoint == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.Endpoint"); + } + if (versionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("appId", appId); + tracingParameters.Add("versionId", versionId); + tracingParameters.Add("intentId", intentId); + tracingParameters.Add("deleteUtterances", deleteUtterances); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "DeleteIntent", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/intents/{intentId}"; + _url = _url.Replace("{Endpoint}", Client.Endpoint); + _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); + _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); + _url = _url.Replace("{intentId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(intentId, Client.SerializationSettings).Trim('"'))); + List _queryParameters = new List(); + if (deleteUtterances != null) + { + _queryParameters.Add(string.Format("deleteUtterances={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(deleteUtterances, Client.SerializationSettings).Trim('"')))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new HttpOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Gets information about an entity model in a version of the application. + /// + /// + /// The application ID. + /// + /// + /// The version ID. + /// + /// + /// The entity extractor ID. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> GetEntityWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid entityId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.Endpoint == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.Endpoint"); + } + if (versionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("appId", appId); + tracingParameters.Add("versionId", versionId); + tracingParameters.Add("entityId", entityId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "GetEntity", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/entities/{entityId}"; + _url = _url.Replace("{Endpoint}", Client.Endpoint); + _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); + _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); + _url = _url.Replace("{entityId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(entityId, Client.SerializationSettings).Trim('"'))); + // Create HTTP transport objects + var _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new System.Uri(_url); + // Set Headers + + + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (Client.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new HttpOperationResponse(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Deletes an entity or a child from a version of the application. + /// + /// + /// The application ID. + /// + /// + /// The version ID. + /// + /// + /// The entity extractor or the child entity extractor ID. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task> DeleteEntityWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid entityId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (Client.Endpoint == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.Endpoint"); + } + if (versionId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("appId", appId); + tracingParameters.Add("versionId", versionId); + tracingParameters.Add("entityId", entityId); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "DeleteEntity", tracingParameters); + } + // Construct URL + var _baseUrl = Client.BaseUri; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/entities/{entityId}"; + _url = _url.Replace("{Endpoint}", Client.Endpoint); + _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); + _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); + _url = _url.Replace("{entityId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(entityId, Client.SerializationSettings).Trim('"'))); // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers @@ -2548,7 +3256,7 @@ public Model(LUISAuthoringClient client) throw ex; } // Create Result - var _result = new HttpOperationResponse>(); + var _result = new HttpOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response @@ -2557,7 +3265,7 @@ public Model(LUISAuthoringClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -2577,8 +3285,8 @@ public Model(LUISAuthoringClient client) } /// - /// Gets the example utterances for the given intent or entity model in a - /// version of the application. + /// Updates the name of an entity extractor or the name and instanceOf model of + /// a child entity extractor. /// /// /// The application ID. @@ -2586,14 +3294,12 @@ public Model(LUISAuthoringClient client) /// /// The version ID. /// - /// - /// The ID (GUID) of the model. - /// - /// - /// The number of entries to skip. Default value is 0. + /// + /// The entity extractor or the child entity extractor ID. /// - /// - /// The number of entries to return. Maximum page size is 500. Default is 100. + /// + /// A model object containing the name new entity extractor or the name and + /// instance of model of a child entity extractor /// /// /// Headers that will be added to request. @@ -2616,7 +3322,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ExamplesMethodWithHttpMessagesAsync(System.Guid appId, string versionId, string modelId, int? skip = 0, int? take = 100, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> UpdateEntityChildWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid entityId, EntityModelUpdateObject entityModelUpdateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -2626,21 +3332,9 @@ public Model(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } - if (modelId == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "modelId"); - } - if (skip < 0) - { - throw new ValidationException(ValidationRules.InclusiveMinimum, "skip", 0); - } - if (take > 500) - { - throw new ValidationException(ValidationRules.InclusiveMaximum, "take", 500); - } - if (take < 0) + if (entityModelUpdateObject == null) { - throw new ValidationException(ValidationRules.InclusiveMinimum, "take", 0); + throw new ValidationException(ValidationRules.CannotBeNull, "entityModelUpdateObject"); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -2651,36 +3345,22 @@ public Model(LUISAuthoringClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("appId", appId); tracingParameters.Add("versionId", versionId); - tracingParameters.Add("modelId", modelId); - tracingParameters.Add("skip", skip); - tracingParameters.Add("take", take); + tracingParameters.Add("entityId", entityId); + tracingParameters.Add("entityModelUpdateObject", entityModelUpdateObject); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ExamplesMethod", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "UpdateEntityChild", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/models/{modelId}/examples"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/entities/{entityId}"; _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); - _url = _url.Replace("{modelId}", System.Uri.EscapeDataString(modelId)); - List _queryParameters = new List(); - if (skip != null) - { - _queryParameters.Add(string.Format("skip={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(skip, Client.SerializationSettings).Trim('"')))); - } - if (take != null) - { - _queryParameters.Add(string.Format("take={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(take, Client.SerializationSettings).Trim('"')))); - } - if (_queryParameters.Count > 0) - { - _url += "?" + string.Join("&", _queryParameters); - } + _url = _url.Replace("{entityId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(entityId, Client.SerializationSettings).Trim('"'))); // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers @@ -2699,6 +3379,12 @@ public Model(LUISAuthoringClient client) // Serialize Request string _requestContent = null; + if(entityModelUpdateObject != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(entityModelUpdateObject, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -2749,7 +3435,7 @@ public Model(LUISAuthoringClient client) throw ex; } // Create Result - var _result = new HttpOperationResponse>(); + var _result = new HttpOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response @@ -2758,7 +3444,7 @@ public Model(LUISAuthoringClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -2778,7 +3464,8 @@ public Model(LUISAuthoringClient client) } /// - /// Gets information about the intent model in a version of the application. + /// Gets the information of the features used by the intent in a version of the + /// application. /// /// /// The application ID. @@ -2810,7 +3497,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetIntentWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid intentId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> GetIntentFeaturesWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid intentId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -2831,11 +3518,11 @@ public Model(LUISAuthoringClient client) tracingParameters.Add("versionId", versionId); tracingParameters.Add("intentId", intentId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetIntent", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetIntentFeatures", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/intents/{intentId}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/intents/{intentId}/features"; _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); @@ -2912,7 +3599,7 @@ public Model(LUISAuthoringClient client) throw ex; } // Create Result - var _result = new HttpOperationResponse(); + var _result = new HttpOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response @@ -2921,7 +3608,7 @@ public Model(LUISAuthoringClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -2941,7 +3628,8 @@ public Model(LUISAuthoringClient client) } /// - /// Updates the name of an intent in a version of the application. + /// Updates the information of the features used by the intent in a version of + /// the application. /// /// /// The application ID. @@ -2952,8 +3640,8 @@ public Model(LUISAuthoringClient client) /// /// The intent classifier ID. /// - /// - /// A model object containing the new intent name. + /// + /// A list of feature information objects containing the new feature relations. /// /// /// Headers that will be added to request. @@ -2976,7 +3664,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task> UpdateIntentWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid intentId, ModelUpdateObject modelUpdateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceIntentFeaturesWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid intentId, IList featureRelationsUpdateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -2986,9 +3674,9 @@ public Model(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } - if (modelUpdateObject == null) + if (featureRelationsUpdateObject == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "modelUpdateObject"); + throw new ValidationException(ValidationRules.CannotBeNull, "featureRelationsUpdateObject"); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -3000,13 +3688,13 @@ public Model(LUISAuthoringClient client) tracingParameters.Add("appId", appId); tracingParameters.Add("versionId", versionId); tracingParameters.Add("intentId", intentId); - tracingParameters.Add("modelUpdateObject", modelUpdateObject); + tracingParameters.Add("featureRelationsUpdateObject", featureRelationsUpdateObject); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "UpdateIntent", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ReplaceIntentFeatures", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/intents/{intentId}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/intents/{intentId}/features"; _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); @@ -3033,9 +3721,9 @@ public Model(LUISAuthoringClient client) // Serialize Request string _requestContent = null; - if(modelUpdateObject != null) + if(featureRelationsUpdateObject != null) { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(modelUpdateObject, Client.SerializationSettings); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(featureRelationsUpdateObject, Client.SerializationSettings); _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } @@ -3118,7 +3806,8 @@ public Model(LUISAuthoringClient client) } /// - /// Deletes an intent from a version of the application. + /// Deletes a relation from the feature relations used by the intent in a + /// version of the application. /// /// /// The application ID. @@ -3129,9 +3818,8 @@ public Model(LUISAuthoringClient client) /// /// The intent classifier ID. /// - /// - /// If true, deletes the intent's example utterances. If false, moves the - /// example utterances to the None intent. The default value is false. + /// + /// A feature information object containing the feature relation to delete. /// /// /// Headers that will be added to request. @@ -3154,7 +3842,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task> DeleteIntentWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid intentId, bool? deleteUtterances = false, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteIntentFeatureWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid intentId, ModelFeatureInformation featureRelationDeleteObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -3164,6 +3852,10 @@ public Model(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } + if (featureRelationDeleteObject == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "featureRelationDeleteObject"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3174,26 +3866,17 @@ public Model(LUISAuthoringClient client) tracingParameters.Add("appId", appId); tracingParameters.Add("versionId", versionId); tracingParameters.Add("intentId", intentId); - tracingParameters.Add("deleteUtterances", deleteUtterances); + tracingParameters.Add("featureRelationDeleteObject", featureRelationDeleteObject); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "DeleteIntent", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "DeleteIntentFeature", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/intents/{intentId}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/intents/{intentId}/features"; _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); _url = _url.Replace("{intentId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(intentId, Client.SerializationSettings).Trim('"'))); - List _queryParameters = new List(); - if (deleteUtterances != null) - { - _queryParameters.Add(string.Format("deleteUtterances={0}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(deleteUtterances, Client.SerializationSettings).Trim('"')))); - } - if (_queryParameters.Count > 0) - { - _url += "?" + string.Join("&", _queryParameters); - } // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; @@ -3216,6 +3899,12 @@ public Model(LUISAuthoringClient client) // Serialize Request string _requestContent = null; + if(featureRelationDeleteObject != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(featureRelationDeleteObject, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -3295,7 +3984,8 @@ public Model(LUISAuthoringClient client) } /// - /// Gets information about an entity model in a version of the application. + /// Gets the information of the features used by the entity in a version of the + /// application. /// /// /// The application ID. @@ -3327,7 +4017,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetEntityWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid entityId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> GetEntityFeaturesWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid entityId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -3348,11 +4038,11 @@ public Model(LUISAuthoringClient client) tracingParameters.Add("versionId", versionId); tracingParameters.Add("entityId", entityId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetEntity", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetEntityFeatures", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/entities/{entityId}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/entities/{entityId}/features"; _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); @@ -3429,7 +4119,7 @@ public Model(LUISAuthoringClient client) throw ex; } // Create Result - var _result = new HttpOperationResponse(); + var _result = new HttpOperationResponse>(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response @@ -3438,7 +4128,7 @@ public Model(LUISAuthoringClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject>(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -3458,7 +4148,8 @@ public Model(LUISAuthoringClient client) } /// - /// Updates the name of an entity in a version of the application. + /// Updates the information of the features used by the entity in a version of + /// the application. /// /// /// The application ID. @@ -3469,8 +4160,8 @@ public Model(LUISAuthoringClient client) /// /// The entity extractor ID. /// - /// - /// A model object containing the new entity extractor name. + /// + /// A list of feature information objects containing the new feature relations. /// /// /// Headers that will be added to request. @@ -3493,7 +4184,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task> UpdateEntityWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid entityId, ModelUpdateObject modelUpdateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> ReplaceEntityFeaturesWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid entityId, IList featureRelationsUpdateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -3503,9 +4194,9 @@ public Model(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } - if (modelUpdateObject == null) + if (featureRelationsUpdateObject == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "modelUpdateObject"); + throw new ValidationException(ValidationRules.CannotBeNull, "featureRelationsUpdateObject"); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -3517,13 +4208,13 @@ public Model(LUISAuthoringClient client) tracingParameters.Add("appId", appId); tracingParameters.Add("versionId", versionId); tracingParameters.Add("entityId", entityId); - tracingParameters.Add("modelUpdateObject", modelUpdateObject); + tracingParameters.Add("featureRelationsUpdateObject", featureRelationsUpdateObject); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "UpdateEntity", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ReplaceEntityFeatures", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/entities/{entityId}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/entities/{entityId}/features"; _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); @@ -3550,9 +4241,9 @@ public Model(LUISAuthoringClient client) // Serialize Request string _requestContent = null; - if(modelUpdateObject != null) + if(featureRelationsUpdateObject != null) { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(modelUpdateObject, Client.SerializationSettings); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(featureRelationsUpdateObject, Client.SerializationSettings); _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } @@ -3635,7 +4326,8 @@ public Model(LUISAuthoringClient client) } /// - /// Deletes an entity from a version of the application. + /// Deletes a relation from the feature relations used by the entity in a + /// version of the application. /// /// /// The application ID. @@ -3646,6 +4338,9 @@ public Model(LUISAuthoringClient client) /// /// The entity extractor ID. /// + /// + /// A feature information object containing the feature relation to delete. + /// /// /// Headers that will be added to request. /// @@ -3667,7 +4362,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task> DeleteEntityWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid entityId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteEntityFeatureWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid entityId, ModelFeatureInformation featureRelationDeleteObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -3677,6 +4372,10 @@ public Model(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } + if (featureRelationDeleteObject == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "featureRelationDeleteObject"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -3687,12 +4386,13 @@ public Model(LUISAuthoringClient client) tracingParameters.Add("appId", appId); tracingParameters.Add("versionId", versionId); tracingParameters.Add("entityId", entityId); + tracingParameters.Add("featureRelationDeleteObject", featureRelationDeleteObject); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "DeleteEntity", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "DeleteEntityFeature", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/entities/{entityId}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/entities/{entityId}/features"; _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); @@ -3719,6 +4419,12 @@ public Model(LUISAuthoringClient client) // Serialize Request string _requestContent = null; + if(featureRelationDeleteObject != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(featureRelationDeleteObject, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -3962,8 +4668,8 @@ public Model(LUISAuthoringClient client) } /// - /// Updates the name and children of a hierarchical entity model in a version - /// of the application. + /// Updates the name of a hierarchical entity model in a version of the + /// application. /// /// /// The application ID. @@ -3974,8 +4680,8 @@ public Model(LUISAuthoringClient client) /// /// The hierarchical entity extractor ID. /// - /// - /// Model containing names of the children of the hierarchical entity. + /// + /// Model containing names of the hierarchical entity. /// /// /// Headers that will be added to request. @@ -3998,7 +4704,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task> UpdateHierarchicalEntityWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid hEntityId, HierarchicalEntityModel hierarchicalModelUpdateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> UpdateHierarchicalEntityWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid hEntityId, ModelUpdateObject modelUpdateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -4008,9 +4714,9 @@ public Model(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } - if (hierarchicalModelUpdateObject == null) + if (modelUpdateObject == null) { - throw new ValidationException(ValidationRules.CannotBeNull, "hierarchicalModelUpdateObject"); + throw new ValidationException(ValidationRules.CannotBeNull, "modelUpdateObject"); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -4022,7 +4728,7 @@ public Model(LUISAuthoringClient client) tracingParameters.Add("appId", appId); tracingParameters.Add("versionId", versionId); tracingParameters.Add("hEntityId", hEntityId); - tracingParameters.Add("hierarchicalModelUpdateObject", hierarchicalModelUpdateObject); + tracingParameters.Add("modelUpdateObject", modelUpdateObject); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "UpdateHierarchicalEntity", tracingParameters); } @@ -4036,7 +4742,7 @@ public Model(LUISAuthoringClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers @@ -4055,9 +4761,9 @@ public Model(LUISAuthoringClient client) // Serialize Request string _requestContent = null; - if(hierarchicalModelUpdateObject != null) + if(modelUpdateObject != null) { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(hierarchicalModelUpdateObject, Client.SerializationSettings); + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(modelUpdateObject, Client.SerializationSettings); _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); } @@ -7875,8 +8581,8 @@ public Model(LUISAuthoringClient client) } /// - /// Gets information about the child's model contained in an hierarchical - /// entity child model in a version of the application. + /// Creates a single child in an existing entity model hierarchy in a version + /// of the application. /// /// /// The application ID. @@ -7884,11 +8590,11 @@ public Model(LUISAuthoringClient client) /// /// The version ID. /// - /// - /// The hierarchical entity extractor ID. + /// + /// The entity extractor ID. /// - /// - /// The hierarchical entity extractor child ID. + /// + /// A model object containing the name of the new child model and its children. /// /// /// Headers that will be added to request. @@ -7911,7 +8617,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GetHierarchicalEntityChildWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid hEntityId, System.Guid hChildId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> AddEntityChildWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid entityId, ChildEntityModelCreateObject childEntityModelCreateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -7921,6 +8627,10 @@ public Model(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } + if (childEntityModelCreateObject == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "childEntityModelCreateObject"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -7930,23 +8640,22 @@ public Model(LUISAuthoringClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("appId", appId); tracingParameters.Add("versionId", versionId); - tracingParameters.Add("hEntityId", hEntityId); - tracingParameters.Add("hChildId", hChildId); + tracingParameters.Add("entityId", entityId); + tracingParameters.Add("childEntityModelCreateObject", childEntityModelCreateObject); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "GetHierarchicalEntityChild", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "AddEntityChild", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/hierarchicalentities/{hEntityId}/children/{hChildId}"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/entities/{entityId}/children"; _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); - _url = _url.Replace("{hEntityId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(hEntityId, Client.SerializationSettings).Trim('"'))); - _url = _url.Replace("{hChildId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(hChildId, Client.SerializationSettings).Trim('"'))); + _url = _url.Replace("{entityId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(entityId, Client.SerializationSettings).Trim('"'))); // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.Method = new HttpMethod("POST"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers @@ -7965,6 +8674,12 @@ public Model(LUISAuthoringClient client) // Serialize Request string _requestContent = null; + if(childEntityModelCreateObject != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(childEntityModelCreateObject, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -7985,7 +8700,7 @@ public Model(LUISAuthoringClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 200) + if ((int)_statusCode != 201) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -8015,16 +8730,16 @@ public Model(LUISAuthoringClient client) throw ex; } // Create Result - var _result = new HttpOperationResponse(); + var _result = new HttpOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response - if ((int)_statusCode == 200) + if ((int)_statusCode == 201) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -8044,8 +8759,8 @@ public Model(LUISAuthoringClient client) } /// - /// Renames a single child in an existing hierarchical entity model in a - /// version of the application. + /// Gets information about the child's model contained in an hierarchical + /// entity child model in a version of the application. /// /// /// The application ID. @@ -8059,9 +8774,6 @@ public Model(LUISAuthoringClient client) /// /// The hierarchical entity extractor child ID. /// - /// - /// Model object containing new name of the hierarchical entity child. - /// /// /// Headers that will be added to request. /// @@ -8083,7 +8795,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task> UpdateHierarchicalEntityChildWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid hEntityId, System.Guid hChildId, HierarchicalChildModelUpdateObject hierarchicalChildModelUpdateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetHierarchicalEntityChildWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid hEntityId, System.Guid hChildId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -8093,10 +8805,6 @@ public Model(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } - if (hierarchicalChildModelUpdateObject == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "hierarchicalChildModelUpdateObject"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -8108,9 +8816,8 @@ public Model(LUISAuthoringClient client) tracingParameters.Add("versionId", versionId); tracingParameters.Add("hEntityId", hEntityId); tracingParameters.Add("hChildId", hChildId); - tracingParameters.Add("hierarchicalChildModelUpdateObject", hierarchicalChildModelUpdateObject); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "UpdateHierarchicalEntityChild", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetHierarchicalEntityChild", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; @@ -8123,7 +8830,7 @@ public Model(LUISAuthoringClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("PUT"); + _httpRequest.Method = new HttpMethod("GET"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers @@ -8142,12 +8849,6 @@ public Model(LUISAuthoringClient client) // Serialize Request string _requestContent = null; - if(hierarchicalChildModelUpdateObject != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(hierarchicalChildModelUpdateObject, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -8198,7 +8899,7 @@ public Model(LUISAuthoringClient client) throw ex; } // Create Result - var _result = new HttpOperationResponse(); + var _result = new HttpOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response @@ -8207,7 +8908,7 @@ public Model(LUISAuthoringClient client) _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { @@ -8227,8 +8928,8 @@ public Model(LUISAuthoringClient client) } /// - /// Deletes a hierarchical entity extractor child in a version of the - /// application. + /// Renames a single child in an existing hierarchical entity model in a + /// version of the application. /// /// /// The application ID. @@ -8242,6 +8943,9 @@ public Model(LUISAuthoringClient client) /// /// The hierarchical entity extractor child ID. /// + /// + /// Model object containing new name of the hierarchical entity child. + /// /// /// Headers that will be added to request. /// @@ -8263,7 +8967,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task> DeleteHierarchicalEntityChildWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid hEntityId, System.Guid hChildId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> UpdateHierarchicalEntityChildWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid hEntityId, System.Guid hChildId, HierarchicalChildModelUpdateObject hierarchicalChildModelUpdateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -8273,6 +8977,10 @@ public Model(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } + if (hierarchicalChildModelUpdateObject == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "hierarchicalChildModelUpdateObject"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -8284,8 +8992,9 @@ public Model(LUISAuthoringClient client) tracingParameters.Add("versionId", versionId); tracingParameters.Add("hEntityId", hEntityId); tracingParameters.Add("hChildId", hChildId); + tracingParameters.Add("hierarchicalChildModelUpdateObject", hierarchicalChildModelUpdateObject); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "DeleteHierarchicalEntityChild", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "UpdateHierarchicalEntityChild", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; @@ -8298,7 +9007,7 @@ public Model(LUISAuthoringClient client) // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("DELETE"); + _httpRequest.Method = new HttpMethod("PATCH"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers @@ -8317,6 +9026,12 @@ public Model(LUISAuthoringClient client) // Serialize Request string _requestContent = null; + if(hierarchicalChildModelUpdateObject != null) + { + _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(hierarchicalChildModelUpdateObject, Client.SerializationSettings); + _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); + _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); + } // Set Credentials if (Client.Credentials != null) { @@ -8396,8 +9111,8 @@ public Model(LUISAuthoringClient client) } /// - /// Creates a single child in an existing hierarchical entity model in a - /// version of the application. + /// Deletes a hierarchical entity extractor child in a version of the + /// application. /// /// /// The application ID. @@ -8408,8 +9123,8 @@ public Model(LUISAuthoringClient client) /// /// The hierarchical entity extractor ID. /// - /// - /// A model object containing the name of the new hierarchical child model. + /// + /// The hierarchical entity extractor child ID. /// /// /// Headers that will be added to request. @@ -8432,7 +9147,7 @@ public Model(LUISAuthoringClient client) /// /// A response object containing the response body and response headers. /// - public async Task> AddHierarchicalEntityChildWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid hEntityId, HierarchicalChildModelCreateObject hierarchicalChildModelCreateObject, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> DeleteHierarchicalEntityChildWithHttpMessagesAsync(System.Guid appId, string versionId, System.Guid hEntityId, System.Guid hChildId, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (Client.Endpoint == null) { @@ -8442,10 +9157,6 @@ public Model(LUISAuthoringClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } - if (hierarchicalChildModelCreateObject == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "hierarchicalChildModelCreateObject"); - } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -8456,21 +9167,22 @@ public Model(LUISAuthoringClient client) tracingParameters.Add("appId", appId); tracingParameters.Add("versionId", versionId); tracingParameters.Add("hEntityId", hEntityId); - tracingParameters.Add("hierarchicalChildModelCreateObject", hierarchicalChildModelCreateObject); + tracingParameters.Add("hChildId", hChildId); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "AddHierarchicalEntityChild", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "DeleteHierarchicalEntityChild", tracingParameters); } // Construct URL var _baseUrl = Client.BaseUri; - var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/hierarchicalentities/{hEntityId}/children"; + var _url = _baseUrl + (_baseUrl.EndsWith("/") ? "" : "/") + "apps/{appId}/versions/{versionId}/hierarchicalentities/{hEntityId}/children/{hChildId}"; _url = _url.Replace("{Endpoint}", Client.Endpoint); _url = _url.Replace("{appId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(appId, Client.SerializationSettings).Trim('"'))); _url = _url.Replace("{versionId}", System.Uri.EscapeDataString(versionId)); _url = _url.Replace("{hEntityId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(hEntityId, Client.SerializationSettings).Trim('"'))); + _url = _url.Replace("{hChildId}", System.Uri.EscapeDataString(Rest.Serialization.SafeJsonConvert.SerializeObject(hChildId, Client.SerializationSettings).Trim('"'))); // Create HTTP transport objects var _httpRequest = new HttpRequestMessage(); HttpResponseMessage _httpResponse = null; - _httpRequest.Method = new HttpMethod("POST"); + _httpRequest.Method = new HttpMethod("DELETE"); _httpRequest.RequestUri = new System.Uri(_url); // Set Headers @@ -8489,12 +9201,6 @@ public Model(LUISAuthoringClient client) // Serialize Request string _requestContent = null; - if(hierarchicalChildModelCreateObject != null) - { - _requestContent = Rest.Serialization.SafeJsonConvert.SerializeObject(hierarchicalChildModelCreateObject, Client.SerializationSettings); - _httpRequest.Content = new StringContent(_requestContent, System.Text.Encoding.UTF8); - _httpRequest.Content.Headers.ContentType =System.Net.Http.Headers.MediaTypeHeaderValue.Parse("application/json; charset=utf-8"); - } // Set Credentials if (Client.Credentials != null) { @@ -8515,7 +9221,7 @@ public Model(LUISAuthoringClient client) HttpStatusCode _statusCode = _httpResponse.StatusCode; cancellationToken.ThrowIfCancellationRequested(); string _responseContent = null; - if ((int)_statusCode != 201) + if ((int)_statusCode != 200) { var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); try @@ -8545,16 +9251,16 @@ public Model(LUISAuthoringClient client) throw ex; } // Create Result - var _result = new HttpOperationResponse(); + var _result = new HttpOperationResponse(); _result.Request = _httpRequest; _result.Response = _httpResponse; // Deserialize Response - if ((int)_statusCode == 201) + if ((int)_statusCode == 200) { _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); try { - _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); + _result.Body = Rest.Serialization.SafeJsonConvert.DeserializeObject(_responseContent, Client.DeserializationSettings); } catch (JsonException ex) { diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/ModelExtensions.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/ModelExtensions.cs index d9fd86bed371..9c058d537cef 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/ModelExtensions.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/ModelExtensions.cs @@ -77,7 +77,7 @@ public static partial class ModelExtensions } /// - /// Adds a simple entity extractor to a version of the application. + /// Adds an entity extractor to a version of the application. /// /// /// The operations group for this extension method. @@ -88,15 +88,16 @@ public static partial class ModelExtensions /// /// The version ID. /// - /// - /// A model object containing the name for the new simple entity extractor. + /// + /// A model object containing the name of the new entity extractor and its + /// children. /// /// /// The cancellation token. /// - public static async Task AddEntityAsync(this IModel operations, System.Guid appId, string versionId, ModelCreateObject modelCreateObject, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task AddEntityAsync(this IModel operations, System.Guid appId, string versionId, EntityModelCreateObject entityModelCreateObject, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.AddEntityWithHttpMessagesAsync(appId, versionId, modelCreateObject, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.AddEntityWithHttpMessagesAsync(appId, versionId, entityModelCreateObject, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -124,7 +125,7 @@ public static partial class ModelExtensions /// /// The cancellation token. /// - public static async Task> ListEntitiesAsync(this IModel operations, System.Guid appId, string versionId, int? skip = 0, int? take = 100, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListEntitiesAsync(this IModel operations, System.Guid appId, string versionId, int? skip = 0, int? take = 100, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.ListEntitiesWithHttpMessagesAsync(appId, versionId, skip, take, null, cancellationToken).ConfigureAwait(false)) { @@ -132,32 +133,6 @@ public static partial class ModelExtensions } } - /// - /// Adds a hierarchical entity extractor to a version of the application. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The application ID. - /// - /// - /// The version ID. - /// - /// - /// A model containing the name and children of the new entity extractor. - /// - /// - /// The cancellation token. - /// - public static async Task AddHierarchicalEntityAsync(this IModel operations, System.Guid appId, string versionId, HierarchicalEntityModel hierarchicalModelCreateObject, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.AddHierarchicalEntityWithHttpMessagesAsync(appId, versionId, hierarchicalModelCreateObject, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - /// /// Gets information about all the hierarchical entity models in a version of /// the application. @@ -188,32 +163,6 @@ public static partial class ModelExtensions } } - /// - /// Adds a composite entity extractor to a version of the application. - /// - /// - /// The operations group for this extension method. - /// - /// - /// The application ID. - /// - /// - /// The version ID. - /// - /// - /// A model containing the name and children of the new entity extractor. - /// - /// - /// The cancellation token. - /// - public static async Task AddCompositeEntityAsync(this IModel operations, System.Guid appId, string versionId, CompositeEntityModel compositeModelCreateObject, CancellationToken cancellationToken = default(CancellationToken)) - { - using (var _result = await operations.AddCompositeEntityWithHttpMessagesAsync(appId, versionId, compositeModelCreateObject, null, cancellationToken).ConfigureAwait(false)) - { - return _result.Body; - } - } - /// /// Gets information about all the composite entity models in a version of the /// application. @@ -545,7 +494,7 @@ public static partial class ModelExtensions /// /// The cancellation token. /// - public static async Task GetEntityAsync(this IModel operations, System.Guid appId, string versionId, System.Guid entityId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetEntityAsync(this IModel operations, System.Guid appId, string versionId, System.Guid entityId, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetEntityWithHttpMessagesAsync(appId, versionId, entityId, null, cancellationToken).ConfigureAwait(false)) { @@ -554,7 +503,152 @@ public static partial class ModelExtensions } /// - /// Updates the name of an entity in a version of the application. + /// Deletes an entity or a child from a version of the application. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The application ID. + /// + /// + /// The version ID. + /// + /// + /// The entity extractor or the child entity extractor ID. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteEntityAsync(this IModel operations, System.Guid appId, string versionId, System.Guid entityId, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.DeleteEntityWithHttpMessagesAsync(appId, versionId, entityId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Updates the name of an entity extractor or the name and instanceOf model of + /// a child entity extractor. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The application ID. + /// + /// + /// The version ID. + /// + /// + /// The entity extractor or the child entity extractor ID. + /// + /// + /// A model object containing the name new entity extractor or the name and + /// instance of model of a child entity extractor + /// + /// + /// The cancellation token. + /// + public static async Task UpdateEntityChildAsync(this IModel operations, System.Guid appId, string versionId, System.Guid entityId, EntityModelUpdateObject entityModelUpdateObject, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.UpdateEntityChildWithHttpMessagesAsync(appId, versionId, entityId, entityModelUpdateObject, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the information of the features used by the intent in a version of the + /// application. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The application ID. + /// + /// + /// The version ID. + /// + /// + /// The intent classifier ID. + /// + /// + /// The cancellation token. + /// + public static async Task> GetIntentFeaturesAsync(this IModel operations, System.Guid appId, string versionId, System.Guid intentId, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetIntentFeaturesWithHttpMessagesAsync(appId, versionId, intentId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Updates the information of the features used by the intent in a version of + /// the application. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The application ID. + /// + /// + /// The version ID. + /// + /// + /// The intent classifier ID. + /// + /// + /// A list of feature information objects containing the new feature relations. + /// + /// + /// The cancellation token. + /// + public static async Task ReplaceIntentFeaturesAsync(this IModel operations, System.Guid appId, string versionId, System.Guid intentId, IList featureRelationsUpdateObject, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ReplaceIntentFeaturesWithHttpMessagesAsync(appId, versionId, intentId, featureRelationsUpdateObject, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Deletes a relation from the feature relations used by the intent in a + /// version of the application. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The application ID. + /// + /// + /// The version ID. + /// + /// + /// The intent classifier ID. + /// + /// + /// A feature information object containing the feature relation to delete. + /// + /// + /// The cancellation token. + /// + public static async Task DeleteIntentFeatureAsync(this IModel operations, System.Guid appId, string versionId, System.Guid intentId, ModelFeatureInformation featureRelationDeleteObject, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.DeleteIntentFeatureWithHttpMessagesAsync(appId, versionId, intentId, featureRelationDeleteObject, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Gets the information of the features used by the entity in a version of the + /// application. /// /// /// The operations group for this extension method. @@ -568,22 +662,50 @@ public static partial class ModelExtensions /// /// The entity extractor ID. /// - /// - /// A model object containing the new entity extractor name. + /// + /// The cancellation token. + /// + public static async Task> GetEntityFeaturesAsync(this IModel operations, System.Guid appId, string versionId, System.Guid entityId, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.GetEntityFeaturesWithHttpMessagesAsync(appId, versionId, entityId, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Updates the information of the features used by the entity in a version of + /// the application. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The application ID. + /// + /// + /// The version ID. + /// + /// + /// The entity extractor ID. + /// + /// + /// A list of feature information objects containing the new feature relations. /// /// /// The cancellation token. /// - public static async Task UpdateEntityAsync(this IModel operations, System.Guid appId, string versionId, System.Guid entityId, ModelUpdateObject modelUpdateObject, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task ReplaceEntityFeaturesAsync(this IModel operations, System.Guid appId, string versionId, System.Guid entityId, IList featureRelationsUpdateObject, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateEntityWithHttpMessagesAsync(appId, versionId, entityId, modelUpdateObject, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ReplaceEntityFeaturesWithHttpMessagesAsync(appId, versionId, entityId, featureRelationsUpdateObject, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Deletes an entity from a version of the application. + /// Deletes a relation from the feature relations used by the entity in a + /// version of the application. /// /// /// The operations group for this extension method. @@ -597,12 +719,15 @@ public static partial class ModelExtensions /// /// The entity extractor ID. /// + /// + /// A feature information object containing the feature relation to delete. + /// /// /// The cancellation token. /// - public static async Task DeleteEntityAsync(this IModel operations, System.Guid appId, string versionId, System.Guid entityId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteEntityFeatureAsync(this IModel operations, System.Guid appId, string versionId, System.Guid entityId, ModelFeatureInformation featureRelationDeleteObject, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteEntityWithHttpMessagesAsync(appId, versionId, entityId, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteEntityFeatureWithHttpMessagesAsync(appId, versionId, entityId, featureRelationDeleteObject, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -636,8 +761,8 @@ public static partial class ModelExtensions } /// - /// Updates the name and children of a hierarchical entity model in a version - /// of the application. + /// Updates the name of a hierarchical entity model in a version of the + /// application. /// /// /// The operations group for this extension method. @@ -651,15 +776,15 @@ public static partial class ModelExtensions /// /// The hierarchical entity extractor ID. /// - /// - /// Model containing names of the children of the hierarchical entity. + /// + /// Model containing names of the hierarchical entity. /// /// /// The cancellation token. /// - public static async Task UpdateHierarchicalEntityAsync(this IModel operations, System.Guid appId, string versionId, System.Guid hEntityId, HierarchicalEntityModel hierarchicalModelUpdateObject, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateHierarchicalEntityAsync(this IModel operations, System.Guid appId, string versionId, System.Guid hEntityId, ModelUpdateObject modelUpdateObject, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateHierarchicalEntityWithHttpMessagesAsync(appId, versionId, hEntityId, hierarchicalModelUpdateObject, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateHierarchicalEntityWithHttpMessagesAsync(appId, versionId, hEntityId, modelUpdateObject, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -1267,8 +1392,8 @@ public static partial class ModelExtensions } /// - /// Gets information about the child's model contained in an hierarchical - /// entity child model in a version of the application. + /// Creates a single child in an existing entity model hierarchy in a version + /// of the application. /// /// /// The operations group for this extension method. @@ -1279,26 +1404,26 @@ public static partial class ModelExtensions /// /// The version ID. /// - /// - /// The hierarchical entity extractor ID. + /// + /// The entity extractor ID. /// - /// - /// The hierarchical entity extractor child ID. + /// + /// A model object containing the name of the new child model and its children. /// /// /// The cancellation token. /// - public static async Task GetHierarchicalEntityChildAsync(this IModel operations, System.Guid appId, string versionId, System.Guid hEntityId, System.Guid hChildId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task AddEntityChildAsync(this IModel operations, System.Guid appId, string versionId, System.Guid entityId, ChildEntityModelCreateObject childEntityModelCreateObject, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GetHierarchicalEntityChildWithHttpMessagesAsync(appId, versionId, hEntityId, hChildId, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.AddEntityChildWithHttpMessagesAsync(appId, versionId, entityId, childEntityModelCreateObject, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Renames a single child in an existing hierarchical entity model in a - /// version of the application. + /// Gets information about the child's model contained in an hierarchical + /// entity child model in a version of the application. /// /// /// The operations group for this extension method. @@ -1315,23 +1440,20 @@ public static partial class ModelExtensions /// /// The hierarchical entity extractor child ID. /// - /// - /// Model object containing new name of the hierarchical entity child. - /// /// /// The cancellation token. /// - public static async Task UpdateHierarchicalEntityChildAsync(this IModel operations, System.Guid appId, string versionId, System.Guid hEntityId, System.Guid hChildId, HierarchicalChildModelUpdateObject hierarchicalChildModelUpdateObject, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetHierarchicalEntityChildAsync(this IModel operations, System.Guid appId, string versionId, System.Guid hEntityId, System.Guid hChildId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.UpdateHierarchicalEntityChildWithHttpMessagesAsync(appId, versionId, hEntityId, hChildId, hierarchicalChildModelUpdateObject, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetHierarchicalEntityChildWithHttpMessagesAsync(appId, versionId, hEntityId, hChildId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Deletes a hierarchical entity extractor child in a version of the - /// application. + /// Renames a single child in an existing hierarchical entity model in a + /// version of the application. /// /// /// The operations group for this extension method. @@ -1348,20 +1470,23 @@ public static partial class ModelExtensions /// /// The hierarchical entity extractor child ID. /// + /// + /// Model object containing new name of the hierarchical entity child. + /// /// /// The cancellation token. /// - public static async Task DeleteHierarchicalEntityChildAsync(this IModel operations, System.Guid appId, string versionId, System.Guid hEntityId, System.Guid hChildId, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task UpdateHierarchicalEntityChildAsync(this IModel operations, System.Guid appId, string versionId, System.Guid hEntityId, System.Guid hChildId, HierarchicalChildModelUpdateObject hierarchicalChildModelUpdateObject, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.DeleteHierarchicalEntityChildWithHttpMessagesAsync(appId, versionId, hEntityId, hChildId, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.UpdateHierarchicalEntityChildWithHttpMessagesAsync(appId, versionId, hEntityId, hChildId, hierarchicalChildModelUpdateObject, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } } /// - /// Creates a single child in an existing hierarchical entity model in a - /// version of the application. + /// Deletes a hierarchical entity extractor child in a version of the + /// application. /// /// /// The operations group for this extension method. @@ -1375,15 +1500,15 @@ public static partial class ModelExtensions /// /// The hierarchical entity extractor ID. /// - /// - /// A model object containing the name of the new hierarchical child model. + /// + /// The hierarchical entity extractor child ID. /// /// /// The cancellation token. /// - public static async Task AddHierarchicalEntityChildAsync(this IModel operations, System.Guid appId, string versionId, System.Guid hEntityId, HierarchicalChildModelCreateObject hierarchicalChildModelCreateObject, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteHierarchicalEntityChildAsync(this IModel operations, System.Guid appId, string versionId, System.Guid hEntityId, System.Guid hChildId, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.AddHierarchicalEntityChildWithHttpMessagesAsync(appId, versionId, hEntityId, hierarchicalChildModelCreateObject, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.DeleteHierarchicalEntityChildWithHttpMessagesAsync(appId, versionId, hEntityId, hChildId, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/ChildEntity.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/ChildEntity.cs index fff43f79361d..44bdaeeefa53 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/ChildEntity.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/ChildEntity.cs @@ -11,6 +11,8 @@ namespace Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models { using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -31,10 +33,23 @@ public ChildEntity() /// /// The ID (GUID) belonging to a child entity. /// The name of a child entity. - public ChildEntity(System.Guid id, string name = default(string)) + /// Instance of Model. + /// The type ID of the Entity Model. + /// Possible values include: 'Entity + /// Extractor', 'Child Entity Extractor', 'Hierarchical Entity + /// Extractor', 'Hierarchical Child Entity Extractor', 'Composite + /// Entity Extractor', 'List Entity Extractor', 'Prebuilt Entity + /// Extractor', 'Intent Classifier', 'Pattern.Any Entity Extractor', + /// 'Closed List Entity Extractor', 'Regex Entity Extractor' + /// List of children + public ChildEntity(System.Guid id, string name = default(string), string instanceOf = default(string), int? typeId = default(int?), string readableType = default(string), IList children = default(IList)) { Id = id; Name = name; + InstanceOf = instanceOf; + TypeId = typeId; + ReadableType = readableType; + Children = children; CustomInit(); } @@ -55,6 +70,35 @@ public ChildEntity() [JsonProperty(PropertyName = "name")] public string Name { get; set; } + /// + /// Gets or sets instance of Model. + /// + [JsonProperty(PropertyName = "instanceOf")] + public string InstanceOf { get; set; } + + /// + /// Gets or sets the type ID of the Entity Model. + /// + [JsonProperty(PropertyName = "typeId")] + public int? TypeId { get; set; } + + /// + /// Gets or sets possible values include: 'Entity Extractor', 'Child + /// Entity Extractor', 'Hierarchical Entity Extractor', 'Hierarchical + /// Child Entity Extractor', 'Composite Entity Extractor', 'List Entity + /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', + /// 'Pattern.Any Entity Extractor', 'Closed List Entity Extractor', + /// 'Regex Entity Extractor' + /// + [JsonProperty(PropertyName = "readableType")] + public string ReadableType { get; set; } + + /// + /// Gets or sets list of children + /// + [JsonProperty(PropertyName = "children")] + public IList Children { get; set; } + /// /// Validate the object. /// @@ -63,7 +107,16 @@ public ChildEntity() /// public virtual void Validate() { - //Nothing to validate + if (Children != null) + { + foreach (var element in Children) + { + if (element != null) + { + element.Validate(); + } + } + } } } } diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/ChildEntityModelCreateObject.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/ChildEntityModelCreateObject.cs new file mode 100644 index 000000000000..ff674f39c3b8 --- /dev/null +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/ChildEntityModelCreateObject.cs @@ -0,0 +1,71 @@ +// +// 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. +// + +namespace Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A child entity extractor create object. + /// + public partial class ChildEntityModelCreateObject + { + /// + /// Initializes a new instance of the ChildEntityModelCreateObject + /// class. + /// + public ChildEntityModelCreateObject() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ChildEntityModelCreateObject + /// class. + /// + /// Child entities. + /// Entity name. + /// The instance of model name + public ChildEntityModelCreateObject(IList children = default(IList), string name = default(string), string instanceOf = default(string)) + { + Children = children; + Name = name; + InstanceOf = instanceOf; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets child entities. + /// + [JsonProperty(PropertyName = "children")] + public IList Children { get; set; } + + /// + /// Gets or sets entity name. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the instance of model name + /// + [JsonProperty(PropertyName = "instanceOf")] + public string InstanceOf { get; set; } + + } +} diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/ClosedListEntityExtractor.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/ClosedListEntityExtractor.cs index bc2915d4b753..800c69aa88f2 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/ClosedListEntityExtractor.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/ClosedListEntityExtractor.cs @@ -34,11 +34,11 @@ public ClosedListEntityExtractor() /// /// The ID of the Entity Model. /// Possible values include: 'Entity - /// Extractor', 'Hierarchical Entity Extractor', 'Hierarchical Child - /// Entity Extractor', 'Composite Entity Extractor', 'List Entity - /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', - /// 'Pattern.Any Entity Extractor', 'Regular Expression Entity - /// Extractor' + /// Extractor', 'Child Entity Extractor', 'Hierarchical Entity + /// Extractor', 'Hierarchical Child Entity Extractor', 'Composite + /// Entity Extractor', 'List Entity Extractor', 'Prebuilt Entity + /// Extractor', 'Intent Classifier', 'Pattern.Any Entity Extractor', + /// 'Closed List Entity Extractor', 'Regex Entity Extractor' /// Name of the Entity Model. /// The type ID of the Entity Model. /// List of sublists. @@ -77,11 +77,12 @@ public ClosedListEntityExtractor() public int? TypeId { get; set; } /// - /// Gets or sets possible values include: 'Entity Extractor', - /// 'Hierarchical Entity Extractor', 'Hierarchical Child Entity - /// Extractor', 'Composite Entity Extractor', 'List Entity Extractor', - /// 'Prebuilt Entity Extractor', 'Intent Classifier', 'Pattern.Any - /// Entity Extractor', 'Regular Expression Entity Extractor' + /// Gets or sets possible values include: 'Entity Extractor', 'Child + /// Entity Extractor', 'Hierarchical Entity Extractor', 'Hierarchical + /// Child Entity Extractor', 'Composite Entity Extractor', 'List Entity + /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', + /// 'Pattern.Any Entity Extractor', 'Closed List Entity Extractor', + /// 'Regex Entity Extractor' /// [JsonProperty(PropertyName = "readableType")] public string ReadableType { get; set; } diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/CompositeEntityExtractor.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/CompositeEntityExtractor.cs index bd439f52867f..313e92aba879 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/CompositeEntityExtractor.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/CompositeEntityExtractor.cs @@ -34,11 +34,11 @@ public CompositeEntityExtractor() /// /// The ID of the Entity Model. /// Possible values include: 'Entity - /// Extractor', 'Hierarchical Entity Extractor', 'Hierarchical Child - /// Entity Extractor', 'Composite Entity Extractor', 'List Entity - /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', - /// 'Pattern.Any Entity Extractor', 'Regular Expression Entity - /// Extractor' + /// Extractor', 'Child Entity Extractor', 'Hierarchical Entity + /// Extractor', 'Hierarchical Child Entity Extractor', 'Composite + /// Entity Extractor', 'List Entity Extractor', 'Prebuilt Entity + /// Extractor', 'Intent Classifier', 'Pattern.Any Entity Extractor', + /// 'Closed List Entity Extractor', 'Regex Entity Extractor' /// Name of the Entity Model. /// The type ID of the Entity Model. /// List of child entities. @@ -77,11 +77,12 @@ public CompositeEntityExtractor() public int? TypeId { get; set; } /// - /// Gets or sets possible values include: 'Entity Extractor', - /// 'Hierarchical Entity Extractor', 'Hierarchical Child Entity - /// Extractor', 'Composite Entity Extractor', 'List Entity Extractor', - /// 'Prebuilt Entity Extractor', 'Intent Classifier', 'Pattern.Any - /// Entity Extractor', 'Regular Expression Entity Extractor' + /// Gets or sets possible values include: 'Entity Extractor', 'Child + /// Entity Extractor', 'Hierarchical Entity Extractor', 'Hierarchical + /// Child Entity Extractor', 'Composite Entity Extractor', 'List Entity + /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', + /// 'Pattern.Any Entity Extractor', 'Closed List Entity Extractor', + /// 'Regex Entity Extractor' /// [JsonProperty(PropertyName = "readableType")] public string ReadableType { get; set; } diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/CustomPrebuiltModel.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/CustomPrebuiltModel.cs index ba2a1a2c36c4..4f1f101ad786 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/CustomPrebuiltModel.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/CustomPrebuiltModel.cs @@ -34,11 +34,11 @@ public CustomPrebuiltModel() /// /// The ID of the Entity Model. /// Possible values include: 'Entity - /// Extractor', 'Hierarchical Entity Extractor', 'Hierarchical Child - /// Entity Extractor', 'Composite Entity Extractor', 'List Entity - /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', - /// 'Pattern.Any Entity Extractor', 'Regular Expression Entity - /// Extractor' + /// Extractor', 'Child Entity Extractor', 'Hierarchical Entity + /// Extractor', 'Hierarchical Child Entity Extractor', 'Composite + /// Entity Extractor', 'List Entity Extractor', 'Prebuilt Entity + /// Extractor', 'Intent Classifier', 'Pattern.Any Entity Extractor', + /// 'Closed List Entity Extractor', 'Regex Entity Extractor' /// Name of the Entity Model. /// The type ID of the Entity Model. /// The domain name. @@ -80,11 +80,12 @@ public CustomPrebuiltModel() public int? TypeId { get; set; } /// - /// Gets or sets possible values include: 'Entity Extractor', - /// 'Hierarchical Entity Extractor', 'Hierarchical Child Entity - /// Extractor', 'Composite Entity Extractor', 'List Entity Extractor', - /// 'Prebuilt Entity Extractor', 'Intent Classifier', 'Pattern.Any - /// Entity Extractor', 'Regular Expression Entity Extractor' + /// Gets or sets possible values include: 'Entity Extractor', 'Child + /// Entity Extractor', 'Hierarchical Entity Extractor', 'Hierarchical + /// Child Entity Extractor', 'Composite Entity Extractor', 'List Entity + /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', + /// 'Pattern.Any Entity Extractor', 'Closed List Entity Extractor', + /// 'Regex Entity Extractor' /// [JsonProperty(PropertyName = "readableType")] public string ReadableType { get; set; } diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityExtractor.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityExtractor.cs index 36a369ef7140..528233b1e1bf 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityExtractor.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityExtractor.cs @@ -34,11 +34,11 @@ public EntityExtractor() /// /// The ID of the Entity Model. /// Possible values include: 'Entity - /// Extractor', 'Hierarchical Entity Extractor', 'Hierarchical Child - /// Entity Extractor', 'Composite Entity Extractor', 'List Entity - /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', - /// 'Pattern.Any Entity Extractor', 'Regular Expression Entity - /// Extractor' + /// Extractor', 'Child Entity Extractor', 'Hierarchical Entity + /// Extractor', 'Hierarchical Child Entity Extractor', 'Composite + /// Entity Extractor', 'List Entity Extractor', 'Prebuilt Entity + /// Extractor', 'Intent Classifier', 'Pattern.Any Entity Extractor', + /// 'Closed List Entity Extractor', 'Regex Entity Extractor' /// Name of the Entity Model. /// The type ID of the Entity Model. /// The domain name. @@ -80,11 +80,12 @@ public EntityExtractor() public int? TypeId { get; set; } /// - /// Gets or sets possible values include: 'Entity Extractor', - /// 'Hierarchical Entity Extractor', 'Hierarchical Child Entity - /// Extractor', 'Composite Entity Extractor', 'List Entity Extractor', - /// 'Prebuilt Entity Extractor', 'Intent Classifier', 'Pattern.Any - /// Entity Extractor', 'Regular Expression Entity Extractor' + /// Gets or sets possible values include: 'Entity Extractor', 'Child + /// Entity Extractor', 'Hierarchical Entity Extractor', 'Hierarchical + /// Child Entity Extractor', 'Composite Entity Extractor', 'List Entity + /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', + /// 'Pattern.Any Entity Extractor', 'Closed List Entity Extractor', + /// 'Regex Entity Extractor' /// [JsonProperty(PropertyName = "readableType")] public string ReadableType { get; set; } diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityLabel.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityLabel.cs index 50766451ff4f..532c653f65b7 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityLabel.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityLabel.cs @@ -36,10 +36,9 @@ public EntityLabel() /// the extracted entity starts. /// The index within the utterance where /// the extracted entity ends. - /// The role of the entity within the - /// utterance. - /// The role Id. - public EntityLabel(string entityName, int startTokenIndex, int endTokenIndex, string role = default(string), string roleId = default(string)) + /// The role of the predicted entity. + /// The role id for the predicted entity. + public EntityLabel(string entityName, int startTokenIndex, int endTokenIndex, string role = default(string), System.Guid? roleId = default(System.Guid?)) { EntityName = entityName; StartTokenIndex = startTokenIndex; @@ -75,16 +74,16 @@ public EntityLabel() public int EndTokenIndex { get; set; } /// - /// Gets or sets the role of the entity within the utterance. + /// Gets or sets the role of the predicted entity. /// [JsonProperty(PropertyName = "role")] public string Role { get; set; } /// - /// Gets or sets the role Id. + /// Gets or sets the role id for the predicted entity. /// [JsonProperty(PropertyName = "roleId")] - public string RoleId { get; set; } + public System.Guid? RoleId { get; set; } /// /// Validate the object. diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityLabelObject.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityLabelObject.cs index b8bd3e196128..206ea5730feb 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityLabelObject.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityLabelObject.cs @@ -36,7 +36,7 @@ public EntityLabelObject() /// the extracted entity starts. /// The index within the utterance where the /// extracted entity ends. - /// The role of the entity within the + /// The role the entity plays in the /// utterance. public EntityLabelObject(string entityName, int startCharIndex, int endCharIndex, string role = default(string)) { @@ -73,7 +73,7 @@ public EntityLabelObject() public int EndCharIndex { get; set; } /// - /// Gets or sets the role of the entity within the utterance. + /// Gets or sets the role the entity plays in the utterance. /// [JsonProperty(PropertyName = "role")] public string Role { get; set; } diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/HierarchicalEntityModel.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityModelCreateObject.cs similarity index 73% rename from sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/HierarchicalEntityModel.cs rename to sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityModelCreateObject.cs index 176d422b6c67..d2f3150f64a5 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/HierarchicalEntityModel.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityModelCreateObject.cs @@ -16,24 +16,24 @@ namespace Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models using System.Linq; /// - /// A hierarchical entity extractor. + /// An entity extractor create object. /// - public partial class HierarchicalEntityModel + public partial class EntityModelCreateObject { /// - /// Initializes a new instance of the HierarchicalEntityModel class. + /// Initializes a new instance of the EntityModelCreateObject class. /// - public HierarchicalEntityModel() + public EntityModelCreateObject() { CustomInit(); } /// - /// Initializes a new instance of the HierarchicalEntityModel class. + /// Initializes a new instance of the EntityModelCreateObject class. /// /// Child entities. /// Entity name. - public HierarchicalEntityModel(IList children = default(IList), string name = default(string)) + public EntityModelCreateObject(IList children = default(IList), string name = default(string)) { Children = children; Name = name; @@ -49,7 +49,7 @@ public HierarchicalEntityModel() /// Gets or sets child entities. /// [JsonProperty(PropertyName = "children")] - public IList Children { get; set; } + public IList Children { get; set; } /// /// Gets or sets entity name. diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityModelInfo.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityModelInfo.cs index ec78b0cf517a..8869d9359ce4 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityModelInfo.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityModelInfo.cs @@ -33,11 +33,11 @@ public EntityModelInfo() /// /// The ID of the Entity Model. /// Possible values include: 'Entity - /// Extractor', 'Hierarchical Entity Extractor', 'Hierarchical Child - /// Entity Extractor', 'Composite Entity Extractor', 'List Entity - /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', - /// 'Pattern.Any Entity Extractor', 'Regular Expression Entity - /// Extractor' + /// Extractor', 'Child Entity Extractor', 'Hierarchical Entity + /// Extractor', 'Hierarchical Child Entity Extractor', 'Composite + /// Entity Extractor', 'List Entity Extractor', 'Prebuilt Entity + /// Extractor', 'Intent Classifier', 'Pattern.Any Entity Extractor', + /// 'Closed List Entity Extractor', 'Regex Entity Extractor' /// Name of the Entity Model. /// The type ID of the Entity Model. public EntityModelInfo(System.Guid id, string readableType, string name = default(string), int? typeId = default(int?), IList roles = default(IList)) diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PatternCreateObject.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityModelUpdateObject.cs similarity index 59% rename from sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PatternCreateObject.cs rename to sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityModelUpdateObject.cs index ae6ae5b72bac..044baa6331fb 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PatternCreateObject.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/EntityModelUpdateObject.cs @@ -14,27 +14,27 @@ namespace Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models using System.Linq; /// - /// Object model for creating a Pattern feature. + /// An entity extractor update object. /// - public partial class PatternCreateObject + public partial class EntityModelUpdateObject { /// - /// Initializes a new instance of the PatternCreateObject class. + /// Initializes a new instance of the EntityModelUpdateObject class. /// - public PatternCreateObject() + public EntityModelUpdateObject() { CustomInit(); } /// - /// Initializes a new instance of the PatternCreateObject class. + /// Initializes a new instance of the EntityModelUpdateObject class. /// - /// The Regular Expression to match. - /// Name of the feature. - public PatternCreateObject(string pattern = default(string), string name = default(string)) + /// Entity name. + /// The instance of model name + public EntityModelUpdateObject(string name = default(string), string instanceOf = default(string)) { - Pattern = pattern; Name = name; + InstanceOf = instanceOf; CustomInit(); } @@ -44,16 +44,16 @@ public PatternCreateObject() partial void CustomInit(); /// - /// Gets or sets the Regular Expression to match. + /// Gets or sets entity name. /// - [JsonProperty(PropertyName = "pattern")] - public string Pattern { get; set; } + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } /// - /// Gets or sets name of the feature. + /// Gets or sets the instance of model name /// - [JsonProperty(PropertyName = "name")] - public string Name { get; set; } + [JsonProperty(PropertyName = "instanceOf")] + public string InstanceOf { get; set; } } } diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/FeatureInfoObject.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/FeatureInfoObject.cs index 0a548cc51ad8..2c48ba037038 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/FeatureInfoObject.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/FeatureInfoObject.cs @@ -32,11 +32,14 @@ public FeatureInfoObject() /// A six-digit ID used for Features. /// The name of the Feature. /// Indicates if the feature is enabled. - public FeatureInfoObject(int? id = default(int?), string name = default(string), bool? isActive = default(bool?)) + /// Indicates if the feature is + /// enabled for all models in the application. + public FeatureInfoObject(int? id = default(int?), string name = default(string), bool? isActive = default(bool?), bool? enabledForAllModels = default(bool?)) { Id = id; Name = name; IsActive = isActive; + EnabledForAllModels = enabledForAllModels; CustomInit(); } @@ -63,5 +66,12 @@ public FeatureInfoObject() [JsonProperty(PropertyName = "isActive")] public bool? IsActive { get; set; } + /// + /// Gets or sets indicates if the feature is enabled for all models in + /// the application. + /// + [JsonProperty(PropertyName = "enabledForAllModels")] + public bool? EnabledForAllModels { get; set; } + } } diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/HierarchicalChildEntity.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/HierarchicalChildEntity.cs index 99ea4fcb8262..537c0915699a 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/HierarchicalChildEntity.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/HierarchicalChildEntity.cs @@ -10,7 +10,8 @@ namespace Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models { - using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; using System.Linq; /// @@ -31,18 +32,18 @@ public HierarchicalChildEntity() /// /// The ID (GUID) belonging to a child entity. /// The name of a child entity. + /// Instance of Model. /// The type ID of the Entity Model. /// Possible values include: 'Entity - /// Extractor', 'Hierarchical Entity Extractor', 'Hierarchical Child - /// Entity Extractor', 'Composite Entity Extractor', 'List Entity - /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', - /// 'Pattern.Any Entity Extractor', 'Regular Expression Entity - /// Extractor' - public HierarchicalChildEntity(System.Guid id, string name = default(string), int? typeId = default(int?), string readableType = default(string)) - : base(id, name) + /// Extractor', 'Child Entity Extractor', 'Hierarchical Entity + /// Extractor', 'Hierarchical Child Entity Extractor', 'Composite + /// Entity Extractor', 'List Entity Extractor', 'Prebuilt Entity + /// Extractor', 'Intent Classifier', 'Pattern.Any Entity Extractor', + /// 'Closed List Entity Extractor', 'Regex Entity Extractor' + /// List of children + public HierarchicalChildEntity(System.Guid id, string name = default(string), string instanceOf = default(string), int? typeId = default(int?), string readableType = default(string), IList children = default(IList)) + : base(id, name, instanceOf, typeId, readableType, children) { - TypeId = typeId; - ReadableType = readableType; CustomInit(); } @@ -51,22 +52,6 @@ public HierarchicalChildEntity() /// partial void CustomInit(); - /// - /// Gets or sets the type ID of the Entity Model. - /// - [JsonProperty(PropertyName = "typeId")] - public int? TypeId { get; set; } - - /// - /// Gets or sets possible values include: 'Entity Extractor', - /// 'Hierarchical Entity Extractor', 'Hierarchical Child Entity - /// Extractor', 'Composite Entity Extractor', 'List Entity Extractor', - /// 'Prebuilt Entity Extractor', 'Intent Classifier', 'Pattern.Any - /// Entity Extractor', 'Regular Expression Entity Extractor' - /// - [JsonProperty(PropertyName = "readableType")] - public string ReadableType { get; set; } - /// /// Validate the object. /// diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/HierarchicalChildModelCreateObject.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/HierarchicalChildModelCreateObject.cs deleted file mode 100644 index 4a0c87e5986d..000000000000 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/HierarchicalChildModelCreateObject.cs +++ /dev/null @@ -1,48 +0,0 @@ -// -// 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. -// - -namespace Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models -{ - using Newtonsoft.Json; - using System.Linq; - - public partial class HierarchicalChildModelCreateObject - { - /// - /// Initializes a new instance of the - /// HierarchicalChildModelCreateObject class. - /// - public HierarchicalChildModelCreateObject() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the - /// HierarchicalChildModelCreateObject class. - /// - public HierarchicalChildModelCreateObject(string name = default(string)) - { - Name = name; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; set; } - - } -} diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/HierarchicalEntityExtractor.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/HierarchicalEntityExtractor.cs index 5a0338485cab..a3d5f525b193 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/HierarchicalEntityExtractor.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/HierarchicalEntityExtractor.cs @@ -36,11 +36,11 @@ public HierarchicalEntityExtractor() /// /// The ID of the Entity Model. /// Possible values include: 'Entity - /// Extractor', 'Hierarchical Entity Extractor', 'Hierarchical Child - /// Entity Extractor', 'Composite Entity Extractor', 'List Entity - /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', - /// 'Pattern.Any Entity Extractor', 'Regular Expression Entity - /// Extractor' + /// Extractor', 'Child Entity Extractor', 'Hierarchical Entity + /// Extractor', 'Hierarchical Child Entity Extractor', 'Composite + /// Entity Extractor', 'List Entity Extractor', 'Prebuilt Entity + /// Extractor', 'Intent Classifier', 'Pattern.Any Entity Extractor', + /// 'Closed List Entity Extractor', 'Regex Entity Extractor' /// Name of the Entity Model. /// The type ID of the Entity Model. /// List of child entities. @@ -79,11 +79,12 @@ public HierarchicalEntityExtractor() public int? TypeId { get; set; } /// - /// Gets or sets possible values include: 'Entity Extractor', - /// 'Hierarchical Entity Extractor', 'Hierarchical Child Entity - /// Extractor', 'Composite Entity Extractor', 'List Entity Extractor', - /// 'Prebuilt Entity Extractor', 'Intent Classifier', 'Pattern.Any - /// Entity Extractor', 'Regular Expression Entity Extractor' + /// Gets or sets possible values include: 'Entity Extractor', 'Child + /// Entity Extractor', 'Hierarchical Entity Extractor', 'Hierarchical + /// Child Entity Extractor', 'Composite Entity Extractor', 'List Entity + /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', + /// 'Pattern.Any Entity Extractor', 'Closed List Entity Extractor', + /// 'Regex Entity Extractor' /// [JsonProperty(PropertyName = "readableType")] public string ReadableType { get; set; } diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/IntentClassifier.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/IntentClassifier.cs index 1750f15959e9..0cd45bad6447 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/IntentClassifier.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/IntentClassifier.cs @@ -31,11 +31,11 @@ public IntentClassifier() /// /// The ID of the Entity Model. /// Possible values include: 'Entity - /// Extractor', 'Hierarchical Entity Extractor', 'Hierarchical Child - /// Entity Extractor', 'Composite Entity Extractor', 'List Entity - /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', - /// 'Pattern.Any Entity Extractor', 'Regular Expression Entity - /// Extractor' + /// Extractor', 'Child Entity Extractor', 'Hierarchical Entity + /// Extractor', 'Hierarchical Child Entity Extractor', 'Composite + /// Entity Extractor', 'List Entity Extractor', 'Prebuilt Entity + /// Extractor', 'Intent Classifier', 'Pattern.Any Entity Extractor', + /// 'Closed List Entity Extractor', 'Regex Entity Extractor' /// Name of the Entity Model. /// The type ID of the Entity Model. /// The domain name. diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/JSONEntity.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/JSONEntity.cs index 7408af72872e..1a9e4626b676 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/JSONEntity.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/JSONEntity.cs @@ -35,7 +35,7 @@ public JSONEntity() /// The index within the utterance where the /// extracted entity ends. /// The entity name. - /// The role of the entity within the + /// The role the entity plays in the /// utterance. public JSONEntity(int startPos, int endPos, string entity, string role = default(string)) { @@ -72,7 +72,7 @@ public JSONEntity() public string Entity { get; set; } /// - /// Gets or sets the role of the entity within the utterance. + /// Gets or sets the role the entity plays in the utterance. /// [JsonProperty(PropertyName = "role")] public string Role { get; set; } diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/ModelFeatureInformation.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/ModelFeatureInformation.cs new file mode 100644 index 000000000000..a7428350e681 --- /dev/null +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/ModelFeatureInformation.cs @@ -0,0 +1,60 @@ +// +// 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. +// + +namespace Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// An object containing the model feature information either the model + /// name or feature name. + /// + public partial class ModelFeatureInformation + { + /// + /// Initializes a new instance of the ModelFeatureInformation class. + /// + public ModelFeatureInformation() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ModelFeatureInformation class. + /// + /// The name of the model used. + /// The name of the feature used. + public ModelFeatureInformation(string modelName = default(string), string featureName = default(string)) + { + ModelName = modelName; + FeatureName = featureName; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the name of the model used. + /// + [JsonProperty(PropertyName = "modelName")] + public string ModelName { get; set; } + + /// + /// Gets or sets the name of the feature used. + /// + [JsonProperty(PropertyName = "featureName")] + public string FeatureName { get; set; } + + } +} diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/ModelInfo.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/ModelInfo.cs index 6900a36b9650..2dfc65357698 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/ModelInfo.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/ModelInfo.cs @@ -32,11 +32,11 @@ public ModelInfo() /// /// The ID of the Entity Model. /// Possible values include: 'Entity - /// Extractor', 'Hierarchical Entity Extractor', 'Hierarchical Child - /// Entity Extractor', 'Composite Entity Extractor', 'List Entity - /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', - /// 'Pattern.Any Entity Extractor', 'Regular Expression Entity - /// Extractor' + /// Extractor', 'Child Entity Extractor', 'Hierarchical Entity + /// Extractor', 'Hierarchical Child Entity Extractor', 'Composite + /// Entity Extractor', 'List Entity Extractor', 'Prebuilt Entity + /// Extractor', 'Intent Classifier', 'Pattern.Any Entity Extractor', + /// 'Closed List Entity Extractor', 'Regex Entity Extractor' /// Name of the Entity Model. /// The type ID of the Entity Model. public ModelInfo(System.Guid id, string readableType, string name = default(string), int? typeId = default(int?)) @@ -72,11 +72,12 @@ public ModelInfo() public int? TypeId { get; set; } /// - /// Gets or sets possible values include: 'Entity Extractor', - /// 'Hierarchical Entity Extractor', 'Hierarchical Child Entity - /// Extractor', 'Composite Entity Extractor', 'List Entity Extractor', - /// 'Prebuilt Entity Extractor', 'Intent Classifier', 'Pattern.Any - /// Entity Extractor', 'Regular Expression Entity Extractor' + /// Gets or sets possible values include: 'Entity Extractor', 'Child + /// Entity Extractor', 'Hierarchical Entity Extractor', 'Hierarchical + /// Child Entity Extractor', 'Composite Entity Extractor', 'List Entity + /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', + /// 'Pattern.Any Entity Extractor', 'Closed List Entity Extractor', + /// 'Regex Entity Extractor' /// [JsonProperty(PropertyName = "readableType")] public string ReadableType { get; set; } diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/ModelInfoResponse.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/ModelInfoResponse.cs index 27daab0d6a44..77175e5197fd 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/ModelInfoResponse.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/ModelInfoResponse.cs @@ -34,11 +34,11 @@ public ModelInfoResponse() /// /// The ID of the Entity Model. /// Possible values include: 'Entity - /// Extractor', 'Hierarchical Entity Extractor', 'Hierarchical Child - /// Entity Extractor', 'Composite Entity Extractor', 'List Entity - /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', - /// 'Pattern.Any Entity Extractor', 'Regular Expression Entity - /// Extractor' + /// Extractor', 'Child Entity Extractor', 'Hierarchical Entity + /// Extractor', 'Hierarchical Child Entity Extractor', 'Composite + /// Entity Extractor', 'List Entity Extractor', 'Prebuilt Entity + /// Extractor', 'Intent Classifier', 'Pattern.Any Entity Extractor', + /// 'Closed List Entity Extractor', 'Regex Entity Extractor' /// Name of the Entity Model. /// The type ID of the Entity Model. /// List of child entities. @@ -88,11 +88,12 @@ public ModelInfoResponse() public int? TypeId { get; set; } /// - /// Gets or sets possible values include: 'Entity Extractor', - /// 'Hierarchical Entity Extractor', 'Hierarchical Child Entity - /// Extractor', 'Composite Entity Extractor', 'List Entity Extractor', - /// 'Prebuilt Entity Extractor', 'Intent Classifier', 'Pattern.Any - /// Entity Extractor', 'Regular Expression Entity Extractor' + /// Gets or sets possible values include: 'Entity Extractor', 'Child + /// Entity Extractor', 'Hierarchical Entity Extractor', 'Hierarchical + /// Child Entity Extractor', 'Composite Entity Extractor', 'List Entity + /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', + /// 'Pattern.Any Entity Extractor', 'Closed List Entity Extractor', + /// 'Regex Entity Extractor' /// [JsonProperty(PropertyName = "readableType")] public string ReadableType { get; set; } diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/NDepthEntityExtractor.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/NDepthEntityExtractor.cs new file mode 100644 index 000000000000..735a82ef5edb --- /dev/null +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/NDepthEntityExtractor.cs @@ -0,0 +1,140 @@ +// +// 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. +// + +namespace Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models +{ + using Microsoft.Rest; + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// N-Depth Entity Extractor. + /// + public partial class NDepthEntityExtractor + { + /// + /// Initializes a new instance of the NDepthEntityExtractor class. + /// + public NDepthEntityExtractor() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the NDepthEntityExtractor class. + /// + /// The ID of the Entity Model. + /// Possible values include: 'Entity + /// Extractor', 'Child Entity Extractor', 'Hierarchical Entity + /// Extractor', 'Hierarchical Child Entity Extractor', 'Composite + /// Entity Extractor', 'List Entity Extractor', 'Prebuilt Entity + /// Extractor', 'Intent Classifier', 'Pattern.Any Entity Extractor', + /// 'Closed List Entity Extractor', 'Regex Entity Extractor' + /// Name of the Entity Model. + /// The type ID of the Entity Model. + /// The domain name. + /// The intent name or entity + /// name. + public NDepthEntityExtractor(System.Guid id, string readableType, string name = default(string), int? typeId = default(int?), IList roles = default(IList), string customPrebuiltDomainName = default(string), string customPrebuiltModelName = default(string), IList children = default(IList)) + { + Id = id; + Name = name; + TypeId = typeId; + ReadableType = readableType; + Roles = roles; + CustomPrebuiltDomainName = customPrebuiltDomainName; + CustomPrebuiltModelName = customPrebuiltModelName; + Children = children; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the ID of the Entity Model. + /// + [JsonProperty(PropertyName = "id")] + public System.Guid Id { get; set; } + + /// + /// Gets or sets name of the Entity Model. + /// + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } + + /// + /// Gets or sets the type ID of the Entity Model. + /// + [JsonProperty(PropertyName = "typeId")] + public int? TypeId { get; set; } + + /// + /// Gets or sets possible values include: 'Entity Extractor', 'Child + /// Entity Extractor', 'Hierarchical Entity Extractor', 'Hierarchical + /// Child Entity Extractor', 'Composite Entity Extractor', 'List Entity + /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', + /// 'Pattern.Any Entity Extractor', 'Closed List Entity Extractor', + /// 'Regex Entity Extractor' + /// + [JsonProperty(PropertyName = "readableType")] + public string ReadableType { get; set; } + + /// + /// + [JsonProperty(PropertyName = "roles")] + public IList Roles { get; set; } + + /// + /// Gets or sets the domain name. + /// + [JsonProperty(PropertyName = "customPrebuiltDomainName")] + public string CustomPrebuiltDomainName { get; set; } + + /// + /// Gets or sets the intent name or entity name. + /// + [JsonProperty(PropertyName = "customPrebuiltModelName")] + public string CustomPrebuiltModelName { get; set; } + + /// + /// + [JsonProperty(PropertyName = "children")] + public IList Children { get; set; } + + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (ReadableType == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ReadableType"); + } + if (Children != null) + { + foreach (var element in Children) + { + if (element != null) + { + element.Validate(); + } + } + } + } + } +} diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PatternAnyEntityExtractor.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PatternAnyEntityExtractor.cs index 0bd78841be3c..2094c058e423 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PatternAnyEntityExtractor.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PatternAnyEntityExtractor.cs @@ -34,11 +34,11 @@ public PatternAnyEntityExtractor() /// /// The ID of the Entity Model. /// Possible values include: 'Entity - /// Extractor', 'Hierarchical Entity Extractor', 'Hierarchical Child - /// Entity Extractor', 'Composite Entity Extractor', 'List Entity - /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', - /// 'Pattern.Any Entity Extractor', 'Regular Expression Entity - /// Extractor' + /// Extractor', 'Child Entity Extractor', 'Hierarchical Entity + /// Extractor', 'Hierarchical Child Entity Extractor', 'Composite + /// Entity Extractor', 'List Entity Extractor', 'Prebuilt Entity + /// Extractor', 'Intent Classifier', 'Pattern.Any Entity Extractor', + /// 'Closed List Entity Extractor', 'Regex Entity Extractor' /// Name of the Entity Model. /// The type ID of the Entity Model. public PatternAnyEntityExtractor(System.Guid id, string readableType, string name = default(string), int? typeId = default(int?), IList roles = default(IList), IList explicitList = default(IList)) @@ -76,11 +76,12 @@ public PatternAnyEntityExtractor() public int? TypeId { get; set; } /// - /// Gets or sets possible values include: 'Entity Extractor', - /// 'Hierarchical Entity Extractor', 'Hierarchical Child Entity - /// Extractor', 'Composite Entity Extractor', 'List Entity Extractor', - /// 'Prebuilt Entity Extractor', 'Intent Classifier', 'Pattern.Any - /// Entity Extractor', 'Regular Expression Entity Extractor' + /// Gets or sets possible values include: 'Entity Extractor', 'Child + /// Entity Extractor', 'Hierarchical Entity Extractor', 'Hierarchical + /// Child Entity Extractor', 'Composite Entity Extractor', 'List Entity + /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', + /// 'Pattern.Any Entity Extractor', 'Closed List Entity Extractor', + /// 'Regex Entity Extractor' /// [JsonProperty(PropertyName = "readableType")] public string ReadableType { get; set; } diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PatternFeatureInfo.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PatternFeatureInfo.cs index 1799f69a6db9..09cdb072d6ed 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PatternFeatureInfo.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PatternFeatureInfo.cs @@ -32,9 +32,11 @@ public PatternFeatureInfo() /// A six-digit ID used for Features. /// The name of the Feature. /// Indicates if the feature is enabled. + /// Indicates if the feature is + /// enabled for all models in the application. /// The Regular Expression to match. - public PatternFeatureInfo(int? id = default(int?), string name = default(string), bool? isActive = default(bool?), string pattern = default(string)) - : base(id, name, isActive) + public PatternFeatureInfo(int? id = default(int?), string name = default(string), bool? isActive = default(bool?), bool? enabledForAllModels = default(bool?), string pattern = default(string)) + : base(id, name, isActive, enabledForAllModels) { Pattern = pattern; CustomInit(); diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PatternUpdateObject.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PatternUpdateObject.cs deleted file mode 100644 index 4a8c08b15b46..000000000000 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PatternUpdateObject.cs +++ /dev/null @@ -1,68 +0,0 @@ -// -// 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. -// - -namespace Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.Models -{ - using Newtonsoft.Json; - using System.Linq; - - /// - /// Object model for updating an existing Pattern feature. - /// - public partial class PatternUpdateObject - { - /// - /// Initializes a new instance of the PatternUpdateObject class. - /// - public PatternUpdateObject() - { - CustomInit(); - } - - /// - /// Initializes a new instance of the PatternUpdateObject class. - /// - /// The Regular Expression to match. - /// Name of the feature. - /// Indicates if the Pattern feature is - /// enabled. - public PatternUpdateObject(string pattern = default(string), string name = default(string), bool? isActive = default(bool?)) - { - Pattern = pattern; - Name = name; - IsActive = isActive; - CustomInit(); - } - - /// - /// An initialization method that performs custom operations like setting defaults - /// - partial void CustomInit(); - - /// - /// Gets or sets the Regular Expression to match. - /// - [JsonProperty(PropertyName = "pattern")] - public string Pattern { get; set; } - - /// - /// Gets or sets name of the feature. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; set; } - - /// - /// Gets or sets indicates if the Pattern feature is enabled. - /// - [JsonProperty(PropertyName = "isActive")] - public bool? IsActive { get; set; } - - } -} diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PhraseListFeatureInfo.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PhraseListFeatureInfo.cs index 4b03ebc4ebe6..2b2b6fdd4e1e 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PhraseListFeatureInfo.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PhraseListFeatureInfo.cs @@ -32,6 +32,8 @@ public PhraseListFeatureInfo() /// A six-digit ID used for Features. /// The name of the Feature. /// Indicates if the feature is enabled. + /// Indicates if the feature is + /// enabled for all models in the application. /// A list of comma-separated values. /// An exchangeable phrase list feature /// are serves as single feature to the LUIS underlying training @@ -46,8 +48,8 @@ public PhraseListFeatureInfo() /// add to LUIS existing vocabulary features. Think of a /// non-exchangeable as set of different words. Default value is /// true. - public PhraseListFeatureInfo(int? id = default(int?), string name = default(string), bool? isActive = default(bool?), string phrases = default(string), bool? isExchangeable = default(bool?)) - : base(id, name, isActive) + public PhraseListFeatureInfo(int? id = default(int?), string name = default(string), bool? isActive = default(bool?), bool? enabledForAllModels = default(bool?), string phrases = default(string), bool? isExchangeable = default(bool?)) + : base(id, name, isActive, enabledForAllModels) { Phrases = phrases; IsExchangeable = isExchangeable; diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PhraselistCreateObject.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PhraselistCreateObject.cs index 00465f6309b1..f4fb22f4faa5 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PhraselistCreateObject.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PhraselistCreateObject.cs @@ -41,11 +41,14 @@ public PhraselistCreateObject() /// add to LUIS existing vocabulary features. It is used as a lexicon /// lookup feature where its value is 1 if the lexicon contains a given /// word or 0 if it doesn’t. Default value is true. - public PhraselistCreateObject(string phrases = default(string), string name = default(string), bool? isExchangeable = default(bool?)) + /// Indicates if the Phraselist is + /// enabled for all models in the application. + public PhraselistCreateObject(string phrases = default(string), string name = default(string), bool? isExchangeable = default(bool?), bool? enabledForAllModels = default(bool?)) { Phrases = phrases; Name = name; IsExchangeable = isExchangeable; + EnabledForAllModels = enabledForAllModels; CustomInit(); } @@ -81,5 +84,12 @@ public PhraselistCreateObject() [JsonProperty(PropertyName = "isExchangeable")] public bool? IsExchangeable { get; set; } + /// + /// Gets or sets indicates if the Phraselist is enabled for all models + /// in the application. + /// + [JsonProperty(PropertyName = "enabledForAllModels")] + public bool? EnabledForAllModels { get; set; } + } } diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PhraselistUpdateObject.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PhraselistUpdateObject.cs index e8c60d180705..2d26b6f59c68 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PhraselistUpdateObject.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PhraselistUpdateObject.cs @@ -47,12 +47,15 @@ public PhraselistUpdateObject() /// add to LUIS existing vocabulary features. Think of a /// non-exchangeable as set of different words. Default value is /// true. - public PhraselistUpdateObject(string phrases = default(string), string name = default(string), bool? isActive = default(bool?), bool? isExchangeable = default(bool?)) + /// Indicates if the Phraselist is + /// enabled for all models in the application. + public PhraselistUpdateObject(string phrases = default(string), string name = default(string), bool? isActive = default(bool?), bool? isExchangeable = default(bool?), bool? enabledForAllModels = default(bool?)) { Phrases = phrases; Name = name; IsActive = isActive; IsExchangeable = isExchangeable; + EnabledForAllModels = enabledForAllModels; CustomInit(); } @@ -97,5 +100,12 @@ public PhraselistUpdateObject() [JsonProperty(PropertyName = "isExchangeable")] public bool? IsExchangeable { get; set; } + /// + /// Gets or sets indicates if the Phraselist is enabled for all models + /// in the application. + /// + [JsonProperty(PropertyName = "enabledForAllModels")] + public bool? EnabledForAllModels { get; set; } + } } diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PrebuiltEntityExtractor.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PrebuiltEntityExtractor.cs index f2d23b7c1d41..dbc80cb0a597 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PrebuiltEntityExtractor.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/PrebuiltEntityExtractor.cs @@ -34,11 +34,11 @@ public PrebuiltEntityExtractor() /// /// The ID of the Entity Model. /// Possible values include: 'Entity - /// Extractor', 'Hierarchical Entity Extractor', 'Hierarchical Child - /// Entity Extractor', 'Composite Entity Extractor', 'List Entity - /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', - /// 'Pattern.Any Entity Extractor', 'Regular Expression Entity - /// Extractor' + /// Extractor', 'Child Entity Extractor', 'Hierarchical Entity + /// Extractor', 'Hierarchical Child Entity Extractor', 'Composite + /// Entity Extractor', 'List Entity Extractor', 'Prebuilt Entity + /// Extractor', 'Intent Classifier', 'Pattern.Any Entity Extractor', + /// 'Closed List Entity Extractor', 'Regex Entity Extractor' /// Name of the Entity Model. /// The type ID of the Entity Model. public PrebuiltEntityExtractor(System.Guid id, string readableType, string name = default(string), int? typeId = default(int?), IList roles = default(IList)) @@ -75,11 +75,12 @@ public PrebuiltEntityExtractor() public int? TypeId { get; set; } /// - /// Gets or sets possible values include: 'Entity Extractor', - /// 'Hierarchical Entity Extractor', 'Hierarchical Child Entity - /// Extractor', 'Composite Entity Extractor', 'List Entity Extractor', - /// 'Prebuilt Entity Extractor', 'Intent Classifier', 'Pattern.Any - /// Entity Extractor', 'Regular Expression Entity Extractor' + /// Gets or sets possible values include: 'Entity Extractor', 'Child + /// Entity Extractor', 'Hierarchical Entity Extractor', 'Hierarchical + /// Child Entity Extractor', 'Composite Entity Extractor', 'List Entity + /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', + /// 'Pattern.Any Entity Extractor', 'Closed List Entity Extractor', + /// 'Regex Entity Extractor' /// [JsonProperty(PropertyName = "readableType")] public string ReadableType { get; set; } diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/RegexEntityExtractor.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/RegexEntityExtractor.cs index 7c8ee2ae1f9c..7b1b6ceca3d3 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/RegexEntityExtractor.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/Models/RegexEntityExtractor.cs @@ -34,11 +34,11 @@ public RegexEntityExtractor() /// /// The ID of the Entity Model. /// Possible values include: 'Entity - /// Extractor', 'Hierarchical Entity Extractor', 'Hierarchical Child - /// Entity Extractor', 'Composite Entity Extractor', 'List Entity - /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', - /// 'Pattern.Any Entity Extractor', 'Regular Expression Entity - /// Extractor' + /// Extractor', 'Child Entity Extractor', 'Hierarchical Entity + /// Extractor', 'Hierarchical Child Entity Extractor', 'Composite + /// Entity Extractor', 'List Entity Extractor', 'Prebuilt Entity + /// Extractor', 'Intent Classifier', 'Pattern.Any Entity Extractor', + /// 'Closed List Entity Extractor', 'Regex Entity Extractor' /// Name of the Entity Model. /// The type ID of the Entity Model. /// The Regular Expression entity @@ -78,11 +78,12 @@ public RegexEntityExtractor() public int? TypeId { get; set; } /// - /// Gets or sets possible values include: 'Entity Extractor', - /// 'Hierarchical Entity Extractor', 'Hierarchical Child Entity - /// Extractor', 'Composite Entity Extractor', 'List Entity Extractor', - /// 'Prebuilt Entity Extractor', 'Intent Classifier', 'Pattern.Any - /// Entity Extractor', 'Regular Expression Entity Extractor' + /// Gets or sets possible values include: 'Entity Extractor', 'Child + /// Entity Extractor', 'Hierarchical Entity Extractor', 'Hierarchical + /// Child Entity Extractor', 'Composite Entity Extractor', 'List Entity + /// Extractor', 'Prebuilt Entity Extractor', 'Intent Classifier', + /// 'Pattern.Any Entity Extractor', 'Closed List Entity Extractor', + /// 'Regex Entity Extractor' /// [JsonProperty(PropertyName = "readableType")] public string ReadableType { get; set; } diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/SdkInfo_LUISAuthoringClient.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/SdkInfo_LUISAuthoringClient.cs deleted file mode 100644 index b0dd01d1ecd6..000000000000 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Generated/SdkInfo_LUISAuthoringClient.cs +++ /dev/null @@ -1,36 +0,0 @@ - -// -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. -// - -namespace Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring -{ - using System; - using System.Collections.Generic; - using System.Linq; - - internal static partial class SdkInfo - { - public static IEnumerable> ApiInfo_LUISAuthoringClient - { - get - { - return new Tuple[] - { - new Tuple("LUISAuthoringClient", "Apps", "2.0"), - new Tuple("LUISAuthoringClient", "AzureAccounts", "2.0"), - new Tuple("LUISAuthoringClient", "Examples", "2.0"), - new Tuple("LUISAuthoringClient", "Features", "2.0"), - new Tuple("LUISAuthoringClient", "Model", "2.0"), - new Tuple("LUISAuthoringClient", "Pattern", "2.0"), - new Tuple("LUISAuthoringClient", "Permissions", "2.0"), - new Tuple("LUISAuthoringClient", "Settings", "2.0"), - new Tuple("LUISAuthoringClient", "Train", "2.0"), - new Tuple("LUISAuthoringClient", "Versions", "2.0"), - }.AsEnumerable(); - } - } - } -} diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.csproj b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.csproj index 116f6cece500..ce71bca89e6d 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/src/Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.csproj +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/src/Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.csproj @@ -2,14 +2,14 @@ Microsoft Azure Cognitive Services Language LUIS Authoring Provides API functions for consuming the Microsoft Azure Cognitive Services LUIS Authoring API. - 3.2.0-preview.1 + 3.8.0-preview Microsoft Cognitive Services;Cognitive Services;Cognitive Services SDK;LUIS;Language Understanding Intelligent Service;Language Understanding;REST HTTP client diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/BaseTest.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/BaseTest.cs index 969bfcb33046..1e09fdaf85f7 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/BaseTest.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/BaseTest.cs @@ -12,12 +12,12 @@ public abstract class BaseTest { private const HttpRecorderMode mode = HttpRecorderMode.Playback; - protected readonly Guid GlobalAppId = new Guid("3327b33c-35df-40d0-a661-c9ade29da239"); + protected readonly Guid GlobalAppId = new Guid("6c859d36-47a0-4dd9-a2ab-7817e211646b"); protected const string GlobalVersionId = "0.1"; protected readonly Guid GlobalAppIdError = new Guid("86226c53-b7a6-416f-876b-226b2b5ab07d"); - protected readonly Guid GlobalNoneId = new Guid("ac04c5c6-2c0c-4af8-ba3f-5db090fa7de5"); + protected readonly Guid GlobalNoneId = new Guid("731e7ac1-b1d4-4e4e-bc1b-d79f67e2b890"); protected const string AuthoringKey = "00000000000000000000000000000000"; - protected readonly string OwnerEmail = "a-omsami@microsoft.com"; + protected readonly string OwnerEmail = "a-nebadr@microsoft.com"; private Type TypeName => GetType(); diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/AppsTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/AppsTests.cs index c41c86cdf41c..0b0a05d51d2d 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/AppsTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/AppsTests.cs @@ -386,7 +386,7 @@ public void ListAvailableCustomPrebuiltDomains() }); } - [Fact (Skip = "Problem from API")] + [Fact] public void ListAvailableCustomPrebuiltDomainsForCulture() { UseClientFor(async client => diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/EntityRolesTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/EntityRolesTests.cs index 7e4486683364..ee6dc97399c5 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/EntityRolesTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/EntityRolesTests.cs @@ -17,7 +17,7 @@ public void AddSimpleEntityRole() { UseClientFor(async client => { - var entityId = await client.Model.AddEntityAsync(GlobalAppId, "0.1", new ModelCreateObject + var entityId = await client.Model.AddEntityAsync(GlobalAppId, "0.1", new EntityModelCreateObject { Name = "simple entity" }); @@ -94,37 +94,6 @@ public void AddRegexEntityRole() }); } - [Fact] - public void AddCompositeEntityRole() - { - UseClientFor(async client => - { - var version = "0.1"; - var prebuiltEntitiesToAdd = new string[] - { - "datetimeV2" - }; - var prebuiltEntitiesAdded = await client.Model.AddPrebuiltAsync(GlobalAppId, version, prebuiltEntitiesToAdd); - var entityId = await client.Model.AddCompositeEntityAsync(GlobalAppId, "0.1", new CompositeEntityModel - { - Name = "composite model", - Children = new[] { "datetimeV2" } - }); - var roleId = await client.Model.CreateCompositeEntityRoleAsync(GlobalAppId, "0.1", entityId, new EntityRoleCreateObject - { - Name = "simple role" - }); - var roles = await client.Model.ListCompositeEntityRolesAsync(GlobalAppId, "0.1", entityId); - await client.Model.DeleteCompositeEntityAsync(GlobalAppId, "0.1", entityId); - foreach (var added in prebuiltEntitiesAdded) - { - await client.Model.DeletePrebuiltAsync(GlobalAppId, version, added.Id); - } - - Assert.Contains(roles, r => r.Name == "simple role"); - }); - } - [Fact] public void AddPatternAnyEntityRole() { @@ -146,29 +115,6 @@ public void AddPatternAnyEntityRole() }); } - [Fact] - public void AddHierarchicalEntityRole() - { - UseClientFor(async client => - { - var entityId = await client.Model.AddHierarchicalEntityAsync(GlobalAppId, "0.1", new HierarchicalEntityModel - { - Name = "Pattern.Any model", - Children = new[] { "child1" } - }); - var exception = await Assert.ThrowsAsync(async () => await client.Model.CreateHierarchicalEntityRoleAsync(GlobalAppId, "0.1", entityId, new EntityRoleCreateObject - { - Name = "simple role" - })); - await client.Model.DeleteHierarchicalEntityAsync(GlobalAppId, "0.1", entityId); - - var error = exception.Body; - var errorCode = "BadArgument"; - - Assert.Equal(errorCode, error.Code); - }); - } - [Fact] public void AddCustomPrebuiltDomainEntityRole() { @@ -196,7 +142,7 @@ public void GetSimpleEntityRole() { UseClientFor(async client => { - var entityId = await client.Model.AddEntityAsync(GlobalAppId, "0.1", new ModelCreateObject + var entityId = await client.Model.AddEntityAsync(GlobalAppId, "0.1", new EntityModelCreateObject { Name = "simple entity" }); @@ -273,37 +219,6 @@ public void GetRegexEntityRole() }); } - [Fact] - public void GetCompositeEntityRole() - { - UseClientFor(async client => - { - var version = "0.1"; - var prebuiltEntitiesToAdd = new string[] - { - "datetimeV2" - }; - var prebuiltEntitiesAdded = await client.Model.AddPrebuiltAsync(GlobalAppId, version, prebuiltEntitiesToAdd); - var entityId = await client.Model.AddCompositeEntityAsync(GlobalAppId, "0.1", new CompositeEntityModel - { - Name = "composite model", - Children = new[] { "datetimeV2" } - }); - var roleId = await client.Model.CreateCompositeEntityRoleAsync(GlobalAppId, "0.1", entityId, new EntityRoleCreateObject - { - Name = "simple role" - }); - var role = await client.Model.GetCompositeEntityRoleAsync(GlobalAppId, "0.1", entityId, roleId); - await client.Model.DeleteCompositeEntityAsync(GlobalAppId, "0.1", entityId); - foreach (var added in prebuiltEntitiesAdded) - { - await client.Model.DeletePrebuiltAsync(GlobalAppId, version, added.Id); - } - - Assert.Equal("simple role", role.Name); - }); - } - [Fact] public void GetPatternAnyEntityRole() { @@ -352,7 +267,7 @@ public void GetSimpleEntityRoles() { UseClientFor(async client => { - var entityId = await client.Model.AddEntityAsync(GlobalAppId, "0.1", new ModelCreateObject + var entityId = await client.Model.AddEntityAsync(GlobalAppId, "0.1", new EntityModelCreateObject { Name = "simple entity" }); @@ -429,37 +344,6 @@ public void GetRegexEntityRoles() }); } - [Fact] - public void GetCompositeEntityRoles() - { - UseClientFor(async client => - { - var version = "0.1"; - var prebuiltEntitiesToAdd = new string[] - { - "datetimeV2" - }; - var prebuiltEntitiesAdded = await client.Model.AddPrebuiltAsync(GlobalAppId, version, prebuiltEntitiesToAdd); - var entityId = await client.Model.AddCompositeEntityAsync(GlobalAppId, "0.1", new CompositeEntityModel - { - Name = "composite model", - Children = new[] { "datetimeV2" } - }); - var roleId = await client.Model.CreateCompositeEntityRoleAsync(GlobalAppId, "0.1", entityId, new EntityRoleCreateObject - { - Name = "simple role" - }); - var roles = await client.Model.ListCompositeEntityRolesAsync(GlobalAppId, "0.1", entityId); - await client.Model.DeleteCompositeEntityAsync(GlobalAppId, "0.1", entityId); - foreach (var added in prebuiltEntitiesAdded) - { - await client.Model.DeletePrebuiltAsync(GlobalAppId, version, added.Id); - } - - Assert.Equal("simple role", Assert.Single(roles).Name); - }); - } - [Fact] public void GetPatternAnyEntityRoles() { @@ -508,7 +392,7 @@ public void UpdateSimpleEntityRole() { UseClientFor(async client => { - var entityId = await client.Model.AddEntityAsync(GlobalAppId, "0.1", new ModelCreateObject + var entityId = await client.Model.AddEntityAsync(GlobalAppId, "0.1", new EntityModelCreateObject { Name = "simple entity" }); @@ -601,41 +485,6 @@ public void UpdateRegexEntityRole() }); } - [Fact] - public void UpdateCompositeEntityRole() - { - UseClientFor(async client => - { - var version = "0.1"; - var prebuiltEntitiesToAdd = new string[] - { - "datetimeV2" - }; - var prebuiltEntitiesAdded = await client.Model.AddPrebuiltAsync(GlobalAppId, version, prebuiltEntitiesToAdd); - var entityId = await client.Model.AddCompositeEntityAsync(GlobalAppId, "0.1", new CompositeEntityModel - { - Name = "composite model", - Children = new[] { "datetimeV2" } - }); - var roleId = await client.Model.CreateCompositeEntityRoleAsync(GlobalAppId, "0.1", entityId, new EntityRoleCreateObject - { - Name = "simple role" - }); - await client.Model.UpdateCompositeEntityRoleAsync(GlobalAppId, "0.1", entityId, roleId, new EntityRoleUpdateObject - { - Name = "simple role 2" - }); - var role = await client.Model.GetCompositeEntityRoleAsync(GlobalAppId, "0.1", entityId, roleId); - await client.Model.DeleteCompositeEntityAsync(GlobalAppId, "0.1", entityId); - foreach (var added in prebuiltEntitiesAdded) - { - await client.Model.DeletePrebuiltAsync(GlobalAppId, version, added.Id); - } - - Assert.Equal("simple role 2", role.Name); - }); - } - [Fact] public void UpdatePatternAnyEntityRole() { @@ -692,7 +541,7 @@ public void DeleteSimpleEntityRole() { UseClientFor(async client => { - var entityId = await client.Model.AddEntityAsync(GlobalAppId, "0.1", new ModelCreateObject + var entityId = await client.Model.AddEntityAsync(GlobalAppId, "0.1", new EntityModelCreateObject { Name = "simple entity" }); @@ -773,38 +622,6 @@ public void DeleteRegexEntityRole() }); } - [Fact] - public void DeleteCompositeEntityRole() - { - UseClientFor(async client => - { - var version = "0.1"; - var prebuiltEntitiesToAdd = new string[] - { - "datetimeV2" - }; - var prebuiltEntitiesAdded = await client.Model.AddPrebuiltAsync(GlobalAppId, version, prebuiltEntitiesToAdd); - var entityId = await client.Model.AddCompositeEntityAsync(GlobalAppId, "0.1", new CompositeEntityModel - { - Name = "composite model", - Children = new[] { "datetimeV2" } - }); - var roleId = await client.Model.CreateCompositeEntityRoleAsync(GlobalAppId, "0.1", entityId, new EntityRoleCreateObject - { - Name = "simple role" - }); - await client.Model.DeleteCompositeEntityRoleAsync(GlobalAppId, "0.1", entityId, roleId); - var roles = await client.Model.ListCompositeEntityRolesAsync(GlobalAppId, "0.1", entityId); - await client.Model.DeleteCompositeEntityAsync(GlobalAppId, "0.1", entityId); - foreach (var added in prebuiltEntitiesAdded) - { - await client.Model.DeletePrebuiltAsync(GlobalAppId, version, added.Id); - } - - Assert.Empty(roles); - }); - } - [Fact] public void DeletePatternAnyEntityRole() { diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ExamplesTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ExamplesTests.cs index 8f4feee25558..885839347c82 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ExamplesTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ExamplesTests.cs @@ -64,7 +64,7 @@ public void AddExample() Name = "WeatherInPlace" }); - await client.Model.AddEntityAsync(appId, "0.1", new ModelCreateObject + await client.Model.AddEntityAsync(appId, "0.1", new EntityModelCreateObject { Name = "Place" }); @@ -111,7 +111,7 @@ public void AddExamplesInBatch() Name = "WeatherInPlace" }); - await client.Model.AddEntityAsync(appId, "0.1", new ModelCreateObject + await client.Model.AddEntityAsync(appId, "0.1", new EntityModelCreateObject { Name = "Place" }); @@ -176,7 +176,7 @@ public void AddExamplesInBatch_SomeInvalidExamples_ReturnsSomeErrors() Name = "WeatherInPlace" }); - await client.Model.AddEntityAsync(appId, "0.1", new ModelCreateObject + await client.Model.AddEntityAsync(appId, "0.1", new EntityModelCreateObject { Name = "Place" }); diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/FeaturesPhraseListsTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/FeaturesPhraseListsTests.cs index e68487513258..e152c89e0507 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/FeaturesPhraseListsTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/FeaturesPhraseListsTests.cs @@ -70,7 +70,7 @@ public void GetPhraseList() }); } - [Fact] + [Fact (Skip = "Problem from API")] public void UpdatePhraseList() { UseClientFor(async client => @@ -98,6 +98,32 @@ public void UpdatePhraseList() }); } + [Fact] + public void AddPhraseListWithEnabledForAllModels() + { + UseClientFor(async client => + { + var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new EntityModelCreateObject + { + Name = "entity added" + }); + + var id = await client.Features.AddPhraseListAsync(GlobalAppId, versionId, new PhraselistCreateObject + { + Name = "DayOfWeek", + Phrases = "monday,tuesday,wednesday,thursday,friday,saturday,sunday", + IsExchangeable = true, + EnabledForAllModels = true + }); + + var features = await client.Model.GetEntityFeaturesAsync(GlobalAppId, versionId, entityId); + + Assert.Equal("DayOfWeek", features[0].FeatureName); + await client.Features.DeletePhraseListAsync(GlobalAppId, versionId, id.Value); + await client.Model.DeleteEntityAsync(GlobalAppId, versionId, entityId); + }); + } + [Fact] public void DeletePhraseList() { diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/FeaturesTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/FeaturesTests.cs index 338ae211cffe..9016d9c6b6d4 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/FeaturesTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/FeaturesTests.cs @@ -9,7 +9,7 @@ [Collection("TestCollection")] public class FeaturesTests : BaseTest { - [Fact] + [Fact(Skip = "Problem from API")] public void ListFeatures() { var appJson = File.ReadAllText(Path.Combine(Directory.GetCurrentDirectory(), "SessionRecords/ImportApp.json")); @@ -24,9 +24,245 @@ public void ListFeatures() await client.Apps.DeleteAsync(appId); - Assert.True(features.PatternFeatures.Count > 0); Assert.True(features.PhraselistFeatures.Count > 0); }); } + + [Fact] + public void AddEntityFeature() + { + UseClientFor(async client => + { + var versionId = "0.1"; + var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new EntityModelCreateObject + { + Name = "parent entity" + }); + + var featureEntity = await client.Features.AddPhraseListAsync(GlobalAppId, versionId, new PhraselistCreateObject + { + Name = "increment phrases", + Phrases = "add,increment,plus" + }); + + var featureToAdd = await client.Features.AddEntityFeatureAsync(GlobalAppId, versionId, entityId, new ModelFeatureInformation + { + FeatureName = "increment phrases", + ModelName = "parent entity" + }); + + await client.Features.DeletePhraseListAsync(GlobalAppId, versionId, featureEntity.Value); + await client.Model.DeleteEntityAsync(GlobalAppId, versionId, entityId); + }); + } + + [Fact] + public void AddModelAsFeatureForEntity() + { + UseClientFor(async client => + { + var versionId = "0.1"; + var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new EntityModelCreateObject + { + Name = "parent entity" + }); + + var entityFeatureId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new EntityModelCreateObject + { + Name = "feature entity" + }); + + var featureToAdd = await client.Features.AddEntityFeatureAsync(GlobalAppId, versionId, entityId, new ModelFeatureInformation + { + ModelName = "feature entity" + }); + + await client.Model.DeleteEntityAsync(GlobalAppId, versionId, entityId); + await client.Model.DeleteEntityAsync(GlobalAppId, versionId, entityFeatureId); + }); + } + + [Fact] + public void AddModelAsFeatureForIntent() + { + UseClientFor(async client => + { + var versionId = "0.1"; + var intentId = await client.Model.AddIntentAsync(GlobalAppId, versionId, new ModelCreateObject + { + Name = "parent intent" + }); + + var entityFeatureId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new EntityModelCreateObject + { + Name = "feature entity" + }); + + var featureToAdd = await client.Features.AddIntentFeatureAsync(GlobalAppId, versionId, intentId, new ModelFeatureInformation + { + ModelName = "feature entity" + }); + + await client.Model.DeleteEntityAsync(GlobalAppId, versionId, entityFeatureId); + await client.Model.DeleteIntentAsync(GlobalAppId, versionId, intentId); + }); + } + + [Fact] + public void DeleteEntityFeature() + { + UseClientFor(async client => + { + var versionId = "0.1"; + var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new EntityModelCreateObject + { + Name = "parent entity" + }); + + var featureEntity = await client.Features.AddPhraseListAsync(GlobalAppId, versionId, new PhraselistCreateObject + { + Name = "increment phrases", + Phrases = "add,increment,plus" + }); + + var featureToAdd = await client.Features.AddEntityFeatureAsync(GlobalAppId, versionId, entityId, new ModelFeatureInformation + { + FeatureName = "increment phrases", + ModelName = "parent entity" + }); + + await client.Model.DeleteEntityFeatureAsync(GlobalAppId, versionId, entityId, new ModelFeatureInformation + { + FeatureName = "increment phrases", + ModelName = "parent entity" + }); + await client.Features.DeletePhraseListAsync(GlobalAppId, versionId, featureEntity.Value); + await client.Model.DeleteEntityAsync(GlobalAppId, versionId, entityId); + }); + } + + [Fact] + public void GetEntityFeatures() + { + UseClientFor(async client => + { + var versionId = "0.1"; + var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new EntityModelCreateObject + { + Name = "parent entity" + }); + + var featureEntity = await client.Features.AddPhraseListAsync(GlobalAppId, versionId, new PhraselistCreateObject + { + Name = "increment phrases", + Phrases = "add,increment,plus" + }); + + var featureToAdd = await client.Features.AddEntityFeatureAsync(GlobalAppId, versionId, entityId, new ModelFeatureInformation + { + FeatureName = "increment phrases", + }); + + var features = await client.Model.GetEntityFeaturesAsync(GlobalAppId, versionId, entityId); + + Assert.Equal("increment phrases", features[0].FeatureName); + + + await client.Features.DeletePhraseListAsync(GlobalAppId, versionId, featureEntity.Value); + await client.Model.DeleteEntityAsync(GlobalAppId, versionId, entityId); + }); + } + + [Fact] + public void AddIntentFeature() + { + UseClientFor(async client => + { + var versionId = "0.1"; + var intentId = await client.Model.AddIntentAsync(GlobalAppId, versionId, new ModelCreateObject + { + Name = "parent intent" + }); + + var featureIntent = await client.Features.AddPhraseListAsync(GlobalAppId, versionId, new PhraselistCreateObject + { + Name = "increment phrases", + Phrases = "add,increment,plus" + }); + + var featureToAdd = await client.Features.AddIntentFeatureAsync(GlobalAppId, versionId, intentId, new ModelFeatureInformation + { + FeatureName = "increment phrases", + ModelName = "parent intent" + }); + + await client.Features.DeletePhraseListAsync(GlobalAppId, versionId, featureIntent.Value); + await client.Model.DeleteIntentAsync(GlobalAppId, versionId, intentId); + }); + } + + [Fact] + public void DeleteIntentFeature() + { + UseClientFor(async client => + { + var versionId = "0.1"; + var intentId = await client.Model.AddIntentAsync(GlobalAppId, versionId, new ModelCreateObject + { + Name = "parent intent" + }); + + var featureEntity = await client.Features.AddPhraseListAsync(GlobalAppId, versionId, new PhraselistCreateObject + { + Name = "increment phrases", + Phrases = "add,increment,plus" + }); + + var featureToAdd = await client.Features.AddIntentFeatureAsync(GlobalAppId, versionId, intentId, new ModelFeatureInformation + { + FeatureName = "increment phrases", + ModelName = "parent intent" + }); + + await client.Model.DeleteIntentFeatureAsync(GlobalAppId, versionId, intentId, new ModelFeatureInformation + { + FeatureName = "increment phrases", + ModelName = "parent intent" + }); + await client.Features.DeletePhraseListAsync(GlobalAppId, versionId, featureEntity.Value); + await client.Model.DeleteIntentAsync(GlobalAppId, versionId, intentId); + }); + } + + [Fact] + public void GetIntentFeatures() + { + UseClientFor(async client => + { + var versionId = "0.1"; + var intentId = await client.Model.AddIntentAsync(GlobalAppId, versionId, new ModelCreateObject + { + Name = "parent intent" + }); + + var featureIntent = await client.Features.AddPhraseListAsync(GlobalAppId, versionId, new PhraselistCreateObject + { + Name = "increment phrases", + Phrases = "add,increment,plus" + }); + + var featureToAdd = await client.Features.AddIntentFeatureAsync(GlobalAppId, versionId, intentId, new ModelFeatureInformation + { + FeatureName = "increment phrases", + }); + + var features = await client.Model.GetIntentFeaturesAsync(GlobalAppId, versionId, intentId); + + Assert.Equal("increment phrases", features[0].FeatureName); + + await client.Features.DeletePhraseListAsync(GlobalAppId, versionId, featureIntent.Value); + await client.Model.DeleteIntentAsync(GlobalAppId, versionId, intentId); + }); + } } } diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelEntitiesTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelEntitiesTests.cs index c1ea330632e0..b904d061c0f3 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelEntitiesTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelEntitiesTests.cs @@ -15,7 +15,7 @@ public void ListEntities() { UseClientFor(async client => { - var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new ModelCreateObject + var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new EntityModelCreateObject { Name = "Existing Entity Test" }); @@ -34,7 +34,7 @@ public void GetEntity() { UseClientFor(async client => { - var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new ModelCreateObject + var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new EntityModelCreateObject { Name = "New Entity Test" }); @@ -54,7 +54,7 @@ public void AddEntity() { UseClientFor(async client => { - var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new ModelCreateObject + var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new EntityModelCreateObject { Name = "New Entity Test" }); @@ -69,36 +69,12 @@ public void AddEntity() }); } - [Fact] - public void UpdateEntity() - { - UseClientFor(async client => - { - var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new ModelCreateObject - { - Name = "Rename Entity Test" - }); - - await client.Model.UpdateEntityAsync(GlobalAppId, versionId, entityId, new ModelUpdateObject - { - Name = "Entity Test Renamed" - }); - - var result = await client.Model.GetEntityAsync(GlobalAppId, versionId, entityId); - - await client.Model.DeleteEntityAsync(GlobalAppId, versionId, entityId); - - Assert.NotNull(result); - Assert.Equal("Entity Test Renamed", result.Name); - }); - } - [Fact] public void DeleteEntity() { UseClientFor(async client => { - var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new ModelCreateObject + var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new EntityModelCreateObject { Name = "Delete Entity Test" }); @@ -116,7 +92,7 @@ public void GetEntitySuggestions_ReturnsEmpty() { UseClientFor(async client => { - var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new ModelCreateObject + var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new EntityModelCreateObject { Name = "Suggestions Entity Test" }); diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelPatternAnyTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelPatternAnyTests.cs index 108694ed1a66..391c2ed87b98 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelPatternAnyTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelPatternAnyTests.cs @@ -103,7 +103,7 @@ public void UpdateEntity() Assert.Equal("Pattern.Any Entity Extractor", result.ReadableType); Assert.Equal("item1", result.ExplicitList.Single().ExplicitListItemProperty); - await client.Model.DeleteEntityAsync(GlobalAppId, versionId, entityId); + await client.Model.DeletePatternAnyEntityModelAsync(GlobalAppId, versionId, entityId); }); } diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelPrebuiltDomainTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelPrebuiltDomainTests.cs index 7f4dc9ee0313..f081b6b2f910 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelPrebuiltDomainTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelPrebuiltDomainTests.cs @@ -164,8 +164,8 @@ public void AddCustomPrebuiltIntent() var version = versionsApp.FirstOrDefault().Version; var prebuiltModel = new PrebuiltDomainModelCreateObject { - DomainName = "Communication", - ModelName = "AddContact" + DomainName = "Calendar", + ModelName = "Cancel" }; var guidModel = await client.Model.AddCustomPrebuiltIntentAsync(GlobalAppId, version, prebuiltModel); @@ -193,7 +193,7 @@ public void ListCustomPrebuiltModels() var version = versionsApp.FirstOrDefault().Version; var prebuiltDomain = new PrebuiltDomainCreateBaseObject { - DomainName = "Communication" + DomainName = "Calendar" }; var results = await client.Model.AddCustomPrebuiltDomainAsync(testAppId, version, prebuiltDomain); @@ -201,7 +201,7 @@ public void ListCustomPrebuiltModels() await client.Model.DeleteCustomPrebuiltDomainAsync(testAppId, version, "Communication"); await client.Apps.DeleteAsync(testAppId); - var validTypes = new string[] { "Intent Classifier", "Entity Extractor" }; + var validTypes = new string[] { "Intent Classifier", "Closed List Entity Extractor", "Entity Extractor" }; Assert.True(prebuiltModels.All(m => validTypes.Contains(m.ReadableType))); }); diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelTests.cs index dcc2f5c4e803..25eb969215c4 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/ModelTests.cs @@ -11,278 +11,277 @@ public class ModelTests : BaseTest { [Fact] - public void ListCompositeEntities() - { - UseClientFor(async client => - { - var childEntity = await client.Model.AddPrebuiltAsync(GlobalAppId, GlobalVersionId, new List { "datetimeV2" }); - var entityId = await client.Model.AddCompositeEntityAsync(GlobalAppId, GlobalVersionId, new CompositeEntityModel(new List() { "datetimeV2" }, name: "CompositeTest")); - var result = await client.Model.ListCompositeEntitiesAsync(GlobalAppId, GlobalVersionId); - await client.Model.DeleteCompositeEntityAsync(GlobalAppId, GlobalVersionId, entityId); - await client.Model.DeletePrebuiltAsync(GlobalAppId, GlobalVersionId, childEntity.Single().Id); - - Assert.NotEmpty(result); - }); - } - - [Fact] - public void AddCompositeEntity() + public void ListModels() { UseClientFor(async client => { - var childEntity = await client.Model.AddPrebuiltAsync(GlobalAppId, GlobalVersionId, new List { "datetimeV2" }); - var compositeEntity = new CompositeEntityModel(new List() { "datetimeV2" }, name: "CompositeTest"); - var result = await client.Model.AddCompositeEntityAsync(GlobalAppId, GlobalVersionId, compositeEntity); - await client.Model.DeleteCompositeEntityAsync(GlobalAppId, GlobalVersionId, result); - await client.Model.DeletePrebuiltAsync(GlobalAppId, GlobalVersionId, childEntity.Single().Id); - - Assert.True(result != Guid.Empty); - }); - } + var versionId = GlobalVersionId; + var entities = await client.Model.ListEntitiesAsync(GlobalAppId, versionId); - [Fact] - public void GetCompositeEntity() - { - UseClientFor(async client => - { - var childEntity = await client.Model.AddPrebuiltAsync(GlobalAppId, GlobalVersionId, new List { "datetimeV2" }); - var entity = new CompositeEntityModel(new List() { "datetimeV2" }, name: "CompositeTest"); - var entityId = await client.Model.AddCompositeEntityAsync(GlobalAppId, GlobalVersionId, entity); - var result = await client.Model.GetCompositeEntityAsync(GlobalAppId, GlobalVersionId, entityId); - await client.Model.DeleteCompositeEntityAsync(GlobalAppId, GlobalVersionId, entityId); - await client.Model.DeletePrebuiltAsync(GlobalAppId, GlobalVersionId, childEntity.Single().Id); - - Assert.True(result.Id != Guid.Empty); + foreach (var entity in entities) + { + var entityInfo = await client.Model.GetEntityAsync(GlobalAppId, versionId, entity.Id); + Assert.Equal(entity.Name, entityInfo.Name); + } }); } [Fact] - public void UpdateCompositeEntity() + public void CreateModelWithNoChildren() { UseClientFor(async client => { - var childEntity = await client.Model.AddPrebuiltAsync(GlobalAppId, GlobalVersionId, new List { "datetimeV2" }); - var entity = new CompositeEntityModel(new List() { "datetimeV2" }, name: "CompositeTest"); - var entityId = await client.Model.AddCompositeEntityAsync(GlobalAppId, GlobalVersionId, entity); - await client.Model.UpdateCompositeEntityAsync(GlobalAppId, GlobalVersionId, entityId, new CompositeEntityModel(new List() { "datetimeV2" }, name: "CompositeTestUpdate")); - - var entities = await client.Model.ListCompositeEntitiesAsync(GlobalAppId, GlobalVersionId); - await client.Model.DeleteCompositeEntityAsync(GlobalAppId, GlobalVersionId, entityId); - await client.Model.DeletePrebuiltAsync(GlobalAppId, GlobalVersionId, childEntity.Single().Id); - + var versionId = GlobalVersionId; + var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new EntityModelCreateObject + { + Children = new List { }, + Name = "Entity To Be Added" + }); - Assert.Equal("CompositeTestUpdate", entities.Single(e => e.Id == entityId).Name); + await client.Model.DeleteEntityAsync(GlobalAppId, versionId, entityId); }); } [Fact] - public void DeleteCompositeEntity() + public void CreateModelWithChildren() { UseClientFor(async client => { - var childEntity = await client.Model.AddPrebuiltAsync(GlobalAppId, GlobalVersionId, new List { "datetimeV2" }); - var entity = new CompositeEntityModel(new List() { childEntity.Single().Name }, name: "CompositeTest"); - var entityId = await client.Model.AddCompositeEntityAsync(GlobalAppId, GlobalVersionId, entity); - await client.Model.DeleteCompositeEntityAsync(GlobalAppId, GlobalVersionId, entityId); - await client.Model.DeletePrebuiltAsync(GlobalAppId, GlobalVersionId, childEntity.Single().Id); - - var entities = await client.Model.ListCompositeEntitiesAsync(GlobalAppId, GlobalVersionId); - Assert.DoesNotContain(entities, e => e.Id == entityId); + var versionId = GlobalVersionId; + var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new EntityModelCreateObject + { + Children = new List { + new ChildEntityModelCreateObject { + Name = "child1", + Children = new List{ } + } + }, + Name = "Entity To Be Added" + }); + + await client.Model.DeleteEntityAsync(GlobalAppId, versionId, entityId); }); } [Fact] - public void AddCompositeEntityChild() + public void CreateModelWithChildrenAndInstanceOf() { UseClientFor(async client => { - var childEntityId = await client.Model.AddEntityAsync(GlobalAppId, GlobalVersionId, new ModelCreateObject("ChildTest")); - var childEntityId2 = await client.Model.AddEntityAsync(GlobalAppId, GlobalVersionId, new ModelCreateObject("ChildTest2")); - var entity = new CompositeEntityModel(new List() { "ChildTest" }, name: "CompositeTest"); - var entityId = await client.Model.AddCompositeEntityAsync(GlobalAppId, GlobalVersionId, entity); - - var child = new CompositeChildModelCreateObject("ChildTest2"); - var result = await client.Model.AddCompositeEntityChildAsync(GlobalAppId, GlobalVersionId, entityId, child); - - await client.Model.DeleteCompositeEntityAsync(GlobalAppId, GlobalVersionId, entityId); - await client.Model.DeleteEntityAsync(GlobalAppId, GlobalVersionId, childEntityId); - await client.Model.DeleteEntityAsync(GlobalAppId, GlobalVersionId, childEntityId2); + var versionId = GlobalVersionId; + var prebuiltEntitiesToAdd = new string[] + { + "email" + }; + var prebuiltEntitiesAdded = await client.Model.AddPrebuiltAsync(GlobalAppId, versionId, prebuiltEntitiesToAdd); - Assert.True(result != Guid.Empty); + var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new EntityModelCreateObject + { + Children = new List { + new ChildEntityModelCreateObject { + Name = "child1", + Children = new List{ + new ChildEntityModelCreateObject { + Name = "instanceOf", + InstanceOf = "email" + } + } + } + }, + Name = "Entity To Be Added" + }); + + await client.Model.DeleteEntityAsync(GlobalAppId, versionId, entityId); + foreach (var added in prebuiltEntitiesAdded) + { + await client.Model.DeletePrebuiltAsync(GlobalAppId, versionId, added.Id); + } }); } [Fact] - public void DeleteCompositeEntityChild() + public void DeleteModel() { UseClientFor(async client => { - var childEntity = await client.Model.AddPrebuiltAsync(GlobalAppId, GlobalVersionId, new List { "datetimeV2" }); - var childEntity2 = await client.Model.AddPrebuiltAsync(GlobalAppId, GlobalVersionId, new List { "number" }); - var entityId = await client.Model.AddCompositeEntityAsync(GlobalAppId, GlobalVersionId, new CompositeEntityModel(new List() { childEntity.Single().Name, childEntity2.Single().Name }, name: "CompositeTest")); - var childEntityId = childEntity2.Single().Id; - - await client.Model.DeleteCompositeEntityChildAsync(GlobalAppId, GlobalVersionId, entityId, childEntityId); - - var entities = await client.Model.ListCompositeEntitiesAsync(GlobalAppId, GlobalVersionId); - await client.Model.DeleteCompositeEntityAsync(GlobalAppId, GlobalVersionId, entityId); - - await client.Model.DeletePrebuiltAsync(GlobalAppId, GlobalVersionId, childEntity.Single().Id); - await client.Model.DeletePrebuiltAsync(GlobalAppId, GlobalVersionId, childEntity2.Single().Id); + var versionId = GlobalVersionId; + var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new EntityModelCreateObject + { + Children = new List { }, + Name = "Entity To Be Added" + }); - Assert.DoesNotContain(entities, e => e.Id == entityId && e.Children.Any(c => c.Id == childEntityId)); + await client.Model.DeleteEntityAsync(GlobalAppId, versionId, entityId); }); } [Fact] - public void ListHierarchicalEntities() + public void AddModelChild() { UseClientFor(async client => { - var entityId = await client.Model.AddHierarchicalEntityAsync(GlobalAppId, GlobalVersionId, new HierarchicalEntityModel(new List() { "ChildTest" }, name: "HierarchicalTest")); - var result = await client.Model.ListHierarchicalEntitiesAsync(GlobalAppId, GlobalVersionId); - await client.Model.DeleteHierarchicalEntityAsync(GlobalAppId, GlobalVersionId, entityId); - - Assert.NotEmpty(result); - Assert.NotEmpty(result); - }); - } + var versionId = GlobalVersionId; + var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new EntityModelCreateObject + { + Children = new List { }, + Name = "Entity To Be Added" + }); - [Fact] - public void AddHierarchicalEntity() - { - UseClientFor(async client => - { - var entityId = await client.Model.AddHierarchicalEntityAsync(GlobalAppId, GlobalVersionId, new HierarchicalEntityModel(new List() { "ChildTest" }, name: "HierarchicalTest")); - await client.Model.DeleteHierarchicalEntityAsync(GlobalAppId, GlobalVersionId, entityId); + await client.Model.AddEntityChildAsync(GlobalAppId, versionId, entityId, new ChildEntityModelCreateObject + { + Name = "child1", + Children = new List { } + }); - Assert.True(entityId != Guid.Empty); + await client.Model.DeleteEntityAsync(GlobalAppId, versionId, entityId); }); } [Fact] - public void GetHierarchicalEntity() + public void GetModel() { UseClientFor(async client => { - var entityId = await client.Model.AddHierarchicalEntityAsync(GlobalAppId, GlobalVersionId, new HierarchicalEntityModel(new List() { "ChildTest" }, name: "HierarchicalTest")); - var result = await client.Model.GetHierarchicalEntityAsync(GlobalAppId, GlobalVersionId, entityId); - await client.Model.DeleteHierarchicalEntityAsync(GlobalAppId, GlobalVersionId, entityId); - - Assert.True(result.Id != Guid.Empty); + var versionId = GlobalVersionId; + var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new EntityModelCreateObject + { + Children = new List { + new ChildEntityModelCreateObject{ + Name = "child1" + } + }, + Name = "Entity To Be Added" + }); + + var model = await client.Model.GetEntityAsync(GlobalAppId, versionId, entityId); + Assert.Equal("child1", model.Children[0].Name); + Assert.Equal(entityId, model.Id); + + await client.Model.DeleteEntityAsync(GlobalAppId, versionId, entityId); }); } [Fact] - public void UpdateHierarchicalEntity() + public void GetModelChild() { UseClientFor(async client => { - var entityId = await client.Model.AddHierarchicalEntityAsync(GlobalAppId, GlobalVersionId, new HierarchicalEntityModel(new List() { "ChildTest" }, name: "HierarchicalTest")); - await client.Model.UpdateHierarchicalEntityAsync(GlobalAppId, GlobalVersionId, entityId, new HierarchicalEntityModel(new List() { "ChildTest" }, name: "HierarchicalTestUpdate")); - var entities = await client.Model.ListHierarchicalEntitiesAsync(GlobalAppId, GlobalVersionId); - await client.Model.DeleteHierarchicalEntityAsync(GlobalAppId, GlobalVersionId, entityId); + var versionId = GlobalVersionId; + var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new EntityModelCreateObject + { + Name = "Entity To Be Added" + }); - Assert.Equal("HierarchicalTestUpdate", entities.Single(e => e.Id == entityId).Name); - }); - } + var childId = await client.Model.AddEntityChildAsync(GlobalAppId, versionId, entityId, new ChildEntityModelCreateObject + { + Name = "child1", + Children = new List { } + }); - [Fact] - public void DeleteHierarchicalEntity() - { - UseClientFor(async client => - { - var entityId = await client.Model.AddHierarchicalEntityAsync(GlobalAppId, GlobalVersionId, new HierarchicalEntityModel(new List() { "ChildTest" }, name: "HierarchicalTest")); - var entities = await client.Model.ListHierarchicalEntitiesAsync(GlobalAppId, GlobalVersionId); - await client.Model.DeleteHierarchicalEntityAsync(GlobalAppId, GlobalVersionId, entityId); + var model = await client.Model.GetEntityAsync(GlobalAppId, versionId, childId); + Assert.Equal("child1", model.Name); + Assert.Equal(childId, model.Id); - entities = await client.Model.ListHierarchicalEntitiesAsync(GlobalAppId, GlobalVersionId); - Assert.DoesNotContain(entities, e => e.Id == entityId); + await client.Model.DeleteEntityAsync(GlobalAppId, versionId, entityId); }); } [Fact] - public void GetHierarchicalEntityChild() + public void UpdateModel() { UseClientFor(async client => { - var entityId = await client.Model.AddHierarchicalEntityAsync(GlobalAppId, GlobalVersionId, new HierarchicalEntityModel(new List() { "ChildTest" }, name: "HierarchicalTest")); - var entity = await client.Model.GetHierarchicalEntityAsync(GlobalAppId, GlobalVersionId, entityId); - var result = await client.Model.GetHierarchicalEntityChildAsync(GlobalAppId, GlobalVersionId, entityId, entity.Children.First().Id); - await client.Model.DeleteHierarchicalEntityAsync(GlobalAppId, GlobalVersionId, entityId); - - Assert.True(result.Id != Guid.Empty); + var versionId = GlobalVersionId; + var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new EntityModelCreateObject + { + Children = new List { + new ChildEntityModelCreateObject{ + Name = "child1" + } + }, + Name = "Entity To Be Added" + }); + + await client.Model.UpdateEntityChildAsync(GlobalAppId, versionId, entityId, new EntityModelUpdateObject { + Name = "Updated Model" + }); + + var model = await client.Model.GetEntityAsync(GlobalAppId, versionId, entityId); + Assert.Equal("Updated Model", model.Name); + Assert.Equal("child1", model.Children[0].Name); + + await client.Model.DeleteEntityAsync(GlobalAppId, versionId, entityId); }); } [Fact] - public void DeleteHierarchicalEntityChild() + public void UpdateModelChildName() { UseClientFor(async client => { - var entityId = await client.Model.AddHierarchicalEntityAsync(GlobalAppId, GlobalVersionId, new HierarchicalEntityModel(new List() { "ChildTest", "AnotherChildTest" }, name: "HierarchicalTest")); - var entity = (await client.Model.ListHierarchicalEntitiesAsync(GlobalAppId, GlobalVersionId)).SingleOrDefault(o => o.Id == entityId); - var childEntityId = entity.Children.First().Id; - - await client.Model.DeleteHierarchicalEntityChildAsync(GlobalAppId, GlobalVersionId, entityId, childEntityId); - var entities = await client.Model.ListHierarchicalEntitiesAsync(GlobalAppId, GlobalVersionId); - await client.Model.DeleteHierarchicalEntityAsync(GlobalAppId, GlobalVersionId, entityId); + var versionId = GlobalVersionId; + var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new EntityModelCreateObject + { + Name = "Entity To Be Added" + }); - Assert.DoesNotContain(entities, e => e.Id == entityId && e.Children.Any(c => c.Id == childEntityId)); - }); - } + var childId = await client.Model.AddEntityChildAsync(GlobalAppId, versionId, entityId, new ChildEntityModelCreateObject + { + Name = "child1", + Children = new List { } + }); - [Fact] - public void UpdateHierarchicalEntityChild() - { - UseClientFor(async client => - { - var entityId = await client.Model.AddHierarchicalEntityAsync(GlobalAppId, GlobalVersionId, new HierarchicalEntityModel(new List() { "ChildTest" }, name: "HierarchicalTest")); - var entity = await client.Model.GetHierarchicalEntityAsync(GlobalAppId, GlobalVersionId, entityId); - var childEntity = entity.Children.Last(); - var updateEntity = new HierarchicalChildModelUpdateObject("RenamedChildEntity"); + await client.Model.UpdateEntityChildAsync(GlobalAppId, versionId, childId, new EntityModelUpdateObject { + Name = "child2" + }); - await client.Model.UpdateHierarchicalEntityChildAsync(GlobalAppId, GlobalVersionId, entity.Id, childEntity.Id, updateEntity); + var model = await client.Model.GetEntityAsync(GlobalAppId, versionId, entityId); - var entities = await client.Model.ListHierarchicalEntitiesAsync(GlobalAppId, GlobalVersionId); - await client.Model.DeleteHierarchicalEntityAsync(GlobalAppId, GlobalVersionId, entityId); + Assert.Equal("child2", model.Children[0].Name); - entity = entities.Last(e => e.Id == entity.Id); - childEntity = entity.Children.Last(c => c.Id == childEntity.Id); - Assert.Equal("RenamedChildEntity", childEntity.Name); + await client.Model.DeleteEntityAsync(GlobalAppId, versionId, entityId); }); } [Fact] - public void AddHierarchicalEntityChild() + public void UpdateModelChildInstanceOf() { UseClientFor(async client => { - var entityId = await client.Model.AddHierarchicalEntityAsync(GlobalAppId, GlobalVersionId, new HierarchicalEntityModel(new List() { "ChildTest" }, name: "HierarchicalTest")); - var childEntity = new HierarchicalChildModelCreateObject + var versionId = GlobalVersionId; + var prebuiltEntitiesToAdd = new string[] { - Name = "NewChildEntity" + "email", + "number" }; + var prebuiltEntitiesAdded = await client.Model.AddPrebuiltAsync(GlobalAppId, versionId, prebuiltEntitiesToAdd); - var result = await client.Model.AddHierarchicalEntityChildAsync(GlobalAppId, GlobalVersionId, entityId, childEntity); - await client.Model.DeleteHierarchicalEntityAsync(GlobalAppId, GlobalVersionId, entityId); + var entityId = await client.Model.AddEntityAsync(GlobalAppId, versionId, new EntityModelCreateObject + { + Name = "Entity To Be Added", + Children = new List { + new ChildEntityModelCreateObject { + Name = "child1", + InstanceOf = "email" + } + } + }); - Assert.True(result != Guid.Empty); - }); - } + var model = await client.Model.GetEntityAsync(GlobalAppId, versionId, entityId); - [Fact] - public void ListModels() - { - UseClientFor(async client => - { - var versionId = GlobalVersionId; - var entities = await client.Model.ListModelsAsync(GlobalAppId, versionId); + await client.Model.UpdateEntityChildAsync(GlobalAppId, versionId, model.Children[0].Id, new EntityModelUpdateObject { + InstanceOf = "number", + Name = "changed Instance Of" + }); - foreach (var entity in entities) + model = await client.Model.GetEntityAsync(GlobalAppId, versionId, entityId); + + Assert.Equal("changed Instance Of", model.Children[0].Name); + + await client.Model.DeleteEntityAsync(GlobalAppId, versionId, entityId); + foreach (var added in prebuiltEntitiesAdded) { - var entityInfo = await client.Model.GetEntityAsync(GlobalAppId, versionId, entity.Id); - Assert.Equal(entity.Name, entityInfo.Name); + await client.Model.DeletePrebuiltAsync(GlobalAppId, versionId, added.Id); } }); } diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/PatternsTests.cs b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/PatternsTests.cs index bbd0411813a7..d6b1de10ef74 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/PatternsTests.cs +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/Luis/PatternsTests.cs @@ -18,7 +18,7 @@ public void AddPattern() var version = "0.1"; var prebuiltEntitiesToAdd = new string[] { - "datetimeV2" + "email" }; var prebuiltEntitiesAdded = await client.Model.AddPrebuiltAsync(GlobalAppId, version, prebuiltEntitiesToAdd); var pattern = new PatternRuleCreateObject { Intent = "None", Pattern = "This is a {datetimeV2}" }; @@ -45,7 +45,7 @@ public void AddPatterns() var version = "0.1"; var prebuiltEntitiesToAdd = new string[] { - "datetimeV2", + "email", "number" }; var prebuiltEntitiesAdded = await client.Model.AddPrebuiltAsync(GlobalAppId, version, prebuiltEntitiesToAdd); @@ -80,11 +80,11 @@ public void UpdatePattern() var version = "0.1"; var prebuiltEntitiesToAdd = new string[] { - "datetimeV2" + "email" }; var prebuiltEntitiesAdded = await client.Model.AddPrebuiltAsync(GlobalAppId, version, prebuiltEntitiesToAdd); - var pattern = new PatternRuleCreateObject { Intent = "None", Pattern = "This is a {datetimeV2}" }; - var updatedPattern = new PatternRuleUpdateObject { Intent = "None", Pattern = "This [is] a {datetimeV2}" }; + var pattern = new PatternRuleCreateObject { Intent = "None", Pattern = "This is a {email}" }; + var updatedPattern = new PatternRuleUpdateObject { Intent = "None", Pattern = "This [is] a {email}" }; var addResult = await client.Pattern.AddPatternAsync(GlobalAppId, "0.1", pattern); var updateResult = await client.Pattern.UpdatePatternAsync(GlobalAppId, "0.1", addResult.Id.Value, updatedPattern); @@ -99,7 +99,7 @@ public void UpdatePattern() Assert.Equal("None", updateResult.Intent); Assert.Equal(addResult.Id, updateResult.Id); Assert.NotEqual(Guid.Empty, updateResult.Id); - Assert.Equal("this [is] a {datetimeV2}", updateResult.Pattern); + Assert.Equal("this [is] a {email}", updateResult.Pattern); }); } @@ -111,14 +111,14 @@ public void UpdatePatterns() var version = "0.1"; var prebuiltEntitiesToAdd = new string[] { - "datetimeV2", - "number" + "email", + "geographyV2" }; var prebuiltEntitiesAdded = await client.Model.AddPrebuiltAsync(GlobalAppId, version, prebuiltEntitiesToAdd); - var patterns = new[] { new PatternRuleCreateObject { Intent = "None", Pattern = "This is a {number}" } }; + var patterns = new[] { new PatternRuleCreateObject { Intent = "None", Pattern = "This is a {email}" } }; var addResult = await client.Pattern.BatchAddPatternsAsync(GlobalAppId, "0.1", patterns); - var updatedPatterns = new[] { new PatternRuleUpdateObject { Intent = "None", Pattern = "This [is] a {datetimeV2}", Id = addResult.First().Id } }; + var updatedPatterns = new[] { new PatternRuleUpdateObject { Intent = "None", Pattern = "This [is] a {geographyV2}", Id = addResult.First().Id } }; var updateResult = await client.Pattern.UpdatePatternsAsync(GlobalAppId, "0.1", updatedPatterns); await client.Pattern.DeletePatternsAsync(GlobalAppId, "0.1", updateResult.Select(p => p.Id).ToList()); foreach (var added in prebuiltEntitiesAdded) @@ -131,7 +131,7 @@ public void UpdatePatterns() Assert.Equal("None", updateResult.Single().Intent); Assert.NotEqual(Guid.Empty, updateResult.Single().Id); Assert.Equal(addResult.Single().Id, updateResult.Single().Id); - Assert.Equal("this [is] a {datetimeV2}", updateResult.Single().Pattern); + Assert.Equal("this [is] a {geographyV2}", updateResult.Single().Pattern); }); } @@ -143,14 +143,14 @@ public void GetPatterns() var version = "0.1"; var prebuiltEntitiesToAdd = new string[] { - "datetimeV2", - "number" + "ordinalV2", + "money" }; var prebuiltEntitiesAdded = await client.Model.AddPrebuiltAsync(GlobalAppId, version, prebuiltEntitiesToAdd); var patternsToAdd = new[] { - new PatternRuleCreateObject { Intent = "None", Pattern = "This is a {number}" }, - new PatternRuleCreateObject { Intent = "None", Pattern = "This is a {datetimeV2}" }, + new PatternRuleCreateObject { Intent = "None", Pattern = "This is a {money}" }, + new PatternRuleCreateObject { Intent = "None", Pattern = "This is a {ordinalV2}" }, }; var result = await client.Pattern.BatchAddPatternsAsync(GlobalAppId, "0.1", patternsToAdd); @@ -181,14 +181,14 @@ public void GetIntentPatterns() var version = "0.1"; var prebuiltEntitiesToAdd = new string[] { - "datetimeV2", - "number" + "money", + "ordinalV2" }; var prebuiltEntitiesAdded = await client.Model.AddPrebuiltAsync(GlobalAppId, version, prebuiltEntitiesToAdd); var patternsToAdd = new[] { - new PatternRuleCreateObject { Intent = "None", Pattern = "This is a {number}" }, - new PatternRuleCreateObject { Intent = "None", Pattern = "This is a {datetimeV2}" }, + new PatternRuleCreateObject { Intent = "None", Pattern = "This is a {money}" }, + new PatternRuleCreateObject { Intent = "None", Pattern = "This is a {ordinalV2}" }, }; var result = await client.Pattern.BatchAddPatternsAsync(GlobalAppId, "0.1", patternsToAdd); @@ -220,10 +220,10 @@ public void DeletePattern() var version = "0.1"; var prebuiltEntitiesToAdd = new string[] { - "datetimeV2" + "email" }; var prebuiltEntitiesAdded = await client.Model.AddPrebuiltAsync(GlobalAppId, version, prebuiltEntitiesToAdd); - var pattern = new PatternRuleCreateObject { Intent = "None", Pattern = "This is a {datetimeV2}" }; + var pattern = new PatternRuleCreateObject { Intent = "None", Pattern = "This is a {email}" }; var result = await client.Pattern.AddPatternAsync(GlobalAppId, "0.1", pattern); await client.Pattern.DeletePatternAsync(GlobalAppId, "0.1", result.Id.Value); var existingPatterns = await client.Pattern.ListPatternsAsync(GlobalAppId, "0.1"); @@ -244,7 +244,7 @@ public void DeletePatterns() var version = "0.1"; var prebuiltEntitiesToAdd = new string[] { - "datetimeV2", + "email", "number" }; var prebuiltEntitiesAdded = await client.Model.AddPrebuiltAsync(GlobalAppId, version, prebuiltEntitiesToAdd); diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/AddApplication.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/AddApplication.json index 15f1a0b83666..ce81c7d137ff 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/AddApplication.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/AddApplication.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"culture\": \"en-us\",\r\n \"domain\": \"Comics\",\r\n \"description\": \"New LUIS App\",\r\n \"usageScenario\": \"IoT\",\r\n \"name\": \"New LUIS App\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/50cef68a-a82c-455c-92ca-592be9485019" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/f2899627-ddce-48e1-ab8e-7d24875a072a" ], "Apim-Request-Id": [ - "34baa526-0628-455c-bd3a-09a14b991712" + "d2a97905-c0b6-4d86-8972-2257258376cb" ], "Request-Id": [ - "34baa526-0628-455c-bd3a-09a14b991712" + "d2a97905-c0b6-4d86-8972-2257258376cb" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/50cef68a-a82c-455c-92ca-592be9485019" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/f2899627-ddce-48e1-ab8e-7d24875a072a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:17 GMT" + "Tue, 29 Oct 2019 13:16:56 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"50cef68a-a82c-455c-92ca-592be9485019\"", + "ResponseBody": "\"f2899627-ddce-48e1-ab8e-7d24875a072a\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/50cef68a-a82c-455c-92ca-592be9485019", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy81MGNlZjY4YS1hODJjLTQ1NWMtOTJjYS01OTJiZTk0ODUwMTk=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/f2899627-ddce-48e1-ab8e-7d24875a072a", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2YyODk5NjI3LWRkY2UtNDhlMS1hYjhlLTdkMjQ4NzVhMDcyYQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "bc2e54b1-fde1-4a93-b9f8-c1d39a8d0c34" + "e772c4a2-365a-42f8-8270-93e6c0f892ec" ], "Request-Id": [ - "bc2e54b1-fde1-4a93-b9f8-c1d39a8d0c34" + "e772c4a2-365a-42f8-8270-93e6c0f892ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:17 GMT" + "Tue, 29 Oct 2019 13:16:56 GMT" ], "Content-Length": [ "337" @@ -117,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"50cef68a-a82c-455c-92ca-592be9485019\",\r\n \"name\": \"New LUIS App\",\r\n \"description\": \"New LUIS App\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"IoT\",\r\n \"domain\": \"Comics\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-08-25T19:16:17Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-omsami@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"f2899627-ddce-48e1-ab8e-7d24875a072a\",\r\n \"name\": \"New LUIS App\",\r\n \"description\": \"New LUIS App\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"IoT\",\r\n \"domain\": \"Comics\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-10-29T13:16:57Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/50cef68a-a82c-455c-92ca-592be9485019?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy81MGNlZjY4YS1hODJjLTQ1NWMtOTJjYS01OTJiZTk0ODUwMTk/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/f2899627-ddce-48e1-ab8e-7d24875a072a?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2YyODk5NjI3LWRkY2UtNDhlMS1hYjhlLTdkMjQ4NzVhMDcyYT9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "b8c1c5d3-b808-4cc2-b10a-d316484a9dca" + "2bc7c518-68e3-4c20-84b7-5675be7f64b9" ], "Request-Id": [ - "b8c1c5d3-b808-4cc2-b10a-d316484a9dca" + "2bc7c518-68e3-4c20-84b7-5675be7f64b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:18 GMT" + "Tue, 29 Oct 2019 13:16:57 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/AddCustomPrebuiltApplication.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/AddCustomPrebuiltApplication.json index 07f7f8a74b91..679505ea9059 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/AddCustomPrebuiltApplication.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/AddCustomPrebuiltApplication.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/customprebuiltdomains", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9jdXN0b21wcmVidWlsdGRvbWFpbnM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/customprebuiltdomains", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2N1c3RvbXByZWJ1aWx0ZG9tYWlucw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"domainName\": \"Calendar\",\r\n \"culture\": \"en-us\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/customprebuiltdomains/e49fddaf-aa1f-4a29-ad2f-47bee94d69b0" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/customprebuiltdomains/43933e78-a4ad-4aee-a9d3-9707ee95ec23" ], "Apim-Request-Id": [ - "d2e06f6d-3586-4108-934f-a68b9a985474" + "4c4156cc-eee3-467b-9775-8d4f48819858" ], "Request-Id": [ - "d2e06f6d-3586-4108-934f-a68b9a985474" + "4c4156cc-eee3-467b-9775-8d4f48819858" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/customprebuiltdomains/e49fddaf-aa1f-4a29-ad2f-47bee94d69b0" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/customprebuiltdomains/43933e78-a4ad-4aee-a9d3-9707ee95ec23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:30 GMT" + "Tue, 29 Oct 2019 13:16:50 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"e49fddaf-aa1f-4a29-ad2f-47bee94d69b0\"", + "ResponseBody": "\"43933e78-a4ad-4aee-a9d3-9707ee95ec23\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/e49fddaf-aa1f-4a29-ad2f-47bee94d69b0?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9lNDlmZGRhZi1hYTFmLTRhMjktYWQyZi00N2JlZTk0ZDY5YjA/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/43933e78-a4ad-4aee-a9d3-9707ee95ec23?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzQzOTMzZTc4LWE0YWQtNGFlZS1hOWQzLTk3MDdlZTk1ZWMyMz9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "c4841908-777f-4768-81a4-660bba1e5869" + "501603f7-8471-4751-ac8d-9a199bad3179" ], "Request-Id": [ - "c4841908-777f-4768-81a4-660bba1e5869" + "501603f7-8471-4751-ac8d-9a199bad3179" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:33 GMT" + "Tue, 29 Oct 2019 13:16:51 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/DeleteApplication.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/DeleteApplication.json index c39957abc8b5..80e294f21af6 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/DeleteApplication.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/DeleteApplication.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"culture\": \"en-us\",\r\n \"domain\": \"Comics\",\r\n \"description\": \"New LUIS App\",\r\n \"usageScenario\": \"IoT\",\r\n \"name\": \"LUIS App to be deleted\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/a641450e-3eb9-49f8-85ba-84268ae9fcc8" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/72ce60c9-d405-4996-8fe0-6c93047638b1" ], "Apim-Request-Id": [ - "fdcf7357-2305-4c6e-89d2-13a6c2bd990f" + "0ea801f5-f7c9-4daf-b1ea-7baecae8ba55" ], "Request-Id": [ - "fdcf7357-2305-4c6e-89d2-13a6c2bd990f" + "0ea801f5-f7c9-4daf-b1ea-7baecae8ba55" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/a641450e-3eb9-49f8-85ba-84268ae9fcc8" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/72ce60c9-d405-4996-8fe0-6c93047638b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:14 GMT" + "Tue, 29 Oct 2019 13:16:54 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"a641450e-3eb9-49f8-85ba-84268ae9fcc8\"", + "ResponseBody": "\"72ce60c9-d405-4996-8fe0-6c93047638b1\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/a641450e-3eb9-49f8-85ba-84268ae9fcc8?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9hNjQxNDUwZS0zZWI5LTQ5ZjgtODViYS04NDI2OGFlOWZjYzg/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/72ce60c9-d405-4996-8fe0-6c93047638b1?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzcyY2U2MGM5LWQ0MDUtNDk5Ni04ZmUwLTZjOTMwNDc2MzhiMT9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "2572fc91-1525-4416-ba1f-53a1fdc772e1" + "c6567a58-a5ea-4d2e-993c-131a29e63ffb" ], "Request-Id": [ - "2572fc91-1525-4416-ba1f-53a1fdc772e1" + "c6567a58-a5ea-4d2e-993c-131a29e63ffb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:16 GMT" + "Tue, 29 Oct 2019 13:16:55 GMT" ], "Content-Length": [ "51" @@ -121,19 +121,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "8f104487-0698-4f02-b1d9-41565d00cf5b" + "7d003b25-f350-4f73-8724-3db58fe30123" ], "Request-Id": [ - "8f104487-0698-4f02-b1d9-41565d00cf5b" + "7d003b25-f350-4f73-8724-3db58fe30123" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,16 +162,16 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:16 GMT" + "Tue, 29 Oct 2019 13:16:55 GMT" ], "Content-Length": [ - "3175" + "9103" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"3327b33c-35df-40d0-a661-c9ade29da239\",\r\n \"name\": \"testapp4\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 7,\r\n \"createdDateTime\": \"2019-08-25T18:00:46Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-08-25T18:33:31Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": null,\r\n \"ownerEmail\": \"a-omsami@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"71d1b615-fc37-4275-9812-cc9c7e5662f1\",\r\n \"name\": \"TestApp3\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 15,\r\n \"createdDateTime\": \"2019-08-20T12:32:21Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/71d1b615-fc37-4275-9812-cc9c7e5662f1\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-08-21T10:11:01Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": null,\r\n \"ownerEmail\": \"a-omsami@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"461ef36a-f5cb-47c7-a7ad-6dc0dd3e363b\",\r\n \"name\": \"TestApp2\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 3,\r\n \"createdDateTime\": \"2019-08-20T10:40:20Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/461ef36a-f5cb-47c7-a7ad-6dc0dd3e363b\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-08-20T10:43:01Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": null,\r\n \"ownerEmail\": \"a-omsami@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"db829a53-aef2-4d65-8a53-0a7745420753\",\r\n \"name\": \"TestApp\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-08-19T16:46:21Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/db829a53-aef2-4d65-8a53-0a7745420753\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-08-19T16:48:47Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-omsami@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"07dc8796-6355-49f8-805e-1dc2c4551897\",\r\n \"name\": \"HumanResources\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 13,\r\n \"createdDateTime\": \"2019-07-02T10:22:27Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/07dc8796-6355-49f8-805e-1dc2c4551897\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-08-20T09:55:23Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 5,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-omsami@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"c2826eaa-bcab-4471-8d71-cefc87241cfd\",\r\n \"name\": \"Test list features of LUIS App\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-10-28T20:15:42Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"6c859d36-47a0-4dd9-a2ab-7817e211646b\",\r\n \"name\": \"App 5\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 3,\r\n \"createdDateTime\": \"2019-10-28T16:56:16Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-10-29T11:52:34Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"f42fa137-47f6-4124-b377-db64dbfc5bc8\",\r\n \"name\": \"dispatch parent\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-10-17T12:57:11Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/f42fa137-47f6-4124-b377-db64dbfc5bc8\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-10-17T13:00:18Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 1,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"bff2a774-b851-4a1f-a194-f64379f9c3f4\",\r\n \"name\": \"dispatch child\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-10-17T12:56:39Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/bff2a774-b851-4a1f-a194-f64379f9c3f4\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-10-17T12:57:55Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"f61ad7e1-f02c-4e8e-bdab-a8bfd5111cdc\",\r\n \"name\": \"japanese app\",\r\n \"description\": \"\",\r\n \"culture\": \"ja-jp\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-09-30T13:42:33Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/f61ad7e1-f02c-4e8e-bdab-a8bfd5111cdc\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-09-30T13:44:02Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 18,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"bda5c8d3-3453-411c-a9c8-2cc748e0a7d8\",\r\n \"name\": \"english app\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-09-30T13:40:47Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/bda5c8d3-3453-411c-a9c8-2cc748e0a7d8\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-10-14T15:08:55Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 2,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"4b698797-8677-4457-9974-d24859461941\",\r\n \"name\": \"italian app\",\r\n \"description\": \"\",\r\n \"culture\": \"it-it\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-09-30T11:12:07Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/4b698797-8677-4457-9974-d24859461941\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-10-03T11:35:32Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 6,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"8eb02193-0c15-4283-9336-5f99400f1396\",\r\n \"name\": \"test stores\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-09-22T15:03:58Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"7f385020-2e7f-446b-addf-4403b05746db\",\r\n \"name\": \"test closed list\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-08-22T14:37:01Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/7f385020-2e7f-446b-addf-4403b05746db\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-09-22T16:28:06Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 1,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"2a5fb668-f7ca-45dc-9b6d-449fecd2ae8f\",\r\n \"name\": \"test intent\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-08-07T09:08:56Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"13285921-5473-4a58-8b6d-09da1ad9f664\",\r\n \"name\": \"test11\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-08-04T16:12:05Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"ecc1b212-9570-4640-a360-23a5e6baaa2d\",\r\n \"name\": \"prebuilt\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-08-04T16:08:02Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"7ed74ca4-2d8e-407c-8d07-463e33be0cf9\",\r\n \"name\": \"HomeAutomation_enus_official\",\r\n \"description\": \"Controlling smart home devices like lights and appliances.\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-07-22T11:59:40Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"1.2\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"3c9cc2d0-746c-44f2-99f8-d930cc95e451\",\r\n \"name\": \"HomeAutomation_zhcn_Train_20190605\",\r\n \"description\": \"提供智能家居领域的意图和实体识别,包括对灯、空调等智能家居设备的控制。\",\r\n \"culture\": \"zh-cn\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-07-22T11:54:24Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"1.2\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"cdbbac89-1811-4805-a1dc-5eed13023250\",\r\n \"name\": \"test\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-07-04T22:22:43Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/cdbbac89-1811-4805-a1dc-5eed13023250\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-07-04T22:23:17Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"ccac7484-ec71-48b3-aebf-20598633b83f\",\r\n \"name\": \"BugBash App\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-05-06T12:19:50Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"dccdd7a4-4e67-4311-a397-95d93bd68e79\",\r\n \"name\": \"q\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-03-31T13:52:19Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/dccdd7a4-4e67-4311-a397-95d93bd68e79\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-03-31T13:52:41Z\",\r\n \"failedRegions\": null\r\n },\r\n \"STAGING\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/dccdd7a4-4e67-4311-a397-95d93bd68e79\",\r\n \"isStaging\": true,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-04-03T10:49:59Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 4,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"25fe1c83-fb3c-4c59-990c-0425f7c55584\",\r\n \"name\": \"patterns test\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-02-21T12:42:03Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n }\r\n]", "StatusCode": 200 } ], diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/DownloadQueryLogs.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/DownloadQueryLogs.json index 259481ec43ea..3addbf0b170c 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/DownloadQueryLogs.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/DownloadQueryLogs.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"culture\": \"en-us\",\r\n \"domain\": \"Comics\",\r\n \"description\": \"New LUIS App\",\r\n \"usageScenario\": \"IoT\",\r\n \"name\": \"LUIS App for Query Logs test\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/621b2ae6-4a14-4c83-9b75-346e77176c95" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/a94057c9-3079-4b65-979a-c697b30c1fe7" ], "Apim-Request-Id": [ - "45eb2d38-7078-494f-9f57-a96a66a23616" + "5083a62f-29a3-433d-bcce-3b6e750826d9" ], "Request-Id": [ - "45eb2d38-7078-494f-9f57-a96a66a23616" + "5083a62f-29a3-433d-bcce-3b6e750826d9" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/621b2ae6-4a14-4c83-9b75-346e77176c95" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/a94057c9-3079-4b65-979a-c697b30c1fe7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:43 GMT" + "Tue, 29 Oct 2019 13:17:07 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"621b2ae6-4a14-4c83-9b75-346e77176c95\"", + "ResponseBody": "\"a94057c9-3079-4b65-979a-c697b30c1fe7\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/621b2ae6-4a14-4c83-9b75-346e77176c95/querylogs", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy82MjFiMmFlNi00YTE0LTRjODMtOWI3NS0zNDZlNzcxNzZjOTUvcXVlcnlsb2dz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/a94057c9-3079-4b65-979a-c697b30c1fe7/querylogs", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2E5NDA1N2M5LTMwNzktNGI2NS05NzlhLWM2OTdiMzBjMWZlNy9xdWVyeWxvZ3M=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "db99cec1-4e40-4bc7-b643-10c492cea10b" + "b6e67c84-b574-4ce0-a037-236d2374cc98" ], "Request-Id": [ - "db99cec1-4e40-4bc7-b643-10c492cea10b" + "b6e67c84-b574-4ce0-a037-236d2374cc98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:43 GMT" + "Tue, 29 Oct 2019 13:17:08 GMT" ], "Content-Length": [ "48" @@ -117,26 +117,26 @@ "application/octet-stream" ], "Content-Disposition": [ - "attachment; filename=621b2ae6-4a14-4c83-9b75-346e77176c95_logs.csv" + "attachment; filename=a94057c9-3079-4b65-979a-c697b30c1fe7_logs.csv" ] }, "ResponseBody": "UXVlcnksVVRDIERhdGVUaW1lLFJlc3BvbnNlLFNlY29uZGFyeUlkLFJlZ2lvbg0K", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/621b2ae6-4a14-4c83-9b75-346e77176c95?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy82MjFiMmFlNi00YTE0LTRjODMtOWI3NS0zNDZlNzcxNzZjOTU/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/a94057c9-3079-4b65-979a-c697b30c1fe7?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2E5NDA1N2M5LTMwNzktNGI2NS05NzlhLWM2OTdiMzBjMWZlNz9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -147,10 +147,10 @@ "no-cache" ], "Apim-Request-Id": [ - "fecfa264-2b06-434d-9c30-b739470e0650" + "6ff90c5e-e88f-4d9b-92e6-d535b7bc8c53" ], "Request-Id": [ - "fecfa264-2b06-434d-9c30-b739470e0650" + "6ff90c5e-e88f-4d9b-92e6-d535b7bc8c53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -165,7 +165,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:44 GMT" + "Tue, 29 Oct 2019 13:17:09 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/GetApplication.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/GetApplication.json index 3a84ffae920b..8f1579a811cb 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/GetApplication.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/GetApplication.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"culture\": \"en-us\",\r\n \"domain\": \"Comics\",\r\n \"description\": \"New LUIS App\",\r\n \"usageScenario\": \"IoT\",\r\n \"name\": \"Existing LUIS App\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/ac6c8f47-9b6d-4533-bde5-c5adc8b06ad6" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/85b0146a-a08b-4403-9d7e-65bc76942f9f" ], "Apim-Request-Id": [ - "58da2abe-0280-4944-89f8-2d6bf74aa7e2" + "1c14a6a0-4140-4965-aa0e-a1f7244673be" ], "Request-Id": [ - "58da2abe-0280-4944-89f8-2d6bf74aa7e2" + "1c14a6a0-4140-4965-aa0e-a1f7244673be" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/ac6c8f47-9b6d-4533-bde5-c5adc8b06ad6" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/85b0146a-a08b-4403-9d7e-65bc76942f9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:45 GMT" + "Tue, 29 Oct 2019 13:17:06 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"ac6c8f47-9b6d-4533-bde5-c5adc8b06ad6\"", + "ResponseBody": "\"85b0146a-a08b-4403-9d7e-65bc76942f9f\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/ac6c8f47-9b6d-4533-bde5-c5adc8b06ad6", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9hYzZjOGY0Ny05YjZkLTQ1MzMtYmRlNS1jNWFkYzhiMDZhZDY=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/85b0146a-a08b-4403-9d7e-65bc76942f9f", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzg1YjAxNDZhLWEwOGItNDQwMy05ZDdlLTY1YmM3Njk0MmY5Zg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "69877478-c39c-4917-926b-75f31d6b1b63" + "d8064fd9-2144-49ba-84f0-b1aed5f85a3f" ], "Request-Id": [ - "69877478-c39c-4917-926b-75f31d6b1b63" + "d8064fd9-2144-49ba-84f0-b1aed5f85a3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:45 GMT" + "Tue, 29 Oct 2019 13:17:06 GMT" ], "Content-Length": [ "342" @@ -117,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"ac6c8f47-9b6d-4533-bde5-c5adc8b06ad6\",\r\n \"name\": \"Existing LUIS App\",\r\n \"description\": \"New LUIS App\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"IoT\",\r\n \"domain\": \"Comics\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-08-25T19:16:45Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-omsami@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"85b0146a-a08b-4403-9d7e-65bc76942f9f\",\r\n \"name\": \"Existing LUIS App\",\r\n \"description\": \"New LUIS App\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"IoT\",\r\n \"domain\": \"Comics\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-10-29T13:17:06Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/ac6c8f47-9b6d-4533-bde5-c5adc8b06ad6?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9hYzZjOGY0Ny05YjZkLTQ1MzMtYmRlNS1jNWFkYzhiMDZhZDY/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/85b0146a-a08b-4403-9d7e-65bc76942f9f?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzg1YjAxNDZhLWEwOGItNDQwMy05ZDdlLTY1YmM3Njk0MmY5Zj9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "4fb014ab-a1c7-442c-8734-f770f9d1ee27" + "6232eef1-e048-42db-a3c6-c8bec12967ec" ], "Request-Id": [ - "4fb014ab-a1c7-442c-8734-f770f9d1ee27" + "6232eef1-e048-42db-a3c6-c8bec12967ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:46 GMT" + "Tue, 29 Oct 2019 13:17:07 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/GetPublishSettings.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/GetPublishSettings.json index 38462b05e921..ee1a641d40dd 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/GetPublishSettings.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/GetPublishSettings.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"culture\": \"en-us\",\r\n \"domain\": \"Comics\",\r\n \"description\": \"New LUIS App\",\r\n \"usageScenario\": \"IoT\",\r\n \"name\": \"LUIS App for Settings test\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/876fcae1-fc5e-487a-99ee-e6d2bed851af" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/f2a8926f-7e0c-490c-87b7-727772509b7d" ], "Apim-Request-Id": [ - "4f119a8a-4187-4566-b73d-c5174f81027d" + "1dc11f89-06fc-400f-b842-593c4d45340f" ], "Request-Id": [ - "4f119a8a-4187-4566-b73d-c5174f81027d" + "1dc11f89-06fc-400f-b842-593c4d45340f" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/876fcae1-fc5e-487a-99ee-e6d2bed851af" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/f2a8926f-7e0c-490c-87b7-727772509b7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:21 GMT" + "Tue, 29 Oct 2019 13:17:03 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"876fcae1-fc5e-487a-99ee-e6d2bed851af\"", + "ResponseBody": "\"f2a8926f-7e0c-490c-87b7-727772509b7d\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/876fcae1-fc5e-487a-99ee-e6d2bed851af/publishsettings", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy84NzZmY2FlMS1mYzVlLTQ4N2EtOTllZS1lNmQyYmVkODUxYWYvcHVibGlzaHNldHRpbmdz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/f2a8926f-7e0c-490c-87b7-727772509b7d/publishsettings", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2YyYTg5MjZmLTdlMGMtNDkwYy04N2I3LTcyNzc3MjUwOWI3ZC9wdWJsaXNoc2V0dGluZ3M=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "2eb879da-b5e7-42d6-8ed2-000e904e9c86" + "39cc61af-399e-43fb-bb15-16f54e109338" ], "Request-Id": [ - "2eb879da-b5e7-42d6-8ed2-000e904e9c86" + "39cc61af-399e-43fb-bb15-16f54e109338" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:21 GMT" + "Tue, 29 Oct 2019 13:17:03 GMT" ], "Content-Length": [ "107" @@ -117,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"876fcae1-fc5e-487a-99ee-e6d2bed851af\",\r\n \"sentimentAnalysis\": false,\r\n \"speech\": false,\r\n \"spellChecker\": false\r\n}", + "ResponseBody": "{\r\n \"id\": \"f2a8926f-7e0c-490c-87b7-727772509b7d\",\r\n \"sentimentAnalysis\": false,\r\n \"speech\": false,\r\n \"spellChecker\": false\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/876fcae1-fc5e-487a-99ee-e6d2bed851af?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy84NzZmY2FlMS1mYzVlLTQ4N2EtOTllZS1lNmQyYmVkODUxYWY/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/f2a8926f-7e0c-490c-87b7-727772509b7d?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2YyYTg5MjZmLTdlMGMtNDkwYy04N2I3LTcyNzc3MjUwOWI3ZD9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "7d04c7a2-ed2f-4878-9cfb-f26135a42e28" + "3b4ca600-8bca-462f-8ed9-b2be26a806f9" ], "Request-Id": [ - "7d04c7a2-ed2f-4878-9cfb-f26135a42e28" + "3b4ca600-8bca-462f-8ed9-b2be26a806f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:22 GMT" + "Tue, 29 Oct 2019 13:17:04 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/GetSettings.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/GetSettings.json index 22239fce1ff4..36b4863746b4 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/GetSettings.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/GetSettings.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"culture\": \"en-us\",\r\n \"domain\": \"Comics\",\r\n \"description\": \"New LUIS App\",\r\n \"usageScenario\": \"IoT\",\r\n \"name\": \"LUIS App for Settings test\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/e61cc5fd-c8ca-4ddd-a517-fa299e44bc88" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/76232c64-c1f1-4999-8bb4-e9929d2c2588" ], "Apim-Request-Id": [ - "272b3a24-26e0-4e4c-8a74-981587e01f8a" + "5a10505e-2387-44ab-adaa-6c408de7a1e2" ], "Request-Id": [ - "272b3a24-26e0-4e4c-8a74-981587e01f8a" + "5a10505e-2387-44ab-adaa-6c408de7a1e2" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/e61cc5fd-c8ca-4ddd-a517-fa299e44bc88" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/76232c64-c1f1-4999-8bb4-e9929d2c2588" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:19 GMT" + "Tue, 29 Oct 2019 13:17:13 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"e61cc5fd-c8ca-4ddd-a517-fa299e44bc88\"", + "ResponseBody": "\"76232c64-c1f1-4999-8bb4-e9929d2c2588\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/e61cc5fd-c8ca-4ddd-a517-fa299e44bc88/settings", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9lNjFjYzVmZC1jOGNhLTRkZGQtYTUxNy1mYTI5OWU0NGJjODgvc2V0dGluZ3M=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/76232c64-c1f1-4999-8bb4-e9929d2c2588/settings", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzc2MjMyYzY0LWMxZjEtNDk5OS04YmI0LWU5OTI5ZDJjMjU4OC9zZXR0aW5ncw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "8fa39ccd-5735-4248-a859-88d953464408" + "12981109-2719-451f-a0c2-348a52a94edf" ], "Request-Id": [ - "8fa39ccd-5735-4248-a859-88d953464408" + "12981109-2719-451f-a0c2-348a52a94edf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:19 GMT" + "Tue, 29 Oct 2019 13:17:13 GMT" ], "Content-Length": [ "60" @@ -117,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"e61cc5fd-c8ca-4ddd-a517-fa299e44bc88\",\r\n \"public\": false\r\n}", + "ResponseBody": "{\r\n \"id\": \"76232c64-c1f1-4999-8bb4-e9929d2c2588\",\r\n \"public\": false\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/e61cc5fd-c8ca-4ddd-a517-fa299e44bc88?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9lNjFjYzVmZC1jOGNhLTRkZGQtYTUxNy1mYTI5OWU0NGJjODg/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/76232c64-c1f1-4999-8bb4-e9929d2c2588?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzc2MjMyYzY0LWMxZjEtNDk5OS04YmI0LWU5OTI5ZDJjMjU4OD9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "7645e597-bd7d-4998-aa34-6b2e4b08c027" + "cdbf4282-ec14-419c-b23a-e9305191a391" ], "Request-Id": [ - "7645e597-bd7d-4998-aa34-6b2e4b08c027" + "cdbf4282-ec14-419c-b23a-e9305191a391" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:20 GMT" + "Tue, 29 Oct 2019 13:17:14 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListApplications.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListApplications.json index 4ae01f7b852e..6e5e47f931e8 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListApplications.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListApplications.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"culture\": \"en-us\",\r\n \"domain\": \"Comics\",\r\n \"description\": \"New LUIS App\",\r\n \"usageScenario\": \"IoT\",\r\n \"name\": \"Existing LUIS App\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/e7560b71-bed8-4af7-919c-43a74b8cfa4e" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6782562d-815f-48e4-8a7d-89579b207330" ], "Apim-Request-Id": [ - "a24a672d-f655-480d-b961-7a9eb71712fe" + "608b6699-4ed4-491a-a110-a841b756477a" ], "Request-Id": [ - "a24a672d-f655-480d-b961-7a9eb71712fe" + "608b6699-4ed4-491a-a110-a841b756477a" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/e7560b71-bed8-4af7-919c-43a74b8cfa4e" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6782562d-815f-48e4-8a7d-89579b207330" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:39 GMT" + "Tue, 29 Oct 2019 13:17:11 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"e7560b71-bed8-4af7-919c-43a74b8cfa4e\"", + "ResponseBody": "\"6782562d-815f-48e4-8a7d-89579b207330\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "98bd69ba-bbff-4734-95ce-a5fc6e9c052a" + "7ac01ec2-e151-4d63-9ca8-bc495bf14201" ], "Request-Id": [ - "98bd69ba-bbff-4734-95ce-a5fc6e9c052a" + "7ac01ec2-e151-4d63-9ca8-bc495bf14201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,32 +108,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:39 GMT" + "Tue, 29 Oct 2019 13:17:11 GMT" ], "Content-Length": [ - "3518" + "9446" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"e7560b71-bed8-4af7-919c-43a74b8cfa4e\",\r\n \"name\": \"Existing LUIS App\",\r\n \"description\": \"New LUIS App\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"IoT\",\r\n \"domain\": \"Comics\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-08-25T19:16:39Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-omsami@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"3327b33c-35df-40d0-a661-c9ade29da239\",\r\n \"name\": \"testapp4\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 7,\r\n \"createdDateTime\": \"2019-08-25T18:00:46Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-08-25T19:16:37Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": null,\r\n \"ownerEmail\": \"a-omsami@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"71d1b615-fc37-4275-9812-cc9c7e5662f1\",\r\n \"name\": \"TestApp3\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 15,\r\n \"createdDateTime\": \"2019-08-20T12:32:21Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/71d1b615-fc37-4275-9812-cc9c7e5662f1\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-08-21T10:11:01Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": null,\r\n \"ownerEmail\": \"a-omsami@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"461ef36a-f5cb-47c7-a7ad-6dc0dd3e363b\",\r\n \"name\": \"TestApp2\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 3,\r\n \"createdDateTime\": \"2019-08-20T10:40:20Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/461ef36a-f5cb-47c7-a7ad-6dc0dd3e363b\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-08-20T10:43:01Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": null,\r\n \"ownerEmail\": \"a-omsami@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"db829a53-aef2-4d65-8a53-0a7745420753\",\r\n \"name\": \"TestApp\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-08-19T16:46:21Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/db829a53-aef2-4d65-8a53-0a7745420753\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-08-19T16:48:47Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-omsami@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"07dc8796-6355-49f8-805e-1dc2c4551897\",\r\n \"name\": \"HumanResources\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 13,\r\n \"createdDateTime\": \"2019-07-02T10:22:27Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/07dc8796-6355-49f8-805e-1dc2c4551897\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-08-20T09:55:23Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 5,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-omsami@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"6782562d-815f-48e4-8a7d-89579b207330\",\r\n \"name\": \"Existing LUIS App\",\r\n \"description\": \"New LUIS App\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"IoT\",\r\n \"domain\": \"Comics\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-10-29T13:17:11Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"c2826eaa-bcab-4471-8d71-cefc87241cfd\",\r\n \"name\": \"Test list features of LUIS App\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-10-28T20:15:42Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"6c859d36-47a0-4dd9-a2ab-7817e211646b\",\r\n \"name\": \"App 5\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 3,\r\n \"createdDateTime\": \"2019-10-28T16:56:16Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-10-29T13:17:01Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"f42fa137-47f6-4124-b377-db64dbfc5bc8\",\r\n \"name\": \"dispatch parent\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-10-17T12:57:11Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/f42fa137-47f6-4124-b377-db64dbfc5bc8\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-10-17T13:00:18Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 1,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"bff2a774-b851-4a1f-a194-f64379f9c3f4\",\r\n \"name\": \"dispatch child\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-10-17T12:56:39Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/bff2a774-b851-4a1f-a194-f64379f9c3f4\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-10-17T12:57:55Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"f61ad7e1-f02c-4e8e-bdab-a8bfd5111cdc\",\r\n \"name\": \"japanese app\",\r\n \"description\": \"\",\r\n \"culture\": \"ja-jp\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-09-30T13:42:33Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/f61ad7e1-f02c-4e8e-bdab-a8bfd5111cdc\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-09-30T13:44:02Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 18,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"bda5c8d3-3453-411c-a9c8-2cc748e0a7d8\",\r\n \"name\": \"english app\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-09-30T13:40:47Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/bda5c8d3-3453-411c-a9c8-2cc748e0a7d8\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-10-14T15:08:55Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 2,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"4b698797-8677-4457-9974-d24859461941\",\r\n \"name\": \"italian app\",\r\n \"description\": \"\",\r\n \"culture\": \"it-it\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-09-30T11:12:07Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/4b698797-8677-4457-9974-d24859461941\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-10-03T11:35:32Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 6,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"8eb02193-0c15-4283-9336-5f99400f1396\",\r\n \"name\": \"test stores\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-09-22T15:03:58Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"7f385020-2e7f-446b-addf-4403b05746db\",\r\n \"name\": \"test closed list\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-08-22T14:37:01Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/7f385020-2e7f-446b-addf-4403b05746db\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-09-22T16:28:06Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 1,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"2a5fb668-f7ca-45dc-9b6d-449fecd2ae8f\",\r\n \"name\": \"test intent\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-08-07T09:08:56Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"13285921-5473-4a58-8b6d-09da1ad9f664\",\r\n \"name\": \"test11\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-08-04T16:12:05Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"ecc1b212-9570-4640-a360-23a5e6baaa2d\",\r\n \"name\": \"prebuilt\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-08-04T16:08:02Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"7ed74ca4-2d8e-407c-8d07-463e33be0cf9\",\r\n \"name\": \"HomeAutomation_enus_official\",\r\n \"description\": \"Controlling smart home devices like lights and appliances.\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-07-22T11:59:40Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"1.2\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"3c9cc2d0-746c-44f2-99f8-d930cc95e451\",\r\n \"name\": \"HomeAutomation_zhcn_Train_20190605\",\r\n \"description\": \"提供智能家居领域的意图和实体识别,包括对灯、空调等智能家居设备的控制。\",\r\n \"culture\": \"zh-cn\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-07-22T11:54:24Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"1.2\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"cdbbac89-1811-4805-a1dc-5eed13023250\",\r\n \"name\": \"test\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-07-04T22:22:43Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/cdbbac89-1811-4805-a1dc-5eed13023250\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-07-04T22:23:17Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"ccac7484-ec71-48b3-aebf-20598633b83f\",\r\n \"name\": \"BugBash App\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-05-06T12:19:50Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"dccdd7a4-4e67-4311-a397-95d93bd68e79\",\r\n \"name\": \"q\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-03-31T13:52:19Z\",\r\n \"endpoints\": {\r\n \"PRODUCTION\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/dccdd7a4-4e67-4311-a397-95d93bd68e79\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-03-31T13:52:41Z\",\r\n \"failedRegions\": null\r\n },\r\n \"STAGING\": {\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/dccdd7a4-4e67-4311-a397-95d93bd68e79\",\r\n \"isStaging\": true,\r\n \"assignedEndpointKey\": null,\r\n \"region\": null,\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-04-03T10:49:59Z\",\r\n \"failedRegions\": null\r\n }\r\n },\r\n \"endpointHitsCount\": 4,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n },\r\n {\r\n \"id\": \"25fe1c83-fb3c-4c59-990c-0425f7c55584\",\r\n \"name\": \"patterns test\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-02-21T12:42:03Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/e7560b71-bed8-4af7-919c-43a74b8cfa4e?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9lNzU2MGI3MS1iZWQ4LTRhZjctOTE5Yy00M2E3NGI4Y2ZhNGU/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6782562d-815f-48e4-8a7d-89579b207330?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzY3ODI1NjJkLTgxNWYtNDhlNC04YTdkLTg5NTc5YjIwNzMzMD9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "f62784fc-2a7c-4de7-978f-a086698590a0" + "23bc942c-d8a5-4ea3-ad68-0f6c39817f98" ], "Request-Id": [ - "f62784fc-2a7c-4de7-978f-a086698590a0" + "23bc942c-d8a5-4ea3-ad68-0f6c39817f98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:40 GMT" + "Tue, 29 Oct 2019 13:17:12 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListAvailableCustomPrebuiltDomains.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListAvailableCustomPrebuiltDomains.json index d63d8953a137..7bbb4721cf12 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListAvailableCustomPrebuiltDomains.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListAvailableCustomPrebuiltDomains.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/customprebuiltdomains", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9jdXN0b21wcmVidWlsdGRvbWFpbnM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/customprebuiltdomains", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2N1c3RvbXByZWJ1aWx0ZG9tYWlucw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -24,10 +24,10 @@ "no-cache" ], "Apim-Request-Id": [ - "58b6dcf6-03ef-4ed9-8783-9d9ef68f81af" + "53921113-1357-4363-bd73-40f884a56388" ], "Request-Id": [ - "58b6dcf6-03ef-4ed9-8783-9d9ef68f81af" + "53921113-1357-4363-bd73-40f884a56388" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -42,16 +42,16 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:47 GMT" + "Tue, 29 Oct 2019 13:17:15 GMT" ], "Content-Length": [ - "16696" + "179286" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"name\": \"Calendar\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"The Calendar domain provides intent and entities for adding, deleting, or editing an appointment, checking participants availability, and finding information about a calendar event.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AcceptEventEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckAvailability\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ConnectToMeeting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactMeetingAttendees\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CreateCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarDetail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWho\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindDuration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindMeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TimeRemaining\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DestinationCalendar\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveEarlierTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveLaterTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SlotAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Subject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"personName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Communication\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Sending messages and making phone calls.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Answer\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AssignContactNickname\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallVoiceMail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckIMStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Dial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetForwardingsStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetNotifications\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Ignore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"IgnoreWithMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PressKey\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Redial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AudioDeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DestinationPhone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailPlatform\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Key\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MessageType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"email\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"phonenumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Email\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Manage email tasks such as reading, replying and flagging emails.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Date\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"email\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"HomeAutomation\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Controlling smart home devices like lights and appliances.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"QueryState\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetDevice\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnDown\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnUp\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumericalChange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Setting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Unit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeviceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SettingType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Note\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Manage note taking tasks such as creating, editing, and finding notes.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToNote\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeTitle\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Clear\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Close\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Create\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Open\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RemoveSentence\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Text\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Title\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Text.any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Title.any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Places\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Handling queries related to places like businesses, institutions, restaurants, public spaces, and addresses.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFavoritePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindPlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetAddress\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetDistance\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetHours\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetMenu\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPhoneNumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetReviews\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetStarRating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MakeCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RatePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"AbsoluteLocation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Amenities\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Product\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Nearby\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OpenStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"dimension\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RestaurantReservation\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Manage tasks associated with reservations such as book a table at a restaurant, changing or cancelling a reservation at a restaurant.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reserve\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Address\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumberPeople\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Atmosphere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ToDo\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Handling requests for task list.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MarkToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNextPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPreviousPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"ContainsAll\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ListType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TaskContent\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TaskContent.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Utilities\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Handling requests that are common in many domains, like 'help', 'repeat', 'start over.'\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Escalate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Help\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Repeat\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectAny\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectItem\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectNone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartOver\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Stop\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DirectionalReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"number\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Weather\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Getting weather reports and forecasts.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeTemperatureUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherValue\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetWeatherAdvisory\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryWeather\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Historic\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SuitableFor\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TemperatureRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AdditionalWeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WindDirectionUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"dimension\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"geographyV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"temperature\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Web\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Navigating to a website.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"WebSearch\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"SearchText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchEngine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"url\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"name\": \"Calendar\",\r\n \"culture\": \"de-de\",\r\n \"tokenizerVersion\": \"1.0.2\",\r\n \"description\": \"Die Kalender-Bereich enthält Absichten und Entitäten zum Hinzufügen, Löschen oder Bearbeiten eines Termins, zum Überprüfen der Verfügbarkeit von Teilnehmern und zum Auffinden von Informationen zu einem Kalenderereignis.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AcceptEventEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckAvailability\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ConnectToMeeting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactMeetingAttendees\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CreateCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarDetail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWho\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindDuration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindMeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TimeRemaining\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DestinationCalendar\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveEarlierTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveLaterTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SlotAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Subject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Communication\",\r\n \"culture\": \"de-de\",\r\n \"tokenizerVersion\": \"1.0.2\",\r\n \"description\": \"Senden von Nachrichten und Führen von Telefongesprächen.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Answer\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AssignContactNickname\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallVoiceMail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckIMStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Dial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetForwardingsStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetNotifications\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Ignore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"IgnoreWithMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PressKey\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Redial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AudioDeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DestinationPhone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailPlatform\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Key\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MessageType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"email\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"phonenumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Email\",\r\n \"culture\": \"de-de\",\r\n \"tokenizerVersion\": \"1.0.2\",\r\n \"description\": \"Verwalten von E-Mail-Aufgaben wie das Lesen, Beantworten und Markieren von E-Mails.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Date\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"email\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"HomeAutomation\",\r\n \"culture\": \"de-de\",\r\n \"tokenizerVersion\": \"1.0.2\",\r\n \"description\": \"Steuern von Smart Home-Geräten wie Lampen und anderen Haushaltsgeräten.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"QueryState\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetDevice\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnDown\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnUp\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DeviceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumericalChange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Setting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Unit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SettingType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Note\",\r\n \"culture\": \"de-de\",\r\n \"tokenizerVersion\": \"1.0.2\",\r\n \"description\": \"Verwalten von Aufgaben wie das Erstellen, Bearbeiten und Suchen von Notizen.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToNote\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeTitle\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Clear\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Close\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Create\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Open\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RemoveSentence\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"OriginalTitle\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Text\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Title\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Places\",\r\n \"culture\": \"de-de\",\r\n \"tokenizerVersion\": \"1.0.2\",\r\n \"description\": \"Bearbeiten von Anfragen zu Orten wie Unternehmen, Institutionen, Restaurants, öffentlichen Räumen und Adressen.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFavoritePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindPlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetAddress\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetDistance\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetHours\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetMenu\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPhoneNumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetReviews\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetStarRating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MakeCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RatePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"AbsoluteLocation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Amenities\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Distance\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Nearby\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Product\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OpenStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RestaurantReservation\",\r\n \"culture\": \"de-de\",\r\n \"tokenizerVersion\": \"1.0.2\",\r\n \"description\": \"Verwalten von Aufgaben im Zusammenhang mit Reservierungen, z. B. das Bestellen eines Tisches in einem Restaurant sowie das Ändern oder Stornieren einer Reservierung in einem Restaurant.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reserve\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Address\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumberPeople\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Atmosphere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ToDo\",\r\n \"culture\": \"de-de\",\r\n \"tokenizerVersion\": \"1.0.2\",\r\n \"description\": \"Bearbeiten von Anfragen zu einer Aufgabenliste.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MarkToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNextPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPreviousPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"ContainsAll\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ListType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TaskContent\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Utilities\",\r\n \"culture\": \"de-de\",\r\n \"tokenizerVersion\": \"1.0.2\",\r\n \"description\": \"Bearbeiten von Anfragen, die in vielen Bereichen üblich sind, z. B. „Hilfe“, „Wiederholen“ und „Neu anfangen“.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Escalate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Help\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Repeat\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectAny\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectItem\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectNone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartOver\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Stop\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DirectionalReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"number\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Weather\",\r\n \"culture\": \"de-de\",\r\n \"tokenizerVersion\": \"1.0.2\",\r\n \"description\": \"Abrufen von Wetterberichten und -vorhersagen.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeTemperatureUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherValue\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetWeatherAdvisory\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryWeather\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Historic\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SuitableFor\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TemperatureRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AdditionalWeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WindDirectionUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"dimension\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"temperature\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Web\",\r\n \"culture\": \"de-de\",\r\n \"tokenizerVersion\": \"1.0.2\",\r\n \"description\": \"Navigieren zu einer Website.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"WebSearch\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Link\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchEngine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Calendar\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"The Calendar domain provides intent and entities for adding, deleting, or editing an appointment, checking participants availability, and finding information about a calendar event.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AcceptEventEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckAvailability\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ConnectToMeeting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactMeetingAttendees\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CreateCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarDetail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWho\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindDuration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindMeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TimeRemaining\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DestinationCalendar\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveEarlierTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveLaterTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SlotAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Subject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"personName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Communication\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Sending messages and making phone calls.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Answer\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AssignContactNickname\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallVoiceMail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckIMStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Dial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetForwardingsStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetNotifications\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Ignore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"IgnoreWithMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PressKey\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Redial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AudioDeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DestinationPhone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Key\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MessageType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"email\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"phonenumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject.any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message.any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Email\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Manage email tasks such as reading, replying and flagging emails.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Date\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"email\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"HomeAutomation\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Controlling smart home devices like lights and appliances.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"QueryState\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetDevice\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnDown\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnUp\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumericalChange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Setting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Unit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeviceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SettingType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Note\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Manage note taking tasks such as creating, editing, and finding notes.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToNote\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeTitle\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Clear\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Close\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Create\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Open\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RemoveSentence\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Text\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Title\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Text.any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Title.any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Places\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Handling queries related to places like businesses, institutions, restaurants, public spaces, and addresses.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFavoritePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindPlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetAddress\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetDistance\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetHours\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetMenu\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPhoneNumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetReviews\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetStarRating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MakeCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RatePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"AbsoluteLocation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Amenities\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Product\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Nearby\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OpenStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"dimension\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RestaurantReservation\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Manage tasks associated with reservations such as book a table at a restaurant, changing or cancelling a reservation at a restaurant.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reserve\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Address\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumberPeople\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Atmosphere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ToDo\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Handling requests for task list.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MarkToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNextPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPreviousPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"ContainsAll\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ListType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TaskContent\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TaskContent.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Utilities\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Handling requests that are common in many domains, like 'help', 'repeat', 'start over.'\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Escalate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Help\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Repeat\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectAny\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectItem\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectNone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartOver\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Stop\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DirectionalReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"number\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Weather\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Getting weather reports and forecasts.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeTemperatureUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherValue\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetWeatherAdvisory\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryWeather\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Historic\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SuitableFor\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WeatherRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AdditionalWeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WindDirectionUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"dimension\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"geographyV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"temperature\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Web\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Navigating to a website.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"WebSearch\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"SearchText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchEngine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"url\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Calendar\",\r\n \"culture\": \"es-es\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"El dominio del Calendario proporciona intención y entidades para agregar, eliminar o editar una cita, comprobar la disponibilidad de los participantes y encontrar información sobre un evento del calendario.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AcceptEventEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckAvailability\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ConnectToMeeting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactMeetingAttendees\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CreateCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarDetail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWho\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindDuration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindMeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TimeRemaining\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DestinationCalendar\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveEarlierTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveLaterTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SlotAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Subject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Communication\",\r\n \"culture\": \"es-es\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Envío de mensajes y realización de llamadas telefónicas.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Answer\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AssignContactNickname\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallVoiceMail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckIMStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Dial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetForwardingsStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetNotifications\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Ignore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"IgnoreWithMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PressKey\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Redial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AudioDeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DestinationPhone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailPlatform\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Key\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MessageType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"email\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"phonenumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Email\",\r\n \"culture\": \"es-es\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Administra tareas del correo electrónico, como la lectura, la respuesta o el marcado de correos electrónicos.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Date\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"email\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"HomeAutomation\",\r\n \"culture\": \"es-es\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Control de dispositivos domésticos inteligentes como luces y aparatos.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"QueryState\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetDevice\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnDown\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnUp\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DeviceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumericalChange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Setting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Unit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SettingType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Note\",\r\n \"culture\": \"es-es\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Administra tareas de toma de notas como la creación, edición y búsqueda de notas.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToNote\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeTitle\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Clear\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Close\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Create\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Open\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RemoveSentence\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"OriginalTitle\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Text\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Title\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Places\",\r\n \"culture\": \"es-es\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Gestión de consultas relacionadas con lugares como negocios, instituciones, restaurantes, espacios públicos y direcciones. \",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFavoritePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindPlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetAddress\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetDistance\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetHours\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetMenu\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPhoneNumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetReviews\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetStarRating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MakeCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RatePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"AbsoluteLocation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Amenities\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Distance\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Nearby\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Product\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OpenStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RestaurantReservation\",\r\n \"culture\": \"es-es\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Administra tareas asociadas con reservas, como la reserva de una mesa en un restaurante, o el cambio o la cancelación de una reserva en un restaurante.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reserve\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Address\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumberPeople\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Atmosphere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ToDo\",\r\n \"culture\": \"es-es\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Gestión de solicitudes para la lista de tareas.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MarkToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNextPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPreviousPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"ContainsAll\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ListType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TaskContent\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Utilities\",\r\n \"culture\": \"es-es\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Gestión de solicitudes comunes en muchos dominios, como 'ayuda', 'repetir' o 'volver a empezar'.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Escalate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Help\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Repeat\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectAny\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectItem\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectNone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartOver\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Stop\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DirectionalReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"number\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Weather\",\r\n \"culture\": \"es-es\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Informes y pronósticos meteorológicos.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeTemperatureUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherValue\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetWeatherAdvisory\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryWeather\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Historic\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SuitableFor\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TemperatureRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AdditionalWeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WindDirectionUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"dimension\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"temperature\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Web\",\r\n \"culture\": \"es-es\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Visita a un sitio web.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"WebSearch\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Link\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchEngine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Calendar\",\r\n \"culture\": \"fr-fr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Le domaine Calendrier fournit des intentions et des entités pour ajouter, supprimer ou modifier un rendez-vous, vérifier la disponibilité des participants et trouver des informations sur un événement du calendrier.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AcceptEventEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckAvailability\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ConnectToMeeting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactMeetingAttendees\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CreateCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarDetail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWho\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindDuration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindMeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TimeRemaining\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DestinationCalendar\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveEarlierTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveLaterTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SlotAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Subject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Communication\",\r\n \"culture\": \"fr-fr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Envoi de messages et appels téléphoniques.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Answer\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AssignContactNickname\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallVoiceMail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckIMStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Dial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetForwardingsStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetNotifications\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Ignore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"IgnoreWithMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PressKey\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Redial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AudioDeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DestinationPhone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailPlatform\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Key\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MessageType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"email\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"phoneNumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Email\",\r\n \"culture\": \"fr-fr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Gestion des tâches de courrier électronique comme la lecture, l'envoi de réponses et le marquage d'e-mails.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Date\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"email\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"HomeAutomation\",\r\n \"culture\": \"fr-fr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Contrôle des appareils domestiques intelligents comme l'éclairage et l'électroménager.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"QueryState\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetDevice\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnDown\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnUp\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DeviceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumericalChange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Setting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Unit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SettingType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Note\",\r\n \"culture\": \"fr-fr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Gestion des tâches de prise de note comme la création, la modification et la recherche de notes.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToNote\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeTitle\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Clear\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Close\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Create\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Open\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RemoveSentence\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"OriginalTitle\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Text\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Title\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Places\",\r\n \"culture\": \"fr-fr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Traitement des requêtes liées aux emplacements tels que les entreprises, les établissements, les restaurants, les espaces publics et les adresses.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFavoritePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindPlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetAddress\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetDistance\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetHours\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetMenu\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPhoneNumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetReviews\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetStarRating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MakeCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RatePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"AbsoluteLocation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Amenities\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Distance\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Nearby\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Product\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OpenStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RestaurantReservation\",\r\n \"culture\": \"fr-fr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Gestion des tâches de réservation, comme la réservation d'une table dans un restaurant, la modification ou l'annulation d'une réservation.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reserve\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Address\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumberPeople\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Atmosphere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ToDo\",\r\n \"culture\": \"fr-fr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Traitement des requêtes liées à la liste des tâches.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MarkToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNextPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPreviousPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"ContainsAll\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ListType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TaskContent\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Utilities\",\r\n \"culture\": \"fr-fr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Traitement des requêtes communes à de nombreux domaines, par exemple « aide », « répéter » ou « recommencer ».\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Escalate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Help\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Repeat\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectAny\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectItem\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectNone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartOver\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Stop\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DirectionalReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"number\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Weather\",\r\n \"culture\": \"fr-fr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Bulletin et prévisions météorologiques.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeTemperatureUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherValue\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetWeatherAdvisory\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryWeather\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Historic\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SuitableFor\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TemperatureRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AdditionalWeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WindDirectionUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"dimension\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"temperature\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Web\",\r\n \"culture\": \"fr-fr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Navigation sur un site Web.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"WebSearch\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Link\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchEngine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Calendar\",\r\n \"culture\": \"it-it\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Il dominio Calendario offre finalità ed entità per l'aggiunta, l'eliminazione o la modifica di un appuntamento, il controllo della disponibilità dei partecipanti e la ricerca di informazioni su un evento del calendario.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AcceptEventEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckAvailability\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ConnectToMeeting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactMeetingAttendees\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CreateCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarDetail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWho\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindDuration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindMeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TimeRemaining\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DestinationCalendar\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveEarlierTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveLaterTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SlotAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Subject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Communication\",\r\n \"culture\": \"it-it\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Invio di messaggi e chiamate telefoniche.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Answer\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AssignContactNickname\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallVoiceMail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckIMStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Dial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetForwardingsStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetNotifications\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Ignore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"IgnoreWithMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PressKey\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Redial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AudioDeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DestinationPhone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailPlatform\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Key\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MessageType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"email\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"phoneNumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Email\",\r\n \"culture\": \"it-it\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Gestione delle attività di posta elettronica, come leggere, rispondere o contrassegnare e-mail.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Date\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"email\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"HomeAutomation\",\r\n \"culture\": \"it-it\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Controllo di dispositivi domestici intelligenti come luci ed elettrodomestici.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"QueryState\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetDevice\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnDown\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnUp\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DeviceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumericalChange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Setting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Unit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SettingType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Note\",\r\n \"culture\": \"it-it\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Gestione di attività associate agli appunti, come creare, modificare e cercare note.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToNote\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeTitle\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Clear\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Close\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Create\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Open\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RemoveSentence\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"OriginalTitle\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Text\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Title\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Places\",\r\n \"culture\": \"it-it\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Gestione di query relative a posti come aziende, istituti, ristoranti, spazi pubblici e indirizzi.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFavoritePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindPlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetAddress\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetDistance\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetHours\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetMenu\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPhoneNumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetReviews\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetStarRating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MakeCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RatePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"AbsoluteLocation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Amenities\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Distance\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Nearby\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Product\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OpenStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RestaurantReservation\",\r\n \"culture\": \"it-it\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Gestione di attività associate alle prenotazioni, come prenotare un tavolo, cambiare o annullare una prenotazione al ristorante.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reserve\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Address\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumberPeople\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Atmosphere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ToDo\",\r\n \"culture\": \"it-it\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Gestione di richieste per l'elenco di attività.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MarkToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNextPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPreviousPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"ContainsAll\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ListType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TaskContent\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Utilities\",\r\n \"culture\": \"it-it\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Gestione di richieste comuni a molti domini, come 'aiuto', 'ripeti' e 'ricomincia'.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Escalate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Help\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Repeat\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectAny\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectItem\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectNone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartOver\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Stop\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DirectionalReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"number\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Weather\",\r\n \"culture\": \"it-it\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Richiesta di previsioni e bollettini meteorologici.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeTemperatureUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherValue\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetWeatherAdvisory\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryWeather\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Historic\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SuitableFor\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TemperatureRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AdditionalWeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WindDirectionUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"dimension\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"temperature\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Web\",\r\n \"culture\": \"it-it\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Navigazione su un sito Web.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"WebSearch\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Link\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchEngine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Calendar\",\r\n \"culture\": \"ja-jp\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"カレンダー ドメインは予約の追加、削除、編集、参加者の空き時間の確認、およびカレンダー イベントに関する情報の検索について目的および実体を提供します。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AcceptEventEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckAvailability\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ConnectToMeeting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactMeetingAttendees\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CreateCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarDetail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWho\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindDuration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindMeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TimeRemaining\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DestinationCalendar\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveEarlierTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveLaterTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SlotAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Subject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Communication\",\r\n \"culture\": \"ja-jp\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"メッセージの送信と通話の発信を行っています。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Answer\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AssignContactNickname\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallVoiceMail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckIMStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Dial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetForwardingsStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetNotifications\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Ignore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"IgnoreWithMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PressKey\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Redial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AudioDeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DestinationPhone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailPlatform\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Key\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MessageType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"email\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Email\",\r\n \"culture\": \"ja-jp\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"電子メールを読む、返信する、フラグ付けするなどのメール タスクを管理します。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Date\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailPlatform\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"email\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"number\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"HomeAutomation\",\r\n \"culture\": \"ja-jp\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"照明や電化製品などのスマート ホーム デバイスを制御しています。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"QueryState\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetDevice\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnDown\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnUp\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DeviceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumericalChange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Setting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Unit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SettingType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Note\",\r\n \"culture\": \"ja-jp\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"ノートの作成、編集、検索などの、メモを取るタスクを管理します。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToNote\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeTitle\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Clear\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Close\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Create\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Open\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RemoveSentence\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"OriginalTitle\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Text\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Title\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Places\",\r\n \"culture\": \"ja-jp\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"企業、公共機関、レストラン、公共スペース、および住所などの場所に関するクエリを処理しています。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFavoritePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindPlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetAddress\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetDistance\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetHours\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetMenu\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPhoneNumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetReviews\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetStarRating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MakeCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RatePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"AbsoluteLocation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Amenities\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Distance\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Nearby\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Product\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OpenStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RestaurantReservation\",\r\n \"culture\": \"ja-jp\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"レストランの予約の変更やキャンセルなどの、席の予約に関連するタスクを管理します。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reserve\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Address\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumberPeople\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Atmosphere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ToDo\",\r\n \"culture\": \"ja-jp\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"タスク リストに対するリクエストを処理しています。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MarkToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNextPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPreviousPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"ContainsAll\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ListType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TaskContent\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Utilities\",\r\n \"culture\": \"ja-jp\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"「ヘルプ」、「リピート」、「最初からやり直し」のような多くのドメインで共通のリクエストを処理します。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Escalate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Help\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Repeat\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectAny\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectItem\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectNone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartOver\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Stop\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DirectionalReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"number\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Weather\",\r\n \"culture\": \"ja-jp\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"天気のレポートおよび予報を取得しています。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeTemperatureUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherValue\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetWeatherAdvisory\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryWeather\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Historic\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SuitableFor\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TemperatureRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AdditionalWeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WindDirectionUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"dimension\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"temperature\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Web\",\r\n \"culture\": \"ja-jp\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Web サイトにナビゲートしています。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"WebSearch\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Link\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchEngine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Calendar\",\r\n \"culture\": \"ko-kr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"일정 도메인은 약속 추가, 삭제 또는 편집, 참가자 상태 확인, 일정 이벤트에 대한 정보 찾기 등에 필요한 의도 및 엔터티를 제공합니다.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AcceptEventEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckAvailability\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ConnectToMeeting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactMeetingAttendees\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CreateCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarDetail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWho\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindDuration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindMeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TimeRemaining\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DestinationCalendar\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveEarlierTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveLaterTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SlotAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Subject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Communication\",\r\n \"culture\": \"ko-kr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"메시지를 보내고 전화를 겁니다.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Answer\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AssignContactNickname\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallVoiceMail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckIMStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Dial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetForwardingsStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetNotifications\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Ignore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"IgnoreWithMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PressKey\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Redial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AudioDeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DestinationPhone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailPlatform\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Key\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MessageType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"email\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Email\",\r\n \"culture\": \"ko-kr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"전자 메일 읽기, 회신, 플래그 지정 등 전자 메일 작업을 관리합니다.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Date\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailPlatform\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"HomeAutomation\",\r\n \"culture\": \"ko-kr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"조명 및 가전 제품과 같은 스마트 홈 장치를 제어합니다.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"QueryState\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetDevice\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnDown\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnUp\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DeviceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumericalChange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Setting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Unit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SettingType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Note\",\r\n \"culture\": \"ko-kr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"메모 작성, 편집, 찾기 등 메모 작성 작업을 관리합니다.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToNote\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeTitle\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Clear\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Close\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Create\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Open\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RemoveSentence\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"OriginalTitle\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Text\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Title\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Places\",\r\n \"culture\": \"ko-kr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"기업, 기관, 식당, 공공 장소, 주소 등 장소와 관련된 검색어를 처리합니다.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFavoritePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindPlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetAddress\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetDistance\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetHours\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetMenu\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPhoneNumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetReviews\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetStarRating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MakeCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RatePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"AbsoluteLocation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Amenities\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Distance\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Nearby\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Product\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OpenStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RestaurantReservation\",\r\n \"culture\": \"ko-kr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"식당에 자리를 예약하고 예약을 변경하거나 취소하는 등 예약과 관련된 작업을 관리합니다.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reserve\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Address\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumberPeople\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Atmosphere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ToDo\",\r\n \"culture\": \"ko-kr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"작업 목록의 요청을 처리합니다.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MarkToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNextPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPreviousPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"ContainsAll\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ListType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TaskContent\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Utilities\",\r\n \"culture\": \"ko-kr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"'지원', '반복', '다시 시작' 등 수많은 도메인에서 공통적으로 발생하는 요청을 처리합니다.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Escalate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Help\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Repeat\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectAny\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectItem\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectNone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartOver\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Stop\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DirectionalReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Weather\",\r\n \"culture\": \"ko-kr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"날씨 보도와 일기 예보를 확인합니다.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeTemperatureUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherValue\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetWeatherAdvisory\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryWeather\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Historic\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SuitableFor\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TemperatureRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AdditionalWeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WindDirectionUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Web\",\r\n \"culture\": \"ko-kr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"웹 사이트를 탐색합니다.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"WebSearch\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Link\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchEngine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Calendar\",\r\n \"culture\": \"nl-nl\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Het Agenda-domein biedt intentie en entiteiten voor het toevoegen, verwijderen of bewerken van een afspraak, het controleren van de beschikbaarheid van deelnemers en het opzoeken van informatie over een kalendergebeurtenis.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AcceptEventEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckAvailability\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ConnectToMeeting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactMeetingAttendees\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CreateCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarDetail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWho\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindDuration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindMeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TimeRemaining\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DestinationCalendar\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveEarlierTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveLaterTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SlotAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Subject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Communication\",\r\n \"culture\": \"nl-nl\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Berichten verzenden en telefoneren.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Answer\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AssignContactNickname\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallVoiceMail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckIMStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Dial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetForwardingsStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetNotifications\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Ignore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"IgnoreWithMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PressKey\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Redial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AudioDeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DestinationPhone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailPlatform\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Key\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MessageType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"email\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Email\",\r\n \"culture\": \"nl-nl\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Beheer e-mailtaken zoals lezen, beantwoorden en markeren van e-mails.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Date\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailPlatform\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"email\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"number\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"HomeAutomation\",\r\n \"culture\": \"nl-nl\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Smart Home-apparaten zoals lampen en apparaten bedienen.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"QueryState\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetDevice\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnDown\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnUp\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DeviceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumericalChange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Setting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Unit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SettingType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Note\",\r\n \"culture\": \"nl-nl\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Beheer taken voor het maken van notities, zoals het maken, bewerken en zoeken van notities.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToNote\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeTitle\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Clear\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Close\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Create\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Open\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RemoveSentence\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"OriginalTitle\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Text\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Title\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Places\",\r\n \"culture\": \"nl-nl\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Afhandeling van vragen met betrekking tot plaatsen zoals bedrijven, instellingen, restaurants, openbare ruimtes en adressen.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFavoritePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindPlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetAddress\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetDistance\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetHours\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetMenu\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPhoneNumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetReviews\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetStarRating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MakeCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RatePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"AbsoluteLocation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Amenities\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Distance\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Nearby\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Product\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OpenStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RestaurantReservation\",\r\n \"culture\": \"nl-nl\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Beheer taken die zijn gekoppeld aan reserveringen, zoals het reserveren van een tafel in een restaurant, het wijzigen of annuleren van een reservering in een restaurant.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reserve\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Address\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumberPeople\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Atmosphere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ToDo\",\r\n \"culture\": \"nl-nl\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Verzoeken voor takenlijst afhandelen.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MarkToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNextPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPreviousPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"ContainsAll\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ListType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TaskContent\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Utilities\",\r\n \"culture\": \"nl-nl\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Verzoeken afhandelen die in veel domeinen voorkomen, zoals 'help', 'herhalen' of 'opnieuw beginnen'.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Escalate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Help\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Repeat\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectAny\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectItem\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectNone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartOver\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Stop\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DirectionalReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"number\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Weather\",\r\n \"culture\": \"nl-nl\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Weerberichten en weersvoorspellingen opvragen.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeTemperatureUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherValue\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetWeatherAdvisory\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryWeather\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Historic\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SuitableFor\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TemperatureRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AdditionalWeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WindDirectionUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"dimension\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"temperature\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Web\",\r\n \"culture\": \"nl-nl\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Naar een website gaan.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"WebSearch\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Link\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchEngine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Calendar\",\r\n \"culture\": \"pt-br\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"O domínio do Calendário apresenta intenções e fornece entidades para adicionar, excluir ou editar compromissos, verificar a disponibilidade dos participantes e encontrar informações sobre um evento do calendário.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AcceptEventEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckAvailability\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ConnectToMeeting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactMeetingAttendees\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CreateCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarDetail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWho\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindDuration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindMeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TimeRemaining\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DestinationCalendar\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveEarlierTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveLaterTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SlotAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Subject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Communication\",\r\n \"culture\": \"pt-br\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Enviar mensagens e fazer chamadas telefônicas.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Answer\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AssignContactNickname\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallVoiceMail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckIMStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Dial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetForwardingsStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetNotifications\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Ignore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"IgnoreWithMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PressKey\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Redial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AudioDeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DestinationPhone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailPlatform\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Key\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MessageType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"email\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"phonenumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Email\",\r\n \"culture\": \"pt-br\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Gerenciar tarefas de email, como ler, responder e sinalizar emails.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Date\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailPlatform\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"email\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"number\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"HomeAutomation\",\r\n \"culture\": \"pt-br\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Controlar dispositivos residenciais inteligentes, como as luzes e aparelhos.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"QueryState\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetDevice\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnDown\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnUp\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DeviceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumericalChange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Setting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Unit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SettingType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Note\",\r\n \"culture\": \"pt-br\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Gerenciar tarefas de anotações, como criar, editar e localizar anotações.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToNote\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeTitle\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Clear\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Close\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Create\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Open\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RemoveSentence\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"OriginalTitle\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Text\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Title\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Places\",\r\n \"culture\": \"pt-br\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Tratar das consultas relacionadas a locais, como empresas, instituições, restaurantes, espaços públicos e endereços.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFavoritePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindPlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetAddress\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetDistance\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetHours\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetMenu\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPhoneNumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetReviews\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetStarRating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MakeCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RatePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"AbsoluteLocation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Amenities\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Distance\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Nearby\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Product\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OpenStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RestaurantReservation\",\r\n \"culture\": \"pt-br\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Gerenciar tarefas associadas a reservas, por exemplo, reservar uma mesa, alterar ou cancelar uma reserva em um restaurante.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reserve\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Address\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumberPeople\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Atmosphere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ToDo\",\r\n \"culture\": \"pt-br\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Tratar das solicitações da lista de tarefas.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MarkToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNextPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPreviousPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"ContainsAll\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ListType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TaskContent\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Utilities\",\r\n \"culture\": \"pt-br\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Tratar das solicitações comuns a vários domínios, como 'ajuda', 'repetir', 'começar novamente'.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Escalate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Help\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Repeat\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectAny\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectItem\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectNone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartOver\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Stop\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DirectionalReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"number\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Weather\",\r\n \"culture\": \"pt-br\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Receber informes e previsões do tempo.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeTemperatureUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherValue\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetWeatherAdvisory\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryWeather\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Historic\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SuitableFor\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TemperatureRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AdditionalWeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WindDirectionUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"dimension\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"temperature\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Web\",\r\n \"culture\": \"pt-br\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Navegar até um site.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"WebSearch\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Link\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchEngine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Calendar\",\r\n \"culture\": \"tr-tr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Takvim etki alanı; randevu ekleme, silme veya düzenleme, katılımcıların uygun olma durumunu kontrol etme ve takvim etkinliğiyle ilgili bilgileri bulma işlemleri için amacı ve varlıkları sağlar.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AcceptEventEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckAvailability\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ConnectToMeeting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactMeetingAttendees\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CreateCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarDetail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWho\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindDuration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindMeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TimeRemaining\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DestinationCalendar\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveEarlierTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveLaterTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SlotAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Subject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Communication\",\r\n \"culture\": \"tr-tr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Mesajların gönderilmesi ve telefon görüşmelerinin yapılmas\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Answer\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AssignContactNickname\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallVoiceMail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckIMStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Dial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetForwardingsStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetNotifications\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Ignore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"IgnoreWithMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PressKey\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Redial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AudioDeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DestinationPhone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailPlatform\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Key\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MessageType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Email\",\r\n \"culture\": \"tr-tr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"E-postaları okuma, yanıtlama ve işaretleme gibi e-posta görevlerinin yönetilmesi.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Date\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailPlatform\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"HomeAutomation\",\r\n \"culture\": \"tr-tr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Işıklar ve araçlar gibi akıllı ev cihazlarının kontrol edilmesi.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"QueryState\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetDevice\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnDown\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnUp\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DeviceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumericalChange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Setting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Unit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SettingType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Note\",\r\n \"culture\": \"tr-tr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Notları oluşturma, düzenleme ve bulma gibi not alma görevlerinin yönetilmesi\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToNote\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeTitle\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Clear\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Close\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Create\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Open\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RemoveSentence\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"OriginalTitle\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Text\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Title\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Places\",\r\n \"culture\": \"tr-tr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"İşletmeler, kurumlar, restoranlar ve kamusal alanlar gibi yerler ve adresler ile ilgili sorgulamaların ele alınması.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFavoritePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindPlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetAddress\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetDistance\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetHours\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetMenu\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPhoneNumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetReviews\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetStarRating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MakeCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RatePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"AbsoluteLocation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Amenities\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Distance\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Nearby\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Product\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OpenStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RestaurantReservation\",\r\n \"culture\": \"tr-tr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Bir restoranda masa ayırtma, bir restoranda rezervasyonu değiştirme veya iptal etme gibi rezervasyonlarla ilgili görevlerin yönetilmesi.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reserve\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Address\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumberPeople\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Atmosphere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ToDo\",\r\n \"culture\": \"tr-tr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Görev listesi için isteklerin ele alınması.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MarkToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNextPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPreviousPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"ContainsAll\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ListType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TaskContent\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Utilities\",\r\n \"culture\": \"tr-tr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"'Yardım', 'tekrar etme', 'baştan başlama' gibi pek çok etki alanında yaygın olan isteklerin ele alınması.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Escalate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Help\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Repeat\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectAny\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectItem\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectNone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartOver\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Stop\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DirectionalReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Weather\",\r\n \"culture\": \"tr-tr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Hava durumu raporlarının ve tahminlerinin alınması.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeTemperatureUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherValue\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetWeatherAdvisory\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryWeather\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Historic\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SuitableFor\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TemperatureRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AdditionalWeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WindDirectionUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Web\",\r\n \"culture\": \"tr-tr\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Bir web sitesinde gezinme.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"WebSearch\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Link\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchEngine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Calendar\",\r\n \"culture\": \"zh-cn\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"提供日历领域的意图和实体识别,包括增加、删除、修改邀约,查询参会人的可约状态,以及查找有关日历事件的信息。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AcceptEventEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckAvailability\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ConnectToMeeting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactMeetingAttendees\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CreateCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarDetail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWho\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindDuration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindMeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TimeRemaining\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveEarlierTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveLaterTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SlotAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Subject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DestinationCalendar\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"personName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Subject.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Communication\",\r\n \"culture\": \"zh-cn\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"提供通讯领域的意图和实体识别,包括发送短信和拨打电话等。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Answer\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AssignContactNickname\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallVoiceMail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckIMStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Dial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetForwardingsStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetNotifications\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Ignore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"IgnoreWithMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PressKey\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Redial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AudioDeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DestinationPhone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Key\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MessageType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"email\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"phoneNumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject.any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message.any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Email\",\r\n \"culture\": \"zh-cn\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"提供邮件领域的意图和实体识别,包括发送、回复邮件,以及标记邮件等。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Date\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailAddress\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"HomeAutomation\",\r\n \"culture\": \"zh-cn\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"提供智能家居领域的意图和实体识别,包括对灯、空调等智能家居设备的控制。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"QueryState\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetDevice\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnDown\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnUp\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumericalChange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Setting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Unit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeviceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SettingType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Note\",\r\n \"culture\": \"zh-cn\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"提供记事本领域的意图和实体识别,包括创建、编辑及查找记事本中的各项任务。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToNote\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeTitle\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Clear\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Close\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Create\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Open\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RemoveSentence\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"CreationDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Text\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Title\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Places\",\r\n \"culture\": \"zh-cn\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"提供场所领域的意图和实体识别,处理与企业、机构、餐馆、公共场所和地址等地点相关的查询。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFavoritePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindPlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetAddress\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetDistance\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetHours\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetMenu\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPhoneNumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetReviews\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetStarRating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MakeCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RatePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"AbsoluteLocation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Amenities\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Product\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Nearby\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OpenStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"dimension\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RestaurantReservation\",\r\n \"culture\": \"zh-cn\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"提供餐馆预定领域的意图和实体识别,包括对预定桌位、修改或取消餐馆预定的任务处理。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reserve\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Address\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumberPeople\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Atmosphere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ToDo\",\r\n \"culture\": \"zh-cn\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"提供待办事项领域的意图和实体识别,用于处理任务列表的请求。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MarkToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNextPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPreviousPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"ContainsAll\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ListType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TaskContent\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TaskContent.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Utilities\",\r\n \"culture\": \"zh-cn\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"通用领域提供可用于多个领域的通用意图和实体,例如“帮助”、“重复”、“上一页/下一页”等。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Escalate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Help\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Repeat\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectAny\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectItem\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectNone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartOver\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Stop\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DirectionalReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Number\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Weather\",\r\n \"culture\": \"zh-cn\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"提供天气领域的意图和实体识别,包括查询天气、获取天气预报等。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeTemperatureUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherValue\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetWeatherAdvisory\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryWeather\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"AdditionalWeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Historic\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SuitableFor\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WeatherRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WindDirectionUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"dimension\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"temperature\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Web\",\r\n \"culture\": \"zh-cn\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"提供网页领域的意图和实体识别,用于导航到指定网站。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"WebSearch\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"SearchText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchEngine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"url\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n }\r\n]", "StatusCode": 200 } ], diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListAvailableCustomPrebuiltDomainsForCulture.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListAvailableCustomPrebuiltDomainsForCulture.json index f2e055cac649..2e01e72e0e8a 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListAvailableCustomPrebuiltDomainsForCulture.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListAvailableCustomPrebuiltDomainsForCulture.json @@ -1,36 +1,33 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/customprebuiltdomains/en-us", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9jdXN0b21wcmVidWlsdGRvbWFpbnMvZW4tdXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/customprebuiltdomains/en-us", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2N1c3RvbXByZWJ1aWx0ZG9tYWlucy9lbi11cw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "00000000000000000000000000000000" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-store, proxy-revalidate, no-cache, max-age=0, private" ], - "Date": [ - "Tue, 12 Feb 2019 23:34:15 GMT" - ], "Pragma": [ "no-cache" ], "Apim-Request-Id": [ - "1040a61c-1ace-4ebc-9686-9b7b48371def" + "a7e49227-0341-4fac-a791-1ea5e4f0601e" ], "Request-Id": [ - "1040a61c-1ace-4ebc-9686-9b7b48371def" + "a7e49227-0341-4fac-a791-1ea5e4f0601e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -44,47 +41,47 @@ "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Tue, 29 Oct 2019 13:17:09 GMT" + ], "Content-Length": [ - "47182" + "16645" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"name\": \"Calendar\",\r\n \"culture\": \"en-us\",\r\n \"description\": \"The Calendar domain provides intents and entities related to calendar entries. The Calendar intents include adding, deleting or editing an appointment, checking availability, and finding information about a calendar entry or appointment.\",\r\n \"examples\": \"Make an appointment with Lisa at 2pm on Sunday; When is Jim available to meet?; Delete my 9 am meeting\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Add\",\r\n \"description\": \"Add a new one-time item to the calendar.\",\r\n \"examples\": \"Make an appointment with Lisa at 2pm on Sunday; I want to schedule a meeting ; I need to set up a meeting\"\r\n },\r\n {\r\n \"name\": \"CheckAvailability\",\r\n \"description\": \"Find availability for an appointment or meeting on the user's calendar or another person's calendar.\",\r\n \"examples\": \"When is Jim available to meet?; Show when Carol is available tomorrow; Is Chris free on Saturday?\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"Request to delete a calendar entry.\",\r\n \"examples\": \"Cancel my appointment with Carol; Delete my 9 am meeting\"\r\n },\r\n {\r\n \"name\": \"Edit\",\r\n \"description\": \"Request to change an existing meeting or calendar entry.\",\r\n \"examples\": \"Move my 9 am meeting to 10 am; I want to update my schedule; Reschdule my meeting with Ryan\"\r\n },\r\n {\r\n \"name\": \"Find\",\r\n \"description\": \"Request to view or find information about their calendar or any specific existing calendar entry.\",\r\n \"examples\": \"Display my weekly calendar; Show my calendar; Find the dentist review appointment.\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"\\\"Location of calendar item, meeting or appointment. Addresses, cities, and regions are good examples of locations.\\\"\",\r\n \"examples\": \"209 Nashville Gym; 897 Pancake house; Garage\"\r\n },\r\n {\r\n \"name\": \"Subject\",\r\n \"description\": \"The title of a meeting or appointment.\",\r\n \"examples\": \"Dentist's appointment; Lunch with Julia; Doctor's appointment\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Camera\",\r\n \"culture\": \"en-us\",\r\n \"description\": \"The Camera domain provides intents and entities related to using a camera. The intents cover capturing a photo, selfie, screenshot or video, and broadcasting video to an application.\",\r\n \"examples\": \"Capture the screen; Take a selfie; Start broadcasting to Facebook\",\r\n \"intents\": [\r\n {\r\n \"name\": \"CapturePhoto\",\r\n \"description\": \"Capture a photo.\",\r\n \"examples\": \"Take a photo; capture\"\r\n },\r\n {\r\n \"name\": \"CaptureScreenshot\",\r\n \"description\": \"Capture a screenshot.\",\r\n \"examples\": \"Take screen shot; capture the screen\"\r\n },\r\n {\r\n \"name\": \"CaptureSelfie\",\r\n \"description\": \"Capture a selfie.\",\r\n \"examples\": \"Take a selfie; take a picture of me\"\r\n },\r\n {\r\n \"name\": \"CaptureVideo\",\r\n \"description\": \"Start recording video.\",\r\n \"examples\": \"Start recording; Begin recording\"\r\n },\r\n {\r\n \"name\": \"StartBroadcasting\",\r\n \"description\": \"Start broadcasting video.\",\r\n \"examples\": \"Start broadcasting to Facebook\"\r\n },\r\n {\r\n \"name\": \"StopBroadcasting\",\r\n \"description\": \"Stop broadcasting video.\",\r\n \"examples\": \"Stop broadcasting\"\r\n },\r\n {\r\n \"name\": \"StopVideoRecording\",\r\n \"description\": \"Stop recording a video.\",\r\n \"examples\": \"That's enough; stop recording\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"AppName\",\r\n \"description\": \"The name of an application to broadcast video to.\",\r\n \"examples\": \"OneNote; Facebook; Skype\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Communication\",\r\n \"culture\": \"en-us\",\r\n \"description\": \"The Communication domain provides intents and entities related to email, messages and phone calls.\",\r\n \"examples\": \"Connect me to my voicemail box; Save this number and put the name as Carol; Switch on call forwarding to 3333\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddContact\",\r\n \"description\": \"Add a new contact to the user's list of contacts.\",\r\n \"examples\": \"Add new contact; Save this number and put the name as Carol\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"\\\"Add more to an email or text, as part of a step-wise email or text composition.\\\"\",\r\n \"examples\": \"Add more to text; Add more to email body\"\r\n },\r\n {\r\n \"name\": \"Answer\",\r\n \"description\": \"Answer an incoming phone call.\",\r\n \"examples\": \"Answer the call; Pick it up\"\r\n },\r\n {\r\n \"name\": \"AssignContactNickname\",\r\n \"description\": \"Assign a nickname to a contact.\",\r\n \"examples\": \"Change Isaac to dad; Add nickname to Carol Hanna; Edit Jim's nickname\"\r\n },\r\n {\r\n \"name\": \"CallVoiceMail\",\r\n \"description\": \"Connect to the user's voice mail.\",\r\n \"examples\": \"Connect me to my voicemail box; Call voicemail; Voice mail\"\r\n },\r\n {\r\n \"name\": \"CheckIMStatus\",\r\n \"description\": \"Check the status of a contact in Skype.\",\r\n \"examples\": \"Is Jim's online status set to away?; Is Carol available to chat with?\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"Confirm an action.\",\r\n \"examples\": \"Yes; Okay; All right; I confirm that I want to send this email.\"\r\n },\r\n {\r\n \"name\": \"FindContact\",\r\n \"description\": \"Find contact information by name.\",\r\n \"examples\": \"Find Carol's number; Show me Carol's number\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOff\",\r\n \"description\": \"Turn off call forwarding.\",\r\n \"examples\": \"Stop forwarding my calls; Switch off call forwarding\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOn\",\r\n \"description\": \"Turn on call forwarding.\",\r\n \"examples\": \"Forwarding my calls to 3333; Switch on call forwarding to 3333\"\r\n },\r\n {\r\n \"name\": \"GetForwardingsStatus\",\r\n \"description\": \"Get the current status of call forwarding.\",\r\n \"examples\": \"Is my call forwarding turned on?; Tell me if my call status is on or off\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"Go back to the previous step.\",\r\n \"examples\": \"Go back to twitter; Go back a step; Go back\"\r\n },\r\n {\r\n \"name\": \"Ignore\",\r\n \"description\": \"Ignore an incoming call.\",\r\n \"examples\": \"Don't answer; Ignore call\"\r\n },\r\n {\r\n \"name\": \"IgnoreWithMessage\",\r\n \"description\": \"Ignore an incoming call and reply with text instead.\",\r\n \"examples\": \"Don't answer that call but send a message instead; Ignore and send a text back\"\r\n },\r\n {\r\n \"name\": \"Dial\",\r\n \"description\": \"Make a phone call.\",\r\n \"examples\": \"Call Jim; Please dial 311\"\r\n },\r\n {\r\n \"name\": \"PressKey\",\r\n \"description\": \"Press a button or number on the keypad.\",\r\n \"examples\": \"Dial star; Press the 1 2 3\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"Read a message or email to the user.\",\r\n \"examples\": \"read text; what did she say in the message\"\r\n },\r\n {\r\n \"name\": \"Redial\",\r\n \"description\": \"Redial or call a number again.\",\r\n \"examples\": \"redial; redial my last call\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"Send an email. This intent applies to email but not text messages.\",\r\n \"examples\": \"email to mike waters mike that dinner last week was splendid; send an email to bob\"\r\n },\r\n {\r\n \"name\": \"SendMessage\",\r\n \"description\": \"Send a text message or an instant message.\",\r\n \"examples\": \"Send text to Chris and Carol\"\r\n },\r\n {\r\n \"name\": \"SetSpeedDial\",\r\n \"description\": \"Set a speed dial shortcut for a contact's phone number.\",\r\n \"examples\": \"Set speed dial one for Carol; setup speed dial for mom\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"\\\"See the next item, for example, in a list of text messages or emails.\\\"\",\r\n \"examples\": \"Show the next one; go to the next page\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"\\\"See the previous item, for example, in a list of text messages or emails.\\\"\",\r\n \"examples\": \"show the previous one; previous; go to previous\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOff\",\r\n \"description\": \"Turn off the speaker phone.\",\r\n \"examples\": \"take me off speaker; turn off speakerphone\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOn\",\r\n \"description\": \"Turn on the speaker phone.\",\r\n \"examples\": \"speakerphone mode; put speakerphone on\"\r\n },\r\n {\r\n \"name\": \"StartOver\",\r\n \"description\": \"Start the system over or start a new session.\",\r\n \"examples\": \"Start over; New session; restart\"\r\n },\r\n {\r\n \"name\": \"FindSpeedDial\",\r\n \"description\": \"Find the speedial number a phone number is set to and vice versa.\",\r\n \"examples\": \"What is my dial number 5?; Do I have speed dial set?; What is the dial number for 941-5555-333?\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"Reject an incoming call.\",\r\n \"examples\": \"Reject call; Can't answer now; Not available at the moment and will call back later\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"The name of a contact or message recipient.\",\r\n \"examples\": \"Carol; Jim; Chris\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"The text used as the subject line for an email.\",\r\n \"examples\": \"RE: interesting story\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"The name of the sender.\",\r\n \"examples\": \"Patti Owens\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"The message to send as an email or text.\",\r\n \"examples\": \"It was great meeting you today. See you again soon!\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"The category of a message or email.\",\r\n \"examples\": \"Important; High priority\"\r\n },\r\n {\r\n \"name\": \"MessageType\",\r\n \"description\": \"The type of message to search for.\",\r\n \"examples\": \"Text; Email\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"\\\"The ordinal or relative position in a list, identifying an item to retrieve. For example, last or recent in What was the last message I sent?.\\\"\",\r\n \"examples\": \"Last; Recent\"\r\n },\r\n {\r\n \"name\": \"AudioDeviceType\",\r\n \"description\": \"\\\"Type of audio device (speaker, headset, microphone, etc).\\\"\",\r\n \"examples\": \"Speaker; Hands-free; Bluetooth\"\r\n },\r\n {\r\n \"name\": \"ContactAttribute\",\r\n \"description\": \"The attribute of the contact the user inquires about.\",\r\n \"examples\": \"Birthdays; Address; Phone number\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"The line the user wants to use to make a call or send a text/email from.\",\r\n \"examples\": \"Work line; British cell; Skype\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Entertainment\",\r\n \"culture\": \"en-us\",\r\n \"description\": \"The Entertainment domain provides intents and entities related to searching for movies, music, games and TV shows.\",\r\n \"examples\": \"Search the store for Halo; Search for Avatar; Look for Comedies\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Search\",\r\n \"description\": \"\\\"Search for movies, music, apps, games and TV shows.\\\"\",\r\n \"examples\": \"Search the store for Halo; search for Avatar\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"ContentRating\",\r\n \"description\": \"\\\"Media content rating like G, or R for movies.\\\"\",\r\n \"examples\": \"Kids video;PG rated\"\r\n },\r\n {\r\n \"name\": \"Genre\",\r\n \"description\": \"\\\"The genre of a movie, game, app or song.\\\"\",\r\n \"examples\": \"Comedies; Dramas; Funny\"\r\n },\r\n {\r\n \"name\": \"Language\",\r\n \"description\": \"\\\"The language of a movie, show, or music.\\\"\",\r\n \"examples\": \"French; English; Korean\"\r\n },\r\n {\r\n \"name\": \"Nationality\",\r\n \"description\": \"\\\"The country where a movie, show, or song was created.\\\"\",\r\n \"examples\": \"French; German; Korean\"\r\n },\r\n {\r\n \"name\": \"Person\",\r\n \"description\": \"\\\"The actor, director, producer, musician or artist associated with a movie, app, game or TV show.\\\"\",\r\n \"examples\": \"Madonna; Stanley Kubrick\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"description\": \"Role played by a person in the creation of media.\",\r\n \"examples\": \"Sings; Directed by; By\"\r\n },\r\n {\r\n \"name\": \"Title\",\r\n \"description\": \"\\\"The name of a movie, app, game, TV show, or song.\\\"\",\r\n \"examples\": \"Friends; Minecraft\"\r\n },\r\n {\r\n \"name\": \"Type\",\r\n \"description\": \"\\\"The type or media format of a movie, app, game, TV show, or song.\\\"\",\r\n \"examples\": \"Music; Movie; TV shows\"\r\n },\r\n {\r\n \"name\": \"UserRating\",\r\n \"description\": \"User user star or thumbs rating.\",\r\n \"examples\": \"5 stars; 3 stars; 4 stars\"\r\n },\r\n {\r\n \"name\": \"Keyword\",\r\n \"description\": \"A generic search keyword specifying an attribute the doesn't exist in the more specific media slots.\",\r\n \"examples\": \"Soundtracks; Moon River; Amelia Earhart\"\r\n },\r\n {\r\n \"name\": \"MediaSource\",\r\n \"description\": \"Mentions of the store/marketplace.\",\r\n \"examples\": \"Halo; Netflix; Prime\"\r\n },\r\n {\r\n \"name\": \"MediaSubTypes\",\r\n \"description\": \"Media types smaller than movies and games.\",\r\n \"examples\": \"Demos; Dlc; Trailers\"\r\n },\r\n {\r\n \"name\": \"MediaFormat\",\r\n \"description\": \"The additional special technical type in which the media is formatted.\",\r\n \"examples\": \"HD movies; 3D movies; Downloadable\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Events\",\r\n \"culture\": \"en-us\",\r\n \"description\": \"The Events domain provides intents and entities related to booking tickets for events like concerts, festivals, sports games and comedy shows.\",\r\n \"examples\": \"I'd like to buy a ticket for the symphony this weekend; Get tickets for Shakespeare in the Park; Cancel my ticket order\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Book\",\r\n \"description\": \"Purchase tickets to an event.\",\r\n \"examples\": \"I'd like to buy a ticket for the symphony this weekend.\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Address\",\r\n \"description\": \"Event location or address.\",\r\n \"examples\": \"Palo Alto; 300 112th Ave SE; Seattle\"\r\n },\r\n {\r\n \"name\": \"Name\",\r\n \"description\": \"The name of an event.\",\r\n \"examples\": \"Shakespeare in the Park\"\r\n },\r\n {\r\n \"name\": \"Type\",\r\n \"description\": \"The type of an event.\",\r\n \"examples\": \"Concert; Sports game\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"The event location name.\",\r\n \"examples\": \"Louvre; Opera House; Broadway\"\r\n },\r\n {\r\n \"name\": \"PlaceType\",\r\n \"description\": \"The type of the location the event will be held in.\",\r\n \"examples\": \"Cafe; Theatre; Library\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Fitness\",\r\n \"culture\": \"en-us\",\r\n \"description\": \"The Fitness domain provides intents and entities related to tracking fitness activities. The intents include saving notes, remaining time or distance, or saving activity results.\",\r\n \"examples\": \"The difficulty of this run was 6/10; How much time till the next lap?; Log my Saturday morning walk\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddNote\",\r\n \"description\": \"Adds supplemental notes to a tracked activity.\",\r\n \"examples\": \"The difficulty of this run was 6/10; The terrain I am on running on is asphalt; I am using a 3 speed bike\"\r\n },\r\n {\r\n \"name\": \"GetRemaining\",\r\n \"description\": \"Gets the remaining time or distance for an activity.\",\r\n \"examples\": \"How much time till the next lap?; How many miles are remaining in my run? How much time for the split?\"\r\n },\r\n {\r\n \"name\": \"LogActivity\",\r\n \"description\": \"Save or log completed activity results.\",\r\n \"examples\": \"Save my last run; Log my Saturday morning walk; store my previous swim\"\r\n },\r\n {\r\n \"name\": \"LogWeight\",\r\n \"description\": \"Save or log the user's current weight.\",\r\n \"examples\": \"Save my current weight; log my weight now; store my current body weight\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"ActivityType\",\r\n \"description\": \"The type of activity to track.\",\r\n \"examples\": \"Run; Walk; Swim; Cycle\"\r\n },\r\n {\r\n \"name\": \"Food\",\r\n \"description\": \"A type of food to track in a fitness app.\",\r\n \"examples\": \"Banana; Salmon; Protein Shake\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"The meal type to track in a health or fitness app.\",\r\n \"examples\": \"Breakfast; Dinner; Lunch; Supper\"\r\n },\r\n {\r\n \"name\": \"Measurement\",\r\n \"description\": \"\\\"A type of measurements for time, distance or weight, for use in a fitness or health app.\\\"\",\r\n \"examples\": \"Kilometers; Miles; Minutes; Kilograms\"\r\n },\r\n {\r\n \"name\": \"Number\",\r\n \"description\": \"A numeric quantity for use in a fitness or health app.\",\r\n \"examples\": \"19; three; 200; one\"\r\n },\r\n {\r\n \"name\": \"StatType\",\r\n \"description\": \"\\\"A statistic type on aggregated data, for use in a fitness or health app. For example, sum, average, maximum, minimum.\\\"\",\r\n \"examples\": \"Sum; Average; Maximum; Minimum\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Gaming\",\r\n \"culture\": \"en-us\",\r\n \"description\": \"The Gaming domain provides intents and entities related to managing a game party in a multiplayer game.\",\r\n \"examples\": \"Join my clan; I'm leaving this party for another; should we start a clan tonight\",\r\n \"intents\": [\r\n {\r\n \"name\": \"InviteParty\",\r\n \"description\": \"Invite a contact to join a gaming party.\",\r\n \"examples\": \"Invite this player to my party; Come to my party; Join my clan\"\r\n },\r\n {\r\n \"name\": \"LeaveParty\",\r\n \"description\": \"Leave a gaming party in a multiplayer game.\",\r\n \"examples\": \"I'm out; I'm leaving this party for another; I am quitting\"\r\n },\r\n {\r\n \"name\": \"StartParty\",\r\n \"description\": \"Start a gaming party in a multiplayer game.\",\r\n \"examples\": \"Dude let's start a party; start a party; should we start a clan tonight\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Contact\",\r\n \"description\": \"A contact name to use in a multiplayer game.\",\r\n \"examples\": \"Carol; Jim; Chris\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"HomeAutomation\",\r\n \"culture\": \"en-us\",\r\n \"description\": \"The Home Automation domain provides intents and entities related to controlling smart home devices like lights and appliances.\",\r\n \"examples\": \"Turn off the lights; Turn on my coffee maker; Close garage door\",\r\n \"intents\": [\r\n {\r\n \"name\": \"TurnOff\",\r\n \"description\": \"\\\"Turn off, close, or unlock a device.\\\"\",\r\n \"examples\": \"Turn off the lights; Stop the coffee maker; Close garage door\"\r\n },\r\n {\r\n \"name\": \"TurnOn\",\r\n \"description\": \"Turn on a device or set the device to a particular setting or mode.\",\r\n \"examples\": \"turn on my coffee maker; can you turn on my coffee maker?; Set the thermostat to 72 degrees.\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Device\",\r\n \"description\": \"A type of device that can be turned on or off .\",\r\n \"examples\": \"coffee maker; thermostat; lights\"\r\n },\r\n {\r\n \"name\": \"Room\",\r\n \"description\": \"The location or room the device is in.\",\r\n \"examples\": \"living room; bedroom; kitchen\"\r\n },\r\n {\r\n \"name\": \"Operation\",\r\n \"description\": \"The current state of the device.\",\r\n \"examples\": \"lock; open; on; off\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"MovieTickets\",\r\n \"culture\": \"en-us\",\r\n \"description\": \"The Movie Tickets domain provides intents and entities related to booking tickets to movies at a movie theater.\",\r\n \"examples\": \"Book me two tickets for Captain Omar and the two Musketeers; Cancel tickets; When is Captain Omar showing?\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Book\",\r\n \"description\": \"Purchase movie tickets.\",\r\n \"examples\": \"Book me two tickets for Captain Omar and the two musketeers; I want to buy a ticket for tomorrow's movie; I want a ticket for Captian Omar Part 2 next Wednesday\"\r\n },\r\n {\r\n \"name\": \"GetShowTime\",\r\n \"description\": \"Get the showtime of a movie.\",\r\n \"examples\": \"When is Captain Omar showing?\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Address\",\r\n \"description\": \"The address of a movie theater.\",\r\n \"examples\": \"Palo Alto; 300 112th Ave SE; Seattle\"\r\n },\r\n {\r\n \"name\": \"MovieTitle\",\r\n \"description\": \"The title of a movie.\",\r\n \"examples\": \"Life of Pi;Hunger Games;Inception\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"The name of a movie theater or cinema.\",\r\n \"examples\": \"Cinema Amir; Alexandria Theatre; New York Theater\"\r\n },\r\n {\r\n \"name\": \"PlaceType\",\r\n \"description\": \"The type of location a movie is showing at.\",\r\n \"examples\": \"cinema; theater; IMAX cinema\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Music\",\r\n \"culture\": \"en-us\",\r\n \"description\": \"The Music domain provides intents and entities related to playing music on a music player.\",\r\n \"examples\": \"play Kevin Durant; Increase track volume; Skip to the next song\",\r\n \"intents\": [\r\n {\r\n \"name\": \"DecreaseVolume\",\r\n \"description\": \"Decrease the device volume.\",\r\n \"examples\": \"increase track volume; volume up\"\r\n },\r\n {\r\n \"name\": \"IncreaseVolume\",\r\n \"description\": \"Increase the device volume.\",\r\n \"examples\": \"decrease track volume; volume down\"\r\n },\r\n {\r\n \"name\": \"PlayMusic\",\r\n \"description\": \"Play music on a device.\",\r\n \"examples\": \"play Kevin Durant; play Paradise by Coldplay; play Hello by Adele\"\r\n },\r\n {\r\n \"name\": \"SkipBack\",\r\n \"description\": \"Skip backwards a track.\",\r\n \"examples\": \"Skip to the next song; Play the next song\"\r\n },\r\n {\r\n \"name\": \"SkipForward\",\r\n \"description\": \"Skip forward a track.\",\r\n \"examples\": \"Play the previous song; Go back to the previous track\"\r\n },\r\n {\r\n \"name\": \"Stop\",\r\n \"description\": \"Stop an action relating to music playback.\",\r\n \"examples\": \"Stop playing this album\"\r\n },\r\n {\r\n \"name\": \"Unmute\",\r\n \"description\": \"Unmute a music playback device.\",\r\n \"examples\": \"Unmute.\"\r\n },\r\n {\r\n \"name\": \"Mute\",\r\n \"description\": \"Mute the playing music.\",\r\n \"examples\": \"Mute song; Put the track on mute; Mute music\"\r\n },\r\n {\r\n \"name\": \"Pause\",\r\n \"description\": \"Pause the playing music.\",\r\n \"examples\": \"Pause; Pause music; Pause track\"\r\n },\r\n {\r\n \"name\": \"Repeat\",\r\n \"description\": \"Repeat the playing music.\",\r\n \"examples\": \"Repeat song; Play the track gain; Repeat music\"\r\n },\r\n {\r\n \"name\": \"Resume\",\r\n \"description\": \"Resume the playing music.\",\r\n \"examples\": \"Resume song; Start music again; Unpause\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"ArtistName\",\r\n \"description\": \"\\\"The actor, director, producer, writer, musician or artist associated with media to play on a device.\\\"\",\r\n \"examples\": \"Elvis Presley; Taylor Swift; Adele; Mozart\"\r\n },\r\n {\r\n \"name\": \"Genre\",\r\n \"description\": \"The genre of the music being requested.\",\r\n \"examples\": \"Country music; Broadway classics; Play my classical music from the Baroque period\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Note\",\r\n \"culture\": \"en-us\",\r\n \"description\": \"The Note domain provides intents and entities related to finding, editing and creating notes.\",\r\n \"examples\": \"Add to my groceries note lettuce tomato bread coffee; Check off bananas from my grocery list; Remove all items from my vacation list\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToNote\",\r\n \"description\": \"Add information to a note.\",\r\n \"examples\": \"Add to my groceries note lettuce tomato bread coffee; Add to my todo list; add cupcakes to my Wunderlist\"\r\n },\r\n {\r\n \"name\": \"CheckOffItem\",\r\n \"description\": \"Check off items from a pre-existing note.\",\r\n \"examples\": \"Check off bananas from my grocery list; Mark cheese cake on my holiday shopping list as done\"\r\n },\r\n {\r\n \"name\": \"Clear\",\r\n \"description\": \"Clear all items from a pre-existing note.\",\r\n \"examples\": \"Remove all items from my vacation list; Clear all from my reading list\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"Confirm an action relating to a note.\",\r\n \"examples\": \"It's okay by me;yes;I am confirming keeping all items on lists\"\r\n },\r\n {\r\n \"name\": \"Create\",\r\n \"description\": \"Create a new note.\",\r\n \"examples\": \"Create a list; Note to remind me that Jason is in town first week of May\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"Delete an entire note.\",\r\n \"examples\": \"Delete my vacation list; delete my groceries note\"\r\n },\r\n {\r\n \"name\": \"DeleteNoteItem\",\r\n \"description\": \"Delete items from a pre-existing note.\",\r\n \"examples\": \"Delete chips from my grocery list; Remove pens from my school shopping list\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"Read a list out loud\",\r\n \"examples\": \"Read me the first one; Read me the details\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"See the next item in a list of notes.\",\r\n \"examples\": \"Show the next one; Next page; Next\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"AppName\",\r\n \"description\": \"The note-taking application name.\",\r\n \"examples\": \"Wunderlist; OneNote\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"The name of a contact in a note.\",\r\n \"examples\": \"Carol; Jim; Chris\"\r\n },\r\n {\r\n \"name\": \"Text\",\r\n \"description\": \"The text of a note or reminder.\",\r\n \"examples\": \"stretch before walking; long run tomorrow\"\r\n },\r\n {\r\n \"name\": \"Title\",\r\n \"description\": \"Title of a note.\",\r\n \"examples\": \"groceries; people to call; to-do\"\r\n },\r\n {\r\n \"name\": \"DataSource\",\r\n \"description\": \"Location of notes.\",\r\n \"examples\": \"OneDrive; Google docs; my computer\"\r\n },\r\n {\r\n \"name\": \"DataType\",\r\n \"description\": \"The type of file or document, usually associated with particular software programs.\",\r\n \"examples\": \"Slides; Spreadsheet; Worksheet\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"OnDevice\",\r\n \"culture\": \"en-us\",\r\n \"description\": \"The OnDevice domain provides intents and entities related to controlling the devices.\",\r\n \"examples\": \"Close video player; Cancel playback; Can you make the screen brighter?\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AreYouListening\",\r\n \"description\": \"Ask if the device is listening.\",\r\n \"examples\": \"is this on?; are you listening?\"\r\n },\r\n {\r\n \"name\": \"CloseApplication\",\r\n \"description\": \"Close the device application.\",\r\n \"examples\": \"close video player\"\r\n },\r\n {\r\n \"name\": \"FileBug\",\r\n \"description\": \"File a bug on the device.\",\r\n \"examples\": \"file a bug please;Can you file a bug for me ?;Let me report this bug\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"Ask to go back one step or return to the previous step.\",\r\n \"examples\": \"Go back please;Go to previous screen;Go back stop listening\"\r\n },\r\n {\r\n \"name\": \"Help\",\r\n \"description\": \"Request help.\",\r\n \"examples\": \"Help please;Hello; What can you do?;I need help\"\r\n },\r\n {\r\n \"name\": \"LocateDevice\",\r\n \"description\": \"Locate the device.\",\r\n \"examples\": \"Can you locate my phone;Find tom's iphone;Find my phone\"\r\n },\r\n {\r\n \"name\": \"LogIn\",\r\n \"description\": \"Log in to a service using the device.\",\r\n \"examples\": \"Login please;Facebook log in;Log into LinkedIn\"\r\n },\r\n {\r\n \"name\": \"LogOut\",\r\n \"description\": \"Log out of a service using the device.\",\r\n \"examples\": \"Log off my phone;Log on to twitter;Log out\"\r\n },\r\n {\r\n \"name\": \"MainMenu\",\r\n \"description\": \"View the main menu of a device.\",\r\n \"examples\": \"View menu.\"\r\n },\r\n {\r\n \"name\": \"OpenApplication\",\r\n \"description\": \"Open an application on the device.\",\r\n \"examples\": \"Open the alarm please;Turn on camera;Launch calendar\"\r\n },\r\n {\r\n \"name\": \"OpenSetting\",\r\n \"description\": \"Open a setting on the device.\",\r\n \"examples\": \"Open network settings.\"\r\n },\r\n {\r\n \"name\": \"PairDevice\",\r\n \"description\": \"Pair the device.\",\r\n \"examples\": \"Can you help me in pairing Bluetooth signal to phone;Turn the bluetooth on and pair it with laptop;Pair Bluetooth signal to my laptop\"\r\n },\r\n {\r\n \"name\": \"PowerOff\",\r\n \"description\": \"Turn off the device.\",\r\n \"examples\": \"Can you shut down my computer;Shutdown;Turn off my mobile\"\r\n },\r\n {\r\n \"name\": \"QueryBattery\",\r\n \"description\": \"Get information about battery life.\",\r\n \"examples\": \"Show me battery life.\"\r\n },\r\n {\r\n \"name\": \"QueryWifi\",\r\n \"description\": \"Get information about WiFi.\",\r\n \"examples\": \"What's my battery status;How much battery left now?;Show me battery\"\r\n },\r\n {\r\n \"name\": \"Restart\",\r\n \"description\": \"Restart the device.\",\r\n \"examples\": \"Please restart.\"\r\n },\r\n {\r\n \"name\": \"RingDevice\",\r\n \"description\": \"\\\"Ask the device to ring, in order to find it when it's lost.\\\"\",\r\n \"examples\": \"Ring my phone.\"\r\n },\r\n {\r\n \"name\": \"SetBrightness\",\r\n \"description\": \"Set the device brightness.\",\r\n \"examples\": \"Set brightness to medium;Set brightness to high;Set brightness to low\"\r\n },\r\n {\r\n \"name\": \"SetupDevice\",\r\n \"description\": \"Initiate device setup.\",\r\n \"examples\": \"I want to install OS setup;Setup please;Do setup for me\"\r\n },\r\n {\r\n \"name\": \"ShowAppBar\",\r\n \"description\": \"Show an app bar.\",\r\n \"examples\": \"Show me the application bar;Application bar please;Let me see the application bar\"\r\n },\r\n {\r\n \"name\": \"ShowContextMenu\",\r\n \"description\": \"Show a context menu.\",\r\n \"examples\": \"Let me see the context menu;Context menu please;Can you show me the context menu\"\r\n },\r\n {\r\n \"name\": \"Sleep\",\r\n \"description\": \"Put the device to sleep.\",\r\n \"examples\": \"Go to sleep;Sleep;My computer sleep\"\r\n },\r\n {\r\n \"name\": \"SwitchApplication\",\r\n \"description\": \"Switch the application to use on the device.\",\r\n \"examples\": \"Switch to my media player.\"\r\n },\r\n {\r\n \"name\": \"TurnDownBrightness\",\r\n \"description\": \"Turn down device brightness.\",\r\n \"examples\": \"Dim the screen.\"\r\n },\r\n {\r\n \"name\": \"TurnOffSetting\",\r\n \"description\": \"Turn off a device setting.\",\r\n \"examples\": \"Deactivate Bluetooth;Disable data;Disconnect bluetooth\"\r\n },\r\n {\r\n \"name\": \"TurnOnSetting\",\r\n \"description\": \"Turn on a device setting.\",\r\n \"examples\": \"On;Off\"\r\n },\r\n {\r\n \"name\": \"TurnUpBrightness\",\r\n \"description\": \"Turn up device brightness.\",\r\n \"examples\": \"Can you make the screen brighter?\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"AppName\",\r\n \"description\": \"Name of an application on the device.\",\r\n \"examples\": \"SoundCloud; YouTube\"\r\n },\r\n {\r\n \"name\": \"BrightnessLevel\",\r\n \"description\": \"Set the brightness level on the device.\",\r\n \"examples\": \"One hundred percent;Fifty;40%\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"The name of a contact on the device.\",\r\n \"examples\": \"Paul;Marlen Max\"\r\n },\r\n {\r\n \"name\": \"DeviceType\",\r\n \"description\": \"The type of device.\",\r\n \"examples\": \"Phone;kindle;Laptop\"\r\n },\r\n {\r\n \"name\": \"MediaType\",\r\n \"description\": \"The media type handled by the device.\",\r\n \"examples\": \"Music; Movie; TV shows\"\r\n },\r\n {\r\n \"name\": \"SettingType\",\r\n \"description\": \"A type of setting or settings panel that the user wants to edit.\",\r\n \"examples\": \"WiFi; Wireless Network; Color Scheme; Notification [Center]\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Places\",\r\n \"culture\": \"en-us\",\r\n \"description\": \"The Places domain provides intents for handling queries related to places like businesses, institution, restaurants, public spaces and addresses.\",\r\n \"examples\": \"Save this location to my favorites; How far away is Holiday Inn?; At what time does Safeway close?\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFavoritePlace\",\r\n \"description\": \"Add a location to the the user's favorites list.\",\r\n \"examples\": \"Save this location to my favorites; Add this address to my favorites\"\r\n },\r\n {\r\n \"name\": \"CheckAccident\",\r\n \"description\": \"Ask whether there is an accident on a specified road.\",\r\n \"examples\": \"Is there an accident on 880?; Show me accident information\"\r\n },\r\n {\r\n \"name\": \"CheckAreaTraffic\",\r\n \"description\": \"\\\"Check the traffic for a general area or highway, not on a specified route.\\\"\",\r\n \"examples\": \"Traffic in Seattle; What's the traffic like in Seattle?\"\r\n },\r\n {\r\n \"name\": \"CheckIntoPlace\",\r\n \"description\": \"Check in to a place using social media.\",\r\n \"examples\": \"Check me in on Foursquare; Check in here\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"Confirm an action relating to a place.\",\r\n \"examples\": \"Confirm my restaurant reservation.\"\r\n },\r\n {\r\n \"name\": \"Exit\",\r\n \"description\": \"Action to exit a task relating to a place.\",\r\n \"examples\": \"Quit please;Quit giving me directions\"\r\n },\r\n {\r\n \"name\": \"FindPlace\",\r\n \"description\": \"\\\"Search for a place (business, institution, restaurant, public space, address).\\\"\",\r\n \"examples\": \"Where's the nearest library?; Find me a good Italian restaurant in Mountain View\"\r\n },\r\n {\r\n \"name\": \"GetAddress\",\r\n \"description\": \"Ask for the address of a place.\",\r\n \"examples\": \"Show me the address of Guu on Robson street; What is the address of the nearest Starbucks?\"\r\n },\r\n {\r\n \"name\": \"GetDistance\",\r\n \"description\": \"Ask about distance to a specific place.\",\r\n \"examples\": \"How far away is Holiday Inn?; how far is it to Bellevue square from here; what's the distance to Tahoe\"\r\n },\r\n {\r\n \"name\": \"GetHours\",\r\n \"description\": \"Ask about the operating hours for a place.\",\r\n \"examples\": \"At what time does Safeway close?; What are the hours for Home Depot?; Is Starbucks still open?\"\r\n },\r\n {\r\n \"name\": \"GetMenu\",\r\n \"description\": \"Ask for the menu items for a restaurant.\",\r\n \"examples\": \"Does Zucca serve anything vegan?; What's on the menu at Sizzler; Show me Applebee's menu\"\r\n },\r\n {\r\n \"name\": \"GetPhoneNumber\",\r\n \"description\": \"Ask for the phone number of a place.\",\r\n \"examples\": \"What is the phone number of the nearest Starbucks?; Give the number for Home Depot\"\r\n },\r\n {\r\n \"name\": \"GetReviews\",\r\n \"description\": \"Ask for reviews of a place.\",\r\n \"examples\": \"Show me reviews for Cheesecase Factory; Read Cineplex reviews in Yelp\"\r\n },\r\n {\r\n \"name\": \"GetRoute\",\r\n \"description\": \"Ask for directions to a place.\",\r\n \"examples\": \"How to walk to Bellevue square; Show me the shortest way to 8th and 59th from here; Get me directions to Mountain View CA\"\r\n },\r\n {\r\n \"name\": \"GetStarRating\",\r\n \"description\": \"Ask for the star rating of a place.\",\r\n \"examples\": \"How is Zucca rated according to Yelp?; How many stars does the French Laundry have?; Is the aquarium in Monterrey good?\"\r\n },\r\n {\r\n \"name\": \"GetTransportationSchedule\",\r\n \"description\": \"Get the bus schedule for a place.\",\r\n \"examples\": \"What time is the next bus to downtown?; Show me the buses in King County\"\r\n },\r\n {\r\n \"name\": \"GetTravelTime\",\r\n \"description\": \"Ask for the travel time to a specified destination.\",\r\n \"examples\": \"How long will it take to get to San Francisco from here; What's the driving time to Denver from SF\"\r\n },\r\n {\r\n \"name\": \"MakeCall\",\r\n \"description\": \"Make a phone call to a place.\",\r\n \"examples\": \"Call mom; I would like to place a Skype call to Anna; Call Jim\"\r\n },\r\n {\r\n \"name\": \"MakeReservation\",\r\n \"description\": \"Request a reservation for a restaurant or other business.\",\r\n \"examples\": \"Reserve at Zucca for two for tonight; Book a table for tomorrow; Table for 3 in Palo Alto at 8\"\r\n },\r\n {\r\n \"name\": \"MapQuestions\",\r\n \"description\": \"Request information about directions or whether a specified road goes to a destination.\",\r\n \"examples\": \"Does 13 pass through downtown?; Can I take 880 to Oakland?\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"Get the rating description of a restaurant or place.\",\r\n \"examples\": \"How many stars does the Contoso Inn have?\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"Read a list of places out loud.\",\r\n \"examples\": \"Read me the first one; Read me the details\"\r\n },\r\n {\r\n \"name\": \"SelectItem\",\r\n \"description\": \"Choose an item from a list of choices relating to a place or places.\",\r\n \"examples\": \"Pick the second one; Select the first\"\r\n },\r\n {\r\n \"name\": \"ShowMap\",\r\n \"description\": \"Show a map of an area.\",\r\n \"examples\": \"Show a map for the second one ; Show map; Find San Francisco on the map\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"Show the next item in a series.\",\r\n \"examples\": \"Show the next one; go to the next page\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"Show the previous item in a series.\",\r\n \"examples\": \"show previous one; previous; go to previous\"\r\n },\r\n {\r\n \"name\": \"StartOver\",\r\n \"description\": \"Restart the app or start a new session.\",\r\n \"examples\": \"Start over; New session; restart\"\r\n },\r\n {\r\n \"name\": \"TakesReservations\",\r\n \"description\": \"Ask whether a place accepts reservations.\",\r\n \"examples\": \"Does the art gallery accept reservations; Is it possible to make a reservation at the Olive Garden\"\r\n },\r\n {\r\n \"name\": \"CheckRouteTraffic\",\r\n \"description\": \"Check the traffic of a specific route specified by the user.\",\r\n \"examples\": \"How is the traffic to Mashiko?; Show me the traffice to Kirkland; How is the traffic to Seattle?\"\r\n },\r\n {\r\n \"name\": \"GetPriceRange\",\r\n \"description\": \"User asks for the price range of a place.\",\r\n \"examples\": \"Is Zucca cheap?; Is the Cineplex half price on Wednesdays?; How much does a whole lobster dinner cost at Sizzler?\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"AbsoluteLocation\",\r\n \"description\": \"The location or address of a place.\",\r\n \"examples\": \"Palo Alto; 300 112th Ave SE; Seattle\"\r\n },\r\n {\r\n \"name\": \"DestinationAddress\",\r\n \"description\": \"A destination location or address.\",\r\n \"examples\": \"Palo Alto; 300 112th Ave SE; Seattle\"\r\n },\r\n {\r\n \"name\": \"DestinationPlaceName\",\r\n \"description\": \"\\\"The name of a destination that is a business, restaurant, public attraction, or institution. \\\"\",\r\n \"examples\": \"central park; safeway; walmart\"\r\n },\r\n {\r\n \"name\": \"DestinationPlaceType\",\r\n \"description\": \"\\\"The type of a destination that is a business, restaurant, public attraction, or institution. \\\"\",\r\n \"examples\": \"Cafe; Theatre; Library\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"Type of meal like breakfast or lunch.\",\r\n \"examples\": \"breakfast; dinner; lunch; supper\"\r\n },\r\n {\r\n \"name\": \"OpenStatus\",\r\n \"description\": \"Indicates whether a place is open or closed.\",\r\n \"examples\": \"Open; closed; opening\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"The name of a place.\",\r\n \"examples\": \"Cheesecake Factory;\"\r\n },\r\n {\r\n \"name\": \"PlaceType\",\r\n \"description\": \"The type of a place.\",\r\n \"examples\": \"Cafe; Theatre; Library\"\r\n },\r\n {\r\n \"name\": \"TransportationCompany\",\r\n \"description\": \"The name of a public transport provider.\",\r\n \"examples\": \"Amtrack; Acela; Greyhound\"\r\n },\r\n {\r\n \"name\": \"TransportationType\",\r\n \"description\": \"A type of transportation.\",\r\n \"examples\": \"Bus; Train; Driving\"\r\n },\r\n {\r\n \"name\": \"Amenities\",\r\n \"description\": \"The objective characteristics/benefits of a place.\",\r\n \"examples\": \"kids eat free; waterfront; free parking\"\r\n },\r\n {\r\n \"name\": \"Atmosphere\",\r\n \"description\": \"The atmosphere of a place.\",\r\n \"examples\": \"kid-friendly; casual restaurant; sporty\"\r\n },\r\n {\r\n \"name\": \"RouteAvoidanceCriteria\",\r\n \"description\": \"\\\"Criteria for avoiding specific routes like avoiding accidents, constructions or tolls.\\\"\",\r\n \"examples\": \"Tolls; Constructions; Route 11\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"The cuisine of a place.\",\r\n \"examples\": \"Mediterranean; Italian; Indian\"\r\n },\r\n {\r\n \"name\": \"Distance\",\r\n \"description\": \"The distance to a place.\",\r\n \"examples\": \"15 miles; 5 miles; 10 miles away\"\r\n },\r\n {\r\n \"name\": \"PreferredRoute\",\r\n \"description\": \"The preferred route specified by the user.\",\r\n \"examples\": \"101; 202; Route 401\"\r\n },\r\n {\r\n \"name\": \"Product\",\r\n \"description\": \"The product offered by a place.\",\r\n \"examples\": \"Clothes; Digital ASR Cameras; Fresh fish\"\r\n },\r\n {\r\n \"name\": \"PublicTransportationRoute\",\r\n \"description\": \"The name of the public transportation route that the user is searching for.\",\r\n \"examples\": \"Northeast corridor train; Bus route 3X\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"The rating of a place.\",\r\n \"examples\": \"5 stars; 3 stars; 4 stars\"\r\n },\r\n {\r\n \"name\": \"ServiceProvided\",\r\n \"description\": \"\\\"This is the service provided by a business or place such as haircut, snow plowing, landscaping.\\\"\",\r\n \"examples\": \"haircut; mechanic; plumber\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Reminder\",\r\n \"culture\": \"en-us\",\r\n \"description\": \"The reminder domain provides intents and entities for creating, editing, and finding reminders.\",\r\n \"examples\": \"Change my interview to 9 am tomorrow; Remind me to buy milk on my way back home; Can you check if I have a reminder about Christine's birthday?\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Change\",\r\n \"description\": \"Change a reminder.\",\r\n \"examples\": \"Change my interview to 9 am tomorrow ; Move my assignment reminder to tomorrow\"\r\n },\r\n {\r\n \"name\": \"Create\",\r\n \"description\": \"Create a new reminder.\",\r\n \"examples\": \"Create a reminder; Remind me to buy milk; I want to remember to call Rebecca when I'm at home\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"Delete a reminder.\",\r\n \"examples\": \"Delete my picture reminder; Delete this reminder\"\r\n },\r\n {\r\n \"name\": \"Find\",\r\n \"description\": \"Find a reminder.\",\r\n \"examples\": \"Do I have a reminder about my anniversary?; Can you check if I have a reminder about Christine's birthday?\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Text\",\r\n \"description\": \"The text description of a reminder.\",\r\n \"examples\": \"pick up dry cleaning; dropping my car off at the service center\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RestaurantReservation\",\r\n \"culture\": \"en-us\",\r\n \"description\": \"The Reservation domain provides intents and entities related to managing restaurant reservations.\",\r\n \"examples\": \"Reserve at Zucca for two for tonight; Book a table at BJ's for tomorrow; Table for 3 in Palo Alto at 7\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Reserve\",\r\n \"description\": \"Request a reservation for a restaurant.\",\r\n \"examples\": \"Reserve at Zucca for two for tonight; Book a table for tomorrow; Table for 3 in Palo Alto at 7\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Address\",\r\n \"description\": \"An event location or address for a reservation.\",\r\n \"examples\": \"Palo Alto; 300 112th Ave SE; Seattle\"\r\n },\r\n {\r\n \"name\": \"Amenities\",\r\n \"description\": \"An attribute describing the amenities of a place.\",\r\n \"examples\": \"ocean view; non smoking;\"\r\n },\r\n {\r\n \"name\": \"AppName\",\r\n \"description\": \"The name of an application for making reservations.\",\r\n \"examples\": \"OpenTable; Yelp; TripAdvisor\"\r\n },\r\n {\r\n \"name\": \"Atmosphere\",\r\n \"description\": \"A description of the atmosphere of a restaurant or other place.\",\r\n \"examples\": \"romantic; casual; good for groups\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"\\\"A type of food, cuisine or cuisine nationality.\\\"\",\r\n \"examples\": \"Chinese; Italian; Mexican\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"A meal type associated with a reservation.\",\r\n \"examples\": \"breakfast; dinner; lunch; supper\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"\\\"The name of a local business, restaurant, public attraction, or institution. \\\"\",\r\n \"examples\": \"IHOP; Cheesecake Factory; Louvre\"\r\n },\r\n {\r\n \"name\": \"PlaceType\",\r\n \"description\": \"\\\"The type of a local business, restaurant, public attraction, or institution. \\\"\",\r\n \"examples\": \"restaurant; opera; cinema\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"The rating of a place or restaurant.\",\r\n \"examples\": \"5 stars; 3 stars; 4 stars\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Taxi\",\r\n \"culture\": \"en-us\",\r\n \"description\": \"The Taxi domain provides intents and entities for creating and managing taxi bookings.\",\r\n \"examples\": \"Get me a cab at 3 pm; How much longer do I have to wait for my taxi?; Cancel my Uber\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Book\",\r\n \"description\": \"Call a taxi.\",\r\n \"examples\": \"Get me a cab; Find a taxi; Book me an uber x\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"Cancel an action relating to booking a taxi.\",\r\n \"examples\": \"Cancel my taxi; Cancel my Uber\"\r\n },\r\n {\r\n \"name\": \"Track\",\r\n \"description\": \"Track a taxi route.\",\r\n \"examples\": \"How much longer do I have to wait for my taxi?; Where is my Uber?\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Address\",\r\n \"description\": \"The address associated with booking a taxi.\",\r\n \"examples\": \"Palo Alto; 300 112th Ave SE; Seattle\"\r\n },\r\n {\r\n \"name\": \"DestinationAddress\",\r\n \"description\": \"A destination location or address.\",\r\n \"examples\": \"Palo Alto; 300 112th Ave SE; Seattle\"\r\n },\r\n {\r\n \"name\": \"DestinationPlaceName\",\r\n \"description\": \"\\\"The name of a destination that is a local business, restaurant, public attraction, or institution. \\\"\",\r\n \"examples\": \"Central Park; Safeway; Walmart\"\r\n },\r\n {\r\n \"name\": \"DestinationPlaceType\",\r\n \"description\": \"\\\"The type of a destination that is a local business, restaurant, public attraction, or institution. \\\"\",\r\n \"examples\": \"Restaurant; Opera; Cinema\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"\\\"Name of local business, restaurant, public attraction, or institution. \\\"\",\r\n \"examples\": \"Central Park; Safeway; Walmart\"\r\n },\r\n {\r\n \"name\": \"PlaceType\",\r\n \"description\": \"The type of place in a request to book a taxi.\",\r\n \"examples\": \"Restaurant; Opera; Cinema\"\r\n },\r\n {\r\n \"name\": \"TransportationCompany\",\r\n \"description\": \"The name of a transport provider.\",\r\n \"examples\": \"Amtrack; Acela; Greyhound\"\r\n },\r\n {\r\n \"name\": \"TransportationType\",\r\n \"description\": \"The transportation type.\",\r\n \"examples\": \"Bus; Train; Driving\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Translate\",\r\n \"culture\": \"en-us\",\r\n \"description\": \"The Translate domain provides intents and entities related to translating text to a target language.\",\r\n \"examples\": \"Translate to French; Translate hello to German; Translate this sentence to English\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Translate\",\r\n \"description\": \"Translate text to another language.\",\r\n \"examples\": \"Translate to French; Translate hello to German\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"TargetLanguage\",\r\n \"description\": \"The target language of a translation.\",\r\n \"examples\": \"French; German; Korean\"\r\n },\r\n {\r\n \"name\": \"Text\",\r\n \"description\": \"The text to translate.\",\r\n \"examples\": \"Hello World;Good morning;Good evening\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"TV\",\r\n \"culture\": \"en-us\",\r\n \"description\": \"The TV domain provides intents and entities for controlling TVs.\",\r\n \"examples\": \"Switch channel to BBC; Show TV guide; Watch National Geographic\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeChannel\",\r\n \"description\": \"Change a channel on a TV.\",\r\n \"examples\": \"Change channel to CNN; Switch channel to BBC; Go to channel 4\"\r\n },\r\n {\r\n \"name\": \"ShowGuide\",\r\n \"description\": \"Show the TV guide.\",\r\n \"examples\": \"Show TV guide; what is on movie channel now?; show my program list\"\r\n },\r\n {\r\n \"name\": \"WatchTV\",\r\n \"description\": \"Ask to watch a TV channel.\",\r\n \"examples\": \"I want to watch the Disney channel; go to TV please; Watch National Geographic\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"ChannelName\",\r\n \"description\": \"The name of a TV channel.\",\r\n \"examples\": \"CNN; BBC; Movie channel\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Utilities\",\r\n \"culture\": \"en-us\",\r\n \"description\": \"The Utilities domain provides intents for tasks that are common to many tasks, such as greetings, cancellation, confirmation, help, repetition, navigation, starting and stopping.\",\r\n \"examples\": \"Go back to Twitter; Please help; Repeat last question please\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"Cancel an action.\",\r\n \"examples\": \"Cancel the message; I don't want to send the email anymore\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"Confirm an action.\",\r\n \"examples\": \"Yeah ohh I confirm;Good I am confirming;Okay I am confirming\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"Go back one step or return to a previous step.\",\r\n \"examples\": \"Go back to Twitter; Go back a step; Go back\"\r\n },\r\n {\r\n \"name\": \"Help\",\r\n \"description\": \"Request for help.\",\r\n \"examples\": \"Please help; open help; help\"\r\n },\r\n {\r\n \"name\": \"Repeat\",\r\n \"description\": \"Repeat an action.\",\r\n \"examples\": \"Repeat last question please; repeat last song\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"Show the next item in a series.\",\r\n \"examples\": \"Show the next one; go to the next page\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"Show the previous item in a series.\",\r\n \"examples\": \"show previous one\"\r\n },\r\n {\r\n \"name\": \"StartOver\",\r\n \"description\": \"Restart the app or start a new session.\",\r\n \"examples\": \"Start over; New session; restart\"\r\n },\r\n {\r\n \"name\": \"Stop\",\r\n \"description\": \"Stop an action.\",\r\n \"examples\": \"Stop saying this please;Shut up;Stop please\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"Finish a task the user started.\",\r\n \"examples\": \"I am done; I am finished; It is done\"\r\n }\r\n ],\r\n \"entities\": []\r\n },\r\n {\r\n \"name\": \"Weather\",\r\n \"culture\": \"en-us\",\r\n \"description\": \"The Weather domain provides intents and entities for getting weather reports and forecasts\",\r\n \"examples\": \"weather in London in september; What's the 10 day forecast?; What's the average temperature in India in september?\",\r\n \"intents\": [\r\n {\r\n \"name\": \"GetCondition\",\r\n \"description\": \"Get historic facts related to weather.\",\r\n \"examples\": \"weather in London in september; what's the average temperature in India in september\"\r\n },\r\n {\r\n \"name\": \"GetForecast\",\r\n \"description\": \"Get the current weather and forecast for the next few days.\",\r\n \"examples\": \"How is the weather today?; What's the 10 day forecast; How will the weather be this weekend\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"The absolute location for a weather request.\",\r\n \"examples\": \"Seattle; Paris; Palo Alto\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Web\",\r\n \"culture\": \"en-us\",\r\n \"description\": \"The Web domain provides intents and entities for navigating to a website.\",\r\n \"examples\": \"Navigate to facebook.com; Go to www.twitter.com; Navigate to www.bing.com\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Navigate\",\r\n \"description\": \"A request to navigate to a specified website.\",\r\n \"examples\": \"Navigate to facebook.com; Go to www.twitter.com\"\r\n }\r\n ],\r\n \"entities\": []\r\n },\r\n {\r\n \"name\": \"Shopping\",\r\n \"culture\": \"en-us\",\r\n \"description\": \"A model for finding specific items or categories of items. The user can find and shop from specific shops. The user can check what is in their shopping cart, or check the status of an order. The user can also purchase or reorder items.\",\r\n \"examples\": \"Show me silver necklaces; How much is the leather jacket; delete the red shoes from my shopping cart\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToCart\",\r\n \"description\": \"User wants to add an item to their cart\",\r\n \"examples\": \"add the gold earrings to the shopping list; Add it to the shopping cart; Add this item then checkout\"\r\n },\r\n {\r\n \"name\": \"BuyItem\",\r\n \"description\": \"User wants to buy a specific item\",\r\n \"examples\": \"purchase home alone dvd; can you buy this item; I want to purchase this one\"\r\n },\r\n {\r\n \"name\": \"CheckCart\",\r\n \"description\": \"User want to check their cart for items\",\r\n \"examples\": \"Did I add milk to my shopping cart; have I already added shoes to my shopping cart; is pepsi in my shopping cart ?\"\r\n },\r\n {\r\n \"name\": \"CheckOrderStatus\",\r\n \"description\": \"User wants to check the status of their order\",\r\n \"examples\": \"when will my order be shipped; How long until my shipment gets here ?; when will I get my order\"\r\n },\r\n {\r\n \"name\": \"FindItem\",\r\n \"description\": \"User is searching for an item from categories\",\r\n \"examples\": \"Help me find a box of instant rice; take me to kitchen item section of this website; Please show me whether or not this site has oranges\"\r\n },\r\n {\r\n \"name\": \"GetDetails\",\r\n \"description\": \"User wants details of a specific item, other than the price of the item\",\r\n \"examples\": \"show my orders; Show me my shipping information; Thanksgiving turkey prices\"\r\n },\r\n {\r\n \"name\": \"GetPrice\",\r\n \"description\": \"User wants to know the price of an item\",\r\n \"examples\": \"How much are these candles ?; Give me all makeup prices; cortana price for eggs at walmart and the coupon discount added\"\r\n },\r\n {\r\n \"name\": \"GetRecommendation\",\r\n \"description\": \"User wants to get a recommendation\",\r\n \"examples\": \"show me gift ideas for mothers; \\\"My mother deserves a really nice gift for Christmas , help\\\"; Can you pick me out something for my stepson ?\"\r\n },\r\n {\r\n \"name\": \"GetReviews\",\r\n \"description\": \"User wants to know the reviews of an item\",\r\n \"examples\": \"show me reviews for apples; Show me some reviews for this Samsung printer; Show me reviews for this LG blender\"\r\n },\r\n {\r\n \"name\": \"GetWarrantyInfo\",\r\n \"description\": \"User wants to get information on a warranty\",\r\n \"examples\": \"Search warranty expiration date; show warranty information; Tell me when my phones $20 warranty will expire please.\"\r\n },\r\n {\r\n \"name\": \"RemoveFromCart\",\r\n \"description\": \"User wants to remove an item from the cart\",\r\n \"examples\": \"Remove Campbell 's chicken noodle soup from my cart; Remove the floor lamp from my cart; Please remove the Campbell 's chicken noodle soup from my cart\"\r\n },\r\n {\r\n \"name\": \"Reorder\",\r\n \"description\": \"User wants to reorder an item\",\r\n \"examples\": \"Reorder the Tupperware I bought on this site last week; Reorder the same deodorant as last time; I would like to reorder Budweiser\"\r\n },\r\n {\r\n \"name\": \"SubmitWarranty\",\r\n \"description\": \"User wants to submit a new warranty on an item\",\r\n \"examples\": \"All of my warranties choose warranty for fish washer submit; submit microwave warranty; For this item submit the warranty\"\r\n },\r\n {\r\n \"name\": \"AddCard\",\r\n \"description\": \"User want to add a credit card to their profile\",\r\n \"examples\": \"add Visa to my payment methods; add American express to payment; add visa to payment\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"BrandName\",\r\n \"description\": \"The company/brand of an item\",\r\n \"examples\": \"Yardley; pepsi; legos\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"The user is looking for items in a category\",\r\n \"examples\": \"kitchen; makeup; gift\"\r\n },\r\n {\r\n \"name\": \"CreditCardName\",\r\n \"description\": \"The name of the user's credit card\",\r\n \"examples\": \"Visa; American express; visa\"\r\n },\r\n {\r\n \"name\": \"Item\",\r\n \"description\": \"The user is looking for an item (doesn't have to be from a specific category)\",\r\n \"examples\": \"earrings; shirts; corn\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"\\\"Order ref returns one item based on a time ordering, such as the release date for a category of goods.\\\"\",\r\n \"examples\": \"currently; current; last\"\r\n },\r\n {\r\n \"name\": \"Price\",\r\n \"description\": \"The price range for the item requested. Includes words like cheap and expensive\",\r\n \"examples\": \"$5; ten dollars; under $20\"\r\n },\r\n {\r\n \"name\": \"Quantity\",\r\n \"description\": \"Number of items. Quantity includes numerals\",\r\n \"examples\": \"multi pack; one can; one bar\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"\\\"This is the rating of an item (not the price range). The phrases good, best, and top also go here\\\"\",\r\n \"examples\": \"top; best; highest\"\r\n },\r\n {\r\n \"name\": \"Recipient\",\r\n \"description\": \"The user is looking for an item for a gender or a person\",\r\n \"examples\": \"mothers; mother; stepson\"\r\n },\r\n {\r\n \"name\": \"Size\",\r\n \"description\": \"Sizing information of an item. Includes words\",\r\n \"examples\": \"xl; large; Largest\"\r\n },\r\n {\r\n \"name\": \"WarrantyAttribute\",\r\n \"description\": \"The user wants to know about a certain attribute in a warranty\",\r\n \"examples\": \"expiration date; expire; expiration\"\r\n },\r\n {\r\n \"name\": \"WarrantyCost\",\r\n \"description\": \"The cost of a warrenty the user wants to know about.\",\r\n \"examples\": \"$20; $500; $100\"\r\n }\r\n ]\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"name\": \"Calendar\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"The Calendar domain provides intent and entities for adding, deleting, or editing an appointment, checking participants availability, and finding information about a calendar event.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AcceptEventEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckAvailability\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ConnectToMeeting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactMeetingAttendees\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CreateCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarDetail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWho\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindDuration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindMeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TimeRemaining\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DestinationCalendar\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveEarlierTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveLaterTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SlotAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Subject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"personName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Communication\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Sending messages and making phone calls.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Answer\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AssignContactNickname\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallVoiceMail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckIMStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Dial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetForwardingsStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetNotifications\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Ignore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"IgnoreWithMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PressKey\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Redial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AudioDeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DestinationPhone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Key\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MessageType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"email\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"phonenumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject.any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message.any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Email\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Manage email tasks such as reading, replying and flagging emails.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Date\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"email\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"HomeAutomation\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Controlling smart home devices like lights and appliances.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"QueryState\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetDevice\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnDown\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnUp\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumericalChange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Setting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Unit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeviceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SettingType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Note\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Manage note taking tasks such as creating, editing, and finding notes.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToNote\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeTitle\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Clear\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Close\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Create\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Open\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RemoveSentence\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Text\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Title\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Text.any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Title.any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Places\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Handling queries related to places like businesses, institutions, restaurants, public spaces, and addresses.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFavoritePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindPlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetAddress\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetDistance\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetHours\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetMenu\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPhoneNumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetReviews\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetStarRating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MakeCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RatePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"AbsoluteLocation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Amenities\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Product\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Nearby\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OpenStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"dimension\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RestaurantReservation\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Manage tasks associated with reservations such as book a table at a restaurant, changing or cancelling a reservation at a restaurant.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reserve\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Address\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumberPeople\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Atmosphere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ToDo\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Handling requests for task list.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MarkToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNextPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPreviousPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"ContainsAll\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ListType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TaskContent\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TaskContent.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Utilities\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Handling requests that are common in many domains, like 'help', 'repeat', 'start over.'\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Escalate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Help\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Repeat\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectAny\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectItem\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectNone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartOver\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Stop\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DirectionalReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"number\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Weather\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Getting weather reports and forecasts.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeTemperatureUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherValue\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetWeatherAdvisory\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryWeather\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Historic\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SuitableFor\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WeatherRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AdditionalWeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WindDirectionUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"dimension\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"geographyV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"temperature\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Web\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"Navigating to a website.\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"WebSearch\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"SearchText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchEngine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"url\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/customprebuiltdomains/zh-cn", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9jdXN0b21wcmVidWlsdGRvbWFpbnMvemgtY24=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/customprebuiltdomains/zh-cn", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2N1c3RvbXByZWJ1aWx0ZG9tYWlucy96aC1jbg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "00000000000000000000000000000000" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.26614.01", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { "Cache-Control": [ "no-store, proxy-revalidate, no-cache, max-age=0, private" ], - "Date": [ - "Tue, 12 Feb 2019 23:34:16 GMT" - ], "Pragma": [ "no-cache" ], "Apim-Request-Id": [ - "e30454f1-4dfc-4837-b4bb-31c5756191cf" + "58d94128-6016-44a9-982e-3d9acf63de7c" ], "Request-Id": [ - "e30454f1-4dfc-4837-b4bb-31c5756191cf" + "58d94128-6016-44a9-982e-3d9acf63de7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -98,14 +95,17 @@ "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Tue, 29 Oct 2019 13:17:11 GMT" + ], "Content-Length": [ - "22278" + "16966" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"name\": \"日程\",\r\n \"culture\": \"zh-cn\",\r\n \"description\": \"日程主题提供与日程规划相关的意图和实体,包括添加、删除和编辑日程待办事项,查询信息等意图。\",\r\n \"examples\": \"在周日下午2点与莉莉约会;阿明什么时候有空参加会议;取消我上午九点的会议\",\r\n \"intents\": [\r\n {\r\n \"name\": \"添加日程\",\r\n \"description\": \"增加一个新的日程事项\",\r\n \"examples\": \"周日下午两点与莉莉约会;我想安排一个会议;我需要指定一个会议日程\"\r\n },\r\n {\r\n \"name\": \"核查\",\r\n \"description\": \"核查用户日程,寻找适宜的会议时间\",\r\n \"examples\": \"阿明什么时候有空参加会议;查看罗琳明天什么时候有空;李斯周六有空吗?\"\r\n },\r\n {\r\n \"name\": \"删除\",\r\n \"description\": \"请求删除日程事项\",\r\n \"examples\": \"取消我和罗琳的约会;删除我九点的会议日程\"\r\n },\r\n {\r\n \"name\": \"编辑\",\r\n \"description\": \"请求修改日程信息\",\r\n \"examples\": \"将上午九点的会议改为十点;我想更新我的日程;重新安排我和卢斯的会议\"\r\n },\r\n {\r\n \"name\": \"查询\",\r\n \"description\": \"查询会议信息或日程安排\",\r\n \"examples\": \"告诉我周末的日程安排;查询我牙齿复查的日程安排.\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"地点\",\r\n \"description\": \"日程事项的位置信息,包含城市、区域等地址信息\",\r\n \"examples\": \"纳什维尔健身房209;897煎饼屋;车库\"\r\n },\r\n {\r\n \"name\": \"主题\",\r\n \"description\": \"会议的主题信息\",\r\n \"examples\": \"牙齿复查日程;和朱莉吃午餐\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"通讯\",\r\n \"culture\": \"zh-cn\",\r\n \"description\": \"通讯主题提供与电话、电子邮件和发送信息相关的意图和实体\",\r\n \"examples\": \"转接到我的语音信箱;记录这个号码,将联系人保存为罗琳;请将我的电话转接到3333号码\",\r\n \"intents\": [\r\n {\r\n \"name\": \"添加联系人\",\r\n \"description\": \"将新联系人添加到用户的联系人列表中\",\r\n \"examples\": \"添加新联系人;保存此号码并将其命名为Carol\"\r\n },\r\n {\r\n \"name\": \"添加更多信息\",\r\n \"description\": \"添加更多的电子邮件或文本,作为逐步的电子邮件或文本构成的一部分\",\r\n \"examples\": \"添加更多文字;添加更多到电子邮件正文\"\r\n },\r\n {\r\n \"name\": \"回复\",\r\n \"description\": \"接听电话\",\r\n \"examples\": \"接电话;回复他\"\r\n },\r\n {\r\n \"name\": \"编辑联系人姓名\",\r\n \"description\": \"为联系人分配昵称\",\r\n \"examples\": \"将何伟设置为爸爸;添加昵称卡罗尔·汉娜;编辑吉姆的昵称\"\r\n },\r\n {\r\n \"name\": \"拨打语音信箱\",\r\n \"description\": \"连接到用户的语音信箱\",\r\n \"examples\": \"将我连接到我的语音信箱;致电语音信箱;语音信箱\"\r\n },\r\n {\r\n \"name\": \"检查状态\",\r\n \"description\": \"在Skype中检查联系人的状态\",\r\n \"examples\": \"吉姆的在线状态是否脱离了?;卡罗尔可以聊天吗?\"\r\n },\r\n {\r\n \"name\": \"确认\",\r\n \"description\": \"确认指令\",\r\n \"examples\": \"是;好的;好吧;我确认我要发送这封电子邮件。\"\r\n },\r\n {\r\n \"name\": \"寻找联系人\",\r\n \"description\": \"按名称查找联系人信息\",\r\n \"examples\": \"查找卡罗尔的号码;告诉我卡罗的号码\"\r\n },\r\n {\r\n \"name\": \"关闭呼叫转移\",\r\n \"description\": \"关闭呼叫转移\",\r\n \"examples\": \"停止转发我的电话;关闭呼叫转移\"\r\n },\r\n {\r\n \"name\": \"开启呼叫转移\",\r\n \"description\": \"打开呼叫转移\",\r\n \"examples\": \"转发我的电话3333;切换呼叫转移到3333\"\r\n },\r\n {\r\n \"name\": \"呼叫转接状态\",\r\n \"description\": \"呼叫转移的状态\",\r\n \"examples\": \"是我的呼叫转移了吗?;告诉我通话状态是开或关 \"\r\n },\r\n {\r\n \"name\": \"回退\",\r\n \"description\": \"返回前一步\",\r\n \"examples\": \"回到必应搜索;回头一步;回去\"\r\n },\r\n {\r\n \"name\": \"忽略\",\r\n \"description\": \"忽略来电\",\r\n \"examples\": \"不要接听;忽略呼叫\"\r\n },\r\n {\r\n \"name\": \"忽略并回复\",\r\n \"description\": \"忽略来电和文本代替回答\",\r\n \"examples\": \"不要回答电话而是发送消息;忽略发送回来 \"\r\n },\r\n {\r\n \"name\": \"打电话\",\r\n \"description\": \"打电话\",\r\n \"examples\": \"打电话给吉姆;请拨311。 \"\r\n },\r\n {\r\n \"name\": \"按键\",\r\n \"description\": \"按键盘上的按钮或数\",\r\n \"examples\": \"拨星号;按1 2 3 \"\r\n },\r\n {\r\n \"name\": \"朗读\",\r\n \"description\": \"阅读邮件或电子邮件给用户\",\r\n \"examples\": \"阅读文本;她说什么的消息\"\r\n },\r\n {\r\n \"name\": \"重拨\",\r\n \"description\": \"重拨或拨打一个号码\",\r\n \"examples\": \"重拨;重拨我的最后一次通话\"\r\n },\r\n {\r\n \"name\": \"发送电子邮件\",\r\n \"description\": \"发送电子邮件。本文适用于邮件而不是短信\",\r\n \"examples\": \"电子邮件给麦克麦克晚餐上周精彩;发送一封电子邮件给鲍勃\"\r\n },\r\n {\r\n \"name\": \"发送信息\",\r\n \"description\": \"发送短信或即时消息\",\r\n \"examples\": \"发送文本给克里斯和凯罗尔\"\r\n },\r\n {\r\n \"name\": \"设置快速拨号\",\r\n \"description\": \"联系人的电话号码设置快速拨号快捷方式\",\r\n \"examples\": \"设置快速拨号给卡罗尔;妈妈设置快速拨号\"\r\n },\r\n {\r\n \"name\": \"显示下一项\",\r\n \"description\": \"看下一个项目,例如,在一个列表中的短信或邮件\",\r\n \"examples\": \"显示下一个;进入下一页\"\r\n },\r\n {\r\n \"name\": \"显示上一项\",\r\n \"description\": \"看到以前的项目,例如,在一个列表中的短信或邮件\",\r\n \"examples\": \"显示前一个;以前的;去之前\"\r\n },\r\n {\r\n \"name\": \"关闭扬声器\",\r\n \"description\": \"关掉扬声器电话\",\r\n \"examples\": \"关闭免提;关掉扬声器\"\r\n },\r\n {\r\n \"name\": \"开启扬声器\",\r\n \"description\": \"打开扬声器电话\",\r\n \"examples\": \"免提模式;放扬声器\"\r\n },\r\n {\r\n \"name\": \"查询快速拨号\",\r\n \"description\": \"查询快速拨号\",\r\n \"examples\": \"我的电话号码是多少?;我有速拨盘吗?;941 - 5555 - 333的拨号数是多少?\"\r\n },\r\n {\r\n \"name\": \"拒接\",\r\n \"description\": \"拒绝一个来电\",\r\n \"examples\": \"拒绝呼叫;不能回答现在;不是此刻和以后会回电话\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"联系人姓名\",\r\n \"description\": \"一个联系人或邮件收件人。\",\r\n \"examples\": \"卡罗尔;吉姆;克里斯\"\r\n },\r\n {\r\n \"name\": \"邮件主题\",\r\n \"description\": \"文本作为一个电子邮件的主题行\",\r\n \"examples\": \"回复: 有趣的故事\"\r\n },\r\n {\r\n \"name\": \"信息内容\",\r\n \"description\": \"消息发送电子邮件或文本\",\r\n \"examples\": \"今天很高兴见到你。很快再见到你!\"\r\n },\r\n {\r\n \"name\": \"类别\",\r\n \"description\": \"消息或邮件类别\",\r\n \"examples\": \"重要;高优先级\"\r\n },\r\n {\r\n \"name\": \"信息种类\",\r\n \"description\": \"信息搜索的类型\",\r\n \"examples\": \"文本;电子邮件\"\r\n },\r\n {\r\n \"name\": \"参照位置\",\r\n \"description\": \"序号或相关列表中的位置,确定一个项目检索。例如,在我发的最后一条消息是什么最后或最近的?\",\r\n \"examples\": \"上一个;最近的\"\r\n },\r\n {\r\n \"name\": \"音频设备种类\",\r\n \"description\": \"音频设备(扬声器,耳机,麦克风等\",\r\n \"examples\": \"耳机;免提;蓝牙\"\r\n },\r\n {\r\n \"name\": \"联系人属性\",\r\n \"description\": \"用户查询的联系的属性\",\r\n \"examples\": \"生日;地址;电话号码\"\r\n },\r\n {\r\n \"name\": \"线路\",\r\n \"description\": \"用户想使用打电话或发短信/电子邮件从线路\",\r\n \"examples\": \"工作线;英国线;Skype \"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"智能家居\",\r\n \"culture\": \"zh-cn\",\r\n \"description\": \"智能家居主题提供控制灯光、家电等智能家居装置相关的意图和实体\",\r\n \"examples\": \"关闭灯光;把咖啡机打开;关闭车库门\",\r\n \"intents\": [\r\n {\r\n \"name\": \"关闭\",\r\n \"description\": \"关闭、关闭或解锁设备\",\r\n \"examples\": \"关灯;停止咖啡壶;关闭车库门\"\r\n },\r\n {\r\n \"name\": \"打开\",\r\n \"description\": \"打开设备或将设备设置为特定的设置或模式\",\r\n \"examples\": \"打开我的咖啡壶;你能打开我的咖啡壶吗?将恒温器设置为72度\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"装置\",\r\n \"description\": \"可以打开或关闭的一种设备\",\r\n \"examples\": \"咖啡壶;恒温器;灯\"\r\n },\r\n {\r\n \"name\": \"地点\",\r\n \"description\": \"设备所在的位置或房间\",\r\n \"examples\": \"客厅;卧室;厨房\"\r\n },\r\n {\r\n \"name\": \"操作\",\r\n \"description\": \"设备的当前状态\",\r\n \"examples\": \"锁;开放;关\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"音乐\",\r\n \"culture\": \"zh-cn\",\r\n \"description\": \"音乐主题提供与音乐播放相关的主题和实体\",\r\n \"examples\": \"播放周杰伦的歌;增加音量;下一首音乐\",\r\n \"intents\": [\r\n {\r\n \"name\": \"减少音量\",\r\n \"description\": \"减少音量\",\r\n \"examples\": \"减少轨道音量;音量 \"\r\n },\r\n {\r\n \"name\": \"增加音量\",\r\n \"description\": \"增加音量\",\r\n \"examples\": \"增加轨道音量;音量 \"\r\n },\r\n {\r\n \"name\": \"播放音乐\",\r\n \"description\": \"在设备上播放音乐\",\r\n \"examples\": \"播放凯文杜兰特;播放游玩曲;播放阿黛勒的hello \"\r\n },\r\n {\r\n \"name\": \"下一首\",\r\n \"description\": \"跳过一个磁道\",\r\n \"examples\": \"跳到下一首歌曲;播放下一首歌曲\"\r\n },\r\n {\r\n \"name\": \"上一首\",\r\n \"description\": \"跳过轨道 \",\r\n \"examples\": \"播放上一首歌曲;回到以前的轨道\"\r\n },\r\n {\r\n \"name\": \"停止\",\r\n \"description\": \"停止有关音乐的播放动作\",\r\n \"examples\": \"停止播放这张专辑\"\r\n },\r\n {\r\n \"name\": \"解除静音\",\r\n \"description\": \"解除音乐播放静音状态\",\r\n \"examples\": \"解除静音\"\r\n },\r\n {\r\n \"name\": \"静音\",\r\n \"description\": \"音乐静音\",\r\n \"examples\": \"静音音乐;暂时让设备静音;乐曲静音\"\r\n },\r\n {\r\n \"name\": \"暂停\",\r\n \"description\": \"暂停音乐播放\",\r\n \"examples\": \"暂停;暂停音乐播放;暂停音乐轨道\"\r\n },\r\n {\r\n \"name\": \"继续\",\r\n \"description\": \"继续播放音乐\",\r\n \"examples\": \"继续音乐;再一次播放音乐;去除暂停\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"艺术家名\",\r\n \"description\": \"演员、导演、作家、音乐家等艺术家的名称\",\r\n \"examples\": \"爱丽丝;泰勒斯威夫特;阿黛尔;莫扎特\"\r\n },\r\n {\r\n \"name\": \"风格\",\r\n \"description\": \"音乐风格类型\",\r\n \"examples\": \"乡村音乐;百老汇经典;播放巴洛克古典音乐\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"笔记\",\r\n \"culture\": \"zh-cn\",\r\n \"description\": \"笔记主题提供记录、查询和修改笔记相关的意图和实体\",\r\n \"examples\": \"在我的杂货笔记中加入生菜、番茄、面包和咖啡;从我的杂货单清除香蕉;从我的假期清单中删除所有项目\",\r\n \"intents\": [\r\n {\r\n \"name\": \"加入记录\",\r\n \"description\": \"在笔记中加入信息\",\r\n \"examples\": \"在我的杂货笔记中加入生菜、番茄、面包和咖啡;加入到我的待办事项;在我的愿望单中加入蛋糕\"\r\n },\r\n {\r\n \"name\": \"创建\",\r\n \"description\": \"创建新的笔记\",\r\n \"examples\": \"创建一个新的列表;记录提醒我杰克会在五月第一周来到城镇\"\r\n },\r\n {\r\n \"name\": \"删除\",\r\n \"description\": \"删除笔记\",\r\n \"examples\": \"删除假日笔记;删除我的杂货笔记\"\r\n },\r\n {\r\n \"name\": \"删除项目\",\r\n \"description\": \"删除笔记中的项目\",\r\n \"examples\": \"删除杂货笔记中的奶酪项;Remove pens from my school shopping list\"\r\n },\r\n {\r\n \"name\": \"朗读\",\r\n \"description\": \"朗读列表\",\r\n \"examples\": \"朗读第一个;朗读细节\"\r\n },\r\n {\r\n \"name\": \"显示下一项\",\r\n \"description\": \"显示笔记列表的下一项\",\r\n \"examples\": \"显示下一个;下一页;之后的一项\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"笔记文本\",\r\n \"description\": \"笔记文本内容\",\r\n \"examples\": \"运动之前进行拉伸;明天长跑\"\r\n },\r\n {\r\n \"name\": \"题目\",\r\n \"description\": \"笔记题目\",\r\n \"examples\": \"杂物;联系人列表;待办事项\"\r\n },\r\n {\r\n \"name\": \"笔记数据源\",\r\n \"description\": \"笔记所在位置\",\r\n \"examples\": \"微软笔记;谷歌文档;我的电脑\"\r\n },\r\n {\r\n \"name\": \"数据类型\",\r\n \"description\": \"文档类型\",\r\n \"examples\": \"演示文稿;电子表格;工作表\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"设备控制\",\r\n \"culture\": \"zh-cn\",\r\n \"description\": \"设备控制主题包含控制设备的意图和实体\",\r\n \"examples\": \"关闭视频播放器;取消播放;能让显示器屏幕亮一些吗?\",\r\n \"intents\": [\r\n {\r\n \"name\": \"在听吗\",\r\n \"description\": \"询问装置是否在线\",\r\n \"examples\": \"在线吗?;你在听吗?\"\r\n },\r\n {\r\n \"name\": \"关闭应用\",\r\n \"description\": \"关闭应用\",\r\n \"examples\": \"关闭视频播放器\"\r\n },\r\n {\r\n \"name\": \"回退\",\r\n \"description\": \"回退一个步骤或到之前状态\",\r\n \"examples\": \"回到上一个步骤\"\r\n },\r\n {\r\n \"name\": \"帮助\",\r\n \"description\": \"请求帮助\",\r\n \"examples\": \"请求帮助;你可以帮我做什么?;我需要帮助\"\r\n },\r\n {\r\n \"name\": \"定位设备\",\r\n \"description\": \"定位设备\",\r\n \"examples\": \"帮我定位我的手机;寻找托尼的iphone;寻找我的电话\"\r\n },\r\n {\r\n \"name\": \"登录\",\r\n \"description\": \"登录装置服务\",\r\n \"examples\": \"请登录;登陆脸谱网;登陆微软\"\r\n },\r\n {\r\n \"name\": \"登出\",\r\n \"description\": \"等处装置服务\",\r\n \"examples\": \"从手机中登出;登出\"\r\n },\r\n {\r\n \"name\": \"打开应用\",\r\n \"description\": \"从设备中打开应用\",\r\n \"examples\": \"请打开闹钟;打开照相机;运行日历应用\"\r\n },\r\n {\r\n \"name\": \"打开设置\",\r\n \"description\": \"打开设备设置\",\r\n \"examples\": \"打开网络设置\"\r\n },\r\n {\r\n \"name\": \"关机\",\r\n \"description\": \"关闭设备\",\r\n \"examples\": \"请帮我关闭电脑;关机;关闭手机\"\r\n },\r\n {\r\n \"name\": \"查询电量\",\r\n \"description\": \"获得电池信息\",\r\n \"examples\": \"告诉我现在电量\"\r\n },\r\n {\r\n \"name\": \"重启\",\r\n \"description\": \"重新启动设备\",\r\n \"examples\": \"请重启电脑\"\r\n },\r\n {\r\n \"name\": \"设备响铃\",\r\n \"description\": \"让设备响铃\",\r\n \"examples\": \"让我的电话响铃\"\r\n },\r\n {\r\n \"name\": \"显示上下文菜单\",\r\n \"description\": \"显示上下文菜单\",\r\n \"examples\": \"请显示上下文菜单;请为我显示上下文菜单\"\r\n },\r\n {\r\n \"name\": \"休眠\",\r\n \"description\": \"设备休眠\",\r\n \"examples\": \"休眠;电脑休眠\"\r\n },\r\n {\r\n \"name\": \"切换应用\",\r\n \"description\": \"切换设备应用\",\r\n \"examples\": \"切换到音乐播放器\"\r\n },\r\n {\r\n \"name\": \"降低亮度\",\r\n \"description\": \"降低设备亮度\",\r\n \"examples\": \"屏幕变暗\"\r\n },\r\n {\r\n \"name\": \"关闭设备\",\r\n \"description\": \"关闭设备\",\r\n \"examples\": \"关闭蓝牙;断开显示器\"\r\n },\r\n {\r\n \"name\": \"开启设备\",\r\n \"description\": \"使设置中的项目开启\",\r\n \"examples\": \"打开蓝牙;打开WIFI网络\"\r\n },\r\n {\r\n \"name\": \"增加亮度\",\r\n \"description\": \"增加设备亮度\",\r\n \"examples\": \"可以让显示器变亮点吗?\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"应用名\",\r\n \"description\": \"应用的名称\",\r\n \"examples\": \"微信;支付宝\"\r\n },\r\n {\r\n \"name\": \"设备种类\",\r\n \"description\": \"设备种类\",\r\n \"examples\": \"电话;平板电脑;个人电脑\"\r\n },\r\n {\r\n \"name\": \"设置类别\",\r\n \"description\": \"设置类别\",\r\n \"examples\": \"无线网络;颜色种类;通知中心\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"地点\",\r\n \"culture\": \"zh-cn\",\r\n \"description\": \"地点主题提供处理与企业机构、餐馆等公共场所地址相关的查询的意图\",\r\n \"examples\": \"收藏这个位置;假日酒店还有多远?;百货大厦什么时候关门?\",\r\n \"intents\": [\r\n {\r\n \"name\": \"添加到收藏\",\r\n \"description\": \"加入到用户的收藏夹中\",\r\n \"examples\": \"将这个地点加入的我的收藏夹中\"\r\n },\r\n {\r\n \"name\": \"检查事故\",\r\n \"description\": \"询问地点是否有事故\",\r\n \"examples\": \"880路上有事故吗?\"\r\n },\r\n {\r\n \"name\": \"查询区域交通\",\r\n \"description\": \"检查地点交通状况\",\r\n \"examples\": \"西雅图交通状况\"\r\n },\r\n {\r\n \"name\": \"记录地点\",\r\n \"description\": \"记录地点\",\r\n \"examples\": \"记录当前我的位置\"\r\n },\r\n {\r\n \"name\": \"确认\",\r\n \"description\": \"确认地点相关的动作\",\r\n \"examples\": \"确认我预定的餐厅\"\r\n },\r\n {\r\n \"name\": \"查询地点\",\r\n \"description\": \"查询某一地点\",\r\n \"examples\": \"附近最近的餐厅是哪一家\"\r\n },\r\n {\r\n \"name\": \"查询地址\",\r\n \"description\": \"查询地点地址\",\r\n \"examples\": \"告诉我最近的星巴克地址\"\r\n },\r\n {\r\n \"name\": \"查询距离\",\r\n \"description\": \"查询到某一地点的距离\",\r\n \"examples\": \"请问到北大图书馆有多远?\"\r\n },\r\n {\r\n \"name\": \"查询运营时间\",\r\n \"description\": \"查询地点的运营时间\",\r\n \"examples\": \"请问地铁的营运时间是多少?\"\r\n },\r\n {\r\n \"name\": \"查询菜单\",\r\n \"description\": \"查询餐厅的菜单\",\r\n \"examples\": \"请告诉我全聚德的菜单\"\r\n },\r\n {\r\n \"name\": \"查询电话号码\",\r\n \"description\": \"查询地点的电话号码\",\r\n \"examples\": \"最近的星巴克电话号码是多少?\"\r\n },\r\n {\r\n \"name\": \"查询评论\",\r\n \"description\": \"查询地点的评论\",\r\n \"examples\": \"查询这家餐厅的评论\"\r\n },\r\n {\r\n \"name\": \"导航\",\r\n \"description\": \"查询地点的方向\",\r\n \"examples\": \"如何步行到天安门广场?\"\r\n },\r\n {\r\n \"name\": \"查询评级\",\r\n \"description\": \"查询地点评价分数\",\r\n \"examples\": \"请问这家餐厅的评分是多少?\"\r\n },\r\n {\r\n \"name\": \"查询公交\",\r\n \"description\": \"查询公交时刻\",\r\n \"examples\": \"请问下次公交什么时候到达?\"\r\n },\r\n {\r\n \"name\": \"查询出行时间\",\r\n \"description\": \"询问到指定地点的出行时间\",\r\n \"examples\": \"请问还有多久到达中关村?\"\r\n },\r\n {\r\n \"name\": \"打电话\",\r\n \"description\": \"打电话\",\r\n \"examples\": \"请给安娜打一个电话\"\r\n },\r\n {\r\n \"name\": \"预定位置\",\r\n \"description\": \"预定位置\",\r\n \"examples\": \"预定这家餐厅明晚的桌位\"\r\n },\r\n {\r\n \"name\": \"查询评分\",\r\n \"description\": \"查询某一地点的评分\",\r\n \"examples\": \"请问这家餐厅的推荐评分是多少?\"\r\n },\r\n {\r\n \"name\": \"朗读\",\r\n \"description\": \"朗读地点列表\",\r\n \"examples\": \"请为我朗读餐厅信息\"\r\n },\r\n {\r\n \"name\": \"选择项目\",\r\n \"description\": \"选择地点相关选项\",\r\n \"examples\": \"选择第一项\"\r\n },\r\n {\r\n \"name\": \"显示地图\",\r\n \"description\": \"显示区域地图\",\r\n \"examples\": \"显示北京地图\"\r\n },\r\n {\r\n \"name\": \"显示下一项\",\r\n \"description\": \"显示下一个选项\",\r\n \"examples\": \"显示下一页\"\r\n },\r\n {\r\n \"name\": \"重新开始\",\r\n \"description\": \"重新启动应用\",\r\n \"examples\": \"重启\"\r\n },\r\n {\r\n \"name\": \"预定餐厅查询\",\r\n \"description\": \"询问餐厅预定情况\",\r\n \"examples\": \"这家餐厅是否能够预定?\"\r\n },\r\n {\r\n \"name\": \"查询导航路线\",\r\n \"description\": \"查询导航路线\",\r\n \"examples\": \"告诉我怎么样去北京;如何去西雅图?\"\r\n },\r\n {\r\n \"name\": \"获得价格范围\",\r\n \"description\": \"获得价格范围\",\r\n \"examples\": \"必胜客很便宜吗?;今天全聚德有折扣吗?\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"具体地址\",\r\n \"description\": \"地址信息\",\r\n \"examples\": \"丹棱街5号\"\r\n },\r\n {\r\n \"name\": \"目的地地址\",\r\n \"description\": \"目的地地址\",\r\n \"examples\": \"善缘街\"\r\n },\r\n {\r\n \"name\": \"目的地名称\",\r\n \"description\": \"目的地名称\",\r\n \"examples\": \"中关村地铁站\"\r\n },\r\n {\r\n \"name\": \"目的地类别\",\r\n \"description\": \"目的地类别 \",\r\n \"examples\": \"咖啡厅;电影院\"\r\n },\r\n {\r\n \"name\": \"餐点类别\",\r\n \"description\": \"餐点类别,如早餐、晚餐\",\r\n \"examples\": \"早餐;晚餐\"\r\n },\r\n {\r\n \"name\": \"营业状态\",\r\n \"description\": \"地点的运营状态\",\r\n \"examples\": \"开门;关闭\"\r\n },\r\n {\r\n \"name\": \"地点名称\",\r\n \"description\": \"地点名称\",\r\n \"examples\": \"必胜客;\"\r\n },\r\n {\r\n \"name\": \"地点类别\",\r\n \"description\": \"地点类别\",\r\n \"examples\": \"咖啡厅;电影院\"\r\n },\r\n {\r\n \"name\": \"交通类别\",\r\n \"description\": \"交通类别\",\r\n \"examples\": \"公交;火车\"\r\n },\r\n {\r\n \"name\": \"地点设施\",\r\n \"description\": \"地点的设施\",\r\n \"examples\": \"儿童座椅;停车位\"\r\n },\r\n {\r\n \"name\": \"地点环境\",\r\n \"description\": \"地点的环境.\",\r\n \"examples\": \"运动型场地;\"\r\n },\r\n {\r\n \"name\": \"地点美食\",\r\n \"description\": \"地点的美食\",\r\n \"examples\": \"意大利菜;火锅\"\r\n },\r\n {\r\n \"name\": \"地点距离\",\r\n \"description\": \"地点的距离\",\r\n \"examples\": \"15公里;200米\"\r\n },\r\n {\r\n \"name\": \"推荐线路\",\r\n \"description\": \"推荐线路\",\r\n \"examples\": \"三环\"\r\n },\r\n {\r\n \"name\": \"地点产品\",\r\n \"description\": \"地点提供的产品信息\",\r\n \"examples\": \"新鲜鱼类\"\r\n },\r\n {\r\n \"name\": \"公共交通路线\",\r\n \"description\": \"公共交通线路\",\r\n \"examples\": \"公交300\"\r\n },\r\n {\r\n \"name\": \"地点评级\",\r\n \"description\": \"地点评级\",\r\n \"examples\": \"3颗星\"\r\n },\r\n {\r\n \"name\": \"服务提供\",\r\n \"description\": \"地点所提供的服务\",\r\n \"examples\": \"理发;美容\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"提醒\",\r\n \"culture\": \"zh-cn\",\r\n \"description\": \"提醒主题提供创建、修改和查询提醒的意图和实体\",\r\n \"examples\": \"把面试时间改成明早九点;提醒我回家时购买牛奶;检查下我是否有关于李斯生日的提醒\",\r\n \"intents\": [\r\n {\r\n \"name\": \"更改提醒\",\r\n \"description\": \"更改提醒\",\r\n \"examples\": \"更改我的面试到明早九点;移动这个提示到已完成\"\r\n },\r\n {\r\n \"name\": \"创建提醒\",\r\n \"description\": \"创建提醒\",\r\n \"examples\": \"创建一个提醒;提醒我购买牛奶;提醒我回家的时候给艾莉打电话\"\r\n },\r\n {\r\n \"name\": \"删除提醒\",\r\n \"description\": \"删除提醒\",\r\n \"examples\": \"删除我的图片提醒;删除这个提醒\"\r\n },\r\n {\r\n \"name\": \"查询提醒\",\r\n \"description\": \"查询提醒\",\r\n \"examples\": \"我有关于周年庆的提醒吗?;能够帮我查询关于克里斯生日的提醒吗?\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"提醒文本\",\r\n \"description\": \"提醒描述文本\",\r\n \"examples\": \"将干洗店的衣服拿回来\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"餐厅\",\r\n \"culture\": \"zh-cn\",\r\n \"description\": \"餐厅主题提供管理餐厅预定的意图和实体\",\r\n \"examples\": \"今晚保留卓卡餐厅的两人位置;预定一个明天北京餐厅的位置;预定保罗餐厅晚上七点的三人桌位\",\r\n \"intents\": [\r\n {\r\n \"name\": \"预定位置\",\r\n \"description\": \"预定位置\",\r\n \"examples\": \"预定这个餐厅明晚的位置;预定明天11点20人的餐位\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"具体地址\",\r\n \"description\": \"餐厅地址\",\r\n \"examples\": \"丹棱街五号;北京西\"\r\n },\r\n {\r\n \"name\": \"地点设施\",\r\n \"description\": \"餐厅场所的设施\",\r\n \"examples\": \"海景;无烟区\"\r\n },\r\n {\r\n \"name\": \"地点环境\",\r\n \"description\": \"餐厅环境信息\",\r\n \"examples\": \"浪漫的;适合团队聚餐\"\r\n },\r\n {\r\n \"name\": \"地点美食\",\r\n \"description\": \"餐厅美食种类\",\r\n \"examples\": \"川菜;西餐;意大利餐\"\r\n },\r\n {\r\n \"name\": \"餐点类别\",\r\n \"description\": \"餐品类别如早餐\",\r\n \"examples\": \"早餐;晚餐;\"\r\n },\r\n {\r\n \"name\": \"地点名称\",\r\n \"description\": \"地点名称\",\r\n \"examples\": \"必胜客;东来顺\"\r\n },\r\n {\r\n \"name\": \"地点类别\",\r\n \"description\": \"地点类别\",\r\n \"examples\": \"餐厅;饭店;歌剧院\"\r\n },\r\n {\r\n \"name\": \"地点评级\",\r\n \"description\": \"餐厅的评级\",\r\n \"examples\": \"5颗星\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"出租车\",\r\n \"culture\": \"zh-cn\",\r\n \"description\": \"出租车主题提供创建和管理预定出租车服务的意图和实体\",\r\n \"examples\": \"帮我预定下午三点的出租车;我还要等待出租车多久?;取消优步预定\",\r\n \"intents\": [\r\n {\r\n \"name\": \"预定\",\r\n \"description\": \"预定出租车\",\r\n \"examples\": \"寻找一辆出租车;\"\r\n },\r\n {\r\n \"name\": \"取消\",\r\n \"description\": \"取消预订的出租车\",\r\n \"examples\": \"取消我的出租车\"\r\n },\r\n {\r\n \"name\": \"查询\",\r\n \"description\": \"查询出租车路线\",\r\n \"examples\": \"出租车距离我还有多远;我的出租车在哪?\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"具体地址\",\r\n \"description\": \"目标地址\",\r\n \"examples\": \"丹棱街5号\"\r\n },\r\n {\r\n \"name\": \"目的地名称\",\r\n \"description\": \"目的地名称\",\r\n \"examples\": \"微软大厦;家乐福超市\"\r\n },\r\n {\r\n \"name\": \"地点名称\",\r\n \"description\": \"地点名称\",\r\n \"examples\": \"中央公园\"\r\n },\r\n {\r\n \"name\": \"地点类别\",\r\n \"description\": \"地点类别\",\r\n \"examples\": \"餐厅;剧院\"\r\n },\r\n {\r\n \"name\": \"交通公司\",\r\n \"description\": \"交通公司\",\r\n \"examples\": \"北京地铁\"\r\n },\r\n {\r\n \"name\": \"交通类别\",\r\n \"description\": \"交通类别\",\r\n \"examples\": \"公交;火车\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"翻译\",\r\n \"culture\": \"zh-cn\",\r\n \"description\": \"翻译主题提供翻译语言相关的意图和实体\",\r\n \"examples\": \"翻译成法语;把你好翻译成德语;翻译这句话为英语\",\r\n \"intents\": [\r\n {\r\n \"name\": \"翻译\",\r\n \"description\": \"翻译到另一种语言\",\r\n \"examples\": \"翻译成法语;翻译成德语\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"目标语言\",\r\n \"description\": \"目标语言\",\r\n \"examples\": \"法语;德语;韩语\"\r\n },\r\n {\r\n \"name\": \"文本\",\r\n \"description\": \"翻译文本\",\r\n \"examples\": \"你好;早上好\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"天气\",\r\n \"culture\": \"zh-cn\",\r\n \"description\": \"天气主题提供获取天气报告和预测信息\",\r\n \"examples\": \"九月份伦敦的天气怎么样?;告诉我这十天的天气预测信息;印度九月份的平均温度是多少?\",\r\n \"intents\": [\r\n {\r\n \"name\": \"查询天气\",\r\n \"description\": \"查询历史天气\",\r\n \"examples\": \"九月份北京天气如何?\"\r\n },\r\n {\r\n \"name\": \"天气预测\",\r\n \"description\": \"获得未来天气预测\",\r\n \"examples\": \"周末的天气怎么样?;今天的天气如何?\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"地点\",\r\n \"description\": \"天气涉及的地点信息\",\r\n \"examples\": \"北京;上海\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"网页导航\",\r\n \"culture\": \"zh-cn\",\r\n \"description\": \"网页导航主题提供与网页导航相关的意图和实体\",\r\n \"examples\": \"导航到必应搜索;查看新浪微博;导航到www.bing.com\",\r\n \"intents\": [\r\n {\r\n \"name\": \"网页导航\",\r\n \"description\": \"导航到目标网站页面\",\r\n \"examples\": \"导航到必应搜索;导航到微博\"\r\n }\r\n ],\r\n \"entities\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"name\": \"Calendar\",\r\n \"culture\": \"zh-cn\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"提供日历领域的意图和实体识别,包括增加、删除、修改邀约,查询参会人的可约状态,以及查找有关日历事件的信息。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AcceptEventEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckAvailability\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ConnectToMeeting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactMeetingAttendees\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CreateCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarDetail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindCalendarWho\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindDuration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindMeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TimeRemaining\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Duration\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MeetingRoom\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveEarlierTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MoveLaterTimeSpan\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalEndTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OriginalStartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SlotAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Subject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DestinationCalendar\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"personName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Subject.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Communication\",\r\n \"culture\": \"zh-cn\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"提供通讯领域的意图和实体识别,包括发送短信和拨打电话等。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Answer\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AssignContactNickname\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CallVoiceMail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckIMStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Dial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EndCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindContact\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetForwardingsStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetNotifications\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Ignore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"IgnoreWithMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PressKey\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Redial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendMessage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetSpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnForwardingOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnSpeakerOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AudioDeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactAttribute\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DestinationPhone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Key\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MessageType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SpeedDial\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"email\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"phoneNumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject.any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message.any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Email\",\r\n \"culture\": \"zh-cn\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"提供邮件领域的意图和实体识别,包括发送、回复邮件,以及标记邮件等。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFlag\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"AddMore\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Forward\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryLastText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reply\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchMessages\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SendEmail\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Attachment\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Category\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ContactName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Date\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailAddress\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FromRelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Line\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PositionReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RelationshipName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SenderName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"EmailSubject.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Message.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchTexts.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"HomeAutomation\",\r\n \"culture\": \"zh-cn\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"提供智能家居领域的意图和实体识别,包括对灯、空调等智能家居设备的控制。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"QueryState\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SetDevice\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnDown\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOff\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnOn\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TurnUp\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumericalChange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Setting\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Unit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeviceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeviceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SettingType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Note\",\r\n \"culture\": \"zh-cn\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"提供记事本领域的意图和实体识别,包括创建、编辑及查找记事本中的各项任务。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToNote\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ChangeTitle\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Clear\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Close\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Create\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Delete\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Open\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RemoveSentence\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"CreationDate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OrderReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Text\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Title\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Quantifier\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Places\",\r\n \"culture\": \"zh-cn\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"提供场所领域的意图和实体识别,处理与企业、机构、餐馆、公共场所和地址等地点相关的查询。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddFavoritePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindPlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetAddress\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetDistance\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetHours\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetMenu\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPhoneNumber\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetPriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetReviews\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetStarRating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MakeCall\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"RatePlace\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"AbsoluteLocation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Amenities\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PriceRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Product\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Nearby\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"OpenStatus\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"dimension\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"RestaurantReservation\",\r\n \"culture\": \"zh-cn\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"提供餐馆预定领域的意图和实体识别,包括对预定桌位、修改或取消餐馆预定的任务处理。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteReservation\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationEntry\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhen\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FindReservationWhere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reserve\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"Address\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cuisine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"NumberPeople\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Rating\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Time\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Atmosphere\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MealType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"PlaceName.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"ToDo\",\r\n \"culture\": \"zh-cn\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"提供待办事项领域的意图和实体识别,用于处理任务列表的请求。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"AddToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"DeleteToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"MarkToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNextPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPreviousPage\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowToDo\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"ContainsAll\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ListType\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TaskContent\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"TaskContent.Any\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Utilities\",\r\n \"culture\": \"zh-cn\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"通用领域提供可用于多个领域的通用意图和实体,例如“帮助”、“重复”、“上一页/下一页”等。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"Cancel\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Confirm\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Escalate\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"FinishTask\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GoBack\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Help\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ReadAloud\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Reject\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Repeat\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectAny\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectItem\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SelectNone\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowNext\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"ShowPrevious\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"StartOver\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Stop\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"DirectionalReference\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Number\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Ordinal\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Weather\",\r\n \"culture\": \"zh-cn\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"提供天气领域的意图和实体识别,包括查询天气、获取天气预报等。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"ChangeTemperatureUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherTime\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"CheckWeatherValue\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"GetWeatherAdvisory\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"QueryWeather\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"AdditionalWeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Historic\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"Location\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SuitableFor\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WeatherCondition\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WeatherRange\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"WindDirectionUnit\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"datetimeV2\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"dimension\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"temperature\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"Web\",\r\n \"culture\": \"zh-cn\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"description\": \"提供网页领域的意图和实体识别,用于导航到指定网站。\",\r\n \"examples\": \"-\",\r\n \"intents\": [\r\n {\r\n \"name\": \"WebSearch\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"SearchText\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"SearchEngine\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n },\r\n {\r\n \"name\": \"url\",\r\n \"description\": \"-\",\r\n \"examples\": \"-\"\r\n }\r\n ]\r\n }\r\n]", "StatusCode": 200 } ], diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListDomains.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListDomains.json index b1bad825fce1..00aedd57854c 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListDomains.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListDomains.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/domains", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9kb21haW5z", + "RequestUri": "/luis/authoring/v3.0-preview/apps/domains", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2RvbWFpbnM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -24,10 +24,10 @@ "no-cache" ], "Apim-Request-Id": [ - "33ce6c84-2542-4e7f-a080-4418a289ac7b" + "511aa20c-8b4c-4fb7-a0ea-2ed610fcf518" ], "Request-Id": [ - "33ce6c84-2542-4e7f-a080-4418a289ac7b" + "511aa20c-8b4c-4fb7-a0ea-2ed610fcf518" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -42,7 +42,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:46 GMT" + "Tue, 29 Oct 2019 13:17:00 GMT" ], "Content-Length": [ "424" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListEndpoints.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListEndpoints.json index 72eb6bcdcb55..0e9f32ad9901 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListEndpoints.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListEndpoints.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"culture\": \"en-us\",\r\n \"domain\": \"Comics\",\r\n \"description\": \"New LUIS App\",\r\n \"usageScenario\": \"IoT\",\r\n \"name\": \"LUIS App for endpoint test\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/80199d02-be52-4541-995f-a1c5c22a6bd7" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/80f9dabc-bd86-4688-9858-8e1cf167966d" ], "Apim-Request-Id": [ - "e62933c2-f744-4653-9177-484fbc08930e" + "e972b26a-2324-4a8d-9a78-b3b99c8042a1" ], "Request-Id": [ - "e62933c2-f744-4653-9177-484fbc08930e" + "e972b26a-2324-4a8d-9a78-b3b99c8042a1" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/80199d02-be52-4541-995f-a1c5c22a6bd7" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/80f9dabc-bd86-4688-9858-8e1cf167966d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:34 GMT" + "Tue, 29 Oct 2019 13:16:52 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"80199d02-be52-4541-995f-a1c5c22a6bd7\"", + "ResponseBody": "\"80f9dabc-bd86-4688-9858-8e1cf167966d\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/80199d02-be52-4541-995f-a1c5c22a6bd7/endpoints", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy84MDE5OWQwMi1iZTUyLTQ1NDEtOTk1Zi1hMWM1YzIyYTZiZDcvZW5kcG9pbnRz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/80f9dabc-bd86-4688-9858-8e1cf167966d/endpoints", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzgwZjlkYWJjLWJkODYtNDY4OC05ODU4LThlMWNmMTY3OTY2ZC9lbmRwb2ludHM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "52306b28-00ed-4d2e-b287-3c3d08d3967a" + "f1b44f09-19fd-49e7-9658-00b15bf1161c" ], "Request-Id": [ - "52306b28-00ed-4d2e-b287-3c3d08d3967a" + "f1b44f09-19fd-49e7-9658-00b15bf1161c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:35 GMT" + "Tue, 29 Oct 2019 13:16:53 GMT" ], "Content-Length": [ "1957" @@ -117,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"westus\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/80199d02-be52-4541-995f-a1c5c22a6bd7\",\r\n \"eastus2\": \"https://eastus2.api.cognitive.microsoft.com/luis/v2.0/apps/80199d02-be52-4541-995f-a1c5c22a6bd7\",\r\n \"westcentralus\": \"https://westcentralus.api.cognitive.microsoft.com/luis/v2.0/apps/80199d02-be52-4541-995f-a1c5c22a6bd7\",\r\n \"southeastasia\": \"https://southeastasia.api.cognitive.microsoft.com/luis/v2.0/apps/80199d02-be52-4541-995f-a1c5c22a6bd7\",\r\n \"southcentralus\": \"https://southcentralus.api.cognitive.microsoft.com/luis/v2.0/apps/80199d02-be52-4541-995f-a1c5c22a6bd7\",\r\n \"westus2\": \"https://westus2.api.cognitive.microsoft.com/luis/v2.0/apps/80199d02-be52-4541-995f-a1c5c22a6bd7\",\r\n \"eastus\": \"https://eastus.api.cognitive.microsoft.com/luis/v2.0/apps/80199d02-be52-4541-995f-a1c5c22a6bd7\",\r\n \"eastasia\": \"https://eastasia.api.cognitive.microsoft.com/luis/v2.0/apps/80199d02-be52-4541-995f-a1c5c22a6bd7\",\r\n \"brazilsouth\": \"https://brazilsouth.api.cognitive.microsoft.com/luis/v2.0/apps/80199d02-be52-4541-995f-a1c5c22a6bd7\",\r\n \"japaneast\": \"https://japaneast.api.cognitive.microsoft.com/luis/v2.0/apps/80199d02-be52-4541-995f-a1c5c22a6bd7\",\r\n \"koreacentral\": \"https://koreacentral.api.cognitive.microsoft.com/luis/v2.0/apps/80199d02-be52-4541-995f-a1c5c22a6bd7\",\r\n \"canadacentral\": \"https://canadacentral.api.cognitive.microsoft.com/luis/v2.0/apps/80199d02-be52-4541-995f-a1c5c22a6bd7\",\r\n \"centralindia\": \"https://centralindia.api.cognitive.microsoft.com/luis/v2.0/apps/80199d02-be52-4541-995f-a1c5c22a6bd7\",\r\n \"centralus\": \"https://centralus.api.cognitive.microsoft.com/luis/v2.0/apps/80199d02-be52-4541-995f-a1c5c22a6bd7\",\r\n \"northcentralus\": \"https://northcentralus.api.cognitive.microsoft.com/luis/v2.0/apps/80199d02-be52-4541-995f-a1c5c22a6bd7\",\r\n \"japanwest\": \"https://japanwest.api.cognitive.microsoft.com/luis/v2.0/apps/80199d02-be52-4541-995f-a1c5c22a6bd7\",\r\n \"southafricanorth\": \"https://southafricanorth.api.cognitive.microsoft.com/luis/v2.0/apps/80199d02-be52-4541-995f-a1c5c22a6bd7\"\r\n}", + "ResponseBody": "{\r\n \"westus\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/80f9dabc-bd86-4688-9858-8e1cf167966d\",\r\n \"eastus2\": \"https://eastus2.api.cognitive.microsoft.com/luis/v2.0/apps/80f9dabc-bd86-4688-9858-8e1cf167966d\",\r\n \"westcentralus\": \"https://westcentralus.api.cognitive.microsoft.com/luis/v2.0/apps/80f9dabc-bd86-4688-9858-8e1cf167966d\",\r\n \"southeastasia\": \"https://southeastasia.api.cognitive.microsoft.com/luis/v2.0/apps/80f9dabc-bd86-4688-9858-8e1cf167966d\",\r\n \"southcentralus\": \"https://southcentralus.api.cognitive.microsoft.com/luis/v2.0/apps/80f9dabc-bd86-4688-9858-8e1cf167966d\",\r\n \"westus2\": \"https://westus2.api.cognitive.microsoft.com/luis/v2.0/apps/80f9dabc-bd86-4688-9858-8e1cf167966d\",\r\n \"eastus\": \"https://eastus.api.cognitive.microsoft.com/luis/v2.0/apps/80f9dabc-bd86-4688-9858-8e1cf167966d\",\r\n \"eastasia\": \"https://eastasia.api.cognitive.microsoft.com/luis/v2.0/apps/80f9dabc-bd86-4688-9858-8e1cf167966d\",\r\n \"brazilsouth\": \"https://brazilsouth.api.cognitive.microsoft.com/luis/v2.0/apps/80f9dabc-bd86-4688-9858-8e1cf167966d\",\r\n \"japaneast\": \"https://japaneast.api.cognitive.microsoft.com/luis/v2.0/apps/80f9dabc-bd86-4688-9858-8e1cf167966d\",\r\n \"koreacentral\": \"https://koreacentral.api.cognitive.microsoft.com/luis/v2.0/apps/80f9dabc-bd86-4688-9858-8e1cf167966d\",\r\n \"canadacentral\": \"https://canadacentral.api.cognitive.microsoft.com/luis/v2.0/apps/80f9dabc-bd86-4688-9858-8e1cf167966d\",\r\n \"centralindia\": \"https://centralindia.api.cognitive.microsoft.com/luis/v2.0/apps/80f9dabc-bd86-4688-9858-8e1cf167966d\",\r\n \"centralus\": \"https://centralus.api.cognitive.microsoft.com/luis/v2.0/apps/80f9dabc-bd86-4688-9858-8e1cf167966d\",\r\n \"northcentralus\": \"https://northcentralus.api.cognitive.microsoft.com/luis/v2.0/apps/80f9dabc-bd86-4688-9858-8e1cf167966d\",\r\n \"japanwest\": \"https://japanwest.api.cognitive.microsoft.com/luis/v2.0/apps/80f9dabc-bd86-4688-9858-8e1cf167966d\",\r\n \"southafricanorth\": \"https://southafricanorth.api.cognitive.microsoft.com/luis/v2.0/apps/80f9dabc-bd86-4688-9858-8e1cf167966d\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/80199d02-be52-4541-995f-a1c5c22a6bd7?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy84MDE5OWQwMi1iZTUyLTQ1NDEtOTk1Zi1hMWM1YzIyYTZiZDc/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/80f9dabc-bd86-4688-9858-8e1cf167966d?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzgwZjlkYWJjLWJkODYtNDY4OC05ODU4LThlMWNmMTY3OTY2ZD9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "c2c357b1-0f79-4b95-afba-06917974938a" + "52d93590-752d-483b-a855-651e00d4f326" ], "Request-Id": [ - "c2c357b1-0f79-4b95-afba-06917974938a" + "52d93590-752d-483b-a855-651e00d4f326" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:35 GMT" + "Tue, 29 Oct 2019 13:16:54 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListSupportedCultures.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListSupportedCultures.json index 48f02deff551..dde75b8f234f 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListSupportedCultures.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListSupportedCultures.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/cultures", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9jdWx0dXJlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/cultures", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2N1bHR1cmVz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -24,10 +24,10 @@ "no-cache" ], "Apim-Request-Id": [ - "37a94fd5-4e6a-4668-b09c-7f38aa156087" + "82c72ee9-16fa-416b-a294-1d48bf0ddc6d" ], "Request-Id": [ - "37a94fd5-4e6a-4668-b09c-7f38aa156087" + "82c72ee9-16fa-416b-a294-1d48bf0ddc6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -42,16 +42,16 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:34 GMT" + "Tue, 29 Oct 2019 13:17:05 GMT" ], "Content-Length": [ - "468" + "507" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"name\": \"English\",\r\n \"code\": \"en-us\"\r\n },\r\n {\r\n \"name\": \"Chinese\",\r\n \"code\": \"zh-cn\"\r\n },\r\n {\r\n \"name\": \"French\",\r\n \"code\": \"fr-fr\"\r\n },\r\n {\r\n \"name\": \"French Canadian\",\r\n \"code\": \"fr-ca\"\r\n },\r\n {\r\n \"name\": \"Spanish\",\r\n \"code\": \"es-es\"\r\n },\r\n {\r\n \"name\": \"Spanish Mexican\",\r\n \"code\": \"es-mx\"\r\n },\r\n {\r\n \"name\": \"Italian\",\r\n \"code\": \"it-it\"\r\n },\r\n {\r\n \"name\": \"German\",\r\n \"code\": \"de-de\"\r\n },\r\n {\r\n \"name\": \"Japanese\",\r\n \"code\": \"ja-jp\"\r\n },\r\n {\r\n \"name\": \"Brazilian Portuguese\",\r\n \"code\": \"pt-br\"\r\n },\r\n {\r\n \"name\": \"Korean\",\r\n \"code\": \"ko-kr\"\r\n },\r\n {\r\n \"name\": \"Dutch\",\r\n \"code\": \"nl-nl\"\r\n },\r\n {\r\n \"name\": \"Turkish\",\r\n \"code\": \"tr-tr\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"name\": \"English\",\r\n \"code\": \"en-us\"\r\n },\r\n {\r\n \"name\": \"Chinese\",\r\n \"code\": \"zh-cn\"\r\n },\r\n {\r\n \"name\": \"French\",\r\n \"code\": \"fr-fr\"\r\n },\r\n {\r\n \"name\": \"French Canadian\",\r\n \"code\": \"fr-ca\"\r\n },\r\n {\r\n \"name\": \"Spanish\",\r\n \"code\": \"es-es\"\r\n },\r\n {\r\n \"name\": \"Spanish Mexican\",\r\n \"code\": \"es-mx\"\r\n },\r\n {\r\n \"name\": \"Italian\",\r\n \"code\": \"it-it\"\r\n },\r\n {\r\n \"name\": \"German\",\r\n \"code\": \"de-de\"\r\n },\r\n {\r\n \"name\": \"Japanese\",\r\n \"code\": \"ja-jp\"\r\n },\r\n {\r\n \"name\": \"Brazilian Portuguese\",\r\n \"code\": \"pt-br\"\r\n },\r\n {\r\n \"name\": \"Korean\",\r\n \"code\": \"ko-kr\"\r\n },\r\n {\r\n \"name\": \"Dutch\",\r\n \"code\": \"nl-nl\"\r\n },\r\n {\r\n \"name\": \"Turkish\",\r\n \"code\": \"tr-tr\"\r\n },\r\n {\r\n \"name\": \"Hindi Indian\",\r\n \"code\": \"hi-in\"\r\n }\r\n]", "StatusCode": 200 } ], diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListUsageScenarios.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListUsageScenarios.json index 7bbceecf9b04..ffb3e79a813e 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListUsageScenarios.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/ListUsageScenarios.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/usagescenarios", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy91c2FnZXNjZW5hcmlvcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/usagescenarios", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL3VzYWdlc2NlbmFyaW9z", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -24,10 +24,10 @@ "no-cache" ], "Apim-Request-Id": [ - "9cb7e300-1d4c-4ea6-8769-0ad5e9c38710" + "d7a87a12-ae2f-4329-badf-d66fb337bf91" ], "Request-Id": [ - "9cb7e300-1d4c-4ea6-8769-0ad5e9c38710" + "d7a87a12-ae2f-4329-badf-d66fb337bf91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -42,7 +42,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:25 GMT" + "Tue, 29 Oct 2019 13:17:19 GMT" ], "Content-Length": [ "42" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/PublishApplication.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/PublishApplication.json index f2bfa11b7d56..ce3f04664ce6 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/PublishApplication.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/PublishApplication.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/publish", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvcHVibGlzaA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/publish", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi9wdWJsaXNo", "RequestMethod": "POST", "RequestBody": "{\r\n \"versionId\": \"0.1\",\r\n \"isStaging\": false\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,10 +30,10 @@ "no-cache" ], "Apim-Request-Id": [ - "3471da88-b92b-41c6-8c4a-5cd29fcfe59c" + "4291c9e9-d76e-46fa-b887-ed4c68ff1b8b" ], "Request-Id": [ - "3471da88-b92b-41c6-8c4a-5cd29fcfe59c" + "4291c9e9-d76e-46fa-b887-ed4c68ff1b8b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -48,7 +48,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:38 GMT" + "Tue, 29 Oct 2019 13:17:02 GMT" ], "Content-Length": [ "310" @@ -57,7 +57,7 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": \"westus\",\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-08-25T19:16:38Z\",\r\n \"failedRegions\": \"\"\r\n}", + "ResponseBody": "{\r\n \"versionId\": \"0.1\",\r\n \"directVersionPublish\": false,\r\n \"endpointUrl\": \"https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b\",\r\n \"isStaging\": false,\r\n \"assignedEndpointKey\": null,\r\n \"region\": \"westus\",\r\n \"endpointRegion\": \"westus\",\r\n \"publishedDateTime\": \"2019-10-29T13:17:03Z\",\r\n \"failedRegions\": \"\"\r\n}", "StatusCode": 201 } ], diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/UpdateApplication.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/UpdateApplication.json index 37aa4b71c5d8..649a00958816 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/UpdateApplication.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/UpdateApplication.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"culture\": \"en-us\",\r\n \"domain\": \"Comics\",\r\n \"description\": \"New LUIS App\",\r\n \"usageScenario\": \"IoT\",\r\n \"name\": \"LUIS App to be renamed\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/32f05068-4265-4e3a-a4ba-2b59800e4ab2" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/cb2c22a5-16bc-4f21-bb3f-aa7c1c8151d6" ], "Apim-Request-Id": [ - "33db8527-3622-42d2-916a-00f83c8f9b28" + "ca4b58fb-90c4-4450-9892-d3b28dc8dddd" ], "Request-Id": [ - "33db8527-3622-42d2-916a-00f83c8f9b28" + "ca4b58fb-90c4-4450-9892-d3b28dc8dddd" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/32f05068-4265-4e3a-a4ba-2b59800e4ab2" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/cb2c22a5-16bc-4f21-bb3f-aa7c1c8151d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:41 GMT" + "Tue, 29 Oct 2019 13:16:58 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"32f05068-4265-4e3a-a4ba-2b59800e4ab2\"", + "ResponseBody": "\"cb2c22a5-16bc-4f21-bb3f-aa7c1c8151d6\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/32f05068-4265-4e3a-a4ba-2b59800e4ab2", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMmYwNTA2OC00MjY1LTRlM2EtYTRiYS0yYjU5ODAwZTRhYjI=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/cb2c22a5-16bc-4f21-bb3f-aa7c1c8151d6", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2NiMmMyMmE1LTE2YmMtNGYyMS1iYjNmLWFhN2MxYzgxNTFkNg==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"LUIS App name updated\",\r\n \"description\": \"LUIS App description updated\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,10 +96,10 @@ "no-cache" ], "Apim-Request-Id": [ - "f2dd7121-c1e3-4c31-be53-6bf4250a8c13" + "b819cbfe-be8a-4b3d-bcf0-3fdc4575f536" ], "Request-Id": [ - "f2dd7121-c1e3-4c31-be53-6bf4250a8c13" + "b819cbfe-be8a-4b3d-bcf0-3fdc4575f536" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -114,7 +114,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:41 GMT" + "Tue, 29 Oct 2019 13:16:58 GMT" ], "Content-Length": [ "51" @@ -127,19 +127,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/32f05068-4265-4e3a-a4ba-2b59800e4ab2", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMmYwNTA2OC00MjY1LTRlM2EtYTRiYS0yYjU5ODAwZTRhYjI=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/cb2c22a5-16bc-4f21-bb3f-aa7c1c8151d6", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2NiMmMyMmE1LTE2YmMtNGYyMS1iYjNmLWFhN2MxYzgxNTFkNg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -150,10 +150,10 @@ "no-cache" ], "Apim-Request-Id": [ - "5038d98d-8b59-4d6d-996b-5736bdfefef6" + "aeacbbc3-0f41-4ea5-a017-221931c87710" ], "Request-Id": [ - "5038d98d-8b59-4d6d-996b-5736bdfefef6" + "aeacbbc3-0f41-4ea5-a017-221931c87710" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -168,7 +168,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:41 GMT" + "Tue, 29 Oct 2019 13:16:58 GMT" ], "Content-Length": [ "362" @@ -177,23 +177,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"32f05068-4265-4e3a-a4ba-2b59800e4ab2\",\r\n \"name\": \"LUIS App name updated\",\r\n \"description\": \"LUIS App description updated\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"IoT\",\r\n \"domain\": \"Comics\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-08-25T19:16:41Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-omsami@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"cb2c22a5-16bc-4f21-bb3f-aa7c1c8151d6\",\r\n \"name\": \"LUIS App name updated\",\r\n \"description\": \"LUIS App description updated\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"IoT\",\r\n \"domain\": \"Comics\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-10-29T13:16:59Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/32f05068-4265-4e3a-a4ba-2b59800e4ab2?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMmYwNTA2OC00MjY1LTRlM2EtYTRiYS0yYjU5ODAwZTRhYjI/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/cb2c22a5-16bc-4f21-bb3f-aa7c1c8151d6?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2NiMmMyMmE1LTE2YmMtNGYyMS1iYjNmLWFhN2MxYzgxNTFkNj9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "aa5275ec-8a34-4611-9fcd-d3a293a40932" + "e2f584ab-a5ea-426f-b337-d5efff9f8912" ], "Request-Id": [ - "aa5275ec-8a34-4611-9fcd-d3a293a40932" + "e2f584ab-a5ea-426f-b337-d5efff9f8912" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,7 +222,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:42 GMT" + "Tue, 29 Oct 2019 13:16:59 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/UpdatePublishSettings.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/UpdatePublishSettings.json index a2f939ed2e67..972f4e5ec89b 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/UpdatePublishSettings.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/UpdatePublishSettings.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"culture\": \"en-us\",\r\n \"domain\": \"Comics\",\r\n \"description\": \"New LUIS App\",\r\n \"usageScenario\": \"IoT\",\r\n \"name\": \"LUIS App for Settings test\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/f8672031-71dc-495f-82d8-9e4d3411531b" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/ef4e8daf-29ca-4dd4-b9ae-cab4f31c337d" ], "Apim-Request-Id": [ - "5e93b2f2-cade-4370-81c2-e4b734ec9d63" + "4994d455-52d2-454d-81a7-c6a0aa73922a" ], "Request-Id": [ - "5e93b2f2-cade-4370-81c2-e4b734ec9d63" + "4994d455-52d2-454d-81a7-c6a0aa73922a" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/f8672031-71dc-495f-82d8-9e4d3411531b" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/ef4e8daf-29ca-4dd4-b9ae-cab4f31c337d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:23 GMT" + "Tue, 29 Oct 2019 13:17:16 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"f8672031-71dc-495f-82d8-9e4d3411531b\"", + "ResponseBody": "\"ef4e8daf-29ca-4dd4-b9ae-cab4f31c337d\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/f8672031-71dc-495f-82d8-9e4d3411531b/publishsettings", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9mODY3MjAzMS03MWRjLTQ5NWYtODJkOC05ZTRkMzQxMTUzMWIvcHVibGlzaHNldHRpbmdz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/ef4e8daf-29ca-4dd4-b9ae-cab4f31c337d/publishsettings", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2VmNGU4ZGFmLTI5Y2EtNGRkNC1iOWFlLWNhYjRmMzFjMzM3ZC9wdWJsaXNoc2V0dGluZ3M=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sentimentAnalysis\": true,\r\n \"speech\": true,\r\n \"spellChecker\": true\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,10 +96,10 @@ "no-cache" ], "Apim-Request-Id": [ - "09a0f315-4686-4c3e-90d2-fd6b9be26fc9" + "b0aa2183-9fb7-4272-a0da-39cebc78187c" ], "Request-Id": [ - "09a0f315-4686-4c3e-90d2-fd6b9be26fc9" + "b0aa2183-9fb7-4272-a0da-39cebc78187c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -114,7 +114,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:23 GMT" + "Tue, 29 Oct 2019 13:17:16 GMT" ], "Content-Length": [ "51" @@ -127,19 +127,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/f8672031-71dc-495f-82d8-9e4d3411531b/publishsettings", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9mODY3MjAzMS03MWRjLTQ5NWYtODJkOC05ZTRkMzQxMTUzMWIvcHVibGlzaHNldHRpbmdz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/ef4e8daf-29ca-4dd4-b9ae-cab4f31c337d/publishsettings", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2VmNGU4ZGFmLTI5Y2EtNGRkNC1iOWFlLWNhYjRmMzFjMzM3ZC9wdWJsaXNoc2V0dGluZ3M=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -150,10 +150,10 @@ "no-cache" ], "Apim-Request-Id": [ - "fc0543c4-a3b7-41cc-89b6-fd83d374b419" + "de802b57-2a08-4346-b4a8-276dc253aecb" ], "Request-Id": [ - "fc0543c4-a3b7-41cc-89b6-fd83d374b419" + "de802b57-2a08-4346-b4a8-276dc253aecb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -168,7 +168,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:23 GMT" + "Tue, 29 Oct 2019 13:17:17 GMT" ], "Content-Length": [ "104" @@ -177,23 +177,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"f8672031-71dc-495f-82d8-9e4d3411531b\",\r\n \"sentimentAnalysis\": true,\r\n \"speech\": true,\r\n \"spellChecker\": true\r\n}", + "ResponseBody": "{\r\n \"id\": \"ef4e8daf-29ca-4dd4-b9ae-cab4f31c337d\",\r\n \"sentimentAnalysis\": true,\r\n \"speech\": true,\r\n \"spellChecker\": true\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/f8672031-71dc-495f-82d8-9e4d3411531b?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9mODY3MjAzMS03MWRjLTQ5NWYtODJkOC05ZTRkMzQxMTUzMWI/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/ef4e8daf-29ca-4dd4-b9ae-cab4f31c337d?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2VmNGU4ZGFmLTI5Y2EtNGRkNC1iOWFlLWNhYjRmMzFjMzM3ZD9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "05b0b1a5-85ca-40e8-a3cc-fbb1819856f8" + "3b4df236-6210-4642-9025-95c6dc04ff1d" ], "Request-Id": [ - "05b0b1a5-85ca-40e8-a3cc-fbb1819856f8" + "3b4df236-6210-4642-9025-95c6dc04ff1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,7 +222,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:24 GMT" + "Tue, 29 Oct 2019 13:17:17 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/UpdateSettings.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/UpdateSettings.json index ad262ff5a01d..c105c9b294eb 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/UpdateSettings.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/AppsTests/UpdateSettings.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"culture\": \"en-us\",\r\n \"domain\": \"Comics\",\r\n \"description\": \"New LUIS App\",\r\n \"usageScenario\": \"IoT\",\r\n \"name\": \"LUIS App for Settings test\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/2ffa0dcb-b923-407d-a42c-6a5239bca80a" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/b253a812-5558-4c33-a241-f74052e86475" ], "Apim-Request-Id": [ - "2b592a30-4413-430a-b6ea-ffe52d4e7bb0" + "09954b53-028b-4496-95cc-1aeb3d646084" ], "Request-Id": [ - "2b592a30-4413-430a-b6ea-ffe52d4e7bb0" + "09954b53-028b-4496-95cc-1aeb3d646084" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/2ffa0dcb-b923-407d-a42c-6a5239bca80a" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/b253a812-5558-4c33-a241-f74052e86475" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:12 GMT" + "Tue, 29 Oct 2019 13:17:20 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"2ffa0dcb-b923-407d-a42c-6a5239bca80a\"", + "ResponseBody": "\"b253a812-5558-4c33-a241-f74052e86475\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/2ffa0dcb-b923-407d-a42c-6a5239bca80a/settings", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8yZmZhMGRjYi1iOTIzLTQwN2QtYTQyYy02YTUyMzliY2E4MGEvc2V0dGluZ3M=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/b253a812-5558-4c33-a241-f74052e86475/settings", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2IyNTNhODEyLTU1NTgtNGMzMy1hMjQxLWY3NDA1MmU4NjQ3NS9zZXR0aW5ncw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"public\": true\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,10 +96,10 @@ "no-cache" ], "Apim-Request-Id": [ - "51ee4178-934c-47b2-a441-1d08c6a5d994" + "58e942da-ebbb-46e0-ad43-08eed68f5de4" ], "Request-Id": [ - "51ee4178-934c-47b2-a441-1d08c6a5d994" + "58e942da-ebbb-46e0-ad43-08eed68f5de4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -114,7 +114,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:13 GMT" + "Tue, 29 Oct 2019 13:17:20 GMT" ], "Content-Length": [ "51" @@ -127,19 +127,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/2ffa0dcb-b923-407d-a42c-6a5239bca80a/settings", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8yZmZhMGRjYi1iOTIzLTQwN2QtYTQyYy02YTUyMzliY2E4MGEvc2V0dGluZ3M=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/b253a812-5558-4c33-a241-f74052e86475/settings", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2IyNTNhODEyLTU1NTgtNGMzMy1hMjQxLWY3NDA1MmU4NjQ3NS9zZXR0aW5ncw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -150,10 +150,10 @@ "no-cache" ], "Apim-Request-Id": [ - "05b345be-af0d-43d9-8fd9-f79eadc89d5b" + "77f49e2e-ad65-4253-b2f5-f9d357c24185" ], "Request-Id": [ - "05b345be-af0d-43d9-8fd9-f79eadc89d5b" + "77f49e2e-ad65-4253-b2f5-f9d357c24185" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -168,7 +168,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:13 GMT" + "Tue, 29 Oct 2019 13:17:21 GMT" ], "Content-Length": [ "59" @@ -177,23 +177,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"2ffa0dcb-b923-407d-a42c-6a5239bca80a\",\r\n \"public\": true\r\n}", + "ResponseBody": "{\r\n \"id\": \"b253a812-5558-4c33-a241-f74052e86475\",\r\n \"public\": true\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/2ffa0dcb-b923-407d-a42c-6a5239bca80a?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8yZmZhMGRjYi1iOTIzLTQwN2QtYTQyYy02YTUyMzliY2E4MGE/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/b253a812-5558-4c33-a241-f74052e86475?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2IyNTNhODEyLTU1NTgtNGMzMy1hMjQxLWY3NDA1MmU4NjQ3NT9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "f835cfc0-b088-4e3d-85e0-27f2ea6536d3" + "8f74c197-dbc3-46ca-9a31-db5a767276b3" ], "Request-Id": [ - "f835cfc0-b088-4e3d-85e0-27f2ea6536d3" + "8f74c197-dbc3-46ca-9a31-db5a767276b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,7 +222,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:14 GMT" + "Tue, 29 Oct 2019 13:17:21 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddClosedListEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddClosedListEntityRole.json index fe3c7175688e..7f9db793572c 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddClosedListEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddClosedListEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3Rz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"subLists\": [\r\n {\r\n \"canonicalForm\": \"test\",\r\n \"list\": []\r\n }\r\n ],\r\n \"name\": \"closed list model\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/aadbc528-d2f2-45fc-9185-9e25d0ec9323" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/7b592c7c-cd07-401a-8b87-1d084d4e5379" ], "Apim-Request-Id": [ - "8adc40a3-0f93-406c-8625-f68faa94969c" + "f135dd76-0895-4bc4-b67d-f328d30c4e71" ], "Request-Id": [ - "8adc40a3-0f93-406c-8625-f68faa94969c" + "f135dd76-0895-4bc4-b67d-f328d30c4e71" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/aadbc528-d2f2-45fc-9185-9e25d0ec9323" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/7b592c7c-cd07-401a-8b87-1d084d4e5379" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:55 GMT" + "Tue, 29 Oct 2019 13:18:38 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"aadbc528-d2f2-45fc-9185-9e25d0ec9323\"", + "ResponseBody": "\"7b592c7c-cd07-401a-8b87-1d084d4e5379\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/aadbc528-d2f2-45fc-9185-9e25d0ec9323/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzL2FhZGJjNTI4LWQyZjItNDVmYy05MTg1LTllMjVkMGVjOTMyMy9yb2xlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/7b592c7c-cd07-401a-8b87-1d084d4e5379/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvN2I1OTJjN2MtY2QwNy00MDFhLThiODctMWQwODRkNGU1Mzc5L3JvbGVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/aadbc528-d2f2-45fc-9185-9e25d0ec9323/roles/aaabe854-d5c5-49b3-9c4e-8a1485f858f5" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/7b592c7c-cd07-401a-8b87-1d084d4e5379/roles/d2fe1521-bb5e-4c59-80fd-a8b5636a135e" ], "Apim-Request-Id": [ - "de284917-0725-41e5-9073-00678b98704c" + "c35dd723-7dd2-4ffd-94e1-162a9a3ae770" ], "Request-Id": [ - "de284917-0725-41e5-9073-00678b98704c" + "c35dd723-7dd2-4ffd-94e1-162a9a3ae770" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/aadbc528-d2f2-45fc-9185-9e25d0ec9323/roles/aaabe854-d5c5-49b3-9c4e-8a1485f858f5" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/7b592c7c-cd07-401a-8b87-1d084d4e5379/roles/d2fe1521-bb5e-4c59-80fd-a8b5636a135e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:56 GMT" + "Tue, 29 Oct 2019 13:18:38 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"aaabe854-d5c5-49b3-9c4e-8a1485f858f5\"", + "ResponseBody": "\"d2fe1521-bb5e-4c59-80fd-a8b5636a135e\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/aadbc528-d2f2-45fc-9185-9e25d0ec9323/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzL2FhZGJjNTI4LWQyZjItNDVmYy05MTg1LTllMjVkMGVjOTMyMy9yb2xlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/7b592c7c-cd07-401a-8b87-1d084d4e5379/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvN2I1OTJjN2MtY2QwNy00MDFhLThiODctMWQwODRkNGU1Mzc5L3JvbGVz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "a8bcd0dc-503b-4e2c-ae75-bce86dcf3972" + "5a6d6239-8451-40b5-be0f-5a40373cac7f" ], "Request-Id": [ - "a8bcd0dc-503b-4e2c-ae75-bce86dcf3972" + "5a6d6239-8451-40b5-be0f-5a40373cac7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:56 GMT" + "Tue, 29 Oct 2019 13:18:39 GMT" ], "Content-Length": [ "68" @@ -183,23 +183,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"aaabe854-d5c5-49b3-9c4e-8a1485f858f5\",\r\n \"name\": \"simple role\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"d2fe1521-bb5e-4c59-80fd-a8b5636a135e\",\r\n \"name\": \"simple role\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/aadbc528-d2f2-45fc-9185-9e25d0ec9323", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzL2FhZGJjNTI4LWQyZjItNDVmYy05MTg1LTllMjVkMGVjOTMyMw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/7b592c7c-cd07-401a-8b87-1d084d4e5379", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvN2I1OTJjN2MtY2QwNy00MDFhLThiODctMWQwODRkNGU1Mzc5", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "7e65dd64-7e08-4797-a908-4d01c4fac85f" + "605038e7-0291-44f3-b614-045c12048a3f" ], "Request-Id": [ - "7e65dd64-7e08-4797-a908-4d01c4fac85f" + "605038e7-0291-44f3-b614-045c12048a3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:56 GMT" + "Tue, 29 Oct 2019 13:18:39 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddCustomPrebuiltDomainEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddCustomPrebuiltDomainEntityRole.json index 31abcdb131bd..48d612fac3ed 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddCustomPrebuiltDomainEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddCustomPrebuiltDomainEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZW50aXRpZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRlbnRpdGllcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"domainName\": \"Communication\",\r\n \"modelName\": \"ContactName\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/ab167b9b-9d48-46b6-936f-7d6717196f8c" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/25c22301-2bdb-40e1-895e-a23a8f7fbeb3" ], "Apim-Request-Id": [ - "c5344414-61b9-487a-93f8-51a6563c8408" + "552c3fd3-5b6a-451e-b6cf-1cd8d89d448c" ], "Request-Id": [ - "c5344414-61b9-487a-93f8-51a6563c8408" + "552c3fd3-5b6a-451e-b6cf-1cd8d89d448c" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/ab167b9b-9d48-46b6-936f-7d6717196f8c" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/25c22301-2bdb-40e1-895e-a23a8f7fbeb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:22 GMT" + "Tue, 29 Oct 2019 13:17:46 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"ab167b9b-9d48-46b6-936f-7d6717196f8c\"", + "ResponseBody": "\"25c22301-2bdb-40e1-895e-a23a8f7fbeb3\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/ab167b9b-9d48-46b6-936f-7d6717196f8c/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZW50aXRpZXMvYWIxNjdiOWItOWQ0OC00NmI2LTkzNmYtN2Q2NzE3MTk2ZjhjL3JvbGVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/25c22301-2bdb-40e1-895e-a23a8f7fbeb3/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRlbnRpdGllcy8yNWMyMjMwMS0yYmRiLTQwZTEtODk1ZS1hMjNhOGY3ZmJlYjMvcm9sZXM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/ab167b9b-9d48-46b6-936f-7d6717196f8c/roles/3b2ebdab-7071-4ca4-a3a1-fb6a28525fd4" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/25c22301-2bdb-40e1-895e-a23a8f7fbeb3/roles/080c0f3b-8329-4b99-a3e5-92293412fa6d" ], "Apim-Request-Id": [ - "bf19fda6-0ea0-4205-8ffd-b1b5f7318c0b" + "599f9f9b-5743-45c3-a6a7-6e2830f84373" ], "Request-Id": [ - "bf19fda6-0ea0-4205-8ffd-b1b5f7318c0b" + "599f9f9b-5743-45c3-a6a7-6e2830f84373" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/ab167b9b-9d48-46b6-936f-7d6717196f8c/roles/3b2ebdab-7071-4ca4-a3a1-fb6a28525fd4" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/25c22301-2bdb-40e1-895e-a23a8f7fbeb3/roles/080c0f3b-8329-4b99-a3e5-92293412fa6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:22 GMT" + "Tue, 29 Oct 2019 13:17:46 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"3b2ebdab-7071-4ca4-a3a1-fb6a28525fd4\"", + "ResponseBody": "\"080c0f3b-8329-4b99-a3e5-92293412fa6d\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/ab167b9b-9d48-46b6-936f-7d6717196f8c/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZW50aXRpZXMvYWIxNjdiOWItOWQ0OC00NmI2LTkzNmYtN2Q2NzE3MTk2ZjhjL3JvbGVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/25c22301-2bdb-40e1-895e-a23a8f7fbeb3/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRlbnRpdGllcy8yNWMyMjMwMS0yYmRiLTQwZTEtODk1ZS1hMjNhOGY3ZmJlYjMvcm9sZXM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "e20b9b1a-01d0-4801-a202-0220ea468fdd" + "81025edd-e99f-41cb-81e2-2735e8ab40d8" ], "Request-Id": [ - "e20b9b1a-01d0-4801-a202-0220ea468fdd" + "81025edd-e99f-41cb-81e2-2735e8ab40d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:23 GMT" + "Tue, 29 Oct 2019 13:17:46 GMT" ], "Content-Length": [ "68" @@ -183,23 +183,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"3b2ebdab-7071-4ca4-a3a1-fb6a28525fd4\",\r\n \"name\": \"simple role\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"080c0f3b-8329-4b99-a3e5-92293412fa6d\",\r\n \"name\": \"simple role\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/ab167b9b-9d48-46b6-936f-7d6717196f8c", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzL2FiMTY3YjliLTlkNDgtNDZiNi05MzZmLTdkNjcxNzE5NmY4Yw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/25c22301-2bdb-40e1-895e-a23a8f7fbeb3", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvMjVjMjIzMDEtMmJkYi00MGUxLTg5NWUtYTIzYThmN2ZiZWIz", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "639effde-aa34-4e29-b433-93ede717f4f1" + "9e4317db-6d52-4234-be10-caac10329a26" ], "Request-Id": [ - "639effde-aa34-4e29-b433-93ede717f4f1" + "9e4317db-6d52-4234-be10-caac10329a26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:23 GMT" + "Tue, 29 Oct 2019 13:17:47 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddPatternAnyEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddPatternAnyEntityRole.json index 34470d7409c5..9a3849ecfb55 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddPatternAnyEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddPatternAnyEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"Pattern.Any model\",\r\n \"explicitList\": []\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/1a9668d4-8912-4422-8cc6-1d2b3fc65c36" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/9d5dd62f-497d-4e3d-8307-bb0080bc0085" ], "Apim-Request-Id": [ - "4e19b8be-5d0d-4a25-9ddb-60b793d98a4d" + "eabf8aec-cd4f-4596-96ea-180856d345be" ], "Request-Id": [ - "4e19b8be-5d0d-4a25-9ddb-60b793d98a4d" + "eabf8aec-cd4f-4596-96ea-180856d345be" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/1a9668d4-8912-4422-8cc6-1d2b3fc65c36" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/9d5dd62f-497d-4e3d-8307-bb0080bc0085" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:58 GMT" + "Tue, 29 Oct 2019 13:18:29 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"1a9668d4-8912-4422-8cc6-1d2b3fc65c36\"", + "ResponseBody": "\"9d5dd62f-497d-4e3d-8307-bb0080bc0085\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/1a9668d4-8912-4422-8cc6-1d2b3fc65c36/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy8xYTk2NjhkNC04OTEyLTQ0MjItOGNjNi0xZDJiM2ZjNjVjMzYvcm9sZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/9d5dd62f-497d-4e3d-8307-bb0080bc0085/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzlkNWRkNjJmLTQ5N2QtNGUzZC04MzA3LWJiMDA4MGJjMDA4NS9yb2xlcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/1a9668d4-8912-4422-8cc6-1d2b3fc65c36/roles/c0457d36-3081-4cee-97fe-fdee8a783f26" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/9d5dd62f-497d-4e3d-8307-bb0080bc0085/roles/a8520668-f336-4f6a-a3c3-b15799b2f387" ], "Apim-Request-Id": [ - "3f5b7629-ee1d-48d5-a697-bbf34f96cb9c" + "74931380-2f7f-4c4a-946f-1bbf1ef8e18e" ], "Request-Id": [ - "3f5b7629-ee1d-48d5-a697-bbf34f96cb9c" + "74931380-2f7f-4c4a-946f-1bbf1ef8e18e" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/1a9668d4-8912-4422-8cc6-1d2b3fc65c36/roles/c0457d36-3081-4cee-97fe-fdee8a783f26" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/9d5dd62f-497d-4e3d-8307-bb0080bc0085/roles/a8520668-f336-4f6a-a3c3-b15799b2f387" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:58 GMT" + "Tue, 29 Oct 2019 13:18:30 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"c0457d36-3081-4cee-97fe-fdee8a783f26\"", + "ResponseBody": "\"a8520668-f336-4f6a-a3c3-b15799b2f387\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/1a9668d4-8912-4422-8cc6-1d2b3fc65c36/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy8xYTk2NjhkNC04OTEyLTQ0MjItOGNjNi0xZDJiM2ZjNjVjMzYvcm9sZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/9d5dd62f-497d-4e3d-8307-bb0080bc0085/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzlkNWRkNjJmLTQ5N2QtNGUzZC04MzA3LWJiMDA4MGJjMDA4NS9yb2xlcw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "c5c9fe5f-2c92-4a9a-bed3-4c178230983f" + "d45046c3-20c1-4726-9210-cb21da7f498c" ], "Request-Id": [ - "c5c9fe5f-2c92-4a9a-bed3-4c178230983f" + "d45046c3-20c1-4726-9210-cb21da7f498c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:58 GMT" + "Tue, 29 Oct 2019 13:18:30 GMT" ], "Content-Length": [ "68" @@ -183,23 +183,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"c0457d36-3081-4cee-97fe-fdee8a783f26\",\r\n \"name\": \"simple role\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"a8520668-f336-4f6a-a3c3-b15799b2f387\",\r\n \"name\": \"simple role\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/1a9668d4-8912-4422-8cc6-1d2b3fc65c36", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy8xYTk2NjhkNC04OTEyLTQ0MjItOGNjNi0xZDJiM2ZjNjVjMzY=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/9d5dd62f-497d-4e3d-8307-bb0080bc0085", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzlkNWRkNjJmLTQ5N2QtNGUzZC04MzA3LWJiMDA4MGJjMDA4NQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "b064c4f4-d55a-4f87-abe8-49a7a36c3902" + "d9a5113f-a8b0-4a42-b285-0768cba77a4b" ], "Request-Id": [ - "b064c4f4-d55a-4f87-abe8-49a7a36c3902" + "d9a5113f-a8b0-4a42-b285-0768cba77a4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:58 GMT" + "Tue, 29 Oct 2019 13:18:30 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddPrebuiltEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddPrebuiltEntityRole.json index 46ec1062a5e6..771c2fb254f0 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddPrebuiltEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddPrebuiltEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRz", "RequestMethod": "POST", "RequestBody": "[\r\n \"money\"\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,10 +30,10 @@ "no-cache" ], "Apim-Request-Id": [ - "d3d57d93-03c1-4f72-bce7-ecec83191701" + "40f292ca-ab6e-4634-8fc9-fc71fb804012" ], "Request-Id": [ - "d3d57d93-03c1-4f72-bce7-ecec83191701" + "40f292ca-ab6e-4634-8fc9-fc71fb804012" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -48,7 +48,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:05 GMT" + "Tue, 29 Oct 2019 13:17:51 GMT" ], "Content-Length": [ "127" @@ -57,23 +57,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"4b1de78e-9908-4a01-8dab-e214d12511ae\",\r\n \"name\": \"money\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"88905073-bd3f-4275-abd1-fd29d1e79c81\",\r\n \"name\": \"money\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/4b1de78e-9908-4a01-8dab-e214d12511ae/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy80YjFkZTc4ZS05OTA4LTRhMDEtOGRhYi1lMjE0ZDEyNTExYWUvcm9sZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/88905073-bd3f-4275-abd1-fd29d1e79c81/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzg4OTA1MDczLWJkM2YtNDI3NS1hYmQxLWZkMjlkMWU3OWM4MS9yb2xlcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -90,16 +90,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/4b1de78e-9908-4a01-8dab-e214d12511ae/roles/4b8b3bc9-c4e3-4482-9d68-e34817c5ac7c" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/88905073-bd3f-4275-abd1-fd29d1e79c81/roles/5b3e9f0b-db18-41a9-864d-14552518feb4" ], "Apim-Request-Id": [ - "e3421515-acca-4db6-ae53-1c305378594d" + "fe2fc378-3aa9-4a43-a200-8a04bd47cf81" ], "Request-Id": [ - "e3421515-acca-4db6-ae53-1c305378594d" + "fe2fc378-3aa9-4a43-a200-8a04bd47cf81" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/4b1de78e-9908-4a01-8dab-e214d12511ae/roles/4b8b3bc9-c4e3-4482-9d68-e34817c5ac7c" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/88905073-bd3f-4275-abd1-fd29d1e79c81/roles/5b3e9f0b-db18-41a9-864d-14552518feb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -114,7 +114,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:06 GMT" + "Tue, 29 Oct 2019 13:17:52 GMT" ], "Content-Length": [ "38" @@ -123,23 +123,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"4b8b3bc9-c4e3-4482-9d68-e34817c5ac7c\"", + "ResponseBody": "\"5b3e9f0b-db18-41a9-864d-14552518feb4\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/4b1de78e-9908-4a01-8dab-e214d12511ae/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy80YjFkZTc4ZS05OTA4LTRhMDEtOGRhYi1lMjE0ZDEyNTExYWUvcm9sZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/88905073-bd3f-4275-abd1-fd29d1e79c81/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzg4OTA1MDczLWJkM2YtNDI3NS1hYmQxLWZkMjlkMWU3OWM4MS9yb2xlcw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -150,10 +150,10 @@ "no-cache" ], "Apim-Request-Id": [ - "75f705cf-bbea-4326-b687-275650f7a2ce" + "bf1357cd-cff0-45e2-b08d-9de9717c06be" ], "Request-Id": [ - "75f705cf-bbea-4326-b687-275650f7a2ce" + "bf1357cd-cff0-45e2-b08d-9de9717c06be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -168,7 +168,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:06 GMT" + "Tue, 29 Oct 2019 13:17:52 GMT" ], "Content-Length": [ "68" @@ -177,23 +177,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"4b8b3bc9-c4e3-4482-9d68-e34817c5ac7c\",\r\n \"name\": \"simple role\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"5b3e9f0b-db18-41a9-864d-14552518feb4\",\r\n \"name\": \"simple role\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/4b1de78e-9908-4a01-8dab-e214d12511ae", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy80YjFkZTc4ZS05OTA4LTRhMDEtOGRhYi1lMjE0ZDEyNTExYWU=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/88905073-bd3f-4275-abd1-fd29d1e79c81", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzg4OTA1MDczLWJkM2YtNDI3NS1hYmQxLWZkMjlkMWU3OWM4MQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "2e033beb-b728-4fa7-9bd6-fb94a7a2d75c" + "cd3aa170-7767-44d8-af2c-0ae8408b6350" ], "Request-Id": [ - "2e033beb-b728-4fa7-9bd6-fb94a7a2d75c" + "cd3aa170-7767-44d8-af2c-0ae8408b6350" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,7 +222,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:06 GMT" + "Tue, 29 Oct 2019 13:17:52 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddRegexEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddRegexEntityRole.json index 0d2532d304df..74d0c0a0066a 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddRegexEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddRegexEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"regexPattern\": \"a+\",\r\n \"name\": \"regex model\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/65ef5347-f450-47f3-8590-83b4d4e7689d" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/c96e0bf2-0ee2-4b6e-9f66-7f03a0aa3bfe" ], "Apim-Request-Id": [ - "4c332f1d-1937-4a9c-9e79-78925081d329" + "39a8352a-539f-4588-bcfc-90ccb95de32e" ], "Request-Id": [ - "4c332f1d-1937-4a9c-9e79-78925081d329" + "39a8352a-539f-4588-bcfc-90ccb95de32e" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/65ef5347-f450-47f3-8590-83b4d4e7689d" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/c96e0bf2-0ee2-4b6e-9f66-7f03a0aa3bfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:31 GMT" + "Tue, 29 Oct 2019 13:18:18 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"65ef5347-f450-47f3-8590-83b4d4e7689d\"", + "ResponseBody": "\"c96e0bf2-0ee2-4b6e-9f66-7f03a0aa3bfe\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/65ef5347-f450-47f3-8590-83b4d4e7689d/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvNjVlZjUzNDctZjQ1MC00N2YzLTg1OTAtODNiNGQ0ZTc2ODlkL3JvbGVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/c96e0bf2-0ee2-4b6e-9f66-7f03a0aa3bfe/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy9jOTZlMGJmMi0wZWUyLTRiNmUtOWY2Ni03ZjAzYTBhYTNiZmUvcm9sZXM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/65ef5347-f450-47f3-8590-83b4d4e7689d/roles/8e81ecc3-9665-4298-a207-af635796c758" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/c96e0bf2-0ee2-4b6e-9f66-7f03a0aa3bfe/roles/6648ab41-5b84-4592-a953-8b7473264240" ], "Apim-Request-Id": [ - "61ae9ec4-a547-4ff1-ae56-d0382d73ac48" + "8edcda2e-798a-468b-92a6-9ba5084b6c54" ], "Request-Id": [ - "61ae9ec4-a547-4ff1-ae56-d0382d73ac48" + "8edcda2e-798a-468b-92a6-9ba5084b6c54" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/65ef5347-f450-47f3-8590-83b4d4e7689d/roles/8e81ecc3-9665-4298-a207-af635796c758" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/c96e0bf2-0ee2-4b6e-9f66-7f03a0aa3bfe/roles/6648ab41-5b84-4592-a953-8b7473264240" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:31 GMT" + "Tue, 29 Oct 2019 13:18:18 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"8e81ecc3-9665-4298-a207-af635796c758\"", + "ResponseBody": "\"6648ab41-5b84-4592-a953-8b7473264240\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/65ef5347-f450-47f3-8590-83b4d4e7689d/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvNjVlZjUzNDctZjQ1MC00N2YzLTg1OTAtODNiNGQ0ZTc2ODlkL3JvbGVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/c96e0bf2-0ee2-4b6e-9f66-7f03a0aa3bfe/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy9jOTZlMGJmMi0wZWUyLTRiNmUtOWY2Ni03ZjAzYTBhYTNiZmUvcm9sZXM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "e73ca751-23fb-4862-997d-c47589597850" + "cb32e934-3de8-4298-acb1-1eef1c427dbe" ], "Request-Id": [ - "e73ca751-23fb-4862-997d-c47589597850" + "cb32e934-3de8-4298-acb1-1eef1c427dbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:32 GMT" + "Tue, 29 Oct 2019 13:18:18 GMT" ], "Content-Length": [ "68" @@ -183,23 +183,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"8e81ecc3-9665-4298-a207-af635796c758\",\r\n \"name\": \"simple role\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"6648ab41-5b84-4592-a953-8b7473264240\",\r\n \"name\": \"simple role\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/65ef5347-f450-47f3-8590-83b4d4e7689d", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvNjVlZjUzNDctZjQ1MC00N2YzLTg1OTAtODNiNGQ0ZTc2ODlk", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/c96e0bf2-0ee2-4b6e-9f66-7f03a0aa3bfe", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy9jOTZlMGJmMi0wZWUyLTRiNmUtOWY2Ni03ZjAzYTBhYTNiZmU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "357b9232-c1f0-405a-92f7-142d3a9a6183" + "6a3c51e2-ece7-4e97-b606-6300f80f18d0" ], "Request-Id": [ - "357b9232-c1f0-405a-92f7-142d3a9a6183" + "6a3c51e2-ece7-4e97-b606-6300f80f18d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:32 GMT" + "Tue, 29 Oct 2019 13:18:19 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddSimpleEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddSimpleEntityRole.json index 9bcbd14c1fa6..f5af0c8e8990 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddSimpleEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/AddSimpleEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple entity\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/b27c8cb1-f188-4c3b-b120-734bd9dad027" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/89ea0891-6088-40b1-be1a-36ff332f9933" ], "Apim-Request-Id": [ - "1d08970c-5401-4200-a717-4cd875fd95d5" + "aaa1344c-7efb-447d-8925-4c0d6d7b0913" ], "Request-Id": [ - "1d08970c-5401-4200-a717-4cd875fd95d5" + "aaa1344c-7efb-447d-8925-4c0d6d7b0913" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/b27c8cb1-f188-4c3b-b120-734bd9dad027" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/89ea0891-6088-40b1-be1a-36ff332f9933" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:54 GMT" + "Tue, 29 Oct 2019 13:17:38 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"b27c8cb1-f188-4c3b-b120-734bd9dad027\"", + "ResponseBody": "\"89ea0891-6088-40b1-be1a-36ff332f9933\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/b27c8cb1-f188-4c3b-b120-734bd9dad027/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzL2IyN2M4Y2IxLWYxODgtNGMzYi1iMTIwLTczNGJkOWRhZDAyNy9yb2xlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/89ea0891-6088-40b1-be1a-36ff332f9933/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvODllYTA4OTEtNjA4OC00MGIxLWJlMWEtMzZmZjMzMmY5OTMzL3JvbGVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/b27c8cb1-f188-4c3b-b120-734bd9dad027/roles/4bb28340-b3dc-4a24-ab3f-30ff432fdd7d" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/89ea0891-6088-40b1-be1a-36ff332f9933/roles/77ef43f5-04b2-4a5c-acce-eebe1ca4665d" ], "Apim-Request-Id": [ - "fd7a097e-c0c9-43d4-9abb-2ae63556eaab" + "03c49288-6562-4602-964e-0ff9bba6bc9f" ], "Request-Id": [ - "fd7a097e-c0c9-43d4-9abb-2ae63556eaab" + "03c49288-6562-4602-964e-0ff9bba6bc9f" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/b27c8cb1-f188-4c3b-b120-734bd9dad027/roles/4bb28340-b3dc-4a24-ab3f-30ff432fdd7d" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/89ea0891-6088-40b1-be1a-36ff332f9933/roles/77ef43f5-04b2-4a5c-acce-eebe1ca4665d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:54 GMT" + "Tue, 29 Oct 2019 13:17:38 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"4bb28340-b3dc-4a24-ab3f-30ff432fdd7d\"", + "ResponseBody": "\"77ef43f5-04b2-4a5c-acce-eebe1ca4665d\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/b27c8cb1-f188-4c3b-b120-734bd9dad027/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzL2IyN2M4Y2IxLWYxODgtNGMzYi1iMTIwLTczNGJkOWRhZDAyNy9yb2xlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/89ea0891-6088-40b1-be1a-36ff332f9933/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvODllYTA4OTEtNjA4OC00MGIxLWJlMWEtMzZmZjMzMmY5OTMzL3JvbGVz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "3072ce38-4a77-4d1b-8ce2-fbc362930ff2" + "5c0685f2-ef14-4640-9cc5-ca1005615b17" ], "Request-Id": [ - "3072ce38-4a77-4d1b-8ce2-fbc362930ff2" + "5c0685f2-ef14-4640-9cc5-ca1005615b17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:54 GMT" + "Tue, 29 Oct 2019 13:17:39 GMT" ], "Content-Length": [ "68" @@ -183,23 +183,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"4bb28340-b3dc-4a24-ab3f-30ff432fdd7d\",\r\n \"name\": \"simple role\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"77ef43f5-04b2-4a5c-acce-eebe1ca4665d\",\r\n \"name\": \"simple role\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/b27c8cb1-f188-4c3b-b120-734bd9dad027", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzL2IyN2M4Y2IxLWYxODgtNGMzYi1iMTIwLTczNGJkOWRhZDAyNw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/89ea0891-6088-40b1-be1a-36ff332f9933", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvODllYTA4OTEtNjA4OC00MGIxLWJlMWEtMzZmZjMzMmY5OTMz", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "c20d9c79-7df5-4c29-b0a2-0af0d8380d7a" + "f51b1fc1-a006-48ae-bbca-25d8fcb2bf6d" ], "Request-Id": [ - "c20d9c79-7df5-4c29-b0a2-0af0d8380d7a" + "f51b1fc1-a006-48ae-bbca-25d8fcb2bf6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:54 GMT" + "Tue, 29 Oct 2019 13:17:39 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeleteClosedListEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeleteClosedListEntityRole.json index 921713338062..9da1cec9c980 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeleteClosedListEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeleteClosedListEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3Rz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"subLists\": [\r\n {\r\n \"canonicalForm\": \"test\",\r\n \"list\": []\r\n }\r\n ],\r\n \"name\": \"closed list model\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/ec03b9fc-bc1f-4c4a-8b44-3dde342502fe" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/7eaccfdc-2727-44b2-9d09-529a43e6977e" ], "Apim-Request-Id": [ - "56bf33f6-3e3c-4596-abd6-3fec7a320c97" + "f4f678cb-c110-409b-a652-6f47ca7d97e4" ], "Request-Id": [ - "56bf33f6-3e3c-4596-abd6-3fec7a320c97" + "f4f678cb-c110-409b-a652-6f47ca7d97e4" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/ec03b9fc-bc1f-4c4a-8b44-3dde342502fe" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/7eaccfdc-2727-44b2-9d09-529a43e6977e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:47 GMT" + "Tue, 29 Oct 2019 13:17:49 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"ec03b9fc-bc1f-4c4a-8b44-3dde342502fe\"", + "ResponseBody": "\"7eaccfdc-2727-44b2-9d09-529a43e6977e\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/ec03b9fc-bc1f-4c4a-8b44-3dde342502fe/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzL2VjMDNiOWZjLWJjMWYtNGM0YS04YjQ0LTNkZGUzNDI1MDJmZS9yb2xlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/7eaccfdc-2727-44b2-9d09-529a43e6977e/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvN2VhY2NmZGMtMjcyNy00NGIyLTlkMDktNTI5YTQzZTY5NzdlL3JvbGVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/ec03b9fc-bc1f-4c4a-8b44-3dde342502fe/roles/17783fc5-f85d-4b7f-b247-9a5fcd4d267d" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/7eaccfdc-2727-44b2-9d09-529a43e6977e/roles/b3acc326-6419-4516-be94-e803820c5296" ], "Apim-Request-Id": [ - "9066a17b-81bf-40ef-9f0c-be3f085cf7d1" + "e881a48d-f18a-4d19-a978-27ba9c9f0c07" ], "Request-Id": [ - "9066a17b-81bf-40ef-9f0c-be3f085cf7d1" + "e881a48d-f18a-4d19-a978-27ba9c9f0c07" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/ec03b9fc-bc1f-4c4a-8b44-3dde342502fe/roles/17783fc5-f85d-4b7f-b247-9a5fcd4d267d" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/7eaccfdc-2727-44b2-9d09-529a43e6977e/roles/b3acc326-6419-4516-be94-e803820c5296" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:48 GMT" + "Tue, 29 Oct 2019 13:17:50 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"17783fc5-f85d-4b7f-b247-9a5fcd4d267d\"", + "ResponseBody": "\"b3acc326-6419-4516-be94-e803820c5296\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/ec03b9fc-bc1f-4c4a-8b44-3dde342502fe/roles/17783fc5-f85d-4b7f-b247-9a5fcd4d267d", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzL2VjMDNiOWZjLWJjMWYtNGM0YS04YjQ0LTNkZGUzNDI1MDJmZS9yb2xlcy8xNzc4M2ZjNS1mODVkLTRiN2YtYjI0Ny05YTVmY2Q0ZDI2N2Q=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/7eaccfdc-2727-44b2-9d09-529a43e6977e/roles/b3acc326-6419-4516-be94-e803820c5296", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvN2VhY2NmZGMtMjcyNy00NGIyLTlkMDktNTI5YTQzZTY5NzdlL3JvbGVzL2IzYWNjMzI2LTY0MTktNDUxNi1iZTk0LWU4MDM4MjBjNTI5Ng==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "c11eea9a-bc38-427a-aba1-86b4f4bd6c8d" + "7a7802df-9e5b-4dc3-ad67-32b62c2e849a" ], "Request-Id": [ - "c11eea9a-bc38-427a-aba1-86b4f4bd6c8d" + "7a7802df-9e5b-4dc3-ad67-32b62c2e849a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:48 GMT" + "Tue, 29 Oct 2019 13:17:50 GMT" ], "Content-Length": [ "51" @@ -187,19 +187,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/ec03b9fc-bc1f-4c4a-8b44-3dde342502fe/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzL2VjMDNiOWZjLWJjMWYtNGM0YS04YjQ0LTNkZGUzNDI1MDJmZS9yb2xlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/7eaccfdc-2727-44b2-9d09-529a43e6977e/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvN2VhY2NmZGMtMjcyNy00NGIyLTlkMDktNTI5YTQzZTY5NzdlL3JvbGVz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "81ff602e-f7a1-4700-9d6e-2c6b27904c4d" + "c9ca5eb3-7322-4062-96a4-d6dac0a1b3cd" ], "Request-Id": [ - "81ff602e-f7a1-4700-9d6e-2c6b27904c4d" + "c9ca5eb3-7322-4062-96a4-d6dac0a1b3cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:48 GMT" + "Tue, 29 Oct 2019 13:17:50 GMT" ], "Content-Length": [ "2" @@ -241,19 +241,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/ec03b9fc-bc1f-4c4a-8b44-3dde342502fe", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzL2VjMDNiOWZjLWJjMWYtNGM0YS04YjQ0LTNkZGUzNDI1MDJmZQ==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/7eaccfdc-2727-44b2-9d09-529a43e6977e", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvN2VhY2NmZGMtMjcyNy00NGIyLTlkMDktNTI5YTQzZTY5Nzdl", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -264,10 +264,10 @@ "no-cache" ], "Apim-Request-Id": [ - "327d2aa9-b299-4b3b-822d-4bdf9aaae4cb" + "8fdc1c7c-f1f5-40be-a589-675ad1834e63" ], "Request-Id": [ - "327d2aa9-b299-4b3b-822d-4bdf9aaae4cb" + "8fdc1c7c-f1f5-40be-a589-675ad1834e63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -282,7 +282,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:49 GMT" + "Tue, 29 Oct 2019 13:17:51 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeleteCustomPrebuiltDomainEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeleteCustomPrebuiltDomainEntityRole.json index d0bce7311d47..f14358582ac9 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeleteCustomPrebuiltDomainEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeleteCustomPrebuiltDomainEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZW50aXRpZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRlbnRpdGllcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"domainName\": \"Communication\",\r\n \"modelName\": \"ContactName\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/9c8db56f-5eb1-46a3-9999-032ef712182d" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/a0daf2ed-ead8-4407-9700-5422803df833" ], "Apim-Request-Id": [ - "e9e2f12d-054a-465a-8b01-ada36e9a1e68" + "3c1037db-b72a-490f-ba01-9b8b963fe8f7" ], "Request-Id": [ - "e9e2f12d-054a-465a-8b01-ada36e9a1e68" + "3c1037db-b72a-490f-ba01-9b8b963fe8f7" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/9c8db56f-5eb1-46a3-9999-032ef712182d" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/a0daf2ed-ead8-4407-9700-5422803df833" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:10 GMT" + "Tue, 29 Oct 2019 13:18:00 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"9c8db56f-5eb1-46a3-9999-032ef712182d\"", + "ResponseBody": "\"a0daf2ed-ead8-4407-9700-5422803df833\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/9c8db56f-5eb1-46a3-9999-032ef712182d/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZW50aXRpZXMvOWM4ZGI1NmYtNWViMS00NmEzLTk5OTktMDMyZWY3MTIxODJkL3JvbGVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/a0daf2ed-ead8-4407-9700-5422803df833/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRlbnRpdGllcy9hMGRhZjJlZC1lYWQ4LTQ0MDctOTcwMC01NDIyODAzZGY4MzMvcm9sZXM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/9c8db56f-5eb1-46a3-9999-032ef712182d/roles/f84fb8b8-1fc1-4aae-8e4e-2453d0637bc4" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/a0daf2ed-ead8-4407-9700-5422803df833/roles/697d4db3-fe27-4db4-ac31-d26c1fe12ed5" ], "Apim-Request-Id": [ - "1022110e-15ca-484e-bc68-ebb528724e5a" + "ec6996ba-2fd6-43da-83cf-9cde25119d9e" ], "Request-Id": [ - "1022110e-15ca-484e-bc68-ebb528724e5a" + "ec6996ba-2fd6-43da-83cf-9cde25119d9e" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/9c8db56f-5eb1-46a3-9999-032ef712182d/roles/f84fb8b8-1fc1-4aae-8e4e-2453d0637bc4" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/a0daf2ed-ead8-4407-9700-5422803df833/roles/697d4db3-fe27-4db4-ac31-d26c1fe12ed5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:11 GMT" + "Tue, 29 Oct 2019 13:18:00 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"f84fb8b8-1fc1-4aae-8e4e-2453d0637bc4\"", + "ResponseBody": "\"697d4db3-fe27-4db4-ac31-d26c1fe12ed5\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/9c8db56f-5eb1-46a3-9999-032ef712182d/roles/f84fb8b8-1fc1-4aae-8e4e-2453d0637bc4", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZW50aXRpZXMvOWM4ZGI1NmYtNWViMS00NmEzLTk5OTktMDMyZWY3MTIxODJkL3JvbGVzL2Y4NGZiOGI4LTFmYzEtNGFhZS04ZTRlLTI0NTNkMDYzN2JjNA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/a0daf2ed-ead8-4407-9700-5422803df833/roles/697d4db3-fe27-4db4-ac31-d26c1fe12ed5", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRlbnRpdGllcy9hMGRhZjJlZC1lYWQ4LTQ0MDctOTcwMC01NDIyODAzZGY4MzMvcm9sZXMvNjk3ZDRkYjMtZmUyNy00ZGI0LWFjMzEtZDI2YzFmZTEyZWQ1", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "027cfda3-8f1c-45a3-b2ec-a6bf78542859" + "5e7fc355-984f-47ad-8387-8160a39fbaa5" ], "Request-Id": [ - "027cfda3-8f1c-45a3-b2ec-a6bf78542859" + "5e7fc355-984f-47ad-8387-8160a39fbaa5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:11 GMT" + "Tue, 29 Oct 2019 13:18:00 GMT" ], "Content-Length": [ "51" @@ -187,19 +187,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/9c8db56f-5eb1-46a3-9999-032ef712182d/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZW50aXRpZXMvOWM4ZGI1NmYtNWViMS00NmEzLTk5OTktMDMyZWY3MTIxODJkL3JvbGVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/a0daf2ed-ead8-4407-9700-5422803df833/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRlbnRpdGllcy9hMGRhZjJlZC1lYWQ4LTQ0MDctOTcwMC01NDIyODAzZGY4MzMvcm9sZXM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "0b49794f-034a-4e60-9c62-63bb3ef3b7e8" + "0c4a50ff-523b-4259-a666-f3337801d5e5" ], "Request-Id": [ - "0b49794f-034a-4e60-9c62-63bb3ef3b7e8" + "0c4a50ff-523b-4259-a666-f3337801d5e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:11 GMT" + "Tue, 29 Oct 2019 13:18:00 GMT" ], "Content-Length": [ "2" @@ -241,19 +241,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/9c8db56f-5eb1-46a3-9999-032ef712182d", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzLzljOGRiNTZmLTVlYjEtNDZhMy05OTk5LTAzMmVmNzEyMTgyZA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/a0daf2ed-ead8-4407-9700-5422803df833", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvYTBkYWYyZWQtZWFkOC00NDA3LTk3MDAtNTQyMjgwM2RmODMz", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -264,10 +264,10 @@ "no-cache" ], "Apim-Request-Id": [ - "119ce308-6b4d-4098-bdbf-fd3285d1dfbf" + "43ed2dd3-751b-4589-b030-090e2b5d0079" ], "Request-Id": [ - "119ce308-6b4d-4098-bdbf-fd3285d1dfbf" + "43ed2dd3-751b-4589-b030-090e2b5d0079" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -282,7 +282,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:12 GMT" + "Tue, 29 Oct 2019 13:18:01 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeletePatternAnyEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeletePatternAnyEntityRole.json index 765283fe1077..afbd8b03610c 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeletePatternAnyEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeletePatternAnyEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"Pattern.Any model\",\r\n \"explicitList\": []\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/411d6f48-4a37-4d88-8caa-c67ce0d0a5f8" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/48c7de04-c11c-4923-a6db-d9a4fecd8e47" ], "Apim-Request-Id": [ - "96a95cde-d149-4e2f-8bff-193a92a64721" + "7e3dad23-0d75-4b71-af08-951d3ddb20a3" ], "Request-Id": [ - "96a95cde-d149-4e2f-8bff-193a92a64721" + "7e3dad23-0d75-4b71-af08-951d3ddb20a3" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/411d6f48-4a37-4d88-8caa-c67ce0d0a5f8" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/48c7de04-c11c-4923-a6db-d9a4fecd8e47" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:01 GMT" + "Tue, 29 Oct 2019 13:18:15 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"411d6f48-4a37-4d88-8caa-c67ce0d0a5f8\"", + "ResponseBody": "\"48c7de04-c11c-4923-a6db-d9a4fecd8e47\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/411d6f48-4a37-4d88-8caa-c67ce0d0a5f8/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy80MTFkNmY0OC00YTM3LTRkODgtOGNhYS1jNjdjZTBkMGE1Zjgvcm9sZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/48c7de04-c11c-4923-a6db-d9a4fecd8e47/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzQ4YzdkZTA0LWMxMWMtNDkyMy1hNmRiLWQ5YTRmZWNkOGU0Ny9yb2xlcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/411d6f48-4a37-4d88-8caa-c67ce0d0a5f8/roles/f0f93722-428b-4c07-bf00-03d4a6da0a1f" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/48c7de04-c11c-4923-a6db-d9a4fecd8e47/roles/c0eb0d30-8dbd-476a-8c8c-41b99af8e324" ], "Apim-Request-Id": [ - "dc91e6c2-a68e-48dd-97ea-a0a76d66a375" + "aaa9c49e-e63c-42d9-a297-8830e88aecc7" ], "Request-Id": [ - "dc91e6c2-a68e-48dd-97ea-a0a76d66a375" + "aaa9c49e-e63c-42d9-a297-8830e88aecc7" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/411d6f48-4a37-4d88-8caa-c67ce0d0a5f8/roles/f0f93722-428b-4c07-bf00-03d4a6da0a1f" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/48c7de04-c11c-4923-a6db-d9a4fecd8e47/roles/c0eb0d30-8dbd-476a-8c8c-41b99af8e324" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:01 GMT" + "Tue, 29 Oct 2019 13:18:16 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"f0f93722-428b-4c07-bf00-03d4a6da0a1f\"", + "ResponseBody": "\"c0eb0d30-8dbd-476a-8c8c-41b99af8e324\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/411d6f48-4a37-4d88-8caa-c67ce0d0a5f8/roles/f0f93722-428b-4c07-bf00-03d4a6da0a1f", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy80MTFkNmY0OC00YTM3LTRkODgtOGNhYS1jNjdjZTBkMGE1Zjgvcm9sZXMvZjBmOTM3MjItNDI4Yi00YzA3LWJmMDAtMDNkNGE2ZGEwYTFm", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/48c7de04-c11c-4923-a6db-d9a4fecd8e47/roles/c0eb0d30-8dbd-476a-8c8c-41b99af8e324", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzQ4YzdkZTA0LWMxMWMtNDkyMy1hNmRiLWQ5YTRmZWNkOGU0Ny9yb2xlcy9jMGViMGQzMC04ZGJkLTQ3NmEtOGM4Yy00MWI5OWFmOGUzMjQ=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "585a7038-6b31-44e8-8574-9ae2af8faafa" + "9ece6fbf-b4eb-4ac1-8f8e-220b67d551ea" ], "Request-Id": [ - "585a7038-6b31-44e8-8574-9ae2af8faafa" + "9ece6fbf-b4eb-4ac1-8f8e-220b67d551ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:01 GMT" + "Tue, 29 Oct 2019 13:18:16 GMT" ], "Content-Length": [ "51" @@ -187,19 +187,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/411d6f48-4a37-4d88-8caa-c67ce0d0a5f8/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy80MTFkNmY0OC00YTM3LTRkODgtOGNhYS1jNjdjZTBkMGE1Zjgvcm9sZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/48c7de04-c11c-4923-a6db-d9a4fecd8e47/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzQ4YzdkZTA0LWMxMWMtNDkyMy1hNmRiLWQ5YTRmZWNkOGU0Ny9yb2xlcw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "ba49b892-1594-40ca-adbe-53bcd8eb5b23" + "18d6a2fd-7df4-47a2-8ca0-e847a6c9a101" ], "Request-Id": [ - "ba49b892-1594-40ca-adbe-53bcd8eb5b23" + "18d6a2fd-7df4-47a2-8ca0-e847a6c9a101" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:02 GMT" + "Tue, 29 Oct 2019 13:18:16 GMT" ], "Content-Length": [ "2" @@ -241,19 +241,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/411d6f48-4a37-4d88-8caa-c67ce0d0a5f8", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy80MTFkNmY0OC00YTM3LTRkODgtOGNhYS1jNjdjZTBkMGE1Zjg=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/48c7de04-c11c-4923-a6db-d9a4fecd8e47", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzQ4YzdkZTA0LWMxMWMtNDkyMy1hNmRiLWQ5YTRmZWNkOGU0Nw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -264,10 +264,10 @@ "no-cache" ], "Apim-Request-Id": [ - "83b947e8-39ec-42a3-be1c-79e32e036f72" + "49f46c04-0205-4580-832a-0209e464a704" ], "Request-Id": [ - "83b947e8-39ec-42a3-be1c-79e32e036f72" + "49f46c04-0205-4580-832a-0209e464a704" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -282,7 +282,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:02 GMT" + "Tue, 29 Oct 2019 13:18:17 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeletePrebuiltEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeletePrebuiltEntityRole.json index c9a32e6f75d7..da893f566261 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeletePrebuiltEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeletePrebuiltEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRz", "RequestMethod": "POST", "RequestBody": "[\r\n \"money\"\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,10 +30,10 @@ "no-cache" ], "Apim-Request-Id": [ - "0b1b4da1-55d7-4b16-b460-437eb04e73a6" + "0a3bbf85-40a9-41fc-913e-afe22237978a" ], "Request-Id": [ - "0b1b4da1-55d7-4b16-b460-437eb04e73a6" + "0a3bbf85-40a9-41fc-913e-afe22237978a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -48,7 +48,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:08 GMT" + "Tue, 29 Oct 2019 13:17:48 GMT" ], "Content-Length": [ "127" @@ -57,23 +57,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"b25e8a2c-dc71-435a-9b2f-4c51d6cfb975\",\r\n \"name\": \"money\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"237ab39e-a85f-4066-91da-8f3bf265c669\",\r\n \"name\": \"money\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/b25e8a2c-dc71-435a-9b2f-4c51d6cfb975/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy9iMjVlOGEyYy1kYzcxLTQzNWEtOWIyZi00YzUxZDZjZmI5NzUvcm9sZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/237ab39e-a85f-4066-91da-8f3bf265c669/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzIzN2FiMzllLWE4NWYtNDA2Ni05MWRhLThmM2JmMjY1YzY2OS9yb2xlcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -90,16 +90,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/b25e8a2c-dc71-435a-9b2f-4c51d6cfb975/roles/9513ad67-00b4-4dab-8851-9be317957162" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/237ab39e-a85f-4066-91da-8f3bf265c669/roles/936963a3-4fa2-4ae4-a733-37337efed940" ], "Apim-Request-Id": [ - "b065f1e1-7a2f-4c64-b9d4-611ecabbb193" + "fdcdd34a-5f82-4452-b0df-ee1121f8aae7" ], "Request-Id": [ - "b065f1e1-7a2f-4c64-b9d4-611ecabbb193" + "fdcdd34a-5f82-4452-b0df-ee1121f8aae7" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/b25e8a2c-dc71-435a-9b2f-4c51d6cfb975/roles/9513ad67-00b4-4dab-8851-9be317957162" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/237ab39e-a85f-4066-91da-8f3bf265c669/roles/936963a3-4fa2-4ae4-a733-37337efed940" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -114,7 +114,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:08 GMT" + "Tue, 29 Oct 2019 13:17:48 GMT" ], "Content-Length": [ "38" @@ -123,23 +123,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"9513ad67-00b4-4dab-8851-9be317957162\"", + "ResponseBody": "\"936963a3-4fa2-4ae4-a733-37337efed940\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/b25e8a2c-dc71-435a-9b2f-4c51d6cfb975/roles/9513ad67-00b4-4dab-8851-9be317957162", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy9iMjVlOGEyYy1kYzcxLTQzNWEtOWIyZi00YzUxZDZjZmI5NzUvcm9sZXMvOTUxM2FkNjctMDBiNC00ZGFiLTg4NTEtOWJlMzE3OTU3MTYy", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/237ab39e-a85f-4066-91da-8f3bf265c669/roles/936963a3-4fa2-4ae4-a733-37337efed940", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzIzN2FiMzllLWE4NWYtNDA2Ni05MWRhLThmM2JmMjY1YzY2OS9yb2xlcy85MzY5NjNhMy00ZmEyLTRhZTQtYTczMy0zNzMzN2VmZWQ5NDA=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -150,10 +150,10 @@ "no-cache" ], "Apim-Request-Id": [ - "f2e5fc0a-509b-4b55-8245-f6a4d5c12801" + "877c5ce9-43ce-44ec-beff-6c61cfc89a43" ], "Request-Id": [ - "f2e5fc0a-509b-4b55-8245-f6a4d5c12801" + "877c5ce9-43ce-44ec-beff-6c61cfc89a43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -168,7 +168,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:09 GMT" + "Tue, 29 Oct 2019 13:17:48 GMT" ], "Content-Length": [ "51" @@ -181,19 +181,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/b25e8a2c-dc71-435a-9b2f-4c51d6cfb975/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy9iMjVlOGEyYy1kYzcxLTQzNWEtOWIyZi00YzUxZDZjZmI5NzUvcm9sZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/237ab39e-a85f-4066-91da-8f3bf265c669/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzIzN2FiMzllLWE4NWYtNDA2Ni05MWRhLThmM2JmMjY1YzY2OS9yb2xlcw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "0167aa4a-1220-4cb5-b5d9-e71db7e0839d" + "eb15210f-7b5d-4a1d-8ba7-7658a6338270" ], "Request-Id": [ - "0167aa4a-1220-4cb5-b5d9-e71db7e0839d" + "eb15210f-7b5d-4a1d-8ba7-7658a6338270" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,7 +222,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:09 GMT" + "Tue, 29 Oct 2019 13:17:48 GMT" ], "Content-Length": [ "2" @@ -235,19 +235,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/b25e8a2c-dc71-435a-9b2f-4c51d6cfb975", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy9iMjVlOGEyYy1kYzcxLTQzNWEtOWIyZi00YzUxZDZjZmI5NzU=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/237ab39e-a85f-4066-91da-8f3bf265c669", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzIzN2FiMzllLWE4NWYtNDA2Ni05MWRhLThmM2JmMjY1YzY2OQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -258,10 +258,10 @@ "no-cache" ], "Apim-Request-Id": [ - "9aeec83b-0cac-4995-b387-3369a5459b44" + "c5593f13-ff22-4574-80f6-44acdabe066d" ], "Request-Id": [ - "9aeec83b-0cac-4995-b387-3369a5459b44" + "c5593f13-ff22-4574-80f6-44acdabe066d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -276,7 +276,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:09 GMT" + "Tue, 29 Oct 2019 13:17:49 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeleteRegexEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeleteRegexEntityRole.json index 7f9bc37c86df..60bccb707b51 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeleteRegexEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeleteRegexEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"regexPattern\": \"a+\",\r\n \"name\": \"regex model\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/af4f7c7d-8012-403c-83e0-a5260308220e" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/af630ecc-9123-472e-a2fb-9f25f5f87fb4" ], "Apim-Request-Id": [ - "0f188485-9763-45ff-9908-7391b6ee6cf3" + "ce334ba3-d563-407d-a311-165a40a1a6c5" ], "Request-Id": [ - "0f188485-9763-45ff-9908-7391b6ee6cf3" + "ce334ba3-d563-407d-a311-165a40a1a6c5" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/af4f7c7d-8012-403c-83e0-a5260308220e" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/af630ecc-9123-472e-a2fb-9f25f5f87fb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:37 GMT" + "Tue, 29 Oct 2019 13:18:21 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"af4f7c7d-8012-403c-83e0-a5260308220e\"", + "ResponseBody": "\"af630ecc-9123-472e-a2fb-9f25f5f87fb4\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/af4f7c7d-8012-403c-83e0-a5260308220e/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvYWY0ZjdjN2QtODAxMi00MDNjLTgzZTAtYTUyNjAzMDgyMjBlL3JvbGVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/af630ecc-9123-472e-a2fb-9f25f5f87fb4/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy9hZjYzMGVjYy05MTIzLTQ3MmUtYTJmYi05ZjI1ZjVmODdmYjQvcm9sZXM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/af4f7c7d-8012-403c-83e0-a5260308220e/roles/cb02c802-e78b-4664-9f35-7bbebdd9a540" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/af630ecc-9123-472e-a2fb-9f25f5f87fb4/roles/4a8f9740-4ecb-4608-bc27-bd122addc0e6" ], "Apim-Request-Id": [ - "fe6ea008-4919-468d-b47a-3355bd926d9f" + "4b8608a4-2540-4d45-9479-b15cb1b88aa7" ], "Request-Id": [ - "fe6ea008-4919-468d-b47a-3355bd926d9f" + "4b8608a4-2540-4d45-9479-b15cb1b88aa7" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/af4f7c7d-8012-403c-83e0-a5260308220e/roles/cb02c802-e78b-4664-9f35-7bbebdd9a540" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/af630ecc-9123-472e-a2fb-9f25f5f87fb4/roles/4a8f9740-4ecb-4608-bc27-bd122addc0e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:37 GMT" + "Tue, 29 Oct 2019 13:18:21 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"cb02c802-e78b-4664-9f35-7bbebdd9a540\"", + "ResponseBody": "\"4a8f9740-4ecb-4608-bc27-bd122addc0e6\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/af4f7c7d-8012-403c-83e0-a5260308220e/roles/cb02c802-e78b-4664-9f35-7bbebdd9a540", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvYWY0ZjdjN2QtODAxMi00MDNjLTgzZTAtYTUyNjAzMDgyMjBlL3JvbGVzL2NiMDJjODAyLWU3OGItNDY2NC05ZjM1LTdiYmViZGQ5YTU0MA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/af630ecc-9123-472e-a2fb-9f25f5f87fb4/roles/4a8f9740-4ecb-4608-bc27-bd122addc0e6", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy9hZjYzMGVjYy05MTIzLTQ3MmUtYTJmYi05ZjI1ZjVmODdmYjQvcm9sZXMvNGE4Zjk3NDAtNGVjYi00NjA4LWJjMjctYmQxMjJhZGRjMGU2", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "51e03680-63b0-42c7-a545-0f8eb8928e82" + "84c0b171-da5b-4c13-bec2-b43a3410b77f" ], "Request-Id": [ - "51e03680-63b0-42c7-a545-0f8eb8928e82" + "84c0b171-da5b-4c13-bec2-b43a3410b77f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:37 GMT" + "Tue, 29 Oct 2019 13:18:21 GMT" ], "Content-Length": [ "51" @@ -187,19 +187,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/af4f7c7d-8012-403c-83e0-a5260308220e/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvYWY0ZjdjN2QtODAxMi00MDNjLTgzZTAtYTUyNjAzMDgyMjBlL3JvbGVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/af630ecc-9123-472e-a2fb-9f25f5f87fb4/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy9hZjYzMGVjYy05MTIzLTQ3MmUtYTJmYi05ZjI1ZjVmODdmYjQvcm9sZXM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "c42d0935-8895-41c3-aada-12fc30abb48a" + "c3b60943-f0e6-4968-8277-f50fbab28a56" ], "Request-Id": [ - "c42d0935-8895-41c3-aada-12fc30abb48a" + "c3b60943-f0e6-4968-8277-f50fbab28a56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:38 GMT" + "Tue, 29 Oct 2019 13:18:22 GMT" ], "Content-Length": [ "2" @@ -241,19 +241,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/af4f7c7d-8012-403c-83e0-a5260308220e", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvYWY0ZjdjN2QtODAxMi00MDNjLTgzZTAtYTUyNjAzMDgyMjBl", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/af630ecc-9123-472e-a2fb-9f25f5f87fb4", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy9hZjYzMGVjYy05MTIzLTQ3MmUtYTJmYi05ZjI1ZjVmODdmYjQ=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -264,10 +264,10 @@ "no-cache" ], "Apim-Request-Id": [ - "f7d594f0-36a8-45af-a9d7-b07d4988e7b5" + "1c6a67fa-ad0e-448c-bcce-ebfa637c6142" ], "Request-Id": [ - "f7d594f0-36a8-45af-a9d7-b07d4988e7b5" + "1c6a67fa-ad0e-448c-bcce-ebfa637c6142" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -282,7 +282,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:38 GMT" + "Tue, 29 Oct 2019 13:18:22 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeleteSimpleEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeleteSimpleEntityRole.json index b86692f9bed6..662bb504b5cc 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeleteSimpleEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/DeleteSimpleEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple entity\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/6da07aca-1ace-4d2c-a46f-f4c3a74d0cdd" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/f706c00c-ae9f-4fb7-9253-b928eb43b9fe" ], "Apim-Request-Id": [ - "908a5b0a-4577-4a63-b2b2-3e774e80680f" + "102a9947-96bb-463f-a252-7335e628cc2b" ], "Request-Id": [ - "908a5b0a-4577-4a63-b2b2-3e774e80680f" + "102a9947-96bb-463f-a252-7335e628cc2b" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/6da07aca-1ace-4d2c-a46f-f4c3a74d0cdd" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/f706c00c-ae9f-4fb7-9253-b928eb43b9fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:56 GMT" + "Tue, 29 Oct 2019 13:18:40 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"6da07aca-1ace-4d2c-a46f-f4c3a74d0cdd\"", + "ResponseBody": "\"f706c00c-ae9f-4fb7-9253-b928eb43b9fe\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/6da07aca-1ace-4d2c-a46f-f4c3a74d0cdd/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzLzZkYTA3YWNhLTFhY2UtNGQyYy1hNDZmLWY0YzNhNzRkMGNkZC9yb2xlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/f706c00c-ae9f-4fb7-9253-b928eb43b9fe/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvZjcwNmMwMGMtYWU5Zi00ZmI3LTkyNTMtYjkyOGViNDNiOWZlL3JvbGVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/6da07aca-1ace-4d2c-a46f-f4c3a74d0cdd/roles/43749ae0-7faf-4f11-8a74-2542bb6866ce" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/f706c00c-ae9f-4fb7-9253-b928eb43b9fe/roles/97a86066-c11a-4b9c-b626-502c6ad9e3a0" ], "Apim-Request-Id": [ - "c7f7fc47-21da-4557-afd6-459e2753f009" + "380ff41a-5694-4f18-afc2-49d7749917bf" ], "Request-Id": [ - "c7f7fc47-21da-4557-afd6-459e2753f009" + "380ff41a-5694-4f18-afc2-49d7749917bf" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/6da07aca-1ace-4d2c-a46f-f4c3a74d0cdd/roles/43749ae0-7faf-4f11-8a74-2542bb6866ce" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/f706c00c-ae9f-4fb7-9253-b928eb43b9fe/roles/97a86066-c11a-4b9c-b626-502c6ad9e3a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:56 GMT" + "Tue, 29 Oct 2019 13:18:40 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"43749ae0-7faf-4f11-8a74-2542bb6866ce\"", + "ResponseBody": "\"97a86066-c11a-4b9c-b626-502c6ad9e3a0\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/6da07aca-1ace-4d2c-a46f-f4c3a74d0cdd/roles/43749ae0-7faf-4f11-8a74-2542bb6866ce", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzLzZkYTA3YWNhLTFhY2UtNGQyYy1hNDZmLWY0YzNhNzRkMGNkZC9yb2xlcy80Mzc0OWFlMC03ZmFmLTRmMTEtOGE3NC0yNTQyYmI2ODY2Y2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/f706c00c-ae9f-4fb7-9253-b928eb43b9fe/roles/97a86066-c11a-4b9c-b626-502c6ad9e3a0", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvZjcwNmMwMGMtYWU5Zi00ZmI3LTkyNTMtYjkyOGViNDNiOWZlL3JvbGVzLzk3YTg2MDY2LWMxMWEtNGI5Yy1iNjI2LTUwMmM2YWQ5ZTNhMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "f6177d96-2745-4783-8f39-4c959444cc46" + "68fe2f93-19be-41c6-8121-f26ccae93cb5" ], "Request-Id": [ - "f6177d96-2745-4783-8f39-4c959444cc46" + "68fe2f93-19be-41c6-8121-f26ccae93cb5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:57 GMT" + "Tue, 29 Oct 2019 13:18:40 GMT" ], "Content-Length": [ "51" @@ -187,19 +187,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/6da07aca-1ace-4d2c-a46f-f4c3a74d0cdd/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzLzZkYTA3YWNhLTFhY2UtNGQyYy1hNDZmLWY0YzNhNzRkMGNkZC9yb2xlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/f706c00c-ae9f-4fb7-9253-b928eb43b9fe/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvZjcwNmMwMGMtYWU5Zi00ZmI3LTkyNTMtYjkyOGViNDNiOWZlL3JvbGVz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "733c2add-d117-4133-ab75-bcd01dc21f96" + "625b3315-1d36-41f3-a158-e3eafbb88c96" ], "Request-Id": [ - "733c2add-d117-4133-ab75-bcd01dc21f96" + "625b3315-1d36-41f3-a158-e3eafbb88c96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:57 GMT" + "Tue, 29 Oct 2019 13:18:41 GMT" ], "Content-Length": [ "2" @@ -241,19 +241,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/6da07aca-1ace-4d2c-a46f-f4c3a74d0cdd", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzLzZkYTA3YWNhLTFhY2UtNGQyYy1hNDZmLWY0YzNhNzRkMGNkZA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/f706c00c-ae9f-4fb7-9253-b928eb43b9fe", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvZjcwNmMwMGMtYWU5Zi00ZmI3LTkyNTMtYjkyOGViNDNiOWZl", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -264,10 +264,10 @@ "no-cache" ], "Apim-Request-Id": [ - "0bb2c577-a8c1-4169-9e8b-c0572a988687" + "b86abe3e-39a8-4b5f-b212-8e3a5da246c5" ], "Request-Id": [ - "0bb2c577-a8c1-4169-9e8b-c0572a988687" + "b86abe3e-39a8-4b5f-b212-8e3a5da246c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -282,7 +282,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:57 GMT" + "Tue, 29 Oct 2019 13:18:41 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetClosedListEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetClosedListEntityRole.json index 44ac7645609b..cd6a15404dc2 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetClosedListEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetClosedListEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3Rz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"subLists\": [\r\n {\r\n \"canonicalForm\": \"test\",\r\n \"list\": []\r\n }\r\n ],\r\n \"name\": \"closed list model\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/e4787161-24d1-40d2-9ff7-77dd6977a73b" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/cbdb097d-21fd-4ed8-8e46-8ecabde7d620" ], "Apim-Request-Id": [ - "490a1077-51dc-45a7-895f-8c15e68280a6" + "4b5c1393-09e0-4bf6-b493-4d8c2992a581" ], "Request-Id": [ - "490a1077-51dc-45a7-895f-8c15e68280a6" + "4b5c1393-09e0-4bf6-b493-4d8c2992a581" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/e4787161-24d1-40d2-9ff7-77dd6977a73b" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/cbdb097d-21fd-4ed8-8e46-8ecabde7d620" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:26 GMT" + "Tue, 29 Oct 2019 13:17:54 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"e4787161-24d1-40d2-9ff7-77dd6977a73b\"", + "ResponseBody": "\"cbdb097d-21fd-4ed8-8e46-8ecabde7d620\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/e4787161-24d1-40d2-9ff7-77dd6977a73b/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzL2U0Nzg3MTYxLTI0ZDEtNDBkMi05ZmY3LTc3ZGQ2OTc3YTczYi9yb2xlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/cbdb097d-21fd-4ed8-8e46-8ecabde7d620/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvY2JkYjA5N2QtMjFmZC00ZWQ4LThlNDYtOGVjYWJkZTdkNjIwL3JvbGVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/e4787161-24d1-40d2-9ff7-77dd6977a73b/roles/f96393a0-3a33-49b0-8e82-fffd83290b2c" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/cbdb097d-21fd-4ed8-8e46-8ecabde7d620/roles/49439998-258e-4eea-b4f3-f8958cdd7300" ], "Apim-Request-Id": [ - "dc0e7a3e-4ec7-45ee-9bf9-60f644e93522" + "1af2e644-f68e-41fe-8cc4-1afc1db2e8c7" ], "Request-Id": [ - "dc0e7a3e-4ec7-45ee-9bf9-60f644e93522" + "1af2e644-f68e-41fe-8cc4-1afc1db2e8c7" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/e4787161-24d1-40d2-9ff7-77dd6977a73b/roles/f96393a0-3a33-49b0-8e82-fffd83290b2c" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/cbdb097d-21fd-4ed8-8e46-8ecabde7d620/roles/49439998-258e-4eea-b4f3-f8958cdd7300" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:27 GMT" + "Tue, 29 Oct 2019 13:17:54 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"f96393a0-3a33-49b0-8e82-fffd83290b2c\"", + "ResponseBody": "\"49439998-258e-4eea-b4f3-f8958cdd7300\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/e4787161-24d1-40d2-9ff7-77dd6977a73b/roles/f96393a0-3a33-49b0-8e82-fffd83290b2c", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzL2U0Nzg3MTYxLTI0ZDEtNDBkMi05ZmY3LTc3ZGQ2OTc3YTczYi9yb2xlcy9mOTYzOTNhMC0zYTMzLTQ5YjAtOGU4Mi1mZmZkODMyOTBiMmM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/cbdb097d-21fd-4ed8-8e46-8ecabde7d620/roles/49439998-258e-4eea-b4f3-f8958cdd7300", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvY2JkYjA5N2QtMjFmZC00ZWQ4LThlNDYtOGVjYWJkZTdkNjIwL3JvbGVzLzQ5NDM5OTk4LTI1OGUtNGVlYS1iNGYzLWY4OTU4Y2RkNzMwMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "5ce0fa67-d438-4d16-a806-3b43c6e270c1" + "a9da82c5-71ae-4b9c-9d3c-2384742b3043" ], "Request-Id": [ - "5ce0fa67-d438-4d16-a806-3b43c6e270c1" + "a9da82c5-71ae-4b9c-9d3c-2384742b3043" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:27 GMT" + "Tue, 29 Oct 2019 13:17:54 GMT" ], "Content-Length": [ "66" @@ -183,23 +183,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"f96393a0-3a33-49b0-8e82-fffd83290b2c\",\r\n \"name\": \"simple role\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"49439998-258e-4eea-b4f3-f8958cdd7300\",\r\n \"name\": \"simple role\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/e4787161-24d1-40d2-9ff7-77dd6977a73b", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzL2U0Nzg3MTYxLTI0ZDEtNDBkMi05ZmY3LTc3ZGQ2OTc3YTczYg==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/cbdb097d-21fd-4ed8-8e46-8ecabde7d620", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvY2JkYjA5N2QtMjFmZC00ZWQ4LThlNDYtOGVjYWJkZTdkNjIw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "1bda2918-3534-4409-a167-f3e5887acf37" + "de58f8e9-451f-4368-85f0-61e279413ee3" ], "Request-Id": [ - "1bda2918-3534-4409-a167-f3e5887acf37" + "de58f8e9-451f-4368-85f0-61e279413ee3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:27 GMT" + "Tue, 29 Oct 2019 13:17:55 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetClosedListEntityRoles.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetClosedListEntityRoles.json index 027ff60a4850..8786b91c1058 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetClosedListEntityRoles.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetClosedListEntityRoles.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3Rz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"subLists\": [\r\n {\r\n \"canonicalForm\": \"test\",\r\n \"list\": []\r\n }\r\n ],\r\n \"name\": \"closed list model\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/e93a7275-382a-45f0-940f-9db098f6755d" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/95958af0-3435-405c-8da8-0bc115729e15" ], "Apim-Request-Id": [ - "d6e34e1a-93fc-44b4-9faf-56582d987f0e" + "bb6d7c32-165a-4298-ac08-0bf10fc72f0b" ], "Request-Id": [ - "d6e34e1a-93fc-44b4-9faf-56582d987f0e" + "bb6d7c32-165a-4298-ac08-0bf10fc72f0b" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/e93a7275-382a-45f0-940f-9db098f6755d" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/95958af0-3435-405c-8da8-0bc115729e15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:45 GMT" + "Tue, 29 Oct 2019 13:17:34 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"e93a7275-382a-45f0-940f-9db098f6755d\"", + "ResponseBody": "\"95958af0-3435-405c-8da8-0bc115729e15\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/e93a7275-382a-45f0-940f-9db098f6755d/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzL2U5M2E3Mjc1LTM4MmEtNDVmMC05NDBmLTlkYjA5OGY2NzU1ZC9yb2xlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/95958af0-3435-405c-8da8-0bc115729e15/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvOTU5NThhZjAtMzQzNS00MDVjLThkYTgtMGJjMTE1NzI5ZTE1L3JvbGVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/e93a7275-382a-45f0-940f-9db098f6755d/roles/05792627-0cc8-4b8b-a51c-2227dfc7c587" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/95958af0-3435-405c-8da8-0bc115729e15/roles/bcf70be8-01ec-420a-8cbc-6e5aead5da06" ], "Apim-Request-Id": [ - "dbb90e4c-d381-4787-a44a-4d6b64522022" + "a8303fab-4d9e-4428-8c50-52e8d6a79c2b" ], "Request-Id": [ - "dbb90e4c-d381-4787-a44a-4d6b64522022" + "a8303fab-4d9e-4428-8c50-52e8d6a79c2b" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/e93a7275-382a-45f0-940f-9db098f6755d/roles/05792627-0cc8-4b8b-a51c-2227dfc7c587" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/95958af0-3435-405c-8da8-0bc115729e15/roles/bcf70be8-01ec-420a-8cbc-6e5aead5da06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:46 GMT" + "Tue, 29 Oct 2019 13:17:35 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"05792627-0cc8-4b8b-a51c-2227dfc7c587\"", + "ResponseBody": "\"bcf70be8-01ec-420a-8cbc-6e5aead5da06\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/e93a7275-382a-45f0-940f-9db098f6755d/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzL2U5M2E3Mjc1LTM4MmEtNDVmMC05NDBmLTlkYjA5OGY2NzU1ZC9yb2xlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/95958af0-3435-405c-8da8-0bc115729e15/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvOTU5NThhZjAtMzQzNS00MDVjLThkYTgtMGJjMTE1NzI5ZTE1L3JvbGVz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "b1088670-72fb-48b9-9746-dd9679f1ecfa" + "ad9fe8d2-11dc-4ca9-b112-07836da8672f" ], "Request-Id": [ - "b1088670-72fb-48b9-9746-dd9679f1ecfa" + "ad9fe8d2-11dc-4ca9-b112-07836da8672f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:46 GMT" + "Tue, 29 Oct 2019 13:17:35 GMT" ], "Content-Length": [ "68" @@ -183,23 +183,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"05792627-0cc8-4b8b-a51c-2227dfc7c587\",\r\n \"name\": \"simple role\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"bcf70be8-01ec-420a-8cbc-6e5aead5da06\",\r\n \"name\": \"simple role\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/e93a7275-382a-45f0-940f-9db098f6755d", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzL2U5M2E3Mjc1LTM4MmEtNDVmMC05NDBmLTlkYjA5OGY2NzU1ZA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/95958af0-3435-405c-8da8-0bc115729e15", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvOTU5NThhZjAtMzQzNS00MDVjLThkYTgtMGJjMTE1NzI5ZTE1", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "2fe2d441-7fa9-4edd-9b30-d2e13e3541c4" + "7593f75e-b640-4c49-bc2a-ccfc66b5b261" ], "Request-Id": [ - "2fe2d441-7fa9-4edd-9b30-d2e13e3541c4" + "7593f75e-b640-4c49-bc2a-ccfc66b5b261" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:46 GMT" + "Tue, 29 Oct 2019 13:17:36 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetCustomPrebuiltDomainEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetCustomPrebuiltDomainEntityRole.json index 124332037226..e3d9127d1c3e 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetCustomPrebuiltDomainEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetCustomPrebuiltDomainEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZW50aXRpZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRlbnRpdGllcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"domainName\": \"Communication\",\r\n \"modelName\": \"ContactName\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/e0bc6b22-a3b2-4a92-be30-1b6884ec2860" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/2bffce2e-28cb-4933-8c70-4edf455e6b86" ], "Apim-Request-Id": [ - "8c2a367e-f634-44e0-8984-852ffe72cd46" + "c0292140-8b7e-45cd-91d6-d19e37cc0823" ], "Request-Id": [ - "8c2a367e-f634-44e0-8984-852ffe72cd46" + "c0292140-8b7e-45cd-91d6-d19e37cc0823" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/e0bc6b22-a3b2-4a92-be30-1b6884ec2860" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/2bffce2e-28cb-4933-8c70-4edf455e6b86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:05 GMT" + "Tue, 29 Oct 2019 13:18:36 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"e0bc6b22-a3b2-4a92-be30-1b6884ec2860\"", + "ResponseBody": "\"2bffce2e-28cb-4933-8c70-4edf455e6b86\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/e0bc6b22-a3b2-4a92-be30-1b6884ec2860/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZW50aXRpZXMvZTBiYzZiMjItYTNiMi00YTkyLWJlMzAtMWI2ODg0ZWMyODYwL3JvbGVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/2bffce2e-28cb-4933-8c70-4edf455e6b86/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRlbnRpdGllcy8yYmZmY2UyZS0yOGNiLTQ5MzMtOGM3MC00ZWRmNDU1ZTZiODYvcm9sZXM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/e0bc6b22-a3b2-4a92-be30-1b6884ec2860/roles/4d81eb25-cd60-4e76-909f-972346fc0088" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/2bffce2e-28cb-4933-8c70-4edf455e6b86/roles/2931a15a-33c4-466c-8061-7f00c5f95e18" ], "Apim-Request-Id": [ - "69aca571-8143-4a77-9c13-aacf989f558d" + "14653cf4-aea9-4905-b2b1-70292c377ae5" ], "Request-Id": [ - "69aca571-8143-4a77-9c13-aacf989f558d" + "14653cf4-aea9-4905-b2b1-70292c377ae5" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/e0bc6b22-a3b2-4a92-be30-1b6884ec2860/roles/4d81eb25-cd60-4e76-909f-972346fc0088" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/2bffce2e-28cb-4933-8c70-4edf455e6b86/roles/2931a15a-33c4-466c-8061-7f00c5f95e18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:05 GMT" + "Tue, 29 Oct 2019 13:18:36 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"4d81eb25-cd60-4e76-909f-972346fc0088\"", + "ResponseBody": "\"2931a15a-33c4-466c-8061-7f00c5f95e18\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/e0bc6b22-a3b2-4a92-be30-1b6884ec2860/roles/4d81eb25-cd60-4e76-909f-972346fc0088", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZW50aXRpZXMvZTBiYzZiMjItYTNiMi00YTkyLWJlMzAtMWI2ODg0ZWMyODYwL3JvbGVzLzRkODFlYjI1LWNkNjAtNGU3Ni05MDlmLTk3MjM0NmZjMDA4OA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/2bffce2e-28cb-4933-8c70-4edf455e6b86/roles/2931a15a-33c4-466c-8061-7f00c5f95e18", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRlbnRpdGllcy8yYmZmY2UyZS0yOGNiLTQ5MzMtOGM3MC00ZWRmNDU1ZTZiODYvcm9sZXMvMjkzMWExNWEtMzNjNC00NjZjLTgwNjEtN2YwMGM1Zjk1ZTE4", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "aefe5da1-c899-451b-9bc9-ebb9104a9f40" + "90c736cd-2b01-4842-8bf4-b9be259904e8" ], "Request-Id": [ - "aefe5da1-c899-451b-9bc9-ebb9104a9f40" + "90c736cd-2b01-4842-8bf4-b9be259904e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:05 GMT" + "Tue, 29 Oct 2019 13:18:36 GMT" ], "Content-Length": [ "66" @@ -183,23 +183,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"4d81eb25-cd60-4e76-909f-972346fc0088\",\r\n \"name\": \"simple role\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"2931a15a-33c4-466c-8061-7f00c5f95e18\",\r\n \"name\": \"simple role\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/e0bc6b22-a3b2-4a92-be30-1b6884ec2860", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzL2UwYmM2YjIyLWEzYjItNGE5Mi1iZTMwLTFiNjg4NGVjMjg2MA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/2bffce2e-28cb-4933-8c70-4edf455e6b86", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvMmJmZmNlMmUtMjhjYi00OTMzLThjNzAtNGVkZjQ1NWU2Yjg2", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "ce927336-d4e2-4a41-9ff1-e76a86629c70" + "8e23a974-c343-4440-98db-2e2fdae4491a" ], "Request-Id": [ - "ce927336-d4e2-4a41-9ff1-e76a86629c70" + "8e23a974-c343-4440-98db-2e2fdae4491a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:06 GMT" + "Tue, 29 Oct 2019 13:18:37 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetCustomPrebuiltDomainEntityRoles.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetCustomPrebuiltDomainEntityRoles.json index 63d0fe6a8431..ab8a1118949b 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetCustomPrebuiltDomainEntityRoles.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetCustomPrebuiltDomainEntityRoles.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZW50aXRpZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRlbnRpdGllcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"domainName\": \"Communication\",\r\n \"modelName\": \"ContactName\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/2f64352f-21cd-4249-930a-905b1a2086dd" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/8f606c0c-8ef4-4df2-b8c0-c0167768d159" ], "Apim-Request-Id": [ - "313578da-8a0b-4c13-a216-53ff4622c4bf" + "5ebde7db-611f-4b7b-b11d-cda0c194e615" ], "Request-Id": [ - "313578da-8a0b-4c13-a216-53ff4622c4bf" + "5ebde7db-611f-4b7b-b11d-cda0c194e615" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/2f64352f-21cd-4249-930a-905b1a2086dd" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/8f606c0c-8ef4-4df2-b8c0-c0167768d159" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:47 GMT" + "Tue, 29 Oct 2019 13:17:31 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"2f64352f-21cd-4249-930a-905b1a2086dd\"", + "ResponseBody": "\"8f606c0c-8ef4-4df2-b8c0-c0167768d159\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/2f64352f-21cd-4249-930a-905b1a2086dd/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZW50aXRpZXMvMmY2NDM1MmYtMjFjZC00MjQ5LTkzMGEtOTA1YjFhMjA4NmRkL3JvbGVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/8f606c0c-8ef4-4df2-b8c0-c0167768d159/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRlbnRpdGllcy84ZjYwNmMwYy04ZWY0LTRkZjItYjhjMC1jMDE2Nzc2OGQxNTkvcm9sZXM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/2f64352f-21cd-4249-930a-905b1a2086dd/roles/47ad5ba5-e462-4be7-9d61-ca3cacb4c64e" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/8f606c0c-8ef4-4df2-b8c0-c0167768d159/roles/08ba638a-0e23-452c-b9dc-2518a8da6f91" ], "Apim-Request-Id": [ - "4e1cda33-0071-48c4-8f67-9b40ac0d7ba7" + "7d5cd79e-47e9-40eb-b510-683effb9805c" ], "Request-Id": [ - "4e1cda33-0071-48c4-8f67-9b40ac0d7ba7" + "7d5cd79e-47e9-40eb-b510-683effb9805c" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/2f64352f-21cd-4249-930a-905b1a2086dd/roles/47ad5ba5-e462-4be7-9d61-ca3cacb4c64e" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/8f606c0c-8ef4-4df2-b8c0-c0167768d159/roles/08ba638a-0e23-452c-b9dc-2518a8da6f91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:48 GMT" + "Tue, 29 Oct 2019 13:17:31 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"47ad5ba5-e462-4be7-9d61-ca3cacb4c64e\"", + "ResponseBody": "\"08ba638a-0e23-452c-b9dc-2518a8da6f91\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/2f64352f-21cd-4249-930a-905b1a2086dd/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZW50aXRpZXMvMmY2NDM1MmYtMjFjZC00MjQ5LTkzMGEtOTA1YjFhMjA4NmRkL3JvbGVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/8f606c0c-8ef4-4df2-b8c0-c0167768d159/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRlbnRpdGllcy84ZjYwNmMwYy04ZWY0LTRkZjItYjhjMC1jMDE2Nzc2OGQxNTkvcm9sZXM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "0a0b3112-f0a6-48c6-9568-a28140563bdd" + "1db446d3-3345-4b10-9da5-198ce6a80a21" ], "Request-Id": [ - "0a0b3112-f0a6-48c6-9568-a28140563bdd" + "1db446d3-3345-4b10-9da5-198ce6a80a21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:48 GMT" + "Tue, 29 Oct 2019 13:17:31 GMT" ], "Content-Length": [ "68" @@ -183,23 +183,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"47ad5ba5-e462-4be7-9d61-ca3cacb4c64e\",\r\n \"name\": \"simple role\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"08ba638a-0e23-452c-b9dc-2518a8da6f91\",\r\n \"name\": \"simple role\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/2f64352f-21cd-4249-930a-905b1a2086dd", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzLzJmNjQzNTJmLTIxY2QtNDI0OS05MzBhLTkwNWIxYTIwODZkZA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/8f606c0c-8ef4-4df2-b8c0-c0167768d159", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvOGY2MDZjMGMtOGVmNC00ZGYyLWI4YzAtYzAxNjc3NjhkMTU5", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "9471e700-4ec8-45fa-bcae-9f6e1c00aa5e" + "9dc292ba-b620-4df8-8087-0e22c7b04611" ], "Request-Id": [ - "9471e700-4ec8-45fa-bcae-9f6e1c00aa5e" + "9dc292ba-b620-4df8-8087-0e22c7b04611" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:48 GMT" + "Tue, 29 Oct 2019 13:17:32 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetPatternAnyEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetPatternAnyEntityRole.json index cd5f0ed52a30..1328427fce2c 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetPatternAnyEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetPatternAnyEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"Pattern.Any model\",\r\n \"explicitList\": []\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/de8b4fe1-49fc-4351-a418-7b7e21039879" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/c48db313-56ba-472a-ae8a-7342b38220b4" ], "Apim-Request-Id": [ - "6f7eecef-9eec-44e5-9536-e9a5155364c8" + "55612a13-de15-47ab-823f-31f404f30d1a" ], "Request-Id": [ - "6f7eecef-9eec-44e5-9536-e9a5155364c8" + "55612a13-de15-47ab-823f-31f404f30d1a" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/de8b4fe1-49fc-4351-a418-7b7e21039879" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/c48db313-56ba-472a-ae8a-7342b38220b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:57 GMT" + "Tue, 29 Oct 2019 13:18:28 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"de8b4fe1-49fc-4351-a418-7b7e21039879\"", + "ResponseBody": "\"c48db313-56ba-472a-ae8a-7342b38220b4\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/de8b4fe1-49fc-4351-a418-7b7e21039879/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy9kZThiNGZlMS00OWZjLTQzNTEtYTQxOC03YjdlMjEwMzk4Nzkvcm9sZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/c48db313-56ba-472a-ae8a-7342b38220b4/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzL2M0OGRiMzEzLTU2YmEtNDcyYS1hZThhLTczNDJiMzgyMjBiNC9yb2xlcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/de8b4fe1-49fc-4351-a418-7b7e21039879/roles/d055755f-2956-4c7a-b201-6416b6afdf01" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/c48db313-56ba-472a-ae8a-7342b38220b4/roles/c289c057-3529-4d68-a381-1ef7db536dc6" ], "Apim-Request-Id": [ - "a5e89f89-3388-4ed1-b605-db69cd797e1b" + "b5f1783e-3093-4e6e-b7b1-665560716623" ], "Request-Id": [ - "a5e89f89-3388-4ed1-b605-db69cd797e1b" + "b5f1783e-3093-4e6e-b7b1-665560716623" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/de8b4fe1-49fc-4351-a418-7b7e21039879/roles/d055755f-2956-4c7a-b201-6416b6afdf01" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/c48db313-56ba-472a-ae8a-7342b38220b4/roles/c289c057-3529-4d68-a381-1ef7db536dc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:57 GMT" + "Tue, 29 Oct 2019 13:18:28 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"d055755f-2956-4c7a-b201-6416b6afdf01\"", + "ResponseBody": "\"c289c057-3529-4d68-a381-1ef7db536dc6\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/de8b4fe1-49fc-4351-a418-7b7e21039879/roles/d055755f-2956-4c7a-b201-6416b6afdf01", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy9kZThiNGZlMS00OWZjLTQzNTEtYTQxOC03YjdlMjEwMzk4Nzkvcm9sZXMvZDA1NTc1NWYtMjk1Ni00YzdhLWIyMDEtNjQxNmI2YWZkZjAx", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/c48db313-56ba-472a-ae8a-7342b38220b4/roles/c289c057-3529-4d68-a381-1ef7db536dc6", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzL2M0OGRiMzEzLTU2YmEtNDcyYS1hZThhLTczNDJiMzgyMjBiNC9yb2xlcy9jMjg5YzA1Ny0zNTI5LTRkNjgtYTM4MS0xZWY3ZGI1MzZkYzY=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "81edd608-fac5-45ec-8456-07b2a948316d" + "06f195ae-af84-4b3e-a4ec-b12c6d981325" ], "Request-Id": [ - "81edd608-fac5-45ec-8456-07b2a948316d" + "06f195ae-af84-4b3e-a4ec-b12c6d981325" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:58 GMT" + "Tue, 29 Oct 2019 13:18:29 GMT" ], "Content-Length": [ "66" @@ -183,23 +183,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"d055755f-2956-4c7a-b201-6416b6afdf01\",\r\n \"name\": \"simple role\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"c289c057-3529-4d68-a381-1ef7db536dc6\",\r\n \"name\": \"simple role\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/de8b4fe1-49fc-4351-a418-7b7e21039879", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy9kZThiNGZlMS00OWZjLTQzNTEtYTQxOC03YjdlMjEwMzk4Nzk=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/c48db313-56ba-472a-ae8a-7342b38220b4", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzL2M0OGRiMzEzLTU2YmEtNDcyYS1hZThhLTczNDJiMzgyMjBiNA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "97ac190e-eecf-469a-b163-196ac2f3b351" + "7227243c-1a4b-4cd0-99a9-e92eb41f3d15" ], "Request-Id": [ - "97ac190e-eecf-469a-b163-196ac2f3b351" + "7227243c-1a4b-4cd0-99a9-e92eb41f3d15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:58 GMT" + "Tue, 29 Oct 2019 13:18:29 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetPatternAnyEntityRoles.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetPatternAnyEntityRoles.json index 3c0b00ae3d99..5fa9ab465e25 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetPatternAnyEntityRoles.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetPatternAnyEntityRoles.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"Pattern.Any model\",\r\n \"explicitList\": []\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/0e6f548d-9b95-4e26-9162-b24b33fb2a7b" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/38dc4fbe-db38-4293-ba13-a2ecf1a56dc1" ], "Apim-Request-Id": [ - "1cd957e6-74b6-4d3d-819f-c4b9aeb95e0c" + "b18a5dc2-0c2b-4120-bca8-0f369c6367ae" ], "Request-Id": [ - "1cd957e6-74b6-4d3d-819f-c4b9aeb95e0c" + "b18a5dc2-0c2b-4120-bca8-0f369c6367ae" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/0e6f548d-9b95-4e26-9162-b24b33fb2a7b" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/38dc4fbe-db38-4293-ba13-a2ecf1a56dc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:51 GMT" + "Tue, 29 Oct 2019 13:18:44 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"0e6f548d-9b95-4e26-9162-b24b33fb2a7b\"", + "ResponseBody": "\"38dc4fbe-db38-4293-ba13-a2ecf1a56dc1\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/0e6f548d-9b95-4e26-9162-b24b33fb2a7b/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy8wZTZmNTQ4ZC05Yjk1LTRlMjYtOTE2Mi1iMjRiMzNmYjJhN2Ivcm9sZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/38dc4fbe-db38-4293-ba13-a2ecf1a56dc1/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzM4ZGM0ZmJlLWRiMzgtNDI5My1iYTEzLWEyZWNmMWE1NmRjMS9yb2xlcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/0e6f548d-9b95-4e26-9162-b24b33fb2a7b/roles/cb6d046d-9594-4903-82eb-6bcf9379543e" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/38dc4fbe-db38-4293-ba13-a2ecf1a56dc1/roles/8d25a97f-dc43-403e-9ca8-e0e2d0e79f13" ], "Apim-Request-Id": [ - "de9df8ff-b454-4d99-bd1c-ef66dfd077fe" + "23d9741f-8c54-4105-998c-52e899473fa2" ], "Request-Id": [ - "de9df8ff-b454-4d99-bd1c-ef66dfd077fe" + "23d9741f-8c54-4105-998c-52e899473fa2" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/0e6f548d-9b95-4e26-9162-b24b33fb2a7b/roles/cb6d046d-9594-4903-82eb-6bcf9379543e" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/38dc4fbe-db38-4293-ba13-a2ecf1a56dc1/roles/8d25a97f-dc43-403e-9ca8-e0e2d0e79f13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:51 GMT" + "Tue, 29 Oct 2019 13:18:44 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"cb6d046d-9594-4903-82eb-6bcf9379543e\"", + "ResponseBody": "\"8d25a97f-dc43-403e-9ca8-e0e2d0e79f13\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/0e6f548d-9b95-4e26-9162-b24b33fb2a7b/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy8wZTZmNTQ4ZC05Yjk1LTRlMjYtOTE2Mi1iMjRiMzNmYjJhN2Ivcm9sZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/38dc4fbe-db38-4293-ba13-a2ecf1a56dc1/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzM4ZGM0ZmJlLWRiMzgtNDI5My1iYTEzLWEyZWNmMWE1NmRjMS9yb2xlcw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "5ea185b1-c924-4c5f-8869-465242d958f5" + "1d8b5f3a-f7cb-482a-9636-205403af564c" ], "Request-Id": [ - "5ea185b1-c924-4c5f-8869-465242d958f5" + "1d8b5f3a-f7cb-482a-9636-205403af564c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:51 GMT" + "Tue, 29 Oct 2019 13:18:44 GMT" ], "Content-Length": [ "68" @@ -183,23 +183,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"cb6d046d-9594-4903-82eb-6bcf9379543e\",\r\n \"name\": \"simple role\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"8d25a97f-dc43-403e-9ca8-e0e2d0e79f13\",\r\n \"name\": \"simple role\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/0e6f548d-9b95-4e26-9162-b24b33fb2a7b", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy8wZTZmNTQ4ZC05Yjk1LTRlMjYtOTE2Mi1iMjRiMzNmYjJhN2I=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/38dc4fbe-db38-4293-ba13-a2ecf1a56dc1", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzM4ZGM0ZmJlLWRiMzgtNDI5My1iYTEzLWEyZWNmMWE1NmRjMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "8e6418ce-4107-4054-9bc4-b38761c51a77" + "0e844e00-fcca-41dd-8d09-41c39018043a" ], "Request-Id": [ - "8e6418ce-4107-4054-9bc4-b38761c51a77" + "0e844e00-fcca-41dd-8d09-41c39018043a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:52 GMT" + "Tue, 29 Oct 2019 13:18:45 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetPrebuiltEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetPrebuiltEntityRole.json index a1aa1fbc812f..d07185afa5df 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetPrebuiltEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetPrebuiltEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRz", "RequestMethod": "POST", "RequestBody": "[\r\n \"money\"\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,10 +30,10 @@ "no-cache" ], "Apim-Request-Id": [ - "4bb65a9e-0ae3-41df-aab2-bfb5f5056375" + "83b9a592-b099-4a86-96a0-2f1c80e2c315" ], "Request-Id": [ - "4bb65a9e-0ae3-41df-aab2-bfb5f5056375" + "83b9a592-b099-4a86-96a0-2f1c80e2c315" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -48,7 +48,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:35 GMT" + "Tue, 29 Oct 2019 13:18:20 GMT" ], "Content-Length": [ "127" @@ -57,23 +57,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"38e7cdb2-7b7b-41e6-893c-73f4c2afc624\",\r\n \"name\": \"money\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"ed2b0425-3b07-4a13-9340-d41a8247f8d3\",\r\n \"name\": \"money\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/38e7cdb2-7b7b-41e6-893c-73f4c2afc624/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy8zOGU3Y2RiMi03YjdiLTQxZTYtODkzYy03M2Y0YzJhZmM2MjQvcm9sZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/ed2b0425-3b07-4a13-9340-d41a8247f8d3/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzL2VkMmIwNDI1LTNiMDctNGExMy05MzQwLWQ0MWE4MjQ3ZjhkMy9yb2xlcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -90,16 +90,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/38e7cdb2-7b7b-41e6-893c-73f4c2afc624/roles/4071bdc7-0c58-4b96-96e9-05efae3878de" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/ed2b0425-3b07-4a13-9340-d41a8247f8d3/roles/7a96ca84-7d33-4f6f-a349-00290e14b344" ], "Apim-Request-Id": [ - "80abf434-b79b-48ca-b54f-2830f0ff48dc" + "c162e29b-8e51-4e50-bf10-56d93dbd7c18" ], "Request-Id": [ - "80abf434-b79b-48ca-b54f-2830f0ff48dc" + "c162e29b-8e51-4e50-bf10-56d93dbd7c18" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/38e7cdb2-7b7b-41e6-893c-73f4c2afc624/roles/4071bdc7-0c58-4b96-96e9-05efae3878de" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/ed2b0425-3b07-4a13-9340-d41a8247f8d3/roles/7a96ca84-7d33-4f6f-a349-00290e14b344" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -114,7 +114,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:35 GMT" + "Tue, 29 Oct 2019 13:18:20 GMT" ], "Content-Length": [ "38" @@ -123,23 +123,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"4071bdc7-0c58-4b96-96e9-05efae3878de\"", + "ResponseBody": "\"7a96ca84-7d33-4f6f-a349-00290e14b344\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/38e7cdb2-7b7b-41e6-893c-73f4c2afc624/roles/4071bdc7-0c58-4b96-96e9-05efae3878de", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy8zOGU3Y2RiMi03YjdiLTQxZTYtODkzYy03M2Y0YzJhZmM2MjQvcm9sZXMvNDA3MWJkYzctMGM1OC00Yjk2LTk2ZTktMDVlZmFlMzg3OGRl", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/ed2b0425-3b07-4a13-9340-d41a8247f8d3/roles/7a96ca84-7d33-4f6f-a349-00290e14b344", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzL2VkMmIwNDI1LTNiMDctNGExMy05MzQwLWQ0MWE4MjQ3ZjhkMy9yb2xlcy83YTk2Y2E4NC03ZDMzLTRmNmYtYTM0OS0wMDI5MGUxNGIzNDQ=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -150,10 +150,10 @@ "no-cache" ], "Apim-Request-Id": [ - "35c86366-bb4c-4aab-8e70-0547bafd25c8" + "9e926a87-5b40-4f26-9212-65b009adeca0" ], "Request-Id": [ - "35c86366-bb4c-4aab-8e70-0547bafd25c8" + "9e926a87-5b40-4f26-9212-65b009adeca0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -168,7 +168,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:35 GMT" + "Tue, 29 Oct 2019 13:18:20 GMT" ], "Content-Length": [ "66" @@ -177,23 +177,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"4071bdc7-0c58-4b96-96e9-05efae3878de\",\r\n \"name\": \"simple role\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"7a96ca84-7d33-4f6f-a349-00290e14b344\",\r\n \"name\": \"simple role\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/38e7cdb2-7b7b-41e6-893c-73f4c2afc624", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy8zOGU3Y2RiMi03YjdiLTQxZTYtODkzYy03M2Y0YzJhZmM2MjQ=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/ed2b0425-3b07-4a13-9340-d41a8247f8d3", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzL2VkMmIwNDI1LTNiMDctNGExMy05MzQwLWQ0MWE4MjQ3ZjhkMw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "e5975a8e-63bc-4db0-ba31-92291d7a24b7" + "90fea8b9-e93e-4faa-b1e0-1adc6bfb8a30" ], "Request-Id": [ - "e5975a8e-63bc-4db0-ba31-92291d7a24b7" + "90fea8b9-e93e-4faa-b1e0-1adc6bfb8a30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,7 +222,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:35 GMT" + "Tue, 29 Oct 2019 13:18:21 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetPrebuiltEntityRoles.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetPrebuiltEntityRoles.json index 758074cba677..781a0c966b35 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetPrebuiltEntityRoles.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetPrebuiltEntityRoles.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRz", "RequestMethod": "POST", "RequestBody": "[\r\n \"money\"\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,10 +30,10 @@ "no-cache" ], "Apim-Request-Id": [ - "e3b8dbf6-b643-48e2-9373-cb43350eb4ee" + "0aa4e8ba-a2ef-416c-add0-6e11184c22b0" ], "Request-Id": [ - "e3b8dbf6-b643-48e2-9373-cb43350eb4ee" + "0aa4e8ba-a2ef-416c-add0-6e11184c22b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -48,7 +48,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:49 GMT" + "Tue, 29 Oct 2019 13:17:22 GMT" ], "Content-Length": [ "127" @@ -57,23 +57,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"39cd7bad-bd34-4a13-b401-a7c845c6c829\",\r\n \"name\": \"money\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"db69d84e-9865-411c-87d1-83ed0ff28589\",\r\n \"name\": \"money\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/39cd7bad-bd34-4a13-b401-a7c845c6c829/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy8zOWNkN2JhZC1iZDM0LTRhMTMtYjQwMS1hN2M4NDVjNmM4Mjkvcm9sZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/db69d84e-9865-411c-87d1-83ed0ff28589/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzL2RiNjlkODRlLTk4NjUtNDExYy04N2QxLTgzZWQwZmYyODU4OS9yb2xlcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -90,16 +90,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/39cd7bad-bd34-4a13-b401-a7c845c6c829/roles/d225fb03-e130-4a6c-a260-91ea589f4325" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/db69d84e-9865-411c-87d1-83ed0ff28589/roles/3980ac5d-01ce-431b-ba05-cc850e896c35" ], "Apim-Request-Id": [ - "52a72ccc-a574-47fa-be52-0e03d995bc92" + "e4684d96-6915-4ce8-9bd6-7ebe32ae9e08" ], "Request-Id": [ - "52a72ccc-a574-47fa-be52-0e03d995bc92" + "e4684d96-6915-4ce8-9bd6-7ebe32ae9e08" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/39cd7bad-bd34-4a13-b401-a7c845c6c829/roles/d225fb03-e130-4a6c-a260-91ea589f4325" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/db69d84e-9865-411c-87d1-83ed0ff28589/roles/3980ac5d-01ce-431b-ba05-cc850e896c35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -114,7 +114,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:50 GMT" + "Tue, 29 Oct 2019 13:17:22 GMT" ], "Content-Length": [ "38" @@ -123,23 +123,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"d225fb03-e130-4a6c-a260-91ea589f4325\"", + "ResponseBody": "\"3980ac5d-01ce-431b-ba05-cc850e896c35\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/39cd7bad-bd34-4a13-b401-a7c845c6c829/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy8zOWNkN2JhZC1iZDM0LTRhMTMtYjQwMS1hN2M4NDVjNmM4Mjkvcm9sZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/db69d84e-9865-411c-87d1-83ed0ff28589/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzL2RiNjlkODRlLTk4NjUtNDExYy04N2QxLTgzZWQwZmYyODU4OS9yb2xlcw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -150,10 +150,10 @@ "no-cache" ], "Apim-Request-Id": [ - "d0db021c-b5ad-46e5-b59a-dfa3dc157d07" + "e2b20951-5fee-4629-a7d9-65cb89b7d032" ], "Request-Id": [ - "d0db021c-b5ad-46e5-b59a-dfa3dc157d07" + "e2b20951-5fee-4629-a7d9-65cb89b7d032" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -168,7 +168,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:50 GMT" + "Tue, 29 Oct 2019 13:17:22 GMT" ], "Content-Length": [ "68" @@ -177,23 +177,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"d225fb03-e130-4a6c-a260-91ea589f4325\",\r\n \"name\": \"simple role\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"3980ac5d-01ce-431b-ba05-cc850e896c35\",\r\n \"name\": \"simple role\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/39cd7bad-bd34-4a13-b401-a7c845c6c829", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy8zOWNkN2JhZC1iZDM0LTRhMTMtYjQwMS1hN2M4NDVjNmM4Mjk=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/db69d84e-9865-411c-87d1-83ed0ff28589", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzL2RiNjlkODRlLTk4NjUtNDExYy04N2QxLTgzZWQwZmYyODU4OQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "68a8c0e6-1cc6-411d-998a-ec9badce3c74" + "4446687c-67f9-4782-b8b4-0d7ce55edb25" ], "Request-Id": [ - "68a8c0e6-1cc6-411d-998a-ec9badce3c74" + "4446687c-67f9-4782-b8b4-0d7ce55edb25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,7 +222,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:50 GMT" + "Tue, 29 Oct 2019 13:17:23 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetRegexEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetRegexEntityRole.json index aef12ae2852a..a7e6869008f6 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetRegexEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetRegexEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"regexPattern\": \"a+\",\r\n \"name\": \"regex model\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/6760ea6e-97ff-469c-9a63-6520036ca81f" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/7fb489a7-8888-40a1-b5d7-62bf4c319994" ], "Apim-Request-Id": [ - "baa9389e-22f8-465b-9a3b-bf71e7d1d0f4" + "38d0c042-ea70-4956-b601-4e1d6462dbd6" ], "Request-Id": [ - "baa9389e-22f8-465b-9a3b-bf71e7d1d0f4" + "38d0c042-ea70-4956-b601-4e1d6462dbd6" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/6760ea6e-97ff-469c-9a63-6520036ca81f" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/7fb489a7-8888-40a1-b5d7-62bf4c319994" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:39 GMT" + "Tue, 29 Oct 2019 13:17:32 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"6760ea6e-97ff-469c-9a63-6520036ca81f\"", + "ResponseBody": "\"7fb489a7-8888-40a1-b5d7-62bf4c319994\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/6760ea6e-97ff-469c-9a63-6520036ca81f/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvNjc2MGVhNmUtOTdmZi00NjljLTlhNjMtNjUyMDAzNmNhODFmL3JvbGVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/7fb489a7-8888-40a1-b5d7-62bf4c319994/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy83ZmI0ODlhNy04ODg4LTQwYTEtYjVkNy02MmJmNGMzMTk5OTQvcm9sZXM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/6760ea6e-97ff-469c-9a63-6520036ca81f/roles/82db41f0-1776-460c-a7bd-ff083fcfaf65" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/7fb489a7-8888-40a1-b5d7-62bf4c319994/roles/c09ad038-8338-4baa-a092-6f0817c48dbc" ], "Apim-Request-Id": [ - "3f72fef7-bfb4-4bf1-89aa-c4304de5b718" + "30017264-ded3-4d80-98a9-f5b815f5de31" ], "Request-Id": [ - "3f72fef7-bfb4-4bf1-89aa-c4304de5b718" + "30017264-ded3-4d80-98a9-f5b815f5de31" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/6760ea6e-97ff-469c-9a63-6520036ca81f/roles/82db41f0-1776-460c-a7bd-ff083fcfaf65" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/7fb489a7-8888-40a1-b5d7-62bf4c319994/roles/c09ad038-8338-4baa-a092-6f0817c48dbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:39 GMT" + "Tue, 29 Oct 2019 13:17:33 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"82db41f0-1776-460c-a7bd-ff083fcfaf65\"", + "ResponseBody": "\"c09ad038-8338-4baa-a092-6f0817c48dbc\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/6760ea6e-97ff-469c-9a63-6520036ca81f/roles/82db41f0-1776-460c-a7bd-ff083fcfaf65", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvNjc2MGVhNmUtOTdmZi00NjljLTlhNjMtNjUyMDAzNmNhODFmL3JvbGVzLzgyZGI0MWYwLTE3NzYtNDYwYy1hN2JkLWZmMDgzZmNmYWY2NQ==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/7fb489a7-8888-40a1-b5d7-62bf4c319994/roles/c09ad038-8338-4baa-a092-6f0817c48dbc", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy83ZmI0ODlhNy04ODg4LTQwYTEtYjVkNy02MmJmNGMzMTk5OTQvcm9sZXMvYzA5YWQwMzgtODMzOC00YmFhLWEwOTItNmYwODE3YzQ4ZGJj", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "d6763771-40fe-4dc4-9c33-27902558836c" + "617d3a57-83df-42da-8b47-60dbba568ffe" ], "Request-Id": [ - "d6763771-40fe-4dc4-9c33-27902558836c" + "617d3a57-83df-42da-8b47-60dbba568ffe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:39 GMT" + "Tue, 29 Oct 2019 13:17:33 GMT" ], "Content-Length": [ "66" @@ -183,23 +183,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"82db41f0-1776-460c-a7bd-ff083fcfaf65\",\r\n \"name\": \"simple role\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"c09ad038-8338-4baa-a092-6f0817c48dbc\",\r\n \"name\": \"simple role\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/6760ea6e-97ff-469c-9a63-6520036ca81f", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvNjc2MGVhNmUtOTdmZi00NjljLTlhNjMtNjUyMDAzNmNhODFm", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/7fb489a7-8888-40a1-b5d7-62bf4c319994", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy83ZmI0ODlhNy04ODg4LTQwYTEtYjVkNy02MmJmNGMzMTk5OTQ=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "586ed1aa-2952-4cec-89d0-041ddf02e06d" + "cb667519-fa61-44dc-afdf-6db422c1add2" ], "Request-Id": [ - "586ed1aa-2952-4cec-89d0-041ddf02e06d" + "cb667519-fa61-44dc-afdf-6db422c1add2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:40 GMT" + "Tue, 29 Oct 2019 13:17:33 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetRegexEntityRoles.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetRegexEntityRoles.json index 20096cb971ea..517bb31c0a17 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetRegexEntityRoles.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetRegexEntityRoles.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"regexPattern\": \"a+\",\r\n \"name\": \"regex model\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/f62e0c4f-f21d-4a87-a3ef-ec0415e5f57f" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/0fd883d2-5f3c-44d6-9125-f4d1e8b42e3e" ], "Apim-Request-Id": [ - "bc00d171-80c5-4aa0-b13b-78cdfa402907" + "e57420aa-cc6d-4c61-8002-a6eb7de61200" ], "Request-Id": [ - "bc00d171-80c5-4aa0-b13b-78cdfa402907" + "e57420aa-cc6d-4c61-8002-a6eb7de61200" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/f62e0c4f-f21d-4a87-a3ef-ec0415e5f57f" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/0fd883d2-5f3c-44d6-9125-f4d1e8b42e3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:52 GMT" + "Tue, 29 Oct 2019 13:17:24 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"f62e0c4f-f21d-4a87-a3ef-ec0415e5f57f\"", + "ResponseBody": "\"0fd883d2-5f3c-44d6-9125-f4d1e8b42e3e\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/f62e0c4f-f21d-4a87-a3ef-ec0415e5f57f/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvZjYyZTBjNGYtZjIxZC00YTg3LWEzZWYtZWMwNDE1ZTVmNTdmL3JvbGVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/0fd883d2-5f3c-44d6-9125-f4d1e8b42e3e/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy8wZmQ4ODNkMi01ZjNjLTQ0ZDYtOTEyNS1mNGQxZThiNDJlM2Uvcm9sZXM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/f62e0c4f-f21d-4a87-a3ef-ec0415e5f57f/roles/3dfc1ad4-b60d-4b24-832b-ad2873fb0545" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/0fd883d2-5f3c-44d6-9125-f4d1e8b42e3e/roles/95fcb43e-04f1-4032-b5b1-e3081b2b57f3" ], "Apim-Request-Id": [ - "97730417-edc3-45e8-918e-7dd11b3680b8" + "2afbc284-de6c-44f5-a572-08055bd4da45" ], "Request-Id": [ - "97730417-edc3-45e8-918e-7dd11b3680b8" + "2afbc284-de6c-44f5-a572-08055bd4da45" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/f62e0c4f-f21d-4a87-a3ef-ec0415e5f57f/roles/3dfc1ad4-b60d-4b24-832b-ad2873fb0545" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/0fd883d2-5f3c-44d6-9125-f4d1e8b42e3e/roles/95fcb43e-04f1-4032-b5b1-e3081b2b57f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:52 GMT" + "Tue, 29 Oct 2019 13:17:24 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"3dfc1ad4-b60d-4b24-832b-ad2873fb0545\"", + "ResponseBody": "\"95fcb43e-04f1-4032-b5b1-e3081b2b57f3\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/f62e0c4f-f21d-4a87-a3ef-ec0415e5f57f/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvZjYyZTBjNGYtZjIxZC00YTg3LWEzZWYtZWMwNDE1ZTVmNTdmL3JvbGVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/0fd883d2-5f3c-44d6-9125-f4d1e8b42e3e/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy8wZmQ4ODNkMi01ZjNjLTQ0ZDYtOTEyNS1mNGQxZThiNDJlM2Uvcm9sZXM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "e0270de0-25ee-4f44-8366-b0d8508b04dc" + "9eb63981-4d50-4b76-8e15-3098f0437c7f" ], "Request-Id": [ - "e0270de0-25ee-4f44-8366-b0d8508b04dc" + "9eb63981-4d50-4b76-8e15-3098f0437c7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:52 GMT" + "Tue, 29 Oct 2019 13:17:25 GMT" ], "Content-Length": [ "68" @@ -183,23 +183,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"3dfc1ad4-b60d-4b24-832b-ad2873fb0545\",\r\n \"name\": \"simple role\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"95fcb43e-04f1-4032-b5b1-e3081b2b57f3\",\r\n \"name\": \"simple role\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/f62e0c4f-f21d-4a87-a3ef-ec0415e5f57f", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvZjYyZTBjNGYtZjIxZC00YTg3LWEzZWYtZWMwNDE1ZTVmNTdm", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/0fd883d2-5f3c-44d6-9125-f4d1e8b42e3e", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy8wZmQ4ODNkMi01ZjNjLTQ0ZDYtOTEyNS1mNGQxZThiNDJlM2U=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "421092cb-f5cc-48e0-840e-e0959ad5e773" + "1a1c3b6b-f694-4ed9-b523-eb05c62f2c5b" ], "Request-Id": [ - "421092cb-f5cc-48e0-840e-e0959ad5e773" + "1a1c3b6b-f694-4ed9-b523-eb05c62f2c5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:53 GMT" + "Tue, 29 Oct 2019 13:17:25 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetSimpleEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetSimpleEntityRole.json index 6f464354fb08..2cf6d4748384 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetSimpleEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetSimpleEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple entity\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/f04a1c3d-eeec-449d-989b-8a54e14fd962" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/c349617f-e8dd-4e92-aaf6-78625d1226f9" ], "Apim-Request-Id": [ - "b14eeb15-835b-4373-b1fb-5efa5ed6a44a" + "8bd3f612-4752-4f65-97ce-0d60c7968614" ], "Request-Id": [ - "b14eeb15-835b-4373-b1fb-5efa5ed6a44a" + "8bd3f612-4752-4f65-97ce-0d60c7968614" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/f04a1c3d-eeec-449d-989b-8a54e14fd962" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/c349617f-e8dd-4e92-aaf6-78625d1226f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:59 GMT" + "Tue, 29 Oct 2019 13:18:42 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"f04a1c3d-eeec-449d-989b-8a54e14fd962\"", + "ResponseBody": "\"c349617f-e8dd-4e92-aaf6-78625d1226f9\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/f04a1c3d-eeec-449d-989b-8a54e14fd962/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzL2YwNGExYzNkLWVlZWMtNDQ5ZC05ODliLThhNTRlMTRmZDk2Mi9yb2xlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/c349617f-e8dd-4e92-aaf6-78625d1226f9/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvYzM0OTYxN2YtZThkZC00ZTkyLWFhZjYtNzg2MjVkMTIyNmY5L3JvbGVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/f04a1c3d-eeec-449d-989b-8a54e14fd962/roles/5de55c03-d404-46b2-a333-2ce81c573f9d" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/c349617f-e8dd-4e92-aaf6-78625d1226f9/roles/4515c3d3-b889-4ac9-8fbd-6d5b92784782" ], "Apim-Request-Id": [ - "8d1cf147-b6a8-4259-bc04-b85ddbc8b881" + "38c88f2f-26da-4b28-9b97-79baa09b2a9b" ], "Request-Id": [ - "8d1cf147-b6a8-4259-bc04-b85ddbc8b881" + "38c88f2f-26da-4b28-9b97-79baa09b2a9b" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/f04a1c3d-eeec-449d-989b-8a54e14fd962/roles/5de55c03-d404-46b2-a333-2ce81c573f9d" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/c349617f-e8dd-4e92-aaf6-78625d1226f9/roles/4515c3d3-b889-4ac9-8fbd-6d5b92784782" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:00 GMT" + "Tue, 29 Oct 2019 13:18:42 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"5de55c03-d404-46b2-a333-2ce81c573f9d\"", + "ResponseBody": "\"4515c3d3-b889-4ac9-8fbd-6d5b92784782\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/f04a1c3d-eeec-449d-989b-8a54e14fd962/roles/5de55c03-d404-46b2-a333-2ce81c573f9d", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzL2YwNGExYzNkLWVlZWMtNDQ5ZC05ODliLThhNTRlMTRmZDk2Mi9yb2xlcy81ZGU1NWMwMy1kNDA0LTQ2YjItYTMzMy0yY2U4MWM1NzNmOWQ=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/c349617f-e8dd-4e92-aaf6-78625d1226f9/roles/4515c3d3-b889-4ac9-8fbd-6d5b92784782", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvYzM0OTYxN2YtZThkZC00ZTkyLWFhZjYtNzg2MjVkMTIyNmY5L3JvbGVzLzQ1MTVjM2QzLWI4ODktNGFjOS04ZmJkLTZkNWI5Mjc4NDc4Mg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "3383d44b-c03f-4ef5-a35d-790895bdb19e" + "ff7b3ee9-62fb-4bc3-8eb8-b0a55cf0103a" ], "Request-Id": [ - "3383d44b-c03f-4ef5-a35d-790895bdb19e" + "ff7b3ee9-62fb-4bc3-8eb8-b0a55cf0103a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:00 GMT" + "Tue, 29 Oct 2019 13:18:42 GMT" ], "Content-Length": [ "66" @@ -183,23 +183,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"5de55c03-d404-46b2-a333-2ce81c573f9d\",\r\n \"name\": \"simple role\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"4515c3d3-b889-4ac9-8fbd-6d5b92784782\",\r\n \"name\": \"simple role\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/f04a1c3d-eeec-449d-989b-8a54e14fd962", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzL2YwNGExYzNkLWVlZWMtNDQ5ZC05ODliLThhNTRlMTRmZDk2Mg==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/c349617f-e8dd-4e92-aaf6-78625d1226f9", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvYzM0OTYxN2YtZThkZC00ZTkyLWFhZjYtNzg2MjVkMTIyNmY5", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "91635c3b-c380-452c-b33e-6eb38290f61e" + "119d0c3b-b231-418d-bc83-4f2ef5197b6f" ], "Request-Id": [ - "91635c3b-c380-452c-b33e-6eb38290f61e" + "119d0c3b-b231-418d-bc83-4f2ef5197b6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:00 GMT" + "Tue, 29 Oct 2019 13:18:43 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetSimpleEntityRoles.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetSimpleEntityRoles.json index 72ee41ff6c47..2ab79e7d4aad 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetSimpleEntityRoles.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/GetSimpleEntityRoles.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple entity\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/4ad950f2-d9a9-4814-bb71-86044e20169c" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/d7bd9596-eb82-4e03-a339-4d213e57b258" ], "Apim-Request-Id": [ - "5089ba53-7699-4b54-9afd-0d90dc0ef20a" + "281f2134-2170-4179-8119-88f0722224b9" ], "Request-Id": [ - "5089ba53-7699-4b54-9afd-0d90dc0ef20a" + "281f2134-2170-4179-8119-88f0722224b9" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/4ad950f2-d9a9-4814-bb71-86044e20169c" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/d7bd9596-eb82-4e03-a339-4d213e57b258" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:28 GMT" + "Tue, 29 Oct 2019 13:18:26 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"4ad950f2-d9a9-4814-bb71-86044e20169c\"", + "ResponseBody": "\"d7bd9596-eb82-4e03-a339-4d213e57b258\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/4ad950f2-d9a9-4814-bb71-86044e20169c/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzLzRhZDk1MGYyLWQ5YTktNDgxNC1iYjcxLTg2MDQ0ZTIwMTY5Yy9yb2xlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/d7bd9596-eb82-4e03-a339-4d213e57b258/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvZDdiZDk1OTYtZWI4Mi00ZTAzLWEzMzktNGQyMTNlNTdiMjU4L3JvbGVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/4ad950f2-d9a9-4814-bb71-86044e20169c/roles/a86fcaa6-7617-47a8-9c28-1844716c6329" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/d7bd9596-eb82-4e03-a339-4d213e57b258/roles/ec4e7ece-440b-4ac3-8e6d-89a042cf26b0" ], "Apim-Request-Id": [ - "aa6bf82f-5b52-4473-80d4-54bd20b97dba" + "5bcbf99b-613f-4f0b-baaa-6330a66f669b" ], "Request-Id": [ - "aa6bf82f-5b52-4473-80d4-54bd20b97dba" + "5bcbf99b-613f-4f0b-baaa-6330a66f669b" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/4ad950f2-d9a9-4814-bb71-86044e20169c/roles/a86fcaa6-7617-47a8-9c28-1844716c6329" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/d7bd9596-eb82-4e03-a339-4d213e57b258/roles/ec4e7ece-440b-4ac3-8e6d-89a042cf26b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:29 GMT" + "Tue, 29 Oct 2019 13:18:26 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"a86fcaa6-7617-47a8-9c28-1844716c6329\"", + "ResponseBody": "\"ec4e7ece-440b-4ac3-8e6d-89a042cf26b0\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/4ad950f2-d9a9-4814-bb71-86044e20169c/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzLzRhZDk1MGYyLWQ5YTktNDgxNC1iYjcxLTg2MDQ0ZTIwMTY5Yy9yb2xlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/d7bd9596-eb82-4e03-a339-4d213e57b258/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvZDdiZDk1OTYtZWI4Mi00ZTAzLWEzMzktNGQyMTNlNTdiMjU4L3JvbGVz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "4424f2f2-a006-4560-970e-464a3e94ea3f" + "2a4c099c-b91e-41f1-919b-cb726b1797a5" ], "Request-Id": [ - "4424f2f2-a006-4560-970e-464a3e94ea3f" + "2a4c099c-b91e-41f1-919b-cb726b1797a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:29 GMT" + "Tue, 29 Oct 2019 13:18:27 GMT" ], "Content-Length": [ "68" @@ -183,23 +183,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"a86fcaa6-7617-47a8-9c28-1844716c6329\",\r\n \"name\": \"simple role\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"ec4e7ece-440b-4ac3-8e6d-89a042cf26b0\",\r\n \"name\": \"simple role\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/4ad950f2-d9a9-4814-bb71-86044e20169c", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzLzRhZDk1MGYyLWQ5YTktNDgxNC1iYjcxLTg2MDQ0ZTIwMTY5Yw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/d7bd9596-eb82-4e03-a339-4d213e57b258", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvZDdiZDk1OTYtZWI4Mi00ZTAzLWEzMzktNGQyMTNlNTdiMjU4", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "7083abf6-4f92-4451-8a24-afd828d75d54" + "b95cdf90-1644-49fa-9068-6765f1455e6c" ], "Request-Id": [ - "7083abf6-4f92-4451-8a24-afd828d75d54" + "b95cdf90-1644-49fa-9068-6765f1455e6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:29 GMT" + "Tue, 29 Oct 2019 13:18:27 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdateClosedListEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdateClosedListEntityRole.json index 043057e00f31..88b023d7b8fd 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdateClosedListEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdateClosedListEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3Rz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"subLists\": [\r\n {\r\n \"canonicalForm\": \"test\",\r\n \"list\": []\r\n }\r\n ],\r\n \"name\": \"closed list model\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/620702c1-b49f-4df4-ac04-28666da7cb84" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/5cc8a9ef-0f42-40f3-b4ad-44a90fa96bb5" ], "Apim-Request-Id": [ - "76b7a7c2-75d7-4978-85fc-d50604a297bf" + "96f04004-7ae5-4f4a-ba69-9c05adeec587" ], "Request-Id": [ - "76b7a7c2-75d7-4978-85fc-d50604a297bf" + "96f04004-7ae5-4f4a-ba69-9c05adeec587" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/620702c1-b49f-4df4-ac04-28666da7cb84" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/5cc8a9ef-0f42-40f3-b4ad-44a90fa96bb5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:32 GMT" + "Tue, 29 Oct 2019 13:18:23 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"620702c1-b49f-4df4-ac04-28666da7cb84\"", + "ResponseBody": "\"5cc8a9ef-0f42-40f3-b4ad-44a90fa96bb5\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/620702c1-b49f-4df4-ac04-28666da7cb84/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzLzYyMDcwMmMxLWI0OWYtNGRmNC1hYzA0LTI4NjY2ZGE3Y2I4NC9yb2xlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/5cc8a9ef-0f42-40f3-b4ad-44a90fa96bb5/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvNWNjOGE5ZWYtMGY0Mi00MGYzLWI0YWQtNDRhOTBmYTk2YmI1L3JvbGVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/620702c1-b49f-4df4-ac04-28666da7cb84/roles/cb786cb0-a490-43a5-9323-8662f4e96c60" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/5cc8a9ef-0f42-40f3-b4ad-44a90fa96bb5/roles/cde64f54-e1c7-49ef-a6b9-ab118d3d9498" ], "Apim-Request-Id": [ - "d768210e-4898-42d3-8eb3-2efa7d14ef98" + "5e96b749-3d1d-4347-9569-0fe1759f82ca" ], "Request-Id": [ - "d768210e-4898-42d3-8eb3-2efa7d14ef98" + "5e96b749-3d1d-4347-9569-0fe1759f82ca" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/620702c1-b49f-4df4-ac04-28666da7cb84/roles/cb786cb0-a490-43a5-9323-8662f4e96c60" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/5cc8a9ef-0f42-40f3-b4ad-44a90fa96bb5/roles/cde64f54-e1c7-49ef-a6b9-ab118d3d9498" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:33 GMT" + "Tue, 29 Oct 2019 13:18:24 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"cb786cb0-a490-43a5-9323-8662f4e96c60\"", + "ResponseBody": "\"cde64f54-e1c7-49ef-a6b9-ab118d3d9498\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/620702c1-b49f-4df4-ac04-28666da7cb84/roles/cb786cb0-a490-43a5-9323-8662f4e96c60", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzLzYyMDcwMmMxLWI0OWYtNGRmNC1hYzA0LTI4NjY2ZGE3Y2I4NC9yb2xlcy9jYjc4NmNiMC1hNDkwLTQzYTUtOTMyMy04NjYyZjRlOTZjNjA=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/5cc8a9ef-0f42-40f3-b4ad-44a90fa96bb5/roles/cde64f54-e1c7-49ef-a6b9-ab118d3d9498", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvNWNjOGE5ZWYtMGY0Mi00MGYzLWI0YWQtNDRhOTBmYTk2YmI1L3JvbGVzL2NkZTY0ZjU0LWUxYzctNDllZi1hNmI5LWFiMTE4ZDNkOTQ5OA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"simple role 2\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -162,10 +162,10 @@ "no-cache" ], "Apim-Request-Id": [ - "83c65d68-1edc-4b55-96ee-db392c996f95" + "5c8b1d05-abe7-4edc-a4f9-490d5d8f45c8" ], "Request-Id": [ - "83c65d68-1edc-4b55-96ee-db392c996f95" + "5c8b1d05-abe7-4edc-a4f9-490d5d8f45c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -180,7 +180,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:33 GMT" + "Tue, 29 Oct 2019 13:18:24 GMT" ], "Content-Length": [ "51" @@ -193,19 +193,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/620702c1-b49f-4df4-ac04-28666da7cb84/roles/cb786cb0-a490-43a5-9323-8662f4e96c60", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzLzYyMDcwMmMxLWI0OWYtNGRmNC1hYzA0LTI4NjY2ZGE3Y2I4NC9yb2xlcy9jYjc4NmNiMC1hNDkwLTQzYTUtOTMyMy04NjYyZjRlOTZjNjA=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/5cc8a9ef-0f42-40f3-b4ad-44a90fa96bb5/roles/cde64f54-e1c7-49ef-a6b9-ab118d3d9498", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvNWNjOGE5ZWYtMGY0Mi00MGYzLWI0YWQtNDRhOTBmYTk2YmI1L3JvbGVzL2NkZTY0ZjU0LWUxYzctNDllZi1hNmI5LWFiMTE4ZDNkOTQ5OA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -216,10 +216,10 @@ "no-cache" ], "Apim-Request-Id": [ - "2c0fe642-0e21-4002-8bbd-40c825628caa" + "d844b625-69f8-438a-8a70-e734f40be2f7" ], "Request-Id": [ - "2c0fe642-0e21-4002-8bbd-40c825628caa" + "d844b625-69f8-438a-8a70-e734f40be2f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -234,7 +234,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:33 GMT" + "Tue, 29 Oct 2019 13:18:24 GMT" ], "Content-Length": [ "68" @@ -243,23 +243,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"cb786cb0-a490-43a5-9323-8662f4e96c60\",\r\n \"name\": \"simple role 2\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"cde64f54-e1c7-49ef-a6b9-ab118d3d9498\",\r\n \"name\": \"simple role 2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/620702c1-b49f-4df4-ac04-28666da7cb84", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzLzYyMDcwMmMxLWI0OWYtNGRmNC1hYzA0LTI4NjY2ZGE3Y2I4NA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/5cc8a9ef-0f42-40f3-b4ad-44a90fa96bb5", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvNWNjOGE5ZWYtMGY0Mi00MGYzLWI0YWQtNDRhOTBmYTk2YmI1", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -270,10 +270,10 @@ "no-cache" ], "Apim-Request-Id": [ - "306d90e1-63c7-47c5-97ef-eb25716bc53c" + "78ed1ffd-d76f-44a6-a365-c0d4e03ed419" ], "Request-Id": [ - "306d90e1-63c7-47c5-97ef-eb25716bc53c" + "78ed1ffd-d76f-44a6-a365-c0d4e03ed419" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -288,7 +288,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:35 GMT" + "Tue, 29 Oct 2019 13:18:25 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdateCustomPrebuiltDomainEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdateCustomPrebuiltDomainEntityRole.json index 38bfbd375412..b57fbfcc1caf 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdateCustomPrebuiltDomainEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdateCustomPrebuiltDomainEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZW50aXRpZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRlbnRpdGllcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"domainName\": \"Communication\",\r\n \"modelName\": \"ContactName\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/0855ea3b-52ed-45fb-a7b7-140b862b2264" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/84bf69e7-e97c-407c-8087-4949b50e26b6" ], "Apim-Request-Id": [ - "e3522ac6-df63-4b20-a9ae-317f353dd707" + "d06b9f47-f16c-49b4-9b86-f9e0ff5585f1" ], "Request-Id": [ - "e3522ac6-df63-4b20-a9ae-317f353dd707" + "d06b9f47-f16c-49b4-9b86-f9e0ff5585f1" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/0855ea3b-52ed-45fb-a7b7-140b862b2264" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/84bf69e7-e97c-407c-8087-4949b50e26b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:44 GMT" + "Tue, 29 Oct 2019 13:18:11 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"0855ea3b-52ed-45fb-a7b7-140b862b2264\"", + "ResponseBody": "\"84bf69e7-e97c-407c-8087-4949b50e26b6\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/0855ea3b-52ed-45fb-a7b7-140b862b2264/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZW50aXRpZXMvMDg1NWVhM2ItNTJlZC00NWZiLWE3YjctMTQwYjg2MmIyMjY0L3JvbGVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/84bf69e7-e97c-407c-8087-4949b50e26b6/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRlbnRpdGllcy84NGJmNjllNy1lOTdjLTQwN2MtODA4Ny00OTQ5YjUwZTI2YjYvcm9sZXM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/0855ea3b-52ed-45fb-a7b7-140b862b2264/roles/a5a059d5-d8d8-45cf-9aec-dcdfa82640ef" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/84bf69e7-e97c-407c-8087-4949b50e26b6/roles/0b512634-3c3f-4060-b3cb-40d9fba0a2c0" ], "Apim-Request-Id": [ - "14db0fdb-6641-472c-87cd-764dfcf45709" + "56b4a625-f007-44fd-9924-a0b9c14ee741" ], "Request-Id": [ - "14db0fdb-6641-472c-87cd-764dfcf45709" + "56b4a625-f007-44fd-9924-a0b9c14ee741" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/0855ea3b-52ed-45fb-a7b7-140b862b2264/roles/a5a059d5-d8d8-45cf-9aec-dcdfa82640ef" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/84bf69e7-e97c-407c-8087-4949b50e26b6/roles/0b512634-3c3f-4060-b3cb-40d9fba0a2c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:44 GMT" + "Tue, 29 Oct 2019 13:18:11 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"a5a059d5-d8d8-45cf-9aec-dcdfa82640ef\"", + "ResponseBody": "\"0b512634-3c3f-4060-b3cb-40d9fba0a2c0\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/0855ea3b-52ed-45fb-a7b7-140b862b2264/roles/a5a059d5-d8d8-45cf-9aec-dcdfa82640ef", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZW50aXRpZXMvMDg1NWVhM2ItNTJlZC00NWZiLWE3YjctMTQwYjg2MmIyMjY0L3JvbGVzL2E1YTA1OWQ1LWQ4ZDgtNDVjZi05YWVjLWRjZGZhODI2NDBlZg==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/84bf69e7-e97c-407c-8087-4949b50e26b6/roles/0b512634-3c3f-4060-b3cb-40d9fba0a2c0", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRlbnRpdGllcy84NGJmNjllNy1lOTdjLTQwN2MtODA4Ny00OTQ5YjUwZTI2YjYvcm9sZXMvMGI1MTI2MzQtM2MzZi00MDYwLWIzY2ItNDBkOWZiYTBhMmMw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"simple role 2\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -162,10 +162,10 @@ "no-cache" ], "Apim-Request-Id": [ - "38afe900-66cd-4c88-9489-6b4543995cb6" + "37dc8840-39be-44ef-a617-2b1b88784f53" ], "Request-Id": [ - "38afe900-66cd-4c88-9489-6b4543995cb6" + "37dc8840-39be-44ef-a617-2b1b88784f53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -180,7 +180,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:44 GMT" + "Tue, 29 Oct 2019 13:18:11 GMT" ], "Content-Length": [ "51" @@ -193,19 +193,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/0855ea3b-52ed-45fb-a7b7-140b862b2264/roles/a5a059d5-d8d8-45cf-9aec-dcdfa82640ef", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZW50aXRpZXMvMDg1NWVhM2ItNTJlZC00NWZiLWE3YjctMTQwYjg2MmIyMjY0L3JvbGVzL2E1YTA1OWQ1LWQ4ZDgtNDVjZi05YWVjLWRjZGZhODI2NDBlZg==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/84bf69e7-e97c-407c-8087-4949b50e26b6/roles/0b512634-3c3f-4060-b3cb-40d9fba0a2c0", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRlbnRpdGllcy84NGJmNjllNy1lOTdjLTQwN2MtODA4Ny00OTQ5YjUwZTI2YjYvcm9sZXMvMGI1MTI2MzQtM2MzZi00MDYwLWIzY2ItNDBkOWZiYTBhMmMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -216,10 +216,10 @@ "no-cache" ], "Apim-Request-Id": [ - "dab01002-d64b-43eb-8563-809f8f42cb39" + "85b6f2a2-c0d8-4cdb-8aaa-0f40364a5dd8" ], "Request-Id": [ - "dab01002-d64b-43eb-8563-809f8f42cb39" + "85b6f2a2-c0d8-4cdb-8aaa-0f40364a5dd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -234,7 +234,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:45 GMT" + "Tue, 29 Oct 2019 13:18:12 GMT" ], "Content-Length": [ "68" @@ -243,23 +243,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"a5a059d5-d8d8-45cf-9aec-dcdfa82640ef\",\r\n \"name\": \"simple role 2\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"0b512634-3c3f-4060-b3cb-40d9fba0a2c0\",\r\n \"name\": \"simple role 2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/0855ea3b-52ed-45fb-a7b7-140b862b2264", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzLzA4NTVlYTNiLTUyZWQtNDVmYi1hN2I3LTE0MGI4NjJiMjI2NA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/84bf69e7-e97c-407c-8087-4949b50e26b6", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvODRiZjY5ZTctZTk3Yy00MDdjLTgwODctNDk0OWI1MGUyNmI2", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -270,10 +270,10 @@ "no-cache" ], "Apim-Request-Id": [ - "74a48c49-0c9a-4e12-a2a4-9e0367bd1578" + "d493e37a-2d57-4f12-baf8-07ee66f73c72" ], "Request-Id": [ - "74a48c49-0c9a-4e12-a2a4-9e0367bd1578" + "d493e37a-2d57-4f12-baf8-07ee66f73c72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -288,7 +288,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:45 GMT" + "Tue, 29 Oct 2019 13:18:12 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdatePatternAnyEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdatePatternAnyEntityRole.json index 53efbce63c3d..8f43275c4fc1 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdatePatternAnyEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdatePatternAnyEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"Pattern.Any model\",\r\n \"explicitList\": []\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/2cbcb46c-70a0-4ede-9035-d67394208ce6" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/abb34886-a3b0-4bf9-bf45-74b509121591" ], "Apim-Request-Id": [ - "86cd43e5-a584-432d-9878-a91ea7f4cd4e" + "91a1bea8-b2e5-4661-80db-ab98ec157bb2" ], "Request-Id": [ - "86cd43e5-a584-432d-9878-a91ea7f4cd4e" + "91a1bea8-b2e5-4661-80db-ab98ec157bb2" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/2cbcb46c-70a0-4ede-9035-d67394208ce6" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/abb34886-a3b0-4bf9-bf45-74b509121591" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:49 GMT" + "Tue, 29 Oct 2019 13:18:13 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"2cbcb46c-70a0-4ede-9035-d67394208ce6\"", + "ResponseBody": "\"abb34886-a3b0-4bf9-bf45-74b509121591\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/2cbcb46c-70a0-4ede-9035-d67394208ce6/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy8yY2JjYjQ2Yy03MGEwLTRlZGUtOTAzNS1kNjczOTQyMDhjZTYvcm9sZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/abb34886-a3b0-4bf9-bf45-74b509121591/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzL2FiYjM0ODg2LWEzYjAtNGJmOS1iZjQ1LTc0YjUwOTEyMTU5MS9yb2xlcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/2cbcb46c-70a0-4ede-9035-d67394208ce6/roles/c58500a2-d550-47e1-9c65-fb6f3d42d544" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/abb34886-a3b0-4bf9-bf45-74b509121591/roles/33626d1d-f9a8-43a4-9985-e515aace5804" ], "Apim-Request-Id": [ - "678de2af-8a47-4b7a-a9d8-0409068b17ff" + "90f743c2-7a74-4c79-b7dd-32d5b6d263a2" ], "Request-Id": [ - "678de2af-8a47-4b7a-a9d8-0409068b17ff" + "90f743c2-7a74-4c79-b7dd-32d5b6d263a2" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/2cbcb46c-70a0-4ede-9035-d67394208ce6/roles/c58500a2-d550-47e1-9c65-fb6f3d42d544" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/abb34886-a3b0-4bf9-bf45-74b509121591/roles/33626d1d-f9a8-43a4-9985-e515aace5804" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:49 GMT" + "Tue, 29 Oct 2019 13:18:14 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"c58500a2-d550-47e1-9c65-fb6f3d42d544\"", + "ResponseBody": "\"33626d1d-f9a8-43a4-9985-e515aace5804\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/2cbcb46c-70a0-4ede-9035-d67394208ce6/roles/c58500a2-d550-47e1-9c65-fb6f3d42d544", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy8yY2JjYjQ2Yy03MGEwLTRlZGUtOTAzNS1kNjczOTQyMDhjZTYvcm9sZXMvYzU4NTAwYTItZDU1MC00N2UxLTljNjUtZmI2ZjNkNDJkNTQ0", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/abb34886-a3b0-4bf9-bf45-74b509121591/roles/33626d1d-f9a8-43a4-9985-e515aace5804", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzL2FiYjM0ODg2LWEzYjAtNGJmOS1iZjQ1LTc0YjUwOTEyMTU5MS9yb2xlcy8zMzYyNmQxZC1mOWE4LTQzYTQtOTk4NS1lNTE1YWFjZTU4MDQ=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"simple role 2\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -162,10 +162,10 @@ "no-cache" ], "Apim-Request-Id": [ - "c95817af-9b47-4040-8117-76face34a2d6" + "1d12038b-7d36-4a07-af2d-3649c9d66c28" ], "Request-Id": [ - "c95817af-9b47-4040-8117-76face34a2d6" + "1d12038b-7d36-4a07-af2d-3649c9d66c28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -180,7 +180,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:50 GMT" + "Tue, 29 Oct 2019 13:18:14 GMT" ], "Content-Length": [ "51" @@ -193,19 +193,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/2cbcb46c-70a0-4ede-9035-d67394208ce6/roles/c58500a2-d550-47e1-9c65-fb6f3d42d544", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy8yY2JjYjQ2Yy03MGEwLTRlZGUtOTAzNS1kNjczOTQyMDhjZTYvcm9sZXMvYzU4NTAwYTItZDU1MC00N2UxLTljNjUtZmI2ZjNkNDJkNTQ0", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/abb34886-a3b0-4bf9-bf45-74b509121591/roles/33626d1d-f9a8-43a4-9985-e515aace5804", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzL2FiYjM0ODg2LWEzYjAtNGJmOS1iZjQ1LTc0YjUwOTEyMTU5MS9yb2xlcy8zMzYyNmQxZC1mOWE4LTQzYTQtOTk4NS1lNTE1YWFjZTU4MDQ=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -216,10 +216,10 @@ "no-cache" ], "Apim-Request-Id": [ - "bcb0a4b6-a50b-4358-954c-b2e2bf792002" + "cc1e39df-de19-4017-bd63-4aa487d6f354" ], "Request-Id": [ - "bcb0a4b6-a50b-4358-954c-b2e2bf792002" + "cc1e39df-de19-4017-bd63-4aa487d6f354" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -234,7 +234,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:50 GMT" + "Tue, 29 Oct 2019 13:18:14 GMT" ], "Content-Length": [ "68" @@ -243,23 +243,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"c58500a2-d550-47e1-9c65-fb6f3d42d544\",\r\n \"name\": \"simple role 2\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"33626d1d-f9a8-43a4-9985-e515aace5804\",\r\n \"name\": \"simple role 2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/2cbcb46c-70a0-4ede-9035-d67394208ce6", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy8yY2JjYjQ2Yy03MGEwLTRlZGUtOTAzNS1kNjczOTQyMDhjZTY=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/abb34886-a3b0-4bf9-bf45-74b509121591", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzL2FiYjM0ODg2LWEzYjAtNGJmOS1iZjQ1LTc0YjUwOTEyMTU5MQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -270,10 +270,10 @@ "no-cache" ], "Apim-Request-Id": [ - "67b8a7b5-1b36-4a73-a62c-64082550863a" + "56a5c41c-c9fe-43a1-baf7-ee33651c6e7b" ], "Request-Id": [ - "67b8a7b5-1b36-4a73-a62c-64082550863a" + "56a5c41c-c9fe-43a1-baf7-ee33651c6e7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -288,7 +288,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:50 GMT" + "Tue, 29 Oct 2019 13:18:15 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdatePrebuiltEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdatePrebuiltEntityRole.json index a0a02b536b46..5caac8399e80 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdatePrebuiltEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdatePrebuiltEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRz", "RequestMethod": "POST", "RequestBody": "[\r\n \"money\"\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,10 +30,10 @@ "no-cache" ], "Apim-Request-Id": [ - "06f6e8ef-e3ed-4833-bc30-152aa9801895" + "e3310743-dc21-4949-be02-22b5bc25f01c" ], "Request-Id": [ - "06f6e8ef-e3ed-4833-bc30-152aa9801895" + "e3310743-dc21-4949-be02-22b5bc25f01c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -48,7 +48,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:10 GMT" + "Tue, 29 Oct 2019 13:18:04 GMT" ], "Content-Length": [ "127" @@ -57,23 +57,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"b4f0d294-0b7f-458e-9635-6143caef0e2d\",\r\n \"name\": \"money\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"7767efdc-3a57-4cc2-9f81-e86143f7402e\",\r\n \"name\": \"money\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/b4f0d294-0b7f-458e-9635-6143caef0e2d/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy9iNGYwZDI5NC0wYjdmLTQ1OGUtOTYzNS02MTQzY2FlZjBlMmQvcm9sZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/7767efdc-3a57-4cc2-9f81-e86143f7402e/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzc3NjdlZmRjLTNhNTctNGNjMi05ZjgxLWU4NjE0M2Y3NDAyZS9yb2xlcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -90,16 +90,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/b4f0d294-0b7f-458e-9635-6143caef0e2d/roles/ebad91af-42df-49b6-b533-e0d548d5609e" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/7767efdc-3a57-4cc2-9f81-e86143f7402e/roles/483826e0-6a78-42ef-93d6-72d2448824b1" ], "Apim-Request-Id": [ - "a78013be-8b62-4d38-839d-206aaed07d57" + "16d02bd8-1535-485a-b154-82df540a08b1" ], "Request-Id": [ - "a78013be-8b62-4d38-839d-206aaed07d57" + "16d02bd8-1535-485a-b154-82df540a08b1" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/b4f0d294-0b7f-458e-9635-6143caef0e2d/roles/ebad91af-42df-49b6-b533-e0d548d5609e" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/7767efdc-3a57-4cc2-9f81-e86143f7402e/roles/483826e0-6a78-42ef-93d6-72d2448824b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -114,7 +114,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:11 GMT" + "Tue, 29 Oct 2019 13:18:05 GMT" ], "Content-Length": [ "38" @@ -123,23 +123,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"ebad91af-42df-49b6-b533-e0d548d5609e\"", + "ResponseBody": "\"483826e0-6a78-42ef-93d6-72d2448824b1\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/b4f0d294-0b7f-458e-9635-6143caef0e2d/roles/ebad91af-42df-49b6-b533-e0d548d5609e", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy9iNGYwZDI5NC0wYjdmLTQ1OGUtOTYzNS02MTQzY2FlZjBlMmQvcm9sZXMvZWJhZDkxYWYtNDJkZi00OWI2LWI1MzMtZTBkNTQ4ZDU2MDll", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/7767efdc-3a57-4cc2-9f81-e86143f7402e/roles/483826e0-6a78-42ef-93d6-72d2448824b1", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzc3NjdlZmRjLTNhNTctNGNjMi05ZjgxLWU4NjE0M2Y3NDAyZS9yb2xlcy80ODM4MjZlMC02YTc4LTQyZWYtOTNkNi03MmQyNDQ4ODI0YjE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"simple role 2\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "8f7646f7-20f2-4e81-8de0-4483e3793f72" + "b5b56dbf-27c9-49ee-beda-30876990ba2c" ], "Request-Id": [ - "8f7646f7-20f2-4e81-8de0-4483e3793f72" + "b5b56dbf-27c9-49ee-beda-30876990ba2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:11 GMT" + "Tue, 29 Oct 2019 13:18:05 GMT" ], "Content-Length": [ "51" @@ -187,19 +187,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/b4f0d294-0b7f-458e-9635-6143caef0e2d/roles/ebad91af-42df-49b6-b533-e0d548d5609e", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy9iNGYwZDI5NC0wYjdmLTQ1OGUtOTYzNS02MTQzY2FlZjBlMmQvcm9sZXMvZWJhZDkxYWYtNDJkZi00OWI2LWI1MzMtZTBkNTQ4ZDU2MDll", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/7767efdc-3a57-4cc2-9f81-e86143f7402e/roles/483826e0-6a78-42ef-93d6-72d2448824b1", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzc3NjdlZmRjLTNhNTctNGNjMi05ZjgxLWU4NjE0M2Y3NDAyZS9yb2xlcy80ODM4MjZlMC02YTc4LTQyZWYtOTNkNi03MmQyNDQ4ODI0YjE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "b4f7187e-d6e5-4401-87f4-26f070cddf60" + "78c95b89-d98c-405f-a9f5-d5902035e051" ], "Request-Id": [ - "b4f7187e-d6e5-4401-87f4-26f070cddf60" + "78c95b89-d98c-405f-a9f5-d5902035e051" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:11 GMT" + "Tue, 29 Oct 2019 13:18:05 GMT" ], "Content-Length": [ "68" @@ -237,23 +237,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"ebad91af-42df-49b6-b533-e0d548d5609e\",\r\n \"name\": \"simple role 2\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"483826e0-6a78-42ef-93d6-72d2448824b1\",\r\n \"name\": \"simple role 2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/b4f0d294-0b7f-458e-9635-6143caef0e2d", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy9iNGYwZDI5NC0wYjdmLTQ1OGUtOTYzNS02MTQzY2FlZjBlMmQ=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/7767efdc-3a57-4cc2-9f81-e86143f7402e", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzc3NjdlZmRjLTNhNTctNGNjMi05ZjgxLWU4NjE0M2Y3NDAyZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -264,10 +264,10 @@ "no-cache" ], "Apim-Request-Id": [ - "2bda89f8-17c3-4789-bb72-19e35031df02" + "9639dff2-7c26-41a7-ac92-408b7b69b7fc" ], "Request-Id": [ - "2bda89f8-17c3-4789-bb72-19e35031df02" + "9639dff2-7c26-41a7-ac92-408b7b69b7fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -282,7 +282,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:12 GMT" + "Tue, 29 Oct 2019 13:18:06 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdateRegexEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdateRegexEntityRole.json index 32940244b060..8a24142b08d4 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdateRegexEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdateRegexEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"regexPattern\": \"a+\",\r\n \"name\": \"regex model\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/be30c387-167a-474d-8ea8-87d12060dd27" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/e8bf6cdd-af7f-40eb-aedc-383428a800b7" ], "Apim-Request-Id": [ - "3b1dd366-b691-4afb-8963-247e9f6836ab" + "de5d62a4-160d-4ee3-bd62-0325af455026" ], "Request-Id": [ - "3b1dd366-b691-4afb-8963-247e9f6836ab" + "de5d62a4-160d-4ee3-bd62-0325af455026" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/be30c387-167a-474d-8ea8-87d12060dd27" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/e8bf6cdd-af7f-40eb-aedc-383428a800b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:53 GMT" + "Tue, 29 Oct 2019 13:18:02 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"be30c387-167a-474d-8ea8-87d12060dd27\"", + "ResponseBody": "\"e8bf6cdd-af7f-40eb-aedc-383428a800b7\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/be30c387-167a-474d-8ea8-87d12060dd27/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvYmUzMGMzODctMTY3YS00NzRkLThlYTgtODdkMTIwNjBkZDI3L3JvbGVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/e8bf6cdd-af7f-40eb-aedc-383428a800b7/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy9lOGJmNmNkZC1hZjdmLTQwZWItYWVkYy0zODM0MjhhODAwYjcvcm9sZXM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/be30c387-167a-474d-8ea8-87d12060dd27/roles/bbf43eee-a2c0-4b9c-9929-9834f0d2ea56" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/e8bf6cdd-af7f-40eb-aedc-383428a800b7/roles/2612ca9a-e9d2-4811-92b2-7edd3ad3589b" ], "Apim-Request-Id": [ - "28add2b3-9361-419c-a5e4-42e8870b28df" + "e5dbb91f-00d9-4d7d-8f2d-832ae99e942e" ], "Request-Id": [ - "28add2b3-9361-419c-a5e4-42e8870b28df" + "e5dbb91f-00d9-4d7d-8f2d-832ae99e942e" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/be30c387-167a-474d-8ea8-87d12060dd27/roles/bbf43eee-a2c0-4b9c-9929-9834f0d2ea56" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/e8bf6cdd-af7f-40eb-aedc-383428a800b7/roles/2612ca9a-e9d2-4811-92b2-7edd3ad3589b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:53 GMT" + "Tue, 29 Oct 2019 13:18:03 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"bbf43eee-a2c0-4b9c-9929-9834f0d2ea56\"", + "ResponseBody": "\"2612ca9a-e9d2-4811-92b2-7edd3ad3589b\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/be30c387-167a-474d-8ea8-87d12060dd27/roles/bbf43eee-a2c0-4b9c-9929-9834f0d2ea56", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvYmUzMGMzODctMTY3YS00NzRkLThlYTgtODdkMTIwNjBkZDI3L3JvbGVzL2JiZjQzZWVlLWEyYzAtNGI5Yy05OTI5LTk4MzRmMGQyZWE1Ng==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/e8bf6cdd-af7f-40eb-aedc-383428a800b7/roles/2612ca9a-e9d2-4811-92b2-7edd3ad3589b", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy9lOGJmNmNkZC1hZjdmLTQwZWItYWVkYy0zODM0MjhhODAwYjcvcm9sZXMvMjYxMmNhOWEtZTlkMi00ODExLTkyYjItN2VkZDNhZDM1ODli", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"simple role 2\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -162,10 +162,10 @@ "no-cache" ], "Apim-Request-Id": [ - "9ac0db56-e38b-4d56-9f48-5977e9000b39" + "024e4ebc-b587-42e4-b064-5cc461363802" ], "Request-Id": [ - "9ac0db56-e38b-4d56-9f48-5977e9000b39" + "024e4ebc-b587-42e4-b064-5cc461363802" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -180,7 +180,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:54 GMT" + "Tue, 29 Oct 2019 13:18:03 GMT" ], "Content-Length": [ "51" @@ -193,19 +193,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/be30c387-167a-474d-8ea8-87d12060dd27/roles/bbf43eee-a2c0-4b9c-9929-9834f0d2ea56", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvYmUzMGMzODctMTY3YS00NzRkLThlYTgtODdkMTIwNjBkZDI3L3JvbGVzL2JiZjQzZWVlLWEyYzAtNGI5Yy05OTI5LTk4MzRmMGQyZWE1Ng==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/e8bf6cdd-af7f-40eb-aedc-383428a800b7/roles/2612ca9a-e9d2-4811-92b2-7edd3ad3589b", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy9lOGJmNmNkZC1hZjdmLTQwZWItYWVkYy0zODM0MjhhODAwYjcvcm9sZXMvMjYxMmNhOWEtZTlkMi00ODExLTkyYjItN2VkZDNhZDM1ODli", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -216,10 +216,10 @@ "no-cache" ], "Apim-Request-Id": [ - "488cb344-fabe-4b43-a161-5e0568a6f8f6" + "3a93b0ae-2b14-4fc3-8108-614587bbd794" ], "Request-Id": [ - "488cb344-fabe-4b43-a161-5e0568a6f8f6" + "3a93b0ae-2b14-4fc3-8108-614587bbd794" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -234,7 +234,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:54 GMT" + "Tue, 29 Oct 2019 13:18:03 GMT" ], "Content-Length": [ "68" @@ -243,23 +243,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"bbf43eee-a2c0-4b9c-9929-9834f0d2ea56\",\r\n \"name\": \"simple role 2\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"2612ca9a-e9d2-4811-92b2-7edd3ad3589b\",\r\n \"name\": \"simple role 2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/be30c387-167a-474d-8ea8-87d12060dd27", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvYmUzMGMzODctMTY3YS00NzRkLThlYTgtODdkMTIwNjBkZDI3", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/e8bf6cdd-af7f-40eb-aedc-383428a800b7", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy9lOGJmNmNkZC1hZjdmLTQwZWItYWVkYy0zODM0MjhhODAwYjc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -270,10 +270,10 @@ "no-cache" ], "Apim-Request-Id": [ - "08f30cb5-0817-49bf-a92d-93e3c04fd331" + "711d3dda-5397-48e6-89d7-1e20a2ee9d3b" ], "Request-Id": [ - "08f30cb5-0817-49bf-a92d-93e3c04fd331" + "711d3dda-5397-48e6-89d7-1e20a2ee9d3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -288,7 +288,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:55 GMT" + "Tue, 29 Oct 2019 13:18:04 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdateSimpleEntityRole.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdateSimpleEntityRole.json index b3f73c3eb584..1b079395ab1b 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdateSimpleEntityRole.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/EntityRolesTests/UpdateSimpleEntityRole.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple entity\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/7ea5b8e7-080b-4232-97c0-f4d6c09a0450" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/d7d2a26d-617b-4c5f-b5be-21bc6a0a85c4" ], "Apim-Request-Id": [ - "3eea9cb3-c082-4f6d-b636-958b0c30833d" + "447f8ea6-fdd7-451a-9cb3-199f152857b9" ], "Request-Id": [ - "3eea9cb3-c082-4f6d-b636-958b0c30833d" + "447f8ea6-fdd7-451a-9cb3-199f152857b9" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/7ea5b8e7-080b-4232-97c0-f4d6c09a0450" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/d7d2a26d-617b-4c5f-b5be-21bc6a0a85c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:15 GMT" + "Tue, 29 Oct 2019 13:17:36 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"7ea5b8e7-080b-4232-97c0-f4d6c09a0450\"", + "ResponseBody": "\"d7d2a26d-617b-4c5f-b5be-21bc6a0a85c4\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/7ea5b8e7-080b-4232-97c0-f4d6c09a0450/roles", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzLzdlYTViOGU3LTA4MGItNDIzMi05N2MwLWY0ZDZjMDlhMDQ1MC9yb2xlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/d7d2a26d-617b-4c5f-b5be-21bc6a0a85c4/roles", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvZDdkMmEyNmQtNjE3Yi00YzVmLWI1YmUtMjFiYzZhMGE4NWM0L3JvbGVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"simple role\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/7ea5b8e7-080b-4232-97c0-f4d6c09a0450/roles/fb1a400b-4c6b-42f2-a306-a76cff7cc030" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/d7d2a26d-617b-4c5f-b5be-21bc6a0a85c4/roles/18cee2e9-ef8b-4b26-a106-ada15e26cb5f" ], "Apim-Request-Id": [ - "66925d7b-ae0d-42db-b0cd-9770c9a5ac60" + "9ca064a8-a88e-43bb-bd88-c788e00ba65a" ], "Request-Id": [ - "66925d7b-ae0d-42db-b0cd-9770c9a5ac60" + "9ca064a8-a88e-43bb-bd88-c788e00ba65a" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/7ea5b8e7-080b-4232-97c0-f4d6c09a0450/roles/fb1a400b-4c6b-42f2-a306-a76cff7cc030" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/d7d2a26d-617b-4c5f-b5be-21bc6a0a85c4/roles/18cee2e9-ef8b-4b26-a106-ada15e26cb5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:15 GMT" + "Tue, 29 Oct 2019 13:17:36 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"fb1a400b-4c6b-42f2-a306-a76cff7cc030\"", + "ResponseBody": "\"18cee2e9-ef8b-4b26-a106-ada15e26cb5f\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/7ea5b8e7-080b-4232-97c0-f4d6c09a0450/roles/fb1a400b-4c6b-42f2-a306-a76cff7cc030", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzLzdlYTViOGU3LTA4MGItNDIzMi05N2MwLWY0ZDZjMDlhMDQ1MC9yb2xlcy9mYjFhNDAwYi00YzZiLTQyZjItYTMwNi1hNzZjZmY3Y2MwMzA=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/d7d2a26d-617b-4c5f-b5be-21bc6a0a85c4/roles/18cee2e9-ef8b-4b26-a106-ada15e26cb5f", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvZDdkMmEyNmQtNjE3Yi00YzVmLWI1YmUtMjFiYzZhMGE4NWM0L3JvbGVzLzE4Y2VlMmU5LWVmOGItNGIyNi1hMTA2LWFkYTE1ZTI2Y2I1Zg==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"simple role 2\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -162,10 +162,10 @@ "no-cache" ], "Apim-Request-Id": [ - "4e98feb2-f6cc-46ce-b065-3be4f028a283" + "def88fc0-419f-4abf-835c-3a9c56154bcf" ], "Request-Id": [ - "4e98feb2-f6cc-46ce-b065-3be4f028a283" + "def88fc0-419f-4abf-835c-3a9c56154bcf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -180,7 +180,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:16 GMT" + "Tue, 29 Oct 2019 13:17:37 GMT" ], "Content-Length": [ "51" @@ -193,19 +193,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/7ea5b8e7-080b-4232-97c0-f4d6c09a0450/roles/fb1a400b-4c6b-42f2-a306-a76cff7cc030", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzLzdlYTViOGU3LTA4MGItNDIzMi05N2MwLWY0ZDZjMDlhMDQ1MC9yb2xlcy9mYjFhNDAwYi00YzZiLTQyZjItYTMwNi1hNzZjZmY3Y2MwMzA=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/d7d2a26d-617b-4c5f-b5be-21bc6a0a85c4/roles/18cee2e9-ef8b-4b26-a106-ada15e26cb5f", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvZDdkMmEyNmQtNjE3Yi00YzVmLWI1YmUtMjFiYzZhMGE4NWM0L3JvbGVzLzE4Y2VlMmU5LWVmOGItNGIyNi1hMTA2LWFkYTE1ZTI2Y2I1Zg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -216,10 +216,10 @@ "no-cache" ], "Apim-Request-Id": [ - "43fbb137-d649-4da3-b4bd-d64f3a4208bf" + "30049fa3-f63a-4aff-bfa2-c248e404d60a" ], "Request-Id": [ - "43fbb137-d649-4da3-b4bd-d64f3a4208bf" + "30049fa3-f63a-4aff-bfa2-c248e404d60a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -234,7 +234,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:16 GMT" + "Tue, 29 Oct 2019 13:17:37 GMT" ], "Content-Length": [ "68" @@ -243,23 +243,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"fb1a400b-4c6b-42f2-a306-a76cff7cc030\",\r\n \"name\": \"simple role 2\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"18cee2e9-ef8b-4b26-a106-ada15e26cb5f\",\r\n \"name\": \"simple role 2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/7ea5b8e7-080b-4232-97c0-f4d6c09a0450", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzLzdlYTViOGU3LTA4MGItNDIzMi05N2MwLWY0ZDZjMDlhMDQ1MA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/d7d2a26d-617b-4c5f-b5be-21bc6a0a85c4", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvZDdkMmEyNmQtNjE3Yi00YzVmLWI1YmUtMjFiYzZhMGE4NWM0", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -270,10 +270,10 @@ "no-cache" ], "Apim-Request-Id": [ - "c7d99e6d-de02-4577-a9d9-fcf705d2972d" + "4ae74c78-d9aa-42c9-b4cd-add758cce77a" ], "Request-Id": [ - "c7d99e6d-de02-4577-a9d9-fcf705d2972d" + "4ae74c78-d9aa-42c9-b4cd-add758cce77a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -288,7 +288,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:15:16 GMT" + "Tue, 29 Oct 2019 13:17:38 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/AddExample.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/AddExample.json index d7c7a387ae77..48c81a86094b 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/AddExample.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/AddExample.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"culture\": \"en-us\",\r\n \"domain\": \"Comics\",\r\n \"description\": \"New LUIS App\",\r\n \"usageScenario\": \"IoT\",\r\n \"name\": \"Examples Test App\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/984c2140-2423-4c5e-82f7-cc92f1a3e979" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/ba5af4dd-d4d9-426f-bba4-d8bb676485ea" ], "Apim-Request-Id": [ - "46648698-3615-472e-9265-07068f453233" + "0cb7823d-0fb4-4c99-b297-f267aa8ed985" ], "Request-Id": [ - "46648698-3615-472e-9265-07068f453233" + "0cb7823d-0fb4-4c99-b297-f267aa8ed985" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/984c2140-2423-4c5e-82f7-cc92f1a3e979" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/ba5af4dd-d4d9-426f-bba4-d8bb676485ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:09 GMT" + "Tue, 29 Oct 2019 13:18:51 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"984c2140-2423-4c5e-82f7-cc92f1a3e979\"", + "ResponseBody": "\"ba5af4dd-d4d9-426f-bba4-d8bb676485ea\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/984c2140-2423-4c5e-82f7-cc92f1a3e979/versions/0.1/intents", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy85ODRjMjE0MC0yNDIzLTRjNWUtODJmNy1jYzkyZjFhM2U5NzkvdmVyc2lvbnMvMC4xL2ludGVudHM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/ba5af4dd-d4d9-426f-bba4-d8bb676485ea/versions/0.1/intents", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2JhNWFmNGRkLWQ0ZDktNDI2Zi1iYmE0LWQ4YmI2NzY0ODVlYS92ZXJzaW9ucy8wLjEvaW50ZW50cw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"WeatherInPlace\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/984c2140-2423-4c5e-82f7-cc92f1a3e979/versions/0.1/intents/60c7f0e3-4c36-4eb0-ad3e-cb9ad89d8e69" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/ba5af4dd-d4d9-426f-bba4-d8bb676485ea/versions/0.1/intents/4f2a59b7-44d4-4fa2-aadf-87b87b5b3b77" ], "Apim-Request-Id": [ - "426d7495-021d-42c5-9203-73bf295e6d13" + "44f544fc-3708-488b-830a-8d19944adef5" ], "Request-Id": [ - "426d7495-021d-42c5-9203-73bf295e6d13" + "44f544fc-3708-488b-830a-8d19944adef5" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/984c2140-2423-4c5e-82f7-cc92f1a3e979/versions/0.1/intents/60c7f0e3-4c36-4eb0-ad3e-cb9ad89d8e69" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/ba5af4dd-d4d9-426f-bba4-d8bb676485ea/versions/0.1/intents/4f2a59b7-44d4-4fa2-aadf-87b87b5b3b77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:10 GMT" + "Tue, 29 Oct 2019 13:18:51 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"60c7f0e3-4c36-4eb0-ad3e-cb9ad89d8e69\"", + "ResponseBody": "\"4f2a59b7-44d4-4fa2-aadf-87b87b5b3b77\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/984c2140-2423-4c5e-82f7-cc92f1a3e979/versions/0.1/entities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy85ODRjMjE0MC0yNDIzLTRjNWUtODJmNy1jYzkyZjFhM2U5NzkvdmVyc2lvbnMvMC4xL2VudGl0aWVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/ba5af4dd-d4d9-426f-bba4-d8bb676485ea/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2JhNWFmNGRkLWQ0ZDktNDI2Zi1iYmE0LWQ4YmI2NzY0ODVlYS92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"Place\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -162,16 +162,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/984c2140-2423-4c5e-82f7-cc92f1a3e979/versions/0.1/entities/b67540d8-f342-4df6-b53b-6cfe7b67169a" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/ba5af4dd-d4d9-426f-bba4-d8bb676485ea/versions/0.1/entities/3de75556-483c-47f7-ac0a-93dee084e79b" ], "Apim-Request-Id": [ - "127af76a-454b-411d-b6fb-637abc643362" + "197ef78d-f6c7-4313-94e5-89d2d104ef27" ], "Request-Id": [ - "127af76a-454b-411d-b6fb-637abc643362" + "197ef78d-f6c7-4313-94e5-89d2d104ef27" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/984c2140-2423-4c5e-82f7-cc92f1a3e979/versions/0.1/entities/b67540d8-f342-4df6-b53b-6cfe7b67169a" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/ba5af4dd-d4d9-426f-bba4-d8bb676485ea/versions/0.1/entities/3de75556-483c-47f7-ac0a-93dee084e79b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -186,7 +186,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:10 GMT" + "Tue, 29 Oct 2019 13:18:51 GMT" ], "Content-Length": [ "38" @@ -195,23 +195,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"b67540d8-f342-4df6-b53b-6cfe7b67169a\"", + "ResponseBody": "\"3de75556-483c-47f7-ac0a-93dee084e79b\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/984c2140-2423-4c5e-82f7-cc92f1a3e979/versions/0.1/example", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy85ODRjMjE0MC0yNDIzLTRjNWUtODJmNy1jYzkyZjFhM2U5NzkvdmVyc2lvbnMvMC4xL2V4YW1wbGU=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/ba5af4dd-d4d9-426f-bba4-d8bb676485ea/versions/0.1/example", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2JhNWFmNGRkLWQ0ZDktNDI2Zi1iYmE0LWQ4YmI2NzY0ODVlYS92ZXJzaW9ucy8wLjEvZXhhbXBsZQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"whats the weather in buenos aires?\",\r\n \"entityLabels\": [\r\n {\r\n \"entityName\": \"Place\",\r\n \"startCharIndex\": 21,\r\n \"endCharIndex\": 34\r\n }\r\n ],\r\n \"intentName\": \"WeatherInPlace\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -228,10 +228,10 @@ "no-cache" ], "Apim-Request-Id": [ - "60505595-b01e-4d64-b372-da2a8ebd3968" + "3236cfa3-c44b-4421-a97b-18c5e89dfc7f" ], "Request-Id": [ - "60505595-b01e-4d64-b372-da2a8ebd3968" + "3236cfa3-c44b-4421-a97b-18c5e89dfc7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -246,7 +246,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:10 GMT" + "Tue, 29 Oct 2019 13:18:52 GMT" ], "Content-Length": [ "76" @@ -255,23 +255,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"ExampleId\": 546056658,\r\n \"UtteranceText\": \"whats the weather in buenos aires?\"\r\n}", + "ResponseBody": "{\r\n \"ExampleId\": 650505998,\r\n \"UtteranceText\": \"whats the weather in buenos aires?\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/984c2140-2423-4c5e-82f7-cc92f1a3e979?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy85ODRjMjE0MC0yNDIzLTRjNWUtODJmNy1jYzkyZjFhM2U5Nzk/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/ba5af4dd-d4d9-426f-bba4-d8bb676485ea?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2JhNWFmNGRkLWQ0ZDktNDI2Zi1iYmE0LWQ4YmI2NzY0ODVlYT9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -282,10 +282,10 @@ "no-cache" ], "Apim-Request-Id": [ - "0cd7ef94-ddd0-4c36-ac0f-2a01a86fabfb" + "5803d6c5-2f75-49d1-8560-b207275ef116" ], "Request-Id": [ - "0cd7ef94-ddd0-4c36-ac0f-2a01a86fabfb" + "5803d6c5-2f75-49d1-8560-b207275ef116" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -300,7 +300,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:11 GMT" + "Tue, 29 Oct 2019 13:18:52 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/AddExamplesInBatch.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/AddExamplesInBatch.json index ecbcd781f6b0..048906a2d7f8 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/AddExamplesInBatch.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/AddExamplesInBatch.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"culture\": \"en-us\",\r\n \"domain\": \"Comics\",\r\n \"description\": \"New LUIS App\",\r\n \"usageScenario\": \"IoT\",\r\n \"name\": \"Examples Test App\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/f494d5a7-f7bc-47b9-b8e4-ed3529b46ac3" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/616e79c5-4c0b-4e41-a841-0f8e1237e61d" ], "Apim-Request-Id": [ - "ffe461aa-3ae6-46c2-906d-dcc56ab25978" + "619256d7-3947-41d2-9b0f-8e5ca9d05f6c" ], "Request-Id": [ - "ffe461aa-3ae6-46c2-906d-dcc56ab25978" + "619256d7-3947-41d2-9b0f-8e5ca9d05f6c" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/f494d5a7-f7bc-47b9-b8e4-ed3529b46ac3" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/616e79c5-4c0b-4e41-a841-0f8e1237e61d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:05 GMT" + "Tue, 29 Oct 2019 13:18:53 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"f494d5a7-f7bc-47b9-b8e4-ed3529b46ac3\"", + "ResponseBody": "\"616e79c5-4c0b-4e41-a841-0f8e1237e61d\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/f494d5a7-f7bc-47b9-b8e4-ed3529b46ac3/versions/0.1/intents", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9mNDk0ZDVhNy1mN2JjLTQ3YjktYjhlNC1lZDM1MjliNDZhYzMvdmVyc2lvbnMvMC4xL2ludGVudHM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/616e79c5-4c0b-4e41-a841-0f8e1237e61d/versions/0.1/intents", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzYxNmU3OWM1LTRjMGItNGU0MS1hODQxLTBmOGUxMjM3ZTYxZC92ZXJzaW9ucy8wLjEvaW50ZW50cw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"WeatherInPlace\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/f494d5a7-f7bc-47b9-b8e4-ed3529b46ac3/versions/0.1/intents/764658f6-4e3b-4c9d-8796-9bc88cfdc060" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/616e79c5-4c0b-4e41-a841-0f8e1237e61d/versions/0.1/intents/cc5d49f9-175f-46f8-97a5-da526d70e431" ], "Apim-Request-Id": [ - "e6064739-d6e3-46b2-a67a-316023ec8068" + "24c69728-ed0d-4b80-ac9d-27018c53d060" ], "Request-Id": [ - "e6064739-d6e3-46b2-a67a-316023ec8068" + "24c69728-ed0d-4b80-ac9d-27018c53d060" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/f494d5a7-f7bc-47b9-b8e4-ed3529b46ac3/versions/0.1/intents/764658f6-4e3b-4c9d-8796-9bc88cfdc060" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/616e79c5-4c0b-4e41-a841-0f8e1237e61d/versions/0.1/intents/cc5d49f9-175f-46f8-97a5-da526d70e431" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:05 GMT" + "Tue, 29 Oct 2019 13:18:53 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"764658f6-4e3b-4c9d-8796-9bc88cfdc060\"", + "ResponseBody": "\"cc5d49f9-175f-46f8-97a5-da526d70e431\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/f494d5a7-f7bc-47b9-b8e4-ed3529b46ac3/versions/0.1/entities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9mNDk0ZDVhNy1mN2JjLTQ3YjktYjhlNC1lZDM1MjliNDZhYzMvdmVyc2lvbnMvMC4xL2VudGl0aWVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/616e79c5-4c0b-4e41-a841-0f8e1237e61d/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzYxNmU3OWM1LTRjMGItNGU0MS1hODQxLTBmOGUxMjM3ZTYxZC92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"Place\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -162,16 +162,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/f494d5a7-f7bc-47b9-b8e4-ed3529b46ac3/versions/0.1/entities/c1603532-41f2-4790-949b-a8b7f0a729b9" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/616e79c5-4c0b-4e41-a841-0f8e1237e61d/versions/0.1/entities/afcd5f99-8a64-4d19-bf71-4d4f590bd411" ], "Apim-Request-Id": [ - "8b334cf2-2e1f-4ace-9a68-bbc2c8b80a39" + "02ab073d-c28a-4929-8731-1c11ecc70300" ], "Request-Id": [ - "8b334cf2-2e1f-4ace-9a68-bbc2c8b80a39" + "02ab073d-c28a-4929-8731-1c11ecc70300" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/f494d5a7-f7bc-47b9-b8e4-ed3529b46ac3/versions/0.1/entities/c1603532-41f2-4790-949b-a8b7f0a729b9" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/616e79c5-4c0b-4e41-a841-0f8e1237e61d/versions/0.1/entities/afcd5f99-8a64-4d19-bf71-4d4f590bd411" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -186,7 +186,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:06 GMT" + "Tue, 29 Oct 2019 13:18:53 GMT" ], "Content-Length": [ "38" @@ -195,23 +195,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"c1603532-41f2-4790-949b-a8b7f0a729b9\"", + "ResponseBody": "\"afcd5f99-8a64-4d19-bf71-4d4f590bd411\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/f494d5a7-f7bc-47b9-b8e4-ed3529b46ac3/versions/0.1/examples", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9mNDk0ZDVhNy1mN2JjLTQ3YjktYjhlNC1lZDM1MjliNDZhYzMvdmVyc2lvbnMvMC4xL2V4YW1wbGVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/616e79c5-4c0b-4e41-a841-0f8e1237e61d/versions/0.1/examples", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzYxNmU3OWM1LTRjMGItNGU0MS1hODQxLTBmOGUxMjM3ZTYxZC92ZXJzaW9ucy8wLjEvZXhhbXBsZXM=", "RequestMethod": "POST", "RequestBody": "[\r\n {\r\n \"text\": \"whats the weather in seattle?\",\r\n \"entityLabels\": [\r\n {\r\n \"entityName\": \"Place\",\r\n \"startCharIndex\": 21,\r\n \"endCharIndex\": 29\r\n }\r\n ],\r\n \"intentName\": \"WeatherInPlace\"\r\n },\r\n {\r\n \"text\": \"whats the weather in buenos aires?\",\r\n \"entityLabels\": [\r\n {\r\n \"entityName\": \"Place\",\r\n \"startCharIndex\": 21,\r\n \"endCharIndex\": 34\r\n }\r\n ],\r\n \"intentName\": \"WeatherInPlace\"\r\n }\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -228,10 +228,10 @@ "no-cache" ], "Apim-Request-Id": [ - "cc44b840-2211-4075-a382-12d4ee4b2d85" + "66d1b855-36e3-4b73-84a3-e51d424f34b7" ], "Request-Id": [ - "cc44b840-2211-4075-a382-12d4ee4b2d85" + "66d1b855-36e3-4b73-84a3-e51d424f34b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -246,7 +246,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:06 GMT" + "Tue, 29 Oct 2019 13:18:54 GMT" ], "Content-Length": [ "204" @@ -255,23 +255,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"value\": {\r\n \"ExampleId\": 546056651,\r\n \"UtteranceText\": \"whats the weather in seattle?\"\r\n },\r\n \"hasError\": false\r\n },\r\n {\r\n \"value\": {\r\n \"ExampleId\": 546056650,\r\n \"UtteranceText\": \"whats the weather in buenos aires?\"\r\n },\r\n \"hasError\": false\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"value\": {\r\n \"ExampleId\": 650505999,\r\n \"UtteranceText\": \"whats the weather in seattle?\"\r\n },\r\n \"hasError\": false\r\n },\r\n {\r\n \"value\": {\r\n \"ExampleId\": 650506000,\r\n \"UtteranceText\": \"whats the weather in buenos aires?\"\r\n },\r\n \"hasError\": false\r\n }\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/f494d5a7-f7bc-47b9-b8e4-ed3529b46ac3?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9mNDk0ZDVhNy1mN2JjLTQ3YjktYjhlNC1lZDM1MjliNDZhYzM/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/616e79c5-4c0b-4e41-a841-0f8e1237e61d?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzYxNmU3OWM1LTRjMGItNGU0MS1hODQxLTBmOGUxMjM3ZTYxZD9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -282,10 +282,10 @@ "no-cache" ], "Apim-Request-Id": [ - "1e099856-a1fc-4af4-8056-2841def93daa" + "890725df-66b4-4bfc-8256-fdf48a43e0d1" ], "Request-Id": [ - "1e099856-a1fc-4af4-8056-2841def93daa" + "890725df-66b4-4bfc-8256-fdf48a43e0d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -300,7 +300,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:07 GMT" + "Tue, 29 Oct 2019 13:18:54 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/AddExamplesInBatch_SomeInvalidExamples_ReturnsSomeErrors.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/AddExamplesInBatch_SomeInvalidExamples_ReturnsSomeErrors.json index ae240337f373..b1d370f7328e 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/AddExamplesInBatch_SomeInvalidExamples_ReturnsSomeErrors.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/AddExamplesInBatch_SomeInvalidExamples_ReturnsSomeErrors.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"culture\": \"en-us\",\r\n \"domain\": \"Comics\",\r\n \"description\": \"New LUIS App\",\r\n \"usageScenario\": \"IoT\",\r\n \"name\": \"Examples Test App\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/ee33ad90-86ba-46c4-bcf3-815e7df5772a" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/a17b7e52-dc8c-4ed8-ae29-0caabe2b51d8" ], "Apim-Request-Id": [ - "ed5f4680-86ee-4af0-88ec-d5bb3e3f500b" + "8d22eb1a-b749-4b82-b53d-f4b19420f7d6" ], "Request-Id": [ - "ed5f4680-86ee-4af0-88ec-d5bb3e3f500b" + "8d22eb1a-b749-4b82-b53d-f4b19420f7d6" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/ee33ad90-86ba-46c4-bcf3-815e7df5772a" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/a17b7e52-dc8c-4ed8-ae29-0caabe2b51d8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:03 GMT" + "Tue, 29 Oct 2019 13:18:58 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"ee33ad90-86ba-46c4-bcf3-815e7df5772a\"", + "ResponseBody": "\"a17b7e52-dc8c-4ed8-ae29-0caabe2b51d8\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/ee33ad90-86ba-46c4-bcf3-815e7df5772a/versions/0.1/intents", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9lZTMzYWQ5MC04NmJhLTQ2YzQtYmNmMy04MTVlN2RmNTc3MmEvdmVyc2lvbnMvMC4xL2ludGVudHM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/a17b7e52-dc8c-4ed8-ae29-0caabe2b51d8/versions/0.1/intents", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2ExN2I3ZTUyLWRjOGMtNGVkOC1hZTI5LTBjYWFiZTJiNTFkOC92ZXJzaW9ucy8wLjEvaW50ZW50cw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"WeatherInPlace\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/ee33ad90-86ba-46c4-bcf3-815e7df5772a/versions/0.1/intents/5650afdb-dc76-446a-8a71-1d2a87a77654" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/a17b7e52-dc8c-4ed8-ae29-0caabe2b51d8/versions/0.1/intents/7a8a6569-c7c4-4d50-b818-a24bb60a4611" ], "Apim-Request-Id": [ - "40012b5c-b107-4e29-b679-68badfa7be61" + "0c84ce54-66bb-4aa8-9203-4de07aee3615" ], "Request-Id": [ - "40012b5c-b107-4e29-b679-68badfa7be61" + "0c84ce54-66bb-4aa8-9203-4de07aee3615" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/ee33ad90-86ba-46c4-bcf3-815e7df5772a/versions/0.1/intents/5650afdb-dc76-446a-8a71-1d2a87a77654" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/a17b7e52-dc8c-4ed8-ae29-0caabe2b51d8/versions/0.1/intents/7a8a6569-c7c4-4d50-b818-a24bb60a4611" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:03 GMT" + "Tue, 29 Oct 2019 13:18:58 GMT" ], "Content-Length": [ "38" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"5650afdb-dc76-446a-8a71-1d2a87a77654\"", + "ResponseBody": "\"7a8a6569-c7c4-4d50-b818-a24bb60a4611\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/ee33ad90-86ba-46c4-bcf3-815e7df5772a/versions/0.1/entities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9lZTMzYWQ5MC04NmJhLTQ2YzQtYmNmMy04MTVlN2RmNTc3MmEvdmVyc2lvbnMvMC4xL2VudGl0aWVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/a17b7e52-dc8c-4ed8-ae29-0caabe2b51d8/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2ExN2I3ZTUyLWRjOGMtNGVkOC1hZTI5LTBjYWFiZTJiNTFkOC92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"Place\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -162,16 +162,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/ee33ad90-86ba-46c4-bcf3-815e7df5772a/versions/0.1/entities/d466c64f-8cda-4397-9e5f-7ce677d86ac6" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/a17b7e52-dc8c-4ed8-ae29-0caabe2b51d8/versions/0.1/entities/1841ead4-28c0-4098-9ad0-e3d2ac21cc50" ], "Apim-Request-Id": [ - "1490cdb7-4803-4642-8ad7-8c2ef24de42d" + "c6596618-9b42-4646-bc01-13d113f508cf" ], "Request-Id": [ - "1490cdb7-4803-4642-8ad7-8c2ef24de42d" + "c6596618-9b42-4646-bc01-13d113f508cf" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/ee33ad90-86ba-46c4-bcf3-815e7df5772a/versions/0.1/entities/d466c64f-8cda-4397-9e5f-7ce677d86ac6" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/a17b7e52-dc8c-4ed8-ae29-0caabe2b51d8/versions/0.1/entities/1841ead4-28c0-4098-9ad0-e3d2ac21cc50" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -186,7 +186,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:03 GMT" + "Tue, 29 Oct 2019 13:18:58 GMT" ], "Content-Length": [ "38" @@ -195,23 +195,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"d466c64f-8cda-4397-9e5f-7ce677d86ac6\"", + "ResponseBody": "\"1841ead4-28c0-4098-9ad0-e3d2ac21cc50\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/ee33ad90-86ba-46c4-bcf3-815e7df5772a/versions/0.1/examples", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9lZTMzYWQ5MC04NmJhLTQ2YzQtYmNmMy04MTVlN2RmNTc3MmEvdmVyc2lvbnMvMC4xL2V4YW1wbGVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/a17b7e52-dc8c-4ed8-ae29-0caabe2b51d8/versions/0.1/examples", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2ExN2I3ZTUyLWRjOGMtNGVkOC1hZTI5LTBjYWFiZTJiNTFkOC92ZXJzaW9ucy8wLjEvZXhhbXBsZXM=", "RequestMethod": "POST", "RequestBody": "[\r\n {\r\n \"text\": \"whats the weather in seattle?\",\r\n \"entityLabels\": [\r\n {\r\n \"entityName\": \"Place\",\r\n \"startCharIndex\": 21,\r\n \"endCharIndex\": 29\r\n }\r\n ],\r\n \"intentName\": \"InvalidIntent\"\r\n },\r\n {\r\n \"text\": \"whats the weather in buenos aires?\",\r\n \"entityLabels\": [\r\n {\r\n \"entityName\": \"Place\",\r\n \"startCharIndex\": 21,\r\n \"endCharIndex\": 34\r\n }\r\n ],\r\n \"intentName\": \"IntentDoesNotExist\"\r\n }\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -228,10 +228,10 @@ "no-cache" ], "Apim-Request-Id": [ - "44211cc6-9309-4900-992c-a0e083afe73e" + "3b37a79a-a3c6-4cb7-9982-aef1d6b34833" ], "Request-Id": [ - "44211cc6-9309-4900-992c-a0e083afe73e" + "3b37a79a-a3c6-4cb7-9982-aef1d6b34833" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -246,7 +246,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:04 GMT" + "Tue, 29 Oct 2019 13:18:59 GMT" ], "Content-Length": [ "409" @@ -259,19 +259,19 @@ "StatusCode": 207 }, { - "RequestUri": "/luis/api/v2.0/apps/ee33ad90-86ba-46c4-bcf3-815e7df5772a?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9lZTMzYWQ5MC04NmJhLTQ2YzQtYmNmMy04MTVlN2RmNTc3MmE/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/a17b7e52-dc8c-4ed8-ae29-0caabe2b51d8?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2ExN2I3ZTUyLWRjOGMtNGVkOC1hZTI5LTBjYWFiZTJiNTFkOD9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -282,10 +282,10 @@ "no-cache" ], "Apim-Request-Id": [ - "11488ac2-19d3-47eb-bc35-c28ea12e1192" + "4abae40f-2c5a-40bc-b9c5-630038784443" ], "Request-Id": [ - "11488ac2-19d3-47eb-bc35-c28ea12e1192" + "4abae40f-2c5a-40bc-b9c5-630038784443" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -300,7 +300,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:04 GMT" + "Tue, 29 Oct 2019 13:19:00 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/DeleteExample.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/DeleteExample.json index 113d4d400725..3444ccca83ce 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/DeleteExample.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/DeleteExample.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"culture\": \"en-us\",\r\n \"domain\": \"Comics\",\r\n \"description\": \"New LUIS App\",\r\n \"usageScenario\": \"IoT\",\r\n \"name\": \"Examples Test App\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/0c4ee3a6-3a1e-4732-9309-649c12ef1c5c" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/f487ed92-b282-4cba-b8bd-15ac4abac35e" ], "Apim-Request-Id": [ - "0d56751f-8a69-4778-a579-3022fb764142" + "74bc5fd2-9042-4f7d-8d90-621bae6598b9" ], "Request-Id": [ - "0d56751f-8a69-4778-a579-3022fb764142" + "74bc5fd2-9042-4f7d-8d90-621bae6598b9" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/0c4ee3a6-3a1e-4732-9309-649c12ef1c5c" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/f487ed92-b282-4cba-b8bd-15ac4abac35e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:12 GMT" + "Tue, 29 Oct 2019 13:18:48 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"0c4ee3a6-3a1e-4732-9309-649c12ef1c5c\"", + "ResponseBody": "\"f487ed92-b282-4cba-b8bd-15ac4abac35e\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/0c4ee3a6-3a1e-4732-9309-649c12ef1c5c/versions/0.1/example", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8wYzRlZTNhNi0zYTFlLTQ3MzItOTMwOS02NDljMTJlZjFjNWMvdmVyc2lvbnMvMC4xL2V4YW1wbGU=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/f487ed92-b282-4cba-b8bd-15ac4abac35e/versions/0.1/example", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2Y0ODdlZDkyLWIyODItNGNiYS1iOGJkLTE1YWM0YWJhYzM1ZS92ZXJzaW9ucy8wLjEvZXhhbXBsZQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"text\": \"Amir is awesome\",\r\n \"entityLabels\": [],\r\n \"intentName\": \"None\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,10 +96,10 @@ "no-cache" ], "Apim-Request-Id": [ - "124ecedd-51e9-4ff5-a9ce-487e932a0aec" + "44279c61-5ce1-46cd-a71f-78f58b4f2364" ], "Request-Id": [ - "124ecedd-51e9-4ff5-a9ce-487e932a0aec" + "44279c61-5ce1-46cd-a71f-78f58b4f2364" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -114,7 +114,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:12 GMT" + "Tue, 29 Oct 2019 13:18:48 GMT" ], "Content-Length": [ "57" @@ -123,23 +123,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"ExampleId\": 546056659,\r\n \"UtteranceText\": \"amir is awesome\"\r\n}", + "ResponseBody": "{\r\n \"ExampleId\": 650505997,\r\n \"UtteranceText\": \"amir is awesome\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/0c4ee3a6-3a1e-4732-9309-649c12ef1c5c/versions/0.1/examples/546056659", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8wYzRlZTNhNi0zYTFlLTQ3MzItOTMwOS02NDljMTJlZjFjNWMvdmVyc2lvbnMvMC4xL2V4YW1wbGVzLzU0NjA1NjY1OQ==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/f487ed92-b282-4cba-b8bd-15ac4abac35e/versions/0.1/examples/650505997", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2Y0ODdlZDkyLWIyODItNGNiYS1iOGJkLTE1YWM0YWJhYzM1ZS92ZXJzaW9ucy8wLjEvZXhhbXBsZXMvNjUwNTA1OTk3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -150,10 +150,10 @@ "no-cache" ], "Apim-Request-Id": [ - "a3d1afba-64f2-4e34-aa14-1afacbc23ce8" + "5dd8b279-f2e1-4670-9e5a-aa6f81df43e3" ], "Request-Id": [ - "a3d1afba-64f2-4e34-aa14-1afacbc23ce8" + "5dd8b279-f2e1-4670-9e5a-aa6f81df43e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -168,7 +168,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:13 GMT" + "Tue, 29 Oct 2019 13:18:48 GMT" ], "Content-Length": [ "51" @@ -181,19 +181,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/0c4ee3a6-3a1e-4732-9309-649c12ef1c5c/versions/0.1/examples?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8wYzRlZTNhNi0zYTFlLTQ3MzItOTMwOS02NDljMTJlZjFjNWMvdmVyc2lvbnMvMC4xL2V4YW1wbGVzP3NraXA9MCZ0YWtlPTEwMA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/f487ed92-b282-4cba-b8bd-15ac4abac35e/versions/0.1/examples?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2Y0ODdlZDkyLWIyODItNGNiYS1iOGJkLTE1YWM0YWJhYzM1ZS92ZXJzaW9ucy8wLjEvZXhhbXBsZXM/c2tpcD0wJnRha2U9MTAw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "fbe0177b-2bb5-4232-9643-6a6e57266f8e" + "94cd9c52-051a-4109-b011-83e698ef67e6" ], "Request-Id": [ - "fbe0177b-2bb5-4232-9643-6a6e57266f8e" + "94cd9c52-051a-4109-b011-83e698ef67e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,7 +222,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:13 GMT" + "Tue, 29 Oct 2019 13:18:49 GMT" ], "Content-Length": [ "2" @@ -235,19 +235,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/0c4ee3a6-3a1e-4732-9309-649c12ef1c5c?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8wYzRlZTNhNi0zYTFlLTQ3MzItOTMwOS02NDljMTJlZjFjNWM/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/f487ed92-b282-4cba-b8bd-15ac4abac35e?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2Y0ODdlZDkyLWIyODItNGNiYS1iOGJkLTE1YWM0YWJhYzM1ZT9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -258,10 +258,10 @@ "no-cache" ], "Apim-Request-Id": [ - "9075ede9-0130-45ae-8f22-64baca411e9d" + "a63c0445-7da3-4eb8-a4e1-ed265877d044" ], "Request-Id": [ - "9075ede9-0130-45ae-8f22-64baca411e9d" + "a63c0445-7da3-4eb8-a4e1-ed265877d044" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -276,7 +276,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:14 GMT" + "Tue, 29 Oct 2019 13:18:50 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/ListExamples.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/ListExamples.json index 84f3d157ee37..c1b7da8a343d 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/ListExamples.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/ListExamples.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/examples?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2V4YW1wbGVzP3NraXA9MCZ0YWtlPTEwMA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/examples?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZXhhbXBsZXM/c2tpcD0wJnRha2U9MTAw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -24,10 +24,10 @@ "no-cache" ], "Apim-Request-Id": [ - "505ad9d1-d1e9-4955-9d15-08ad00332ea2" + "1ec4efd6-e778-4b71-bb41-50b3d3dbae93" ], "Request-Id": [ - "505ad9d1-d1e9-4955-9d15-08ad00332ea2" + "1ec4efd6-e778-4b71-bb41-50b3d3dbae93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -42,16 +42,16 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:15 GMT" + "Tue, 29 Oct 2019 13:18:46 GMT" ], "Content-Length": [ - "29395" + "37006" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": 546020525,\r\n \"text\": \"kjsdl\",\r\n \"intentLabel\": \"sfds\",\r\n \"tokenizedText\": [\r\n \"kjsdl\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.9342156\r\n },\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.107506149\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546020524,\r\n \"text\": \"ksjdflsja'\",\r\n \"intentLabel\": \"sfds\",\r\n \"tokenizedText\": [\r\n \"ksjdflsja\",\r\n \"'\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.918303\r\n },\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.102177382\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546020523,\r\n \"text\": \";lkjdf;ljs\",\r\n \"intentLabel\": \"sfds\",\r\n \"tokenizedText\": [\r\n \";\",\r\n \"lkjdf\",\r\n \";\",\r\n \"ljs\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.91342926\r\n },\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.08962273\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546020522,\r\n \"text\": \"lkasdjflas\",\r\n \"intentLabel\": \"sfds\",\r\n \"tokenizedText\": [\r\n \"lkasdjflas\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.9342156\r\n },\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.107506149\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546020521,\r\n \"text\": \"lsakdjflas\",\r\n \"intentLabel\": \"sfds\",\r\n \"tokenizedText\": [\r\n \"lsakdjflas\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.9342156\r\n },\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.107506149\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546020520,\r\n \"text\": \"lskejf\",\r\n \"intentLabel\": \"sfds\",\r\n \"tokenizedText\": [\r\n \"lskejf\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.9342156\r\n },\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.107506149\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016191,\r\n \"text\": \"save number to contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"save\",\r\n \"number\",\r\n \"to\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.99965173\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.0004704318\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016190,\r\n \"text\": \"save number\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"save\",\r\n \"number\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9989172\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.009493125\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016189,\r\n \"text\": \"save contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"save\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999074638\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.00655019656\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016188,\r\n \"text\": \"save a number for me\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"save\",\r\n \"a\",\r\n \"number\",\r\n \"for\",\r\n \"me\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.99962765\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000298984727\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016187,\r\n \"text\": \"save a new contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"save\",\r\n \"a\",\r\n \"new\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999601662\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.0005302621\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016186,\r\n \"text\": \"save a contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"save\",\r\n \"a\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9994065\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.00157739641\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016185,\r\n \"text\": \"put the sender of last message into my contact list\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"put\",\r\n \"the\",\r\n \"sender\",\r\n \"of\",\r\n \"last\",\r\n \"message\",\r\n \"into\",\r\n \"my\",\r\n \"contact\",\r\n \"list\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999840736\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 1.713721E-05\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016184,\r\n \"text\": \"please add this number to my contacts\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"please\",\r\n \"add\",\r\n \"this\",\r\n \"number\",\r\n \"to\",\r\n \"my\",\r\n \"contacts\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9998331\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 7.917768E-05\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016183,\r\n \"text\": \"please add this contact to my address book\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"please\",\r\n \"add\",\r\n \"this\",\r\n \"contact\",\r\n \"to\",\r\n \"my\",\r\n \"address\",\r\n \"book\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999848843\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 3.691196E-05\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016182,\r\n \"text\": \"please add a new contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"please\",\r\n \"add\",\r\n \"a\",\r\n \"new\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9997649\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000247865159\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016181,\r\n \"text\": \"new contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"new\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999219\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.008755591\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016180,\r\n \"text\": \"make a new contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"make\",\r\n \"a\",\r\n \"new\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999599755\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000748156162\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016179,\r\n \"text\": \"i'd like to add a contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"i\",\r\n \"'\",\r\n \"d\",\r\n \"like\",\r\n \"to\",\r\n \"add\",\r\n \"a\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9996734\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 6.808412E-05\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016178,\r\n \"text\": \"i want to add a contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"i\",\r\n \"want\",\r\n \"to\",\r\n \"add\",\r\n \"a\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9998083\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000110282963\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016177,\r\n \"text\": \"i need to add a contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"i\",\r\n \"need\",\r\n \"to\",\r\n \"add\",\r\n \"a\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999807835\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.00011059377\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016176,\r\n \"text\": \"create contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"create\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999033451\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.008431049\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016175,\r\n \"text\": \"create a new contact for the caller\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"create\",\r\n \"a\",\r\n \"new\",\r\n \"contact\",\r\n \"for\",\r\n \"the\",\r\n \"caller\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9997597\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 7.385972E-05\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016174,\r\n \"text\": \"create a new contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"create\",\r\n \"a\",\r\n \"new\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9995859\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000657088356\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016173,\r\n \"text\": \"create a contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"create\",\r\n \"a\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999381244\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.00200617569\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016172,\r\n \"text\": \"contacts add new\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"contacts\",\r\n \"add\",\r\n \"new\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9994823\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.002884447\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016171,\r\n \"text\": \"can you put my dad in my contacts?\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"can\",\r\n \"you\",\r\n \"put\",\r\n \"my\",\r\n \"dad\",\r\n \"in\",\r\n \"my\",\r\n \"contacts\",\r\n \"?\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9997978\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 3.570009E-05\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016170,\r\n \"text\": \"can you create a contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"can\",\r\n \"you\",\r\n \"create\",\r\n \"a\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9996491\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000266303221\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016169,\r\n \"text\": \"can you add this number to my contacts\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"can\",\r\n \"you\",\r\n \"add\",\r\n \"this\",\r\n \"number\",\r\n \"to\",\r\n \"my\",\r\n \"contacts\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9998574\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 4.29789943E-05\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016168,\r\n \"text\": \"can you add someone to my contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"can\",\r\n \"you\",\r\n \"add\",\r\n \"someone\",\r\n \"to\",\r\n \"my\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.99982214\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 6.242961E-05\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016167,\r\n \"text\": \"can you add a phone number to my contacts\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"can\",\r\n \"you\",\r\n \"add\",\r\n \"a\",\r\n \"phone\",\r\n \"number\",\r\n \"to\",\r\n \"my\",\r\n \"contacts\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9998841\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 2.46307227E-05\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016166,\r\n \"text\": \"can you add a contact for me\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"can\",\r\n \"you\",\r\n \"add\",\r\n \"a\",\r\n \"contact\",\r\n \"for\",\r\n \"me\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999835\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 5.74082951E-05\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016165,\r\n \"text\": \"can i add a contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"can\",\r\n \"i\",\r\n \"add\",\r\n \"a\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9997526\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000236614753\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016164,\r\n \"text\": \"add zero one two three four five six seven eight nine zero\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"zero\",\r\n \"one\",\r\n \"two\",\r\n \"three\",\r\n \"four\",\r\n \"five\",\r\n \"six\",\r\n \"seven\",\r\n \"eight\",\r\n \"nine\",\r\n \"zero\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999835968\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 9.663678E-06\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016163,\r\n \"text\": \"add to my contacts\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"to\",\r\n \"my\",\r\n \"contacts\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999648631\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.0008968212\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016162,\r\n \"text\": \"add to my contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"to\",\r\n \"my\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999726355\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.0005337665\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016161,\r\n \"text\": \"add to contact list\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"to\",\r\n \"contact\",\r\n \"list\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999689162\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.0006011162\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016160,\r\n \"text\": \"add this number to my contacts\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"this\",\r\n \"number\",\r\n \"to\",\r\n \"my\",\r\n \"contacts\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9998002\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000152429871\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016159,\r\n \"text\": \"add someone to my contacts\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"someone\",\r\n \"to\",\r\n \"my\",\r\n \"contacts\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9996882\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000386868865\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016158,\r\n \"text\": \"add phone number to my contacts\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"phone\",\r\n \"number\",\r\n \"to\",\r\n \"my\",\r\n \"contacts\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9998083\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000148310413\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016157,\r\n \"text\": \"add phone number\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"phone\",\r\n \"number\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999500632\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.0025626854\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016156,\r\n \"text\": \"add phone contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"phone\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9995681\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.0017519407\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016155,\r\n \"text\": \"add oh one two three four five six seven eight nine oh to my contacts\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"oh\",\r\n \"one\",\r\n \"two\",\r\n \"three\",\r\n \"four\",\r\n \"five\",\r\n \"six\",\r\n \"seven\",\r\n \"eight\",\r\n \"nine\",\r\n \"oh\",\r\n \"to\",\r\n \"my\",\r\n \"contacts\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9998951\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 3.15198963E-06\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016154,\r\n \"text\": \"add new contact to contacts\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"new\",\r\n \"contact\",\r\n \"to\",\r\n \"contacts\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9997897\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000241209331\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016153,\r\n \"text\": \"add new contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"new\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9995895\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.00175998814\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016152,\r\n \"text\": \"add me a contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"me\",\r\n \"a\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999693\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000571939454\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016151,\r\n \"text\": \"add email address to contacts\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"email\",\r\n \"address\",\r\n \"to\",\r\n \"contacts\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999734461\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000374770985\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016150,\r\n \"text\": \"add dad to contacts\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"dad\",\r\n \"to\",\r\n \"contacts\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999597132\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.0009375089\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016149,\r\n \"text\": \"add contacts\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"contacts\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999159455\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.0125651257\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016148,\r\n \"text\": \"add contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999356449\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.00713587925\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016147,\r\n \"text\": \"add brother to contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"brother\",\r\n \"to\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999661\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000642905652\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016146,\r\n \"text\": \"add a phone number to my contacts\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"a\",\r\n \"phone\",\r\n \"number\",\r\n \"to\",\r\n \"my\",\r\n \"contacts\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999844551\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 7.56046938E-05\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016145,\r\n \"text\": \"add a number to my contacts\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"a\",\r\n \"number\",\r\n \"to\",\r\n \"my\",\r\n \"contacts\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9998107\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.0001487945\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016144,\r\n \"text\": \"add a new contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"a\",\r\n \"new\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9997063\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.00058155763\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016143,\r\n \"text\": \"add a contact number\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"a\",\r\n \"contact\",\r\n \"number\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999723\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.0005419788\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546016142,\r\n \"text\": \"add a contact\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"a\",\r\n \"contact\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999579\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.001726323\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546012375,\r\n \"text\": \"whether i have new message\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"whether\",\r\n \"i\",\r\n \"have\",\r\n \"new\",\r\n \"message\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999584258\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.0004752115\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546012374,\r\n \"text\": \"whether i have new email\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"whether\",\r\n \"i\",\r\n \"have\",\r\n \"new\",\r\n \"email\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9996076\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.0005018803\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546012373,\r\n \"text\": \"whether i get new message\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"whether\",\r\n \"i\",\r\n \"get\",\r\n \"new\",\r\n \"message\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999584\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.0004759054\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546012372,\r\n \"text\": \"whether i get new email\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"whether\",\r\n \"i\",\r\n \"get\",\r\n \"new\",\r\n \"email\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9996074\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.00050288596\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546012371,\r\n \"text\": \"show next unread\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"show\",\r\n \"next\",\r\n \"unread\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9990813\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.003950803\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546012370,\r\n \"text\": \"send an urgent email from my email to partone underscore partwo at hotmail dot com\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"send\",\r\n \"an\",\r\n \"urgent\",\r\n \"email\",\r\n \"from\",\r\n \"my\",\r\n \"email\",\r\n \"to\",\r\n \"partone\",\r\n \"underscore\",\r\n \"partwo\",\r\n \"at\",\r\n \"hotmail\",\r\n \"dot\",\r\n \"com\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9998145\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 4.88335945E-06\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546012369,\r\n \"text\": \"send an urgent email\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"send\",\r\n \"an\",\r\n \"urgent\",\r\n \"email\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999488235\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.00131390232\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546012368,\r\n \"text\": \"send an email with a red bang\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"send\",\r\n \"an\",\r\n \"email\",\r\n \"with\",\r\n \"a\",\r\n \"red\",\r\n \"bang\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999744\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000119795994\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546012367,\r\n \"text\": \"read unread message\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"read\",\r\n \"unread\",\r\n \"message\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9991721\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.003492099\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546012366,\r\n \"text\": \"read new message\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"read\",\r\n \"new\",\r\n \"message\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999260962\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.00347660412\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546012365,\r\n \"text\": \"next unread email\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"next\",\r\n \"unread\",\r\n \"email\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999216855\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.00379835069\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546012364,\r\n \"text\": \"mark the email flagged\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"mark\",\r\n \"the\",\r\n \"email\",\r\n \"flagged\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9993803\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.0013453993\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546012363,\r\n \"text\": \"is there unread emails from linda\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"is\",\r\n \"there\",\r\n \"unread\",\r\n \"emails\",\r\n \"from\",\r\n \"linda\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9995869\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000231424958\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546012362,\r\n \"text\": \"flag this email as important for me\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"flag\",\r\n \"this\",\r\n \"email\",\r\n \"as\",\r\n \"important\",\r\n \"for\",\r\n \"me\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9997073\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000121778976\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546012361,\r\n \"text\": \"do i receive new message\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"do\",\r\n \"i\",\r\n \"receive\",\r\n \"new\",\r\n \"message\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.99956286\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.00047393475\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546012360,\r\n \"text\": \"do i receive new email\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"do\",\r\n \"i\",\r\n \"receive\",\r\n \"new\",\r\n \"email\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999587357\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000501052942\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546012359,\r\n \"text\": \"do i have new message\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"do\",\r\n \"i\",\r\n \"have\",\r\n \"new\",\r\n \"message\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9995933\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000457054382\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546012358,\r\n \"text\": \"do i have new email now\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"do\",\r\n \"i\",\r\n \"have\",\r\n \"new\",\r\n \"email\",\r\n \"now\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9996963\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000223147479\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546012357,\r\n \"text\": \"any new message now\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"any\",\r\n \"new\",\r\n \"message\",\r\n \"now\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999462247\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.001151231\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546012356,\r\n \"text\": \"any new email now\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"any\",\r\n \"new\",\r\n \"email\",\r\n \"now\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9995009\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.00122859818\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546012355,\r\n \"text\": \"add flag to this email\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"add\",\r\n \"flag\",\r\n \"to\",\r\n \"this\",\r\n \"email\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9996796\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000402951147\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546006801,\r\n \"text\": \"write an urgent email to edward\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"write\",\r\n \"an\",\r\n \"urgent\",\r\n \"email\",\r\n \"to\",\r\n \"edward\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999651\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000230831793\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546006800,\r\n \"text\": \"will you send a marked non urgent email to jason\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"will\",\r\n \"you\",\r\n \"send\",\r\n \"a\",\r\n \"marked\",\r\n \"non\",\r\n \"urgent\",\r\n \"email\",\r\n \"to\",\r\n \"jason\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9998269\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 2.34805975E-05\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546006799,\r\n \"text\": \"whether judith available ?\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"whether\",\r\n \"judith\",\r\n \"available\",\r\n \"?\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999337435\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.00130307337\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546006798,\r\n \"text\": \"whether is gerald available\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"whether\",\r\n \"is\",\r\n \"gerald\",\r\n \"available\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9993846\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.00125712447\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546006797,\r\n \"text\": \"whether cheryl is available now\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"whether\",\r\n \"cheryl\",\r\n \"is\",\r\n \"available\",\r\n \"now\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9995078\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.0005042155\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546006796,\r\n \"text\": \"what's the status of jeremy\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"what\",\r\n \"'\",\r\n \"s\",\r\n \"the\",\r\n \"status\",\r\n \"of\",\r\n \"jeremy\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999351\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000247929478\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546006795,\r\n \"text\": \"what's status of maria on skype\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"what\",\r\n \"'\",\r\n \"s\",\r\n \"status\",\r\n \"of\",\r\n \"maria\",\r\n \"on\",\r\n \"skype\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9995042\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000123831633\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546006794,\r\n \"text\": \"what's paul 's cell phone number\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"what\",\r\n \"'\",\r\n \"s\",\r\n \"paul\",\r\n \"'\",\r\n \"s\",\r\n \"cell\",\r\n \"phone\",\r\n \"number\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9994423\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 9.428838E-05\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546006793,\r\n \"text\": \"what's maria 's mobile number\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"what\",\r\n \"'\",\r\n \"s\",\r\n \"maria\",\r\n \"'\",\r\n \"s\",\r\n \"mobile\",\r\n \"number\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999343157\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000162410142\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546006792,\r\n \"text\": \"what's evelyn's number\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"what\",\r\n \"'\",\r\n \"s\",\r\n \"evelyn\",\r\n \"'\",\r\n \"s\",\r\n \"number\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999171138\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000306581525\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546006791,\r\n \"text\": \"what was the last text i sent to carol\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"what\",\r\n \"was\",\r\n \"the\",\r\n \"last\",\r\n \"text\",\r\n \"i\",\r\n \"sent\",\r\n \"to\",\r\n \"carol\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9997978\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 3.65620654E-05\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546006790,\r\n \"text\": \"what 's the status of roy ?\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"what\",\r\n \"'\",\r\n \"s\",\r\n \"the\",\r\n \"status\",\r\n \"of\",\r\n \"roy\",\r\n \"?\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9994749\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000130614018\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546006789,\r\n \"text\": \"what olivia last message said\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"what\",\r\n \"olivia\",\r\n \"last\",\r\n \"message\",\r\n \"said\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9995121\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.0005112587\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546006788,\r\n \"text\": \"what is the status of christopher now ?\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"what\",\r\n \"is\",\r\n \"the\",\r\n \"status\",\r\n \"of\",\r\n \"christopher\",\r\n \"now\",\r\n \"?\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999734\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 6.634946E-05\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546006787,\r\n \"text\": \"what is the phone number for eugene\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"what\",\r\n \"is\",\r\n \"the\",\r\n \"phone\",\r\n \"number\",\r\n \"for\",\r\n \"eugene\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9997235\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000108129687\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546006786,\r\n \"text\": \"what is the number of jennifer\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"what\",\r\n \"is\",\r\n \"the\",\r\n \"number\",\r\n \"of\",\r\n \"jennifer\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9996663\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000208766389\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546006785,\r\n \"text\": \"what is teresa 's email address\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"what\",\r\n \"is\",\r\n \"teresa\",\r\n \"'\",\r\n \"s\",\r\n \"email\",\r\n \"address\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999480367\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.0002147616\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546006784,\r\n \"text\": \"what is robert 's phone number\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"what\",\r\n \"is\",\r\n \"robert\",\r\n \"'\",\r\n \"s\",\r\n \"phone\",\r\n \"number\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999436557\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000220903064\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546006783,\r\n \"text\": \"what is my bobby 's phone number\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"what\",\r\n \"is\",\r\n \"my\",\r\n \"bobby\",\r\n \"'\",\r\n \"s\",\r\n \"phone\",\r\n \"number\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999564767\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000104374092\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546006782,\r\n \"text\": \"what is jennifer's email address ?\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"what\",\r\n \"is\",\r\n \"jennifer\",\r\n \"'\",\r\n \"s\",\r\n \"email\",\r\n \"address\",\r\n \"?\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9995545\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000120307079\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546006781,\r\n \"text\": \"what is christopher 's phone number\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"what\",\r\n \"is\",\r\n \"christopher\",\r\n \"'\",\r\n \"s\",\r\n \"phone\",\r\n \"number\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999443233\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000212674931\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546006780,\r\n \"text\": \"what is bryan's number\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"what\",\r\n \"is\",\r\n \"bryan\",\r\n \"'\",\r\n \"s\",\r\n \"number\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999277353\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.000442518125\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 546006779,\r\n \"text\": \"what henry just said\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"what\",\r\n \"henry\",\r\n \"just\",\r\n \"said\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999301434\r\n },\r\n {\r\n \"name\": \"sfds\",\r\n \"score\": 0.00141966285\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": 648305186,\r\n \"text\": \"will you cancel it please\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"will\",\r\n \"you\",\r\n \"cancel\",\r\n \"it\",\r\n \"please\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9945271\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.0165792368\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00547824148\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305185,\r\n \"text\": \"stop finding it\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"stop\",\r\n \"finding\",\r\n \"it\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9981542\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.008028806\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00281131337\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305184,\r\n \"text\": \"stop connecting it\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"stop\",\r\n \"connecting\",\r\n \"it\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9981252\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.008147732\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.002832382\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305183,\r\n \"text\": \"stop checking it\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"stop\",\r\n \"checking\",\r\n \"it\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.998190165\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.007882501\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00258080638\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305182,\r\n \"text\": \"stop changing it\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"stop\",\r\n \"changing\",\r\n \"it\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9967259\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00959899649\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00454494031\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305181,\r\n \"text\": \"quit the changing\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"quit\",\r\n \"the\",\r\n \"changing\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9941298\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.0155262426\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00609422429\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305180,\r\n \"text\": \"please cancel that\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"please\",\r\n \"cancel\",\r\n \"that\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9978608\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00593246473\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00413638446\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305179,\r\n \"text\": \"please cancel it\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"please\",\r\n \"cancel\",\r\n \"it\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.997849643\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.005267735\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.004828847\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305178,\r\n \"text\": \"please cancel all of them\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"please\",\r\n \"cancel\",\r\n \"all\",\r\n \"of\",\r\n \"them\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.995457768\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.011093487\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00788888149\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305177,\r\n \"text\": \"please cancel\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"please\",\r\n \"cancel\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.997247458\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.007280971\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00339278136\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305176,\r\n \"text\": \"ohh never mind\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"ohh\",\r\n \"never\",\r\n \"mind\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9977483\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.008308471\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00324915256\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305175,\r\n \"text\": \"oh cancel\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"oh\",\r\n \"cancel\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999119\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00563484663\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.000894455239\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305174,\r\n \"text\": \"nothing just cancel it\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"nothing\",\r\n \"just\",\r\n \"cancel\",\r\n \"it\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999395549\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.004509032\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00232264819\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305173,\r\n \"text\": \"nothing just cancel\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"nothing\",\r\n \"just\",\r\n \"cancel\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9993105\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.005825282\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00166863063\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305172,\r\n \"text\": \"no, cancel please\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"no\",\r\n \",\",\r\n \"cancel\",\r\n \"please\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9961002\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.007918583\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00732960273\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305171,\r\n \"text\": \"no i just cancel it\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"no\",\r\n \"i\",\r\n \"just\",\r\n \"cancel\",\r\n \"it\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9996093\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00279069\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.002538708\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305170,\r\n \"text\": \"no cancel it\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"no\",\r\n \"cancel\",\r\n \"it\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999369562\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00352280564\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00127697852\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305169,\r\n \"text\": \"no cancel\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"no\",\r\n \"cancel\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9992695\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.004709622\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.0008092332\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305168,\r\n \"text\": \"never mind, forget about the creating\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"never\",\r\n \"mind\",\r\n \",\",\r\n \"forget\",\r\n \"about\",\r\n \"the\",\r\n \"creating\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9932115\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.0217706244\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.009377016\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305167,\r\n \"text\": \"never mind, cancel the changing\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"never\",\r\n \"mind\",\r\n \",\",\r\n \"cancel\",\r\n \"the\",\r\n \"changing\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.997816563\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00778219\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.004356131\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305166,\r\n \"text\": \"never mind could you cancel that\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"never\",\r\n \"mind\",\r\n \"could\",\r\n \"you\",\r\n \"cancel\",\r\n \"that\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.998578846\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.005266286\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00425084447\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305165,\r\n \"text\": \"never mind\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"never\",\r\n \"mind\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9982863\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00750265736\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.0017956252\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305164,\r\n \"text\": \"need to cancel it\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"need\",\r\n \"to\",\r\n \"cancel\",\r\n \"it\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9995414\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00337677868\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.0007468117\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305163,\r\n \"text\": \"let me cancel that\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"let\",\r\n \"me\",\r\n \"cancel\",\r\n \"that\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999322653\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00389994448\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00173722731\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305162,\r\n \"text\": \"just cancel it\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"just\",\r\n \"cancel\",\r\n \"it\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999728262\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00325875077\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00110998517\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305161,\r\n \"text\": \"just cancel\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"just\",\r\n \"cancel\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999703944\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.0043241214\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.000696481555\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305160,\r\n \"text\": \"i'd like to cancel this\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"i\",\r\n \"'\",\r\n \"d\",\r\n \"like\",\r\n \"to\",\r\n \"cancel\",\r\n \"this\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.997869134\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00433732942\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00423280057\r\n }\r\n ],\r\n \"entityPredictions\": [\r\n {\r\n \"entityName\": \"closedlist\",\r\n \"startTokenIndex\": 2,\r\n \"endTokenIndex\": 2,\r\n \"phrase\": \"d\",\r\n \"entityType\": 5,\r\n \"role\": \"\"\r\n }\r\n ],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305159,\r\n \"text\": \"i would like to cancel it\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"i\",\r\n \"would\",\r\n \"like\",\r\n \"to\",\r\n \"cancel\",\r\n \"it\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9995369\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00224450277\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00181144732\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305158,\r\n \"text\": \"i would like to cancel all of them\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"i\",\r\n \"would\",\r\n \"like\",\r\n \"to\",\r\n \"cancel\",\r\n \"all\",\r\n \"of\",\r\n \"them\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9988158\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.005461611\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.003103049\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305157,\r\n \"text\": \"i want to cancel that\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"i\",\r\n \"want\",\r\n \"to\",\r\n \"cancel\",\r\n \"that\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999734461\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.002699952\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.0007075595\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305156,\r\n \"text\": \"i want to cancel it please\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"i\",\r\n \"want\",\r\n \"to\",\r\n \"cancel\",\r\n \"it\",\r\n \"please\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.998894334\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.004145859\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.003839009\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305155,\r\n \"text\": \"i need to cancel that\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"i\",\r\n \"need\",\r\n \"to\",\r\n \"cancel\",\r\n \"that\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9995852\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.002903612\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.0008818322\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305154,\r\n \"text\": \"i have decided to cancel it\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"i\",\r\n \"have\",\r\n \"decided\",\r\n \"to\",\r\n \"cancel\",\r\n \"it\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9989953\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.004000774\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00324275857\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305153,\r\n \"text\": \"i don't want want to change this appointment anymore\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"i\",\r\n \"don\",\r\n \"'\",\r\n \"t\",\r\n \"want\",\r\n \"want\",\r\n \"to\",\r\n \"change\",\r\n \"this\",\r\n \"appointment\",\r\n \"anymore\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9873522\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.025842201\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.0107394475\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305152,\r\n \"text\": \"i don't want to join it\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"i\",\r\n \"don\",\r\n \"'\",\r\n \"t\",\r\n \"want\",\r\n \"to\",\r\n \"join\",\r\n \"it\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9987205\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.006212529\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.004525281\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305151,\r\n \"text\": \"i don't want to find it anymore\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"i\",\r\n \"don\",\r\n \"'\",\r\n \"t\",\r\n \"want\",\r\n \"to\",\r\n \"find\",\r\n \"it\",\r\n \"anymore\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9994594\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00349260354\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00349076046\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305150,\r\n \"text\": \"i don't want to do it now\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"i\",\r\n \"don\",\r\n \"'\",\r\n \"t\",\r\n \"want\",\r\n \"to\",\r\n \"do\",\r\n \"it\",\r\n \"now\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9994113\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.0044354545\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.003555316\r\n }\r\n ],\r\n \"entityPredictions\": [\r\n {\r\n \"entityName\": \"datetimeV2\",\r\n \"startTokenIndex\": 8,\r\n \"endTokenIndex\": 8,\r\n \"phrase\": \"now\",\r\n \"entityType\": 2,\r\n \"role\": \"\"\r\n }\r\n ],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305149,\r\n \"text\": \"i don't want to change it anymore\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"i\",\r\n \"don\",\r\n \"'\",\r\n \"t\",\r\n \"want\",\r\n \"to\",\r\n \"change\",\r\n \"it\",\r\n \"anymore\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999309063\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00458539464\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00312496256\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305148,\r\n \"text\": \"help me to cancel this\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"help\",\r\n \"me\",\r\n \"to\",\r\n \"cancel\",\r\n \"this\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.996096134\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.0128246741\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.002886376\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305147,\r\n \"text\": \"go ahead and cancel it\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"go\",\r\n \"ahead\",\r\n \"and\",\r\n \"cancel\",\r\n \"it\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9976517\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.0104567725\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.003367515\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305146,\r\n \"text\": \"forget it\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"forget\",\r\n \"it\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.998663366\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.007664937\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00154528406\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305145,\r\n \"text\": \"forget cancel\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"forget\",\r\n \"cancel\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9990034\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.006001788\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00108857732\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305144,\r\n \"text\": \"don't create it\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"don\",\r\n \"'\",\r\n \"t\",\r\n \"create\",\r\n \"it\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.993781447\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.034020707\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00431229826\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305143,\r\n \"text\": \"don't change it\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"don\",\r\n \"'\",\r\n \"t\",\r\n \"change\",\r\n \"it\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9993253\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.0049613947\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00270686159\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305142,\r\n \"text\": \"could you cancel it please\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"could\",\r\n \"you\",\r\n \"cancel\",\r\n \"it\",\r\n \"please\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.996912956\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.01010165\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00598979136\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305141,\r\n \"text\": \"cancel this\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"cancel\",\r\n \"this\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9956958\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.0176103674\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00110997993\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305140,\r\n \"text\": \"cancel the creating process\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"cancel\",\r\n \"the\",\r\n \"creating\",\r\n \"process\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.997471\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.007611154\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.004423559\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305139,\r\n \"text\": \"cancel that\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"cancel\",\r\n \"that\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9996317\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00344344368\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.0004988454\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305138,\r\n \"text\": \"cancel please\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"cancel\",\r\n \"please\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.997247458\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.007280971\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00339278136\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305137,\r\n \"text\": \"cancel it, i don't want to create the meeting\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"cancel\",\r\n \"it\",\r\n \",\",\r\n \"i\",\r\n \"don\",\r\n \"'\",\r\n \"t\",\r\n \"want\",\r\n \"to\",\r\n \"create\",\r\n \"the\",\r\n \"meeting\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.990098953\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.0606798232\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00492774462\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305136,\r\n \"text\": \"cancel it please\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"cancel\",\r\n \"it\",\r\n \"please\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.997849643\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.005267735\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.004828847\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305135,\r\n \"text\": \"cancel it i don ' t want that\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"cancel\",\r\n \"it\",\r\n \"i\",\r\n \"don\",\r\n \"'\",\r\n \"t\",\r\n \"want\",\r\n \"that\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999762058\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.0019475664\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.001748043\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305134,\r\n \"text\": \"cancel it for me\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"cancel\",\r\n \"it\",\r\n \"for\",\r\n \"me\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.998871267\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00357984845\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00294975657\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305133,\r\n \"text\": \"cancel it\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"cancel\",\r\n \"it\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9996608\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.0028751588\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.0005528455\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305132,\r\n \"text\": \"cancel everything\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"cancel\",\r\n \"everything\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999022961\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.005421675\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.000977995\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305131,\r\n \"text\": \"cancel don't worry\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"cancel\",\r\n \"don\",\r\n \"'\",\r\n \"t\",\r\n \"worry\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9989715\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00462430343\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00289469422\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305130,\r\n \"text\": \"cancel cancel cancel\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"cancel\",\r\n \"cancel\",\r\n \"cancel\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9994394\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00321725942\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.001051223\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305129,\r\n \"text\": \"cancel cancel\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"cancel\",\r\n \"cancel\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999534\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.003490068\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.0005970438\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305128,\r\n \"text\": \"cancel can you don't do that please\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"cancel\",\r\n \"can\",\r\n \"you\",\r\n \"don\",\r\n \"'\",\r\n \"t\",\r\n \"do\",\r\n \"that\",\r\n \"please\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9982239\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.0109363608\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.004481464\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305127,\r\n \"text\": \"cancel\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"cancel\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999640763\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.003914148\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00026890068\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305126,\r\n \"text\": \"can you cancel that\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"can\",\r\n \"you\",\r\n \"cancel\",\r\n \"that\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999301434\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00456156069\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00123262487\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305125,\r\n \"text\": \"can you cancel it please\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"can\",\r\n \"you\",\r\n \"cancel\",\r\n \"it\",\r\n \"please\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.996865\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.008234499\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00650156569\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305124,\r\n \"text\": \"can you cancel it\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"can\",\r\n \"you\",\r\n \"cancel\",\r\n \"it\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999332666\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00399378454\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00135672034\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305123,\r\n \"text\": \"can i cancel this\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"can\",\r\n \"i\",\r\n \"cancel\",\r\n \"this\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9955434\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.0138659794\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00225800066\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648305122,\r\n \"text\": \"abort edition\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"abort\",\r\n \"edition\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.995030642\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.023062475\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00315849716\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298526,\r\n \"text\": \"whether i receive new email\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"whether\",\r\n \"i\",\r\n \"receive\",\r\n \"new\",\r\n \"email\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.998175859\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00430348376\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00248801941\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298525,\r\n \"text\": \"whether i have new message\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"whether\",\r\n \"i\",\r\n \"have\",\r\n \"new\",\r\n \"message\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.995613933\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.009527699\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00538515765\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298524,\r\n \"text\": \"whether i have new email\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"whether\",\r\n \"i\",\r\n \"have\",\r\n \"new\",\r\n \"email\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9987848\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00354289263\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.0018111933\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298523,\r\n \"text\": \"whether i get new message\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"whether\",\r\n \"i\",\r\n \"get\",\r\n \"new\",\r\n \"message\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9945065\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.009613852\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.005750781\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298522,\r\n \"text\": \"whether i get new email\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"whether\",\r\n \"i\",\r\n \"get\",\r\n \"new\",\r\n \"email\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9984881\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00354002859\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00191639783\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298521,\r\n \"text\": \"what's the newest notification\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"what\",\r\n \"'\",\r\n \"s\",\r\n \"the\",\r\n \"newest\",\r\n \"notification\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999581158\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00336004235\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00191973243\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298520,\r\n \"text\": \"what's the newest email\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"what\",\r\n \"'\",\r\n \"s\",\r\n \"the\",\r\n \"newest\",\r\n \"email\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999948\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.000627959147\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.000281539542\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298519,\r\n \"text\": \"what's the new im notification\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"what\",\r\n \"'\",\r\n \"s\",\r\n \"the\",\r\n \"new\",\r\n \"im\",\r\n \"notification\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.998154\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00603259169\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00565365935\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298518,\r\n \"text\": \"what's my new twitter notification\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"what\",\r\n \"'\",\r\n \"s\",\r\n \"my\",\r\n \"new\",\r\n \"twitter\",\r\n \"notification\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.996857345\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00932074\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.006487562\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298517,\r\n \"text\": \"this email should be flagged\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"this\",\r\n \"email\",\r\n \"should\",\r\n \"be\",\r\n \"flagged\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.997856557\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.005495986\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.0050542145\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298516,\r\n \"text\": \"this email needs to be flagged\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"this\",\r\n \"email\",\r\n \"needs\",\r\n \"to\",\r\n \"be\",\r\n \"flagged\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9982979\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.005033838\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.0038467804\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298515,\r\n \"text\": \"this email need to be flagged\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"this\",\r\n \"email\",\r\n \"need\",\r\n \"to\",\r\n \"be\",\r\n \"flagged\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.998255849\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00518927956\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00377853215\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298514,\r\n \"text\": \"the fifth email needs to be flagged\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"the\",\r\n \"fifth\",\r\n \"email\",\r\n \"needs\",\r\n \"to\",\r\n \"be\",\r\n \"flagged\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.998824835\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.0054148\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.003377835\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298513,\r\n \"text\": \"the email from thomas should be flagged\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"the\",\r\n \"email\",\r\n \"from\",\r\n \"thomas\",\r\n \"should\",\r\n \"be\",\r\n \"flagged\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9979698\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.009779143\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.003467042\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298512,\r\n \"text\": \"tell me the new im notification\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"tell\",\r\n \"me\",\r\n \"the\",\r\n \"new\",\r\n \"im\",\r\n \"notification\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9875184\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.0440951549\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.0200784\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298511,\r\n \"text\": \"tell me if i have new notifications\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"tell\",\r\n \"me\",\r\n \"if\",\r\n \"i\",\r\n \"have\",\r\n \"new\",\r\n \"notifications\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.992624938\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.01888262\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.0177648533\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298510,\r\n \"text\": \"show next unread\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"show\",\r\n \"next\",\r\n \"unread\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9966606\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.0109189777\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.003607492\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298509,\r\n \"text\": \"show me the newest message\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"show\",\r\n \"me\",\r\n \"the\",\r\n \"newest\",\r\n \"message\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9983727\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00618517\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.005428569\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298508,\r\n \"text\": \"show me the newest email\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"show\",\r\n \"me\",\r\n \"the\",\r\n \"newest\",\r\n \"email\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999595463\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00195361115\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.001864909\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298507,\r\n \"text\": \"show me my whatsapp notification\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"show\",\r\n \"me\",\r\n \"my\",\r\n \"whatsapp\",\r\n \"notification\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9960964\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.0219602864\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.0124415215\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298506,\r\n \"text\": \"send this document on an read receipt email\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"send\",\r\n \"this\",\r\n \"document\",\r\n \"on\",\r\n \"an\",\r\n \"read\",\r\n \"receipt\",\r\n \"email\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.997548044\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.007326549\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00300368271\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298505,\r\n \"text\": \"send an urgent email to partoneunderscorepartwo@hotmail.com\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"send\",\r\n \"an\",\r\n \"urgent\",\r\n \"email\",\r\n \"to\",\r\n \"partoneunderscorepartwo\",\r\n \"@\",\r\n \"hotmail\",\r\n \".\",\r\n \"com\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9990051\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.007209794\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.0030272163\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298504,\r\n \"text\": \"send an urgent email\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"send\",\r\n \"an\",\r\n \"urgent\",\r\n \"email\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9997988\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00218786672\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00125560875\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298503,\r\n \"text\": \"send an purple email to my brother\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"send\",\r\n \"an\",\r\n \"purple\",\r\n \"email\",\r\n \"to\",\r\n \"my\",\r\n \"brother\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.999303341\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00366449729\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00329010747\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298502,\r\n \"text\": \"send an purple category email\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"send\",\r\n \"an\",\r\n \"purple\",\r\n \"category\",\r\n \"email\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9992152\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00336610875\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00270894961\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298501,\r\n \"text\": \"send an email with follow up flag\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"send\",\r\n \"an\",\r\n \"email\",\r\n \"with\",\r\n \"follow\",\r\n \"up\",\r\n \"flag\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9996384\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00264002755\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.0015995719\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298500,\r\n \"text\": \"send an email with a red bang\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"send\",\r\n \"an\",\r\n \"email\",\r\n \"with\",\r\n \"a\",\r\n \"red\",\r\n \"bang\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.99936527\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.003029966\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00240205368\r\n }\r\n ],\r\n \"entityPredictions\": [\r\n {\r\n \"entityName\": \"closedlist\",\r\n \"startTokenIndex\": 4,\r\n \"endTokenIndex\": 4,\r\n \"phrase\": \"a\",\r\n \"entityType\": 5,\r\n \"role\": \"\"\r\n }\r\n ],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298499,\r\n \"text\": \"send a green category email to dad\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"send\",\r\n \"a\",\r\n \"green\",\r\n \"category\",\r\n \"email\",\r\n \"to\",\r\n \"dad\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9992726\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.004251978\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00260960869\r\n }\r\n ],\r\n \"entityPredictions\": [\r\n {\r\n \"entityName\": \"closedlist\",\r\n \"startTokenIndex\": 1,\r\n \"endTokenIndex\": 1,\r\n \"phrase\": \"a\",\r\n \"entityType\": 5,\r\n \"role\": \"\"\r\n }\r\n ],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298498,\r\n \"text\": \"read unread message\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"read\",\r\n \"unread\",\r\n \"message\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9989337\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.004002398\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.003675263\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298497,\r\n \"text\": \"read new text message\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"read\",\r\n \"new\",\r\n \"text\",\r\n \"message\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.998264849\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00468617259\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00415735459\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298496,\r\n \"text\": \"read new message\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"read\",\r\n \"new\",\r\n \"message\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9926597\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.01175385\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00542270159\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298495,\r\n \"text\": \"read new email from david ma\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"read\",\r\n \"new\",\r\n \"email\",\r\n \"from\",\r\n \"david\",\r\n \"ma\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9931751\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.007983179\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00729717454\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298494,\r\n \"text\": \"read new email\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"read\",\r\n \"new\",\r\n \"email\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9986617\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.00309217186\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.00128207367\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298493,\r\n \"text\": \"read my new text messages\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"read\",\r\n \"my\",\r\n \"new\",\r\n \"text\",\r\n \"messages\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9887197\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.0141525809\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.0128408046\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n },\r\n {\r\n \"id\": 648298492,\r\n \"text\": \"read my new emails\",\r\n \"intentLabel\": \"None\",\r\n \"tokenizedText\": [\r\n \"read\",\r\n \"my\",\r\n \"new\",\r\n \"emails\"\r\n ],\r\n \"entityLabels\": [],\r\n \"intentPredictions\": [\r\n {\r\n \"name\": \"None\",\r\n \"score\": 0.9673959\r\n },\r\n {\r\n \"name\": \"Communication.AddContact\",\r\n \"score\": 0.0271668788\r\n },\r\n {\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"score\": 0.0142998379\r\n }\r\n ],\r\n \"entityPredictions\": [],\r\n \"multiIntentPredictions\": null\r\n }\r\n]", "StatusCode": 200 } ], diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/ListExamples_ForEmptyApplication_ReturnsEmpty.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/ListExamples_ForEmptyApplication_ReturnsEmpty.json index 975d64051559..f4f1666cb544 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/ListExamples_ForEmptyApplication_ReturnsEmpty.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ExamplesTests/ListExamples_ForEmptyApplication_ReturnsEmpty.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"culture\": \"en-us\",\r\n \"domain\": \"Comics\",\r\n \"description\": \"New LUIS App\",\r\n \"usageScenario\": \"IoT\",\r\n \"name\": \"Examples Test App\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/7acfea18-d655-4c4f-bab5-f26b855ea33b" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/b861e0c5-c8cc-4e52-adcb-64f2991f1f74" ], "Apim-Request-Id": [ - "e6479eb8-1fe7-44e8-a2df-984e69b81bb6" + "5be2cbd1-8b70-4f7a-9b39-41e2b492897c" ], "Request-Id": [ - "e6479eb8-1fe7-44e8-a2df-984e69b81bb6" + "5be2cbd1-8b70-4f7a-9b39-41e2b492897c" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/7acfea18-d655-4c4f-bab5-f26b855ea33b" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/b861e0c5-c8cc-4e52-adcb-64f2991f1f74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:08 GMT" + "Tue, 29 Oct 2019 13:18:56 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"7acfea18-d655-4c4f-bab5-f26b855ea33b\"", + "ResponseBody": "\"b861e0c5-c8cc-4e52-adcb-64f2991f1f74\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/7acfea18-d655-4c4f-bab5-f26b855ea33b/versions/0.1/examples?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy83YWNmZWExOC1kNjU1LTRjNGYtYmFiNS1mMjZiODU1ZWEzM2IvdmVyc2lvbnMvMC4xL2V4YW1wbGVzP3NraXA9MCZ0YWtlPTEwMA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/b861e0c5-c8cc-4e52-adcb-64f2991f1f74/versions/0.1/examples?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2I4NjFlMGM1LWM4Y2MtNGU1Mi1hZGNiLTY0ZjI5OTFmMWY3NC92ZXJzaW9ucy8wLjEvZXhhbXBsZXM/c2tpcD0wJnRha2U9MTAw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "7b2ac34d-b01d-4322-a3ba-0c03537ad85a" + "de3920e8-cd95-4987-8b0d-0d7a58f9d5e3" ], "Request-Id": [ - "7b2ac34d-b01d-4322-a3ba-0c03537ad85a" + "de3920e8-cd95-4987-8b0d-0d7a58f9d5e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:08 GMT" + "Tue, 29 Oct 2019 13:18:56 GMT" ], "Content-Length": [ "2" @@ -121,19 +121,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/7acfea18-d655-4c4f-bab5-f26b855ea33b?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy83YWNmZWExOC1kNjU1LTRjNGYtYmFiNS1mMjZiODU1ZWEzM2I/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/b861e0c5-c8cc-4e52-adcb-64f2991f1f74?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2I4NjFlMGM1LWM4Y2MtNGU1Mi1hZGNiLTY0ZjI5OTFmMWY3ND9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "521a6581-f9a5-4355-be10-f3447ad94a2d" + "77b3df01-69fa-4542-927d-4df0eb4e3a5b" ], "Request-Id": [ - "521a6581-f9a5-4355-be10-f3447ad94a2d" + "77b3df01-69fa-4542-927d-4df0eb4e3a5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:09 GMT" + "Tue, 29 Oct 2019 13:18:57 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesPhraseListsTests/AddPhraseList.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesPhraseListsTests/AddPhraseList.json index a3c4e9398d75..b49c9a58b19b 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesPhraseListsTests/AddPhraseList.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesPhraseListsTests/AddPhraseList.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BocmFzZWxpc3Rz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"phrases\": \"monday,tuesday,wednesday,thursday,friday,saturday,sunday\",\r\n \"name\": \"DayOfWeek\",\r\n \"isExchangeable\": true\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists/1737510" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859532" ], "Apim-Request-Id": [ - "2df73cb9-e1f2-4118-9824-2ba77e4952da" + "db2a86ee-92c0-47b1-9c71-06bf0e00edc3" ], "Request-Id": [ - "2df73cb9-e1f2-4118-9824-2ba77e4952da" + "db2a86ee-92c0-47b1-9c71-06bf0e00edc3" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists/1737510" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859532" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:59 GMT" + "Tue, 29 Oct 2019 13:23:57 GMT" ], "Content-Length": [ "7" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "1737510", + "ResponseBody": "1859532", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists/1737510", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BocmFzZWxpc3RzLzE3Mzc1MTA=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859532", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHMvMTg1OTUzMg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "00886696-85c2-457a-b0e1-eca4c8327964" + "0fd5e512-a651-4074-9ef0-947d20e9d264" ], "Request-Id": [ - "00886696-85c2-457a-b0e1-eca4c8327964" + "0fd5e512-a651-4074-9ef0-947d20e9d264" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,32 +108,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:59 GMT" + "Tue, 29 Oct 2019 13:23:58 GMT" ], "Content-Length": [ - "140" + "167" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": 1737510,\r\n \"name\": \"DayOfWeek\",\r\n \"phrases\": \"monday,tuesday,wednesday,thursday,friday,saturday,sunday\",\r\n \"isExchangeable\": true,\r\n \"isActive\": true\r\n}", + "ResponseBody": "{\r\n \"id\": 1859532,\r\n \"name\": \"DayOfWeek\",\r\n \"phrases\": \"monday,tuesday,wednesday,thursday,friday,saturday,sunday\",\r\n \"isExchangeable\": true,\r\n \"isActive\": true,\r\n \"enabledForAllModels\": true\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists/1737510", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BocmFzZWxpc3RzLzE3Mzc1MTA=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859532", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHMvMTg1OTUzMg==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "89e42088-9f09-4f72-80c0-9bb5ede4bb82" + "de1efb9d-cd81-42b0-b3de-766250495560" ], "Request-Id": [ - "89e42088-9f09-4f72-80c0-9bb5ede4bb82" + "de1efb9d-cd81-42b0-b3de-766250495560" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:59 GMT" + "Tue, 29 Oct 2019 13:23:58 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesPhraseListsTests/AddPhraseListWithEnabledForAllModels.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesPhraseListsTests/AddPhraseListWithEnabledForAllModels.json new file mode 100644 index 000000000000..48162b231d89 --- /dev/null +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesPhraseListsTests/AddPhraseListWithEnabledForAllModels.json @@ -0,0 +1,300 @@ +{ + "Entries": [ + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"entity added\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "30" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/b1fcffde-fda8-4112-9a16-8fde51fe2e17" + ], + "Apim-Request-Id": [ + "793c507c-6d13-4d54-870a-1e39be4a41f1" + ], + "Request-Id": [ + "793c507c-6d13-4d54-870a-1e39be4a41f1" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/b1fcffde-fda8-4112-9a16-8fde51fe2e17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 16:22:26 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"b1fcffde-fda8-4112-9a16-8fde51fe2e17\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"phrases\": \"monday,tuesday,wednesday,thursday,friday,saturday,sunday\",\r\n \"name\": \"DayOfWeek\",\r\n \"isExchangeable\": true,\r\n \"enabledForAllModels\": true\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "160" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859806" + ], + "Apim-Request-Id": [ + "88b30346-6d2f-4fc2-af72-a95ca08fcf88" + ], + "Request-Id": [ + "88b30346-6d2f-4fc2-af72-a95ca08fcf88" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859806" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 16:22:27 GMT" + ], + "Content-Length": [ + "7" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "1859806", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/b1fcffde-fda8-4112-9a16-8fde51fe2e17/features", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvYjFmY2ZmZGUtZmRhOC00MTEyLTlhMTYtOGZkZTUxZmUyZTE3L2ZlYXR1cmVz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "8ebd04e6-803a-4dbe-86d1-cbadcf2b79eb" + ], + "Request-Id": [ + "8ebd04e6-803a-4dbe-86d1-cbadcf2b79eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 16:22:27 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "[\r\n {\r\n \"featureName\": \"DayOfWeek\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859806", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHMvMTg1OTgwNg==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "2ca84c0b-fff8-4ae5-95af-196d29981f2d" + ], + "Request-Id": [ + "2ca84c0b-fff8-4ae5-95af-196d29981f2d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 16:22:27 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/b1fcffde-fda8-4112-9a16-8fde51fe2e17", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvYjFmY2ZmZGUtZmRhOC00MTEyLTlhMTYtOGZkZTUxZmUyZTE3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "cd7e76fc-9615-4ced-aab5-fb1d97b2fae9" + ], + "Request-Id": [ + "cd7e76fc-9615-4ced-aab5-fb1d97b2fae9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 16:22:28 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesPhraseListsTests/DeletePhraseList.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesPhraseListsTests/DeletePhraseList.json index 233b4c86728d..d9ac5aab46be 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesPhraseListsTests/DeletePhraseList.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesPhraseListsTests/DeletePhraseList.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BocmFzZWxpc3Rz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"phrases\": \"monday,tuesday,wednesday,thursday,friday,saturday,sunday\",\r\n \"name\": \"DayOfWeek\",\r\n \"isExchangeable\": true\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists/1737506" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859535" ], "Apim-Request-Id": [ - "12e408d5-16ab-4eee-afc2-1af3efee706e" + "e631827b-10cc-420b-afc8-4ef49b5d1dd7" ], "Request-Id": [ - "12e408d5-16ab-4eee-afc2-1af3efee706e" + "e631827b-10cc-420b-afc8-4ef49b5d1dd7" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists/1737506" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859535" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:52 GMT" + "Tue, 29 Oct 2019 13:24:01 GMT" ], "Content-Length": [ "7" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "1737506", + "ResponseBody": "1859535", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists/1737506", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BocmFzZWxpc3RzLzE3Mzc1MDY=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859535", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHMvMTg1OTUzNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "4d9b93e0-8e59-49cd-ad1c-a8c49ae7cfeb" + "d5aed37d-1cc0-4794-8762-e3477325f1ad" ], "Request-Id": [ - "4d9b93e0-8e59-49cd-ad1c-a8c49ae7cfeb" + "d5aed37d-1cc0-4794-8762-e3477325f1ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,32 +108,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:53 GMT" + "Tue, 29 Oct 2019 13:24:01 GMT" ], "Content-Length": [ - "140" + "167" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": 1737506,\r\n \"name\": \"DayOfWeek\",\r\n \"phrases\": \"monday,tuesday,wednesday,thursday,friday,saturday,sunday\",\r\n \"isExchangeable\": true,\r\n \"isActive\": true\r\n}", + "ResponseBody": "{\r\n \"id\": 1859535,\r\n \"name\": \"DayOfWeek\",\r\n \"phrases\": \"monday,tuesday,wednesday,thursday,friday,saturday,sunday\",\r\n \"isExchangeable\": true,\r\n \"isActive\": true,\r\n \"enabledForAllModels\": true\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists/1737506", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BocmFzZWxpc3RzLzE3Mzc1MDY=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859535", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHMvMTg1OTUzNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "a74b4e83-4b61-42b6-9e42-8bb9e001277f" + "20747794-fd5d-433a-bdb9-790010a680fc" ], "Request-Id": [ - "a74b4e83-4b61-42b6-9e42-8bb9e001277f" + "20747794-fd5d-433a-bdb9-790010a680fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:53 GMT" + "Tue, 29 Oct 2019 13:24:02 GMT" ], "Content-Length": [ "51" @@ -175,19 +175,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BocmFzZWxpc3RzP3NraXA9MCZ0YWtlPTEwMA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHM/c2tpcD0wJnRha2U9MTAw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -198,10 +198,10 @@ "no-cache" ], "Apim-Request-Id": [ - "61bf41d2-b38c-4477-afaf-b689b87040dd" + "f915a2a7-a127-4c1b-b798-2943bb683f84" ], "Request-Id": [ - "61bf41d2-b38c-4477-afaf-b689b87040dd" + "f915a2a7-a127-4c1b-b798-2943bb683f84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -216,7 +216,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:54 GMT" + "Tue, 29 Oct 2019 13:24:02 GMT" ], "Content-Length": [ "2" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesPhraseListsTests/GetPhraseList.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesPhraseListsTests/GetPhraseList.json index 5d2a65a1c4f5..dd5bd3d8a25a 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesPhraseListsTests/GetPhraseList.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesPhraseListsTests/GetPhraseList.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BocmFzZWxpc3Rz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"phrases\": \"monday,tuesday,wednesday,thursday,friday,saturday,sunday\",\r\n \"name\": \"DayOfWeek\",\r\n \"isExchangeable\": true\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists/1737507" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859534" ], "Apim-Request-Id": [ - "2f3ad5ee-f4f3-4c38-a4aa-6082abafc70c" + "27fe7a28-bd2c-4f7c-a815-f05ff1521432" ], "Request-Id": [ - "2f3ad5ee-f4f3-4c38-a4aa-6082abafc70c" + "27fe7a28-bd2c-4f7c-a815-f05ff1521432" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists/1737507" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859534" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:54 GMT" + "Tue, 29 Oct 2019 13:24:00 GMT" ], "Content-Length": [ "7" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "1737507", + "ResponseBody": "1859534", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists/1737507", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BocmFzZWxpc3RzLzE3Mzc1MDc=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859534", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHMvMTg1OTUzNA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "127317e0-57b9-4e57-ac95-8e431e9798e1" + "e72442cb-e599-454a-95e1-ba64f02db752" ], "Request-Id": [ - "127317e0-57b9-4e57-ac95-8e431e9798e1" + "e72442cb-e599-454a-95e1-ba64f02db752" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,32 +108,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:55 GMT" + "Tue, 29 Oct 2019 13:24:00 GMT" ], "Content-Length": [ - "140" + "167" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": 1737507,\r\n \"name\": \"DayOfWeek\",\r\n \"phrases\": \"monday,tuesday,wednesday,thursday,friday,saturday,sunday\",\r\n \"isExchangeable\": true,\r\n \"isActive\": true\r\n}", + "ResponseBody": "{\r\n \"id\": 1859534,\r\n \"name\": \"DayOfWeek\",\r\n \"phrases\": \"monday,tuesday,wednesday,thursday,friday,saturday,sunday\",\r\n \"isExchangeable\": true,\r\n \"isActive\": true,\r\n \"enabledForAllModels\": true\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists/1737507", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BocmFzZWxpc3RzLzE3Mzc1MDc=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859534", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHMvMTg1OTUzNA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "ac3797dc-4b37-440c-b8a0-652006e3ef57" + "8adf4b75-dbc7-4e68-885a-82907b3e3d43" ], "Request-Id": [ - "ac3797dc-4b37-440c-b8a0-652006e3ef57" + "8adf4b75-dbc7-4e68-885a-82907b3e3d43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:55 GMT" + "Tue, 29 Oct 2019 13:24:01 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesPhraseListsTests/ListPhraseLists.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesPhraseListsTests/ListPhraseLists.json index 9cd0b1d2c1a6..20ee1fa21d89 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesPhraseListsTests/ListPhraseLists.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesPhraseListsTests/ListPhraseLists.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BocmFzZWxpc3Rz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"phrases\": \"monday,tuesday,wednesday,thursday,friday,saturday,sunday\",\r\n \"name\": \"DayOfWeek\",\r\n \"isExchangeable\": true\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists/1737509" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859533" ], "Apim-Request-Id": [ - "949493d3-f046-4534-8284-cadb60559331" + "f7fc6502-ce70-4533-89b9-9c76ed881bc2" ], "Request-Id": [ - "949493d3-f046-4534-8284-cadb60559331" + "f7fc6502-ce70-4533-89b9-9c76ed881bc2" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists/1737509" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859533" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:57 GMT" + "Tue, 29 Oct 2019 13:23:59 GMT" ], "Content-Length": [ "7" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "1737509", + "ResponseBody": "1859533", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BocmFzZWxpc3RzP3NraXA9MCZ0YWtlPTEwMA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHM/c2tpcD0wJnRha2U9MTAw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "542c4f77-2b85-47ab-9563-5eefffd15fcf" + "33a47d3d-be4a-40d3-a07b-6e698c007ceb" ], "Request-Id": [ - "542c4f77-2b85-47ab-9563-5eefffd15fcf" + "33a47d3d-be4a-40d3-a07b-6e698c007ceb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,32 +108,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:57 GMT" + "Tue, 29 Oct 2019 13:23:59 GMT" ], "Content-Length": [ - "142" + "169" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": 1737509,\r\n \"name\": \"DayOfWeek\",\r\n \"phrases\": \"monday,tuesday,wednesday,thursday,friday,saturday,sunday\",\r\n \"isExchangeable\": true,\r\n \"isActive\": true\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": 1859533,\r\n \"name\": \"DayOfWeek\",\r\n \"phrases\": \"monday,tuesday,wednesday,thursday,friday,saturday,sunday\",\r\n \"isExchangeable\": true,\r\n \"isActive\": true,\r\n \"enabledForAllModels\": true\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists/1737509", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BocmFzZWxpc3RzLzE3Mzc1MDk=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859533", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHMvMTg1OTUzMw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "762af55a-9cd4-4016-a824-e3fb5e64c2a3" + "6fe18371-d869-4f18-8e49-e05caca991cc" ], "Request-Id": [ - "762af55a-9cd4-4016-a824-e3fb5e64c2a3" + "6fe18371-d869-4f18-8e49-e05caca991cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:58 GMT" + "Tue, 29 Oct 2019 13:23:59 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesPhraseListsTests/UpdatePhraseList.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesPhraseListsTests/UpdatePhraseList.json index 05b505cca023..3cfc4211abad 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesPhraseListsTests/UpdatePhraseList.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesPhraseListsTests/UpdatePhraseList.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BocmFzZWxpc3Rz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"phrases\": \"monday,tuesday,wednesday,thursday,friday,saturday,sunday\",\r\n \"name\": \"DayOfWeek\",\r\n \"isExchangeable\": true\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists/1737508" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859503" ], "Apim-Request-Id": [ - "0518f357-436d-4fd0-aaed-b73f94532e6b" + "5079e6ea-482f-491f-b369-8a8d0e3e2ab7" ], "Request-Id": [ - "0518f357-436d-4fd0-aaed-b73f94532e6b" + "5079e6ea-482f-491f-b369-8a8d0e3e2ab7" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists/1737508" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859503" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:56 GMT" + "Tue, 29 Oct 2019 13:19:00 GMT" ], "Content-Length": [ "7" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "1737508", + "ResponseBody": "1859503", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists/1737508", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BocmFzZWxpc3RzLzE3Mzc1MDg=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859503", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHMvMTg1OTUwMw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"phrases\": \"january,february,march,april,may,june,july,august,september,october,november,december\",\r\n \"name\": \"Month\",\r\n \"isActive\": false\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,10 +96,10 @@ "no-cache" ], "Apim-Request-Id": [ - "02b093c8-1456-412f-8c6c-7ed5e98d9007" + "eaa54d74-b338-4b45-838b-11650282f9a1" ], "Request-Id": [ - "02b093c8-1456-412f-8c6c-7ed5e98d9007" + "eaa54d74-b338-4b45-838b-11650282f9a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -114,125 +114,22 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:56 GMT" + "Tue, 29 Oct 2019 13:19:00 GMT" ], - "Content-Length": [ - "51" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists/1737508", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BocmFzZWxpc3RzLzE3Mzc1MDg=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" - ], - "User-Agent": [ - "FxVersion/4.6.27617.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, proxy-revalidate, no-cache, max-age=0, private" - ], - "Pragma": [ - "no-cache" - ], - "Apim-Request-Id": [ - "2378d64d-8eb6-4764-9d5d-eae58b845c20" - ], - "Request-Id": [ - "2378d64d-8eb6-4764-9d5d-eae58b845c20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains; preload" - ], - "Request-Context": [ - "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Sun, 25 Aug 2019 19:17:57 GMT" - ], - "Content-Length": [ - "166" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"id\": 1737508,\r\n \"name\": \"Month\",\r\n \"phrases\": \"january,february,march,april,may,june,july,august,september,october,november,december\",\r\n \"isExchangeable\": true,\r\n \"isActive\": false\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/phraselists/1737508", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BocmFzZWxpc3RzLzE3Mzc1MDg=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" - ], - "User-Agent": [ - "FxVersion/4.6.27617.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, proxy-revalidate, no-cache, max-age=0, private" - ], - "Pragma": [ - "no-cache" - ], - "Apim-Request-Id": [ - "0a4b008d-cf7d-43d8-861b-a1b03450dbcf" - ], - "Request-Id": [ - "0a4b008d-cf7d-43d8-861b-a1b03450dbcf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains; preload" - ], - "Request-Context": [ - "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Sun, 25 Aug 2019 19:17:57 GMT" + "Allow": [ + "GET", + "PATCH", + "DELETE" ], "Content-Length": [ - "51" + "72" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"Message\": \"The requested resource does not support http method 'PUT'.\"\r\n}", + "StatusCode": 405 } ], "Names": {}, diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/AddEntityFeature.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/AddEntityFeature.json new file mode 100644 index 000000000000..e66a81a09a28 --- /dev/null +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/AddEntityFeature.json @@ -0,0 +1,306 @@ +{ + "Entries": [ + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"parent entity\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/d14fa3e7-838e-405b-8591-aa3b654e3040" + ], + "Apim-Request-Id": [ + "32c89b06-6205-4596-948a-926a923847dd" + ], + "Request-Id": [ + "32c89b06-6205-4596-948a-926a923847dd" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/d14fa3e7-838e-405b-8591-aa3b654e3040" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:39:29 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"d14fa3e7-838e-405b-8591-aa3b654e3040\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"phrases\": \"add,increment,plus\",\r\n \"name\": \"increment phrases\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "71" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859609" + ], + "Apim-Request-Id": [ + "49b48b11-2ace-40e9-a8cc-5547484b0945" + ], + "Request-Id": [ + "49b48b11-2ace-40e9-a8cc-5547484b0945" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859609" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:39:30 GMT" + ], + "Content-Length": [ + "7" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "1859609", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/d14fa3e7-838e-405b-8591-aa3b654e3040/features", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvZDE0ZmEzZTctODM4ZS00MDViLTg1OTEtYWEzYjY1NGUzMDQwL2ZlYXR1cmVz", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"modelName\": \"parent entity\",\r\n \"featureName\": \"increment phrases\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "75" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "65647fd9-f498-45e3-8499-a14ab185ec9c" + ], + "Request-Id": [ + "65647fd9-f498-45e3-8499-a14ab185ec9c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:39:30 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859609", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHMvMTg1OTYwOQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "42eabb75-eaf3-4936-9ad5-35212f24a525" + ], + "Request-Id": [ + "42eabb75-eaf3-4936-9ad5-35212f24a525" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:39:30 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/d14fa3e7-838e-405b-8591-aa3b654e3040", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvZDE0ZmEzZTctODM4ZS00MDViLTg1OTEtYWEzYjY1NGUzMDQw", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "9d76aaf5-ff75-4f41-87db-a67fbc4011dc" + ], + "Request-Id": [ + "9d76aaf5-ff75-4f41-87db-a67fbc4011dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:39:31 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/AddIntentFeature.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/AddIntentFeature.json new file mode 100644 index 000000000000..57bc6e6c5b86 --- /dev/null +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/AddIntentFeature.json @@ -0,0 +1,306 @@ +{ + "Entries": [ + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cw==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"parent intent\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/d8a94985-9cf0-4ad3-aaa7-763f413e8c4d" + ], + "Apim-Request-Id": [ + "965ee216-e8d9-41a0-a8c1-0ff5cb296a03" + ], + "Request-Id": [ + "965ee216-e8d9-41a0-a8c1-0ff5cb296a03" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/d8a94985-9cf0-4ad3-aaa7-763f413e8c4d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:51:17 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"d8a94985-9cf0-4ad3-aaa7-763f413e8c4d\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"phrases\": \"add,increment,plus\",\r\n \"name\": \"increment phrases\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "71" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859628" + ], + "Apim-Request-Id": [ + "4ddae2d5-c4ed-4e33-86c3-f1f8700e6b82" + ], + "Request-Id": [ + "4ddae2d5-c4ed-4e33-86c3-f1f8700e6b82" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859628" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:51:18 GMT" + ], + "Content-Length": [ + "7" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "1859628", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/d8a94985-9cf0-4ad3-aaa7-763f413e8c4d/features", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cy9kOGE5NDk4NS05Y2YwLTRhZDMtYWFhNy03NjNmNDEzZThjNGQvZmVhdHVyZXM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"modelName\": \"parent intent\",\r\n \"featureName\": \"increment phrases\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "75" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "f9492856-0d0d-40c0-81de-832fc9efcdc8" + ], + "Request-Id": [ + "f9492856-0d0d-40c0-81de-832fc9efcdc8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:51:18 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859628", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHMvMTg1OTYyOA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "551dc2ae-3a78-40c4-acaf-8e400d89daec" + ], + "Request-Id": [ + "551dc2ae-3a78-40c4-acaf-8e400d89daec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:51:18 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/d8a94985-9cf0-4ad3-aaa7-763f413e8c4d?deleteUtterances=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cy9kOGE5NDk4NS05Y2YwLTRhZDMtYWFhNy03NjNmNDEzZThjNGQ/ZGVsZXRlVXR0ZXJhbmNlcz1mYWxzZQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "a56de513-19e3-4f3a-9771-df3e687ddcd4" + ], + "Request-Id": [ + "a56de513-19e3-4f3a-9771-df3e687ddcd4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:51:19 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/AddModelAsFeatureForEntity.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/AddModelAsFeatureForEntity.json new file mode 100644 index 000000000000..088ffc80dbb6 --- /dev/null +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/AddModelAsFeatureForEntity.json @@ -0,0 +1,306 @@ +{ + "Entries": [ + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"parent entity\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/44f44903-f39f-4cc6-ac25-eb4ed31996d6" + ], + "Apim-Request-Id": [ + "9da460b3-a9f0-4540-809f-8742f6c36c7a" + ], + "Request-Id": [ + "9da460b3-a9f0-4540-809f-8742f6c36c7a" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/44f44903-f39f-4cc6-ac25-eb4ed31996d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 15:15:20 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"44f44903-f39f-4cc6-ac25-eb4ed31996d6\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"feature entity\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/2daf3250-4c27-4b1a-897c-2f242c63d254" + ], + "Apim-Request-Id": [ + "3305a01c-95f3-4a94-b827-b40a995f0fd7" + ], + "Request-Id": [ + "3305a01c-95f3-4a94-b827-b40a995f0fd7" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/2daf3250-4c27-4b1a-897c-2f242c63d254" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 15:15:20 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"2daf3250-4c27-4b1a-897c-2f242c63d254\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/44f44903-f39f-4cc6-ac25-eb4ed31996d6/features", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvNDRmNDQ5MDMtZjM5Zi00Y2M2LWFjMjUtZWI0ZWQzMTk5NmQ2L2ZlYXR1cmVz", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"modelName\": \"feature entity\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "37" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "3264bcf7-db0e-4259-8601-453b24ae6e73" + ], + "Request-Id": [ + "3264bcf7-db0e-4259-8601-453b24ae6e73" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 15:15:21 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/44f44903-f39f-4cc6-ac25-eb4ed31996d6", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvNDRmNDQ5MDMtZjM5Zi00Y2M2LWFjMjUtZWI0ZWQzMTk5NmQ2", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "15259f86-8093-4aa3-95bc-ebdb188dca69" + ], + "Request-Id": [ + "15259f86-8093-4aa3-95bc-ebdb188dca69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 15:15:22 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/2daf3250-4c27-4b1a-897c-2f242c63d254", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvMmRhZjMyNTAtNGMyNy00YjFhLTg5N2MtMmYyNDJjNjNkMjU0", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "62a34d01-0d65-4421-9775-99664efe17f0" + ], + "Request-Id": [ + "62a34d01-0d65-4421-9775-99664efe17f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 15:15:23 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/AddModelAsFeatureForIntent.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/AddModelAsFeatureForIntent.json new file mode 100644 index 000000000000..9ed152522a11 --- /dev/null +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/AddModelAsFeatureForIntent.json @@ -0,0 +1,306 @@ +{ + "Entries": [ + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cw==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"parent intent\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/119df3d7-393a-45b1-9730-765899940ed3" + ], + "Apim-Request-Id": [ + "3378ed4d-b718-4862-9950-e959dcdbc406" + ], + "Request-Id": [ + "3378ed4d-b718-4862-9950-e959dcdbc406" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/119df3d7-393a-45b1-9730-765899940ed3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 15:16:47 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"119df3d7-393a-45b1-9730-765899940ed3\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"feature entity\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/d6aa4509-0217-479f-bddc-b6b06da709e9" + ], + "Apim-Request-Id": [ + "738d045c-3b2a-4672-bf8f-2651db6e7e9d" + ], + "Request-Id": [ + "738d045c-3b2a-4672-bf8f-2651db6e7e9d" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/d6aa4509-0217-479f-bddc-b6b06da709e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 15:16:48 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"d6aa4509-0217-479f-bddc-b6b06da709e9\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/119df3d7-393a-45b1-9730-765899940ed3/features", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cy8xMTlkZjNkNy0zOTNhLTQ1YjEtOTczMC03NjU4OTk5NDBlZDMvZmVhdHVyZXM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"modelName\": \"feature entity\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "37" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "93e68277-c1b6-4564-a8f3-31341e3d5dde" + ], + "Request-Id": [ + "93e68277-c1b6-4564-a8f3-31341e3d5dde" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 15:16:49 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/d6aa4509-0217-479f-bddc-b6b06da709e9", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvZDZhYTQ1MDktMDIxNy00NzlmLWJkZGMtYjZiMDZkYTcwOWU5", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "1594e368-0d48-466e-a58e-0deb6dce8572" + ], + "Request-Id": [ + "1594e368-0d48-466e-a58e-0deb6dce8572" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 15:16:49 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/119df3d7-393a-45b1-9730-765899940ed3?deleteUtterances=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cy8xMTlkZjNkNy0zOTNhLTQ1YjEtOTczMC03NjU4OTk5NDBlZDM/ZGVsZXRlVXR0ZXJhbmNlcz1mYWxzZQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "56a4bb62-fdf6-498c-be92-f15703e7f751" + ], + "Request-Id": [ + "56a4bb62-fdf6-498c-be92-f15703e7f751" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 15:16:50 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/DeleteEntityFeature.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/DeleteEntityFeature.json new file mode 100644 index 000000000000..efd6e9dc3ff0 --- /dev/null +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/DeleteEntityFeature.json @@ -0,0 +1,366 @@ +{ + "Entries": [ + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"parent entity\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/43f8a3fd-4f85-47a7-b3b9-6856d57b2f28" + ], + "Apim-Request-Id": [ + "046bb286-70d7-4f72-adef-08113bb480ed" + ], + "Request-Id": [ + "046bb286-70d7-4f72-adef-08113bb480ed" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/43f8a3fd-4f85-47a7-b3b9-6856d57b2f28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:41:17 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"43f8a3fd-4f85-47a7-b3b9-6856d57b2f28\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"phrases\": \"add,increment,plus\",\r\n \"name\": \"increment phrases\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "71" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859610" + ], + "Apim-Request-Id": [ + "7617c7a1-4cd5-4677-a5a1-6650fddf7cd9" + ], + "Request-Id": [ + "7617c7a1-4cd5-4677-a5a1-6650fddf7cd9" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859610" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:41:18 GMT" + ], + "Content-Length": [ + "7" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "1859610", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/43f8a3fd-4f85-47a7-b3b9-6856d57b2f28/features", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvNDNmOGEzZmQtNGY4NS00N2E3LWIzYjktNjg1NmQ1N2IyZjI4L2ZlYXR1cmVz", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"modelName\": \"parent entity\",\r\n \"featureName\": \"increment phrases\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "75" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "e9aff1fd-a27e-4874-aeda-3d5b374f5c1e" + ], + "Request-Id": [ + "e9aff1fd-a27e-4874-aeda-3d5b374f5c1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:41:18 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/43f8a3fd-4f85-47a7-b3b9-6856d57b2f28/features", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvNDNmOGEzZmQtNGY4NS00N2E3LWIzYjktNjg1NmQ1N2IyZjI4L2ZlYXR1cmVz", + "RequestMethod": "DELETE", + "RequestBody": "{\r\n \"modelName\": \"parent entity\",\r\n \"featureName\": \"increment phrases\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "75" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "2dd4a9f9-32b8-48ff-9530-f536cc1e23ff" + ], + "Request-Id": [ + "2dd4a9f9-32b8-48ff-9530-f536cc1e23ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:41:18 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859610", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHMvMTg1OTYxMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "b311e9c3-e3d9-4156-bc29-8a8305e0c6bf" + ], + "Request-Id": [ + "b311e9c3-e3d9-4156-bc29-8a8305e0c6bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:41:19 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/43f8a3fd-4f85-47a7-b3b9-6856d57b2f28", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvNDNmOGEzZmQtNGY4NS00N2E3LWIzYjktNjg1NmQ1N2IyZjI4", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "81e9ae5d-6929-4f7d-9d2c-7d75f49d2c8b" + ], + "Request-Id": [ + "81e9ae5d-6929-4f7d-9d2c-7d75f49d2c8b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:41:19 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/DeleteIntentFeature.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/DeleteIntentFeature.json new file mode 100644 index 000000000000..c0ea6eb87b9d --- /dev/null +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/DeleteIntentFeature.json @@ -0,0 +1,366 @@ +{ + "Entries": [ + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cw==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"parent intent\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/09238886-55f8-468c-8dd1-2b77695aa65d" + ], + "Apim-Request-Id": [ + "82ed90f7-ff17-4985-9649-e19e4659d1a5" + ], + "Request-Id": [ + "82ed90f7-ff17-4985-9649-e19e4659d1a5" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/09238886-55f8-468c-8dd1-2b77695aa65d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:54:29 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"09238886-55f8-468c-8dd1-2b77695aa65d\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"phrases\": \"add,increment,plus\",\r\n \"name\": \"increment phrases\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "71" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859630" + ], + "Apim-Request-Id": [ + "1e71353c-e47e-456d-8c16-9b1b4d5c29fd" + ], + "Request-Id": [ + "1e71353c-e47e-456d-8c16-9b1b4d5c29fd" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859630" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:54:30 GMT" + ], + "Content-Length": [ + "7" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "1859630", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/09238886-55f8-468c-8dd1-2b77695aa65d/features", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cy8wOTIzODg4Ni01NWY4LTQ2OGMtOGRkMS0yYjc3Njk1YWE2NWQvZmVhdHVyZXM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"modelName\": \"parent intent\",\r\n \"featureName\": \"increment phrases\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "75" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "4d673b26-8cbe-4520-8779-866412d69ad4" + ], + "Request-Id": [ + "4d673b26-8cbe-4520-8779-866412d69ad4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:54:30 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/09238886-55f8-468c-8dd1-2b77695aa65d/features", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cy8wOTIzODg4Ni01NWY4LTQ2OGMtOGRkMS0yYjc3Njk1YWE2NWQvZmVhdHVyZXM=", + "RequestMethod": "DELETE", + "RequestBody": "{\r\n \"modelName\": \"parent intent\",\r\n \"featureName\": \"increment phrases\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "75" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "bc36d2c3-cd70-4505-b55c-80e588ae8641" + ], + "Request-Id": [ + "bc36d2c3-cd70-4505-b55c-80e588ae8641" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:54:30 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859630", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHMvMTg1OTYzMA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "63bca972-f81e-4e0e-bce1-ef41f59066e2" + ], + "Request-Id": [ + "63bca972-f81e-4e0e-bce1-ef41f59066e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:54:31 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/09238886-55f8-468c-8dd1-2b77695aa65d?deleteUtterances=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cy8wOTIzODg4Ni01NWY4LTQ2OGMtOGRkMS0yYjc3Njk1YWE2NWQ/ZGVsZXRlVXR0ZXJhbmNlcz1mYWxzZQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "aaa6f269-fdff-43b5-beb0-9fe64ffd585e" + ], + "Request-Id": [ + "aaa6f269-fdff-43b5-beb0-9fe64ffd585e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:54:31 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/GetEntityFeatures.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/GetEntityFeatures.json new file mode 100644 index 000000000000..212a2ea12072 --- /dev/null +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/GetEntityFeatures.json @@ -0,0 +1,360 @@ +{ + "Entries": [ + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"parent entity\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/6fefebcd-8a23-4e94-93c0-51d6d2cf5b15" + ], + "Apim-Request-Id": [ + "f1c47830-27ba-451d-8b6d-845c9a2c4864" + ], + "Request-Id": [ + "f1c47830-27ba-451d-8b6d-845c9a2c4864" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/6fefebcd-8a23-4e94-93c0-51d6d2cf5b15" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 15:12:20 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"6fefebcd-8a23-4e94-93c0-51d6d2cf5b15\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"phrases\": \"add,increment,plus\",\r\n \"name\": \"increment phrases\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "71" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859704" + ], + "Apim-Request-Id": [ + "349350c3-c2a1-4af0-847a-21dfb9ec31ac" + ], + "Request-Id": [ + "349350c3-c2a1-4af0-847a-21dfb9ec31ac" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859704" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 15:12:20 GMT" + ], + "Content-Length": [ + "7" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "1859704", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/6fefebcd-8a23-4e94-93c0-51d6d2cf5b15/features", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvNmZlZmViY2QtOGEyMy00ZTk0LTkzYzAtNTFkNmQyY2Y1YjE1L2ZlYXR1cmVz", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"featureName\": \"increment phrases\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "42" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "d5b73c5e-ad7a-4309-bba8-fd9c2d8ca766" + ], + "Request-Id": [ + "d5b73c5e-ad7a-4309-bba8-fd9c2d8ca766" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 15:12:23 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/6fefebcd-8a23-4e94-93c0-51d6d2cf5b15/features", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvNmZlZmViY2QtOGEyMy00ZTk0LTkzYzAtNTFkNmQyY2Y1YjE1L2ZlYXR1cmVz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "3b608aa0-47ce-4375-bc42-adefb33fc1ed" + ], + "Request-Id": [ + "3b608aa0-47ce-4375-bc42-adefb33fc1ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 15:12:23 GMT" + ], + "Content-Length": [ + "37" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "[\r\n {\r\n \"featureName\": \"increment phrases\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859704", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHMvMTg1OTcwNA==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "c75e2981-21f5-4a83-97f3-60ab08dd1eb3" + ], + "Request-Id": [ + "c75e2981-21f5-4a83-97f3-60ab08dd1eb3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 15:12:24 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/6fefebcd-8a23-4e94-93c0-51d6d2cf5b15", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvNmZlZmViY2QtOGEyMy00ZTk0LTkzYzAtNTFkNmQyY2Y1YjE1", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "b701c4e6-b4d1-4d9c-9120-6e9edba4dad9" + ], + "Request-Id": [ + "b701c4e6-b4d1-4d9c-9120-6e9edba4dad9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 15:12:24 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/GetIntentFeatures.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/GetIntentFeatures.json new file mode 100644 index 000000000000..c84991eed2ea --- /dev/null +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/GetIntentFeatures.json @@ -0,0 +1,360 @@ +{ + "Entries": [ + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cw==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"parent intent\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/2e565af2-e293-4c71-a995-fa58968ff51f" + ], + "Apim-Request-Id": [ + "bfd7e125-0b6e-4683-bf54-b00370540c45" + ], + "Request-Id": [ + "bfd7e125-0b6e-4683-bf54-b00370540c45" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/2e565af2-e293-4c71-a995-fa58968ff51f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 15:13:45 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"2e565af2-e293-4c71-a995-fa58968ff51f\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"phrases\": \"add,increment,plus\",\r\n \"name\": \"increment phrases\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "71" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859706" + ], + "Apim-Request-Id": [ + "9cd1c439-dc5f-4b44-9cdd-8e7ca4c87309" + ], + "Request-Id": [ + "9cd1c439-dc5f-4b44-9cdd-8e7ca4c87309" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859706" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 15:13:46 GMT" + ], + "Content-Length": [ + "7" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "1859706", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/2e565af2-e293-4c71-a995-fa58968ff51f/features", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cy8yZTU2NWFmMi1lMjkzLTRjNzEtYTk5NS1mYTU4OTY4ZmY1MWYvZmVhdHVyZXM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"featureName\": \"increment phrases\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "42" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "3f98043a-cab5-47c4-bdbc-64ef5b957872" + ], + "Request-Id": [ + "3f98043a-cab5-47c4-bdbc-64ef5b957872" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 15:13:47 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/2e565af2-e293-4c71-a995-fa58968ff51f/features", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cy8yZTU2NWFmMi1lMjkzLTRjNzEtYTk5NS1mYTU4OTY4ZmY1MWYvZmVhdHVyZXM=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "39512fd8-83fa-4375-96c1-45baab29fb22" + ], + "Request-Id": [ + "39512fd8-83fa-4375-96c1-45baab29fb22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 15:13:48 GMT" + ], + "Content-Length": [ + "37" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "[\r\n {\r\n \"featureName\": \"increment phrases\"\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/phraselists/1859706", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGhyYXNlbGlzdHMvMTg1OTcwNg==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "cb79a151-c934-4214-a36f-4fcf48c89db0" + ], + "Request-Id": [ + "cb79a151-c934-4214-a36f-4fcf48c89db0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 15:13:48 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/2e565af2-e293-4c71-a995-fa58968ff51f?deleteUtterances=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cy8yZTU2NWFmMi1lMjkzLTRjNzEtYTk5NS1mYTU4OTY4ZmY1MWY/ZGVsZXRlVXR0ZXJhbmNlcz1mYWxzZQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "77b92b72-3022-4b0a-9d50-4fc4ac8c53bb" + ], + "Request-Id": [ + "77b92b72-3022-4b0a-9d50-4fc4ac8c53bb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 15:13:50 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/ListFeatures.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/ListFeatures.json index 29765c86d74b..ad43e00ccbde 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/ListFeatures.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/FeaturesTests/ListFeatures.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/import?appName=Test%20list%20features%20of%20LUIS%20App", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9pbXBvcnQ/YXBwTmFtZT1UZXN0JTIwbGlzdCUyMGZlYXR1cmVzJTIwb2YlMjBMVUlTJTIwQXBw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/import?appName=Test%20list%20features%20of%20LUIS%20App", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2ltcG9ydD9hcHBOYW1lPVRlc3QlMjBsaXN0JTIwZmVhdHVyZXMlMjBvZiUyMExVSVMlMjBBcHA=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"LuisBot\",\r\n \"versionId\": \"0.1\",\r\n \"desc\": \"\",\r\n \"culture\": \"en-us\",\r\n \"intents\": [\r\n {\r\n \"name\": \"dateintent\"\r\n },\r\n {\r\n \"name\": \"Help\"\r\n },\r\n {\r\n \"name\": \"None\"\r\n },\r\n {\r\n \"name\": \"SearchHotels\"\r\n },\r\n {\r\n \"name\": \"ShowHotelsReviews\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"AirportCode\"\r\n },\r\n {\r\n \"name\": \"Hotel\"\r\n }\r\n ],\r\n \"closedLists\": [],\r\n \"composites\": [],\r\n \"regex_features\": [\r\n {\r\n \"pattern\": \"[a-z]{3}\",\r\n \"activated\": true,\r\n \"name\": \"AirportCodeRegex\"\r\n }\r\n ],\r\n \"model_features\": [\r\n {\r\n \"activated\": true,\r\n \"name\": \"Near\",\r\n \"words\": \"near,around,close,nearby\",\r\n \"mode\": true\r\n },\r\n {\r\n \"activated\": true,\r\n \"name\": \"Show\",\r\n \"words\": \"show,find,look,search\",\r\n \"mode\": true\r\n }\r\n ],\r\n \"utterances\": [\r\n {\r\n \"text\": \"i need help\",\r\n \"intent\": \"Help\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"help me\",\r\n \"intent\": \"Help\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"tomorrow\",\r\n \"intent\": \"dateintent\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"search for hotels in seattle\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"what can i do?\",\r\n \"intent\": \"Help\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"next monday\",\r\n \"intent\": \"dateintent\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"next year\",\r\n \"intent\": \"dateintent\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"look for hotels in miami\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"show me hotels in california\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"show me the reviews of the amazing bot resort\",\r\n \"intent\": \"ShowHotelsReviews\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 23,\r\n \"endPos\": 44,\r\n \"entity\": \"Hotel\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"can i see the reviews of extended bot hotel?\",\r\n \"intent\": \"ShowHotelsReviews\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 25,\r\n \"endPos\": 42,\r\n \"entity\": \"Hotel\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"find reviews of hotelxya\",\r\n \"intent\": \"ShowHotelsReviews\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 16,\r\n \"endPos\": 23,\r\n \"entity\": \"Hotel\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"show me reviews of the amazing hotel\",\r\n \"intent\": \"ShowHotelsReviews\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 19,\r\n \"endPos\": 35,\r\n \"entity\": \"Hotel\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"what are the available options?\",\r\n \"intent\": \"Help\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"best hotels in seattle\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"hotels in los angeles\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"can you show me hotels from los angeles?\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"can you show me the reviews of the amazing resort & hotel\",\r\n \"intent\": \"ShowHotelsReviews\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 31,\r\n \"endPos\": 56,\r\n \"entity\": \"Hotel\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"what are the reviews of the hotel bot framework?\",\r\n \"intent\": \"ShowHotelsReviews\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 24,\r\n \"endPos\": 46,\r\n \"entity\": \"Hotel\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"find hotels near eze\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 17,\r\n \"endPos\": 19,\r\n \"entity\": \"AirportCode\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"where can i stay near nnn?\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 22,\r\n \"endPos\": 24,\r\n \"entity\": \"AirportCode\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"show hotels near att airport\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 17,\r\n \"endPos\": 19,\r\n \"entity\": \"AirportCode\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"find hotels near agl\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 17,\r\n \"endPos\": 19,\r\n \"entity\": \"AirportCode\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"find hotels around eze airport\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 19,\r\n \"endPos\": 21,\r\n \"entity\": \"AirportCode\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"01/7\",\r\n \"intent\": \"dateintent\",\r\n \"entities\": []\r\n }\r\n ],\r\n \"luis_schema_version\": \"2.1.0\",\r\n \"bing_entities\": [\r\n \"datetimeV2\",\r\n \"geographyV2\"\r\n ]\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -22,120 +22,6 @@ "5107" ] }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, proxy-revalidate, no-cache, max-age=0, private" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/51ec565a-41d9-4901-bab9-2c452cbba8ae" - ], - "Apim-Request-Id": [ - "461ef6ba-c435-47c8-9492-06851dae4535" - ], - "Request-Id": [ - "461ef6ba-c435-47c8-9492-06851dae4535" - ], - "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/51ec565a-41d9-4901-bab9-2c452cbba8ae" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains; preload" - ], - "Request-Context": [ - "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Sun, 25 Aug 2019 19:20:53 GMT" - ], - "Content-Length": [ - "38" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "\"51ec565a-41d9-4901-bab9-2c452cbba8ae\"", - "StatusCode": 201 - }, - { - "RequestUri": "/luis/api/v2.0/apps/51ec565a-41d9-4901-bab9-2c452cbba8ae/versions/0.1/features?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy81MWVjNTY1YS00MWQ5LTQ5MDEtYmFiOS0yYzQ1MmNiYmE4YWUvdmVyc2lvbnMvMC4xL2ZlYXR1cmVzP3NraXA9MCZ0YWtlPTEwMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" - ], - "User-Agent": [ - "FxVersion/4.6.27617.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, proxy-revalidate, no-cache, max-age=0, private" - ], - "Pragma": [ - "no-cache" - ], - "Apim-Request-Id": [ - "e84e35bd-ae8f-4597-838c-df12770a9a82" - ], - "Request-Id": [ - "e84e35bd-ae8f-4597-838c-df12770a9a82" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains; preload" - ], - "Request-Context": [ - "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Sun, 25 Aug 2019 19:20:54 GMT" - ], - "Content-Length": [ - "327" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"phraselistFeatures\": [\r\n {\r\n \"id\": 1737517,\r\n \"name\": \"Near\",\r\n \"phrases\": \"near,around,close,nearby\",\r\n \"isExchangeable\": true,\r\n \"isActive\": true\r\n },\r\n {\r\n \"id\": 1737518,\r\n \"name\": \"Show\",\r\n \"phrases\": \"show,find,look,search\",\r\n \"isExchangeable\": true,\r\n \"isActive\": true\r\n }\r\n ],\r\n \"patternFeatures\": [\r\n {\r\n \"id\": 1737519,\r\n \"name\": \"AirportCodeRegex\",\r\n \"pattern\": \"[a-z]{3}\",\r\n \"isActive\": true\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/luis/api/v2.0/apps/51ec565a-41d9-4901-bab9-2c452cbba8ae?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy81MWVjNTY1YS00MWQ5LTQ5MDEtYmFiOS0yYzQ1MmNiYmE4YWU/Zm9yY2U9ZmFsc2U=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" - ], - "User-Agent": [ - "FxVersion/4.6.27617.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" - ] - }, "ResponseHeaders": { "Cache-Control": [ "no-store, proxy-revalidate, no-cache, max-age=0, private" @@ -144,10 +30,10 @@ "no-cache" ], "Apim-Request-Id": [ - "09ef3d12-c227-4604-a3a2-9d6e7fb0d6bf" + "d9a113f1-f073-41c3-9401-f6b6823843c1" ], "Request-Id": [ - "09ef3d12-c227-4604-a3a2-9d6e7fb0d6bf" + "d9a113f1-f073-41c3-9401-f6b6823843c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,17 +48,17 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:54 GMT" + "Tue, 29 Oct 2019 13:19:05 GMT" ], "Content-Length": [ - "51" + "152" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"BadArgument\",\r\n \"message\": \"An application with the same name (Test list features of LUIS App) already exists.\"\r\n }\r\n}", + "StatusCode": 400 } ], "Names": {}, diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ImportExportTests/ExportVersion.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ImportExportTests/ExportVersion.json index d3bccbd89f4b..358e6e80e5a5 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ImportExportTests/ExportVersion.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ImportExportTests/ExportVersion.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"culture\": \"en-us\",\r\n \"domain\": \"Comics\",\r\n \"description\": \"New LUIS App\",\r\n \"usageScenario\": \"IoT\",\r\n \"name\": \"LUIS App to be exported\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3c37d554-bec6-46ba-9950-ccdac126eaf5" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/cb00a3f9-8fac-442d-b56f-43bb617b9825" ], "Apim-Request-Id": [ - "6b76dfb7-1c9b-4f33-aa6d-78cfb9aba302" + "b5a16f73-5fb6-4864-86a0-e682ad4caed6" ], "Request-Id": [ - "6b76dfb7-1c9b-4f33-aa6d-78cfb9aba302" + "b5a16f73-5fb6-4864-86a0-e682ad4caed6" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3c37d554-bec6-46ba-9950-ccdac126eaf5" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/cb00a3f9-8fac-442d-b56f-43bb617b9825" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:09 GMT" + "Tue, 29 Oct 2019 13:19:08 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"3c37d554-bec6-46ba-9950-ccdac126eaf5\"", + "ResponseBody": "\"cb00a3f9-8fac-442d-b56f-43bb617b9825\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3c37d554-bec6-46ba-9950-ccdac126eaf5/versions/0.1/export", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zYzM3ZDU1NC1iZWM2LTQ2YmEtOTk1MC1jY2RhYzEyNmVhZjUvdmVyc2lvbnMvMC4xL2V4cG9ydA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/cb00a3f9-8fac-442d-b56f-43bb617b9825/versions/0.1/export", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2NiMDBhM2Y5LThmYWMtNDQyZC1iNTZmLTQzYmI2MTdiOTgyNS92ZXJzaW9ucy8wLjEvZXhwb3J0", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "fd0e7e80-8964-4f2b-a230-b7ae60d4b7e7" + "b4e98322-3c51-470c-8de7-4e1d0e16fd9a" ], "Request-Id": [ - "fd0e7e80-8964-4f2b-a230-b7ae60d4b7e7" + "b4e98322-3c51-470c-8de7-4e1d0e16fd9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,10 +108,10 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:10 GMT" + "Tue, 29 Oct 2019 13:19:08 GMT" ], "Content-Length": [ - "491" + "512" ], "Content-Type": [ "application/json" @@ -120,23 +120,23 @@ "attachment; filename=\"LUIS App to be exported.json\"" ] }, - "ResponseBody": "{\r\n \"luis_schema_version\": \"3.2.0\",\r\n \"versionId\": \"0.1\",\r\n \"name\": \"LUIS App to be exported\",\r\n \"desc\": \"New LUIS App\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"intents\": [\r\n {\r\n \"name\": \"None\"\r\n }\r\n ],\r\n \"entities\": [],\r\n \"composites\": [],\r\n \"closedLists\": [],\r\n \"patternAnyEntities\": [],\r\n \"regex_entities\": [],\r\n \"prebuiltEntities\": [],\r\n \"model_features\": [],\r\n \"regex_features\": [],\r\n \"patterns\": [],\r\n \"utterances\": [],\r\n \"settings\": []\r\n}", + "ResponseBody": "{\r\n \"luis_schema_version\": \"6.0.0\",\r\n \"intents\": [\r\n {\r\n \"name\": \"None\"\r\n }\r\n ],\r\n \"entities\": [],\r\n \"hierarchicals\": [],\r\n \"composites\": [],\r\n \"closedLists\": [],\r\n \"prebuiltEntities\": [],\r\n \"utterances\": [],\r\n \"versionId\": \"0.1\",\r\n \"name\": \"LUIS App to be exported\",\r\n \"desc\": \"New LUIS App\",\r\n \"culture\": \"en-us\",\r\n \"tokenizerVersion\": \"1.0.0\",\r\n \"patternAnyEntities\": [],\r\n \"regex_entities\": [],\r\n \"phraselists\": [],\r\n \"regex_features\": [],\r\n \"patterns\": [],\r\n \"settings\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3c37d554-bec6-46ba-9950-ccdac126eaf5?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zYzM3ZDU1NC1iZWM2LTQ2YmEtOTk1MC1jY2RhYzEyNmVhZjU/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/cb00a3f9-8fac-442d-b56f-43bb617b9825?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2NiMDBhM2Y5LThmYWMtNDQyZC1iNTZmLTQzYmI2MTdiOTgyNT9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -147,10 +147,10 @@ "no-cache" ], "Apim-Request-Id": [ - "17fa019a-e515-4f3f-adec-440fe6c886d1" + "8f87d76a-6601-4ed3-829a-30d6b76b971d" ], "Request-Id": [ - "17fa019a-e515-4f3f-adec-440fe6c886d1" + "8f87d76a-6601-4ed3-829a-30d6b76b971d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -165,7 +165,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:10 GMT" + "Tue, 29 Oct 2019 13:19:09 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ImportExportTests/ImportApp.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ImportExportTests/ImportApp.json index 20e92fb42cbb..221b11675be5 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ImportExportTests/ImportApp.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ImportExportTests/ImportApp.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/import?appName=Test%20Import%20LUIS%20App", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9pbXBvcnQ/YXBwTmFtZT1UZXN0JTIwSW1wb3J0JTIwTFVJUyUyMEFwcA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/import?appName=Test%20Import%20LUIS%20App", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2ltcG9ydD9hcHBOYW1lPVRlc3QlMjBJbXBvcnQlMjBMVUlTJTIwQXBw", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"LuisBot\",\r\n \"versionId\": \"0.1\",\r\n \"desc\": \"\",\r\n \"culture\": \"en-us\",\r\n \"intents\": [\r\n {\r\n \"name\": \"dateintent\"\r\n },\r\n {\r\n \"name\": \"Help\"\r\n },\r\n {\r\n \"name\": \"None\"\r\n },\r\n {\r\n \"name\": \"SearchHotels\"\r\n },\r\n {\r\n \"name\": \"ShowHotelsReviews\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"AirportCode\"\r\n },\r\n {\r\n \"name\": \"Hotel\"\r\n }\r\n ],\r\n \"closedLists\": [],\r\n \"composites\": [],\r\n \"regex_features\": [\r\n {\r\n \"pattern\": \"[a-z]{3}\",\r\n \"activated\": true,\r\n \"name\": \"AirportCodeRegex\"\r\n }\r\n ],\r\n \"model_features\": [\r\n {\r\n \"activated\": true,\r\n \"name\": \"Near\",\r\n \"words\": \"near,around,close,nearby\",\r\n \"mode\": true\r\n },\r\n {\r\n \"activated\": true,\r\n \"name\": \"Show\",\r\n \"words\": \"show,find,look,search\",\r\n \"mode\": true\r\n }\r\n ],\r\n \"utterances\": [\r\n {\r\n \"text\": \"i need help\",\r\n \"intent\": \"Help\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"help me\",\r\n \"intent\": \"Help\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"tomorrow\",\r\n \"intent\": \"dateintent\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"search for hotels in seattle\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"what can i do?\",\r\n \"intent\": \"Help\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"next monday\",\r\n \"intent\": \"dateintent\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"next year\",\r\n \"intent\": \"dateintent\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"look for hotels in miami\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"show me hotels in california\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"show me the reviews of the amazing bot resort\",\r\n \"intent\": \"ShowHotelsReviews\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 23,\r\n \"endPos\": 44,\r\n \"entity\": \"Hotel\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"can i see the reviews of extended bot hotel?\",\r\n \"intent\": \"ShowHotelsReviews\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 25,\r\n \"endPos\": 42,\r\n \"entity\": \"Hotel\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"find reviews of hotelxya\",\r\n \"intent\": \"ShowHotelsReviews\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 16,\r\n \"endPos\": 23,\r\n \"entity\": \"Hotel\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"show me reviews of the amazing hotel\",\r\n \"intent\": \"ShowHotelsReviews\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 19,\r\n \"endPos\": 35,\r\n \"entity\": \"Hotel\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"what are the available options?\",\r\n \"intent\": \"Help\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"best hotels in seattle\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"hotels in los angeles\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"can you show me hotels from los angeles?\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"can you show me the reviews of the amazing resort & hotel\",\r\n \"intent\": \"ShowHotelsReviews\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 31,\r\n \"endPos\": 56,\r\n \"entity\": \"Hotel\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"what are the reviews of the hotel bot framework?\",\r\n \"intent\": \"ShowHotelsReviews\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 24,\r\n \"endPos\": 46,\r\n \"entity\": \"Hotel\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"find hotels near eze\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 17,\r\n \"endPos\": 19,\r\n \"entity\": \"AirportCode\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"where can i stay near nnn?\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 22,\r\n \"endPos\": 24,\r\n \"entity\": \"AirportCode\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"show hotels near att airport\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 17,\r\n \"endPos\": 19,\r\n \"entity\": \"AirportCode\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"find hotels near agl\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 17,\r\n \"endPos\": 19,\r\n \"entity\": \"AirportCode\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"find hotels around eze airport\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 19,\r\n \"endPos\": 21,\r\n \"entity\": \"AirportCode\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"01/7\",\r\n \"intent\": \"dateintent\",\r\n \"entities\": []\r\n }\r\n ],\r\n \"luis_schema_version\": \"2.1.0\",\r\n \"bing_entities\": [\r\n \"datetimeV2\",\r\n \"geographyV2\"\r\n ]\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/786725c4-5ec5-4adb-abdc-a4e5bc556ff7" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/ebcbeab1-41f8-45de-abbe-010362761980" ], "Apim-Request-Id": [ - "1fb9caff-9c93-444d-ad9c-9617cbc759be" + "e8382987-19fc-4a24-9d94-e3b39b093d36" ], "Request-Id": [ - "1fb9caff-9c93-444d-ad9c-9617cbc759be" + "e8382987-19fc-4a24-9d94-e3b39b093d36" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/786725c4-5ec5-4adb-abdc-a4e5bc556ff7" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/ebcbeab1-41f8-45de-abbe-010362761980" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:13 GMT" + "Tue, 29 Oct 2019 13:19:06 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"786725c4-5ec5-4adb-abdc-a4e5bc556ff7\"", + "ResponseBody": "\"ebcbeab1-41f8-45de-abbe-010362761980\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/786725c4-5ec5-4adb-abdc-a4e5bc556ff7", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy83ODY3MjVjNC01ZWM1LTRhZGItYWJkYy1hNGU1YmM1NTZmZjc=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/ebcbeab1-41f8-45de-abbe-010362761980", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2ViY2JlYWIxLTQxZjgtNDVkZS1hYmJlLTAxMDM2Mjc2MTk4MA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "a691641c-6bae-4c02-99dc-1bcde0cb11a3" + "cefde907-c2a0-48e9-9402-a8c6a6c890b4" ], "Request-Id": [ - "a691641c-6bae-4c02-99dc-1bcde0cb11a3" + "cefde907-c2a0-48e9-9402-a8c6a6c890b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:13 GMT" + "Tue, 29 Oct 2019 13:19:06 GMT" ], "Content-Length": [ "324" @@ -117,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"786725c4-5ec5-4adb-abdc-a4e5bc556ff7\",\r\n \"name\": \"Test Import LUIS App\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-08-25T19:18:12Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-omsami@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"ebcbeab1-41f8-45de-abbe-010362761980\",\r\n \"name\": \"Test Import LUIS App\",\r\n \"description\": \"\",\r\n \"culture\": \"en-us\",\r\n \"usageScenario\": \"\",\r\n \"domain\": \"\",\r\n \"versionsCount\": 1,\r\n \"createdDateTime\": \"2019-10-29T13:19:06Z\",\r\n \"endpoints\": {},\r\n \"endpointHitsCount\": 0,\r\n \"activeVersion\": \"0.1\",\r\n \"ownerEmail\": \"a-nebadr@microsoft.com\",\r\n \"tokenizerVersion\": \"1.0.0\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/786725c4-5ec5-4adb-abdc-a4e5bc556ff7?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy83ODY3MjVjNC01ZWM1LTRhZGItYWJkYy1hNGU1YmM1NTZmZjc/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/ebcbeab1-41f8-45de-abbe-010362761980?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2ViY2JlYWIxLTQxZjgtNDVkZS1hYmJlLTAxMDM2Mjc2MTk4MD9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "dea44d96-5626-4ce7-9545-0deb84d35e42" + "7ee5331b-0c39-4121-992e-5c17fc1d36bd" ], "Request-Id": [ - "dea44d96-5626-4ce7-9545-0deb84d35e42" + "7ee5331b-0c39-4121-992e-5c17fc1d36bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:14 GMT" + "Tue, 29 Oct 2019 13:19:07 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ImportExportTests/ImportVersion.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ImportExportTests/ImportVersion.json index 8a7618748937..3b884b6829f0 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ImportExportTests/ImportVersion.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ImportExportTests/ImportVersion.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"culture\": \"en-us\",\r\n \"domain\": \"Comics\",\r\n \"description\": \"New LUIS App\",\r\n \"usageScenario\": \"IoT\",\r\n \"name\": \"Import Version Test LUIS App\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/f14feae7-c641-4403-86ee-5668bdc0adec" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/124c2281-355b-4d67-b69b-89bb1fc2e9b8" ], "Apim-Request-Id": [ - "a3d0f4de-6341-46f9-bd4b-8af59146f675" + "51cf2dd4-0b20-4bf3-8c06-558510e7f7de" ], "Request-Id": [ - "a3d0f4de-6341-46f9-bd4b-8af59146f675" + "51cf2dd4-0b20-4bf3-8c06-558510e7f7de" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/f14feae7-c641-4403-86ee-5668bdc0adec" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/124c2281-355b-4d67-b69b-89bb1fc2e9b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:15 GMT" + "Tue, 29 Oct 2019 13:19:10 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"f14feae7-c641-4403-86ee-5668bdc0adec\"", + "ResponseBody": "\"124c2281-355b-4d67-b69b-89bb1fc2e9b8\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/f14feae7-c641-4403-86ee-5668bdc0adec/versions/import?versionId=0.2", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9mMTRmZWFlNy1jNjQxLTQ0MDMtODZlZS01NjY4YmRjMGFkZWMvdmVyc2lvbnMvaW1wb3J0P3ZlcnNpb25JZD0wLjI=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/124c2281-355b-4d67-b69b-89bb1fc2e9b8/versions/import?versionId=0.2", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzEyNGMyMjgxLTM1NWItNGQ2Ny1iNjliLTg5YmIxZmMyZTliOC92ZXJzaW9ucy9pbXBvcnQ/dmVyc2lvbklkPTAuMg==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"LuisBot\",\r\n \"versionId\": \"0.1\",\r\n \"desc\": \"\",\r\n \"culture\": \"en-us\",\r\n \"intents\": [\r\n {\r\n \"name\": \"dateintent\"\r\n },\r\n {\r\n \"name\": \"Help\"\r\n },\r\n {\r\n \"name\": \"None\"\r\n },\r\n {\r\n \"name\": \"SearchHotels\"\r\n },\r\n {\r\n \"name\": \"ShowHotelsReviews\"\r\n }\r\n ],\r\n \"entities\": [\r\n {\r\n \"name\": \"AirportCode\"\r\n },\r\n {\r\n \"name\": \"Hotel\"\r\n }\r\n ],\r\n \"closedLists\": [],\r\n \"composites\": [],\r\n \"regex_features\": [\r\n {\r\n \"pattern\": \"[a-z]{3}\",\r\n \"activated\": true,\r\n \"name\": \"AirportCodeRegex\"\r\n }\r\n ],\r\n \"model_features\": [\r\n {\r\n \"activated\": true,\r\n \"name\": \"Near\",\r\n \"words\": \"near,around,close,nearby\",\r\n \"mode\": true\r\n },\r\n {\r\n \"activated\": true,\r\n \"name\": \"Show\",\r\n \"words\": \"show,find,look,search\",\r\n \"mode\": true\r\n }\r\n ],\r\n \"utterances\": [\r\n {\r\n \"text\": \"i need help\",\r\n \"intent\": \"Help\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"help me\",\r\n \"intent\": \"Help\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"tomorrow\",\r\n \"intent\": \"dateintent\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"search for hotels in seattle\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"what can i do?\",\r\n \"intent\": \"Help\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"next monday\",\r\n \"intent\": \"dateintent\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"next year\",\r\n \"intent\": \"dateintent\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"look for hotels in miami\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"show me hotels in california\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"show me the reviews of the amazing bot resort\",\r\n \"intent\": \"ShowHotelsReviews\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 23,\r\n \"endPos\": 44,\r\n \"entity\": \"Hotel\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"can i see the reviews of extended bot hotel?\",\r\n \"intent\": \"ShowHotelsReviews\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 25,\r\n \"endPos\": 42,\r\n \"entity\": \"Hotel\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"find reviews of hotelxya\",\r\n \"intent\": \"ShowHotelsReviews\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 16,\r\n \"endPos\": 23,\r\n \"entity\": \"Hotel\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"show me reviews of the amazing hotel\",\r\n \"intent\": \"ShowHotelsReviews\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 19,\r\n \"endPos\": 35,\r\n \"entity\": \"Hotel\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"what are the available options?\",\r\n \"intent\": \"Help\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"best hotels in seattle\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"hotels in los angeles\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"can you show me hotels from los angeles?\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": []\r\n },\r\n {\r\n \"text\": \"can you show me the reviews of the amazing resort & hotel\",\r\n \"intent\": \"ShowHotelsReviews\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 31,\r\n \"endPos\": 56,\r\n \"entity\": \"Hotel\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"what are the reviews of the hotel bot framework?\",\r\n \"intent\": \"ShowHotelsReviews\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 24,\r\n \"endPos\": 46,\r\n \"entity\": \"Hotel\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"find hotels near eze\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 17,\r\n \"endPos\": 19,\r\n \"entity\": \"AirportCode\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"where can i stay near nnn?\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 22,\r\n \"endPos\": 24,\r\n \"entity\": \"AirportCode\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"show hotels near att airport\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 17,\r\n \"endPos\": 19,\r\n \"entity\": \"AirportCode\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"find hotels near agl\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 17,\r\n \"endPos\": 19,\r\n \"entity\": \"AirportCode\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"find hotels around eze airport\",\r\n \"intent\": \"SearchHotels\",\r\n \"entities\": [\r\n {\r\n \"startPos\": 19,\r\n \"endPos\": 21,\r\n \"entity\": \"AirportCode\"\r\n }\r\n ]\r\n },\r\n {\r\n \"text\": \"01/7\",\r\n \"intent\": \"dateintent\",\r\n \"entities\": []\r\n }\r\n ],\r\n \"luis_schema_version\": \"2.1.0\",\r\n \"bing_entities\": [\r\n \"datetimeV2\",\r\n \"geographyV2\"\r\n ]\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/f14feae7-c641-4403-86ee-5668bdc0adec/versions/0.2" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/124c2281-355b-4d67-b69b-89bb1fc2e9b8/versions/0.2" ], "Apim-Request-Id": [ - "a0bf4390-af7a-4923-8336-83dbcd6d9013" + "f9dc0fb5-de77-4221-9ece-3388b5306579" ], "Request-Id": [ - "a0bf4390-af7a-4923-8336-83dbcd6d9013" + "f9dc0fb5-de77-4221-9ece-3388b5306579" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/f14feae7-c641-4403-86ee-5668bdc0adec/versions/0.2" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/124c2281-355b-4d67-b69b-89bb1fc2e9b8/versions/0.2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:16 GMT" + "Tue, 29 Oct 2019 13:19:11 GMT" ], "Content-Length": [ "5" @@ -133,19 +133,19 @@ "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/f14feae7-c641-4403-86ee-5668bdc0adec?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9mMTRmZWFlNy1jNjQxLTQ0MDMtODZlZS01NjY4YmRjMGFkZWM/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/124c2281-355b-4d67-b69b-89bb1fc2e9b8?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzEyNGMyMjgxLTM1NWItNGQ2Ny1iNjliLTg5YmIxZmMyZTliOD9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "36246b89-a83a-4b75-bf1a-9533fbc0c22b" + "a4156739-805b-4ece-b0a9-86084f1d3260" ], "Request-Id": [ - "36246b89-a83a-4b75-bf1a-9533fbc0c22b" + "a4156739-805b-4ece-b0a9-86084f1d3260" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:17 GMT" + "Tue, 29 Oct 2019 13:19:11 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/AddClosedList.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/AddClosedList.json index b9612b38b8a3..adbafe075299 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/AddClosedList.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/AddClosedList.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3Rz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"subLists\": [\r\n {\r\n \"canonicalForm\": \"New York\",\r\n \"list\": [\r\n \"NY\",\r\n \"New York\"\r\n ]\r\n },\r\n {\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\",\r\n \"Washington\"\r\n ]\r\n },\r\n {\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"California\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n }\r\n ],\r\n \"name\": \"States\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/343fe909-e407-44a4-a3fa-fd4c139aee9f" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/359d00a8-ce43-4ba9-990e-2d2524639e6a" ], "Apim-Request-Id": [ - "7e3e04e3-4385-4ee8-92b2-7711abe1aa37" + "8d7553a2-cedb-4112-a04e-c8bd2ec5c0ea" ], "Request-Id": [ - "7e3e04e3-4385-4ee8-92b2-7711abe1aa37" + "8d7553a2-cedb-4112-a04e-c8bd2ec5c0ea" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/343fe909-e407-44a4-a3fa-fd4c139aee9f" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/359d00a8-ce43-4ba9-990e-2d2524639e6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:46 GMT" + "Tue, 29 Oct 2019 13:19:30 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"343fe909-e407-44a4-a3fa-fd4c139aee9f\"", + "ResponseBody": "\"359d00a8-ce43-4ba9-990e-2d2524639e6a\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/343fe909-e407-44a4-a3fa-fd4c139aee9f", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzLzM0M2ZlOTA5LWU0MDctNDRhNC1hM2ZhLWZkNGMxMzlhZWU5Zg==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/359d00a8-ce43-4ba9-990e-2d2524639e6a", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvMzU5ZDAwYTgtY2U0My00YmE5LTk5MGUtMmQyNTI0NjM5ZTZh", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "d311f9db-9548-43f4-b6ae-a512fa8c3606" + "a609b29a-cb87-4a3b-873b-98159494b8b5" ], "Request-Id": [ - "d311f9db-9548-43f4-b6ae-a512fa8c3606" + "a609b29a-cb87-4a3b-873b-98159494b8b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:46 GMT" + "Tue, 29 Oct 2019 13:19:30 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/AddSubList.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/AddSubList.json index 2ecd8c762771..5bcc52aed9b2 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/AddSubList.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/AddSubList.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3Rz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"subLists\": [\r\n {\r\n \"canonicalForm\": \"New York\",\r\n \"list\": [\r\n \"NY\",\r\n \"New York\"\r\n ]\r\n },\r\n {\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\",\r\n \"Washington\"\r\n ]\r\n },\r\n {\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"California\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n }\r\n ],\r\n \"name\": \"States\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/eff74afe-ae61-4be1-b943-d849a5af58cf" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/de528450-b9b8-4dad-b225-5f6beb48b701" ], "Apim-Request-Id": [ - "2bbc48e1-26dc-4ef4-bfe1-46d0b3481b56" + "f11271b4-e06d-4845-9154-74599dccd995" ], "Request-Id": [ - "2bbc48e1-26dc-4ef4-bfe1-46d0b3481b56" + "f11271b4-e06d-4845-9154-74599dccd995" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/eff74afe-ae61-4be1-b943-d849a5af58cf" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/de528450-b9b8-4dad-b225-5f6beb48b701" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:43 GMT" + "Tue, 29 Oct 2019 13:19:23 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"eff74afe-ae61-4be1-b943-d849a5af58cf\"", + "ResponseBody": "\"de528450-b9b8-4dad-b225-5f6beb48b701\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/eff74afe-ae61-4be1-b943-d849a5af58cf/sublists", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzL2VmZjc0YWZlLWFlNjEtNGJlMS1iOTQzLWQ4NDlhNWFmNThjZi9zdWJsaXN0cw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/de528450-b9b8-4dad-b225-5f6beb48b701/sublists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvZGU1Mjg0NTAtYjliOC00ZGFkLWIyMjUtNWY2YmViNDhiNzAxL3N1Ymxpc3Rz", "RequestMethod": "POST", "RequestBody": "{\r\n \"canonicalForm\": \"Texas\",\r\n \"list\": [\r\n \"tx\",\r\n \"texas\"\r\n ]\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/eff74afe-ae61-4be1-b943-d849a5af58cf/sublists/93255979" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/de528450-b9b8-4dad-b225-5f6beb48b701/sublists/102916848" ], "Apim-Request-Id": [ - "c949ea1c-7b34-4298-90a4-c743598961de" + "3462d685-7c78-4ccc-adbe-f796972de584" ], "Request-Id": [ - "c949ea1c-7b34-4298-90a4-c743598961de" + "3462d685-7c78-4ccc-adbe-f796972de584" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/eff74afe-ae61-4be1-b943-d849a5af58cf/sublists/93255979" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/de528450-b9b8-4dad-b225-5f6beb48b701/sublists/102916848" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,32 +120,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:44 GMT" + "Tue, 29 Oct 2019 13:19:23 GMT" ], "Content-Length": [ - "8" + "9" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "93255979", + "ResponseBody": "102916848", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/eff74afe-ae61-4be1-b943-d849a5af58cf", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzL2VmZjc0YWZlLWFlNjEtNGJlMS1iOTQzLWQ4NDlhNWFmNThjZg==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/de528450-b9b8-4dad-b225-5f6beb48b701", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvZGU1Mjg0NTAtYjliOC00ZGFkLWIyMjUtNWY2YmViNDhiNzAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "d7887443-f208-4bbb-b1d6-1714e545b4ed" + "7607efaf-f497-492a-b2d0-8f1b56275913" ], "Request-Id": [ - "d7887443-f208-4bbb-b1d6-1714e545b4ed" + "7607efaf-f497-492a-b2d0-8f1b56275913" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,32 +174,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:44 GMT" + "Tue, 29 Oct 2019 13:19:23 GMT" ], "Content-Length": [ - "395" + "399" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"eff74afe-ae61-4be1-b943-d849a5af58cf\",\r\n \"name\": \"States\",\r\n \"typeId\": 5,\r\n \"readableType\": \"Closed List Entity Extractor\",\r\n \"subLists\": [\r\n {\r\n \"id\": 93255976,\r\n \"canonicalForm\": \"New York\",\r\n \"list\": [\r\n \"NY\"\r\n ]\r\n },\r\n {\r\n \"id\": 93255977,\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\"\r\n ]\r\n },\r\n {\r\n \"id\": 93255978,\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n },\r\n {\r\n \"id\": 93255979,\r\n \"canonicalForm\": \"Texas\",\r\n \"list\": [\r\n \"tx\",\r\n \"texas\"\r\n ]\r\n }\r\n ],\r\n \"roles\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"de528450-b9b8-4dad-b225-5f6beb48b701\",\r\n \"name\": \"States\",\r\n \"typeId\": 5,\r\n \"readableType\": \"Closed List Entity Extractor\",\r\n \"subLists\": [\r\n {\r\n \"id\": 102916845,\r\n \"canonicalForm\": \"New York\",\r\n \"list\": [\r\n \"NY\"\r\n ]\r\n },\r\n {\r\n \"id\": 102916846,\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\"\r\n ]\r\n },\r\n {\r\n \"id\": 102916847,\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n },\r\n {\r\n \"id\": 102916848,\r\n \"canonicalForm\": \"Texas\",\r\n \"list\": [\r\n \"tx\",\r\n \"texas\"\r\n ]\r\n }\r\n ],\r\n \"roles\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/eff74afe-ae61-4be1-b943-d849a5af58cf", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzL2VmZjc0YWZlLWFlNjEtNGJlMS1iOTQzLWQ4NDlhNWFmNThjZg==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/de528450-b9b8-4dad-b225-5f6beb48b701", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvZGU1Mjg0NTAtYjliOC00ZGFkLWIyMjUtNWY2YmViNDhiNzAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "20647311-19c7-47ee-a5f3-ce01aabecd34" + "93f8371c-535c-4a4d-94d2-a84d34fb17b6" ], "Request-Id": [ - "20647311-19c7-47ee-a5f3-ce01aabecd34" + "93f8371c-535c-4a4d-94d2-a84d34fb17b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:44 GMT" + "Tue, 29 Oct 2019 13:19:24 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/DeleteClosedList.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/DeleteClosedList.json index 35dc1b018d93..08b312b46006 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/DeleteClosedList.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/DeleteClosedList.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3Rz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"subLists\": [\r\n {\r\n \"canonicalForm\": \"New York\",\r\n \"list\": [\r\n \"NY\",\r\n \"New York\"\r\n ]\r\n },\r\n {\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\",\r\n \"Washington\"\r\n ]\r\n },\r\n {\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"California\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n }\r\n ],\r\n \"name\": \"States\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/2b1c5bbd-0f68-45a0-834b-299382598094" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/7b90eaaa-bb9c-4fe6-944e-25d739f1d431" ], "Apim-Request-Id": [ - "7b5900dc-505a-44d1-9d40-85a18edfdeac" + "f16f3934-a2eb-491c-853e-e8725e1e2e35" ], "Request-Id": [ - "7b5900dc-505a-44d1-9d40-85a18edfdeac" + "f16f3934-a2eb-491c-853e-e8725e1e2e35" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/2b1c5bbd-0f68-45a0-834b-299382598094" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/7b90eaaa-bb9c-4fe6-944e-25d739f1d431" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:41 GMT" + "Tue, 29 Oct 2019 13:19:21 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"2b1c5bbd-0f68-45a0-834b-299382598094\"", + "ResponseBody": "\"7b90eaaa-bb9c-4fe6-944e-25d739f1d431\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/2b1c5bbd-0f68-45a0-834b-299382598094", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzLzJiMWM1YmJkLTBmNjgtNDVhMC04MzRiLTI5OTM4MjU5ODA5NA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/7b90eaaa-bb9c-4fe6-944e-25d739f1d431", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvN2I5MGVhYWEtYmI5Yy00ZmU2LTk0NGUtMjVkNzM5ZjFkNDMx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "3098eb12-7a91-4f82-bb3d-eedb7fc453b1" + "7ce93ecf-d400-40f5-8d20-cf1aad96c3af" ], "Request-Id": [ - "3098eb12-7a91-4f82-bb3d-eedb7fc453b1" + "7ce93ecf-d400-40f5-8d20-cf1aad96c3af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:42 GMT" + "Tue, 29 Oct 2019 13:19:22 GMT" ], "Content-Length": [ "51" @@ -121,19 +121,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzP3NraXA9MCZ0YWtlPTEwMA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHM/c2tpcD0wJnRha2U9MTAw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "5697d29f-f9c4-47c6-92dc-aac03f576773" + "735ca44a-95d1-4749-808a-95d271004a97" ], "Request-Id": [ - "5697d29f-f9c4-47c6-92dc-aac03f576773" + "735ca44a-95d1-4749-808a-95d271004a97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,16 +162,16 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:42 GMT" + "Tue, 29 Oct 2019 13:19:22 GMT" ], "Content-Length": [ - "2" + "206" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"id\": \"e2b202fc-fcd0-4bb6-bafe-2ada9ba18d40\",\r\n \"name\": \"closedlist\",\r\n \"typeId\": 5,\r\n \"readableType\": \"Closed List Entity Extractor\",\r\n \"subLists\": [\r\n {\r\n \"id\": 102815923,\r\n \"canonicalForm\": \"a\",\r\n \"list\": [\r\n \"b\",\r\n \"c\",\r\n \"d\"\r\n ]\r\n }\r\n ],\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 200 } ], diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/DeleteSubList.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/DeleteSubList.json index c1fe3dcc8cf0..8d967351e893 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/DeleteSubList.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/DeleteSubList.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3Rz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"subLists\": [\r\n {\r\n \"canonicalForm\": \"New York\",\r\n \"list\": [\r\n \"NY\",\r\n \"New York\"\r\n ]\r\n },\r\n {\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\",\r\n \"Washington\"\r\n ]\r\n },\r\n {\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"California\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n }\r\n ],\r\n \"name\": \"States\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/a0716b8b-9c6b-40d5-9fb6-ac21778ef356" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/2d4546f3-f8d8-4386-be50-61bf6fcdf432" ], "Apim-Request-Id": [ - "c79fedfc-7664-4a01-92fc-488e48737b04" + "22b02456-4b06-4465-bb40-e8dd71e6a738" ], "Request-Id": [ - "c79fedfc-7664-4a01-92fc-488e48737b04" + "22b02456-4b06-4465-bb40-e8dd71e6a738" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/a0716b8b-9c6b-40d5-9fb6-ac21778ef356" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/2d4546f3-f8d8-4386-be50-61bf6fcdf432" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:34 GMT" + "Tue, 29 Oct 2019 13:19:13 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"a0716b8b-9c6b-40d5-9fb6-ac21778ef356\"", + "ResponseBody": "\"2d4546f3-f8d8-4386-be50-61bf6fcdf432\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/a0716b8b-9c6b-40d5-9fb6-ac21778ef356", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzL2EwNzE2YjhiLTljNmItNDBkNS05ZmI2LWFjMjE3NzhlZjM1Ng==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/2d4546f3-f8d8-4386-be50-61bf6fcdf432", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvMmQ0NTQ2ZjMtZjhkOC00Mzg2LWJlNTAtNjFiZjZmY2RmNDMy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "ce7f4d5b-b761-4509-a3c9-55ba78e33311" + "6da9d660-37bd-44f9-aff6-ad69d6e12aee" ], "Request-Id": [ - "ce7f4d5b-b761-4509-a3c9-55ba78e33311" + "6da9d660-37bd-44f9-aff6-ad69d6e12aee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,32 +108,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:35 GMT" + "Tue, 29 Oct 2019 13:19:14 GMT" ], "Content-Length": [ - "333" + "336" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"a0716b8b-9c6b-40d5-9fb6-ac21778ef356\",\r\n \"name\": \"States\",\r\n \"typeId\": 5,\r\n \"readableType\": \"Closed List Entity Extractor\",\r\n \"subLists\": [\r\n {\r\n \"id\": 93255961,\r\n \"canonicalForm\": \"New York\",\r\n \"list\": [\r\n \"NY\"\r\n ]\r\n },\r\n {\r\n \"id\": 93255962,\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\"\r\n ]\r\n },\r\n {\r\n \"id\": 93255963,\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n }\r\n ],\r\n \"roles\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"2d4546f3-f8d8-4386-be50-61bf6fcdf432\",\r\n \"name\": \"States\",\r\n \"typeId\": 5,\r\n \"readableType\": \"Closed List Entity Extractor\",\r\n \"subLists\": [\r\n {\r\n \"id\": 102916828,\r\n \"canonicalForm\": \"New York\",\r\n \"list\": [\r\n \"NY\"\r\n ]\r\n },\r\n {\r\n \"id\": 102916829,\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\"\r\n ]\r\n },\r\n {\r\n \"id\": 102916830,\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n }\r\n ],\r\n \"roles\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/a0716b8b-9c6b-40d5-9fb6-ac21778ef356", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzL2EwNzE2YjhiLTljNmItNDBkNS05ZmI2LWFjMjE3NzhlZjM1Ng==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/2d4546f3-f8d8-4386-be50-61bf6fcdf432", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvMmQ0NTQ2ZjMtZjhkOC00Mzg2LWJlNTAtNjFiZjZmY2RmNDMy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "be0ffb96-fe8e-4d05-9432-30c955901107" + "5191e8b2-7118-4274-b75b-b6a66e49930a" ], "Request-Id": [ - "be0ffb96-fe8e-4d05-9432-30c955901107" + "5191e8b2-7118-4274-b75b-b6a66e49930a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,32 +162,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:36 GMT" + "Tue, 29 Oct 2019 13:19:14 GMT" ], "Content-Length": [ - "276" + "278" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"a0716b8b-9c6b-40d5-9fb6-ac21778ef356\",\r\n \"name\": \"States\",\r\n \"typeId\": 5,\r\n \"readableType\": \"Closed List Entity Extractor\",\r\n \"subLists\": [\r\n {\r\n \"id\": 93255962,\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\"\r\n ]\r\n },\r\n {\r\n \"id\": 93255963,\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n }\r\n ],\r\n \"roles\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"2d4546f3-f8d8-4386-be50-61bf6fcdf432\",\r\n \"name\": \"States\",\r\n \"typeId\": 5,\r\n \"readableType\": \"Closed List Entity Extractor\",\r\n \"subLists\": [\r\n {\r\n \"id\": 102916829,\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\"\r\n ]\r\n },\r\n {\r\n \"id\": 102916830,\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n }\r\n ],\r\n \"roles\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/a0716b8b-9c6b-40d5-9fb6-ac21778ef356/sublists/93255961", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzL2EwNzE2YjhiLTljNmItNDBkNS05ZmI2LWFjMjE3NzhlZjM1Ni9zdWJsaXN0cy85MzI1NTk2MQ==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/2d4546f3-f8d8-4386-be50-61bf6fcdf432/sublists/102916828", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvMmQ0NTQ2ZjMtZjhkOC00Mzg2LWJlNTAtNjFiZjZmY2RmNDMyL3N1Ymxpc3RzLzEwMjkxNjgyOA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -198,10 +198,10 @@ "no-cache" ], "Apim-Request-Id": [ - "869d14fb-15cb-447c-adce-979f5a6fd3d7" + "d4ad1b9a-68f6-42fc-b1f3-921ebf46069b" ], "Request-Id": [ - "869d14fb-15cb-447c-adce-979f5a6fd3d7" + "d4ad1b9a-68f6-42fc-b1f3-921ebf46069b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -216,7 +216,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:35 GMT" + "Tue, 29 Oct 2019 13:19:14 GMT" ], "Content-Length": [ "51" @@ -229,19 +229,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/a0716b8b-9c6b-40d5-9fb6-ac21778ef356", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzL2EwNzE2YjhiLTljNmItNDBkNS05ZmI2LWFjMjE3NzhlZjM1Ng==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/2d4546f3-f8d8-4386-be50-61bf6fcdf432", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvMmQ0NTQ2ZjMtZjhkOC00Mzg2LWJlNTAtNjFiZjZmY2RmNDMy", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -252,10 +252,10 @@ "no-cache" ], "Apim-Request-Id": [ - "b815c6f6-c6e5-402d-8986-ad54a9eaf8fa" + "a75598bb-6095-4378-864c-1ab9be725473" ], "Request-Id": [ - "b815c6f6-c6e5-402d-8986-ad54a9eaf8fa" + "a75598bb-6095-4378-864c-1ab9be725473" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -270,7 +270,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:36 GMT" + "Tue, 29 Oct 2019 13:19:15 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/GetClosedList.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/GetClosedList.json index 0d31b0c7e09d..968fd57b9393 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/GetClosedList.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/GetClosedList.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3Rz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"subLists\": [\r\n {\r\n \"canonicalForm\": \"New York\",\r\n \"list\": [\r\n \"NY\",\r\n \"New York\"\r\n ]\r\n },\r\n {\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\",\r\n \"Washington\"\r\n ]\r\n },\r\n {\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"California\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n }\r\n ],\r\n \"name\": \"States\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/6f4379f9-2376-4625-9536-85f32c54e18d" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/c9765382-d477-4def-a1bc-833b5fe7b93a" ], "Apim-Request-Id": [ - "0682308b-ddb3-45cb-a1bc-c5b1f9426dbe" + "a64a8724-5caa-46dd-b468-3ae1748bff72" ], "Request-Id": [ - "0682308b-ddb3-45cb-a1bc-c5b1f9426dbe" + "a64a8724-5caa-46dd-b468-3ae1748bff72" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/6f4379f9-2376-4625-9536-85f32c54e18d" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/c9765382-d477-4def-a1bc-833b5fe7b93a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:50 GMT" + "Tue, 29 Oct 2019 13:19:16 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"6f4379f9-2376-4625-9536-85f32c54e18d\"", + "ResponseBody": "\"c9765382-d477-4def-a1bc-833b5fe7b93a\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/6f4379f9-2376-4625-9536-85f32c54e18d", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzLzZmNDM3OWY5LTIzNzYtNDYyNS05NTM2LTg1ZjMyYzU0ZTE4ZA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/c9765382-d477-4def-a1bc-833b5fe7b93a", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvYzk3NjUzODItZDQ3Ny00ZGVmLWExYmMtODMzYjVmZTdiOTNh", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "6118feb0-ff5a-4605-986e-208b0bd4d2db" + "933cb4f7-1462-4fef-9b5a-0d793594bdcd" ], "Request-Id": [ - "6118feb0-ff5a-4605-986e-208b0bd4d2db" + "933cb4f7-1462-4fef-9b5a-0d793594bdcd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,32 +108,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:50 GMT" + "Tue, 29 Oct 2019 13:19:16 GMT" ], "Content-Length": [ - "333" + "336" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"6f4379f9-2376-4625-9536-85f32c54e18d\",\r\n \"name\": \"States\",\r\n \"typeId\": 5,\r\n \"readableType\": \"Closed List Entity Extractor\",\r\n \"subLists\": [\r\n {\r\n \"id\": 93255986,\r\n \"canonicalForm\": \"New York\",\r\n \"list\": [\r\n \"NY\"\r\n ]\r\n },\r\n {\r\n \"id\": 93255987,\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\"\r\n ]\r\n },\r\n {\r\n \"id\": 93255988,\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n }\r\n ],\r\n \"roles\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"c9765382-d477-4def-a1bc-833b5fe7b93a\",\r\n \"name\": \"States\",\r\n \"typeId\": 5,\r\n \"readableType\": \"Closed List Entity Extractor\",\r\n \"subLists\": [\r\n {\r\n \"id\": 102916831,\r\n \"canonicalForm\": \"New York\",\r\n \"list\": [\r\n \"NY\"\r\n ]\r\n },\r\n {\r\n \"id\": 102916832,\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\"\r\n ]\r\n },\r\n {\r\n \"id\": 102916833,\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n }\r\n ],\r\n \"roles\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/6f4379f9-2376-4625-9536-85f32c54e18d", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzLzZmNDM3OWY5LTIzNzYtNDYyNS05NTM2LTg1ZjMyYzU0ZTE4ZA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/c9765382-d477-4def-a1bc-833b5fe7b93a", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvYzk3NjUzODItZDQ3Ny00ZGVmLWExYmMtODMzYjVmZTdiOTNh", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "5a999608-f3b9-4c0b-95d3-115070946fd3" + "62c9f28d-fe74-4f95-8685-9c8d0e507aaf" ], "Request-Id": [ - "5a999608-f3b9-4c0b-95d3-115070946fd3" + "62c9f28d-fe74-4f95-8685-9c8d0e507aaf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:50 GMT" + "Tue, 29 Oct 2019 13:19:17 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/ListClosedLists.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/ListClosedLists.json index bbbfc81911a0..b7df3b223fa9 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/ListClosedLists.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/ListClosedLists.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3Rz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"subLists\": [\r\n {\r\n \"canonicalForm\": \"New York\",\r\n \"list\": [\r\n \"NY\",\r\n \"New York\"\r\n ]\r\n },\r\n {\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\",\r\n \"Washington\"\r\n ]\r\n },\r\n {\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"California\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n }\r\n ],\r\n \"name\": \"States\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/adef599f-281e-41da-944b-0b23fe0c5b68" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/ee626b32-8ca6-424a-887c-ff9ead6cc2c5" ], "Apim-Request-Id": [ - "8914d6ef-150b-4407-ae59-8f1880851f9a" + "5ff59e6d-b826-4df6-b844-a223f9ecfe35" ], "Request-Id": [ - "8914d6ef-150b-4407-ae59-8f1880851f9a" + "5ff59e6d-b826-4df6-b844-a223f9ecfe35" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/adef599f-281e-41da-944b-0b23fe0c5b68" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/ee626b32-8ca6-424a-887c-ff9ead6cc2c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:51 GMT" + "Tue, 29 Oct 2019 13:19:19 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"adef599f-281e-41da-944b-0b23fe0c5b68\"", + "ResponseBody": "\"ee626b32-8ca6-424a-887c-ff9ead6cc2c5\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzP3NraXA9MCZ0YWtlPTEwMA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHM/c2tpcD0wJnRha2U9MTAw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "90d4740f-073d-44ee-a756-dd07a41dfa97" + "6589ace1-39df-45ef-9f41-0ad76e54985e" ], "Request-Id": [ - "90d4740f-073d-44ee-a756-dd07a41dfa97" + "6589ace1-39df-45ef-9f41-0ad76e54985e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,32 +108,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:51 GMT" + "Tue, 29 Oct 2019 13:19:19 GMT" ], "Content-Length": [ - "335" + "543" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"adef599f-281e-41da-944b-0b23fe0c5b68\",\r\n \"name\": \"States\",\r\n \"typeId\": 5,\r\n \"readableType\": \"Closed List Entity Extractor\",\r\n \"subLists\": [\r\n {\r\n \"id\": 93255989,\r\n \"canonicalForm\": \"New York\",\r\n \"list\": [\r\n \"NY\"\r\n ]\r\n },\r\n {\r\n \"id\": 93255990,\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\"\r\n ]\r\n },\r\n {\r\n \"id\": 93255991,\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n }\r\n ],\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"e2b202fc-fcd0-4bb6-bafe-2ada9ba18d40\",\r\n \"name\": \"closedlist\",\r\n \"typeId\": 5,\r\n \"readableType\": \"Closed List Entity Extractor\",\r\n \"subLists\": [\r\n {\r\n \"id\": 102815923,\r\n \"canonicalForm\": \"a\",\r\n \"list\": [\r\n \"b\",\r\n \"c\",\r\n \"d\"\r\n ]\r\n }\r\n ],\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"ee626b32-8ca6-424a-887c-ff9ead6cc2c5\",\r\n \"name\": \"States\",\r\n \"typeId\": 5,\r\n \"readableType\": \"Closed List Entity Extractor\",\r\n \"subLists\": [\r\n {\r\n \"id\": 102916839,\r\n \"canonicalForm\": \"New York\",\r\n \"list\": [\r\n \"NY\"\r\n ]\r\n },\r\n {\r\n \"id\": 102916840,\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\"\r\n ]\r\n },\r\n {\r\n \"id\": 102916841,\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n }\r\n ],\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/adef599f-281e-41da-944b-0b23fe0c5b68", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzL2FkZWY1OTlmLTI4MWUtNDFkYS05NDRiLTBiMjNmZTBjNWI2OA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/ee626b32-8ca6-424a-887c-ff9ead6cc2c5", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvZWU2MjZiMzItOGNhNi00MjRhLTg4N2MtZmY5ZWFkNmNjMmM1", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "ce600407-3bbc-4da4-b3a9-d9deee1710ca" + "0be65c5e-b0fc-4a8e-acdf-0be85b94eda2" ], "Request-Id": [ - "ce600407-3bbc-4da4-b3a9-d9deee1710ca" + "0be65c5e-b0fc-4a8e-acdf-0be85b94eda2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:51 GMT" + "Tue, 29 Oct 2019 13:19:20 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/PatchClosedList.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/PatchClosedList.json index afb18c2ad5bc..ed9a971262f9 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/PatchClosedList.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/PatchClosedList.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3Rz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"subLists\": [\r\n {\r\n \"canonicalForm\": \"New York\",\r\n \"list\": [\r\n \"NY\",\r\n \"New York\"\r\n ]\r\n },\r\n {\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\",\r\n \"Washington\"\r\n ]\r\n },\r\n {\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"California\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n }\r\n ],\r\n \"name\": \"States\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/49fefc48-5942-4b4d-b03d-1bca5039f0b0" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/b83a6754-a753-4ce3-8300-f9d0142810fe" ], "Apim-Request-Id": [ - "108d839f-fa4f-4654-ae7f-af9597ffa68f" + "eb5927c5-2c9c-461b-91d3-5798a251c088" ], "Request-Id": [ - "108d839f-fa4f-4654-ae7f-af9597ffa68f" + "eb5927c5-2c9c-461b-91d3-5798a251c088" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/49fefc48-5942-4b4d-b03d-1bca5039f0b0" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/b83a6754-a753-4ce3-8300-f9d0142810fe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:38 GMT" + "Tue, 29 Oct 2019 13:19:17 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"49fefc48-5942-4b4d-b03d-1bca5039f0b0\"", + "ResponseBody": "\"b83a6754-a753-4ce3-8300-f9d0142810fe\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/49fefc48-5942-4b4d-b03d-1bca5039f0b0", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzLzQ5ZmVmYzQ4LTU5NDItNGI0ZC1iMDNkLTFiY2E1MDM5ZjBiMA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/b83a6754-a753-4ce3-8300-f9d0142810fe", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvYjgzYTY3NTQtYTc1My00Y2UzLTgzMDAtZjlkMDE0MjgxMGZl", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"subLists\": [\r\n {\r\n \"canonicalForm\": \"Texas\",\r\n \"list\": [\r\n \"tx\",\r\n \"texas\"\r\n ]\r\n },\r\n {\r\n \"canonicalForm\": \"Florida\",\r\n \"list\": [\r\n \"fl\",\r\n \"florida\"\r\n ]\r\n }\r\n ]\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,10 +96,10 @@ "no-cache" ], "Apim-Request-Id": [ - "24f1799b-8eae-4f30-af9e-503ccfd0598d" + "b38ff7d8-2125-4e59-abd8-d557c7ea12a0" ], "Request-Id": [ - "24f1799b-8eae-4f30-af9e-503ccfd0598d" + "b38ff7d8-2125-4e59-abd8-d557c7ea12a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -114,7 +114,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:38 GMT" + "Tue, 29 Oct 2019 13:19:17 GMT" ], "Content-Length": [ "51" @@ -127,19 +127,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/49fefc48-5942-4b4d-b03d-1bca5039f0b0", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzLzQ5ZmVmYzQ4LTU5NDItNGI0ZC1iMDNkLTFiY2E1MDM5ZjBiMA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/b83a6754-a753-4ce3-8300-f9d0142810fe", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvYjgzYTY3NTQtYTc1My00Y2UzLTgzMDAtZjlkMDE0MjgxMGZl", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -150,10 +150,10 @@ "no-cache" ], "Apim-Request-Id": [ - "4d872fbd-829a-4b4a-9c97-1ebc7d412b89" + "64938872-c476-47e0-bcf2-2e617f7a234b" ], "Request-Id": [ - "4d872fbd-829a-4b4a-9c97-1ebc7d412b89" + "64938872-c476-47e0-bcf2-2e617f7a234b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -168,32 +168,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:39 GMT" + "Tue, 29 Oct 2019 13:19:17 GMT" ], "Content-Length": [ - "461" + "466" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"49fefc48-5942-4b4d-b03d-1bca5039f0b0\",\r\n \"name\": \"States\",\r\n \"typeId\": 5,\r\n \"readableType\": \"Closed List Entity Extractor\",\r\n \"subLists\": [\r\n {\r\n \"id\": 93255964,\r\n \"canonicalForm\": \"New York\",\r\n \"list\": [\r\n \"NY\"\r\n ]\r\n },\r\n {\r\n \"id\": 93255965,\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\"\r\n ]\r\n },\r\n {\r\n \"id\": 93255966,\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n },\r\n {\r\n \"id\": 93255967,\r\n \"canonicalForm\": \"Texas\",\r\n \"list\": [\r\n \"tx\",\r\n \"texas\"\r\n ]\r\n },\r\n {\r\n \"id\": 93255968,\r\n \"canonicalForm\": \"Florida\",\r\n \"list\": [\r\n \"fl\",\r\n \"florida\"\r\n ]\r\n }\r\n ],\r\n \"roles\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"b83a6754-a753-4ce3-8300-f9d0142810fe\",\r\n \"name\": \"States\",\r\n \"typeId\": 5,\r\n \"readableType\": \"Closed List Entity Extractor\",\r\n \"subLists\": [\r\n {\r\n \"id\": 102916834,\r\n \"canonicalForm\": \"New York\",\r\n \"list\": [\r\n \"NY\"\r\n ]\r\n },\r\n {\r\n \"id\": 102916835,\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\"\r\n ]\r\n },\r\n {\r\n \"id\": 102916836,\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n },\r\n {\r\n \"id\": 102916837,\r\n \"canonicalForm\": \"Texas\",\r\n \"list\": [\r\n \"tx\",\r\n \"texas\"\r\n ]\r\n },\r\n {\r\n \"id\": 102916838,\r\n \"canonicalForm\": \"Florida\",\r\n \"list\": [\r\n \"fl\",\r\n \"florida\"\r\n ]\r\n }\r\n ],\r\n \"roles\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/49fefc48-5942-4b4d-b03d-1bca5039f0b0", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzLzQ5ZmVmYzQ4LTU5NDItNGI0ZC1iMDNkLTFiY2E1MDM5ZjBiMA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/b83a6754-a753-4ce3-8300-f9d0142810fe", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvYjgzYTY3NTQtYTc1My00Y2UzLTgzMDAtZjlkMDE0MjgxMGZl", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "df159ad4-caf8-404a-a3af-7ee7e6ca2832" + "e5ca4f54-abdd-4b23-b956-e9195307418a" ], "Request-Id": [ - "df159ad4-caf8-404a-a3af-7ee7e6ca2832" + "e5ca4f54-abdd-4b23-b956-e9195307418a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,7 +222,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:39 GMT" + "Tue, 29 Oct 2019 13:19:19 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/UpdateClosedList.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/UpdateClosedList.json index 0bde546b86c6..9aa6dd30c2ae 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/UpdateClosedList.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/UpdateClosedList.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3Rz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"subLists\": [\r\n {\r\n \"canonicalForm\": \"New York\",\r\n \"list\": [\r\n \"NY\",\r\n \"New York\"\r\n ]\r\n },\r\n {\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\",\r\n \"Washington\"\r\n ]\r\n },\r\n {\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"California\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n }\r\n ],\r\n \"name\": \"States\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/92a999e1-5641-4c9b-864a-2cc4118e91fa" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/ed3125dd-c587-477d-8a55-8ad1ecb90ff0" ], "Apim-Request-Id": [ - "cc0842c4-e577-4c29-ac2d-96b19e674070" + "d39bcb23-d3c7-4658-8bb5-70fb720ce242" ], "Request-Id": [ - "cc0842c4-e577-4c29-ac2d-96b19e674070" + "d39bcb23-d3c7-4658-8bb5-70fb720ce242" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/92a999e1-5641-4c9b-864a-2cc4118e91fa" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/ed3125dd-c587-477d-8a55-8ad1ecb90ff0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:40 GMT" + "Tue, 29 Oct 2019 13:19:27 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"92a999e1-5641-4c9b-864a-2cc4118e91fa\"", + "ResponseBody": "\"ed3125dd-c587-477d-8a55-8ad1ecb90ff0\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/92a999e1-5641-4c9b-864a-2cc4118e91fa", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzLzkyYTk5OWUxLTU2NDEtNGM5Yi04NjRhLTJjYzQxMThlOTFmYQ==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/ed3125dd-c587-477d-8a55-8ad1ecb90ff0", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvZWQzMTI1ZGQtYzU4Ny00NzdkLThhNTUtOGFkMWVjYjkwZmYw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"subLists\": [\r\n {\r\n \"canonicalForm\": \"Texas\",\r\n \"list\": [\r\n \"tx\",\r\n \"texas\"\r\n ]\r\n }\r\n ],\r\n \"name\": \"New States\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,10 +96,10 @@ "no-cache" ], "Apim-Request-Id": [ - "c89d47c6-0c9d-47ff-9822-e0eb0bec74fd" + "b0e60a68-a422-4c45-a5ce-1d47d1eb5d3a" ], "Request-Id": [ - "c89d47c6-0c9d-47ff-9822-e0eb0bec74fd" + "b0e60a68-a422-4c45-a5ce-1d47d1eb5d3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -114,32 +114,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:40 GMT" + "Tue, 29 Oct 2019 13:19:28 GMT" ], "Content-Length": [ - "208" + "209" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"92a999e1-5641-4c9b-864a-2cc4118e91fa\",\r\n \"name\": \"New States\",\r\n \"typeId\": 5,\r\n \"readableType\": \"Closed List Entity Extractor\",\r\n \"subLists\": [\r\n {\r\n \"id\": 93255972,\r\n \"canonicalForm\": \"Texas\",\r\n \"list\": [\r\n \"tx\",\r\n \"texas\"\r\n ]\r\n }\r\n ],\r\n \"roles\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"ed3125dd-c587-477d-8a55-8ad1ecb90ff0\",\r\n \"name\": \"New States\",\r\n \"typeId\": 5,\r\n \"readableType\": \"Closed List Entity Extractor\",\r\n \"subLists\": [\r\n {\r\n \"id\": 102916855,\r\n \"canonicalForm\": \"Texas\",\r\n \"list\": [\r\n \"tx\",\r\n \"texas\"\r\n ]\r\n }\r\n ],\r\n \"roles\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/92a999e1-5641-4c9b-864a-2cc4118e91fa", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzLzkyYTk5OWUxLTU2NDEtNGM5Yi04NjRhLTJjYzQxMThlOTFmYQ==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/ed3125dd-c587-477d-8a55-8ad1ecb90ff0", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvZWQzMTI1ZGQtYzU4Ny00NzdkLThhNTUtOGFkMWVjYjkwZmYw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -150,10 +150,10 @@ "no-cache" ], "Apim-Request-Id": [ - "9fe487ae-b47d-4842-9f04-c405903627e5" + "42d5d760-fbf9-4545-bbe0-c5200b271e3a" ], "Request-Id": [ - "9fe487ae-b47d-4842-9f04-c405903627e5" + "42d5d760-fbf9-4545-bbe0-c5200b271e3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -168,32 +168,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:40 GMT" + "Tue, 29 Oct 2019 13:19:28 GMT" ], "Content-Length": [ - "208" + "209" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"92a999e1-5641-4c9b-864a-2cc4118e91fa\",\r\n \"name\": \"New States\",\r\n \"typeId\": 5,\r\n \"readableType\": \"Closed List Entity Extractor\",\r\n \"subLists\": [\r\n {\r\n \"id\": 93255972,\r\n \"canonicalForm\": \"Texas\",\r\n \"list\": [\r\n \"tx\",\r\n \"texas\"\r\n ]\r\n }\r\n ],\r\n \"roles\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"ed3125dd-c587-477d-8a55-8ad1ecb90ff0\",\r\n \"name\": \"New States\",\r\n \"typeId\": 5,\r\n \"readableType\": \"Closed List Entity Extractor\",\r\n \"subLists\": [\r\n {\r\n \"id\": 102916855,\r\n \"canonicalForm\": \"Texas\",\r\n \"list\": [\r\n \"tx\",\r\n \"texas\"\r\n ]\r\n }\r\n ],\r\n \"roles\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/92a999e1-5641-4c9b-864a-2cc4118e91fa", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzLzkyYTk5OWUxLTU2NDEtNGM5Yi04NjRhLTJjYzQxMThlOTFmYQ==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/ed3125dd-c587-477d-8a55-8ad1ecb90ff0", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvZWQzMTI1ZGQtYzU4Ny00NzdkLThhNTUtOGFkMWVjYjkwZmYw", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "5beac4eb-12da-4484-a718-e053a210a41f" + "5ec0ca0b-3753-4d03-9668-17b7c879aa13" ], "Request-Id": [ - "5beac4eb-12da-4484-a718-e053a210a41f" + "5ec0ca0b-3753-4d03-9668-17b7c879aa13" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,7 +222,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:41 GMT" + "Tue, 29 Oct 2019 13:19:29 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/UpdateSubList.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/UpdateSubList.json index 4003e66db503..0fae74c7d534 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/UpdateSubList.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelClosedListsTests/UpdateSubList.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3Rz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"subLists\": [\r\n {\r\n \"canonicalForm\": \"New York\",\r\n \"list\": [\r\n \"NY\",\r\n \"New York\"\r\n ]\r\n },\r\n {\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\",\r\n \"Washington\"\r\n ]\r\n },\r\n {\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"California\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n }\r\n ],\r\n \"name\": \"States\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/01890b24-025e-4e7c-8517-1cb6b1dd028b" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/19e9874f-04dd-4d4c-895e-73d5c93051bf" ], "Apim-Request-Id": [ - "6f644875-793d-48cf-983b-81f7bf812b9e" + "20fb8d6c-7aa5-43b9-994b-364e001117df" ], "Request-Id": [ - "6f644875-793d-48cf-983b-81f7bf812b9e" + "20fb8d6c-7aa5-43b9-994b-364e001117df" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/01890b24-025e-4e7c-8517-1cb6b1dd028b" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/19e9874f-04dd-4d4c-895e-73d5c93051bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:47 GMT" + "Tue, 29 Oct 2019 13:19:25 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"01890b24-025e-4e7c-8517-1cb6b1dd028b\"", + "ResponseBody": "\"19e9874f-04dd-4d4c-895e-73d5c93051bf\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/01890b24-025e-4e7c-8517-1cb6b1dd028b", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzLzAxODkwYjI0LTAyNWUtNGU3Yy04NTE3LTFjYjZiMWRkMDI4Yg==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/19e9874f-04dd-4d4c-895e-73d5c93051bf", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvMTllOTg3NGYtMDRkZC00ZDRjLTg5NWUtNzNkNWM5MzA1MWJm", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "25ede790-360b-49c3-9e7e-bb6a161cd047" + "d8a7be29-7098-4955-a7a6-53cfde1dca00" ], "Request-Id": [ - "25ede790-360b-49c3-9e7e-bb6a161cd047" + "d8a7be29-7098-4955-a7a6-53cfde1dca00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,32 +108,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:47 GMT" + "Tue, 29 Oct 2019 13:19:25 GMT" ], "Content-Length": [ - "333" + "336" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"01890b24-025e-4e7c-8517-1cb6b1dd028b\",\r\n \"name\": \"States\",\r\n \"typeId\": 5,\r\n \"readableType\": \"Closed List Entity Extractor\",\r\n \"subLists\": [\r\n {\r\n \"id\": 93255983,\r\n \"canonicalForm\": \"New York\",\r\n \"list\": [\r\n \"NY\"\r\n ]\r\n },\r\n {\r\n \"id\": 93255984,\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\"\r\n ]\r\n },\r\n {\r\n \"id\": 93255985,\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n }\r\n ],\r\n \"roles\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"19e9874f-04dd-4d4c-895e-73d5c93051bf\",\r\n \"name\": \"States\",\r\n \"typeId\": 5,\r\n \"readableType\": \"Closed List Entity Extractor\",\r\n \"subLists\": [\r\n {\r\n \"id\": 102916849,\r\n \"canonicalForm\": \"New York\",\r\n \"list\": [\r\n \"NY\"\r\n ]\r\n },\r\n {\r\n \"id\": 102916850,\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\"\r\n ]\r\n },\r\n {\r\n \"id\": 102916851,\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n }\r\n ],\r\n \"roles\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/01890b24-025e-4e7c-8517-1cb6b1dd028b", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzLzAxODkwYjI0LTAyNWUtNGU3Yy04NTE3LTFjYjZiMWRkMDI4Yg==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/19e9874f-04dd-4d4c-895e-73d5c93051bf", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvMTllOTg3NGYtMDRkZC00ZDRjLTg5NWUtNzNkNWM5MzA1MWJm", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "c618b856-631f-448d-8699-4208c13535ac" + "198396c0-7829-4ac8-b9f2-4c6b17cc50ac" ], "Request-Id": [ - "c618b856-631f-448d-8699-4208c13535ac" + "198396c0-7829-4ac8-b9f2-4c6b17cc50ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,32 +162,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:48 GMT" + "Tue, 29 Oct 2019 13:19:26 GMT" ], "Content-Length": [ - "353" + "356" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"01890b24-025e-4e7c-8517-1cb6b1dd028b\",\r\n \"name\": \"States\",\r\n \"typeId\": 5,\r\n \"readableType\": \"Closed List Entity Extractor\",\r\n \"subLists\": [\r\n {\r\n \"id\": 93255983,\r\n \"canonicalForm\": \"New Yorkers\",\r\n \"list\": [\r\n \"NYC\",\r\n \"NY\",\r\n \"New York\"\r\n ]\r\n },\r\n {\r\n \"id\": 93255984,\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\"\r\n ]\r\n },\r\n {\r\n \"id\": 93255985,\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n }\r\n ],\r\n \"roles\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"19e9874f-04dd-4d4c-895e-73d5c93051bf\",\r\n \"name\": \"States\",\r\n \"typeId\": 5,\r\n \"readableType\": \"Closed List Entity Extractor\",\r\n \"subLists\": [\r\n {\r\n \"id\": 102916849,\r\n \"canonicalForm\": \"New Yorkers\",\r\n \"list\": [\r\n \"NYC\",\r\n \"NY\",\r\n \"New York\"\r\n ]\r\n },\r\n {\r\n \"id\": 102916850,\r\n \"canonicalForm\": \"Washington\",\r\n \"list\": [\r\n \"WA\"\r\n ]\r\n },\r\n {\r\n \"id\": 102916851,\r\n \"canonicalForm\": \"California\",\r\n \"list\": [\r\n \"CA\",\r\n \"Calif.\",\r\n \"Cal.\"\r\n ]\r\n }\r\n ],\r\n \"roles\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/01890b24-025e-4e7c-8517-1cb6b1dd028b/sublists/93255983", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzLzAxODkwYjI0LTAyNWUtNGU3Yy04NTE3LTFjYjZiMWRkMDI4Yi9zdWJsaXN0cy85MzI1NTk4Mw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/19e9874f-04dd-4d4c-895e-73d5c93051bf/sublists/102916849", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvMTllOTg3NGYtMDRkZC00ZDRjLTg5NWUtNzNkNWM5MzA1MWJmL3N1Ymxpc3RzLzEwMjkxNjg0OQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"canonicalForm\": \"New Yorkers\",\r\n \"list\": [\r\n \"NYC\",\r\n \"NY\",\r\n \"New York\"\r\n ]\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "e2a6ba5b-eb0b-49b0-809e-7b18eba2d5da" + "bf68f488-ccc3-40b7-8855-8c33712511cc" ], "Request-Id": [ - "e2a6ba5b-eb0b-49b0-809e-7b18eba2d5da" + "bf68f488-ccc3-40b7-8855-8c33712511cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,7 +222,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:48 GMT" + "Tue, 29 Oct 2019 13:19:26 GMT" ], "Content-Length": [ "51" @@ -235,19 +235,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/closedlists/01890b24-025e-4e7c-8517-1cb6b1dd028b", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb3NlZGxpc3RzLzAxODkwYjI0LTAyNWUtNGU3Yy04NTE3LTFjYjZiMWRkMDI4Yg==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/closedlists/19e9874f-04dd-4d4c-895e-73d5c93051bf", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvc2VkbGlzdHMvMTllOTg3NGYtMDRkZC00ZDRjLTg5NWUtNzNkNWM5MzA1MWJm", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -258,10 +258,10 @@ "no-cache" ], "Apim-Request-Id": [ - "c966876e-563d-4745-a2e2-7bdb52987489" + "81d2f089-5738-4f4d-9800-b08e58c9ee2f" ], "Request-Id": [ - "c966876e-563d-4745-a2e2-7bdb52987489" + "81d2f089-5738-4f4d-9800-b08e58c9ee2f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -276,7 +276,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:48 GMT" + "Tue, 29 Oct 2019 13:19:26 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelIntentsTests/AddIntent.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelIntentsTests/AddIntent.json index c35c25191f19..95427077c20e 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelIntentsTests/AddIntent.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelIntentsTests/AddIntent.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2ludGVudHM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"TestIntent\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents/b0ff6f83-b58b-4963-87e7-5260c02bd996" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/d38af7af-6082-46aa-b3c4-d8977b6aa0e4" ], "Apim-Request-Id": [ - "0f129439-16c9-4ffa-ac1b-dd1215eef42b" + "c0e54100-0dca-4b99-a66f-334fbf5c715e" ], "Request-Id": [ - "0f129439-16c9-4ffa-ac1b-dd1215eef42b" + "c0e54100-0dca-4b99-a66f-334fbf5c715e" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents/b0ff6f83-b58b-4963-87e7-5260c02bd996" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/d38af7af-6082-46aa-b3c4-d8977b6aa0e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:17 GMT" + "Tue, 29 Oct 2019 13:19:39 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"b0ff6f83-b58b-4963-87e7-5260c02bd996\"", + "ResponseBody": "\"d38af7af-6082-46aa-b3c4-d8977b6aa0e4\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2ludGVudHM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "1fd2962f-16e1-4eb4-91ea-7f32a2c2058e" + "b33d81c7-f4b8-4188-bd7b-f1b8cee8eb75" ], "Request-Id": [ - "1fd2962f-16e1-4eb4-91ea-7f32a2c2058e" + "b33d81c7-f4b8-4188-bd7b-f1b8cee8eb75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,32 +108,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:18 GMT" + "Tue, 29 Oct 2019 13:19:40 GMT" ], "Content-Length": [ - "325" + "637" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"ac04c5c6-2c0c-4af8-ba3f-5db090fa7de5\",\r\n \"name\": \"None\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n },\r\n {\r\n \"id\": \"eee1436a-701d-46c4-9e4b-6de52d641513\",\r\n \"name\": \"sfds\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n },\r\n {\r\n \"id\": \"b0ff6f83-b58b-4963-87e7-5260c02bd996\",\r\n \"name\": \"TestIntent\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"1f65d5ab-3daf-44f5-af17-7cd6f3f4dcce\",\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"AcceptEventEntry\"\r\n },\r\n {\r\n \"id\": \"0da76691-d27b-435a-8318-062e6338f5e3\",\r\n \"name\": \"Communication.AddContact\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddContact\"\r\n },\r\n {\r\n \"id\": \"731e7ac1-b1d4-4e4e-bc1b-d79f67e2b890\",\r\n \"name\": \"None\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n },\r\n {\r\n \"id\": \"d38af7af-6082-46aa-b3c4-d8977b6aa0e4\",\r\n \"name\": \"TestIntent\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents/b0ff6f83-b58b-4963-87e7-5260c02bd996?deleteUtterances=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2ludGVudHMvYjBmZjZmODMtYjU4Yi00OTYzLTg3ZTctNTI2MGMwMmJkOTk2P2RlbGV0ZVV0dGVyYW5jZXM9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/d38af7af-6082-46aa-b3c4-d8977b6aa0e4?deleteUtterances=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cy9kMzhhZjdhZi02MDgyLTQ2YWEtYjNjNC1kODk3N2I2YWEwZTQ/ZGVsZXRlVXR0ZXJhbmNlcz1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "1c5d5c05-1db5-4fd6-9842-5a404a618c22" + "cfcd002f-8502-49b4-b2d3-af2c2c93341f" ], "Request-Id": [ - "1c5d5c05-1db5-4fd6-9842-5a404a618c22" + "cfcd002f-8502-49b4-b2d3-af2c2c93341f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:18 GMT" + "Tue, 29 Oct 2019 13:19:40 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelIntentsTests/DeleteIntent.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelIntentsTests/DeleteIntent.json index 399ab374d29d..6ec447bb7387 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelIntentsTests/DeleteIntent.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelIntentsTests/DeleteIntent.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2ludGVudHM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"TestIntent\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents/2d731599-df46-4735-a27b-c822db509c7b" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/3992050d-4bb1-44dc-ba33-e8cc2a267ea3" ], "Apim-Request-Id": [ - "0e09cbbb-ea52-4537-9939-31c4f575d627" + "eafe1c35-59f3-4292-aeec-6e0b0bccccbf" ], "Request-Id": [ - "0e09cbbb-ea52-4537-9939-31c4f575d627" + "eafe1c35-59f3-4292-aeec-6e0b0bccccbf" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents/2d731599-df46-4735-a27b-c822db509c7b" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/3992050d-4bb1-44dc-ba33-e8cc2a267ea3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:11 GMT" + "Tue, 29 Oct 2019 13:19:46 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"2d731599-df46-4735-a27b-c822db509c7b\"", + "ResponseBody": "\"3992050d-4bb1-44dc-ba33-e8cc2a267ea3\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2ludGVudHM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "4aab0188-1d81-41cc-9280-d2a3d27aaad1" + "e7af2ce0-0784-40db-8fb1-669c76729126" ], "Request-Id": [ - "4aab0188-1d81-41cc-9280-d2a3d27aaad1" + "e7af2ce0-0784-40db-8fb1-669c76729126" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,32 +108,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:11 GMT" + "Tue, 29 Oct 2019 13:19:46 GMT" ], "Content-Length": [ - "325" + "637" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"ac04c5c6-2c0c-4af8-ba3f-5db090fa7de5\",\r\n \"name\": \"None\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n },\r\n {\r\n \"id\": \"eee1436a-701d-46c4-9e4b-6de52d641513\",\r\n \"name\": \"sfds\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n },\r\n {\r\n \"id\": \"2d731599-df46-4735-a27b-c822db509c7b\",\r\n \"name\": \"TestIntent\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"1f65d5ab-3daf-44f5-af17-7cd6f3f4dcce\",\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"AcceptEventEntry\"\r\n },\r\n {\r\n \"id\": \"0da76691-d27b-435a-8318-062e6338f5e3\",\r\n \"name\": \"Communication.AddContact\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddContact\"\r\n },\r\n {\r\n \"id\": \"731e7ac1-b1d4-4e4e-bc1b-d79f67e2b890\",\r\n \"name\": \"None\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n },\r\n {\r\n \"id\": \"3992050d-4bb1-44dc-ba33-e8cc2a267ea3\",\r\n \"name\": \"TestIntent\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2ludGVudHM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "512c0215-8a27-4971-8dfb-fb513c051cc8" + "821c5521-8be9-4e2a-b638-d5dbf92b1dc5" ], "Request-Id": [ - "512c0215-8a27-4971-8dfb-fb513c051cc8" + "821c5521-8be9-4e2a-b638-d5dbf92b1dc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,32 +162,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:13 GMT" + "Tue, 29 Oct 2019 13:19:47 GMT" ], "Content-Length": [ - "213" + "525" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"ac04c5c6-2c0c-4af8-ba3f-5db090fa7de5\",\r\n \"name\": \"None\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n },\r\n {\r\n \"id\": \"eee1436a-701d-46c4-9e4b-6de52d641513\",\r\n \"name\": \"sfds\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"1f65d5ab-3daf-44f5-af17-7cd6f3f4dcce\",\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"AcceptEventEntry\"\r\n },\r\n {\r\n \"id\": \"0da76691-d27b-435a-8318-062e6338f5e3\",\r\n \"name\": \"Communication.AddContact\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddContact\"\r\n },\r\n {\r\n \"id\": \"731e7ac1-b1d4-4e4e-bc1b-d79f67e2b890\",\r\n \"name\": \"None\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents/2d731599-df46-4735-a27b-c822db509c7b?deleteUtterances=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2ludGVudHMvMmQ3MzE1OTktZGY0Ni00NzM1LWEyN2ItYzgyMmRiNTA5YzdiP2RlbGV0ZVV0dGVyYW5jZXM9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/3992050d-4bb1-44dc-ba33-e8cc2a267ea3?deleteUtterances=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cy8zOTkyMDUwZC00YmIxLTQ0ZGMtYmEzMy1lOGNjMmEyNjdlYTM/ZGVsZXRlVXR0ZXJhbmNlcz1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -198,10 +198,10 @@ "no-cache" ], "Apim-Request-Id": [ - "8baa7680-bb5c-4f8a-a611-54c3d1e0aafa" + "a76a2023-e15e-4007-af28-ab53fdcecbdf" ], "Request-Id": [ - "8baa7680-bb5c-4f8a-a611-54c3d1e0aafa" + "a76a2023-e15e-4007-af28-ab53fdcecbdf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -216,7 +216,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:13 GMT" + "Tue, 29 Oct 2019 13:19:46 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelIntentsTests/GetIntent.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelIntentsTests/GetIntent.json index 7d9b9482a1a1..739bd7d54199 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelIntentsTests/GetIntent.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelIntentsTests/GetIntent.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2ludGVudHM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"TestIntent\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents/61e3e4d5-2fd4-4c1a-9a85-f2d0fc9f0905" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/40d82c6c-2807-4904-b746-0ff1ef03af6a" ], "Apim-Request-Id": [ - "542f0406-6fdd-4847-a719-fd4df6539985" + "bfbc9550-659d-47a0-ba42-87bb0f2f95ea" ], "Request-Id": [ - "542f0406-6fdd-4847-a719-fd4df6539985" + "bfbc9550-659d-47a0-ba42-87bb0f2f95ea" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents/61e3e4d5-2fd4-4c1a-9a85-f2d0fc9f0905" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/40d82c6c-2807-4904-b746-0ff1ef03af6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:14 GMT" + "Tue, 29 Oct 2019 13:19:43 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"61e3e4d5-2fd4-4c1a-9a85-f2d0fc9f0905\"", + "ResponseBody": "\"40d82c6c-2807-4904-b746-0ff1ef03af6a\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents/61e3e4d5-2fd4-4c1a-9a85-f2d0fc9f0905", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2ludGVudHMvNjFlM2U0ZDUtMmZkNC00YzFhLTlhODUtZjJkMGZjOWYwOTA1", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/40d82c6c-2807-4904-b746-0ff1ef03af6a", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cy80MGQ4MmM2Yy0yODA3LTQ5MDQtYjc0Ni0wZmYxZWYwM2FmNmE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "7486241d-ff0c-469c-bc41-0994e2005853" + "5e32b2f7-43bc-4934-98da-d58f7c9b7aee" ], "Request-Id": [ - "7486241d-ff0c-469c-bc41-0994e2005853" + "5e32b2f7-43bc-4934-98da-d58f7c9b7aee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:14 GMT" + "Tue, 29 Oct 2019 13:19:43 GMT" ], "Content-Length": [ "111" @@ -117,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"61e3e4d5-2fd4-4c1a-9a85-f2d0fc9f0905\",\r\n \"name\": \"TestIntent\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"40d82c6c-2807-4904-b746-0ff1ef03af6a\",\r\n \"name\": \"TestIntent\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents/61e3e4d5-2fd4-4c1a-9a85-f2d0fc9f0905?deleteUtterances=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2ludGVudHMvNjFlM2U0ZDUtMmZkNC00YzFhLTlhODUtZjJkMGZjOWYwOTA1P2RlbGV0ZVV0dGVyYW5jZXM9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/40d82c6c-2807-4904-b746-0ff1ef03af6a?deleteUtterances=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cy80MGQ4MmM2Yy0yODA3LTQ5MDQtYjc0Ni0wZmYxZWYwM2FmNmE/ZGVsZXRlVXR0ZXJhbmNlcz1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "c4e908dd-98a3-498b-aba3-5c724889d551" + "2c36ab0a-c694-491a-a73f-1c3a4d5aedd3" ], "Request-Id": [ - "c4e908dd-98a3-498b-aba3-5c724889d551" + "2c36ab0a-c694-491a-a73f-1c3a4d5aedd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:15 GMT" + "Tue, 29 Oct 2019 13:19:44 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelIntentsTests/ListIntents.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelIntentsTests/ListIntents.json index 568a99e82c09..a6651ff49473 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelIntentsTests/ListIntents.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelIntentsTests/ListIntents.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2ludGVudHM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -24,10 +24,10 @@ "no-cache" ], "Apim-Request-Id": [ - "72172836-91d3-4431-bba3-b2479f9d0c1e" + "4020b2b6-d224-478f-8b81-2680feffdb64" ], "Request-Id": [ - "72172836-91d3-4431-bba3-b2479f9d0c1e" + "4020b2b6-d224-478f-8b81-2680feffdb64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -42,16 +42,16 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:13 GMT" + "Tue, 29 Oct 2019 13:19:40 GMT" ], "Content-Length": [ - "213" + "525" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"ac04c5c6-2c0c-4af8-ba3f-5db090fa7de5\",\r\n \"name\": \"None\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n },\r\n {\r\n \"id\": \"eee1436a-701d-46c4-9e4b-6de52d641513\",\r\n \"name\": \"sfds\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"1f65d5ab-3daf-44f5-af17-7cd6f3f4dcce\",\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"AcceptEventEntry\"\r\n },\r\n {\r\n \"id\": \"0da76691-d27b-435a-8318-062e6338f5e3\",\r\n \"name\": \"Communication.AddContact\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddContact\"\r\n },\r\n {\r\n \"id\": \"731e7ac1-b1d4-4e4e-bc1b-d79f67e2b890\",\r\n \"name\": \"None\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n }\r\n]", "StatusCode": 200 } ], diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelIntentsTests/UpdateIntent.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelIntentsTests/UpdateIntent.json index 8d60b74ac852..be12c36bb904 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelIntentsTests/UpdateIntent.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelIntentsTests/UpdateIntent.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2ludGVudHM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"TestIntent\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents/4b322ee2-2096-405e-b990-e6db5b20504b" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/be80611c-b8b3-4b91-b06e-3c6870ba6e7d" ], "Apim-Request-Id": [ - "6199eec4-297f-40f1-8c9e-958b912a2a3e" + "d0a56b4c-cba3-468f-b165-c6767d428143" ], "Request-Id": [ - "6199eec4-297f-40f1-8c9e-958b912a2a3e" + "d0a56b4c-cba3-468f-b165-c6767d428143" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents/4b322ee2-2096-405e-b990-e6db5b20504b" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/be80611c-b8b3-4b91-b06e-3c6870ba6e7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:16 GMT" + "Tue, 29 Oct 2019 13:19:41 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"4b322ee2-2096-405e-b990-e6db5b20504b\"", + "ResponseBody": "\"be80611c-b8b3-4b91-b06e-3c6870ba6e7d\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents/4b322ee2-2096-405e-b990-e6db5b20504b", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2ludGVudHMvNGIzMjJlZTItMjA5Ni00MDVlLWI5OTAtZTZkYjViMjA1MDRi", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/be80611c-b8b3-4b91-b06e-3c6870ba6e7d", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cy9iZTgwNjExYy1iOGIzLTRiOTEtYjA2ZS0zYzY4NzBiYTZlN2Q=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "79957365-7638-49fa-b85d-702b91f8ecf7" + "c26d0652-64d6-498b-833c-dc1fdd659c2d" ], "Request-Id": [ - "79957365-7638-49fa-b85d-702b91f8ecf7" + "c26d0652-64d6-498b-833c-dc1fdd659c2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:16 GMT" + "Tue, 29 Oct 2019 13:19:41 GMT" ], "Content-Length": [ "111" @@ -117,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"4b322ee2-2096-405e-b990-e6db5b20504b\",\r\n \"name\": \"TestIntent\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"be80611c-b8b3-4b91-b06e-3c6870ba6e7d\",\r\n \"name\": \"TestIntent\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents/4b322ee2-2096-405e-b990-e6db5b20504b", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2ludGVudHMvNGIzMjJlZTItMjA5Ni00MDVlLWI5OTAtZTZkYjViMjA1MDRi", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/be80611c-b8b3-4b91-b06e-3c6870ba6e7d", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cy9iZTgwNjExYy1iOGIzLTRiOTEtYjA2ZS0zYzY4NzBiYTZlN2Q=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "4f8545fb-748d-4e11-af6f-8ec6ef205eae" + "84024ad3-ca42-40bd-bf33-c2c20bb8052a" ], "Request-Id": [ - "4f8545fb-748d-4e11-af6f-8ec6ef205eae" + "84024ad3-ca42-40bd-bf33-c2c20bb8052a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:16 GMT" + "Tue, 29 Oct 2019 13:19:42 GMT" ], "Content-Length": [ "111" @@ -171,23 +171,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"4b322ee2-2096-405e-b990-e6db5b20504b\",\r\n \"name\": \"UpdateTest\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"be80611c-b8b3-4b91-b06e-3c6870ba6e7d\",\r\n \"name\": \"UpdateTest\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents/4b322ee2-2096-405e-b990-e6db5b20504b", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2ludGVudHMvNGIzMjJlZTItMjA5Ni00MDVlLWI5OTAtZTZkYjViMjA1MDRi", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/be80611c-b8b3-4b91-b06e-3c6870ba6e7d", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cy9iZTgwNjExYy1iOGIzLTRiOTEtYjA2ZS0zYzY4NzBiYTZlN2Q=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"UpdateTest\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "26135b3f-b24d-4238-9528-18e525961f0f" + "ad59b2f0-28c2-4da2-87c3-13147f444b6f" ], "Request-Id": [ - "26135b3f-b24d-4238-9528-18e525961f0f" + "ad59b2f0-28c2-4da2-87c3-13147f444b6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,7 +222,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:16 GMT" + "Tue, 29 Oct 2019 13:19:42 GMT" ], "Content-Length": [ "51" @@ -235,19 +235,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents/4b322ee2-2096-405e-b990-e6db5b20504b?deleteUtterances=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2ludGVudHMvNGIzMjJlZTItMjA5Ni00MDVlLWI5OTAtZTZkYjViMjA1MDRiP2RlbGV0ZVV0dGVyYW5jZXM9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/be80611c-b8b3-4b91-b06e-3c6870ba6e7d?deleteUtterances=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cy9iZTgwNjExYy1iOGIzLTRiOTEtYjA2ZS0zYzY4NzBiYTZlN2Q/ZGVsZXRlVXR0ZXJhbmNlcz1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -258,10 +258,10 @@ "no-cache" ], "Apim-Request-Id": [ - "86a060a6-28a1-48db-844b-2322beed3efa" + "1493e211-0d79-4c29-b4c8-aebae66a2e3b" ], "Request-Id": [ - "86a060a6-28a1-48db-844b-2322beed3efa" + "1493e211-0d79-4c29-b4c8-aebae66a2e3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -276,7 +276,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:17 GMT" + "Tue, 29 Oct 2019 13:19:43 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/AddEntity.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/AddEntity.json index 4bb643b9f0b8..5227b5e56b93 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/AddEntity.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/AddEntity.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"New Entity Test\",\r\n \"explicitList\": [\r\n \"item\"\r\n ]\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/2676173d-13fe-495d-9ed7-9b5ecd77a654" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/85f8a382-ffca-4660-909d-04ccdbfd857a" ], "Apim-Request-Id": [ - "669d84d0-4b4f-4b4a-bb93-b0f3153b5d94" + "10aebe27-de30-43b4-8638-5055cb60fabc" ], "Request-Id": [ - "669d84d0-4b4f-4b4a-bb93-b0f3153b5d94" + "10aebe27-de30-43b4-8638-5055cb60fabc" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/2676173d-13fe-495d-9ed7-9b5ecd77a654" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/85f8a382-ffca-4660-909d-04ccdbfd857a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:21 GMT" + "Tue, 29 Oct 2019 13:19:56 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"2676173d-13fe-495d-9ed7-9b5ecd77a654\"", + "ResponseBody": "\"85f8a382-ffca-4660-909d-04ccdbfd857a\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/2676173d-13fe-495d-9ed7-9b5ecd77a654", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy8yNjc2MTczZC0xM2ZlLTQ5NWQtOWVkNy05YjVlY2Q3N2E2NTQ=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/85f8a382-ffca-4660-909d-04ccdbfd857a", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzg1ZjhhMzgyLWZmY2EtNDY2MC05MDlkLTA0Y2NkYmZkODU3YQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "96c78133-c779-4768-8ac2-bef0e2c24366" + "d42a058e-3478-410d-ab61-0669e9a8606e" ], "Request-Id": [ - "96c78133-c779-4768-8ac2-bef0e2c24366" + "d42a058e-3478-410d-ab61-0669e9a8606e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:21 GMT" + "Tue, 29 Oct 2019 13:19:56 GMT" ], "Content-Length": [ "194" @@ -117,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"2676173d-13fe-495d-9ed7-9b5ecd77a654\",\r\n \"name\": \"New Entity Test\",\r\n \"typeId\": 7,\r\n \"readableType\": \"Pattern.Any Entity Extractor\",\r\n \"explicitList\": [\r\n {\r\n \"id\": 13767,\r\n \"explicitListItem\": \"item\"\r\n }\r\n ],\r\n \"roles\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"85f8a382-ffca-4660-909d-04ccdbfd857a\",\r\n \"name\": \"New Entity Test\",\r\n \"typeId\": 7,\r\n \"readableType\": \"Pattern.Any Entity Extractor\",\r\n \"explicitList\": [\r\n {\r\n \"id\": 14848,\r\n \"explicitListItem\": \"item\"\r\n }\r\n ],\r\n \"roles\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/2676173d-13fe-495d-9ed7-9b5ecd77a654", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy8yNjc2MTczZC0xM2ZlLTQ5NWQtOWVkNy05YjVlY2Q3N2E2NTQ=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/85f8a382-ffca-4660-909d-04ccdbfd857a", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzg1ZjhhMzgyLWZmY2EtNDY2MC05MDlkLTA0Y2NkYmZkODU3YQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "27e018b0-4df4-4e5f-9abf-17d5a1ae9588" + "d4f84d6c-6b53-480b-a596-fa9ddd4574cc" ], "Request-Id": [ - "27e018b0-4df4-4e5f-9abf-17d5a1ae9588" + "d4f84d6c-6b53-480b-a596-fa9ddd4574cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:21 GMT" + "Tue, 29 Oct 2019 13:19:56 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/AddExplicitListItem.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/AddExplicitListItem.json index 833f46a4438a..1a557b3ad6df 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/AddExplicitListItem.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/AddExplicitListItem.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"New Entity Test\",\r\n \"explicitList\": [\r\n \"item1\"\r\n ]\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/541d0d98-834d-457c-b0e3-d9424923c386" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/9f44957a-a49a-4e6b-a072-dd73b0909dbd" ], "Apim-Request-Id": [ - "c8a352a8-861d-4b8d-93de-376b1b6cbcf7" + "cc4799a2-7f97-48b1-952a-0c0efb20b637" ], "Request-Id": [ - "c8a352a8-861d-4b8d-93de-376b1b6cbcf7" + "cc4799a2-7f97-48b1-952a-0c0efb20b637" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/541d0d98-834d-457c-b0e3-d9424923c386" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/9f44957a-a49a-4e6b-a072-dd73b0909dbd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:19 GMT" + "Tue, 29 Oct 2019 13:19:51 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"541d0d98-834d-457c-b0e3-d9424923c386\"", + "ResponseBody": "\"9f44957a-a49a-4e6b-a072-dd73b0909dbd\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/541d0d98-834d-457c-b0e3-d9424923c386/explicitlist", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy81NDFkMGQ5OC04MzRkLTQ1N2MtYjBlMy1kOTQyNDkyM2MzODYvZXhwbGljaXRsaXN0", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/9f44957a-a49a-4e6b-a072-dd73b0909dbd/explicitlist", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzlmNDQ5NTdhLWE0OWEtNGU2Yi1hMDcyLWRkNzNiMDkwOWRiZC9leHBsaWNpdGxpc3Q=", "RequestMethod": "POST", "RequestBody": "{\r\n \"explicitListItem\": \"item2\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/541d0d98-834d-457c-b0e3-d9424923c386/explicitlist/13766" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/9f44957a-a49a-4e6b-a072-dd73b0909dbd/explicitlist/14846" ], "Apim-Request-Id": [ - "2bc5ab3a-805f-4dc9-82b7-978fc621d114" + "b2ead431-b02d-4d0c-ae6f-c38e32267241" ], "Request-Id": [ - "2bc5ab3a-805f-4dc9-82b7-978fc621d114" + "b2ead431-b02d-4d0c-ae6f-c38e32267241" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/541d0d98-834d-457c-b0e3-d9424923c386/explicitlist/13766" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/9f44957a-a49a-4e6b-a072-dd73b0909dbd/explicitlist/14846" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:19 GMT" + "Tue, 29 Oct 2019 13:19:52 GMT" ], "Content-Length": [ "5" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "13766", + "ResponseBody": "14846", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/541d0d98-834d-457c-b0e3-d9424923c386/explicitlist/13766", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy81NDFkMGQ5OC04MzRkLTQ1N2MtYjBlMy1kOTQyNDkyM2MzODYvZXhwbGljaXRsaXN0LzEzNzY2", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/9f44957a-a49a-4e6b-a072-dd73b0909dbd/explicitlist/14846", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzlmNDQ5NTdhLWE0OWEtNGU2Yi1hMDcyLWRkNzNiMDkwOWRiZC9leHBsaWNpdGxpc3QvMTQ4NDY=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "a494679c-0dea-4531-9b05-24d79794a4a7" + "71279ba8-b695-4e4e-b672-004837ff9c67" ], "Request-Id": [ - "a494679c-0dea-4531-9b05-24d79794a4a7" + "71279ba8-b695-4e4e-b672-004837ff9c67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:20 GMT" + "Tue, 29 Oct 2019 13:19:52 GMT" ], "Content-Length": [ "39" @@ -183,23 +183,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": 13766,\r\n \"explicitListItem\": \"item2\"\r\n}", + "ResponseBody": "{\r\n \"id\": 14846,\r\n \"explicitListItem\": \"item2\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/541d0d98-834d-457c-b0e3-d9424923c386", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy81NDFkMGQ5OC04MzRkLTQ1N2MtYjBlMy1kOTQyNDkyM2MzODY=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/9f44957a-a49a-4e6b-a072-dd73b0909dbd", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzlmNDQ5NTdhLWE0OWEtNGU2Yi1hMDcyLWRkNzNiMDkwOWRiZA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "1e813719-82f2-458a-a05b-02308e0c7fa1" + "42af90a6-bf66-466a-a033-91373b15df7c" ], "Request-Id": [ - "1e813719-82f2-458a-a05b-02308e0c7fa1" + "42af90a6-bf66-466a-a033-91373b15df7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:20 GMT" + "Tue, 29 Oct 2019 13:19:52 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/DeleteEntity.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/DeleteEntity.json index 87b5b0ad6e97..e66b6cf308c1 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/DeleteEntity.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/DeleteEntity.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"New Entity Test\",\r\n \"explicitList\": [\r\n \"item\"\r\n ]\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/d65511a1-a4e5-4db3-9e00-83e393b5f2b7" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/37c63ef9-a31f-469b-86ce-6779b6c0dd73" ], "Apim-Request-Id": [ - "27c1ff9b-dd78-4790-9dbe-c53dee4cc2cb" + "a6c86dd7-0695-4618-b85f-f49a0fb01b11" ], "Request-Id": [ - "27c1ff9b-dd78-4790-9dbe-c53dee4cc2cb" + "a6c86dd7-0695-4618-b85f-f49a0fb01b11" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/d65511a1-a4e5-4db3-9e00-83e393b5f2b7" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/37c63ef9-a31f-469b-86ce-6779b6c0dd73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:25 GMT" + "Tue, 29 Oct 2019 13:19:59 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"d65511a1-a4e5-4db3-9e00-83e393b5f2b7\"", + "ResponseBody": "\"37c63ef9-a31f-469b-86ce-6779b6c0dd73\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/d65511a1-a4e5-4db3-9e00-83e393b5f2b7", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy9kNjU1MTFhMS1hNGU1LTRkYjMtOWUwMC04M2UzOTNiNWYyYjc=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/37c63ef9-a31f-469b-86ce-6779b6c0dd73", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzM3YzYzZWY5LWEzMWYtNDY5Yi04NmNlLTY3NzliNmMwZGQ3Mw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "38670386-c0d0-4fd3-bc97-f67131598787" + "04c2cdad-8046-4886-8d25-5ba99a075e73" ], "Request-Id": [ - "38670386-c0d0-4fd3-bc97-f67131598787" + "04c2cdad-8046-4886-8d25-5ba99a075e73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:25 GMT" + "Tue, 29 Oct 2019 13:20:00 GMT" ], "Content-Length": [ "51" @@ -121,19 +121,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcz9za2lwPTAmdGFrZT0xMDA=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzP3NraXA9MCZ0YWtlPTEwMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "42dfda15-0025-41d9-a0cf-db9d546e5d1a" + "21a3add9-f1b7-42f5-ad33-76917e50a7df" ], "Request-Id": [ - "42dfda15-0025-41d9-a0cf-db9d546e5d1a" + "21a3add9-f1b7-42f5-ad33-76917e50a7df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:26 GMT" + "Tue, 29 Oct 2019 13:20:00 GMT" ], "Content-Length": [ "2" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/DeleteExplicitListItem.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/DeleteExplicitListItem.json index f14226314d0d..d05e3e328371 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/DeleteExplicitListItem.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/DeleteExplicitListItem.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"New Entity Test\",\r\n \"explicitList\": []\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/71d86844-7655-449f-b76b-23e3eb2b898b" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/3b4fab01-00d3-41f8-abf7-65e8ebdf94ed" ], "Apim-Request-Id": [ - "48d45752-d5ff-4382-a731-579728200d5e" + "4337dc2a-4feb-4d31-b26e-a0666a136761" ], "Request-Id": [ - "48d45752-d5ff-4382-a731-579728200d5e" + "4337dc2a-4feb-4d31-b26e-a0666a136761" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/71d86844-7655-449f-b76b-23e3eb2b898b" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/3b4fab01-00d3-41f8-abf7-65e8ebdf94ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:31 GMT" + "Tue, 29 Oct 2019 13:19:47 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"71d86844-7655-449f-b76b-23e3eb2b898b\"", + "ResponseBody": "\"3b4fab01-00d3-41f8-abf7-65e8ebdf94ed\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/71d86844-7655-449f-b76b-23e3eb2b898b/explicitlist", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy83MWQ4Njg0NC03NjU1LTQ0OWYtYjc2Yi0yM2UzZWIyYjg5OGIvZXhwbGljaXRsaXN0", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/3b4fab01-00d3-41f8-abf7-65e8ebdf94ed/explicitlist", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzNiNGZhYjAxLTAwZDMtNDFmOC1hYmY3LTY1ZThlYmRmOTRlZC9leHBsaWNpdGxpc3Q=", "RequestMethod": "POST", "RequestBody": "{\r\n \"explicitListItem\": \"item\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/71d86844-7655-449f-b76b-23e3eb2b898b/explicitlist/13775" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/3b4fab01-00d3-41f8-abf7-65e8ebdf94ed/explicitlist/14842" ], "Apim-Request-Id": [ - "333bfbf3-afed-4822-b855-8be3423c2e2f" + "72d7caee-dc77-4ba1-84ff-5ec79224e974" ], "Request-Id": [ - "333bfbf3-afed-4822-b855-8be3423c2e2f" + "72d7caee-dc77-4ba1-84ff-5ec79224e974" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/71d86844-7655-449f-b76b-23e3eb2b898b/explicitlist/13775" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/3b4fab01-00d3-41f8-abf7-65e8ebdf94ed/explicitlist/14842" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:31 GMT" + "Tue, 29 Oct 2019 13:19:47 GMT" ], "Content-Length": [ "5" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "13775", + "ResponseBody": "14842", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/71d86844-7655-449f-b76b-23e3eb2b898b/explicitlist/13775", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy83MWQ4Njg0NC03NjU1LTQ0OWYtYjc2Yi0yM2UzZWIyYjg5OGIvZXhwbGljaXRsaXN0LzEzNzc1", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/3b4fab01-00d3-41f8-abf7-65e8ebdf94ed/explicitlist/14842", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzNiNGZhYjAxLTAwZDMtNDFmOC1hYmY3LTY1ZThlYmRmOTRlZC9leHBsaWNpdGxpc3QvMTQ4NDI=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "509510a8-7d01-4a51-a841-68d9272a34ec" + "6668b89b-11eb-46dc-a863-610914ec5aa7" ], "Request-Id": [ - "509510a8-7d01-4a51-a841-68d9272a34ec" + "6668b89b-11eb-46dc-a863-610914ec5aa7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:32 GMT" + "Tue, 29 Oct 2019 13:19:47 GMT" ], "Content-Length": [ "51" @@ -187,19 +187,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/71d86844-7655-449f-b76b-23e3eb2b898b/explicitlist", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy83MWQ4Njg0NC03NjU1LTQ0OWYtYjc2Yi0yM2UzZWIyYjg5OGIvZXhwbGljaXRsaXN0", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/3b4fab01-00d3-41f8-abf7-65e8ebdf94ed/explicitlist", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzNiNGZhYjAxLTAwZDMtNDFmOC1hYmY3LTY1ZThlYmRmOTRlZC9leHBsaWNpdGxpc3Q=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "b2f9c407-7b24-4405-9a53-b8deeb3bcdcd" + "0ba36aa3-7d04-4aa9-b808-ee3b67643b62" ], "Request-Id": [ - "b2f9c407-7b24-4405-9a53-b8deeb3bcdcd" + "0ba36aa3-7d04-4aa9-b808-ee3b67643b62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:32 GMT" + "Tue, 29 Oct 2019 13:19:49 GMT" ], "Content-Length": [ "2" @@ -241,19 +241,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/71d86844-7655-449f-b76b-23e3eb2b898b", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy83MWQ4Njg0NC03NjU1LTQ0OWYtYjc2Yi0yM2UzZWIyYjg5OGI=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/3b4fab01-00d3-41f8-abf7-65e8ebdf94ed", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzNiNGZhYjAxLTAwZDMtNDFmOC1hYmY3LTY1ZThlYmRmOTRlZA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -264,10 +264,10 @@ "no-cache" ], "Apim-Request-Id": [ - "e27d299b-5b22-4b8c-bb67-7745ccee6908" + "419e4be4-86a2-469b-8148-562a391be5b2" ], "Request-Id": [ - "e27d299b-5b22-4b8c-bb67-7745ccee6908" + "419e4be4-86a2-469b-8148-562a391be5b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -282,7 +282,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:32 GMT" + "Tue, 29 Oct 2019 13:19:49 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/GetEntity.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/GetEntity.json index 180ebb5d1e45..a8fe2f01820d 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/GetEntity.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/GetEntity.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"New Entity Test\",\r\n \"explicitList\": [\r\n \"item\"\r\n ]\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/407707bd-c044-437a-a7d7-b79b91026891" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/9348efd1-4a60-4886-beca-b26732297fea" ], "Apim-Request-Id": [ - "6765541f-41f5-4ad7-a886-7c56bb3d1b06" + "03c47759-28d5-40f3-9c83-cf1e21b5a789" ], "Request-Id": [ - "6765541f-41f5-4ad7-a886-7c56bb3d1b06" + "03c47759-28d5-40f3-9c83-cf1e21b5a789" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/407707bd-c044-437a-a7d7-b79b91026891" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/9348efd1-4a60-4886-beca-b26732297fea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:22 GMT" + "Tue, 29 Oct 2019 13:20:03 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"407707bd-c044-437a-a7d7-b79b91026891\"", + "ResponseBody": "\"9348efd1-4a60-4886-beca-b26732297fea\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/407707bd-c044-437a-a7d7-b79b91026891", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy80MDc3MDdiZC1jMDQ0LTQzN2EtYTdkNy1iNzliOTEwMjY4OTE=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/9348efd1-4a60-4886-beca-b26732297fea", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzkzNDhlZmQxLTRhNjAtNDg4Ni1iZWNhLWIyNjczMjI5N2ZlYQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "690d7f00-51e0-4f60-9246-2914936c79d4" + "19461841-8226-4806-abef-921a8e55e747" ], "Request-Id": [ - "690d7f00-51e0-4f60-9246-2914936c79d4" + "19461841-8226-4806-abef-921a8e55e747" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:22 GMT" + "Tue, 29 Oct 2019 13:20:04 GMT" ], "Content-Length": [ "194" @@ -117,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"407707bd-c044-437a-a7d7-b79b91026891\",\r\n \"name\": \"New Entity Test\",\r\n \"typeId\": 7,\r\n \"readableType\": \"Pattern.Any Entity Extractor\",\r\n \"explicitList\": [\r\n {\r\n \"id\": 13768,\r\n \"explicitListItem\": \"item\"\r\n }\r\n ],\r\n \"roles\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"9348efd1-4a60-4886-beca-b26732297fea\",\r\n \"name\": \"New Entity Test\",\r\n \"typeId\": 7,\r\n \"readableType\": \"Pattern.Any Entity Extractor\",\r\n \"explicitList\": [\r\n {\r\n \"id\": 14854,\r\n \"explicitListItem\": \"item\"\r\n }\r\n ],\r\n \"roles\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/407707bd-c044-437a-a7d7-b79b91026891", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy80MDc3MDdiZC1jMDQ0LTQzN2EtYTdkNy1iNzliOTEwMjY4OTE=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/9348efd1-4a60-4886-beca-b26732297fea", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzkzNDhlZmQxLTRhNjAtNDg4Ni1iZWNhLWIyNjczMjI5N2ZlYQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "aa9ca2ba-0460-4aba-b962-e380fdfd167e" + "eb81892d-b8f2-4ecc-aaa7-ed75fca0b9d9" ], "Request-Id": [ - "aa9ca2ba-0460-4aba-b962-e380fdfd167e" + "eb81892d-b8f2-4ecc-aaa7-ed75fca0b9d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:22 GMT" + "Tue, 29 Oct 2019 13:20:04 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/GetExplicitList.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/GetExplicitList.json index 22c0c2eb0c84..0d94177b6261 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/GetExplicitList.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/GetExplicitList.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"New Entity Test\",\r\n \"explicitList\": [\r\n \"item1\",\r\n \"item2\"\r\n ]\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/f2e8b061-635b-408f-a922-b7d06f65ef1f" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/a36d1c45-3cc1-4197-89d0-d224e9a48279" ], "Apim-Request-Id": [ - "95561647-1cbf-4434-bf7f-c288aa346b90" + "b927ab1a-59b8-4328-bb69-57c6c2551978" ], "Request-Id": [ - "95561647-1cbf-4434-bf7f-c288aa346b90" + "b927ab1a-59b8-4328-bb69-57c6c2551978" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/f2e8b061-635b-408f-a922-b7d06f65ef1f" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/a36d1c45-3cc1-4197-89d0-d224e9a48279" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:30 GMT" + "Tue, 29 Oct 2019 13:20:02 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"f2e8b061-635b-408f-a922-b7d06f65ef1f\"", + "ResponseBody": "\"a36d1c45-3cc1-4197-89d0-d224e9a48279\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/f2e8b061-635b-408f-a922-b7d06f65ef1f/explicitlist", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy9mMmU4YjA2MS02MzViLTQwOGYtYTkyMi1iN2QwNmY2NWVmMWYvZXhwbGljaXRsaXN0", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/a36d1c45-3cc1-4197-89d0-d224e9a48279/explicitlist", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzL2EzNmQxYzQ1LTNjYzEtNDE5Ny04OWQwLWQyMjRlOWE0ODI3OS9leHBsaWNpdGxpc3Q=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "3c25e533-b5a8-48c3-b44a-6a62e1517b4e" + "8586654b-853d-4901-9f9b-77ffc604da93" ], "Request-Id": [ - "3c25e533-b5a8-48c3-b44a-6a62e1517b4e" + "8586654b-853d-4901-9f9b-77ffc604da93" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:30 GMT" + "Tue, 29 Oct 2019 13:20:02 GMT" ], "Content-Length": [ "81" @@ -117,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": 13773,\r\n \"explicitListItem\": \"item1\"\r\n },\r\n {\r\n \"id\": 13774,\r\n \"explicitListItem\": \"item2\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": 14852,\r\n \"explicitListItem\": \"item1\"\r\n },\r\n {\r\n \"id\": 14853,\r\n \"explicitListItem\": \"item2\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/f2e8b061-635b-408f-a922-b7d06f65ef1f", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy9mMmU4YjA2MS02MzViLTQwOGYtYTkyMi1iN2QwNmY2NWVmMWY=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/a36d1c45-3cc1-4197-89d0-d224e9a48279", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzL2EzNmQxYzQ1LTNjYzEtNDE5Ny04OWQwLWQyMjRlOWE0ODI3OQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "46c55658-16fb-4ceb-adb6-da9519393b2c" + "93c0cdc3-993e-40e6-af92-88cbf37e9f46" ], "Request-Id": [ - "46c55658-16fb-4ceb-adb6-da9519393b2c" + "93c0cdc3-993e-40e6-af92-88cbf37e9f46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:30 GMT" + "Tue, 29 Oct 2019 13:20:03 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/GetExplicitListItem.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/GetExplicitListItem.json index 39250044a1d0..ccf2bb38c80c 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/GetExplicitListItem.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/GetExplicitListItem.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"New Entity Test\",\r\n \"explicitList\": []\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/ed42ad05-7a9a-4cde-a3ad-de44907ad96f" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/7121ab3a-1b92-43b7-915b-4c031d6f4d9c" ], "Apim-Request-Id": [ - "b01df3af-e147-4e15-a742-4d04f86cc245" + "362a18bf-93e9-4ae0-9513-3a24d7e36f36" ], "Request-Id": [ - "b01df3af-e147-4e15-a742-4d04f86cc245" + "362a18bf-93e9-4ae0-9513-3a24d7e36f36" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/ed42ad05-7a9a-4cde-a3ad-de44907ad96f" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/7121ab3a-1b92-43b7-915b-4c031d6f4d9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:27 GMT" + "Tue, 29 Oct 2019 13:19:57 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"ed42ad05-7a9a-4cde-a3ad-de44907ad96f\"", + "ResponseBody": "\"7121ab3a-1b92-43b7-915b-4c031d6f4d9c\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/ed42ad05-7a9a-4cde-a3ad-de44907ad96f/explicitlist", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy9lZDQyYWQwNS03YTlhLTRjZGUtYTNhZC1kZTQ0OTA3YWQ5NmYvZXhwbGljaXRsaXN0", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/7121ab3a-1b92-43b7-915b-4c031d6f4d9c/explicitlist", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzcxMjFhYjNhLTFiOTItNDNiNy05MTViLTRjMDMxZDZmNGQ5Yy9leHBsaWNpdGxpc3Q=", "RequestMethod": "POST", "RequestBody": "{\r\n \"explicitListItem\": \"item\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/ed42ad05-7a9a-4cde-a3ad-de44907ad96f/explicitlist/13771" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/7121ab3a-1b92-43b7-915b-4c031d6f4d9c/explicitlist/14849" ], "Apim-Request-Id": [ - "aeddf399-6e4d-4458-b8d5-55ffbe45a6d1" + "fcc72045-6d4b-46c5-82a5-1cf06e333ef4" ], "Request-Id": [ - "aeddf399-6e4d-4458-b8d5-55ffbe45a6d1" + "fcc72045-6d4b-46c5-82a5-1cf06e333ef4" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/ed42ad05-7a9a-4cde-a3ad-de44907ad96f/explicitlist/13771" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/7121ab3a-1b92-43b7-915b-4c031d6f4d9c/explicitlist/14849" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:27 GMT" + "Tue, 29 Oct 2019 13:19:57 GMT" ], "Content-Length": [ "5" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "13771", + "ResponseBody": "14849", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/ed42ad05-7a9a-4cde-a3ad-de44907ad96f/explicitlist/13771", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy9lZDQyYWQwNS03YTlhLTRjZGUtYTNhZC1kZTQ0OTA3YWQ5NmYvZXhwbGljaXRsaXN0LzEzNzcx", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/7121ab3a-1b92-43b7-915b-4c031d6f4d9c/explicitlist/14849", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzcxMjFhYjNhLTFiOTItNDNiNy05MTViLTRjMDMxZDZmNGQ5Yy9leHBsaWNpdGxpc3QvMTQ4NDk=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "05dc6677-0d6f-4d3a-bd62-ffe5780b0721" + "23f12014-a9e2-40dd-b4c5-5e6fc3a79e1b" ], "Request-Id": [ - "05dc6677-0d6f-4d3a-bd62-ffe5780b0721" + "23f12014-a9e2-40dd-b4c5-5e6fc3a79e1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,7 +174,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:27 GMT" + "Tue, 29 Oct 2019 13:19:58 GMT" ], "Content-Length": [ "38" @@ -183,23 +183,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": 13771,\r\n \"explicitListItem\": \"item\"\r\n}", + "ResponseBody": "{\r\n \"id\": 14849,\r\n \"explicitListItem\": \"item\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/ed42ad05-7a9a-4cde-a3ad-de44907ad96f", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy9lZDQyYWQwNS03YTlhLTRjZGUtYTNhZC1kZTQ0OTA3YWQ5NmY=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/7121ab3a-1b92-43b7-915b-4c031d6f4d9c", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzcxMjFhYjNhLTFiOTItNDNiNy05MTViLTRjMDMxZDZmNGQ5Yw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "04b6b87f-bf17-4913-acd8-6eed4efe4f40" + "21cd74d7-258f-4067-b023-d5f208d9e147" ], "Request-Id": [ - "04b6b87f-bf17-4913-acd8-6eed4efe4f40" + "21cd74d7-258f-4067-b023-d5f208d9e147" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:28 GMT" + "Tue, 29 Oct 2019 13:19:58 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/ListEntities.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/ListEntities.json index e87fb012495a..6f3f4fd5c957 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/ListEntities.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/ListEntities.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"Pattern.Any entity\",\r\n \"explicitList\": [\r\n \"item\"\r\n ]\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/3a55111e-fa6e-44ff-9525-cb32234e162a" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/e7519b50-ca28-4d2d-9a37-7e45f7be2636" ], "Apim-Request-Id": [ - "ffd4e0ee-20ee-48aa-b1c9-35cac69924a1" + "ca96aa4d-3d38-4784-8a7e-c0826a8094a6" ], "Request-Id": [ - "ffd4e0ee-20ee-48aa-b1c9-35cac69924a1" + "ca96aa4d-3d38-4784-8a7e-c0826a8094a6" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/3a55111e-fa6e-44ff-9525-cb32234e162a" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/e7519b50-ca28-4d2d-9a37-7e45f7be2636" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:29 GMT" + "Tue, 29 Oct 2019 13:20:01 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"3a55111e-fa6e-44ff-9525-cb32234e162a\"", + "ResponseBody": "\"e7519b50-ca28-4d2d-9a37-7e45f7be2636\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcz9za2lwPTAmdGFrZT0xMDA=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzP3NraXA9MCZ0YWtlPTEwMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "0d295c7c-2b85-48f5-a7a9-cd2bc9d8f9ca" + "01942a94-86d9-4416-b556-f0fb3d09d024" ], "Request-Id": [ - "0d295c7c-2b85-48f5-a7a9-cd2bc9d8f9ca" + "01942a94-86d9-4416-b556-f0fb3d09d024" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:29 GMT" + "Tue, 29 Oct 2019 13:20:01 GMT" ], "Content-Length": [ "199" @@ -117,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"3a55111e-fa6e-44ff-9525-cb32234e162a\",\r\n \"name\": \"Pattern.Any entity\",\r\n \"typeId\": 7,\r\n \"readableType\": \"Pattern.Any Entity Extractor\",\r\n \"explicitList\": [\r\n {\r\n \"id\": 13772,\r\n \"explicitListItem\": \"item\"\r\n }\r\n ],\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"e7519b50-ca28-4d2d-9a37-7e45f7be2636\",\r\n \"name\": \"Pattern.Any entity\",\r\n \"typeId\": 7,\r\n \"readableType\": \"Pattern.Any Entity Extractor\",\r\n \"explicitList\": [\r\n {\r\n \"id\": 14851,\r\n \"explicitListItem\": \"item\"\r\n }\r\n ],\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/3a55111e-fa6e-44ff-9525-cb32234e162a", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy8zYTU1MTExZS1mYTZlLTQ0ZmYtOTUyNS1jYjMyMjM0ZTE2MmE=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/e7519b50-ca28-4d2d-9a37-7e45f7be2636", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzL2U3NTE5YjUwLWNhMjgtNGQyZC05YTM3LTdlNDVmN2JlMjYzNg==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "189faa12-3910-47bf-ac0c-62e2279cc656" + "5a294346-8ad9-463d-89a1-1177f6bfe273" ], "Request-Id": [ - "189faa12-3910-47bf-ac0c-62e2279cc656" + "5a294346-8ad9-463d-89a1-1177f6bfe273" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:29 GMT" + "Tue, 29 Oct 2019 13:20:01 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/UpdateEntity.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/UpdateEntity.json index c0028b004769..1109553cc968 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/UpdateEntity.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/UpdateEntity.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"New Entity Test\",\r\n \"explicitList\": [\r\n \"item\"\r\n ]\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/abfee5a4-98d9-496c-9143-1875ac4ad0a6" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/fb8ebd6e-8aa7-42cb-b324-23550e13edaf" ], "Apim-Request-Id": [ - "4ba25b97-2d0e-4981-b140-2481cb652fde" + "23604206-2a17-469e-8b96-8763c9763298" ], "Request-Id": [ - "4ba25b97-2d0e-4981-b140-2481cb652fde" + "23604206-2a17-469e-8b96-8763c9763298" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/abfee5a4-98d9-496c-9143-1875ac4ad0a6" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/fb8ebd6e-8aa7-42cb-b324-23550e13edaf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:17 GMT" + "Tue, 29 Oct 2019 13:19:49 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"abfee5a4-98d9-496c-9143-1875ac4ad0a6\"", + "ResponseBody": "\"fb8ebd6e-8aa7-42cb-b324-23550e13edaf\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/abfee5a4-98d9-496c-9143-1875ac4ad0a6", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy9hYmZlZTVhNC05OGQ5LTQ5NmMtOTE0My0xODc1YWM0YWQwYTY=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/fb8ebd6e-8aa7-42cb-b324-23550e13edaf", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzL2ZiOGViZDZlLThhYTctNDJjYi1iMzI0LTIzNTUwZTEzZWRhZg==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"name\": \"Entity Test Renamed\",\r\n \"explicitList\": [\r\n \"item1\"\r\n ]\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,10 +96,10 @@ "no-cache" ], "Apim-Request-Id": [ - "634ab9af-f863-4f9d-a219-5be620e7e13f" + "fd5895ac-8931-4875-aad8-02854d3183b9" ], "Request-Id": [ - "634ab9af-f863-4f9d-a219-5be620e7e13f" + "fd5895ac-8931-4875-aad8-02854d3183b9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -114,7 +114,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:18 GMT" + "Tue, 29 Oct 2019 13:19:50 GMT" ], "Content-Length": [ "51" @@ -127,19 +127,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/abfee5a4-98d9-496c-9143-1875ac4ad0a6", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy9hYmZlZTVhNC05OGQ5LTQ5NmMtOTE0My0xODc1YWM0YWQwYTY=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/fb8ebd6e-8aa7-42cb-b324-23550e13edaf", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzL2ZiOGViZDZlLThhYTctNDJjYi1iMzI0LTIzNTUwZTEzZWRhZg==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -150,10 +150,10 @@ "no-cache" ], "Apim-Request-Id": [ - "c4bf9b85-db83-475e-9c71-04f8ae300474" + "f93ad1bc-1953-416b-b1a8-d0207f0bc094" ], "Request-Id": [ - "c4bf9b85-db83-475e-9c71-04f8ae300474" + "f93ad1bc-1953-416b-b1a8-d0207f0bc094" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -168,7 +168,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:18 GMT" + "Tue, 29 Oct 2019 13:19:50 GMT" ], "Content-Length": [ "199" @@ -177,23 +177,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"abfee5a4-98d9-496c-9143-1875ac4ad0a6\",\r\n \"name\": \"Entity Test Renamed\",\r\n \"typeId\": 7,\r\n \"readableType\": \"Pattern.Any Entity Extractor\",\r\n \"explicitList\": [\r\n {\r\n \"id\": 13764,\r\n \"explicitListItem\": \"item1\"\r\n }\r\n ],\r\n \"roles\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"fb8ebd6e-8aa7-42cb-b324-23550e13edaf\",\r\n \"name\": \"Entity Test Renamed\",\r\n \"typeId\": 7,\r\n \"readableType\": \"Pattern.Any Entity Extractor\",\r\n \"explicitList\": [\r\n {\r\n \"id\": 14844,\r\n \"explicitListItem\": \"item1\"\r\n }\r\n ],\r\n \"roles\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/abfee5a4-98d9-496c-9143-1875ac4ad0a6", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzL2FiZmVlNWE0LTk4ZDktNDk2Yy05MTQzLTE4NzVhYzRhZDBhNg==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/fb8ebd6e-8aa7-42cb-b324-23550e13edaf", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzL2ZiOGViZDZlLThhYTctNDJjYi1iMzI0LTIzNTUwZTEzZWRhZg==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "118059bd-d839-4aae-b2a8-2150f9568001" + "56ec08f9-c9b7-4719-8bbd-fdf0db464afa" ], "Request-Id": [ - "118059bd-d839-4aae-b2a8-2150f9568001" + "56ec08f9-c9b7-4719-8bbd-fdf0db464afa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,7 +222,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:18 GMT" + "Tue, 29 Oct 2019 13:19:50 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/UpdateExplicitListItem.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/UpdateExplicitListItem.json index 1f7d00201415..c5bc7c783dc3 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/UpdateExplicitListItem.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPatternAnyTests/UpdateExplicitListItem.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVz", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"New Entity Test\",\r\n \"explicitList\": []\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/283979d0-7864-47dc-9df7-59cc56a9a41b" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/4c9cd59e-2f52-481a-b186-835c1f1c7b98" ], "Apim-Request-Id": [ - "f412a07a-80db-40e1-99ce-bee76d0e1d20" + "22d41655-a06d-4382-b9f5-439a0fc47451" ], "Request-Id": [ - "f412a07a-80db-40e1-99ce-bee76d0e1d20" + "22d41655-a06d-4382-b9f5-439a0fc47451" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/283979d0-7864-47dc-9df7-59cc56a9a41b" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/4c9cd59e-2f52-481a-b186-835c1f1c7b98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:23 GMT" + "Tue, 29 Oct 2019 13:19:53 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"283979d0-7864-47dc-9df7-59cc56a9a41b\"", + "ResponseBody": "\"4c9cd59e-2f52-481a-b186-835c1f1c7b98\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/283979d0-7864-47dc-9df7-59cc56a9a41b/explicitlist", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy8yODM5NzlkMC03ODY0LTQ3ZGMtOWRmNy01OWNjNTZhOWE0MWIvZXhwbGljaXRsaXN0", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/4c9cd59e-2f52-481a-b186-835c1f1c7b98/explicitlist", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzRjOWNkNTllLTJmNTItNDgxYS1iMTg2LTgzNWMxZjFjN2I5OC9leHBsaWNpdGxpc3Q=", "RequestMethod": "POST", "RequestBody": "{\r\n \"explicitListItem\": \"item\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,16 +96,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/283979d0-7864-47dc-9df7-59cc56a9a41b/explicitlist/13769" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/4c9cd59e-2f52-481a-b186-835c1f1c7b98/explicitlist/14847" ], "Apim-Request-Id": [ - "562382e8-2bd2-4ebd-9691-dd4e9e1dcdc8" + "9aed4303-5971-478c-bdc2-ad00582df37d" ], "Request-Id": [ - "562382e8-2bd2-4ebd-9691-dd4e9e1dcdc8" + "9aed4303-5971-478c-bdc2-ad00582df37d" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/283979d0-7864-47dc-9df7-59cc56a9a41b/explicitlist/13769" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/4c9cd59e-2f52-481a-b186-835c1f1c7b98/explicitlist/14847" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -120,7 +120,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:24 GMT" + "Tue, 29 Oct 2019 13:19:53 GMT" ], "Content-Length": [ "5" @@ -129,23 +129,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "13769", + "ResponseBody": "14847", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/283979d0-7864-47dc-9df7-59cc56a9a41b/explicitlist/13769", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy8yODM5NzlkMC03ODY0LTQ3ZGMtOWRmNy01OWNjNTZhOWE0MWIvZXhwbGljaXRsaXN0LzEzNzY5", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/4c9cd59e-2f52-481a-b186-835c1f1c7b98/explicitlist/14847", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzRjOWNkNTllLTJmNTItNDgxYS1iMTg2LTgzNWMxZjFjN2I5OC9leHBsaWNpdGxpc3QvMTQ4NDc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"explicitListItem\": \"item1\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -162,10 +162,10 @@ "no-cache" ], "Apim-Request-Id": [ - "a3f99396-b3de-4898-bbbf-fd8eed2638ef" + "922cda44-9024-4d3c-a719-c61bb3d7452b" ], "Request-Id": [ - "a3f99396-b3de-4898-bbbf-fd8eed2638ef" + "922cda44-9024-4d3c-a719-c61bb3d7452b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -180,7 +180,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:24 GMT" + "Tue, 29 Oct 2019 13:19:53 GMT" ], "Content-Length": [ "51" @@ -193,19 +193,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/283979d0-7864-47dc-9df7-59cc56a9a41b/explicitlist/13769", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy8yODM5NzlkMC03ODY0LTQ3ZGMtOWRmNy01OWNjNTZhOWE0MWIvZXhwbGljaXRsaXN0LzEzNzY5", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/4c9cd59e-2f52-481a-b186-835c1f1c7b98/explicitlist/14847", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzRjOWNkNTllLTJmNTItNDgxYS1iMTg2LTgzNWMxZjFjN2I5OC9leHBsaWNpdGxpc3QvMTQ4NDc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -216,10 +216,10 @@ "no-cache" ], "Apim-Request-Id": [ - "574ede9c-62cc-45ad-a6be-2817accc4ef7" + "dbd48979-fa8a-4e0e-b077-f0a79431e74e" ], "Request-Id": [ - "574ede9c-62cc-45ad-a6be-2817accc4ef7" + "dbd48979-fa8a-4e0e-b077-f0a79431e74e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -234,7 +234,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:24 GMT" + "Tue, 29 Oct 2019 13:19:54 GMT" ], "Content-Length": [ "39" @@ -243,23 +243,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": 13769,\r\n \"explicitListItem\": \"item1\"\r\n}", + "ResponseBody": "{\r\n \"id\": 14847,\r\n \"explicitListItem\": \"item1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternanyentities/283979d0-7864-47dc-9df7-59cc56a9a41b", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5hbnllbnRpdGllcy8yODM5NzlkMC03ODY0LTQ3ZGMtOWRmNy01OWNjNTZhOWE0MWI=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternanyentities/4c9cd59e-2f52-481a-b186-835c1f1c7b98", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybmFueWVudGl0aWVzLzRjOWNkNTllLTJmNTItNDgxYS1iMTg2LTgzNWMxZjFjN2I5OA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -270,10 +270,10 @@ "no-cache" ], "Apim-Request-Id": [ - "df9f54a8-f717-48be-801f-522fad9202a2" + "24b55b7a-e65f-498a-9b40-8cdcaaae80f7" ], "Request-Id": [ - "df9f54a8-f717-48be-801f-522fad9202a2" + "24b55b7a-e65f-498a-9b40-8cdcaaae80f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -288,7 +288,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:25 GMT" + "Tue, 29 Oct 2019 13:19:54 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/AddCustomPrebuiltDomain.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/AddCustomPrebuiltDomain.json index 93fe26cf0d61..553778e4f156 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/AddCustomPrebuiltDomain.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/AddCustomPrebuiltDomain.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"culture\": \"en-us\",\r\n \"domain\": \"Comics\",\r\n \"description\": \"New LUIS App\",\r\n \"usageScenario\": \"IoT\",\r\n \"name\": \"New LUIS App\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/1aa53d96-9299-42fc-aa1b-8683d634f9bb" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/08091c69-9c8c-402d-a894-5cbd02d99060" ], "Apim-Request-Id": [ - "8946c813-2e51-48da-b0b9-3e7decb6d1c1" + "b6c82bf8-dd24-4530-b668-ccbbb2f5d07d" ], "Request-Id": [ - "8946c813-2e51-48da-b0b9-3e7decb6d1c1" + "b6c82bf8-dd24-4530-b668-ccbbb2f5d07d" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/1aa53d96-9299-42fc-aa1b-8683d634f9bb" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/08091c69-9c8c-402d-a894-5cbd02d99060" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:19:55 GMT" + "Tue, 29 Oct 2019 13:20:42 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"1aa53d96-9299-42fc-aa1b-8683d634f9bb\"", + "ResponseBody": "\"08091c69-9c8c-402d-a894-5cbd02d99060\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/1aa53d96-9299-42fc-aa1b-8683d634f9bb/versions?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8xYWE1M2Q5Ni05Mjk5LTQyZmMtYWExYi04NjgzZDYzNGY5YmIvdmVyc2lvbnM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/08091c69-9c8c-402d-a894-5cbd02d99060/versions?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzA4MDkxYzY5LTljOGMtNDAyZC1hODk0LTVjYmQwMmQ5OTA2MC92ZXJzaW9ucz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "e46bcf12-ac00-4b35-892f-61df3403b850" + "4df1f570-00d8-4177-b0e2-a6b19712f4b0" ], "Request-Id": [ - "e46bcf12-ac00-4b35-892f-61df3403b850" + "4df1f570-00d8-4177-b0e2-a6b19712f4b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:19:55 GMT" + "Tue, 29 Oct 2019 13:20:43 GMT" ], "Content-Length": [ "321" @@ -117,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-08-25T19:19:56Z\",\r\n \"lastModifiedDateTime\": \"2019-08-25T19:19:56Z\",\r\n \"lastTrainedDateTime\": null,\r\n \"lastPublishedDateTime\": null,\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 1,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-10-29T13:20:43Z\",\r\n \"lastModifiedDateTime\": \"2019-10-29T13:20:43Z\",\r\n \"lastTrainedDateTime\": null,\r\n \"lastPublishedDateTime\": null,\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 1,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/1aa53d96-9299-42fc-aa1b-8683d634f9bb/versions/0.1/customprebuiltdomains", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8xYWE1M2Q5Ni05Mjk5LTQyZmMtYWExYi04NjgzZDYzNGY5YmIvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZG9tYWlucw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/08091c69-9c8c-402d-a894-5cbd02d99060/versions/0.1/customprebuiltdomains", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzA4MDkxYzY5LTljOGMtNDAyZC1hODk0LTVjYmQwMmQ5OTA2MC92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRkb21haW5z", "RequestMethod": "POST", "RequestBody": "{\r\n \"domainName\": \"Communication\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -150,10 +150,10 @@ "no-cache" ], "Apim-Request-Id": [ - "5a1dd9c4-65fd-4de0-917d-f99d5c027ffe" + "c5c8a982-4d69-4715-8941-e7deb1b870b8" ], "Request-Id": [ - "5a1dd9c4-65fd-4de0-917d-f99d5c027ffe" + "c5c8a982-4d69-4715-8941-e7deb1b870b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -168,32 +168,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:01 GMT" + "Tue, 29 Oct 2019 13:20:50 GMT" ], "Content-Length": [ - "2341" + "2380" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n \"1d3d65a1-ba30-4d60-96cb-014c71e0e3c0\",\r\n \"12b1b36f-0e4d-4a5d-a5b1-1a6b6a6ae0cc\",\r\n \"611111a5-bbd0-47fe-8aff-bfa38daf4d03\",\r\n \"ed1ff0e5-a053-4f84-ac83-3d011fcaedeb\",\r\n \"6d7b9b05-f2ad-4a2c-b18c-b00a3eb96164\",\r\n \"c1791507-c749-43a9-ac12-088e977cfa2c\",\r\n \"7742c2f4-7d1e-4c13-9296-bd6c9c774e9c\",\r\n \"0ad76a69-f59e-4760-9b8c-8c68fdacd13c\",\r\n \"56101cf5-0232-42de-927f-c1d0fc852605\",\r\n \"ec39d21a-db62-4762-8ae7-a9764eff68d8\",\r\n \"ccb29554-f057-4233-9c55-e60595bcb1b7\",\r\n \"402137c7-7a27-448a-87ff-f1dab92a1350\",\r\n \"d5dbd2fe-c7c1-41be-af62-affd0a8b53af\",\r\n \"1cf0113a-ae98-4a4d-9633-fc06e56a33b9\",\r\n \"42061109-8992-455a-ad5b-913761c58a80\",\r\n \"7b8a1914-df4a-4f02-b3ea-6a822c9cb593\",\r\n \"967d2cda-9552-4e0a-a05b-3d5b613c0ec5\",\r\n \"06ec5f34-ce5e-46dd-a40a-408d285302b3\",\r\n \"c6f039cc-c1b9-4ef5-8393-6514d7631738\",\r\n \"ca0055e4-983c-4317-8eb4-0f517845941b\",\r\n \"42850c37-6026-481e-8f46-5f083e464a46\",\r\n \"fb07082d-02fd-40bd-b9cd-1108f86c1135\",\r\n \"6561f13a-2171-4d7a-bef4-bf5c1c70a562\",\r\n \"9135eb0f-4b2f-47be-b1b1-4ea2a3cd6b0c\",\r\n \"a5af141c-08b8-4555-9ce9-6cec5df16023\",\r\n \"bf95f849-0304-489f-9c9e-87f30827518d\",\r\n \"a16c70cc-fa15-4f7e-86ff-9b767b69f159\",\r\n \"d7a973f5-6a24-4694-ba55-15339d65396a\",\r\n \"da06581f-1101-409d-9b1b-4b83f6e77f9b\",\r\n \"540994c3-11ad-48f4-9d55-24cd93f65bc6\",\r\n \"9bc7fdfd-2057-4554-b328-60fd048ff86f\",\r\n \"0594e27e-0976-4bdb-a430-f4bff21808ca\",\r\n \"08b9aa7b-ee65-40a2-bc68-2575e4734865\",\r\n \"d46053b0-01e1-4644-9639-7f9773d396c5\",\r\n \"813e8dee-d0ff-4467-b851-216f40b98e11\",\r\n \"512473f9-0ac0-43b0-a66f-c73a0e45b00c\",\r\n \"5ccef2eb-7dc9-4d49-86e5-68bab53e60d7\",\r\n \"88af46f4-794b-42d9-b75f-3e7e188283bb\",\r\n \"fb4a2bff-25eb-4122-b9e4-961dc4547757\",\r\n \"2ef94ec6-61d7-467a-8bdc-bc6444026fb9\",\r\n \"a5b59abe-8a8e-4f12-aaaa-39d3b6daf4e9\",\r\n \"85a43433-129a-44fb-a72e-065aa48fd347\",\r\n \"8c090073-b241-4e32-95b6-f62bd1b358b4\",\r\n \"2b3b765e-9965-445c-a661-7f157e84550b\",\r\n \"d4b99c82-1c60-452f-a45f-3dadc03527f6\",\r\n \"61e31c4a-a3d1-479b-b783-160308b6c941\",\r\n \"d43cea4b-4158-47a8-bfdf-a51a03d5209f\",\r\n \"59b86f48-3729-4d17-a90d-e6cd4d5eb485\",\r\n \"c8a427fe-1ce1-4c3f-b946-2d7a7e7c8ab0\",\r\n \"0b34df8f-8e9b-4848-a8fe-43bafc6dcd76\",\r\n \"85291143-10fe-437d-8aad-9bb0587d7e9c\",\r\n \"366bf1af-f194-4e01-a793-25ebb4217386\",\r\n \"a669421c-81f7-4b80-aefd-1ef25c30a896\",\r\n \"fda9f6c2-0210-4ee3-b7d4-f8916ef05e57\",\r\n \"69f58127-5da8-4596-9ed4-f85d512cfd83\",\r\n \"1e40a413-d880-4f44-80d2-e423b919b680\",\r\n \"7ed51860-dbb1-46bc-93f8-251a2f12585d\",\r\n \"7325382b-2801-4aa4-9202-eebd12a714e4\",\r\n \"19357cc0-c829-40cd-87ef-1e25319adacb\",\r\n \"6cfb8d20-616a-4b32-a589-34fbdb002861\"\r\n]", + "ResponseBody": "[\r\n \"097eb8d8-9138-4611-bdfb-f22b0b8beb98\",\r\n \"cf8ad675-3b4c-49cb-a9d8-ff90dfefe7da\",\r\n \"0fa79286-f7f8-45d4-8e1a-8cc014d7838b\",\r\n \"d901d95f-7576-4854-8302-4efaf16a66b4\",\r\n \"a5f911c8-196e-48de-9cfc-6c63bcffdaad\",\r\n \"766ff0be-d6a6-4a4f-971f-f6cbb1303ecc\",\r\n \"f2426672-088e-41e9-9e65-9931c7eff7ea\",\r\n \"d804ca0e-a8c6-4824-9428-c512ff332e74\",\r\n \"6e3ead8a-8d3b-4b8e-8edc-f0ce78f4b6d7\",\r\n \"8589dbe7-12f4-48c0-b1d5-fa9562e78e66\",\r\n \"c232821d-50af-4c58-9a42-fc27802788c6\",\r\n \"195bb3d2-e21a-4abe-8e96-b26995fed20d\",\r\n \"b6135e10-fee5-4838-9517-122bdab2ec01\",\r\n \"0eb9bc84-5cbf-4303-a193-0bb7182f553f\",\r\n \"09c3adeb-f487-4834-9594-cdc885461dbf\",\r\n \"df74bcae-2a76-4b00-97bb-1248800ff583\",\r\n \"1b970b22-75f6-49c3-bffc-50fae4795ed0\",\r\n \"fa626e18-112e-4214-9038-d152868aba7a\",\r\n \"20989712-deca-47de-ad45-8b61beaa758f\",\r\n \"a81c41cf-77b8-479a-9298-0ef0d1967a7c\",\r\n \"329e232f-591f-4de3-8325-6bb779f1dc36\",\r\n \"95d15f9a-9fd9-4735-99b5-f92a31b33008\",\r\n \"d352c606-dec8-425a-b91e-4f63e9a868bc\",\r\n \"ee3a1494-e907-465b-b2db-4600f3fa7f30\",\r\n \"70027320-3c91-42d9-a68d-3994370ed40c\",\r\n \"c01c7f2a-cf8a-4e5a-b69d-100ae69ae07c\",\r\n \"823563b6-6591-4f23-9665-c80c8a619237\",\r\n \"16d6f3a2-9d9c-4e44-9480-07e5b5a1de56\",\r\n \"cf461e81-02b7-4a99-a77a-ca3d1eb5ff89\",\r\n \"4a9aba48-b1e8-41d3-8db5-4d754c6eb112\",\r\n \"2f7fe448-356f-48f2-8bcf-78d4dc9897e9\",\r\n \"6258b8c6-7c51-4515-9085-dcf4d9ecee3a\",\r\n \"93a47a98-bcf9-4908-96f4-a63b312af420\",\r\n \"64e276ae-b2e6-4e13-933f-f1237fa54b9a\",\r\n \"d28225d1-9a6e-4799-91da-09ee2bf6c08c\",\r\n \"b42bd099-8ac4-4a25-b44d-0df37dfa373e\",\r\n \"dd3fedec-ed74-4505-9fdd-62f8efacc2ff\",\r\n \"1b50489d-6f75-4a54-8d6f-ea04f9f1e725\",\r\n \"67fd0932-b7ea-4230-a537-8f49264a1a5e\",\r\n \"8ce67caf-bc63-49be-97ea-2b8c1d950bd9\",\r\n \"48b064e6-8303-41e4-b479-d52513f41543\",\r\n \"9e52a915-0795-4340-9bd7-5480eca581d1\",\r\n \"90d7e505-c118-4b54-85c4-da9fe5cb7759\",\r\n \"8cd81709-afa6-472e-a154-070704b64a2b\",\r\n \"7dd78a47-6418-4395-a90f-16bbdde9dc33\",\r\n \"be623a32-137e-4c61-9fd6-305aa80f5ae2\",\r\n \"37790424-15a7-4984-a2ad-2e5162343280\",\r\n \"2d46e6d8-1586-4334-a8c5-641f892baaa3\",\r\n \"33f0fbf5-c00d-4ae7-8b33-f769a2972667\",\r\n \"6ef48bc4-5bbc-46d6-8e53-e5c95d2ffd2f\",\r\n \"79fa1bdd-ca87-4ce9-aa94-4b2b1bfc4b47\",\r\n \"71677030-978a-45a8-aa71-0cca6dfd3517\",\r\n \"be421527-8e31-4e6e-a3a4-b1677ddd9d68\",\r\n \"c6a84886-b4ea-44b7-9a0a-13b388ba964a\",\r\n \"8f1f2c73-6004-4b75-83bb-965e7305bc1e\",\r\n \"9160dfbc-0abc-4701-8729-364b5a044bd2\",\r\n \"ae2f7b5e-eee2-4718-b509-d62474299679\",\r\n \"0e519d4b-d685-48f3-af76-ad90c6a869e8\",\r\n \"0768c148-9d44-4343-971c-34dcd1063295\",\r\n \"3c8286b6-e15a-498a-b949-657b103c447f\",\r\n \"64ef4e74-da48-41eb-859c-83d8c97a7dbc\"\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/1aa53d96-9299-42fc-aa1b-8683d634f9bb/versions/0.1/customprebuiltmodels", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8xYWE1M2Q5Ni05Mjk5LTQyZmMtYWExYi04NjgzZDYzNGY5YmIvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0bW9kZWxz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/08091c69-9c8c-402d-a894-5cbd02d99060/versions/0.1/customprebuiltmodels", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzA4MDkxYzY5LTljOGMtNDAyZC1hODk0LTVjYmQwMmQ5OTA2MC92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRtb2RlbHM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "cd664868-2a3d-488d-96ce-a22f392c1bf2" + "54d9b70c-2e99-4e50-81e3-bc29c5035843" ], "Request-Id": [ - "cd664868-2a3d-488d-96ce-a22f392c1bf2" + "54d9b70c-2e99-4e50-81e3-bc29c5035843" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,32 +222,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:01 GMT" + "Tue, 29 Oct 2019 13:20:50 GMT" ], "Content-Length": [ - "12155" + "12693" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"1d3d65a1-ba30-4d60-96cb-014c71e0e3c0\",\r\n \"name\": \"Communication.AddContact\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddContact\"\r\n },\r\n {\r\n \"id\": \"12b1b36f-0e4d-4a5d-a5b1-1a6b6a6ae0cc\",\r\n \"name\": \"Communication.AddFlag\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddFlag\"\r\n },\r\n {\r\n \"id\": \"611111a5-bbd0-47fe-8aff-bfa38daf4d03\",\r\n \"name\": \"Communication.AddMore\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddMore\"\r\n },\r\n {\r\n \"id\": \"ed1ff0e5-a053-4f84-ac83-3d011fcaedeb\",\r\n \"name\": \"Communication.Answer\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Answer\"\r\n },\r\n {\r\n \"id\": \"6d7b9b05-f2ad-4a2c-b18c-b00a3eb96164\",\r\n \"name\": \"Communication.AssignContactNickname\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AssignContactNickname\"\r\n },\r\n {\r\n \"id\": \"fb4a2bff-25eb-4122-b9e4-961dc4547757\",\r\n \"name\": \"Communication.Attachment\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Attachment\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"2ef94ec6-61d7-467a-8bdc-bc6444026fb9\",\r\n \"name\": \"Communication.AudioDeviceType\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AudioDeviceType\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"c1791507-c749-43a9-ac12-088e977cfa2c\",\r\n \"name\": \"Communication.CallBack\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CallBack\"\r\n },\r\n {\r\n \"id\": \"7742c2f4-7d1e-4c13-9296-bd6c9c774e9c\",\r\n \"name\": \"Communication.CallVoiceMail\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CallVoiceMail\"\r\n },\r\n {\r\n \"id\": \"0ad76a69-f59e-4760-9b8c-8c68fdacd13c\",\r\n \"name\": \"Communication.Cancel\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Cancel\"\r\n },\r\n {\r\n \"id\": \"a5b59abe-8a8e-4f12-aaaa-39d3b6daf4e9\",\r\n \"name\": \"Communication.Category\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Category\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"56101cf5-0232-42de-927f-c1d0fc852605\",\r\n \"name\": \"Communication.CheckIMStatus\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CheckIMStatus\"\r\n },\r\n {\r\n \"id\": \"ec39d21a-db62-4762-8ae7-a9764eff68d8\",\r\n \"name\": \"Communication.CheckMessages\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CheckMessages\"\r\n },\r\n {\r\n \"id\": \"ccb29554-f057-4233-9c55-e60595bcb1b7\",\r\n \"name\": \"Communication.Confirm\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Confirm\"\r\n },\r\n {\r\n \"id\": \"85a43433-129a-44fb-a72e-065aa48fd347\",\r\n \"name\": \"Communication.ContactAttribute\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ContactAttribute\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"8c090073-b241-4e32-95b6-f62bd1b358b4\",\r\n \"name\": \"Communication.ContactName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ContactName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"2b3b765e-9965-445c-a661-7f157e84550b\",\r\n \"name\": \"Communication.DestinationPhone\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"DestinationPhone\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"402137c7-7a27-448a-87ff-f1dab92a1350\",\r\n \"name\": \"Communication.Dial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Dial\"\r\n },\r\n {\r\n \"id\": \"d4b99c82-1c60-452f-a45f-3dadc03527f6\",\r\n \"name\": \"Communication.EmailPlatform\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"EmailPlatform\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"61e31c4a-a3d1-479b-b783-160308b6c941\",\r\n \"name\": \"Communication.EmailSubject\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"EmailSubject\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"d5dbd2fe-c7c1-41be-af62-affd0a8b53af\",\r\n \"name\": \"Communication.EndCall\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"EndCall\"\r\n },\r\n {\r\n \"id\": \"1cf0113a-ae98-4a4d-9633-fc06e56a33b9\",\r\n \"name\": \"Communication.FindContact\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FindContact\"\r\n },\r\n {\r\n \"id\": \"42061109-8992-455a-ad5b-913761c58a80\",\r\n \"name\": \"Communication.FindSpeedDial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FindSpeedDial\"\r\n },\r\n {\r\n \"id\": \"7b8a1914-df4a-4f02-b3ea-6a822c9cb593\",\r\n \"name\": \"Communication.FinishTask\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FinishTask\"\r\n },\r\n {\r\n \"id\": \"967d2cda-9552-4e0a-a05b-3d5b613c0ec5\",\r\n \"name\": \"Communication.Forward\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Forward\"\r\n },\r\n {\r\n \"id\": \"d43cea4b-4158-47a8-bfdf-a51a03d5209f\",\r\n \"name\": \"Communication.FromRelationshipName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FromRelationshipName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"06ec5f34-ce5e-46dd-a40a-408d285302b3\",\r\n \"name\": \"Communication.GetForwardingsStatus\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"GetForwardingsStatus\"\r\n },\r\n {\r\n \"id\": \"c6f039cc-c1b9-4ef5-8393-6514d7631738\",\r\n \"name\": \"Communication.GetNotifications\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"GetNotifications\"\r\n },\r\n {\r\n \"id\": \"ca0055e4-983c-4317-8eb4-0f517845941b\",\r\n \"name\": \"Communication.GoBack\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"GoBack\"\r\n },\r\n {\r\n \"id\": \"42850c37-6026-481e-8f46-5f083e464a46\",\r\n \"name\": \"Communication.Ignore\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Ignore\"\r\n },\r\n {\r\n \"id\": \"fb07082d-02fd-40bd-b9cd-1108f86c1135\",\r\n \"name\": \"Communication.IgnoreWithMessage\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"IgnoreWithMessage\"\r\n },\r\n {\r\n \"id\": \"59b86f48-3729-4d17-a90d-e6cd4d5eb485\",\r\n \"name\": \"Communication.Key\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Key\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"c8a427fe-1ce1-4c3f-b946-2d7a7e7c8ab0\",\r\n \"name\": \"Communication.Line\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Line\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"0b34df8f-8e9b-4848-a8fe-43bafc6dcd76\",\r\n \"name\": \"Communication.Message\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Message\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"85291143-10fe-437d-8aad-9bb0587d7e9c\",\r\n \"name\": \"Communication.MessageType\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"MessageType\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"366bf1af-f194-4e01-a793-25ebb4217386\",\r\n \"name\": \"Communication.OrderReference\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"OrderReference\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"a669421c-81f7-4b80-aefd-1ef25c30a896\",\r\n \"name\": \"Communication.PositionReference\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"PositionReference\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"6561f13a-2171-4d7a-bef4-bf5c1c70a562\",\r\n \"name\": \"Communication.PressKey\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"PressKey\"\r\n },\r\n {\r\n \"id\": \"9135eb0f-4b2f-47be-b1b1-4ea2a3cd6b0c\",\r\n \"name\": \"Communication.QueryLastText\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"QueryLastText\"\r\n },\r\n {\r\n \"id\": \"a5af141c-08b8-4555-9ce9-6cec5df16023\",\r\n \"name\": \"Communication.ReadAloud\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ReadAloud\"\r\n },\r\n {\r\n \"id\": \"bf95f849-0304-489f-9c9e-87f30827518d\",\r\n \"name\": \"Communication.Redial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Redial\"\r\n },\r\n {\r\n \"id\": \"a16c70cc-fa15-4f7e-86ff-9b767b69f159\",\r\n \"name\": \"Communication.Reject\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Reject\"\r\n },\r\n {\r\n \"id\": \"fda9f6c2-0210-4ee3-b7d4-f8916ef05e57\",\r\n \"name\": \"Communication.RelationshipName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"RelationshipName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"d7a973f5-6a24-4694-ba55-15339d65396a\",\r\n \"name\": \"Communication.Reply\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Reply\"\r\n },\r\n {\r\n \"id\": \"da06581f-1101-409d-9b1b-4b83f6e77f9b\",\r\n \"name\": \"Communication.SearchMessages\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SearchMessages\"\r\n },\r\n {\r\n \"id\": \"69f58127-5da8-4596-9ed4-f85d512cfd83\",\r\n \"name\": \"Communication.SearchTexts\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SearchTexts\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"540994c3-11ad-48f4-9d55-24cd93f65bc6\",\r\n \"name\": \"Communication.SendEmail\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SendEmail\"\r\n },\r\n {\r\n \"id\": \"1e40a413-d880-4f44-80d2-e423b919b680\",\r\n \"name\": \"Communication.SenderName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SenderName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"9bc7fdfd-2057-4554-b328-60fd048ff86f\",\r\n \"name\": \"Communication.SendMessage\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SendMessage\"\r\n },\r\n {\r\n \"id\": \"0594e27e-0976-4bdb-a430-f4bff21808ca\",\r\n \"name\": \"Communication.SetSpeedDial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SetSpeedDial\"\r\n },\r\n {\r\n \"id\": \"08b9aa7b-ee65-40a2-bc68-2575e4734865\",\r\n \"name\": \"Communication.ShowNext\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ShowNext\"\r\n },\r\n {\r\n \"id\": \"d46053b0-01e1-4644-9639-7f9773d396c5\",\r\n \"name\": \"Communication.ShowPrevious\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ShowPrevious\"\r\n },\r\n {\r\n \"id\": \"7ed51860-dbb1-46bc-93f8-251a2f12585d\",\r\n \"name\": \"Communication.SpeedDial\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SpeedDial\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"813e8dee-d0ff-4467-b851-216f40b98e11\",\r\n \"name\": \"Communication.TurnForwardingOff\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnForwardingOff\"\r\n },\r\n {\r\n \"id\": \"512473f9-0ac0-43b0-a66f-c73a0e45b00c\",\r\n \"name\": \"Communication.TurnForwardingOn\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnForwardingOn\"\r\n },\r\n {\r\n \"id\": \"5ccef2eb-7dc9-4d49-86e5-68bab53e60d7\",\r\n \"name\": \"Communication.TurnSpeakerOff\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnSpeakerOff\"\r\n },\r\n {\r\n \"id\": \"88af46f4-794b-42d9-b75f-3e7e188283bb\",\r\n \"name\": \"Communication.TurnSpeakerOn\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnSpeakerOn\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"097eb8d8-9138-4611-bdfb-f22b0b8beb98\",\r\n \"name\": \"Communication.AddContact\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddContact\"\r\n },\r\n {\r\n \"id\": \"d901d95f-7576-4854-8302-4efaf16a66b4\",\r\n \"name\": \"Communication.AddFlag\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddFlag\"\r\n },\r\n {\r\n \"id\": \"a5f911c8-196e-48de-9cfc-6c63bcffdaad\",\r\n \"name\": \"Communication.AddMore\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddMore\"\r\n },\r\n {\r\n \"id\": \"766ff0be-d6a6-4a4f-971f-f6cbb1303ecc\",\r\n \"name\": \"Communication.Answer\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Answer\"\r\n },\r\n {\r\n \"id\": \"f2426672-088e-41e9-9e65-9931c7eff7ea\",\r\n \"name\": \"Communication.AssignContactNickname\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AssignContactNickname\"\r\n },\r\n {\r\n \"id\": \"6ef48bc4-5bbc-46d6-8e53-e5c95d2ffd2f\",\r\n \"name\": \"Communication.Attachment\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Attachment\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"79fa1bdd-ca87-4ce9-aa94-4b2b1bfc4b47\",\r\n \"name\": \"Communication.AudioDeviceType\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AudioDeviceType\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"d804ca0e-a8c6-4824-9428-c512ff332e74\",\r\n \"name\": \"Communication.CallBack\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CallBack\"\r\n },\r\n {\r\n \"id\": \"6e3ead8a-8d3b-4b8e-8edc-f0ce78f4b6d7\",\r\n \"name\": \"Communication.CallVoiceMail\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CallVoiceMail\"\r\n },\r\n {\r\n \"id\": \"8589dbe7-12f4-48c0-b1d5-fa9562e78e66\",\r\n \"name\": \"Communication.Cancel\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Cancel\"\r\n },\r\n {\r\n \"id\": \"71677030-978a-45a8-aa71-0cca6dfd3517\",\r\n \"name\": \"Communication.Category\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Category\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"c232821d-50af-4c58-9a42-fc27802788c6\",\r\n \"name\": \"Communication.CheckIMStatus\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CheckIMStatus\"\r\n },\r\n {\r\n \"id\": \"195bb3d2-e21a-4abe-8e96-b26995fed20d\",\r\n \"name\": \"Communication.CheckMessages\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CheckMessages\"\r\n },\r\n {\r\n \"id\": \"b6135e10-fee5-4838-9517-122bdab2ec01\",\r\n \"name\": \"Communication.Confirm\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Confirm\"\r\n },\r\n {\r\n \"id\": \"20989712-deca-47de-ad45-8b61beaa758f\",\r\n \"name\": \"Communication.ContactAttribute\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ContactAttribute\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"cf8ad675-3b4c-49cb-a9d8-ff90dfefe7da\",\r\n \"name\": \"Communication.ContactName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ContactName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"be421527-8e31-4e6e-a3a4-b1677ddd9d68\",\r\n \"name\": \"Communication.DestinationPhone\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"DestinationPhone\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"0eb9bc84-5cbf-4303-a193-0bb7182f553f\",\r\n \"name\": \"Communication.Dial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Dial\"\r\n },\r\n {\r\n \"id\": \"67fd0932-b7ea-4230-a537-8f49264a1a5e\",\r\n \"name\": \"Communication.EmailSubject\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"EmailSubject\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"3c8286b6-e15a-498a-b949-657b103c447f\",\r\n \"name\": \"Communication.EmailSubject.any\",\r\n \"typeId\": 7,\r\n \"readableType\": \"Pattern.Any Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"EmailSubject.any\",\r\n \"explicitList\": [],\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"09c3adeb-f487-4834-9594-cdc885461dbf\",\r\n \"name\": \"Communication.EndCall\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"EndCall\"\r\n },\r\n {\r\n \"id\": \"df74bcae-2a76-4b00-97bb-1248800ff583\",\r\n \"name\": \"Communication.FindContact\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FindContact\"\r\n },\r\n {\r\n \"id\": \"1b970b22-75f6-49c3-bffc-50fae4795ed0\",\r\n \"name\": \"Communication.FindSpeedDial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FindSpeedDial\"\r\n },\r\n {\r\n \"id\": \"a81c41cf-77b8-479a-9298-0ef0d1967a7c\",\r\n \"name\": \"Communication.FinishTask\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FinishTask\"\r\n },\r\n {\r\n \"id\": \"329e232f-591f-4de3-8325-6bb779f1dc36\",\r\n \"name\": \"Communication.Forward\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Forward\"\r\n },\r\n {\r\n \"id\": \"c6a84886-b4ea-44b7-9a0a-13b388ba964a\",\r\n \"name\": \"Communication.FromRelationshipName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FromRelationshipName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"95d15f9a-9fd9-4735-99b5-f92a31b33008\",\r\n \"name\": \"Communication.GetForwardingsStatus\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"GetForwardingsStatus\"\r\n },\r\n {\r\n \"id\": \"d352c606-dec8-425a-b91e-4f63e9a868bc\",\r\n \"name\": \"Communication.GetNotifications\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"GetNotifications\"\r\n },\r\n {\r\n \"id\": \"ee3a1494-e907-465b-b2db-4600f3fa7f30\",\r\n \"name\": \"Communication.GoBack\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"GoBack\"\r\n },\r\n {\r\n \"id\": \"c01c7f2a-cf8a-4e5a-b69d-100ae69ae07c\",\r\n \"name\": \"Communication.Ignore\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Ignore\"\r\n },\r\n {\r\n \"id\": \"823563b6-6591-4f23-9665-c80c8a619237\",\r\n \"name\": \"Communication.IgnoreWithMessage\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"IgnoreWithMessage\"\r\n },\r\n {\r\n \"id\": \"8f1f2c73-6004-4b75-83bb-965e7305bc1e\",\r\n \"name\": \"Communication.Key\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Key\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"9160dfbc-0abc-4701-8729-364b5a044bd2\",\r\n \"name\": \"Communication.Line\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Line\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"b42bd099-8ac4-4a25-b44d-0df37dfa373e\",\r\n \"name\": \"Communication.Message\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Message\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"64ef4e74-da48-41eb-859c-83d8c97a7dbc\",\r\n \"name\": \"Communication.Message.any\",\r\n \"typeId\": 7,\r\n \"readableType\": \"Pattern.Any Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Message.any\",\r\n \"explicitList\": [],\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"16d6f3a2-9d9c-4e44-9480-07e5b5a1de56\",\r\n \"name\": \"Communication.MessageType\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"MessageType\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"70027320-3c91-42d9-a68d-3994370ed40c\",\r\n \"name\": \"Communication.OrderReference\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"OrderReference\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"ae2f7b5e-eee2-4718-b509-d62474299679\",\r\n \"name\": \"Communication.PositionReference\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"PositionReference\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"cf461e81-02b7-4a99-a77a-ca3d1eb5ff89\",\r\n \"name\": \"Communication.PressKey\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"PressKey\"\r\n },\r\n {\r\n \"id\": \"4a9aba48-b1e8-41d3-8db5-4d754c6eb112\",\r\n \"name\": \"Communication.QueryLastText\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"QueryLastText\"\r\n },\r\n {\r\n \"id\": \"2f7fe448-356f-48f2-8bcf-78d4dc9897e9\",\r\n \"name\": \"Communication.ReadAloud\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ReadAloud\"\r\n },\r\n {\r\n \"id\": \"6258b8c6-7c51-4515-9085-dcf4d9ecee3a\",\r\n \"name\": \"Communication.Redial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Redial\"\r\n },\r\n {\r\n \"id\": \"93a47a98-bcf9-4908-96f4-a63b312af420\",\r\n \"name\": \"Communication.Reject\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Reject\"\r\n },\r\n {\r\n \"id\": \"8ce67caf-bc63-49be-97ea-2b8c1d950bd9\",\r\n \"name\": \"Communication.RelationshipName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"RelationshipName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"64e276ae-b2e6-4e13-933f-f1237fa54b9a\",\r\n \"name\": \"Communication.Reply\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Reply\"\r\n },\r\n {\r\n \"id\": \"dd3fedec-ed74-4505-9fdd-62f8efacc2ff\",\r\n \"name\": \"Communication.SearchMessages\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SearchMessages\"\r\n },\r\n {\r\n \"id\": \"0e519d4b-d685-48f3-af76-ad90c6a869e8\",\r\n \"name\": \"Communication.SearchTexts\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SearchTexts\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"1b50489d-6f75-4a54-8d6f-ea04f9f1e725\",\r\n \"name\": \"Communication.SendEmail\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SendEmail\"\r\n },\r\n {\r\n \"id\": \"d28225d1-9a6e-4799-91da-09ee2bf6c08c\",\r\n \"name\": \"Communication.SenderName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SenderName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"9e52a915-0795-4340-9bd7-5480eca581d1\",\r\n \"name\": \"Communication.SendMessage\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SendMessage\"\r\n },\r\n {\r\n \"id\": \"90d7e505-c118-4b54-85c4-da9fe5cb7759\",\r\n \"name\": \"Communication.SetSpeedDial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SetSpeedDial\"\r\n },\r\n {\r\n \"id\": \"8cd81709-afa6-472e-a154-070704b64a2b\",\r\n \"name\": \"Communication.ShowNext\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ShowNext\"\r\n },\r\n {\r\n \"id\": \"7dd78a47-6418-4395-a90f-16bbdde9dc33\",\r\n \"name\": \"Communication.ShowPrevious\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ShowPrevious\"\r\n },\r\n {\r\n \"id\": \"fa626e18-112e-4214-9038-d152868aba7a\",\r\n \"name\": \"Communication.SpeedDial\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SpeedDial\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"be623a32-137e-4c61-9fd6-305aa80f5ae2\",\r\n \"name\": \"Communication.TurnForwardingOff\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnForwardingOff\"\r\n },\r\n {\r\n \"id\": \"37790424-15a7-4984-a2ad-2e5162343280\",\r\n \"name\": \"Communication.TurnForwardingOn\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnForwardingOn\"\r\n },\r\n {\r\n \"id\": \"2d46e6d8-1586-4334-a8c5-641f892baaa3\",\r\n \"name\": \"Communication.TurnSpeakerOff\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnSpeakerOff\"\r\n },\r\n {\r\n \"id\": \"33f0fbf5-c00d-4ae7-8b33-f769a2972667\",\r\n \"name\": \"Communication.TurnSpeakerOn\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnSpeakerOn\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/1aa53d96-9299-42fc-aa1b-8683d634f9bb/versions/0.1/customprebuiltdomains/Communication", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8xYWE1M2Q5Ni05Mjk5LTQyZmMtYWExYi04NjgzZDYzNGY5YmIvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZG9tYWlucy9Db21tdW5pY2F0aW9u", + "RequestUri": "/luis/authoring/v3.0-preview/apps/08091c69-9c8c-402d-a894-5cbd02d99060/versions/0.1/customprebuiltdomains/Communication", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzA4MDkxYzY5LTljOGMtNDAyZC1hODk0LTVjYmQwMmQ5OTA2MC92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRkb21haW5zL0NvbW11bmljYXRpb24=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -258,10 +258,10 @@ "no-cache" ], "Apim-Request-Id": [ - "dc0bb41e-b619-4c8a-a494-6f25a3d21620" + "428e355c-42c4-4c72-ada6-58e38d283082" ], "Request-Id": [ - "dc0bb41e-b619-4c8a-a494-6f25a3d21620" + "428e355c-42c4-4c72-ada6-58e38d283082" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -276,7 +276,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:18 GMT" + "Tue, 29 Oct 2019 13:21:13 GMT" ], "Content-Length": [ "51" @@ -289,19 +289,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/1aa53d96-9299-42fc-aa1b-8683d634f9bb?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8xYWE1M2Q5Ni05Mjk5LTQyZmMtYWExYi04NjgzZDYzNGY5YmI/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/08091c69-9c8c-402d-a894-5cbd02d99060?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzA4MDkxYzY5LTljOGMtNDAyZC1hODk0LTVjYmQwMmQ5OTA2MD9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -312,10 +312,10 @@ "no-cache" ], "Apim-Request-Id": [ - "525f36c1-b239-4f57-aa0e-98438b9294a5" + "a853ddd8-3252-4eea-8445-38824a9b90fa" ], "Request-Id": [ - "525f36c1-b239-4f57-aa0e-98438b9294a5" + "a853ddd8-3252-4eea-8445-38824a9b90fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -330,7 +330,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:18 GMT" + "Tue, 29 Oct 2019 13:21:14 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/AddCustomPrebuiltEntity.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/AddCustomPrebuiltEntity.json index ae208d69ae1c..93587903f171 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/AddCustomPrebuiltEntity.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/AddCustomPrebuiltEntity.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -24,10 +24,10 @@ "no-cache" ], "Apim-Request-Id": [ - "78aa3544-aa87-4f44-bba8-633e4132b520" + "5df608a0-db83-4b42-b741-60ab9419305c" ], "Request-Id": [ - "78aa3544-aa87-4f44-bba8-633e4132b520" + "5df608a0-db83-4b42-b741-60ab9419305c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -42,7 +42,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:36 GMT" + "Tue, 29 Oct 2019 13:20:39 GMT" ], "Content-Length": [ "357" @@ -51,23 +51,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-08-25T18:00:46Z\",\r\n \"lastModifiedDateTime\": \"2019-08-25T19:18:36Z\",\r\n \"lastTrainedDateTime\": \"2019-08-25T19:18:09Z\",\r\n \"lastPublishedDateTime\": \"2019-08-25T19:16:38Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 2,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-10-28T16:56:16Z\",\r\n \"lastModifiedDateTime\": \"2019-10-29T13:20:13Z\",\r\n \"lastTrainedDateTime\": \"2019-10-29T11:59:38Z\",\r\n \"lastPublishedDateTime\": \"2019-10-29T13:17:03Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 3,\r\n \"entitiesCount\": 5,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZW50aXRpZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRlbnRpdGllcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"domainName\": \"Communication\",\r\n \"modelName\": \"Category\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -84,16 +84,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/4c8c50a7-2a76-403a-bd5c-fb43c828466c" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/bcdb60a3-9b34-4ef6-bb78-3e885b9c1def" ], "Apim-Request-Id": [ - "6bf6b03c-b98f-455c-bcad-125a46dcdff0" + "c8103fc0-e644-4d9e-8743-31d1ec7ab333" ], "Request-Id": [ - "6bf6b03c-b98f-455c-bcad-125a46dcdff0" + "c8103fc0-e644-4d9e-8743-31d1ec7ab333" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities/4c8c50a7-2a76-403a-bd5c-fb43c828466c" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities/bcdb60a3-9b34-4ef6-bb78-3e885b9c1def" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:37 GMT" + "Tue, 29 Oct 2019 13:20:40 GMT" ], "Content-Length": [ "38" @@ -117,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"4c8c50a7-2a76-403a-bd5c-fb43c828466c\"", + "ResponseBody": "\"bcdb60a3-9b34-4ef6-bb78-3e885b9c1def\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZW50aXRpZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRlbnRpdGllcw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "91544d47-708b-4367-959f-211c2f91019e" + "e3d6401f-8aba-46f1-864a-f77a5f72f35c" ], "Request-Id": [ - "91544d47-708b-4367-959f-211c2f91019e" + "e3d6401f-8aba-46f1-864a-f77a5f72f35c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,32 +162,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:37 GMT" + "Tue, 29 Oct 2019 13:20:41 GMT" ], "Content-Length": [ - "215" + "445" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"4c8c50a7-2a76-403a-bd5c-fb43c828466c\",\r\n \"name\": \"Communication.Category\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Category\",\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"f3ff4992-88d3-45ef-a1ec-d0e77fa02df9\",\r\n \"name\": \"Calendar.Subject\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"Subject\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"bcdb60a3-9b34-4ef6-bb78-3e885b9c1def\",\r\n \"name\": \"Communication.Category\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Category\",\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/4c8c50a7-2a76-403a-bd5c-fb43c828466c", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzLzRjOGM1MGE3LTJhNzYtNDAzYS1iZDVjLWZiNDNjODI4NDY2Yw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/bcdb60a3-9b34-4ef6-bb78-3e885b9c1def", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvYmNkYjYwYTMtOWIzNC00ZWY2LWJiNzgtM2U4ODViOWMxZGVm", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -198,10 +198,10 @@ "no-cache" ], "Apim-Request-Id": [ - "9db508de-c91a-494d-b153-7106631428ae" + "10ae43d6-95ff-40aa-a650-04620ce309e1" ], "Request-Id": [ - "9db508de-c91a-494d-b153-7106631428ae" + "10ae43d6-95ff-40aa-a650-04620ce309e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -216,7 +216,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:37 GMT" + "Tue, 29 Oct 2019 13:20:41 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/AddCustomPrebuiltIntent.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/AddCustomPrebuiltIntent.json index 6c1a60b7b89f..0cae95232a3c 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/AddCustomPrebuiltIntent.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/AddCustomPrebuiltIntent.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -24,10 +24,10 @@ "no-cache" ], "Apim-Request-Id": [ - "aa0fec67-cf17-4011-b125-2e293fc350a6" + "fa290d69-ff4c-4c35-ba16-b6beffb08878" ], "Request-Id": [ - "aa0fec67-cf17-4011-b125-2e293fc350a6" + "fa290d69-ff4c-4c35-ba16-b6beffb08878" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -42,7 +42,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:33 GMT" + "Tue, 29 Oct 2019 13:21:47 GMT" ], "Content-Length": [ "357" @@ -51,29 +51,29 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-08-25T18:00:46Z\",\r\n \"lastModifiedDateTime\": \"2019-08-25T19:18:32Z\",\r\n \"lastTrainedDateTime\": \"2019-08-25T19:18:09Z\",\r\n \"lastPublishedDateTime\": \"2019-08-25T19:16:38Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 2,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-10-28T16:56:16Z\",\r\n \"lastModifiedDateTime\": \"2019-10-29T13:20:42Z\",\r\n \"lastTrainedDateTime\": \"2019-10-29T11:59:38Z\",\r\n \"lastPublishedDateTime\": \"2019-10-29T13:17:03Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 3,\r\n \"entitiesCount\": 5,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltintents", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0aW50ZW50cw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltintents", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRpbnRlbnRz", "RequestMethod": "POST", - "RequestBody": "{\r\n \"domainName\": \"Communication\",\r\n \"modelName\": \"AddContact\"\r\n}", + "RequestBody": "{\r\n \"domainName\": \"Calendar\",\r\n \"modelName\": \"Cancel\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "67" + "58" ] }, "ResponseHeaders": { @@ -84,16 +84,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltintents/137d16f4-9f1a-4b9d-a03c-3c3a6608c5bf" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltintents/88916fd7-39d1-4435-9f58-6b6476fd0bad" ], "Apim-Request-Id": [ - "ae0bc746-d208-4bb2-a46b-d4ac64fc9bf6" + "d4579959-e834-43f2-ae74-1413e7b34181" ], "Request-Id": [ - "ae0bc746-d208-4bb2-a46b-d4ac64fc9bf6" + "d4579959-e834-43f2-ae74-1413e7b34181" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltintents/137d16f4-9f1a-4b9d-a03c-3c3a6608c5bf" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltintents/88916fd7-39d1-4435-9f58-6b6476fd0bad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:34 GMT" + "Tue, 29 Oct 2019 13:21:48 GMT" ], "Content-Length": [ "38" @@ -117,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"137d16f4-9f1a-4b9d-a03c-3c3a6608c5bf\"", + "ResponseBody": "\"88916fd7-39d1-4435-9f58-6b6476fd0bad\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/customprebuiltintents", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0aW50ZW50cw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/customprebuiltintents", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRpbnRlbnRz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "eb4b2f0e-e91d-4b58-b3a3-6b770e6a767b" + "7b67ed28-0f96-4520-8a77-717814558c01" ], "Request-Id": [ - "eb4b2f0e-e91d-4b58-b3a3-6b770e6a767b" + "7b67ed28-0f96-4520-8a77-717814558c01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,32 +162,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:34 GMT" + "Tue, 29 Oct 2019 13:21:49 GMT" ], "Content-Length": [ - "209" + "609" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"137d16f4-9f1a-4b9d-a03c-3c3a6608c5bf\",\r\n \"name\": \"Communication.AddContact\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddContact\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"1f65d5ab-3daf-44f5-af17-7cd6f3f4dcce\",\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"AcceptEventEntry\"\r\n },\r\n {\r\n \"id\": \"88916fd7-39d1-4435-9f58-6b6476fd0bad\",\r\n \"name\": \"Calendar.Cancel\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"Cancel\"\r\n },\r\n {\r\n \"id\": \"0da76691-d27b-435a-8318-062e6338f5e3\",\r\n \"name\": \"Communication.AddContact\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddContact\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents/137d16f4-9f1a-4b9d-a03c-3c3a6608c5bf?deleteUtterances=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2ludGVudHMvMTM3ZDE2ZjQtOWYxYS00YjlkLWEwM2MtM2MzYTY2MDhjNWJmP2RlbGV0ZVV0dGVyYW5jZXM9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/88916fd7-39d1-4435-9f58-6b6476fd0bad?deleteUtterances=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cy84ODkxNmZkNy0zOWQxLTQ0MzUtOWY1OC02YjY0NzZmZDBiYWQ/ZGVsZXRlVXR0ZXJhbmNlcz1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -198,10 +198,10 @@ "no-cache" ], "Apim-Request-Id": [ - "113a7746-ce70-4682-9886-4a750592c175" + "e8afae3d-4238-4416-afe6-46aa69849bc5" ], "Request-Id": [ - "113a7746-ce70-4682-9886-4a750592c175" + "e8afae3d-4238-4416-afe6-46aa69849bc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -216,7 +216,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:35 GMT" + "Tue, 29 Oct 2019 13:21:49 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/DeleteCustomPrebuiltDomain.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/DeleteCustomPrebuiltDomain.json index 518f37f7c350..0374dc69f289 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/DeleteCustomPrebuiltDomain.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/DeleteCustomPrebuiltDomain.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"culture\": \"en-us\",\r\n \"domain\": \"Comics\",\r\n \"description\": \"New LUIS App\",\r\n \"usageScenario\": \"IoT\",\r\n \"name\": \"New LUIS App\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/abdd7a0d-3df5-4d22-946a-7b744dd03eb7" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/bfcb9a04-0e3b-4774-8f1e-0ad829add39d" ], "Apim-Request-Id": [ - "f7ef94f4-2b54-4bdd-b48e-5d9864d5def1" + "d171a9a5-a6fa-4f9c-960d-5c055e4a880f" ], "Request-Id": [ - "f7ef94f4-2b54-4bdd-b48e-5d9864d5def1" + "d171a9a5-a6fa-4f9c-960d-5c055e4a880f" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/abdd7a0d-3df5-4d22-946a-7b744dd03eb7" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/bfcb9a04-0e3b-4774-8f1e-0ad829add39d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:19 GMT" + "Tue, 29 Oct 2019 13:21:57 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"abdd7a0d-3df5-4d22-946a-7b744dd03eb7\"", + "ResponseBody": "\"bfcb9a04-0e3b-4774-8f1e-0ad829add39d\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/abdd7a0d-3df5-4d22-946a-7b744dd03eb7/versions?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9hYmRkN2EwZC0zZGY1LTRkMjItOTQ2YS03Yjc0NGRkMDNlYjcvdmVyc2lvbnM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/bfcb9a04-0e3b-4774-8f1e-0ad829add39d/versions?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2JmY2I5YTA0LTBlM2ItNDc3NC04ZjFlLTBhZDgyOWFkZDM5ZC92ZXJzaW9ucz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "79433c5b-96d5-4671-a7db-68a503f5d957" + "cfb4d395-5f29-4415-93cb-7e773e75fe0f" ], "Request-Id": [ - "79433c5b-96d5-4671-a7db-68a503f5d957" + "cfb4d395-5f29-4415-93cb-7e773e75fe0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:19 GMT" + "Tue, 29 Oct 2019 13:21:58 GMT" ], "Content-Length": [ "321" @@ -117,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-08-25T19:20:19Z\",\r\n \"lastModifiedDateTime\": \"2019-08-25T19:20:19Z\",\r\n \"lastTrainedDateTime\": null,\r\n \"lastPublishedDateTime\": null,\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 1,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-10-29T13:21:58Z\",\r\n \"lastModifiedDateTime\": \"2019-10-29T13:21:58Z\",\r\n \"lastTrainedDateTime\": null,\r\n \"lastPublishedDateTime\": null,\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 1,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/abdd7a0d-3df5-4d22-946a-7b744dd03eb7/versions/0.1/customprebuiltdomains", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9hYmRkN2EwZC0zZGY1LTRkMjItOTQ2YS03Yjc0NGRkMDNlYjcvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZG9tYWlucw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/bfcb9a04-0e3b-4774-8f1e-0ad829add39d/versions/0.1/customprebuiltdomains", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2JmY2I5YTA0LTBlM2ItNDc3NC04ZjFlLTBhZDgyOWFkZDM5ZC92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRkb21haW5z", "RequestMethod": "POST", "RequestBody": "{\r\n \"domainName\": \"Communication\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -150,10 +150,10 @@ "no-cache" ], "Apim-Request-Id": [ - "1e835873-896d-46d3-85ae-b816a7b13559" + "76cae84a-9770-40b2-a725-73d2fe9e59d3" ], "Request-Id": [ - "1e835873-896d-46d3-85ae-b816a7b13559" + "76cae84a-9770-40b2-a725-73d2fe9e59d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -168,32 +168,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:23 GMT" + "Tue, 29 Oct 2019 13:22:05 GMT" ], "Content-Length": [ - "2341" + "2380" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n \"9652916f-1315-4857-84d8-82b30ca7740d\",\r\n \"19c076e4-afff-4def-9547-5732213cc069\",\r\n \"bf408784-7299-438c-bfe7-80c01c3427b3\",\r\n \"f5816d71-cdb1-41bc-97be-86edb5626f17\",\r\n \"1f540d6e-a69b-47f5-adc5-02602e082dd0\",\r\n \"74d89095-1720-4a1d-849a-cbd422c399f1\",\r\n \"26050c11-0645-471c-8040-33b72c0cabb1\",\r\n \"64616db4-c89d-4340-abdc-b833a897bff2\",\r\n \"405385a0-8c2b-4bd2-9581-cb9d2ee4c982\",\r\n \"fed9a95c-d6f6-4157-9367-38314a0bc30d\",\r\n \"f1bd4986-7823-4801-8663-2b30abf57ee0\",\r\n \"b1881fd4-3553-4e4e-9246-edd1573c6968\",\r\n \"ccfed56e-f6e1-40ed-b6af-c6837f54f305\",\r\n \"dda64a29-b1c3-4402-9b06-5671769448ae\",\r\n \"d92c8297-586d-4315-9e0e-b84532f620ab\",\r\n \"1c7eb817-beb2-4d26-950a-0d5ce90d8587\",\r\n \"515ceae7-3e30-41c0-a1d1-49d24f985fe9\",\r\n \"1e915997-0970-41d1-a71f-d8b2c932c195\",\r\n \"55585bf0-54b2-4ccb-89b8-ad6facecf101\",\r\n \"97ed63c9-a22a-4822-a0cc-61ab87eb14b5\",\r\n \"16608cad-77d3-4171-9e64-a118ce6ce7c8\",\r\n \"15e7f669-0101-4b40-84ab-efcf8999196d\",\r\n \"fc4dcd03-edbd-4f80-9d92-c0d5f6983a91\",\r\n \"f6e56172-9aca-42b8-a3f1-512410c50931\",\r\n \"a5a07e58-23bd-45f6-83e4-74ff1e80f24a\",\r\n \"13d66a36-72f6-4a36-8016-e2e44873f65c\",\r\n \"04a7ea31-5ebd-46fc-ac4c-533eae8ec60e\",\r\n \"13a15d33-8f0d-4329-8f3b-13cec38d7450\",\r\n \"567dbcde-0f2f-4662-ad71-156aa322fbf7\",\r\n \"cf01fb50-1def-4f7f-a75b-eb3dfe3d224e\",\r\n \"bca44bc9-f2ef-4779-8dc5-fc2b18f09302\",\r\n \"0591cfd0-a3b7-4652-98aa-5b66cf6eb1f4\",\r\n \"11e57ffb-cce4-44c0-9914-e04d8d926592\",\r\n \"8791b7d3-7c0f-41bf-81f1-24db19129f95\",\r\n \"edb1bf68-2f4d-4c0b-9889-ad09774ffa81\",\r\n \"3c4847ec-963a-4245-a886-05d94459b90f\",\r\n \"785a9eb2-2c5a-4c6f-ac0d-a4b64df1a104\",\r\n \"43a9c4ec-efbf-4c11-9bb6-62c689e4cf7d\",\r\n \"20ca8edb-0520-4ad6-bbca-56773fc9f307\",\r\n \"1a918f80-f13a-4d3b-80f1-082d70460480\",\r\n \"5dab23b2-9f5f-4ecc-b545-74a1985f6eb8\",\r\n \"b31eee81-d806-488e-944c-32e2224eb6b1\",\r\n \"db1d39cc-50e7-4caa-bcb0-2ac37c79acb7\",\r\n \"287f2bd6-a428-4644-99b7-1848bcfd1aa7\",\r\n \"c9fd6478-7c3f-4048-88a2-b82dbc926717\",\r\n \"140fc2c8-a974-4b8a-8b33-8641b277511e\",\r\n \"a7441b1f-4744-4c3f-af46-d0348908c7bb\",\r\n \"57086456-d25e-4f08-8cb5-acfe3934e30f\",\r\n \"9c3360aa-7cbb-4146-ad45-267e1d2b6c52\",\r\n \"dad2de65-f9c9-4de6-9d52-824f32cce18c\",\r\n \"2b492d18-ef98-4f93-ae95-b9311502fe30\",\r\n \"464445ce-6c6f-4878-9ebe-c20f631d446c\",\r\n \"933ae99c-a112-4988-b1ab-b401e4b813fb\",\r\n \"3f3f7dc1-fe67-409b-9a0d-dedddac6c54e\",\r\n \"c517050b-ba6d-4793-8ec7-12024cd6d5bf\",\r\n \"d79a55b4-55dc-4ae8-958a-222b0431246a\",\r\n \"029d6138-a109-4600-a6d4-a8e4e5b21c38\",\r\n \"570bbe12-408f-471a-ab12-50dc9f294233\",\r\n \"80a48bb6-becd-46a3-ba23-3cc37f8d6fc9\",\r\n \"a41d1a35-7916-42e3-984b-ba3cdf841ddb\"\r\n]", + "ResponseBody": "[\r\n \"018e706a-6927-4485-a6ae-6a96b47ae140\",\r\n \"c14cca2d-c4ab-45dc-af71-f534939d00a2\",\r\n \"16c3c6fe-a343-4065-a335-baa9d13a667d\",\r\n \"747353f0-0527-43a6-b352-9ba6e697a046\",\r\n \"af62e7c1-d915-4c7b-a9c8-2f3560ee0e48\",\r\n \"13d5f42f-e5db-4835-89ca-1ee9058da709\",\r\n \"c98e1553-8de8-47d8-a6a9-eb361dc5bbae\",\r\n \"23075ca0-9a67-41ff-aacc-f12219d1c9b9\",\r\n \"d66a9b22-be70-4a70-986f-dc7d5d63c620\",\r\n \"de613e82-c761-4141-a72f-c5b61c04e7cc\",\r\n \"6da05fed-56aa-4870-b749-1040f9a0a824\",\r\n \"dc43a653-e7cf-41b1-b8f5-a95fd72d0598\",\r\n \"04cf1f48-5784-4874-b057-2f4c9b9c130a\",\r\n \"7b6bfe17-6ca5-4819-8ac0-cb2037584460\",\r\n \"c0fda5b7-9a15-4390-b423-3bee9937a0b5\",\r\n \"d49ac8a0-b12c-4481-a64a-4e02ce6c6e96\",\r\n \"0b2ae434-a093-4b70-8246-3b60b9a68286\",\r\n \"25c46c9f-8306-4f6b-9452-a7000db7fa91\",\r\n \"c3327286-35e3-4463-8c31-a0a0ce7f4ac6\",\r\n \"27509957-d05f-412b-b448-e7ffbc9d3e2b\",\r\n \"055882af-cad5-4790-8850-a9c211744dc1\",\r\n \"3a2c8ba7-3610-483b-a6b2-994386a81bbf\",\r\n \"68f39468-31e2-47ec-a6c1-b184f4fe00f9\",\r\n \"5f8e0797-e1cc-46bc-bac1-e53c018dd8a5\",\r\n \"95cffbc4-dc6d-4731-a61a-50826d2f0c08\",\r\n \"a335ef7b-7cbe-4a8f-870f-7299630ce35d\",\r\n \"32a7e41f-a0b2-449b-bc52-bc267d0c2219\",\r\n \"2e7edbbd-e74d-4886-93c9-d726738ed80c\",\r\n \"efb9e7be-816e-4d9f-873b-f61b8a7148ee\",\r\n \"27003527-5f0d-4671-a19e-ea633f12ccba\",\r\n \"c31f8000-eac3-44a7-9aff-c9b97a31efd7\",\r\n \"29828852-07c7-4aa8-bd48-1c0cd07be382\",\r\n \"fcb35f76-cf57-4620-87ca-95441646e062\",\r\n \"3967aa1c-7e5e-4751-a936-deada95b0385\",\r\n \"32b861d6-82bd-4c1f-bbeb-e1759912a915\",\r\n \"f4ed1847-5250-4f0c-ae9c-c5ce99ce3065\",\r\n \"dbb74b64-a1a8-4211-bccf-7ba38a50ef74\",\r\n \"b3b782f5-e56a-44bd-be1c-5cd7041a63a3\",\r\n \"8d1fbcc9-66e1-4485-94f5-5af0723a6135\",\r\n \"ddcba468-ac03-4e18-8f67-aa2f0fe238c3\",\r\n \"008a7bdf-82d3-404e-8723-1d1876d539d6\",\r\n \"f9c511e6-cc3c-4aa7-998a-a52e22a12852\",\r\n \"82048650-322f-4222-aadd-97297217b536\",\r\n \"75a93a88-948f-4df0-8abb-9831750d09bc\",\r\n \"6e9d3a4a-c15b-4207-9df5-820835f4ece6\",\r\n \"bdbc4b15-7492-4c64-999a-2456f594aaef\",\r\n \"1bbcde19-b93d-4de3-80b6-7280dac3e143\",\r\n \"0ce6f7dd-290a-40de-a78f-4ab132327ac5\",\r\n \"c1dd38fd-648b-4029-af4d-7bdc9cac9e5a\",\r\n \"145755fb-80ad-4807-8a41-0b54b6beba28\",\r\n \"194d92f1-fa42-46ed-bb2d-0233bb017122\",\r\n \"3aca6eae-0aaa-4ef8-9c46-9c822410b0a3\",\r\n \"6a03d63b-544f-4d6b-8e15-a4ac2c72b7f6\",\r\n \"cd1bffb5-a256-478b-b9eb-25d7ad936d02\",\r\n \"e1d6d404-1f5b-441a-8ef9-d88f6092b64a\",\r\n \"281edae4-764a-4818-b904-39f2bbbc7f38\",\r\n \"67cf1ea7-2c7e-4d68-ab9f-a31f97e660db\",\r\n \"25b1b4da-f881-46cc-b209-e13494acf5c8\",\r\n \"430d418b-3783-4bf5-b315-5d47c9656469\",\r\n \"a99d98af-e9ac-4018-b6c0-aed2db08e4cf\",\r\n \"5e3f557b-5682-4c3e-8b3b-d3312b3f5ca1\"\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/abdd7a0d-3df5-4d22-946a-7b744dd03eb7/versions/0.1/customprebuiltmodels", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9hYmRkN2EwZC0zZGY1LTRkMjItOTQ2YS03Yjc0NGRkMDNlYjcvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0bW9kZWxz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/bfcb9a04-0e3b-4774-8f1e-0ad829add39d/versions/0.1/customprebuiltmodels", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2JmY2I5YTA0LTBlM2ItNDc3NC04ZjFlLTBhZDgyOWFkZDM5ZC92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRtb2RlbHM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "a331d0c3-c19d-4963-8c22-7eeb743bdda0" + "6c26529b-e93a-4b5c-bfa2-ab0843cb9ed3" ], "Request-Id": [ - "a331d0c3-c19d-4963-8c22-7eeb743bdda0" + "6c26529b-e93a-4b5c-bfa2-ab0843cb9ed3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,32 +222,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:23 GMT" + "Tue, 29 Oct 2019 13:22:05 GMT" ], "Content-Length": [ - "12155" + "12693" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"9652916f-1315-4857-84d8-82b30ca7740d\",\r\n \"name\": \"Communication.AddContact\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddContact\"\r\n },\r\n {\r\n \"id\": \"19c076e4-afff-4def-9547-5732213cc069\",\r\n \"name\": \"Communication.AddFlag\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddFlag\"\r\n },\r\n {\r\n \"id\": \"bf408784-7299-438c-bfe7-80c01c3427b3\",\r\n \"name\": \"Communication.AddMore\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddMore\"\r\n },\r\n {\r\n \"id\": \"f5816d71-cdb1-41bc-97be-86edb5626f17\",\r\n \"name\": \"Communication.Answer\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Answer\"\r\n },\r\n {\r\n \"id\": \"1f540d6e-a69b-47f5-adc5-02602e082dd0\",\r\n \"name\": \"Communication.AssignContactNickname\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AssignContactNickname\"\r\n },\r\n {\r\n \"id\": \"20ca8edb-0520-4ad6-bbca-56773fc9f307\",\r\n \"name\": \"Communication.Attachment\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Attachment\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"1a918f80-f13a-4d3b-80f1-082d70460480\",\r\n \"name\": \"Communication.AudioDeviceType\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AudioDeviceType\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"74d89095-1720-4a1d-849a-cbd422c399f1\",\r\n \"name\": \"Communication.CallBack\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CallBack\"\r\n },\r\n {\r\n \"id\": \"26050c11-0645-471c-8040-33b72c0cabb1\",\r\n \"name\": \"Communication.CallVoiceMail\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CallVoiceMail\"\r\n },\r\n {\r\n \"id\": \"64616db4-c89d-4340-abdc-b833a897bff2\",\r\n \"name\": \"Communication.Cancel\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Cancel\"\r\n },\r\n {\r\n \"id\": \"5dab23b2-9f5f-4ecc-b545-74a1985f6eb8\",\r\n \"name\": \"Communication.Category\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Category\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"405385a0-8c2b-4bd2-9581-cb9d2ee4c982\",\r\n \"name\": \"Communication.CheckIMStatus\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CheckIMStatus\"\r\n },\r\n {\r\n \"id\": \"fed9a95c-d6f6-4157-9367-38314a0bc30d\",\r\n \"name\": \"Communication.CheckMessages\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CheckMessages\"\r\n },\r\n {\r\n \"id\": \"f1bd4986-7823-4801-8663-2b30abf57ee0\",\r\n \"name\": \"Communication.Confirm\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Confirm\"\r\n },\r\n {\r\n \"id\": \"b31eee81-d806-488e-944c-32e2224eb6b1\",\r\n \"name\": \"Communication.ContactAttribute\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ContactAttribute\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"db1d39cc-50e7-4caa-bcb0-2ac37c79acb7\",\r\n \"name\": \"Communication.ContactName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ContactName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"287f2bd6-a428-4644-99b7-1848bcfd1aa7\",\r\n \"name\": \"Communication.DestinationPhone\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"DestinationPhone\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"b1881fd4-3553-4e4e-9246-edd1573c6968\",\r\n \"name\": \"Communication.Dial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Dial\"\r\n },\r\n {\r\n \"id\": \"c9fd6478-7c3f-4048-88a2-b82dbc926717\",\r\n \"name\": \"Communication.EmailPlatform\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"EmailPlatform\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"140fc2c8-a974-4b8a-8b33-8641b277511e\",\r\n \"name\": \"Communication.EmailSubject\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"EmailSubject\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"ccfed56e-f6e1-40ed-b6af-c6837f54f305\",\r\n \"name\": \"Communication.EndCall\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"EndCall\"\r\n },\r\n {\r\n \"id\": \"dda64a29-b1c3-4402-9b06-5671769448ae\",\r\n \"name\": \"Communication.FindContact\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FindContact\"\r\n },\r\n {\r\n \"id\": \"d92c8297-586d-4315-9e0e-b84532f620ab\",\r\n \"name\": \"Communication.FindSpeedDial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FindSpeedDial\"\r\n },\r\n {\r\n \"id\": \"1c7eb817-beb2-4d26-950a-0d5ce90d8587\",\r\n \"name\": \"Communication.FinishTask\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FinishTask\"\r\n },\r\n {\r\n \"id\": \"515ceae7-3e30-41c0-a1d1-49d24f985fe9\",\r\n \"name\": \"Communication.Forward\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Forward\"\r\n },\r\n {\r\n \"id\": \"a7441b1f-4744-4c3f-af46-d0348908c7bb\",\r\n \"name\": \"Communication.FromRelationshipName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FromRelationshipName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"1e915997-0970-41d1-a71f-d8b2c932c195\",\r\n \"name\": \"Communication.GetForwardingsStatus\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"GetForwardingsStatus\"\r\n },\r\n {\r\n \"id\": \"55585bf0-54b2-4ccb-89b8-ad6facecf101\",\r\n \"name\": \"Communication.GetNotifications\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"GetNotifications\"\r\n },\r\n {\r\n \"id\": \"97ed63c9-a22a-4822-a0cc-61ab87eb14b5\",\r\n \"name\": \"Communication.GoBack\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"GoBack\"\r\n },\r\n {\r\n \"id\": \"16608cad-77d3-4171-9e64-a118ce6ce7c8\",\r\n \"name\": \"Communication.Ignore\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Ignore\"\r\n },\r\n {\r\n \"id\": \"15e7f669-0101-4b40-84ab-efcf8999196d\",\r\n \"name\": \"Communication.IgnoreWithMessage\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"IgnoreWithMessage\"\r\n },\r\n {\r\n \"id\": \"57086456-d25e-4f08-8cb5-acfe3934e30f\",\r\n \"name\": \"Communication.Key\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Key\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"9c3360aa-7cbb-4146-ad45-267e1d2b6c52\",\r\n \"name\": \"Communication.Line\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Line\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"dad2de65-f9c9-4de6-9d52-824f32cce18c\",\r\n \"name\": \"Communication.Message\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Message\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"2b492d18-ef98-4f93-ae95-b9311502fe30\",\r\n \"name\": \"Communication.MessageType\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"MessageType\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"464445ce-6c6f-4878-9ebe-c20f631d446c\",\r\n \"name\": \"Communication.OrderReference\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"OrderReference\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"933ae99c-a112-4988-b1ab-b401e4b813fb\",\r\n \"name\": \"Communication.PositionReference\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"PositionReference\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"fc4dcd03-edbd-4f80-9d92-c0d5f6983a91\",\r\n \"name\": \"Communication.PressKey\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"PressKey\"\r\n },\r\n {\r\n \"id\": \"f6e56172-9aca-42b8-a3f1-512410c50931\",\r\n \"name\": \"Communication.QueryLastText\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"QueryLastText\"\r\n },\r\n {\r\n \"id\": \"a5a07e58-23bd-45f6-83e4-74ff1e80f24a\",\r\n \"name\": \"Communication.ReadAloud\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ReadAloud\"\r\n },\r\n {\r\n \"id\": \"13d66a36-72f6-4a36-8016-e2e44873f65c\",\r\n \"name\": \"Communication.Redial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Redial\"\r\n },\r\n {\r\n \"id\": \"04a7ea31-5ebd-46fc-ac4c-533eae8ec60e\",\r\n \"name\": \"Communication.Reject\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Reject\"\r\n },\r\n {\r\n \"id\": \"3f3f7dc1-fe67-409b-9a0d-dedddac6c54e\",\r\n \"name\": \"Communication.RelationshipName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"RelationshipName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"13a15d33-8f0d-4329-8f3b-13cec38d7450\",\r\n \"name\": \"Communication.Reply\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Reply\"\r\n },\r\n {\r\n \"id\": \"567dbcde-0f2f-4662-ad71-156aa322fbf7\",\r\n \"name\": \"Communication.SearchMessages\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SearchMessages\"\r\n },\r\n {\r\n \"id\": \"c517050b-ba6d-4793-8ec7-12024cd6d5bf\",\r\n \"name\": \"Communication.SearchTexts\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SearchTexts\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"cf01fb50-1def-4f7f-a75b-eb3dfe3d224e\",\r\n \"name\": \"Communication.SendEmail\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SendEmail\"\r\n },\r\n {\r\n \"id\": \"d79a55b4-55dc-4ae8-958a-222b0431246a\",\r\n \"name\": \"Communication.SenderName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SenderName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"bca44bc9-f2ef-4779-8dc5-fc2b18f09302\",\r\n \"name\": \"Communication.SendMessage\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SendMessage\"\r\n },\r\n {\r\n \"id\": \"0591cfd0-a3b7-4652-98aa-5b66cf6eb1f4\",\r\n \"name\": \"Communication.SetSpeedDial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SetSpeedDial\"\r\n },\r\n {\r\n \"id\": \"11e57ffb-cce4-44c0-9914-e04d8d926592\",\r\n \"name\": \"Communication.ShowNext\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ShowNext\"\r\n },\r\n {\r\n \"id\": \"8791b7d3-7c0f-41bf-81f1-24db19129f95\",\r\n \"name\": \"Communication.ShowPrevious\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ShowPrevious\"\r\n },\r\n {\r\n \"id\": \"029d6138-a109-4600-a6d4-a8e4e5b21c38\",\r\n \"name\": \"Communication.SpeedDial\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SpeedDial\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"edb1bf68-2f4d-4c0b-9889-ad09774ffa81\",\r\n \"name\": \"Communication.TurnForwardingOff\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnForwardingOff\"\r\n },\r\n {\r\n \"id\": \"3c4847ec-963a-4245-a886-05d94459b90f\",\r\n \"name\": \"Communication.TurnForwardingOn\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnForwardingOn\"\r\n },\r\n {\r\n \"id\": \"785a9eb2-2c5a-4c6f-ac0d-a4b64df1a104\",\r\n \"name\": \"Communication.TurnSpeakerOff\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnSpeakerOff\"\r\n },\r\n {\r\n \"id\": \"43a9c4ec-efbf-4c11-9bb6-62c689e4cf7d\",\r\n \"name\": \"Communication.TurnSpeakerOn\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnSpeakerOn\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"018e706a-6927-4485-a6ae-6a96b47ae140\",\r\n \"name\": \"Communication.AddContact\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddContact\"\r\n },\r\n {\r\n \"id\": \"747353f0-0527-43a6-b352-9ba6e697a046\",\r\n \"name\": \"Communication.AddFlag\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddFlag\"\r\n },\r\n {\r\n \"id\": \"af62e7c1-d915-4c7b-a9c8-2f3560ee0e48\",\r\n \"name\": \"Communication.AddMore\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddMore\"\r\n },\r\n {\r\n \"id\": \"13d5f42f-e5db-4835-89ca-1ee9058da709\",\r\n \"name\": \"Communication.Answer\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Answer\"\r\n },\r\n {\r\n \"id\": \"c98e1553-8de8-47d8-a6a9-eb361dc5bbae\",\r\n \"name\": \"Communication.AssignContactNickname\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AssignContactNickname\"\r\n },\r\n {\r\n \"id\": \"145755fb-80ad-4807-8a41-0b54b6beba28\",\r\n \"name\": \"Communication.Attachment\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Attachment\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"194d92f1-fa42-46ed-bb2d-0233bb017122\",\r\n \"name\": \"Communication.AudioDeviceType\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AudioDeviceType\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"23075ca0-9a67-41ff-aacc-f12219d1c9b9\",\r\n \"name\": \"Communication.CallBack\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CallBack\"\r\n },\r\n {\r\n \"id\": \"d66a9b22-be70-4a70-986f-dc7d5d63c620\",\r\n \"name\": \"Communication.CallVoiceMail\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CallVoiceMail\"\r\n },\r\n {\r\n \"id\": \"de613e82-c761-4141-a72f-c5b61c04e7cc\",\r\n \"name\": \"Communication.Cancel\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Cancel\"\r\n },\r\n {\r\n \"id\": \"3aca6eae-0aaa-4ef8-9c46-9c822410b0a3\",\r\n \"name\": \"Communication.Category\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Category\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"6da05fed-56aa-4870-b749-1040f9a0a824\",\r\n \"name\": \"Communication.CheckIMStatus\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CheckIMStatus\"\r\n },\r\n {\r\n \"id\": \"dc43a653-e7cf-41b1-b8f5-a95fd72d0598\",\r\n \"name\": \"Communication.CheckMessages\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CheckMessages\"\r\n },\r\n {\r\n \"id\": \"04cf1f48-5784-4874-b057-2f4c9b9c130a\",\r\n \"name\": \"Communication.Confirm\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Confirm\"\r\n },\r\n {\r\n \"id\": \"c3327286-35e3-4463-8c31-a0a0ce7f4ac6\",\r\n \"name\": \"Communication.ContactAttribute\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ContactAttribute\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"c14cca2d-c4ab-45dc-af71-f534939d00a2\",\r\n \"name\": \"Communication.ContactName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ContactName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"6a03d63b-544f-4d6b-8e15-a4ac2c72b7f6\",\r\n \"name\": \"Communication.DestinationPhone\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"DestinationPhone\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"7b6bfe17-6ca5-4819-8ac0-cb2037584460\",\r\n \"name\": \"Communication.Dial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Dial\"\r\n },\r\n {\r\n \"id\": \"8d1fbcc9-66e1-4485-94f5-5af0723a6135\",\r\n \"name\": \"Communication.EmailSubject\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"EmailSubject\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"a99d98af-e9ac-4018-b6c0-aed2db08e4cf\",\r\n \"name\": \"Communication.EmailSubject.any\",\r\n \"typeId\": 7,\r\n \"readableType\": \"Pattern.Any Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"EmailSubject.any\",\r\n \"explicitList\": [],\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"c0fda5b7-9a15-4390-b423-3bee9937a0b5\",\r\n \"name\": \"Communication.EndCall\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"EndCall\"\r\n },\r\n {\r\n \"id\": \"d49ac8a0-b12c-4481-a64a-4e02ce6c6e96\",\r\n \"name\": \"Communication.FindContact\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FindContact\"\r\n },\r\n {\r\n \"id\": \"0b2ae434-a093-4b70-8246-3b60b9a68286\",\r\n \"name\": \"Communication.FindSpeedDial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FindSpeedDial\"\r\n },\r\n {\r\n \"id\": \"27509957-d05f-412b-b448-e7ffbc9d3e2b\",\r\n \"name\": \"Communication.FinishTask\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FinishTask\"\r\n },\r\n {\r\n \"id\": \"055882af-cad5-4790-8850-a9c211744dc1\",\r\n \"name\": \"Communication.Forward\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Forward\"\r\n },\r\n {\r\n \"id\": \"cd1bffb5-a256-478b-b9eb-25d7ad936d02\",\r\n \"name\": \"Communication.FromRelationshipName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FromRelationshipName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"3a2c8ba7-3610-483b-a6b2-994386a81bbf\",\r\n \"name\": \"Communication.GetForwardingsStatus\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"GetForwardingsStatus\"\r\n },\r\n {\r\n \"id\": \"68f39468-31e2-47ec-a6c1-b184f4fe00f9\",\r\n \"name\": \"Communication.GetNotifications\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"GetNotifications\"\r\n },\r\n {\r\n \"id\": \"5f8e0797-e1cc-46bc-bac1-e53c018dd8a5\",\r\n \"name\": \"Communication.GoBack\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"GoBack\"\r\n },\r\n {\r\n \"id\": \"a335ef7b-7cbe-4a8f-870f-7299630ce35d\",\r\n \"name\": \"Communication.Ignore\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Ignore\"\r\n },\r\n {\r\n \"id\": \"32a7e41f-a0b2-449b-bc52-bc267d0c2219\",\r\n \"name\": \"Communication.IgnoreWithMessage\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"IgnoreWithMessage\"\r\n },\r\n {\r\n \"id\": \"e1d6d404-1f5b-441a-8ef9-d88f6092b64a\",\r\n \"name\": \"Communication.Key\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Key\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"281edae4-764a-4818-b904-39f2bbbc7f38\",\r\n \"name\": \"Communication.Line\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Line\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"f4ed1847-5250-4f0c-ae9c-c5ce99ce3065\",\r\n \"name\": \"Communication.Message\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Message\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"5e3f557b-5682-4c3e-8b3b-d3312b3f5ca1\",\r\n \"name\": \"Communication.Message.any\",\r\n \"typeId\": 7,\r\n \"readableType\": \"Pattern.Any Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Message.any\",\r\n \"explicitList\": [],\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"2e7edbbd-e74d-4886-93c9-d726738ed80c\",\r\n \"name\": \"Communication.MessageType\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"MessageType\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"95cffbc4-dc6d-4731-a61a-50826d2f0c08\",\r\n \"name\": \"Communication.OrderReference\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"OrderReference\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"67cf1ea7-2c7e-4d68-ab9f-a31f97e660db\",\r\n \"name\": \"Communication.PositionReference\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"PositionReference\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"efb9e7be-816e-4d9f-873b-f61b8a7148ee\",\r\n \"name\": \"Communication.PressKey\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"PressKey\"\r\n },\r\n {\r\n \"id\": \"27003527-5f0d-4671-a19e-ea633f12ccba\",\r\n \"name\": \"Communication.QueryLastText\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"QueryLastText\"\r\n },\r\n {\r\n \"id\": \"c31f8000-eac3-44a7-9aff-c9b97a31efd7\",\r\n \"name\": \"Communication.ReadAloud\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ReadAloud\"\r\n },\r\n {\r\n \"id\": \"29828852-07c7-4aa8-bd48-1c0cd07be382\",\r\n \"name\": \"Communication.Redial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Redial\"\r\n },\r\n {\r\n \"id\": \"fcb35f76-cf57-4620-87ca-95441646e062\",\r\n \"name\": \"Communication.Reject\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Reject\"\r\n },\r\n {\r\n \"id\": \"ddcba468-ac03-4e18-8f67-aa2f0fe238c3\",\r\n \"name\": \"Communication.RelationshipName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"RelationshipName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"3967aa1c-7e5e-4751-a936-deada95b0385\",\r\n \"name\": \"Communication.Reply\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Reply\"\r\n },\r\n {\r\n \"id\": \"dbb74b64-a1a8-4211-bccf-7ba38a50ef74\",\r\n \"name\": \"Communication.SearchMessages\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SearchMessages\"\r\n },\r\n {\r\n \"id\": \"25b1b4da-f881-46cc-b209-e13494acf5c8\",\r\n \"name\": \"Communication.SearchTexts\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SearchTexts\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"b3b782f5-e56a-44bd-be1c-5cd7041a63a3\",\r\n \"name\": \"Communication.SendEmail\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SendEmail\"\r\n },\r\n {\r\n \"id\": \"32b861d6-82bd-4c1f-bbeb-e1759912a915\",\r\n \"name\": \"Communication.SenderName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SenderName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"f9c511e6-cc3c-4aa7-998a-a52e22a12852\",\r\n \"name\": \"Communication.SendMessage\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SendMessage\"\r\n },\r\n {\r\n \"id\": \"82048650-322f-4222-aadd-97297217b536\",\r\n \"name\": \"Communication.SetSpeedDial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SetSpeedDial\"\r\n },\r\n {\r\n \"id\": \"75a93a88-948f-4df0-8abb-9831750d09bc\",\r\n \"name\": \"Communication.ShowNext\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ShowNext\"\r\n },\r\n {\r\n \"id\": \"6e9d3a4a-c15b-4207-9df5-820835f4ece6\",\r\n \"name\": \"Communication.ShowPrevious\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ShowPrevious\"\r\n },\r\n {\r\n \"id\": \"25c46c9f-8306-4f6b-9452-a7000db7fa91\",\r\n \"name\": \"Communication.SpeedDial\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SpeedDial\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"bdbc4b15-7492-4c64-999a-2456f594aaef\",\r\n \"name\": \"Communication.TurnForwardingOff\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnForwardingOff\"\r\n },\r\n {\r\n \"id\": \"1bbcde19-b93d-4de3-80b6-7280dac3e143\",\r\n \"name\": \"Communication.TurnForwardingOn\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnForwardingOn\"\r\n },\r\n {\r\n \"id\": \"0ce6f7dd-290a-40de-a78f-4ab132327ac5\",\r\n \"name\": \"Communication.TurnSpeakerOff\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnSpeakerOff\"\r\n },\r\n {\r\n \"id\": \"c1dd38fd-648b-4029-af4d-7bdc9cac9e5a\",\r\n \"name\": \"Communication.TurnSpeakerOn\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnSpeakerOn\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/abdd7a0d-3df5-4d22-946a-7b744dd03eb7/versions/0.1/customprebuiltmodels", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9hYmRkN2EwZC0zZGY1LTRkMjItOTQ2YS03Yjc0NGRkMDNlYjcvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0bW9kZWxz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/bfcb9a04-0e3b-4774-8f1e-0ad829add39d/versions/0.1/customprebuiltmodels", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2JmY2I5YTA0LTBlM2ItNDc3NC04ZjFlLTBhZDgyOWFkZDM5ZC92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRtb2RlbHM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -258,10 +258,10 @@ "no-cache" ], "Apim-Request-Id": [ - "ef28ef8b-5252-4b37-9d55-416b672d7fa0" + "164f19a6-3d60-40d0-b3ab-27a6b846fb00" ], "Request-Id": [ - "ef28ef8b-5252-4b37-9d55-416b672d7fa0" + "164f19a6-3d60-40d0-b3ab-27a6b846fb00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -276,7 +276,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:43 GMT" + "Tue, 29 Oct 2019 13:22:28 GMT" ], "Content-Length": [ "2" @@ -289,19 +289,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/abdd7a0d-3df5-4d22-946a-7b744dd03eb7/versions/0.1/customprebuiltdomains/Communication", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9hYmRkN2EwZC0zZGY1LTRkMjItOTQ2YS03Yjc0NGRkMDNlYjcvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZG9tYWlucy9Db21tdW5pY2F0aW9u", + "RequestUri": "/luis/authoring/v3.0-preview/apps/bfcb9a04-0e3b-4774-8f1e-0ad829add39d/versions/0.1/customprebuiltdomains/Communication", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2JmY2I5YTA0LTBlM2ItNDc3NC04ZjFlLTBhZDgyOWFkZDM5ZC92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRkb21haW5zL0NvbW11bmljYXRpb24=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -312,10 +312,10 @@ "no-cache" ], "Apim-Request-Id": [ - "6f7b9a50-c97e-40ba-8455-400c3ea8116d" + "9c663210-9276-49aa-85ae-07ceadfa8a0f" ], "Request-Id": [ - "6f7b9a50-c97e-40ba-8455-400c3ea8116d" + "9c663210-9276-49aa-85ae-07ceadfa8a0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -330,7 +330,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:43 GMT" + "Tue, 29 Oct 2019 13:22:28 GMT" ], "Content-Length": [ "51" @@ -343,19 +343,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/abdd7a0d-3df5-4d22-946a-7b744dd03eb7?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9hYmRkN2EwZC0zZGY1LTRkMjItOTQ2YS03Yjc0NGRkMDNlYjc/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/bfcb9a04-0e3b-4774-8f1e-0ad829add39d?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2JmY2I5YTA0LTBlM2ItNDc3NC04ZjFlLTBhZDgyOWFkZDM5ZD9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -366,10 +366,10 @@ "no-cache" ], "Apim-Request-Id": [ - "87e974da-6b6d-450b-9f30-7f302d2e116e" + "50cd5223-986d-40e1-ac23-8273488c8fdc" ], "Request-Id": [ - "87e974da-6b6d-450b-9f30-7f302d2e116e" + "50cd5223-986d-40e1-ac23-8273488c8fdc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -384,7 +384,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:44 GMT" + "Tue, 29 Oct 2019 13:22:29 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/ListCustomPrebuiltEntities.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/ListCustomPrebuiltEntities.json index ff9bf467ee73..b8458c98c798 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/ListCustomPrebuiltEntities.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/ListCustomPrebuiltEntities.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"culture\": \"en-us\",\r\n \"domain\": \"Comics\",\r\n \"description\": \"New LUIS App\",\r\n \"usageScenario\": \"IoT\",\r\n \"name\": \"New LUIS App\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/2596f6bc-3103-4744-94f0-3515705b6803" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/88556186-0ade-420a-ab90-27e22d6368a7" ], "Apim-Request-Id": [ - "ada33566-ce15-4929-8d50-47212163bf02" + "2b20f19e-cfad-421a-a77e-50b12c938ea0" ], "Request-Id": [ - "ada33566-ce15-4929-8d50-47212163bf02" + "2b20f19e-cfad-421a-a77e-50b12c938ea0" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/2596f6bc-3103-4744-94f0-3515705b6803" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/88556186-0ade-420a-ab90-27e22d6368a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:19:06 GMT" + "Tue, 29 Oct 2019 13:20:05 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"2596f6bc-3103-4744-94f0-3515705b6803\"", + "ResponseBody": "\"88556186-0ade-420a-ab90-27e22d6368a7\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/2596f6bc-3103-4744-94f0-3515705b6803/versions?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8yNTk2ZjZiYy0zMTAzLTQ3NDQtOTRmMC0zNTE1NzA1YjY4MDMvdmVyc2lvbnM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/88556186-0ade-420a-ab90-27e22d6368a7/versions?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzg4NTU2MTg2LTBhZGUtNDIwYS1hYjkwLTI3ZTIyZDYzNjhhNy92ZXJzaW9ucz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "c0c1d513-6ebd-4b6a-9673-647cc6de6791" + "147f3210-fd15-411f-9ca4-8041aa2ca704" ], "Request-Id": [ - "c0c1d513-6ebd-4b6a-9673-647cc6de6791" + "147f3210-fd15-411f-9ca4-8041aa2ca704" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:19:06 GMT" + "Tue, 29 Oct 2019 13:20:05 GMT" ], "Content-Length": [ "321" @@ -117,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-08-25T19:19:06Z\",\r\n \"lastModifiedDateTime\": \"2019-08-25T19:19:06Z\",\r\n \"lastTrainedDateTime\": null,\r\n \"lastPublishedDateTime\": null,\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 1,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-10-29T13:20:06Z\",\r\n \"lastModifiedDateTime\": \"2019-10-29T13:20:06Z\",\r\n \"lastTrainedDateTime\": null,\r\n \"lastPublishedDateTime\": null,\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 1,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/2596f6bc-3103-4744-94f0-3515705b6803/versions/0.1/customprebuiltdomains", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8yNTk2ZjZiYy0zMTAzLTQ3NDQtOTRmMC0zNTE1NzA1YjY4MDMvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZG9tYWlucw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/88556186-0ade-420a-ab90-27e22d6368a7/versions/0.1/customprebuiltdomains", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzg4NTU2MTg2LTBhZGUtNDIwYS1hYjkwLTI3ZTIyZDYzNjhhNy92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRkb21haW5z", "RequestMethod": "POST", "RequestBody": "{\r\n \"domainName\": \"Communication\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -150,10 +150,10 @@ "no-cache" ], "Apim-Request-Id": [ - "6763fdab-2862-4b50-8d7b-36d4729b52ba" + "f68e5c80-b3ed-4557-93bb-ed05a71b2250" ], "Request-Id": [ - "6763fdab-2862-4b50-8d7b-36d4729b52ba" + "f68e5c80-b3ed-4557-93bb-ed05a71b2250" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -168,32 +168,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:19:10 GMT" + "Tue, 29 Oct 2019 13:20:13 GMT" ], "Content-Length": [ - "2341" + "2380" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n \"6740b3b5-cba8-42d4-bd41-198eca21d5d7\",\r\n \"b0b914be-024e-4580-89a0-995f34d25f6c\",\r\n \"8e89acb3-b309-483d-ba44-8cc4da03c855\",\r\n \"760b489b-076d-48ba-9836-bc7835521a1f\",\r\n \"b9f7ae77-5dcf-4883-a07a-1d432a6c55f8\",\r\n \"d2140155-2f8d-4f77-913b-c8a857a32c25\",\r\n \"4a44d01d-28b5-4c5e-a468-d0b6d2d916c9\",\r\n \"d49efd21-3a2b-4888-9863-e38844e60868\",\r\n \"4e54d9ab-e8d3-4e08-9d98-31964e9c74c4\",\r\n \"aa9d3803-f450-41f4-bdad-f166f1d44e98\",\r\n \"69d2c158-367a-4edf-ae96-67ec4f079858\",\r\n \"ec6f5793-df86-47cf-bdef-ec2678618927\",\r\n \"8c8727c5-77bf-4ece-a4f7-ec53736c3679\",\r\n \"43769c2a-6ed0-4d88-8ce7-ff19dbd336e2\",\r\n \"c3848250-2077-422e-943a-42d870031666\",\r\n \"ce28366c-a606-4a37-92d1-5ec7aeba8e0a\",\r\n \"48235a36-160d-4570-8c79-045acb40528c\",\r\n \"528b8088-1050-492e-bd8b-a611164d8d19\",\r\n \"b2a868df-ef9c-452b-93b9-a6bc6a0bb595\",\r\n \"d5a78bad-95fd-429b-80d7-16d7a816a60d\",\r\n \"55bcbab9-de66-465b-9938-6a030ce4131a\",\r\n \"047927ff-f68b-4e2e-a158-161a856705bc\",\r\n \"65cd5c6a-815b-48f3-a2cc-c54674d3f22d\",\r\n \"7b5e9a65-c9b0-4f99-91a5-81cc65c3004d\",\r\n \"7dee2720-26f0-4c41-849e-60353599573f\",\r\n \"35005c58-0073-466a-b72d-a3f93e5cf0fb\",\r\n \"78258cca-91f5-49e1-81e3-83c2aa3d2553\",\r\n \"705f0867-1aa1-45d9-be11-02765d89c088\",\r\n \"2536e669-bf7d-43cb-8c62-ee6d92c49730\",\r\n \"eb35a4f2-34ff-4e00-b04d-d4f092952363\",\r\n \"5bdd0067-bae6-4efe-86b2-24156277631c\",\r\n \"bfbdddbd-515f-47f0-ab2b-e77770290637\",\r\n \"7fdd63d3-6762-493d-8a21-1e82b001909a\",\r\n \"4f0fbc46-8671-4a34-9844-6746f917d814\",\r\n \"3e2322e8-ad82-40a3-a7cd-a78b6cea4051\",\r\n \"57afa160-74b7-4080-ad74-d6de6c552263\",\r\n \"474d7b97-3246-4920-b43b-d2434e4991f7\",\r\n \"98015143-7ef1-424a-bab4-f96777b759a9\",\r\n \"5bf95b85-73bc-4d8f-b260-7b7113a711bc\",\r\n \"81b34bb0-29a7-40fb-8826-e64dc9faa249\",\r\n \"d17178d1-1c2a-435d-8ef1-fe8ff7245e4e\",\r\n \"a34f7533-d7ac-4ae8-ab9a-968195140f43\",\r\n \"adacf5f4-0dae-4523-b527-18fa22be9342\",\r\n \"e1eaeb2c-88ab-41f5-aced-402c9e9198ed\",\r\n \"c7cc8d3b-69c4-4c51-b8ff-980dc1995ba7\",\r\n \"353559a8-80fd-4775-8c1d-20dfdedf9a32\",\r\n \"e3b49142-b56e-4872-bb0b-1dc350fe04bf\",\r\n \"d155e7c9-40d3-4ff2-a929-39cbaa4fd435\",\r\n \"222a08b0-f7be-4e9a-93a7-2e0291fe502d\",\r\n \"101df4cc-8036-41cd-9a39-9ecd1368506f\",\r\n \"f73a656a-c1a9-4c6c-8e84-19d9e889bfff\",\r\n \"09cbcc9c-a9da-4dc7-8814-62fe05685dea\",\r\n \"548710a6-913d-48fd-9744-b611f9419728\",\r\n \"b4ae87b4-111a-4eba-8272-864e837c68df\",\r\n \"4807482a-d33a-40da-8f70-86b0cb199ed2\",\r\n \"61443b67-bcb2-4297-9a7e-083094196ee4\",\r\n \"bcc7bfed-e401-4f6c-abda-587d125d5e48\",\r\n \"c2c88df2-d06c-4070-8951-853751001fe2\",\r\n \"fc6e01cf-b75a-4a93-bebd-bbff82089f6c\",\r\n \"db8852b1-327e-422a-90e8-8a38e782aef7\"\r\n]", + "ResponseBody": "[\r\n \"2a20240a-3271-4175-8f54-8921e15c4a2e\",\r\n \"03fbb3c6-e708-420e-8bb9-f7c60f3d5d39\",\r\n \"599b7393-11c4-4518-ad74-ca4cee3fca77\",\r\n \"e542c688-9167-499d-819b-ff4deb0bd2cf\",\r\n \"c4e61188-ab59-4001-a996-5dbcb6cc6f5c\",\r\n \"96e2518c-cbf4-4c7b-9fce-1380d6834e96\",\r\n \"45d1eba6-e606-4a5b-a615-18100463ee36\",\r\n \"2f7c478c-2e80-4e83-9de6-4eef8aa9f94e\",\r\n \"cbbdfe48-4362-4888-8063-92658648c71b\",\r\n \"c48a7ff8-bcbc-4e30-995d-b993a1d4efc8\",\r\n \"fedb90b1-10a4-4d2c-b6ab-23433a7b9966\",\r\n \"be0bd1d2-4d2a-4adb-86fa-b843293b4831\",\r\n \"c406f6ff-8ab5-4ab6-82b3-5e38c4a704b9\",\r\n \"930d6cca-2563-4afe-bd54-eec867db58a6\",\r\n \"75b3bb25-8a3a-479a-99fd-83e326b1c55a\",\r\n \"a4406f00-7846-43fc-b611-86750c0def07\",\r\n \"dda3f632-fce4-4716-8d2f-73b44b640956\",\r\n \"921c7408-22b4-4fe2-8a96-36b87e98490b\",\r\n \"50774f51-c006-4bbb-8b1b-3d2ccb707905\",\r\n \"91c98e3a-47c3-4d4b-93ef-b23b654022bb\",\r\n \"03acfd06-a425-4103-b5c4-26e92e30ade1\",\r\n \"89d049eb-fb72-4b60-8472-4341a6c296f2\",\r\n \"6ad45dc8-bf88-4e0e-adb0-8b1690383310\",\r\n \"98e964fd-11a6-401f-a917-a08073afdcea\",\r\n \"d2185342-87f2-4d43-aee5-b630711f667a\",\r\n \"d43a7e47-3ce7-4a43-a393-0cfacdb6f882\",\r\n \"ae3fc0ec-fd05-4c45-b43a-a5d54a70fa9d\",\r\n \"9bc2d7a3-77fe-41a7-8c5e-b77aee127f15\",\r\n \"9cce582d-50c9-490f-8b4b-ae6c26c66fbb\",\r\n \"4e8cd3e2-b746-4001-9ab3-5639486f0162\",\r\n \"7373b4ee-520a-44ac-b7f5-c4a4824e6744\",\r\n \"f47c1e28-e256-4ac1-b9e5-b7963e584ee0\",\r\n \"5b46254d-9f3b-4f30-bfea-2893d1198ea4\",\r\n \"a082eddc-31c0-4e85-9b43-1d983a532202\",\r\n \"b8121ab2-a520-4a4d-9695-f8ee70c2a904\",\r\n \"89fe2874-6e8f-48ff-bb60-791be1752449\",\r\n \"9a00043a-66f0-4ede-997c-00182a8b9af7\",\r\n \"d5530f3f-6928-41b3-9f77-64db11cb2c8a\",\r\n \"1badb00e-51c9-46fe-a9e9-1a7198229f0a\",\r\n \"62d46642-3b61-4044-8d55-e9cba37f1daa\",\r\n \"4cc3b7f0-2b3d-4f80-bdcf-5b865c0bb618\",\r\n \"2d528695-a0ee-4d3f-af7f-194603f67c7f\",\r\n \"69668791-d68e-48f4-b3c0-83b2f42451c1\",\r\n \"82962e36-d4b0-4a48-91d6-a987143aad94\",\r\n \"94e05814-ef02-483a-a629-4f502d1dcb23\",\r\n \"8d65d06c-8921-4d3f-992f-9e4717e7da6c\",\r\n \"8410863d-f99c-4343-8df7-498fa94b4284\",\r\n \"b1ebd628-6ea0-4f8f-83bc-3a56d572bd0f\",\r\n \"15c2f184-4981-4361-9d55-e8ad5ae95f8d\",\r\n \"1a659fed-38ee-4de8-8d30-2caf9dc4d252\",\r\n \"b7991904-1017-4853-9b0e-c69c86f3f731\",\r\n \"152f5ffe-e245-4dac-bd7e-d3aa663df349\",\r\n \"bc4018c8-35cb-4793-8e52-9ef36cf39dc2\",\r\n \"2b816c47-4d4b-4b9e-9305-02d4eb395ac4\",\r\n \"1f25b262-5745-4bdd-92ea-25997cb9bd83\",\r\n \"e3fc6a6c-e15b-402e-b7b1-c7c62ceb1c73\",\r\n \"a802ef7f-2c3b-4dc2-b23b-ba7ad08c6314\",\r\n \"05fb5e8b-80e1-41f5-8127-ddd06b720808\",\r\n \"e7788d4d-4583-44ba-8d2f-4dfb924e11b9\",\r\n \"b358f4c6-1954-46ab-8112-db07d3a0d36b\",\r\n \"31ac0522-ec44-4fcf-b4c6-ff6f87ef2966\"\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/2596f6bc-3103-4744-94f0-3515705b6803/versions/0.1/customprebuiltentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8yNTk2ZjZiYy0zMTAzLTQ3NDQtOTRmMC0zNTE1NzA1YjY4MDMvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZW50aXRpZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/88556186-0ade-420a-ab90-27e22d6368a7/versions/0.1/customprebuiltentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzg4NTU2MTg2LTBhZGUtNDIwYS1hYjkwLTI3ZTIyZDYzNjhhNy92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRlbnRpdGllcw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "ec325e9c-7bc4-4b26-b7ed-a4a385f518a9" + "62139296-ccd0-45e1-81cb-695b5e7174b1" ], "Request-Id": [ - "ec325e9c-7bc4-4b26-b7ed-a4a385f518a9" + "62139296-ccd0-45e1-81cb-695b5e7174b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,32 +222,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:19:11 GMT" + "Tue, 29 Oct 2019 13:20:13 GMT" ], "Content-Length": [ - "4209" + "4747" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"5bf95b85-73bc-4d8f-b260-7b7113a711bc\",\r\n \"name\": \"Communication.Attachment\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Attachment\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"81b34bb0-29a7-40fb-8826-e64dc9faa249\",\r\n \"name\": \"Communication.AudioDeviceType\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AudioDeviceType\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"d17178d1-1c2a-435d-8ef1-fe8ff7245e4e\",\r\n \"name\": \"Communication.Category\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Category\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"a34f7533-d7ac-4ae8-ab9a-968195140f43\",\r\n \"name\": \"Communication.ContactAttribute\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ContactAttribute\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"adacf5f4-0dae-4523-b527-18fa22be9342\",\r\n \"name\": \"Communication.ContactName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ContactName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"e1eaeb2c-88ab-41f5-aced-402c9e9198ed\",\r\n \"name\": \"Communication.DestinationPhone\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"DestinationPhone\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"c7cc8d3b-69c4-4c51-b8ff-980dc1995ba7\",\r\n \"name\": \"Communication.EmailPlatform\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"EmailPlatform\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"353559a8-80fd-4775-8c1d-20dfdedf9a32\",\r\n \"name\": \"Communication.EmailSubject\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"EmailSubject\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"e3b49142-b56e-4872-bb0b-1dc350fe04bf\",\r\n \"name\": \"Communication.FromRelationshipName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FromRelationshipName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"d155e7c9-40d3-4ff2-a929-39cbaa4fd435\",\r\n \"name\": \"Communication.Key\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Key\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"222a08b0-f7be-4e9a-93a7-2e0291fe502d\",\r\n \"name\": \"Communication.Line\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Line\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"101df4cc-8036-41cd-9a39-9ecd1368506f\",\r\n \"name\": \"Communication.Message\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Message\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"f73a656a-c1a9-4c6c-8e84-19d9e889bfff\",\r\n \"name\": \"Communication.MessageType\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"MessageType\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"09cbcc9c-a9da-4dc7-8814-62fe05685dea\",\r\n \"name\": \"Communication.OrderReference\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"OrderReference\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"548710a6-913d-48fd-9744-b611f9419728\",\r\n \"name\": \"Communication.PositionReference\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"PositionReference\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"b4ae87b4-111a-4eba-8272-864e837c68df\",\r\n \"name\": \"Communication.RelationshipName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"RelationshipName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"4807482a-d33a-40da-8f70-86b0cb199ed2\",\r\n \"name\": \"Communication.SearchTexts\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SearchTexts\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"61443b67-bcb2-4297-9a7e-083094196ee4\",\r\n \"name\": \"Communication.SenderName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SenderName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"bcc7bfed-e401-4f6c-abda-587d125d5e48\",\r\n \"name\": \"Communication.SpeedDial\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SpeedDial\",\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"1a659fed-38ee-4de8-8d30-2caf9dc4d252\",\r\n \"name\": \"Communication.Attachment\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Attachment\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"b7991904-1017-4853-9b0e-c69c86f3f731\",\r\n \"name\": \"Communication.AudioDeviceType\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AudioDeviceType\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"152f5ffe-e245-4dac-bd7e-d3aa663df349\",\r\n \"name\": \"Communication.Category\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Category\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"50774f51-c006-4bbb-8b1b-3d2ccb707905\",\r\n \"name\": \"Communication.ContactAttribute\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ContactAttribute\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"03fbb3c6-e708-420e-8bb9-f7c60f3d5d39\",\r\n \"name\": \"Communication.ContactName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ContactName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"bc4018c8-35cb-4793-8e52-9ef36cf39dc2\",\r\n \"name\": \"Communication.DestinationPhone\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"DestinationPhone\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"1badb00e-51c9-46fe-a9e9-1a7198229f0a\",\r\n \"name\": \"Communication.EmailSubject\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"EmailSubject\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"b358f4c6-1954-46ab-8112-db07d3a0d36b\",\r\n \"name\": \"Communication.EmailSubject.any\",\r\n \"typeId\": 7,\r\n \"readableType\": \"Pattern.Any Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"EmailSubject.any\",\r\n \"explicitList\": [],\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"2b816c47-4d4b-4b9e-9305-02d4eb395ac4\",\r\n \"name\": \"Communication.FromRelationshipName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FromRelationshipName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"1f25b262-5745-4bdd-92ea-25997cb9bd83\",\r\n \"name\": \"Communication.Key\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Key\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"e3fc6a6c-e15b-402e-b7b1-c7c62ceb1c73\",\r\n \"name\": \"Communication.Line\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Line\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"89fe2874-6e8f-48ff-bb60-791be1752449\",\r\n \"name\": \"Communication.Message\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Message\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"31ac0522-ec44-4fcf-b4c6-ff6f87ef2966\",\r\n \"name\": \"Communication.Message.any\",\r\n \"typeId\": 7,\r\n \"readableType\": \"Pattern.Any Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Message.any\",\r\n \"explicitList\": [],\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"9bc2d7a3-77fe-41a7-8c5e-b77aee127f15\",\r\n \"name\": \"Communication.MessageType\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"MessageType\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"d2185342-87f2-4d43-aee5-b630711f667a\",\r\n \"name\": \"Communication.OrderReference\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"OrderReference\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"a802ef7f-2c3b-4dc2-b23b-ba7ad08c6314\",\r\n \"name\": \"Communication.PositionReference\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"PositionReference\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"62d46642-3b61-4044-8d55-e9cba37f1daa\",\r\n \"name\": \"Communication.RelationshipName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"RelationshipName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"05fb5e8b-80e1-41f5-8127-ddd06b720808\",\r\n \"name\": \"Communication.SearchTexts\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SearchTexts\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"b8121ab2-a520-4a4d-9695-f8ee70c2a904\",\r\n \"name\": \"Communication.SenderName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SenderName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"921c7408-22b4-4fe2-8a96-36b87e98490b\",\r\n \"name\": \"Communication.SpeedDial\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SpeedDial\",\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/2596f6bc-3103-4744-94f0-3515705b6803/versions/0.1/customprebuiltdomains/Communication", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8yNTk2ZjZiYy0zMTAzLTQ3NDQtOTRmMC0zNTE1NzA1YjY4MDMvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZG9tYWlucy9Db21tdW5pY2F0aW9u", + "RequestUri": "/luis/authoring/v3.0-preview/apps/88556186-0ade-420a-ab90-27e22d6368a7/versions/0.1/customprebuiltdomains/Communication", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzg4NTU2MTg2LTBhZGUtNDIwYS1hYjkwLTI3ZTIyZDYzNjhhNy92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRkb21haW5zL0NvbW11bmljYXRpb24=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -258,10 +258,10 @@ "no-cache" ], "Apim-Request-Id": [ - "20aa55e1-19e6-4c28-ad50-4c1dd903e862" + "ac620793-e13e-48e3-a741-a11816a99207" ], "Request-Id": [ - "20aa55e1-19e6-4c28-ad50-4c1dd903e862" + "ac620793-e13e-48e3-a741-a11816a99207" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -276,7 +276,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:19:27 GMT" + "Tue, 29 Oct 2019 13:20:37 GMT" ], "Content-Length": [ "51" @@ -289,19 +289,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/2596f6bc-3103-4744-94f0-3515705b6803?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8yNTk2ZjZiYy0zMTAzLTQ3NDQtOTRmMC0zNTE1NzA1YjY4MDM/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/88556186-0ade-420a-ab90-27e22d6368a7?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzg4NTU2MTg2LTBhZGUtNDIwYS1hYjkwLTI3ZTIyZDYzNjhhNz9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -312,10 +312,10 @@ "no-cache" ], "Apim-Request-Id": [ - "d6ecc58b-ce8d-4364-a4c6-e2ed79a597b0" + "3ea36f5c-be16-47b7-b23a-62d281136d45" ], "Request-Id": [ - "d6ecc58b-ce8d-4364-a4c6-e2ed79a597b0" + "3ea36f5c-be16-47b7-b23a-62d281136d45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -330,7 +330,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:19:27 GMT" + "Tue, 29 Oct 2019 13:20:38 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/ListCustomPrebuiltIntents.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/ListCustomPrebuiltIntents.json index 3bc24b3230d6..b54c41668834 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/ListCustomPrebuiltIntents.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/ListCustomPrebuiltIntents.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"culture\": \"en-us\",\r\n \"domain\": \"Comics\",\r\n \"description\": \"New LUIS App\",\r\n \"usageScenario\": \"IoT\",\r\n \"name\": \"New LUIS App\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/351a8d88-67c8-49dc-9d33-61734aac00d8" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/1c617d76-997c-43fd-9259-1e23e4fc061b" ], "Apim-Request-Id": [ - "0ea0eaff-5667-4c34-a897-31df741c2ba7" + "a4d02c40-a875-40f9-ad73-97c6aca48ef4" ], "Request-Id": [ - "0ea0eaff-5667-4c34-a897-31df741c2ba7" + "a4d02c40-a875-40f9-ad73-97c6aca48ef4" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/351a8d88-67c8-49dc-9d33-61734aac00d8" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/1c617d76-997c-43fd-9259-1e23e4fc061b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:19:29 GMT" + "Tue, 29 Oct 2019 13:21:15 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"351a8d88-67c8-49dc-9d33-61734aac00d8\"", + "ResponseBody": "\"1c617d76-997c-43fd-9259-1e23e4fc061b\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/351a8d88-67c8-49dc-9d33-61734aac00d8/versions?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zNTFhOGQ4OC02N2M4LTQ5ZGMtOWQzMy02MTczNGFhYzAwZDgvdmVyc2lvbnM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/1c617d76-997c-43fd-9259-1e23e4fc061b/versions?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzFjNjE3ZDc2LTk5N2MtNDNmZC05MjU5LTFlMjNlNGZjMDYxYi92ZXJzaW9ucz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "188f6a2d-8d12-4942-a63d-3ac8906e3e92" + "e078b6f4-bdfd-4fb7-9ae2-4779fcf4b1ef" ], "Request-Id": [ - "188f6a2d-8d12-4942-a63d-3ac8906e3e92" + "e078b6f4-bdfd-4fb7-9ae2-4779fcf4b1ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:19:29 GMT" + "Tue, 29 Oct 2019 13:21:15 GMT" ], "Content-Length": [ "321" @@ -117,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-08-25T19:19:29Z\",\r\n \"lastModifiedDateTime\": \"2019-08-25T19:19:29Z\",\r\n \"lastTrainedDateTime\": null,\r\n \"lastPublishedDateTime\": null,\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 1,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-10-29T13:21:16Z\",\r\n \"lastModifiedDateTime\": \"2019-10-29T13:21:16Z\",\r\n \"lastTrainedDateTime\": null,\r\n \"lastPublishedDateTime\": null,\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 1,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/351a8d88-67c8-49dc-9d33-61734aac00d8/versions/0.1/customprebuiltdomains", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zNTFhOGQ4OC02N2M4LTQ5ZGMtOWQzMy02MTczNGFhYzAwZDgvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZG9tYWlucw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/1c617d76-997c-43fd-9259-1e23e4fc061b/versions/0.1/customprebuiltdomains", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzFjNjE3ZDc2LTk5N2MtNDNmZC05MjU5LTFlMjNlNGZjMDYxYi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRkb21haW5z", "RequestMethod": "POST", "RequestBody": "{\r\n \"domainName\": \"Communication\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -150,10 +150,10 @@ "no-cache" ], "Apim-Request-Id": [ - "c6a930f7-c6d2-4195-8412-1d09d132cfc7" + "06c9f207-895d-43b0-8ac8-0130e0d1905d" ], "Request-Id": [ - "c6a930f7-c6d2-4195-8412-1d09d132cfc7" + "06c9f207-895d-43b0-8ac8-0130e0d1905d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -168,32 +168,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:19:33 GMT" + "Tue, 29 Oct 2019 13:21:23 GMT" ], "Content-Length": [ - "2341" + "2380" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n \"d6d5bf5a-c2b1-4a8f-9628-e8d97e7c380e\",\r\n \"37b1a8bf-8442-4b68-8cbe-479f9042018e\",\r\n \"e15df06d-839f-42ba-b8a1-5460f42cc007\",\r\n \"d46b986c-3be9-43bb-9498-09c1a526e12f\",\r\n \"7e84b9a6-20fb-4940-bad2-e3b38fcf63b4\",\r\n \"ef156cb8-fc44-41c2-8135-0956acf03769\",\r\n \"dfcc753d-98b5-4d16-bee8-a47c4ef19cc0\",\r\n \"4f5f7fd8-0996-4d61-ab93-0ee0e67e458c\",\r\n \"39b1e686-34e7-4930-8ffd-e776760e43be\",\r\n \"0d95203b-4ae0-4afd-bc6c-2cb18a8c4871\",\r\n \"f8b03705-cdc9-44be-bc21-560b509480d4\",\r\n \"6f6a41e3-0749-451b-9c13-463db23cdeb0\",\r\n \"8e79d656-8188-41bb-9644-096579d29af1\",\r\n \"63d3947e-c344-4b8c-8f1b-c75e11aafc5d\",\r\n \"6b59d36d-1337-4082-890f-65b954b61097\",\r\n \"230ec5a7-8a2c-4563-bd5b-30c98554d55e\",\r\n \"0c44dd16-fe75-4e69-b280-7795daa25b06\",\r\n \"4c6d57f3-3ac4-46e6-bcab-bccf6b1822bb\",\r\n \"9ec531d8-cfde-4d85-bfcf-a4b6f99da0a2\",\r\n \"803c4b71-c26a-4bc3-aead-0bc4d324e458\",\r\n \"ad1a1fc8-8ce3-4da7-a832-0cc798eadfd9\",\r\n \"98ec8438-9fcf-4ca7-a3aa-b874432948c0\",\r\n \"b7a518d1-5310-495f-b97b-c5d6d30d40e5\",\r\n \"6a33c796-7158-41d3-b3a1-b33c2b4e5168\",\r\n \"dcf08a53-6f28-44a4-9a29-8a0e15cf3e6c\",\r\n \"e7534152-e429-403b-964e-a039f9f47ca3\",\r\n \"1999d364-0124-473d-9fa2-1a25bbfee973\",\r\n \"8c028265-682e-412b-8004-a98bc4096a97\",\r\n \"c6ecd884-5c00-4b3d-8cd2-27930c411523\",\r\n \"ef1d5126-3f9a-4ca1-8d36-9cad92310dcb\",\r\n \"eeb22ffd-76c6-4a5c-8ea7-1c9ba5463bbd\",\r\n \"8cd972e1-1885-484c-8ae0-74efba7a3e72\",\r\n \"1288ecd5-199a-4de9-b8b4-d5de1a1b3c78\",\r\n \"4f0297f9-f9a5-4785-b2ab-664591802d26\",\r\n \"a1d5bd09-6254-4981-a6f1-c7e36dd46dda\",\r\n \"284c2604-9f49-4e53-bfa3-2a875e4c7da7\",\r\n \"ea0266bd-22db-4c0a-b8dc-53b97331bb90\",\r\n \"6a8fc788-62c5-4242-8e01-612f9f0f1f3a\",\r\n \"e571cce2-fba7-4953-96e7-3e6f0ade0ad1\",\r\n \"1a09362d-9d87-4c8e-8021-1f1461cec456\",\r\n \"1e791d74-64b4-43b4-918f-433d81818eb4\",\r\n \"1ed04cff-1580-4031-83d6-a7a5cebb3ae6\",\r\n \"78a1470c-0636-44c9-ab60-c09cde915648\",\r\n \"6d68b17e-3340-4912-b3c3-3ca15be43626\",\r\n \"620871c4-5746-4677-8745-1b862bdfc69e\",\r\n \"26d38f51-14c4-448f-96ae-3dd12f50708f\",\r\n \"993e896e-6ed7-46b5-bf43-415903b8c1a9\",\r\n \"777927e8-dc2b-43f6-aa12-ceb965939e9a\",\r\n \"f355abb0-5f27-4368-856f-de81ee07f8ed\",\r\n \"20f35d50-e20c-4051-a6d9-d39286b6d38c\",\r\n \"884adff4-0604-4703-97da-95eecdcd8cf8\",\r\n \"f58cd36e-f6be-486e-abad-693c4995d703\",\r\n \"18205916-ae59-46dd-8c58-31fc25b14827\",\r\n \"7fc6bd4e-2741-4588-bc61-5bd8f8e34a7e\",\r\n \"3928ef86-ac0e-49ec-9961-1fec7d98ad86\",\r\n \"14715f21-90a9-4f0e-9ad6-99d9b3380153\",\r\n \"952e01a9-e073-4f35-a766-846a3b650087\",\r\n \"d15233b7-020b-4e28-a14c-afc709b83522\",\r\n \"a3008cc1-29c7-487a-ac0c-741b3e2060f8\",\r\n \"69f6d20d-1cfb-483e-ac39-58dcbe3dd58c\"\r\n]", + "ResponseBody": "[\r\n \"f439a017-9d8c-4766-b7a4-a27807ce5df4\",\r\n \"d1dd8a8a-117c-48da-8582-60b08a1f15cc\",\r\n \"69e1b729-2d93-4648-8798-d63772651f1c\",\r\n \"901c87ae-9d97-4940-9ba1-e4441f31fa6c\",\r\n \"617546c1-97b3-411b-87d8-2bc6a2100030\",\r\n \"8e394d88-e411-405a-a774-8a3c016c7c25\",\r\n \"01325ebf-85ae-46b2-b277-17ec530993ce\",\r\n \"ef0e48d8-a997-483a-baca-46717bab12d9\",\r\n \"8e2d739f-1c0f-49ed-b2be-238c03ca0978\",\r\n \"25a5ca12-a37d-4248-bf2a-bf04c0d1f38d\",\r\n \"028c9b79-59e1-4a01-95ca-56eec63e751e\",\r\n \"fd012991-055a-4280-9491-2f2108d83058\",\r\n \"4c78781b-880e-44d3-8c35-e70e3b88d2ed\",\r\n \"f970622c-38b1-47a5-bb68-b8c3f1c7cd89\",\r\n \"20ebd95d-0a90-454f-afc0-673abe87b769\",\r\n \"c4eb3640-578e-44c7-9afd-e152e132022e\",\r\n \"32c43535-e3f4-4ea5-ab43-66408ec0b775\",\r\n \"009c7221-af3b-4355-897c-6ceca8b6890c\",\r\n \"2ef5f318-8540-43b6-979c-e1bfe1c9a093\",\r\n \"623d689f-74e8-49a3-a68a-ed119e10a523\",\r\n \"5447fd73-1b58-40bf-b0ba-8c2d3b29ca4a\",\r\n \"53f7bc40-6309-4748-b3d9-ab9b4156f4e2\",\r\n \"e93d84e5-9afd-4ac3-9cd6-09b6f5e0d731\",\r\n \"0c991be1-b968-417d-a946-fdd1efdb790d\",\r\n \"6dc9cc76-e137-4efa-9bbd-936691d269de\",\r\n \"27b7cf5c-6c7f-4fcd-a1e0-a2361b3c0e56\",\r\n \"aa49d2c2-f0c1-44e1-9765-34ea1164460c\",\r\n \"ecb77219-b1a9-4310-87b7-2f60337aa9bc\",\r\n \"5baeedf1-b757-45b2-9b70-22d1a08de382\",\r\n \"241831a9-d740-4679-b991-b432a170be7b\",\r\n \"4c63ec16-7958-4e8c-a906-a526369cf57a\",\r\n \"8ab7cd46-0e8e-432b-bbf6-c3d4d02b340b\",\r\n \"428532ef-8542-4c48-adbe-e8e33251a567\",\r\n \"dc686110-6462-42fd-822b-3ce3f48fcbfc\",\r\n \"f5cd750e-21ae-4cbc-bd48-a829925c0949\",\r\n \"54d7f83f-3b4b-446e-8d79-f1d8560f5d13\",\r\n \"4beeece2-bd36-4ccd-96fd-717aea3ebc38\",\r\n \"b4e0048c-18a0-4c13-8444-5268f5f9b792\",\r\n \"2a584e60-739a-4cb0-8956-d20fbe35bd00\",\r\n \"f6500274-32cc-4fcc-a01c-4d72259f814e\",\r\n \"b2b80f11-ba2b-44fc-84f0-99a62d7b7edb\",\r\n \"24ccce56-6862-427a-afa3-f721cb5535ed\",\r\n \"9b79ff31-0b87-470c-b10e-b4de85edc94b\",\r\n \"ab42b587-97eb-4cc5-9479-42b97a532ddc\",\r\n \"dd2fa094-50d1-47c2-883e-2fcedf24860f\",\r\n \"d5e56ef5-ff23-49a5-8840-8f96812f75a5\",\r\n \"23f59401-1086-49f6-9784-e0723cf818a2\",\r\n \"ede7d6d7-979b-4730-854a-2dfe3ab100a0\",\r\n \"f656b6fe-0376-4d7d-ba76-98afed55c5c8\",\r\n \"1d7af0f3-6de4-4313-a818-59bf798a9661\",\r\n \"f9cf8fb7-f186-4940-8383-6918f81ead40\",\r\n \"83d190cb-d517-4014-a1ca-58253214dd78\",\r\n \"6f50ebbb-92c9-4a42-affb-9b0334bf0815\",\r\n \"638041b6-bec8-4537-8f86-5d465c8a2cfc\",\r\n \"ddc4a9e5-16c1-4c99-b753-39c955a73900\",\r\n \"7990f992-4bba-4622-913c-d365465020df\",\r\n \"bd1aa92d-56da-4d0a-b25f-76ac0ba187ca\",\r\n \"3395f79f-81f2-4c6b-ac60-8fd0b0f32438\",\r\n \"dc135be6-7ef6-4933-8736-4999ce3a7a1a\",\r\n \"692ad7ac-bf3c-4d64-9560-fc7246c4e571\",\r\n \"fe62f5eb-1c79-4461-88e3-eaa84102a2fa\"\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/351a8d88-67c8-49dc-9d33-61734aac00d8/versions/0.1/customprebuiltintents", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zNTFhOGQ4OC02N2M4LTQ5ZGMtOWQzMy02MTczNGFhYzAwZDgvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0aW50ZW50cw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/1c617d76-997c-43fd-9259-1e23e4fc061b/versions/0.1/customprebuiltintents", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzFjNjE3ZDc2LTk5N2MtNDNmZC05MjU5LTFlMjNlNGZjMDYxYi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRpbnRlbnRz", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "10734f6f-976f-49a5-83d2-8960fdb0f66e" + "2221ecac-fb7b-42e8-bcf3-bb30dc5a43a8" ], "Request-Id": [ - "10734f6f-976f-49a5-83d2-8960fdb0f66e" + "2221ecac-fb7b-42e8-bcf3-bb30dc5a43a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,7 +222,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:19:34 GMT" + "Tue, 29 Oct 2019 13:21:23 GMT" ], "Content-Length": [ "7947" @@ -231,23 +231,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"d6d5bf5a-c2b1-4a8f-9628-e8d97e7c380e\",\r\n \"name\": \"Communication.AddContact\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddContact\"\r\n },\r\n {\r\n \"id\": \"37b1a8bf-8442-4b68-8cbe-479f9042018e\",\r\n \"name\": \"Communication.AddFlag\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddFlag\"\r\n },\r\n {\r\n \"id\": \"e15df06d-839f-42ba-b8a1-5460f42cc007\",\r\n \"name\": \"Communication.AddMore\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddMore\"\r\n },\r\n {\r\n \"id\": \"d46b986c-3be9-43bb-9498-09c1a526e12f\",\r\n \"name\": \"Communication.Answer\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Answer\"\r\n },\r\n {\r\n \"id\": \"7e84b9a6-20fb-4940-bad2-e3b38fcf63b4\",\r\n \"name\": \"Communication.AssignContactNickname\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AssignContactNickname\"\r\n },\r\n {\r\n \"id\": \"ef156cb8-fc44-41c2-8135-0956acf03769\",\r\n \"name\": \"Communication.CallBack\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CallBack\"\r\n },\r\n {\r\n \"id\": \"dfcc753d-98b5-4d16-bee8-a47c4ef19cc0\",\r\n \"name\": \"Communication.CallVoiceMail\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CallVoiceMail\"\r\n },\r\n {\r\n \"id\": \"4f5f7fd8-0996-4d61-ab93-0ee0e67e458c\",\r\n \"name\": \"Communication.Cancel\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Cancel\"\r\n },\r\n {\r\n \"id\": \"39b1e686-34e7-4930-8ffd-e776760e43be\",\r\n \"name\": \"Communication.CheckIMStatus\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CheckIMStatus\"\r\n },\r\n {\r\n \"id\": \"0d95203b-4ae0-4afd-bc6c-2cb18a8c4871\",\r\n \"name\": \"Communication.CheckMessages\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CheckMessages\"\r\n },\r\n {\r\n \"id\": \"f8b03705-cdc9-44be-bc21-560b509480d4\",\r\n \"name\": \"Communication.Confirm\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Confirm\"\r\n },\r\n {\r\n \"id\": \"6f6a41e3-0749-451b-9c13-463db23cdeb0\",\r\n \"name\": \"Communication.Dial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Dial\"\r\n },\r\n {\r\n \"id\": \"8e79d656-8188-41bb-9644-096579d29af1\",\r\n \"name\": \"Communication.EndCall\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"EndCall\"\r\n },\r\n {\r\n \"id\": \"63d3947e-c344-4b8c-8f1b-c75e11aafc5d\",\r\n \"name\": \"Communication.FindContact\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FindContact\"\r\n },\r\n {\r\n \"id\": \"6b59d36d-1337-4082-890f-65b954b61097\",\r\n \"name\": \"Communication.FindSpeedDial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FindSpeedDial\"\r\n },\r\n {\r\n \"id\": \"230ec5a7-8a2c-4563-bd5b-30c98554d55e\",\r\n \"name\": \"Communication.FinishTask\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FinishTask\"\r\n },\r\n {\r\n \"id\": \"0c44dd16-fe75-4e69-b280-7795daa25b06\",\r\n \"name\": \"Communication.Forward\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Forward\"\r\n },\r\n {\r\n \"id\": \"4c6d57f3-3ac4-46e6-bcab-bccf6b1822bb\",\r\n \"name\": \"Communication.GetForwardingsStatus\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"GetForwardingsStatus\"\r\n },\r\n {\r\n \"id\": \"9ec531d8-cfde-4d85-bfcf-a4b6f99da0a2\",\r\n \"name\": \"Communication.GetNotifications\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"GetNotifications\"\r\n },\r\n {\r\n \"id\": \"803c4b71-c26a-4bc3-aead-0bc4d324e458\",\r\n \"name\": \"Communication.GoBack\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"GoBack\"\r\n },\r\n {\r\n \"id\": \"ad1a1fc8-8ce3-4da7-a832-0cc798eadfd9\",\r\n \"name\": \"Communication.Ignore\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Ignore\"\r\n },\r\n {\r\n \"id\": \"98ec8438-9fcf-4ca7-a3aa-b874432948c0\",\r\n \"name\": \"Communication.IgnoreWithMessage\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"IgnoreWithMessage\"\r\n },\r\n {\r\n \"id\": \"b7a518d1-5310-495f-b97b-c5d6d30d40e5\",\r\n \"name\": \"Communication.PressKey\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"PressKey\"\r\n },\r\n {\r\n \"id\": \"6a33c796-7158-41d3-b3a1-b33c2b4e5168\",\r\n \"name\": \"Communication.QueryLastText\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"QueryLastText\"\r\n },\r\n {\r\n \"id\": \"dcf08a53-6f28-44a4-9a29-8a0e15cf3e6c\",\r\n \"name\": \"Communication.ReadAloud\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ReadAloud\"\r\n },\r\n {\r\n \"id\": \"e7534152-e429-403b-964e-a039f9f47ca3\",\r\n \"name\": \"Communication.Redial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Redial\"\r\n },\r\n {\r\n \"id\": \"1999d364-0124-473d-9fa2-1a25bbfee973\",\r\n \"name\": \"Communication.Reject\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Reject\"\r\n },\r\n {\r\n \"id\": \"8c028265-682e-412b-8004-a98bc4096a97\",\r\n \"name\": \"Communication.Reply\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Reply\"\r\n },\r\n {\r\n \"id\": \"c6ecd884-5c00-4b3d-8cd2-27930c411523\",\r\n \"name\": \"Communication.SearchMessages\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SearchMessages\"\r\n },\r\n {\r\n \"id\": \"ef1d5126-3f9a-4ca1-8d36-9cad92310dcb\",\r\n \"name\": \"Communication.SendEmail\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SendEmail\"\r\n },\r\n {\r\n \"id\": \"eeb22ffd-76c6-4a5c-8ea7-1c9ba5463bbd\",\r\n \"name\": \"Communication.SendMessage\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SendMessage\"\r\n },\r\n {\r\n \"id\": \"8cd972e1-1885-484c-8ae0-74efba7a3e72\",\r\n \"name\": \"Communication.SetSpeedDial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SetSpeedDial\"\r\n },\r\n {\r\n \"id\": \"1288ecd5-199a-4de9-b8b4-d5de1a1b3c78\",\r\n \"name\": \"Communication.ShowNext\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ShowNext\"\r\n },\r\n {\r\n \"id\": \"4f0297f9-f9a5-4785-b2ab-664591802d26\",\r\n \"name\": \"Communication.ShowPrevious\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ShowPrevious\"\r\n },\r\n {\r\n \"id\": \"a1d5bd09-6254-4981-a6f1-c7e36dd46dda\",\r\n \"name\": \"Communication.TurnForwardingOff\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnForwardingOff\"\r\n },\r\n {\r\n \"id\": \"284c2604-9f49-4e53-bfa3-2a875e4c7da7\",\r\n \"name\": \"Communication.TurnForwardingOn\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnForwardingOn\"\r\n },\r\n {\r\n \"id\": \"ea0266bd-22db-4c0a-b8dc-53b97331bb90\",\r\n \"name\": \"Communication.TurnSpeakerOff\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnSpeakerOff\"\r\n },\r\n {\r\n \"id\": \"6a8fc788-62c5-4242-8e01-612f9f0f1f3a\",\r\n \"name\": \"Communication.TurnSpeakerOn\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnSpeakerOn\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"f439a017-9d8c-4766-b7a4-a27807ce5df4\",\r\n \"name\": \"Communication.AddContact\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddContact\"\r\n },\r\n {\r\n \"id\": \"901c87ae-9d97-4940-9ba1-e4441f31fa6c\",\r\n \"name\": \"Communication.AddFlag\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddFlag\"\r\n },\r\n {\r\n \"id\": \"617546c1-97b3-411b-87d8-2bc6a2100030\",\r\n \"name\": \"Communication.AddMore\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddMore\"\r\n },\r\n {\r\n \"id\": \"8e394d88-e411-405a-a774-8a3c016c7c25\",\r\n \"name\": \"Communication.Answer\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Answer\"\r\n },\r\n {\r\n \"id\": \"01325ebf-85ae-46b2-b277-17ec530993ce\",\r\n \"name\": \"Communication.AssignContactNickname\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AssignContactNickname\"\r\n },\r\n {\r\n \"id\": \"ef0e48d8-a997-483a-baca-46717bab12d9\",\r\n \"name\": \"Communication.CallBack\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CallBack\"\r\n },\r\n {\r\n \"id\": \"8e2d739f-1c0f-49ed-b2be-238c03ca0978\",\r\n \"name\": \"Communication.CallVoiceMail\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CallVoiceMail\"\r\n },\r\n {\r\n \"id\": \"25a5ca12-a37d-4248-bf2a-bf04c0d1f38d\",\r\n \"name\": \"Communication.Cancel\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Cancel\"\r\n },\r\n {\r\n \"id\": \"028c9b79-59e1-4a01-95ca-56eec63e751e\",\r\n \"name\": \"Communication.CheckIMStatus\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CheckIMStatus\"\r\n },\r\n {\r\n \"id\": \"fd012991-055a-4280-9491-2f2108d83058\",\r\n \"name\": \"Communication.CheckMessages\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CheckMessages\"\r\n },\r\n {\r\n \"id\": \"4c78781b-880e-44d3-8c35-e70e3b88d2ed\",\r\n \"name\": \"Communication.Confirm\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Confirm\"\r\n },\r\n {\r\n \"id\": \"f970622c-38b1-47a5-bb68-b8c3f1c7cd89\",\r\n \"name\": \"Communication.Dial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Dial\"\r\n },\r\n {\r\n \"id\": \"20ebd95d-0a90-454f-afc0-673abe87b769\",\r\n \"name\": \"Communication.EndCall\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"EndCall\"\r\n },\r\n {\r\n \"id\": \"c4eb3640-578e-44c7-9afd-e152e132022e\",\r\n \"name\": \"Communication.FindContact\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FindContact\"\r\n },\r\n {\r\n \"id\": \"32c43535-e3f4-4ea5-ab43-66408ec0b775\",\r\n \"name\": \"Communication.FindSpeedDial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FindSpeedDial\"\r\n },\r\n {\r\n \"id\": \"623d689f-74e8-49a3-a68a-ed119e10a523\",\r\n \"name\": \"Communication.FinishTask\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FinishTask\"\r\n },\r\n {\r\n \"id\": \"5447fd73-1b58-40bf-b0ba-8c2d3b29ca4a\",\r\n \"name\": \"Communication.Forward\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Forward\"\r\n },\r\n {\r\n \"id\": \"53f7bc40-6309-4748-b3d9-ab9b4156f4e2\",\r\n \"name\": \"Communication.GetForwardingsStatus\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"GetForwardingsStatus\"\r\n },\r\n {\r\n \"id\": \"e93d84e5-9afd-4ac3-9cd6-09b6f5e0d731\",\r\n \"name\": \"Communication.GetNotifications\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"GetNotifications\"\r\n },\r\n {\r\n \"id\": \"0c991be1-b968-417d-a946-fdd1efdb790d\",\r\n \"name\": \"Communication.GoBack\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"GoBack\"\r\n },\r\n {\r\n \"id\": \"27b7cf5c-6c7f-4fcd-a1e0-a2361b3c0e56\",\r\n \"name\": \"Communication.Ignore\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Ignore\"\r\n },\r\n {\r\n \"id\": \"aa49d2c2-f0c1-44e1-9765-34ea1164460c\",\r\n \"name\": \"Communication.IgnoreWithMessage\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"IgnoreWithMessage\"\r\n },\r\n {\r\n \"id\": \"5baeedf1-b757-45b2-9b70-22d1a08de382\",\r\n \"name\": \"Communication.PressKey\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"PressKey\"\r\n },\r\n {\r\n \"id\": \"241831a9-d740-4679-b991-b432a170be7b\",\r\n \"name\": \"Communication.QueryLastText\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"QueryLastText\"\r\n },\r\n {\r\n \"id\": \"4c63ec16-7958-4e8c-a906-a526369cf57a\",\r\n \"name\": \"Communication.ReadAloud\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ReadAloud\"\r\n },\r\n {\r\n \"id\": \"8ab7cd46-0e8e-432b-bbf6-c3d4d02b340b\",\r\n \"name\": \"Communication.Redial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Redial\"\r\n },\r\n {\r\n \"id\": \"428532ef-8542-4c48-adbe-e8e33251a567\",\r\n \"name\": \"Communication.Reject\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Reject\"\r\n },\r\n {\r\n \"id\": \"dc686110-6462-42fd-822b-3ce3f48fcbfc\",\r\n \"name\": \"Communication.Reply\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Reply\"\r\n },\r\n {\r\n \"id\": \"4beeece2-bd36-4ccd-96fd-717aea3ebc38\",\r\n \"name\": \"Communication.SearchMessages\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SearchMessages\"\r\n },\r\n {\r\n \"id\": \"b4e0048c-18a0-4c13-8444-5268f5f9b792\",\r\n \"name\": \"Communication.SendEmail\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SendEmail\"\r\n },\r\n {\r\n \"id\": \"24ccce56-6862-427a-afa3-f721cb5535ed\",\r\n \"name\": \"Communication.SendMessage\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SendMessage\"\r\n },\r\n {\r\n \"id\": \"9b79ff31-0b87-470c-b10e-b4de85edc94b\",\r\n \"name\": \"Communication.SetSpeedDial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SetSpeedDial\"\r\n },\r\n {\r\n \"id\": \"ab42b587-97eb-4cc5-9479-42b97a532ddc\",\r\n \"name\": \"Communication.ShowNext\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ShowNext\"\r\n },\r\n {\r\n \"id\": \"dd2fa094-50d1-47c2-883e-2fcedf24860f\",\r\n \"name\": \"Communication.ShowPrevious\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ShowPrevious\"\r\n },\r\n {\r\n \"id\": \"d5e56ef5-ff23-49a5-8840-8f96812f75a5\",\r\n \"name\": \"Communication.TurnForwardingOff\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnForwardingOff\"\r\n },\r\n {\r\n \"id\": \"23f59401-1086-49f6-9784-e0723cf818a2\",\r\n \"name\": \"Communication.TurnForwardingOn\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnForwardingOn\"\r\n },\r\n {\r\n \"id\": \"ede7d6d7-979b-4730-854a-2dfe3ab100a0\",\r\n \"name\": \"Communication.TurnSpeakerOff\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnSpeakerOff\"\r\n },\r\n {\r\n \"id\": \"f656b6fe-0376-4d7d-ba76-98afed55c5c8\",\r\n \"name\": \"Communication.TurnSpeakerOn\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnSpeakerOn\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/351a8d88-67c8-49dc-9d33-61734aac00d8/versions/0.1/customprebuiltdomains/Communication", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zNTFhOGQ4OC02N2M4LTQ5ZGMtOWQzMy02MTczNGFhYzAwZDgvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZG9tYWlucy9Db21tdW5pY2F0aW9u", + "RequestUri": "/luis/authoring/v3.0-preview/apps/1c617d76-997c-43fd-9259-1e23e4fc061b/versions/0.1/customprebuiltdomains/Communication", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzFjNjE3ZDc2LTk5N2MtNDNmZC05MjU5LTFlMjNlNGZjMDYxYi92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRkb21haW5zL0NvbW11bmljYXRpb24=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -258,10 +258,10 @@ "no-cache" ], "Apim-Request-Id": [ - "584c84c0-48de-4ea4-9062-0f4c67dfc73d" + "7d4e4f80-4197-4e52-8912-7fd867a8ff12" ], "Request-Id": [ - "584c84c0-48de-4ea4-9062-0f4c67dfc73d" + "7d4e4f80-4197-4e52-8912-7fd867a8ff12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -276,7 +276,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:19:54 GMT" + "Tue, 29 Oct 2019 13:21:46 GMT" ], "Content-Length": [ "51" @@ -289,19 +289,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/351a8d88-67c8-49dc-9d33-61734aac00d8?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zNTFhOGQ4OC02N2M4LTQ5ZGMtOWQzMy02MTczNGFhYzAwZDg/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/1c617d76-997c-43fd-9259-1e23e4fc061b?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzFjNjE3ZDc2LTk5N2MtNDNmZC05MjU5LTFlMjNlNGZjMDYxYj9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -312,10 +312,10 @@ "no-cache" ], "Apim-Request-Id": [ - "7569bf51-be98-4b6e-bad7-237802762373" + "004c1ed3-ad1f-4ab1-98d0-80375193b8ad" ], "Request-Id": [ - "7569bf51-be98-4b6e-bad7-237802762373" + "004c1ed3-ad1f-4ab1-98d0-80375193b8ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -330,7 +330,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:19:55 GMT" + "Tue, 29 Oct 2019 13:21:47 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/ListCustomPrebuiltModels.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/ListCustomPrebuiltModels.json index 4f9a9176b131..60986964861a 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/ListCustomPrebuiltModels.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltDomainTests/ListCustomPrebuiltModels.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"culture\": \"en-us\",\r\n \"domain\": \"Comics\",\r\n \"description\": \"New LUIS App\",\r\n \"usageScenario\": \"IoT\",\r\n \"name\": \"New LUIS App\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/c50458a8-77f3-404b-9f67-5dbcd6d330b3" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/c3b66003-69c1-4027-8ab1-0b37d67fc719" ], "Apim-Request-Id": [ - "67aff394-f74c-4060-82fc-e85d7f19fc7b" + "11d317df-4027-4edc-abd4-4e615c13eda7" ], "Request-Id": [ - "67aff394-f74c-4060-82fc-e85d7f19fc7b" + "11d317df-4027-4edc-abd4-4e615c13eda7" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/c50458a8-77f3-404b-9f67-5dbcd6d330b3" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/c3b66003-69c1-4027-8ab1-0b37d67fc719" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:39 GMT" + "Tue, 29 Oct 2019 13:21:50 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"c50458a8-77f3-404b-9f67-5dbcd6d330b3\"", + "ResponseBody": "\"c3b66003-69c1-4027-8ab1-0b37d67fc719\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/c50458a8-77f3-404b-9f67-5dbcd6d330b3/versions?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9jNTA0NThhOC03N2YzLTQwNGItOWY2Ny01ZGJjZDZkMzMwYjMvdmVyc2lvbnM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/c3b66003-69c1-4027-8ab1-0b37d67fc719/versions?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2MzYjY2MDAzLTY5YzEtNDAyNy04YWIxLTBiMzdkNjdmYzcxOS92ZXJzaW9ucz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "de31adeb-1cde-4cd4-95eb-940ec2e84f02" + "14c3f374-9dc7-4725-8a2b-4b62bf72edd2" ], "Request-Id": [ - "de31adeb-1cde-4cd4-95eb-940ec2e84f02" + "14c3f374-9dc7-4725-8a2b-4b62bf72edd2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:39 GMT" + "Tue, 29 Oct 2019 13:21:50 GMT" ], "Content-Length": [ "321" @@ -117,29 +117,29 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-08-25T19:18:39Z\",\r\n \"lastModifiedDateTime\": \"2019-08-25T19:18:39Z\",\r\n \"lastTrainedDateTime\": null,\r\n \"lastPublishedDateTime\": null,\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 1,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-10-29T13:21:51Z\",\r\n \"lastModifiedDateTime\": \"2019-10-29T13:21:51Z\",\r\n \"lastTrainedDateTime\": null,\r\n \"lastPublishedDateTime\": null,\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 1,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/c50458a8-77f3-404b-9f67-5dbcd6d330b3/versions/0.1/customprebuiltdomains", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9jNTA0NThhOC03N2YzLTQwNGItOWY2Ny01ZGJjZDZkMzMwYjMvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZG9tYWlucw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/c3b66003-69c1-4027-8ab1-0b37d67fc719/versions/0.1/customprebuiltdomains", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2MzYjY2MDAzLTY5YzEtNDAyNy04YWIxLTBiMzdkNjdmYzcxOS92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRkb21haW5z", "RequestMethod": "POST", - "RequestBody": "{\r\n \"domainName\": \"Communication\"\r\n}", + "RequestBody": "{\r\n \"domainName\": \"Calendar\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "37" + "32" ] }, "ResponseHeaders": { @@ -150,10 +150,10 @@ "no-cache" ], "Apim-Request-Id": [ - "17b784cc-75b9-4f19-bd2c-088690993542" + "9c39a67f-70c4-4cb9-b8cd-1f6a8e9838e3" ], "Request-Id": [ - "17b784cc-75b9-4f19-bd2c-088690993542" + "9c39a67f-70c4-4cb9-b8cd-1f6a8e9838e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -168,32 +168,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:44 GMT" + "Tue, 29 Oct 2019 13:21:56 GMT" ], "Content-Length": [ - "2341" + "1639" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n \"a6d143c2-b465-42d7-bd85-a70dd1d6551e\",\r\n \"2f74405a-52ca-4692-b742-eef809e3c1d2\",\r\n \"e4541433-d012-49a2-8553-b04855773b96\",\r\n \"d154a268-482e-4093-b96f-2ae45b1528b0\",\r\n \"a2be7605-4110-412e-ad58-785af2c54b13\",\r\n \"72596cc5-f265-4fde-ab7f-6f459329c141\",\r\n \"179958f8-67be-4c25-88d3-719448b3ef34\",\r\n \"d1d4f946-29f9-4ea0-a0fc-2bea722d9192\",\r\n \"b2c43117-c857-4251-abbc-0d56b810ed05\",\r\n \"576d72c0-1a52-4bb2-a8f0-86df7e41a706\",\r\n \"72915459-f328-4a8e-a53b-dd89d03127f9\",\r\n \"cff854d9-cb23-4d3b-855c-97dddeda28ca\",\r\n \"dff0a564-0786-4d46-8ed1-7f2febb679ce\",\r\n \"41dcf257-a858-4b6a-8b77-1f0bece4729c\",\r\n \"1d07327d-0ebf-4737-a4ec-e73746ea07de\",\r\n \"0f66b1be-1306-4552-875f-9572b1de0788\",\r\n \"61c28f5b-a432-4afd-b703-8f58eb668485\",\r\n \"6aadea05-6c18-40d0-98ec-c6cb28c27905\",\r\n \"b5f41c8b-522e-4377-8ef3-95f4901bb60f\",\r\n \"1869ebb8-c4dc-4337-bdd3-ab19134977a8\",\r\n \"f62e3127-21c7-48b0-a95d-659d3a0e86f0\",\r\n \"c51018b6-0fc1-426b-a739-d47696933ad0\",\r\n \"4ddbf4c2-ed62-416d-8be0-0f7ce3a4a440\",\r\n \"06235eb4-8a9b-4680-a3ed-23e40265d739\",\r\n \"3b1a4b72-36c4-4c6f-a43e-3ed7a0e6b519\",\r\n \"504317da-04c8-49b0-8739-7fab2f768c22\",\r\n \"4e62a6b4-aec9-4bf0-b860-58753cb97865\",\r\n \"cff42ed2-c483-4096-86b4-30e98adf2447\",\r\n \"50b29ff8-513a-4df6-890e-dad9341e2d7c\",\r\n \"05ae443b-6ee7-4685-bfcb-99be4c342be4\",\r\n \"f66a2e2b-0b9d-41a9-aa21-7f63de9745bd\",\r\n \"c4ad14e8-143e-4c4e-a441-f6988d99289b\",\r\n \"a2914844-d6d9-4c0c-96c5-38499c96d167\",\r\n \"120923cb-6903-4d74-88bb-d35db72ec374\",\r\n \"d0df7dd3-42c7-4eaa-b0f1-c3a33a223327\",\r\n \"42c7c0af-657e-4fb9-8490-df71fd177bb8\",\r\n \"151daac3-ffbb-421c-b1db-b07dcc3699c8\",\r\n \"e49c3408-d470-437c-9521-2d09a404786b\",\r\n \"13c01b36-300f-428d-b385-cf68324dc628\",\r\n \"77edbef9-4737-4c97-9833-1f5bce67e480\",\r\n \"7807fbdc-9ff6-46e5-93ae-f9e4425e30e0\",\r\n \"7f17083e-3043-4ed9-a1c6-a4059a83cd30\",\r\n \"3b4078aa-acf4-4237-ad36-a67f2a0e10d9\",\r\n \"f22fc3a8-6ef1-447d-8ee2-4d65e90ab917\",\r\n \"609b3c3f-6f00-4739-ac44-68cdbfe19fa5\",\r\n \"feef6358-b540-49a7-a602-80aa0b1ab656\",\r\n \"97fc7b1a-39ba-4fba-8757-98218fb0aec6\",\r\n \"5dd9e52f-3de2-47d0-af45-6c40f10297ba\",\r\n \"ea86df97-11ba-48bb-96dd-04d106cee3fe\",\r\n \"c0147448-0b25-4ebc-97dc-36a2b7c0d0ed\",\r\n \"dc287984-bc70-496b-962e-ee8abd98de4e\",\r\n \"e579c3d3-9fbd-4f1c-9e0d-d3b921d23bb4\",\r\n \"1475a299-4dca-4365-b9fd-21886b05ca54\",\r\n \"23b281bb-91dc-4c34-ae37-ac88c2fb54ad\",\r\n \"6e3c4b2f-cecf-41b3-b697-79533ae29461\",\r\n \"d3c12dbb-20c6-4b4f-881a-d3474f61528c\",\r\n \"924f6c3e-e9eb-499c-bd7f-89c1d9a6989d\",\r\n \"08c6ea51-6112-467a-84f5-1f96923222fe\",\r\n \"ecc61c96-02dd-4a04-9dd6-287f138dc36a\",\r\n \"47aea53b-dd3d-4ce3-8f41-aef7e8c7a846\"\r\n]", + "ResponseBody": "[\r\n \"d1e446b3-ad1b-4ea5-968e-de939d37f105\",\r\n \"f72ba758-3ca5-42d9-aa26-731337f1ab86\",\r\n \"4e5eb8ce-22ee-4340-892d-c64e494c522e\",\r\n \"125e3eb6-13fd-42b7-a6fc-ccf2bd20a036\",\r\n \"d2564210-84b0-4d55-96f1-fb3b9a4cc8bb\",\r\n \"c142bc78-3679-4e28-b2a0-d5813c469d04\",\r\n \"2192bd8e-65c1-4ef6-a839-0535be5cd26c\",\r\n \"51cc1788-d282-4f01-89bd-9e052c6a3d88\",\r\n \"d3471b6e-f5be-4003-8c19-66a1c1f95cec\",\r\n \"619a3003-12da-41b1-95b6-16d723f39db2\",\r\n \"4230e3a0-b7ea-4d32-b4f8-487af0049e6c\",\r\n \"4098c6c1-c4e1-42f8-a8fb-47d65189149e\",\r\n \"a730b807-351b-4c4b-877d-07e86aa1e342\",\r\n \"ee57ac45-116f-478b-819a-8062f7e47ef9\",\r\n \"6eb73af8-ebff-49a1-bd63-4732b5b14ddf\",\r\n \"4c27942b-3f81-4b59-b142-937f3060510d\",\r\n \"4c211bf2-a9e7-4ac0-ada5-b39dea464e42\",\r\n \"427560fa-261a-46aa-baef-8cc351fcad8c\",\r\n \"afb593da-2abe-49f5-9de1-6812958953e6\",\r\n \"9c3cabb7-c752-45dd-bf12-63d616df0537\",\r\n \"4b13edaf-811b-449b-94a6-15ee9bfa51e8\",\r\n \"dade2d45-ab76-4217-8932-f7927f0cd1b8\",\r\n \"0a2ad72b-3b27-4238-831a-4df8b0a9e474\",\r\n \"fd770fa7-1e3e-48d4-8e2f-632c1d10f84e\",\r\n \"d751e95d-52a8-44bc-8e50-cefd727b416d\",\r\n \"52637e33-79f0-4a51-8aed-121f9151b988\",\r\n \"3cc240c3-354b-4165-8e63-bda8aba85c20\",\r\n \"11bebb71-6d1a-4f06-8e4c-74a306c19990\",\r\n \"4ce4aa03-57b7-4fb2-a5c7-2fd8b8883188\",\r\n \"8b0ab35a-12a2-493c-bdc9-214ca63e5070\",\r\n \"fc0195cc-75e8-47ea-992c-7da592fa0155\",\r\n \"0e4726f0-30bf-4287-aea2-3c85c98850cb\",\r\n \"2193dc5e-b415-44a0-b9e8-223e14a3c7bc\",\r\n \"cdf90a3f-239c-4557-a750-5277a05c71e9\",\r\n \"06b04abc-f9e8-4806-ac5c-c5b4580ebe18\",\r\n \"7ad0fcd5-dff4-48b4-88ff-8e0d55b524a3\",\r\n \"69889372-85e2-491c-9edf-2dc85ade33f5\",\r\n \"c42ccc4e-0956-44bf-899c-9478c24f7002\",\r\n \"66704ca3-9869-48da-8bed-0cea5635beb3\",\r\n \"62871d5f-1855-44c7-90f4-b8466e556865\",\r\n \"c365da04-e364-4804-b4a9-315cd47dd867\",\r\n \"25946ebb-8ec4-4e1d-8354-0cba7b090165\"\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/c50458a8-77f3-404b-9f67-5dbcd6d330b3/versions/0.1/customprebuiltmodels", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9jNTA0NThhOC03N2YzLTQwNGItOWY2Ny01ZGJjZDZkMzMwYjMvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0bW9kZWxz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/c3b66003-69c1-4027-8ab1-0b37d67fc719/versions/0.1/customprebuiltmodels", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2MzYjY2MDAzLTY5YzEtNDAyNy04YWIxLTBiMzdkNjdmYzcxOS92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRtb2RlbHM=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "ec301b71-6e33-4d29-8cb3-af026471d6ec" + "8c0e69b9-08b9-48a1-b23b-225312833855" ], "Request-Id": [ - "ec301b71-6e33-4d29-8cb3-af026471d6ec" + "8c0e69b9-08b9-48a1-b23b-225312833855" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,32 +222,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:44 GMT" + "Tue, 29 Oct 2019 13:21:56 GMT" ], "Content-Length": [ - "12155" + "12649" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"a6d143c2-b465-42d7-bd85-a70dd1d6551e\",\r\n \"name\": \"Communication.AddContact\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddContact\"\r\n },\r\n {\r\n \"id\": \"2f74405a-52ca-4692-b742-eef809e3c1d2\",\r\n \"name\": \"Communication.AddFlag\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddFlag\"\r\n },\r\n {\r\n \"id\": \"e4541433-d012-49a2-8553-b04855773b96\",\r\n \"name\": \"Communication.AddMore\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AddMore\"\r\n },\r\n {\r\n \"id\": \"d154a268-482e-4093-b96f-2ae45b1528b0\",\r\n \"name\": \"Communication.Answer\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Answer\"\r\n },\r\n {\r\n \"id\": \"a2be7605-4110-412e-ad58-785af2c54b13\",\r\n \"name\": \"Communication.AssignContactNickname\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AssignContactNickname\"\r\n },\r\n {\r\n \"id\": \"13c01b36-300f-428d-b385-cf68324dc628\",\r\n \"name\": \"Communication.Attachment\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Attachment\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"77edbef9-4737-4c97-9833-1f5bce67e480\",\r\n \"name\": \"Communication.AudioDeviceType\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"AudioDeviceType\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"72596cc5-f265-4fde-ab7f-6f459329c141\",\r\n \"name\": \"Communication.CallBack\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CallBack\"\r\n },\r\n {\r\n \"id\": \"179958f8-67be-4c25-88d3-719448b3ef34\",\r\n \"name\": \"Communication.CallVoiceMail\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CallVoiceMail\"\r\n },\r\n {\r\n \"id\": \"d1d4f946-29f9-4ea0-a0fc-2bea722d9192\",\r\n \"name\": \"Communication.Cancel\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Cancel\"\r\n },\r\n {\r\n \"id\": \"7807fbdc-9ff6-46e5-93ae-f9e4425e30e0\",\r\n \"name\": \"Communication.Category\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Category\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"b2c43117-c857-4251-abbc-0d56b810ed05\",\r\n \"name\": \"Communication.CheckIMStatus\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CheckIMStatus\"\r\n },\r\n {\r\n \"id\": \"576d72c0-1a52-4bb2-a8f0-86df7e41a706\",\r\n \"name\": \"Communication.CheckMessages\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"CheckMessages\"\r\n },\r\n {\r\n \"id\": \"72915459-f328-4a8e-a53b-dd89d03127f9\",\r\n \"name\": \"Communication.Confirm\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Confirm\"\r\n },\r\n {\r\n \"id\": \"7f17083e-3043-4ed9-a1c6-a4059a83cd30\",\r\n \"name\": \"Communication.ContactAttribute\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ContactAttribute\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"3b4078aa-acf4-4237-ad36-a67f2a0e10d9\",\r\n \"name\": \"Communication.ContactName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ContactName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"f22fc3a8-6ef1-447d-8ee2-4d65e90ab917\",\r\n \"name\": \"Communication.DestinationPhone\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"DestinationPhone\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"cff854d9-cb23-4d3b-855c-97dddeda28ca\",\r\n \"name\": \"Communication.Dial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Dial\"\r\n },\r\n {\r\n \"id\": \"609b3c3f-6f00-4739-ac44-68cdbfe19fa5\",\r\n \"name\": \"Communication.EmailPlatform\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"EmailPlatform\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"feef6358-b540-49a7-a602-80aa0b1ab656\",\r\n \"name\": \"Communication.EmailSubject\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"EmailSubject\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"dff0a564-0786-4d46-8ed1-7f2febb679ce\",\r\n \"name\": \"Communication.EndCall\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"EndCall\"\r\n },\r\n {\r\n \"id\": \"41dcf257-a858-4b6a-8b77-1f0bece4729c\",\r\n \"name\": \"Communication.FindContact\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FindContact\"\r\n },\r\n {\r\n \"id\": \"1d07327d-0ebf-4737-a4ec-e73746ea07de\",\r\n \"name\": \"Communication.FindSpeedDial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FindSpeedDial\"\r\n },\r\n {\r\n \"id\": \"0f66b1be-1306-4552-875f-9572b1de0788\",\r\n \"name\": \"Communication.FinishTask\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FinishTask\"\r\n },\r\n {\r\n \"id\": \"61c28f5b-a432-4afd-b703-8f58eb668485\",\r\n \"name\": \"Communication.Forward\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Forward\"\r\n },\r\n {\r\n \"id\": \"97fc7b1a-39ba-4fba-8757-98218fb0aec6\",\r\n \"name\": \"Communication.FromRelationshipName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"FromRelationshipName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"6aadea05-6c18-40d0-98ec-c6cb28c27905\",\r\n \"name\": \"Communication.GetForwardingsStatus\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"GetForwardingsStatus\"\r\n },\r\n {\r\n \"id\": \"b5f41c8b-522e-4377-8ef3-95f4901bb60f\",\r\n \"name\": \"Communication.GetNotifications\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"GetNotifications\"\r\n },\r\n {\r\n \"id\": \"1869ebb8-c4dc-4337-bdd3-ab19134977a8\",\r\n \"name\": \"Communication.GoBack\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"GoBack\"\r\n },\r\n {\r\n \"id\": \"f62e3127-21c7-48b0-a95d-659d3a0e86f0\",\r\n \"name\": \"Communication.Ignore\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Ignore\"\r\n },\r\n {\r\n \"id\": \"c51018b6-0fc1-426b-a739-d47696933ad0\",\r\n \"name\": \"Communication.IgnoreWithMessage\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"IgnoreWithMessage\"\r\n },\r\n {\r\n \"id\": \"5dd9e52f-3de2-47d0-af45-6c40f10297ba\",\r\n \"name\": \"Communication.Key\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Key\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"ea86df97-11ba-48bb-96dd-04d106cee3fe\",\r\n \"name\": \"Communication.Line\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Line\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"c0147448-0b25-4ebc-97dc-36a2b7c0d0ed\",\r\n \"name\": \"Communication.Message\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Message\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"dc287984-bc70-496b-962e-ee8abd98de4e\",\r\n \"name\": \"Communication.MessageType\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"MessageType\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"e579c3d3-9fbd-4f1c-9e0d-d3b921d23bb4\",\r\n \"name\": \"Communication.OrderReference\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"OrderReference\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"1475a299-4dca-4365-b9fd-21886b05ca54\",\r\n \"name\": \"Communication.PositionReference\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"PositionReference\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"4ddbf4c2-ed62-416d-8be0-0f7ce3a4a440\",\r\n \"name\": \"Communication.PressKey\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"PressKey\"\r\n },\r\n {\r\n \"id\": \"06235eb4-8a9b-4680-a3ed-23e40265d739\",\r\n \"name\": \"Communication.QueryLastText\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"QueryLastText\"\r\n },\r\n {\r\n \"id\": \"3b1a4b72-36c4-4c6f-a43e-3ed7a0e6b519\",\r\n \"name\": \"Communication.ReadAloud\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ReadAloud\"\r\n },\r\n {\r\n \"id\": \"504317da-04c8-49b0-8739-7fab2f768c22\",\r\n \"name\": \"Communication.Redial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Redial\"\r\n },\r\n {\r\n \"id\": \"4e62a6b4-aec9-4bf0-b860-58753cb97865\",\r\n \"name\": \"Communication.Reject\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Reject\"\r\n },\r\n {\r\n \"id\": \"23b281bb-91dc-4c34-ae37-ac88c2fb54ad\",\r\n \"name\": \"Communication.RelationshipName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"RelationshipName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"cff42ed2-c483-4096-86b4-30e98adf2447\",\r\n \"name\": \"Communication.Reply\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"Reply\"\r\n },\r\n {\r\n \"id\": \"50b29ff8-513a-4df6-890e-dad9341e2d7c\",\r\n \"name\": \"Communication.SearchMessages\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SearchMessages\"\r\n },\r\n {\r\n \"id\": \"6e3c4b2f-cecf-41b3-b697-79533ae29461\",\r\n \"name\": \"Communication.SearchTexts\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SearchTexts\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"05ae443b-6ee7-4685-bfcb-99be4c342be4\",\r\n \"name\": \"Communication.SendEmail\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SendEmail\"\r\n },\r\n {\r\n \"id\": \"d3c12dbb-20c6-4b4f-881a-d3474f61528c\",\r\n \"name\": \"Communication.SenderName\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SenderName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"f66a2e2b-0b9d-41a9-aa21-7f63de9745bd\",\r\n \"name\": \"Communication.SendMessage\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SendMessage\"\r\n },\r\n {\r\n \"id\": \"c4ad14e8-143e-4c4e-a441-f6988d99289b\",\r\n \"name\": \"Communication.SetSpeedDial\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SetSpeedDial\"\r\n },\r\n {\r\n \"id\": \"a2914844-d6d9-4c0c-96c5-38499c96d167\",\r\n \"name\": \"Communication.ShowNext\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ShowNext\"\r\n },\r\n {\r\n \"id\": \"120923cb-6903-4d74-88bb-d35db72ec374\",\r\n \"name\": \"Communication.ShowPrevious\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"ShowPrevious\"\r\n },\r\n {\r\n \"id\": \"924f6c3e-e9eb-499c-bd7f-89c1d9a6989d\",\r\n \"name\": \"Communication.SpeedDial\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"SpeedDial\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"d0df7dd3-42c7-4eaa-b0f1-c3a33a223327\",\r\n \"name\": \"Communication.TurnForwardingOff\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnForwardingOff\"\r\n },\r\n {\r\n \"id\": \"42c7c0af-657e-4fb9-8490-df71fd177bb8\",\r\n \"name\": \"Communication.TurnForwardingOn\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnForwardingOn\"\r\n },\r\n {\r\n \"id\": \"151daac3-ffbb-421c-b1db-b07dcc3699c8\",\r\n \"name\": \"Communication.TurnSpeakerOff\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnSpeakerOff\"\r\n },\r\n {\r\n \"id\": \"e49c3408-d470-437c-9521-2d09a404786b\",\r\n \"name\": \"Communication.TurnSpeakerOn\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Communication\",\r\n \"customPrebuiltModelName\": \"TurnSpeakerOn\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"d1e446b3-ad1b-4ea5-968e-de939d37f105\",\r\n \"name\": \"Calendar.AcceptEventEntry\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"AcceptEventEntry\"\r\n },\r\n {\r\n \"id\": \"4e5eb8ce-22ee-4340-892d-c64e494c522e\",\r\n \"name\": \"Calendar.Cancel\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"Cancel\"\r\n },\r\n {\r\n \"id\": \"125e3eb6-13fd-42b7-a6fc-ccf2bd20a036\",\r\n \"name\": \"Calendar.ChangeCalendarEntry\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"ChangeCalendarEntry\"\r\n },\r\n {\r\n \"id\": \"c142bc78-3679-4e28-b2a0-d5813c469d04\",\r\n \"name\": \"Calendar.CheckAvailability\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"CheckAvailability\"\r\n },\r\n {\r\n \"id\": \"619a3003-12da-41b1-95b6-16d723f39db2\",\r\n \"name\": \"Calendar.Confirm\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"Confirm\"\r\n },\r\n {\r\n \"id\": \"4230e3a0-b7ea-4d32-b4f8-487af0049e6c\",\r\n \"name\": \"Calendar.ConnectToMeeting\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"ConnectToMeeting\"\r\n },\r\n {\r\n \"id\": \"4098c6c1-c4e1-42f8-a8fb-47d65189149e\",\r\n \"name\": \"Calendar.ContactMeetingAttendees\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"ContactMeetingAttendees\"\r\n },\r\n {\r\n \"id\": \"ee57ac45-116f-478b-819a-8062f7e47ef9\",\r\n \"name\": \"Calendar.CreateCalendarEntry\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"CreateCalendarEntry\"\r\n },\r\n {\r\n \"id\": \"4c27942b-3f81-4b59-b142-937f3060510d\",\r\n \"name\": \"Calendar.DeleteCalendarEntry\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"DeleteCalendarEntry\"\r\n },\r\n {\r\n \"id\": \"4ce4aa03-57b7-4fb2-a5c7-2fd8b8883188\",\r\n \"name\": \"Calendar.DestinationCalendar\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"DestinationCalendar\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"8b0ab35a-12a2-493c-bdc9-214ca63e5070\",\r\n \"name\": \"Calendar.Duration\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"Duration\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"6eb73af8-ebff-49a1-bd63-4732b5b14ddf\",\r\n \"name\": \"Calendar.EndDate\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"EndDate\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"d3471b6e-f5be-4003-8c19-66a1c1f95cec\",\r\n \"name\": \"Calendar.EndTime\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"EndTime\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"4c211bf2-a9e7-4ac0-ada5-b39dea464e42\",\r\n \"name\": \"Calendar.FindCalendarDetail\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"FindCalendarDetail\"\r\n },\r\n {\r\n \"id\": \"427560fa-261a-46aa-baef-8cc351fcad8c\",\r\n \"name\": \"Calendar.FindCalendarEntry\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"FindCalendarEntry\"\r\n },\r\n {\r\n \"id\": \"afb593da-2abe-49f5-9de1-6812958953e6\",\r\n \"name\": \"Calendar.FindCalendarWhen\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"FindCalendarWhen\"\r\n },\r\n {\r\n \"id\": \"9c3cabb7-c752-45dd-bf12-63d616df0537\",\r\n \"name\": \"Calendar.FindCalendarWhere\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"FindCalendarWhere\"\r\n },\r\n {\r\n \"id\": \"4b13edaf-811b-449b-94a6-15ee9bfa51e8\",\r\n \"name\": \"Calendar.FindCalendarWho\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"FindCalendarWho\"\r\n },\r\n {\r\n \"id\": \"dade2d45-ab76-4217-8932-f7927f0cd1b8\",\r\n \"name\": \"Calendar.FindDuration\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"FindDuration\"\r\n },\r\n {\r\n \"id\": \"0a2ad72b-3b27-4238-831a-4df8b0a9e474\",\r\n \"name\": \"Calendar.FindMeetingRoom\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"FindMeetingRoom\"\r\n },\r\n {\r\n \"id\": \"fd770fa7-1e3e-48d4-8e2f-632c1d10f84e\",\r\n \"name\": \"Calendar.GoBack\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"GoBack\"\r\n },\r\n {\r\n \"id\": \"fc0195cc-75e8-47ea-992c-7da592fa0155\",\r\n \"name\": \"Calendar.Location\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"Location\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"0e4726f0-30bf-4287-aea2-3c85c98850cb\",\r\n \"name\": \"Calendar.MeetingRoom\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"MeetingRoom\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"a730b807-351b-4c4b-877d-07e86aa1e342\",\r\n \"name\": \"Calendar.Message\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"Message\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"2193dc5e-b415-44a0-b9e8-223e14a3c7bc\",\r\n \"name\": \"Calendar.MoveEarlierTimeSpan\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"MoveEarlierTimeSpan\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"cdf90a3f-239c-4557-a750-5277a05c71e9\",\r\n \"name\": \"Calendar.MoveLaterTimeSpan\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"MoveLaterTimeSpan\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"06b04abc-f9e8-4806-ac5c-c5b4580ebe18\",\r\n \"name\": \"Calendar.OrderReference\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"OrderReference\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"7ad0fcd5-dff4-48b4-88ff-8e0d55b524a3\",\r\n \"name\": \"Calendar.OriginalEndDate\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"OriginalEndDate\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"69889372-85e2-491c-9edf-2dc85ade33f5\",\r\n \"name\": \"Calendar.OriginalEndTime\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"OriginalEndTime\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"c42ccc4e-0956-44bf-899c-9478c24f7002\",\r\n \"name\": \"Calendar.OriginalStartDate\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"OriginalStartDate\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"66704ca3-9869-48da-8bed-0cea5635beb3\",\r\n \"name\": \"Calendar.OriginalStartTime\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"OriginalStartTime\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"62871d5f-1855-44c7-90f4-b8466e556865\",\r\n \"name\": \"Calendar.PositionReference\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"PositionReference\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"d751e95d-52a8-44bc-8e50-cefd727b416d\",\r\n \"name\": \"Calendar.Reject\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"Reject\"\r\n },\r\n {\r\n \"id\": \"25946ebb-8ec4-4e1d-8354-0cba7b090165\",\r\n \"name\": \"Calendar.RelationshipName\",\r\n \"typeId\": 5,\r\n \"readableType\": \"Closed List Entity Extractor\",\r\n \"subLists\": [\r\n {\r\n \"id\": 102916862,\r\n \"canonicalForm\": \"aunt\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916863,\r\n \"canonicalForm\": \"aunts\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916864,\r\n \"canonicalForm\": \"boss\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916865,\r\n \"canonicalForm\": \"brother\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916866,\r\n \"canonicalForm\": \"brother in law\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916867,\r\n \"canonicalForm\": \"brother-in-law\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916868,\r\n \"canonicalForm\": \"brothers\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916869,\r\n \"canonicalForm\": \"child\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916870,\r\n \"canonicalForm\": \"children\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916871,\r\n \"canonicalForm\": \"colleague\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916872,\r\n \"canonicalForm\": \"colleagues\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916873,\r\n \"canonicalForm\": \"cousin\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916874,\r\n \"canonicalForm\": \"cousins\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916875,\r\n \"canonicalForm\": \"dad\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916876,\r\n \"canonicalForm\": \"daughter\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916877,\r\n \"canonicalForm\": \"daughter in law\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916878,\r\n \"canonicalForm\": \"daughter-in-law\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916879,\r\n \"canonicalForm\": \"daughters\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916880,\r\n \"canonicalForm\": \"families\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916881,\r\n \"canonicalForm\": \"family\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916882,\r\n \"canonicalForm\": \"father\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916883,\r\n \"canonicalForm\": \"father in law\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916884,\r\n \"canonicalForm\": \"father-in-law\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916885,\r\n \"canonicalForm\": \"friend\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916886,\r\n \"canonicalForm\": \"friends\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916887,\r\n \"canonicalForm\": \"grandchild\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916888,\r\n \"canonicalForm\": \"grandchildren\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916889,\r\n \"canonicalForm\": \"granddaughter\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916890,\r\n \"canonicalForm\": \"grandfather\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916891,\r\n \"canonicalForm\": \"grandma\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916892,\r\n \"canonicalForm\": \"grandmother\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916893,\r\n \"canonicalForm\": \"grandparent\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916894,\r\n \"canonicalForm\": \"grandparents\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916895,\r\n \"canonicalForm\": \"grandson\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916896,\r\n \"canonicalForm\": \"grandsons\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916897,\r\n \"canonicalForm\": \"husband\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916898,\r\n \"canonicalForm\": \"in-laws\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916899,\r\n \"canonicalForm\": \"kids\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916900,\r\n \"canonicalForm\": \"mom\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916901,\r\n \"canonicalForm\": \"mother\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916902,\r\n \"canonicalForm\": \"mother in law\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916903,\r\n \"canonicalForm\": \"mother-in-law\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916904,\r\n \"canonicalForm\": \"neighbor\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916905,\r\n \"canonicalForm\": \"neighbors\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916906,\r\n \"canonicalForm\": \"nephew\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916907,\r\n \"canonicalForm\": \"niece\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916908,\r\n \"canonicalForm\": \"parent\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916909,\r\n \"canonicalForm\": \"parents\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916910,\r\n \"canonicalForm\": \"partner\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916911,\r\n \"canonicalForm\": \"siblings\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916912,\r\n \"canonicalForm\": \"sister\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916913,\r\n \"canonicalForm\": \"sister in law\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916914,\r\n \"canonicalForm\": \"sister-in-law\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916915,\r\n \"canonicalForm\": \"sisters\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916916,\r\n \"canonicalForm\": \"son\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916917,\r\n \"canonicalForm\": \"son in law\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916918,\r\n \"canonicalForm\": \"son-in-law\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916919,\r\n \"canonicalForm\": \"step daughter\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916920,\r\n \"canonicalForm\": \"step-daughter\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916921,\r\n \"canonicalForm\": \"stepfather\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916922,\r\n \"canonicalForm\": \"stepmother\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916923,\r\n \"canonicalForm\": \"stepsister\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916924,\r\n \"canonicalForm\": \"stepson\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916925,\r\n \"canonicalForm\": \"students\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916926,\r\n \"canonicalForm\": \"teachers\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916927,\r\n \"canonicalForm\": \"uncle\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916928,\r\n \"canonicalForm\": \"uncles\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916929,\r\n \"canonicalForm\": \"wife\",\r\n \"list\": []\r\n },\r\n {\r\n \"id\": 102916930,\r\n \"canonicalForm\": \"manager\",\r\n \"list\": []\r\n }\r\n ],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"RelationshipName\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"52637e33-79f0-4a51-8aed-121f9151b988\",\r\n \"name\": \"Calendar.ShowNext\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"ShowNext\"\r\n },\r\n {\r\n \"id\": \"3cc240c3-354b-4165-8e63-bda8aba85c20\",\r\n \"name\": \"Calendar.ShowPrevious\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"ShowPrevious\"\r\n },\r\n {\r\n \"id\": \"c365da04-e364-4804-b4a9-315cd47dd867\",\r\n \"name\": \"Calendar.SlotAttribute\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"SlotAttribute\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"2192bd8e-65c1-4ef6-a839-0535be5cd26c\",\r\n \"name\": \"Calendar.StartDate\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"StartDate\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"d2564210-84b0-4d55-96f1-fb3b9a4cc8bb\",\r\n \"name\": \"Calendar.StartTime\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"StartTime\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"f72ba758-3ca5-42d9-aa26-731337f1ab86\",\r\n \"name\": \"Calendar.Subject\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"Subject\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"11bebb71-6d1a-4f06-8e4c-74a306c19990\",\r\n \"name\": \"Calendar.TimeRemaining\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\",\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"TimeRemaining\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/c50458a8-77f3-404b-9f67-5dbcd6d330b3/versions/0.1/customprebuiltdomains/Communication", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9jNTA0NThhOC03N2YzLTQwNGItOWY2Ny01ZGJjZDZkMzMwYjMvdmVyc2lvbnMvMC4xL2N1c3RvbXByZWJ1aWx0ZG9tYWlucy9Db21tdW5pY2F0aW9u", + "RequestUri": "/luis/authoring/v3.0-preview/apps/c3b66003-69c1-4027-8ab1-0b37d67fc719/versions/0.1/customprebuiltdomains/Communication", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2MzYjY2MDAzLTY5YzEtNDAyNy04YWIxLTBiMzdkNjdmYzcxOS92ZXJzaW9ucy8wLjEvY3VzdG9tcHJlYnVpbHRkb21haW5zL0NvbW11bmljYXRpb24=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -258,10 +258,10 @@ "no-cache" ], "Apim-Request-Id": [ - "ecb76d4a-1ce9-4a3a-8cc1-db899ec43c5e" + "a04713b2-6808-4c04-a3e0-5c52fefd8e82" ], "Request-Id": [ - "ecb76d4a-1ce9-4a3a-8cc1-db899ec43c5e" + "a04713b2-6808-4c04-a3e0-5c52fefd8e82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -276,7 +276,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:19:04 GMT" + "Tue, 29 Oct 2019 13:21:56 GMT" ], "Content-Length": [ "51" @@ -289,19 +289,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/c50458a8-77f3-404b-9f67-5dbcd6d330b3?force=false", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy9jNTA0NThhOC03N2YzLTQwNGItOWY2Ny01ZGJjZDZkMzMwYjM/Zm9yY2U9ZmFsc2U=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/c3b66003-69c1-4027-8ab1-0b37d67fc719?force=false", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzL2MzYjY2MDAzLTY5YzEtNDAyNy04YWIxLTBiMzdkNjdmYzcxOT9mb3JjZT1mYWxzZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -312,10 +312,10 @@ "no-cache" ], "Apim-Request-Id": [ - "39e34cf8-b7fa-45fe-9c76-fdc41b4fb6f6" + "1d12955a-0e5e-4b13-88ed-e7f0306a267e" ], "Request-Id": [ - "39e34cf8-b7fa-45fe-9c76-fdc41b4fb6f6" + "1d12955a-0e5e-4b13-88ed-e7f0306a267e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -330,7 +330,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:19:04 GMT" + "Tue, 29 Oct 2019 13:21:57 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltsTests/AddPrebuilt.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltsTests/AddPrebuilt.json index 16a9ed3b2ec9..0e69755eb2f5 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltsTests/AddPrebuilt.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltsTests/AddPrebuilt.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRz", "RequestMethod": "POST", "RequestBody": "[\r\n \"number\",\r\n \"ordinal\"\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,10 +30,10 @@ "no-cache" ], "Apim-Request-Id": [ - "f152426b-1492-49bf-b75d-5300897edf7a" + "ef5fa9e8-ad5f-446a-86d1-7f64ec6a7c21" ], "Request-Id": [ - "f152426b-1492-49bf-b75d-5300897edf7a" + "ef5fa9e8-ad5f-446a-86d1-7f64ec6a7c21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -48,7 +48,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:05 GMT" + "Tue, 29 Oct 2019 13:22:34 GMT" ], "Content-Length": [ "256" @@ -57,23 +57,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"e354a24c-7340-4c86-9f27-e93a8eeb4df2\",\r\n \"name\": \"number\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"5a97d47b-508e-4bd2-89ae-c0b03f43a057\",\r\n \"name\": \"ordinal\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"8c71c1ec-af58-4f69-a225-c367384381c2\",\r\n \"name\": \"number\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"9bf65106-b427-4b98-8f24-cb63ad20f1c8\",\r\n \"name\": \"ordinal\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/e354a24c-7340-4c86-9f27-e93a8eeb4df2", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy9lMzU0YTI0Yy03MzQwLTRjODYtOWYyNy1lOTNhOGVlYjRkZjI=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/8c71c1ec-af58-4f69-a225-c367384381c2", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzhjNzFjMWVjLWFmNTgtNGY2OS1hMjI1LWMzNjczODQzODFjMg==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -84,10 +84,10 @@ "no-cache" ], "Apim-Request-Id": [ - "1cb65256-a39a-4c57-a133-2e51322eef8f" + "32e3cbfc-20c0-48b3-bdda-887c05426d69" ], "Request-Id": [ - "1cb65256-a39a-4c57-a133-2e51322eef8f" + "32e3cbfc-20c0-48b3-bdda-887c05426d69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -102,7 +102,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:06 GMT" + "Tue, 29 Oct 2019 13:22:34 GMT" ], "Content-Length": [ "51" @@ -115,19 +115,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/5a97d47b-508e-4bd2-89ae-c0b03f43a057", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy81YTk3ZDQ3Yi01MDhlLTRiZDItODlhZS1jMGIwM2Y0M2EwNTc=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/9bf65106-b427-4b98-8f24-cb63ad20f1c8", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzliZjY1MTA2LWI0MjctNGI5OC04ZjI0LWNiNjNhZDIwZjFjOA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -138,10 +138,10 @@ "no-cache" ], "Apim-Request-Id": [ - "11f06755-77c8-47e5-8abb-dbdb4c95c86f" + "a9c77adc-5312-4cc0-b8a7-93bd9de90678" ], "Request-Id": [ - "11f06755-77c8-47e5-8abb-dbdb4c95c86f" + "a9c77adc-5312-4cc0-b8a7-93bd9de90678" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -156,7 +156,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:06 GMT" + "Tue, 29 Oct 2019 13:22:35 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltsTests/DeletePrebuilt.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltsTests/DeletePrebuilt.json index 31d66e629a97..c43bec8bec67 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltsTests/DeletePrebuilt.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltsTests/DeletePrebuilt.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRz", "RequestMethod": "POST", "RequestBody": "[\r\n \"number\"\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,10 +30,10 @@ "no-cache" ], "Apim-Request-Id": [ - "20a1a0cc-ab44-4a88-b4f9-fb09cb016167" + "d91acde7-4252-487f-9002-985109e25e04" ], "Request-Id": [ - "20a1a0cc-ab44-4a88-b4f9-fb09cb016167" + "d91acde7-4252-487f-9002-985109e25e04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -48,7 +48,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:07 GMT" + "Tue, 29 Oct 2019 13:22:32 GMT" ], "Content-Length": [ "128" @@ -57,23 +57,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"e8cfc3d7-eed0-43c6-aef0-246640a1e835\",\r\n \"name\": \"number\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"8825d34a-8da7-4674-bb39-8b905b85ee32\",\r\n \"name\": \"number\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/e8cfc3d7-eed0-43c6-aef0-246640a1e835", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy9lOGNmYzNkNy1lZWQwLTQzYzYtYWVmMC0yNDY2NDBhMWU4MzU=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/8825d34a-8da7-4674-bb39-8b905b85ee32", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzg4MjVkMzRhLThkYTctNDY3NC1iYjM5LThiOTA1Yjg1ZWUzMg==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -84,10 +84,10 @@ "no-cache" ], "Apim-Request-Id": [ - "35a00368-691a-443a-8850-7b2d25ffc090" + "34f22c46-73cf-418e-9d8d-545a3e21bccf" ], "Request-Id": [ - "35a00368-691a-443a-8850-7b2d25ffc090" + "34f22c46-73cf-418e-9d8d-545a3e21bccf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -102,7 +102,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:08 GMT" + "Tue, 29 Oct 2019 13:22:33 GMT" ], "Content-Length": [ "51" @@ -115,19 +115,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cz9za2lwPTAmdGFrZT0xMDA=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzP3NraXA9MCZ0YWtlPTEwMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -138,10 +138,10 @@ "no-cache" ], "Apim-Request-Id": [ - "234d8345-1ec6-4460-8215-308ee83455d7" + "e5d07a68-4e1c-4fed-94b4-c36e161170b4" ], "Request-Id": [ - "234d8345-1ec6-4460-8215-308ee83455d7" + "e5d07a68-4e1c-4fed-94b4-c36e161170b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -156,16 +156,16 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:08 GMT" + "Tue, 29 Oct 2019 13:22:33 GMT" ], "Content-Length": [ - "2" + "256" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"id\": \"23c88435-51c0-4d07-9bb7-28cb7965b172\",\r\n \"name\": \"age\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"cccee2c5-5e70-44ab-9bda-3519e7c73bd9\",\r\n \"name\": \"datetimeV2\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 200 } ], diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltsTests/GetPrebuilt.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltsTests/GetPrebuilt.json index 41a05b50c9dc..2af9c1186d6e 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltsTests/GetPrebuilt.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltsTests/GetPrebuilt.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRz", "RequestMethod": "POST", "RequestBody": "[\r\n \"number\"\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,10 +30,10 @@ "no-cache" ], "Apim-Request-Id": [ - "0a52efde-12bc-4d81-b4d2-c8a3d63ca19f" + "09107848-a371-4723-ac4c-e8eba8e551d1" ], "Request-Id": [ - "0a52efde-12bc-4d81-b4d2-c8a3d63ca19f" + "09107848-a371-4723-ac4c-e8eba8e551d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -48,7 +48,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:09 GMT" + "Tue, 29 Oct 2019 13:22:36 GMT" ], "Content-Length": [ "128" @@ -57,23 +57,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"062a4df4-19f0-4e97-b6eb-b5190cf91dde\",\r\n \"name\": \"number\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"0938b0f5-ef07-438d-ba52-7295ab9d1ba5\",\r\n \"name\": \"number\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/062a4df4-19f0-4e97-b6eb-b5190cf91dde", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy8wNjJhNGRmNC0xOWYwLTRlOTctYjZlYi1iNTE5MGNmOTFkZGU=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/0938b0f5-ef07-438d-ba52-7295ab9d1ba5", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzA5MzhiMGY1LWVmMDctNDM4ZC1iYTUyLTcyOTVhYjlkMWJhNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -84,10 +84,10 @@ "no-cache" ], "Apim-Request-Id": [ - "79bd150e-5871-4bd7-b91f-eeadae19445e" + "c89363c7-8f1d-4538-bdee-325fac01617a" ], "Request-Id": [ - "79bd150e-5871-4bd7-b91f-eeadae19445e" + "c89363c7-8f1d-4538-bdee-325fac01617a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -102,7 +102,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:09 GMT" + "Tue, 29 Oct 2019 13:22:36 GMT" ], "Content-Length": [ "126" @@ -111,23 +111,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"062a4df4-19f0-4e97-b6eb-b5190cf91dde\",\r\n \"name\": \"number\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"0938b0f5-ef07-438d-ba52-7295ab9d1ba5\",\r\n \"name\": \"number\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/062a4df4-19f0-4e97-b6eb-b5190cf91dde", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy8wNjJhNGRmNC0xOWYwLTRlOTctYjZlYi1iNTE5MGNmOTFkZGU=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/0938b0f5-ef07-438d-ba52-7295ab9d1ba5", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzA5MzhiMGY1LWVmMDctNDM4ZC1iYTUyLTcyOTVhYjlkMWJhNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -138,10 +138,10 @@ "no-cache" ], "Apim-Request-Id": [ - "eb7dea6f-96ef-4909-ab23-236e46e2bab8" + "e9a53832-7617-486c-a950-ab63a66bf95c" ], "Request-Id": [ - "eb7dea6f-96ef-4909-ab23-236e46e2bab8" + "e9a53832-7617-486c-a950-ab63a66bf95c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -156,7 +156,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:10 GMT" + "Tue, 29 Oct 2019 13:22:36 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltsTests/ListPrebuiltEntities.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltsTests/ListPrebuiltEntities.json index 64cd65510d43..07c50c42dd88 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltsTests/ListPrebuiltEntities.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltsTests/ListPrebuiltEntities.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/listprebuilts", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2xpc3RwcmVidWlsdHM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/listprebuilts", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvbGlzdHByZWJ1aWx0cw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -24,10 +24,10 @@ "no-cache" ], "Apim-Request-Id": [ - "3142bd24-8648-4e04-8f65-aff27c24ff20" + "45305a3c-494e-45c4-8cf6-071a00708df5" ], "Request-Id": [ - "3142bd24-8648-4e04-8f65-aff27c24ff20" + "45305a3c-494e-45c4-8cf6-071a00708df5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -42,7 +42,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:05 GMT" + "Tue, 29 Oct 2019 13:22:30 GMT" ], "Content-Length": [ "2704" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltsTests/ListPrebuilts.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltsTests/ListPrebuilts.json index 86e9362da7ce..54186118cda9 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltsTests/ListPrebuilts.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelPrebuiltsTests/ListPrebuilts.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRz", "RequestMethod": "POST", "RequestBody": "[\r\n \"number\"\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,10 +30,10 @@ "no-cache" ], "Apim-Request-Id": [ - "5c365092-c05e-4135-9cdc-344da524f60c" + "78e79715-2675-44b5-ae07-d48af263c9c9" ], "Request-Id": [ - "5c365092-c05e-4135-9cdc-344da524f60c" + "78e79715-2675-44b5-ae07-d48af263c9c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -48,7 +48,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:11 GMT" + "Tue, 29 Oct 2019 13:22:31 GMT" ], "Content-Length": [ "128" @@ -57,23 +57,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"f9bcb8c2-712a-4783-91b4-7a3454bdad8e\",\r\n \"name\": \"number\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"65da3e8f-3881-45de-8967-4bb580cbf282\",\r\n \"name\": \"number\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cz9za2lwPTAmdGFrZT0xMDA=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzP3NraXA9MCZ0YWtlPTEwMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -84,10 +84,10 @@ "no-cache" ], "Apim-Request-Id": [ - "414d356d-e35c-401d-ac26-c5858295469c" + "fc0f0000-01da-4e0a-9ff0-22ef5117c6fd" ], "Request-Id": [ - "414d356d-e35c-401d-ac26-c5858295469c" + "fc0f0000-01da-4e0a-9ff0-22ef5117c6fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -102,32 +102,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:11 GMT" + "Tue, 29 Oct 2019 13:22:31 GMT" ], "Content-Length": [ - "128" + "383" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"f9bcb8c2-712a-4783-91b4-7a3454bdad8e\",\r\n \"name\": \"number\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"23c88435-51c0-4d07-9bb7-28cb7965b172\",\r\n \"name\": \"age\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"cccee2c5-5e70-44ab-9bda-3519e7c73bd9\",\r\n \"name\": \"datetimeV2\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"65da3e8f-3881-45de-8967-4bb580cbf282\",\r\n \"name\": \"number\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/f9bcb8c2-712a-4783-91b4-7a3454bdad8e", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy9mOWJjYjhjMi03MTJhLTQ3ODMtOTFiNC03YTM0NTRiZGFkOGU=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/65da3e8f-3881-45de-8967-4bb580cbf282", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzY1ZGEzZThmLTM4ODEtNDVkZS04OTY3LTRiYjU4MGNiZjI4Mg==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -138,10 +138,10 @@ "no-cache" ], "Apim-Request-Id": [ - "1763a40c-13d8-4e88-8d48-893db00f8468" + "2dcc4c5c-5217-4089-badc-081e68de3e9f" ], "Request-Id": [ - "1763a40c-13d8-4e88-8d48-893db00f8468" + "2dcc4c5c-5217-4089-badc-081e68de3e9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -156,7 +156,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:11 GMT" + "Tue, 29 Oct 2019 13:22:31 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelRegexEntitiesTests/CreateRegexEntity.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelRegexEntitiesTests/CreateRegexEntity.json index 28a428bae3fb..05891fed7b9e 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelRegexEntitiesTests/CreateRegexEntity.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelRegexEntitiesTests/CreateRegexEntity.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"regexPattern\": \"regex pattern 1\",\r\n \"name\": \"regex entity 1\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/3ea41fe4-b7ff-44fc-a4c9-cfd000e79e8f" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/d1304df1-b473-4ddc-bc8d-502cac9899c7" ], "Apim-Request-Id": [ - "54fcb9ba-8983-4ab5-901f-24bd94d69ef0" + "16ca5eff-4a19-4e7e-b564-60233809de78" ], "Request-Id": [ - "54fcb9ba-8983-4ab5-901f-24bd94d69ef0" + "16ca5eff-4a19-4e7e-b564-60233809de78" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/3ea41fe4-b7ff-44fc-a4c9-cfd000e79e8f" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/d1304df1-b473-4ddc-bc8d-502cac9899c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:47 GMT" + "Tue, 29 Oct 2019 13:22:42 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"3ea41fe4-b7ff-44fc-a4c9-cfd000e79e8f\"", + "ResponseBody": "\"d1304df1-b473-4ddc-bc8d-502cac9899c7\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/3ea41fe4-b7ff-44fc-a4c9-cfd000e79e8f", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvM2VhNDFmZTQtYjdmZi00NGZjLWE0YzktY2ZkMDAwZTc5ZThm", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/d1304df1-b473-4ddc-bc8d-502cac9899c7", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy9kMTMwNGRmMS1iNDczLTRkZGMtYmM4ZC01MDJjYWM5ODk5Yzc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "8786229f-eb21-4396-a5c8-19a866f872ad" + "56f05da1-d908-420c-91a5-9e219705630a" ], "Request-Id": [ - "8786229f-eb21-4396-a5c8-19a866f872ad" + "56f05da1-d908-420c-91a5-9e219705630a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:47 GMT" + "Tue, 29 Oct 2019 13:22:43 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelRegexEntitiesTests/DeleteRegexEntity.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelRegexEntitiesTests/DeleteRegexEntity.json index 013072685e93..9c2ee8b719ef 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelRegexEntitiesTests/DeleteRegexEntity.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelRegexEntitiesTests/DeleteRegexEntity.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"regexPattern\": \"regex pattern 1\",\r\n \"name\": \"regex entity 1\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/7f99de6f-d267-4bfd-8f07-c3bfcca8526c" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/79e34eb8-9c3f-4116-802d-01214c59e4fb" ], "Apim-Request-Id": [ - "fb5f86b3-773d-407e-9926-683253480111" + "98ffec3a-5146-4ada-95b1-9c16bdf7420c" ], "Request-Id": [ - "fb5f86b3-773d-407e-9926-683253480111" + "98ffec3a-5146-4ada-95b1-9c16bdf7420c" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/7f99de6f-d267-4bfd-8f07-c3bfcca8526c" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/79e34eb8-9c3f-4116-802d-01214c59e4fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:49 GMT" + "Tue, 29 Oct 2019 13:22:44 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"7f99de6f-d267-4bfd-8f07-c3bfcca8526c\"", + "ResponseBody": "\"79e34eb8-9c3f-4116-802d-01214c59e4fb\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/7f99de6f-d267-4bfd-8f07-c3bfcca8526c", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvN2Y5OWRlNmYtZDI2Ny00YmZkLThmMDctYzNiZmNjYTg1MjZj", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/79e34eb8-9c3f-4116-802d-01214c59e4fb", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy83OWUzNGViOC05YzNmLTQxMTYtODAyZC0wMTIxNGM1OWU0ZmI=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "5a189a27-553e-48d5-bd11-83bafb5ee9ac" + "c984ee97-9a85-40c1-ab9c-7415c264e393" ], "Request-Id": [ - "5a189a27-553e-48d5-bd11-83bafb5ee9ac" + "c984ee97-9a85-40c1-ab9c-7415c264e393" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:50 GMT" + "Tue, 29 Oct 2019 13:22:44 GMT" ], "Content-Length": [ "51" @@ -121,19 +121,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "ba764e64-01d6-4d13-80d1-7c19a2559b26" + "bba31017-3d6f-4a19-b6be-e92ad4f47586" ], "Request-Id": [ - "ba764e64-01d6-4d13-80d1-7c19a2559b26" + "bba31017-3d6f-4a19-b6be-e92ad4f47586" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:50 GMT" + "Tue, 29 Oct 2019 13:22:45 GMT" ], "Content-Length": [ "2" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelRegexEntitiesTests/GetRegexEntities.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelRegexEntitiesTests/GetRegexEntities.json index 63357a3ef15c..932352a927a9 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelRegexEntitiesTests/GetRegexEntities.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelRegexEntitiesTests/GetRegexEntities.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"regexPattern\": \"regex pattern 1\",\r\n \"name\": \"regex entity 1\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/4fdb74c5-7e7f-4cd4-a35a-de27a9fa10e5" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/8c21e9cd-2a69-495d-a9bd-9d2d8c4bddb2" ], "Apim-Request-Id": [ - "6261d09a-6acd-4e2e-8ca4-032c07a210d1" + "afab8f8c-64b1-4c40-9645-2f70e152baa8" ], "Request-Id": [ - "6261d09a-6acd-4e2e-8ca4-032c07a210d1" + "afab8f8c-64b1-4c40-9645-2f70e152baa8" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/4fdb74c5-7e7f-4cd4-a35a-de27a9fa10e5" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/8c21e9cd-2a69-495d-a9bd-9d2d8c4bddb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:52 GMT" + "Tue, 29 Oct 2019 13:22:39 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"4fdb74c5-7e7f-4cd4-a35a-de27a9fa10e5\"", + "ResponseBody": "\"8c21e9cd-2a69-495d-a9bd-9d2d8c4bddb2\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "16797aca-5347-4a64-a3c6-ba850e55e546" + "a9f7c7a0-e12c-4f76-b85e-c1275176cb12" ], "Request-Id": [ - "16797aca-5347-4a64-a3c6-ba850e55e546" + "a9f7c7a0-e12c-4f76-b85e-c1275176cb12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:52 GMT" + "Tue, 29 Oct 2019 13:22:40 GMT" ], "Content-Length": [ "166" @@ -117,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"4fdb74c5-7e7f-4cd4-a35a-de27a9fa10e5\",\r\n \"name\": \"regex entity 1\",\r\n \"typeId\": 8,\r\n \"readableType\": \"Regex Entity Extractor\",\r\n \"regexPattern\": \"regex pattern 1\",\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"8c21e9cd-2a69-495d-a9bd-9d2d8c4bddb2\",\r\n \"name\": \"regex entity 1\",\r\n \"typeId\": 8,\r\n \"readableType\": \"Regex Entity Extractor\",\r\n \"regexPattern\": \"regex pattern 1\",\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/4fdb74c5-7e7f-4cd4-a35a-de27a9fa10e5", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvNGZkYjc0YzUtN2U3Zi00Y2Q0LWEzNWEtZGUyN2E5ZmExMGU1", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/8c21e9cd-2a69-495d-a9bd-9d2d8c4bddb2", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy84YzIxZTljZC0yYTY5LTQ5NWQtYTliZC05ZDJkOGM0YmRkYjI=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "fada6584-3171-4241-9a99-2faff97128b8" + "bb6d77df-104f-4adf-a895-b68ff037510b" ], "Request-Id": [ - "fada6584-3171-4241-9a99-2faff97128b8" + "bb6d77df-104f-4adf-a895-b68ff037510b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:52 GMT" + "Tue, 29 Oct 2019 13:22:40 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelRegexEntitiesTests/GetRegexEntity.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelRegexEntitiesTests/GetRegexEntity.json index f0c3fab8a8c1..24ae00a83adf 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelRegexEntitiesTests/GetRegexEntity.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelRegexEntitiesTests/GetRegexEntity.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"regexPattern\": \"regex pattern 1\",\r\n \"name\": \"regex entity 1\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/f681b2f6-89cc-4dc5-be94-9cbbd690e7fe" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/ec52e8ad-0b88-4ff5-a6a3-179b143f1f01" ], "Apim-Request-Id": [ - "11ac8126-fcc1-4501-9dc0-b834e923b45a" + "94f17fd7-ee7f-4b67-9410-cc3d84f51dc3" ], "Request-Id": [ - "11ac8126-fcc1-4501-9dc0-b834e923b45a" + "94f17fd7-ee7f-4b67-9410-cc3d84f51dc3" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/f681b2f6-89cc-4dc5-be94-9cbbd690e7fe" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/ec52e8ad-0b88-4ff5-a6a3-179b143f1f01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:45 GMT" + "Tue, 29 Oct 2019 13:22:41 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"f681b2f6-89cc-4dc5-be94-9cbbd690e7fe\"", + "ResponseBody": "\"ec52e8ad-0b88-4ff5-a6a3-179b143f1f01\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/f681b2f6-89cc-4dc5-be94-9cbbd690e7fe", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvZjY4MWIyZjYtODljYy00ZGM1LWJlOTQtOWNiYmQ2OTBlN2Zl", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/ec52e8ad-0b88-4ff5-a6a3-179b143f1f01", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy9lYzUyZThhZC0wYjg4LTRmZjUtYTZhMy0xNzliMTQzZjFmMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "c3a71f61-e0e5-4abd-8a52-cbbef6656878" + "50d20ca7-c980-424f-a267-4efc3292d87d" ], "Request-Id": [ - "c3a71f61-e0e5-4abd-8a52-cbbef6656878" + "50d20ca7-c980-424f-a267-4efc3292d87d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:45 GMT" + "Tue, 29 Oct 2019 13:22:41 GMT" ], "Content-Length": [ "164" @@ -117,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"f681b2f6-89cc-4dc5-be94-9cbbd690e7fe\",\r\n \"name\": \"regex entity 1\",\r\n \"typeId\": 8,\r\n \"readableType\": \"Regex Entity Extractor\",\r\n \"regexPattern\": \"regex pattern 1\",\r\n \"roles\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"ec52e8ad-0b88-4ff5-a6a3-179b143f1f01\",\r\n \"name\": \"regex entity 1\",\r\n \"typeId\": 8,\r\n \"readableType\": \"Regex Entity Extractor\",\r\n \"regexPattern\": \"regex pattern 1\",\r\n \"roles\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/f681b2f6-89cc-4dc5-be94-9cbbd690e7fe", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvZjY4MWIyZjYtODljYy00ZGM1LWJlOTQtOWNiYmQ2OTBlN2Zl", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/ec52e8ad-0b88-4ff5-a6a3-179b143f1f01", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy9lYzUyZThhZC0wYjg4LTRmZjUtYTZhMy0xNzliMTQzZjFmMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "47dde4a5-6c6c-4595-90d9-b4677ab71d1d" + "7307d5c7-01e6-4bd9-9eda-d53f3e32be78" ], "Request-Id": [ - "47dde4a5-6c6c-4595-90d9-b4677ab71d1d" + "7307d5c7-01e6-4bd9-9eda-d53f3e32be78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:45 GMT" + "Tue, 29 Oct 2019 13:22:41 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelRegexEntitiesTests/UpdateRegexEntity.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelRegexEntitiesTests/UpdateRegexEntity.json index a93636fe5f41..f1ac748eb6d0 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelRegexEntitiesTests/UpdateRegexEntity.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelRegexEntitiesTests/UpdateRegexEntity.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"regexPattern\": \"regex pattern 1\",\r\n \"name\": \"regex entity 1\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/11f5819e-9300-43aa-98e4-4dbfd5d6138f" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/a359ec2d-40b1-4406-a202-720f6b56e625" ], "Apim-Request-Id": [ - "3488d871-8a19-470c-a6b3-c375d582cf16" + "8bc02991-2ec9-45d0-8b51-34529a51f582" ], "Request-Id": [ - "3488d871-8a19-470c-a6b3-c375d582cf16" + "8bc02991-2ec9-45d0-8b51-34529a51f582" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/11f5819e-9300-43aa-98e4-4dbfd5d6138f" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/a359ec2d-40b1-4406-a202-720f6b56e625" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:48 GMT" + "Tue, 29 Oct 2019 13:22:38 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"11f5819e-9300-43aa-98e4-4dbfd5d6138f\"", + "ResponseBody": "\"a359ec2d-40b1-4406-a202-720f6b56e625\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/11f5819e-9300-43aa-98e4-4dbfd5d6138f", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvMTFmNTgxOWUtOTMwMC00M2FhLTk4ZTQtNGRiZmQ1ZDYxMzhm", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/a359ec2d-40b1-4406-a202-720f6b56e625", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy9hMzU5ZWMyZC00MGIxLTQ0MDYtYTIwMi03MjBmNmI1NmU2MjU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"regexPattern\": \"regex pattern 2\",\r\n \"name\": \"regex entity 2\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -96,10 +96,10 @@ "no-cache" ], "Apim-Request-Id": [ - "88d80f68-6f35-45e9-8e6c-554b812b9eb2" + "69eff783-4698-417a-bdf9-5f31b64b5a7f" ], "Request-Id": [ - "88d80f68-6f35-45e9-8e6c-554b812b9eb2" + "69eff783-4698-417a-bdf9-5f31b64b5a7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -114,7 +114,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:48 GMT" + "Tue, 29 Oct 2019 13:22:38 GMT" ], "Content-Length": [ "164" @@ -123,23 +123,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"11f5819e-9300-43aa-98e4-4dbfd5d6138f\",\r\n \"name\": \"regex entity 2\",\r\n \"typeId\": 8,\r\n \"readableType\": \"Regex Entity Extractor\",\r\n \"regexPattern\": \"regex pattern 2\",\r\n \"roles\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"a359ec2d-40b1-4406-a202-720f6b56e625\",\r\n \"name\": \"regex entity 2\",\r\n \"typeId\": 8,\r\n \"readableType\": \"Regex Entity Extractor\",\r\n \"regexPattern\": \"regex pattern 2\",\r\n \"roles\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/11f5819e-9300-43aa-98e4-4dbfd5d6138f", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvMTFmNTgxOWUtOTMwMC00M2FhLTk4ZTQtNGRiZmQ1ZDYxMzhm", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/a359ec2d-40b1-4406-a202-720f6b56e625", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy9hMzU5ZWMyZC00MGIxLTQ0MDYtYTIwMi03MjBmNmI1NmU2MjU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -150,10 +150,10 @@ "no-cache" ], "Apim-Request-Id": [ - "83d2b323-ed0e-4fe7-b930-4601e9afdd26" + "0bb76553-bc2f-4f52-8f54-01b5ddc2f104" ], "Request-Id": [ - "83d2b323-ed0e-4fe7-b930-4601e9afdd26" + "0bb76553-bc2f-4f52-8f54-01b5ddc2f104" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -168,7 +168,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:49 GMT" + "Tue, 29 Oct 2019 13:22:38 GMT" ], "Content-Length": [ "164" @@ -177,23 +177,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"11f5819e-9300-43aa-98e4-4dbfd5d6138f\",\r\n \"name\": \"regex entity 2\",\r\n \"typeId\": 8,\r\n \"readableType\": \"Regex Entity Extractor\",\r\n \"regexPattern\": \"regex pattern 2\",\r\n \"roles\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"a359ec2d-40b1-4406-a202-720f6b56e625\",\r\n \"name\": \"regex entity 2\",\r\n \"typeId\": 8,\r\n \"readableType\": \"Regex Entity Extractor\",\r\n \"regexPattern\": \"regex pattern 2\",\r\n \"roles\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/regexentities/11f5819e-9300-43aa-98e4-4dbfd5d6138f", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3JlZ2V4ZW50aXRpZXMvMTFmNTgxOWUtOTMwMC00M2FhLTk4ZTQtNGRiZmQ1ZDYxMzhm", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/regexentities/a359ec2d-40b1-4406-a202-720f6b56e625", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcmVnZXhlbnRpdGllcy9hMzU5ZWMyZC00MGIxLTQ0MDYtYTIwMi03MjBmNmI1NmU2MjU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "d03e05fc-ee4c-4d54-ba6d-82b0d65e47b5" + "16ac07b0-a29b-4896-9188-cbd2bd94636c" ], "Request-Id": [ - "d03e05fc-ee4c-4d54-ba6d-82b0d65e47b5" + "16ac07b0-a29b-4896-9188-cbd2bd94636c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,7 +222,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:49 GMT" + "Tue, 29 Oct 2019 13:22:39 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelSimpleEntitiesTests/AddEntity.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelSimpleEntitiesTests/AddEntity.json index 6314ef34d7f6..2753582a03e0 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelSimpleEntitiesTests/AddEntity.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelSimpleEntitiesTests/AddEntity.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"New Entity Test\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/e030dde0-bcb8-4341-98b8-5213870be3bb" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/1b99f3ca-34b4-4d80-9537-bd6b04ab4c19" ], "Apim-Request-Id": [ - "7293dbf5-7690-4651-ae8c-bd0e423effb1" + "423a81e6-e19b-4cd1-93bc-fef03b07b1cc" ], "Request-Id": [ - "7293dbf5-7690-4651-ae8c-bd0e423effb1" + "423a81e6-e19b-4cd1-93bc-fef03b07b1cc" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/e030dde0-bcb8-4341-98b8-5213870be3bb" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/1b99f3ca-34b4-4d80-9537-bd6b04ab4c19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:57 GMT" + "Tue, 29 Oct 2019 13:19:38 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"e030dde0-bcb8-4341-98b8-5213870be3bb\"", + "ResponseBody": "\"1b99f3ca-34b4-4d80-9537-bd6b04ab4c19\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/e030dde0-bcb8-4341-98b8-5213870be3bb", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzL2UwMzBkZGUwLWJjYjgtNDM0MS05OGI4LTUyMTM4NzBiZTNiYg==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/1b99f3ca-34b4-4d80-9537-bd6b04ab4c19", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvMWI5OWYzY2EtMzRiNC00ZDgwLTk1MzctYmQ2YjA0YWI0YzE5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "9f3ecb06-580b-4c74-af0c-d95394da44b5" + "c61a0620-112b-4536-9127-593bb9421114" ], "Request-Id": [ - "9f3ecb06-580b-4c74-af0c-d95394da44b5" + "c61a0620-112b-4536-9127-593bb9421114" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,32 +108,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:57 GMT" + "Tue, 29 Oct 2019 13:19:38 GMT" ], "Content-Length": [ - "126" + "140" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"e030dde0-bcb8-4341-98b8-5213870be3bb\",\r\n \"name\": \"New Entity Test\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"roles\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"1b99f3ca-34b4-4d80-9537-bd6b04ab4c19\",\r\n \"name\": \"New Entity Test\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"roles\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/e030dde0-bcb8-4341-98b8-5213870be3bb", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzL2UwMzBkZGUwLWJjYjgtNDM0MS05OGI4LTUyMTM4NzBiZTNiYg==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/1b99f3ca-34b4-4d80-9537-bd6b04ab4c19", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvMWI5OWYzY2EtMzRiNC00ZDgwLTk1MzctYmQ2YjA0YWI0YzE5", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "8c3f3d54-58a1-45bb-9060-6dd4ce6d9bce" + "0c69ccc7-d13c-4aee-93ff-eed8e651f827" ], "Request-Id": [ - "8c3f3d54-58a1-45bb-9060-6dd4ce6d9bce" + "0c69ccc7-d13c-4aee-93ff-eed8e651f827" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:58 GMT" + "Tue, 29 Oct 2019 13:19:38 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelSimpleEntitiesTests/DeleteEntity.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelSimpleEntitiesTests/DeleteEntity.json index f494f412491b..11ee992273a7 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelSimpleEntitiesTests/DeleteEntity.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelSimpleEntitiesTests/DeleteEntity.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"Delete Entity Test\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/9dbda2a6-5cac-4415-83af-cae1d7f66518" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/686cff96-6315-493f-ba7f-7b1458d91316" ], "Apim-Request-Id": [ - "e35dadb1-e86c-4d02-a5e4-3f7900dc94bb" + "319852ba-54a7-4b07-b706-f24a841348df" ], "Request-Id": [ - "e35dadb1-e86c-4d02-a5e4-3f7900dc94bb" + "319852ba-54a7-4b07-b706-f24a841348df" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/9dbda2a6-5cac-4415-83af-cae1d7f66518" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/686cff96-6315-493f-ba7f-7b1458d91316" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:55 GMT" + "Tue, 29 Oct 2019 13:19:35 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"9dbda2a6-5cac-4415-83af-cae1d7f66518\"", + "ResponseBody": "\"686cff96-6315-493f-ba7f-7b1458d91316\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/9dbda2a6-5cac-4415-83af-cae1d7f66518", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzLzlkYmRhMmE2LTVjYWMtNDQxNS04M2FmLWNhZTFkN2Y2NjUxOA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/686cff96-6315-493f-ba7f-7b1458d91316", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvNjg2Y2ZmOTYtNjMxNS00OTNmLWJhN2YtN2IxNDU4ZDkxMzE2", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "47fd8280-b2c0-4e6e-8754-55019b9522e3" + "7f9efcd9-6f15-4b2a-81ff-4dea6698d0af" ], "Request-Id": [ - "47fd8280-b2c0-4e6e-8754-55019b9522e3" + "7f9efcd9-6f15-4b2a-81ff-4dea6698d0af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:56 GMT" + "Tue, 29 Oct 2019 13:19:35 GMT" ], "Content-Length": [ "51" @@ -121,19 +121,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzP3NraXA9MCZ0YWtlPTEwMA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM/c2tpcD0wJnRha2U9MTAw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "cbe53c0c-dd73-491b-9444-8e3811d0535b" + "d9b8ae0c-79a6-41a9-a751-dbad648f181c" ], "Request-Id": [ - "cbe53c0c-dd73-491b-9444-8e3811d0535b" + "d9b8ae0c-79a6-41a9-a751-dbad648f181c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,16 +162,16 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:56 GMT" + "Tue, 29 Oct 2019 13:19:35 GMT" ], "Content-Length": [ - "2" + "1087" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[]", + "ResponseBody": "[\r\n {\r\n \"id\": \"7de1c115-4bee-4488-845c-bcc94b660082\",\r\n \"name\": \"a1\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [\r\n {\r\n \"id\": \"7def2a1b-ffc0-49b9-8473-a0f30e12a2d7\",\r\n \"name\": \"b1\",\r\n \"instanceOf\": \"datetimeV2\",\r\n \"children\": [],\r\n \"typeId\": 1,\r\n \"readableType\": \"Child Entity Extractor\"\r\n },\r\n {\r\n \"id\": \"d367e574-ec2c-4e30-a366-b3154a419079\",\r\n \"name\": \"c1\",\r\n \"children\": [\r\n {\r\n \"id\": \"8201347d-e0b6-4bbc-b666-fa83c7e40061\",\r\n \"name\": \"d1\",\r\n \"children\": [\r\n {\r\n \"id\": \"90dfb074-b072-42fd-a1b4-59847f163de6\",\r\n \"name\": \"e1\",\r\n \"instanceOf\": \"datetimeV2\",\r\n \"children\": [],\r\n \"typeId\": 1,\r\n \"readableType\": \"Child Entity Extractor\"\r\n }\r\n ],\r\n \"typeId\": 1,\r\n \"readableType\": \"Child Entity Extractor\"\r\n }\r\n ],\r\n \"typeId\": 1,\r\n \"readableType\": \"Child Entity Extractor\"\r\n }\r\n ],\r\n \"roles\": [\r\n {\r\n \"id\": \"2e7bb328-e8ff-4e4f-90cc-f8828e0e3ba3\",\r\n \"name\": \"role_a1\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"f3ff4992-88d3-45ef-a1ec-d0e77fa02df9\",\r\n \"name\": \"Calendar.Subject\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"Subject\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"abf20029-becf-4779-b8e9-8ced75f54163\",\r\n \"name\": \"simpleentity1\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 200 } ], diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelSimpleEntitiesTests/GetEntity.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelSimpleEntitiesTests/GetEntity.json index d8192a96a620..d02cbf08833c 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelSimpleEntitiesTests/GetEntity.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelSimpleEntitiesTests/GetEntity.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"New Entity Test\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/b8732f7b-b537-4af5-93e7-75502bc98085" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/6c4fb6f8-b7f4-487d-acb7-248ece727282" ], "Apim-Request-Id": [ - "a0f58ef8-54f4-4f8e-b4c5-f3d7067fc6ca" + "0c180c9b-d5a6-436d-9fb2-c6da4332d814" ], "Request-Id": [ - "a0f58ef8-54f4-4f8e-b4c5-f3d7067fc6ca" + "0c180c9b-d5a6-436d-9fb2-c6da4332d814" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/b8732f7b-b537-4af5-93e7-75502bc98085" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/6c4fb6f8-b7f4-487d-acb7-248ece727282" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:58 GMT" + "Tue, 29 Oct 2019 13:19:32 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"b8732f7b-b537-4af5-93e7-75502bc98085\"", + "ResponseBody": "\"6c4fb6f8-b7f4-487d-acb7-248ece727282\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/b8732f7b-b537-4af5-93e7-75502bc98085", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzL2I4NzMyZjdiLWI1MzctNGFmNS05M2U3LTc1NTAyYmM5ODA4NQ==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/6c4fb6f8-b7f4-487d-acb7-248ece727282", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvNmM0ZmI2ZjgtYjdmNC00ODdkLWFjYjctMjQ4ZWNlNzI3Mjgy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "7fb2e90e-8476-4e90-93e2-8c2be006cf4f" + "14acf776-3fb8-4579-99f7-2fda0fa57323" ], "Request-Id": [ - "7fb2e90e-8476-4e90-93e2-8c2be006cf4f" + "14acf776-3fb8-4579-99f7-2fda0fa57323" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,32 +108,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:58 GMT" + "Tue, 29 Oct 2019 13:19:32 GMT" ], "Content-Length": [ - "126" + "140" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"b8732f7b-b537-4af5-93e7-75502bc98085\",\r\n \"name\": \"New Entity Test\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"roles\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"6c4fb6f8-b7f4-487d-acb7-248ece727282\",\r\n \"name\": \"New Entity Test\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"roles\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/b8732f7b-b537-4af5-93e7-75502bc98085", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzL2I4NzMyZjdiLWI1MzctNGFmNS05M2U3LTc1NTAyYmM5ODA4NQ==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/6c4fb6f8-b7f4-487d-acb7-248ece727282", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvNmM0ZmI2ZjgtYjdmNC00ODdkLWFjYjctMjQ4ZWNlNzI3Mjgy", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "126e0685-1c35-488d-a264-c4251f7cd112" + "8f854a8b-002a-4884-9fe3-9e2b80c61ca7" ], "Request-Id": [ - "126e0685-1c35-488d-a264-c4251f7cd112" + "8f854a8b-002a-4884-9fe3-9e2b80c61ca7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:20:59 GMT" + "Tue, 29 Oct 2019 13:19:33 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelSimpleEntitiesTests/GetEntitySuggestions_ReturnsEmpty.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelSimpleEntitiesTests/GetEntitySuggestions_ReturnsEmpty.json index f22c8e183b75..65533d1227a9 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelSimpleEntitiesTests/GetEntitySuggestions_ReturnsEmpty.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelSimpleEntitiesTests/GetEntitySuggestions_ReturnsEmpty.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"Suggestions Entity Test\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/f9c85cd0-9d44-4134-9775-e3649cfa8f32" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/627ddd8c-e9f0-49c9-bf07-09b3332e8f06" ], "Apim-Request-Id": [ - "4f1f9555-fff1-4e6d-9cb1-b230b6100cda" + "1290bdac-e303-407b-a6a3-be4a779c49b4" ], "Request-Id": [ - "4f1f9555-fff1-4e6d-9cb1-b230b6100cda" + "1290bdac-e303-407b-a6a3-be4a779c49b4" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/f9c85cd0-9d44-4134-9775-e3649cfa8f32" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/627ddd8c-e9f0-49c9-bf07-09b3332e8f06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:02 GMT" + "Tue, 29 Oct 2019 13:19:31 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"f9c85cd0-9d44-4134-9775-e3649cfa8f32\"", + "ResponseBody": "\"627ddd8c-e9f0-49c9-bf07-09b3332e8f06\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/f9c85cd0-9d44-4134-9775-e3649cfa8f32/suggest?take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzL2Y5Yzg1Y2QwLTlkNDQtNDEzNC05Nzc1LWUzNjQ5Y2ZhOGYzMi9zdWdnZXN0P3Rha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/627ddd8c-e9f0-49c9-bf07-09b3332e8f06/suggest?take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvNjI3ZGRkOGMtZTlmMC00OWM5LWJmMDctMDliMzMzMmU4ZjA2L3N1Z2dlc3Q/dGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "916dcbd4-68db-4c54-9d01-59aac7d5f033" + "ac80d794-d63d-40eb-ab33-739d20e90c75" ], "Request-Id": [ - "916dcbd4-68db-4c54-9d01-59aac7d5f033" + "ac80d794-d63d-40eb-ab33-739d20e90c75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:02 GMT" + "Tue, 29 Oct 2019 13:19:31 GMT" ], "Content-Length": [ "2" @@ -121,19 +121,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/f9c85cd0-9d44-4134-9775-e3649cfa8f32", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzL2Y5Yzg1Y2QwLTlkNDQtNDEzNC05Nzc1LWUzNjQ5Y2ZhOGYzMg==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/627ddd8c-e9f0-49c9-bf07-09b3332e8f06", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvNjI3ZGRkOGMtZTlmMC00OWM5LWJmMDctMDliMzMzMmU4ZjA2", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "60ed8558-e2ec-45a7-897d-0eebce396157" + "6a4fb148-4521-45dd-8f64-3597a3031d1a" ], "Request-Id": [ - "60ed8558-e2ec-45a7-897d-0eebce396157" + "6a4fb148-4521-45dd-8f64-3597a3031d1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:03 GMT" + "Tue, 29 Oct 2019 13:19:32 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelSimpleEntitiesTests/ListEntities.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelSimpleEntitiesTests/ListEntities.json index 87378c40a721..7b87993f41db 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelSimpleEntitiesTests/ListEntities.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelSimpleEntitiesTests/ListEntities.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVz", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"Existing Entity Test\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,16 +30,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/7a3847ba-5e14-41a3-ad9b-af03065c2daa" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/108775f0-daa1-47a8-949a-130862bb15df" ], "Apim-Request-Id": [ - "2ffb1f4f-a5aa-4122-998e-bab7b89810f3" + "61cbd906-8ea6-4198-b6c3-984d1a8a0440" ], "Request-Id": [ - "2ffb1f4f-a5aa-4122-998e-bab7b89810f3" + "61cbd906-8ea6-4198-b6c3-984d1a8a0440" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/7a3847ba-5e14-41a3-ad9b-af03065c2daa" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/108775f0-daa1-47a8-949a-130862bb15df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -54,7 +54,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:00 GMT" + "Tue, 29 Oct 2019 13:19:36 GMT" ], "Content-Length": [ "38" @@ -63,23 +63,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "\"7a3847ba-5e14-41a3-ad9b-af03065c2daa\"", + "ResponseBody": "\"108775f0-daa1-47a8-949a-130862bb15df\"", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzP3NraXA9MCZ0YWtlPTEwMA==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM/c2tpcD0wJnRha2U9MTAw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "f43ba9c2-0730-4d55-90fa-f09b721b0533" + "e76309e2-ea28-4163-8655-fef3e7ab57cd" ], "Request-Id": [ - "f43ba9c2-0730-4d55-90fa-f09b721b0533" + "e76309e2-ea28-4163-8655-fef3e7ab57cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,32 +108,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:00 GMT" + "Tue, 29 Oct 2019 13:19:36 GMT" ], "Content-Length": [ - "133" + "1233" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"7a3847ba-5e14-41a3-ad9b-af03065c2daa\",\r\n \"name\": \"Existing Entity Test\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"7de1c115-4bee-4488-845c-bcc94b660082\",\r\n \"name\": \"a1\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [\r\n {\r\n \"id\": \"7def2a1b-ffc0-49b9-8473-a0f30e12a2d7\",\r\n \"name\": \"b1\",\r\n \"instanceOf\": \"datetimeV2\",\r\n \"children\": [],\r\n \"typeId\": 1,\r\n \"readableType\": \"Child Entity Extractor\"\r\n },\r\n {\r\n \"id\": \"d367e574-ec2c-4e30-a366-b3154a419079\",\r\n \"name\": \"c1\",\r\n \"children\": [\r\n {\r\n \"id\": \"8201347d-e0b6-4bbc-b666-fa83c7e40061\",\r\n \"name\": \"d1\",\r\n \"children\": [\r\n {\r\n \"id\": \"90dfb074-b072-42fd-a1b4-59847f163de6\",\r\n \"name\": \"e1\",\r\n \"instanceOf\": \"datetimeV2\",\r\n \"children\": [],\r\n \"typeId\": 1,\r\n \"readableType\": \"Child Entity Extractor\"\r\n }\r\n ],\r\n \"typeId\": 1,\r\n \"readableType\": \"Child Entity Extractor\"\r\n }\r\n ],\r\n \"typeId\": 1,\r\n \"readableType\": \"Child Entity Extractor\"\r\n }\r\n ],\r\n \"roles\": [\r\n {\r\n \"id\": \"2e7bb328-e8ff-4e4f-90cc-f8828e0e3ba3\",\r\n \"name\": \"role_a1\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"f3ff4992-88d3-45ef-a1ec-d0e77fa02df9\",\r\n \"name\": \"Calendar.Subject\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"Subject\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"108775f0-daa1-47a8-949a-130862bb15df\",\r\n \"name\": \"Existing Entity Test\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"abf20029-becf-4779-b8e9-8ced75f54163\",\r\n \"name\": \"simpleentity1\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/7a3847ba-5e14-41a3-ad9b-af03065c2daa", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzLzdhMzg0N2JhLTVlMTQtNDFhMy1hZDliLWFmMDMwNjVjMmRhYQ==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/108775f0-daa1-47a8-949a-130862bb15df", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvMTA4Nzc1ZjAtZGFhMS00N2E4LTk0OWEtMTMwODYyYmIxNWRm", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "56c7b5cc-da5c-485e-984e-fc553f437cd5" + "300374de-b0d9-42bc-acdd-e3de860f2070" ], "Request-Id": [ - "56c7b5cc-da5c-485e-984e-fc553f437cd5" + "300374de-b0d9-42bc-acdd-e3de860f2070" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:01 GMT" + "Tue, 29 Oct 2019 13:19:37 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/AddModelChild.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/AddModelChild.json new file mode 100644 index 000000000000..71a11fcd9875 --- /dev/null +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/AddModelChild.json @@ -0,0 +1,192 @@ +{ + "Entries": [ + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"children\": [],\r\n \"name\": \"Entity To Be Added\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "55" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/e99ee7db-4951-4620-992b-3076d171339e" + ], + "Apim-Request-Id": [ + "f132732e-b9da-49d8-a407-e317003641b9" + ], + "Request-Id": [ + "f132732e-b9da-49d8-a407-e317003641b9" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/e99ee7db-4951-4620-992b-3076d171339e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:11 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"e99ee7db-4951-4620-992b-3076d171339e\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/e99ee7db-4951-4620-992b-3076d171339e/children", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvZTk5ZWU3ZGItNDk1MS00NjIwLTk5MmItMzA3NmQxNzEzMzllL2NoaWxkcmVu", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"children\": [],\r\n \"name\": \"child1\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "43" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/ed581d56-98a8-45c2-9201-bc0fc7782c31" + ], + "Apim-Request-Id": [ + "f46fb8ff-87ad-4950-a130-26a8a82911e6" + ], + "Request-Id": [ + "f46fb8ff-87ad-4950-a130-26a8a82911e6" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/ed581d56-98a8-45c2-9201-bc0fc7782c31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:11 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"ed581d56-98a8-45c2-9201-bc0fc7782c31\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/e99ee7db-4951-4620-992b-3076d171339e", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvZTk5ZWU3ZGItNDk1MS00NjIwLTk5MmItMzA3NmQxNzEzMzll", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "053a3515-8e74-48bc-b25f-016cfb575b78" + ], + "Request-Id": [ + "053a3515-8e74-48bc-b25f-016cfb575b78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:12 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/CreateModelWithChildren.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/CreateModelWithChildren.json new file mode 100644 index 000000000000..070dcbd3352e --- /dev/null +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/CreateModelWithChildren.json @@ -0,0 +1,126 @@ +{ + "Entries": [ + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"children\": [\r\n {\r\n \"children\": [],\r\n \"name\": \"child1\"\r\n }\r\n ],\r\n \"name\": \"Entity To Be Added\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "120" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/3ae61039-d99f-4a47-99ff-75f2405f3dd9" + ], + "Apim-Request-Id": [ + "d08011ad-c4b5-49d3-ac5f-a191269e7799" + ], + "Request-Id": [ + "d08011ad-c4b5-49d3-ac5f-a191269e7799" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/3ae61039-d99f-4a47-99ff-75f2405f3dd9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:25:59 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"3ae61039-d99f-4a47-99ff-75f2405f3dd9\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/3ae61039-d99f-4a47-99ff-75f2405f3dd9", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvM2FlNjEwMzktZDk5Zi00YTQ3LTk5ZmYtNzVmMjQwNWYzZGQ5", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "bde75029-b421-4423-b945-2f3b85917834" + ], + "Request-Id": [ + "bde75029-b421-4423-b945-2f3b85917834" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:25:59 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/CreateModelWithChildrenAndInstanceOf.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/CreateModelWithChildrenAndInstanceOf.json new file mode 100644 index 000000000000..bdc6895d69b8 --- /dev/null +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/CreateModelWithChildrenAndInstanceOf.json @@ -0,0 +1,240 @@ +{ + "Entries": [ + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRz", + "RequestMethod": "POST", + "RequestBody": "[\r\n \"email\"\r\n]", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "15" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "ff3a6e71-c5fe-4bdd-bfe8-693d2dedb361" + ], + "Request-Id": [ + "ff3a6e71-c5fe-4bdd-bfe8-693d2dedb361" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:02 GMT" + ], + "Content-Length": [ + "127" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "[\r\n {\r\n \"id\": \"b186c6be-1348-4c53-b57a-1c26c2a818c1\",\r\n \"name\": \"email\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"children\": [\r\n {\r\n \"children\": [\r\n {\r\n \"name\": \"instanceOf\",\r\n \"instanceOf\": \"email\"\r\n }\r\n ],\r\n \"name\": \"child1\"\r\n }\r\n ],\r\n \"name\": \"Entity To Be Added\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "216" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/13313209-5065-42df-aa22-cbc243c4d15d" + ], + "Apim-Request-Id": [ + "15e9ee07-18a9-4021-b05c-a6360f831d00" + ], + "Request-Id": [ + "15e9ee07-18a9-4021-b05c-a6360f831d00" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/13313209-5065-42df-aa22-cbc243c4d15d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:03 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"13313209-5065-42df-aa22-cbc243c4d15d\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/13313209-5065-42df-aa22-cbc243c4d15d", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvMTMzMTMyMDktNTA2NS00MmRmLWFhMjItY2JjMjQzYzRkMTVk", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "5095c24b-51be-4fd2-8d26-626166661fe5" + ], + "Request-Id": [ + "5095c24b-51be-4fd2-8d26-626166661fe5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:03 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/b186c6be-1348-4c53-b57a-1c26c2a818c1", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzL2IxODZjNmJlLTEzNDgtNGM1My1iNTdhLTFjMjZjMmE4MThjMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "52b9422f-4db2-4c9c-8fc9-a17bce04326f" + ], + "Request-Id": [ + "52b9422f-4db2-4c9c-8fc9-a17bce04326f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:04 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/CreateModelWithNoChildren.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/CreateModelWithNoChildren.json new file mode 100644 index 000000000000..e266379a1ac8 --- /dev/null +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/CreateModelWithNoChildren.json @@ -0,0 +1,126 @@ +{ + "Entries": [ + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"children\": [],\r\n \"name\": \"Entity To Be Added\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "55" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/f903c213-53a8-4072-9807-b6e8ba2ec0a7" + ], + "Apim-Request-Id": [ + "e3159395-5954-43e0-83f3-202f8fe3ecaa" + ], + "Request-Id": [ + "e3159395-5954-43e0-83f3-202f8fe3ecaa" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/f903c213-53a8-4072-9807-b6e8ba2ec0a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:15 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"f903c213-53a8-4072-9807-b6e8ba2ec0a7\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/f903c213-53a8-4072-9807-b6e8ba2ec0a7", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvZjkwM2MyMTMtNTNhOC00MDcyLTk4MDctYjZlOGJhMmVjMGE3", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "64fad7a9-8cbe-4ed8-acbc-7ac816bc1c0f" + ], + "Request-Id": [ + "64fad7a9-8cbe-4ed8-acbc-7ac816bc1c0f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:15 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/DeleteModel.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/DeleteModel.json new file mode 100644 index 000000000000..b9b98b72afbc --- /dev/null +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/DeleteModel.json @@ -0,0 +1,126 @@ +{ + "Entries": [ + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"children\": [],\r\n \"name\": \"Entity To Be Added\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "55" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/f574545e-011b-4a3f-a08a-28acbbb03256" + ], + "Apim-Request-Id": [ + "bdfdfb11-a0fc-4a13-8d4f-e047d1d7f018" + ], + "Request-Id": [ + "bdfdfb11-a0fc-4a13-8d4f-e047d1d7f018" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/f574545e-011b-4a3f-a08a-28acbbb03256" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:06 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"f574545e-011b-4a3f-a08a-28acbbb03256\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/f574545e-011b-4a3f-a08a-28acbbb03256", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvZjU3NDU0NWUtMDExYi00YTNmLWEwOGEtMjhhY2JiYjAzMjU2", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "4d177e00-b342-4b0f-9500-6aedd8994ffe" + ], + "Request-Id": [ + "4d177e00-b342-4b0f-9500-6aedd8994ffe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:06 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/GetModel.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/GetModel.json new file mode 100644 index 000000000000..5df7bc95ed40 --- /dev/null +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/GetModel.json @@ -0,0 +1,180 @@ +{ + "Entries": [ + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"children\": [\r\n {\r\n \"name\": \"child1\"\r\n }\r\n ],\r\n \"name\": \"Entity To Be Added\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "97" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/c386a1af-2da7-4ae1-a025-3461165360a6" + ], + "Apim-Request-Id": [ + "178785a9-a86d-4b35-b6a3-f86c80f6cdc9" + ], + "Request-Id": [ + "178785a9-a86d-4b35-b6a3-f86c80f6cdc9" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/c386a1af-2da7-4ae1-a025-3461165360a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:04 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"c386a1af-2da7-4ae1-a025-3461165360a6\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/c386a1af-2da7-4ae1-a025-3461165360a6", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvYzM4NmExYWYtMmRhNy00YWUxLWEwMjUtMzQ2MTE2NTM2MGE2", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "55d2f1af-09d1-4bd3-a258-d0077a8d584f" + ], + "Request-Id": [ + "55d2f1af-09d1-4bd3-a258-d0077a8d584f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:04 GMT" + ], + "Content-Length": [ + "269" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"id\": \"c386a1af-2da7-4ae1-a025-3461165360a6\",\r\n \"name\": \"Entity To Be Added\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [\r\n {\r\n \"id\": \"4ad80b9d-5756-4309-b892-85da037bdbb5\",\r\n \"name\": \"child1\",\r\n \"children\": [],\r\n \"typeId\": 1,\r\n \"readableType\": \"Child Entity Extractor\"\r\n }\r\n ],\r\n \"roles\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/c386a1af-2da7-4ae1-a025-3461165360a6", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvYzM4NmExYWYtMmRhNy00YWUxLWEwMjUtMzQ2MTE2NTM2MGE2", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "6be71e4e-bfe6-4240-97dd-ae402662c411" + ], + "Request-Id": [ + "6be71e4e-bfe6-4240-97dd-ae402662c411" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:04 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/GetModelChild.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/GetModelChild.json new file mode 100644 index 000000000000..29ba7e0178ea --- /dev/null +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/GetModelChild.json @@ -0,0 +1,246 @@ +{ + "Entries": [ + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"Entity To Be Added\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/dc729c72-788e-40a7-badd-18b5cb4fae09" + ], + "Apim-Request-Id": [ + "e652e2ae-851b-40cd-ba75-0360f4faaf30" + ], + "Request-Id": [ + "e652e2ae-851b-40cd-ba75-0360f4faaf30" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/dc729c72-788e-40a7-badd-18b5cb4fae09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:28:47 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"dc729c72-788e-40a7-badd-18b5cb4fae09\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/dc729c72-788e-40a7-badd-18b5cb4fae09/children", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvZGM3MjljNzItNzg4ZS00MGE3LWJhZGQtMThiNWNiNGZhZTA5L2NoaWxkcmVu", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"children\": [],\r\n \"name\": \"child1\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "43" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/bbbfd80a-3785-4a38-8b28-88e95b97aea3" + ], + "Apim-Request-Id": [ + "11ac1bc1-016f-424f-a159-887bdb442cf1" + ], + "Request-Id": [ + "11ac1bc1-016f-424f-a159-887bdb442cf1" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/bbbfd80a-3785-4a38-8b28-88e95b97aea3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:28:47 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"bbbfd80a-3785-4a38-8b28-88e95b97aea3\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/bbbfd80a-3785-4a38-8b28-88e95b97aea3", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvYmJiZmQ4MGEtMzc4NS00YTM4LThiMjgtODhlOTViOTdhZWEz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "069d0a61-91fb-465f-895c-db71280d0f37" + ], + "Request-Id": [ + "069d0a61-91fb-465f-895c-db71280d0f37" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:28:48 GMT" + ], + "Content-Length": [ + "126" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"id\": \"bbbfd80a-3785-4a38-8b28-88e95b97aea3\",\r\n \"name\": \"child1\",\r\n \"children\": [],\r\n \"typeId\": 1,\r\n \"readableType\": \"Child Entity Extractor\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/dc729c72-788e-40a7-badd-18b5cb4fae09", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvZGM3MjljNzItNzg4ZS00MGE3LWJhZGQtMThiNWNiNGZhZTA5", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "841ac382-0f51-45bc-89c8-025eaed68b76" + ], + "Request-Id": [ + "841ac382-0f51-45bc-89c8-025eaed68b76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:28:48 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/ListModels.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/ListModels.json index 81b82f6f6591..54959637e6b6 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/ListModels.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/ListModels.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/models?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL21vZGVscz9za2lwPTAmdGFrZT0xMDA=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM/c2tpcD0wJnRha2U9MTAw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -24,10 +24,10 @@ "no-cache" ], "Apim-Request-Id": [ - "d3d27c90-b326-4011-afaf-3cd2fc406267" + "33ee1a98-9918-48a8-886f-6f9c32374e43" ], "Request-Id": [ - "d3d27c90-b326-4011-afaf-3cd2fc406267" + "33ee1a98-9918-48a8-886f-6f9c32374e43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -42,32 +42,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:07 GMT" + "Tue, 29 Oct 2019 14:25:59 GMT" ], "Content-Length": [ - "213" + "1087" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"ac04c5c6-2c0c-4af8-ba3f-5db090fa7de5\",\r\n \"name\": \"None\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n },\r\n {\r\n \"id\": \"eee1436a-701d-46c4-9e4b-6de52d641513\",\r\n \"name\": \"sfds\",\r\n \"typeId\": 0,\r\n \"readableType\": \"Intent Classifier\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"7de1c115-4bee-4488-845c-bcc94b660082\",\r\n \"name\": \"a1\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [\r\n {\r\n \"id\": \"7def2a1b-ffc0-49b9-8473-a0f30e12a2d7\",\r\n \"name\": \"b1\",\r\n \"instanceOf\": \"datetimeV2\",\r\n \"children\": [],\r\n \"typeId\": 1,\r\n \"readableType\": \"Child Entity Extractor\"\r\n },\r\n {\r\n \"id\": \"d367e574-ec2c-4e30-a366-b3154a419079\",\r\n \"name\": \"c1\",\r\n \"children\": [\r\n {\r\n \"id\": \"8201347d-e0b6-4bbc-b666-fa83c7e40061\",\r\n \"name\": \"d1\",\r\n \"children\": [\r\n {\r\n \"id\": \"90dfb074-b072-42fd-a1b4-59847f163de6\",\r\n \"name\": \"e1\",\r\n \"instanceOf\": \"datetimeV2\",\r\n \"children\": [],\r\n \"typeId\": 1,\r\n \"readableType\": \"Child Entity Extractor\"\r\n }\r\n ],\r\n \"typeId\": 1,\r\n \"readableType\": \"Child Entity Extractor\"\r\n }\r\n ],\r\n \"typeId\": 1,\r\n \"readableType\": \"Child Entity Extractor\"\r\n }\r\n ],\r\n \"roles\": [\r\n {\r\n \"id\": \"2e7bb328-e8ff-4e4f-90cc-f8828e0e3ba3\",\r\n \"name\": \"role_a1\"\r\n }\r\n ]\r\n },\r\n {\r\n \"id\": \"f3ff4992-88d3-45ef-a1ec-d0e77fa02df9\",\r\n \"name\": \"Calendar.Subject\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"Subject\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"abf20029-becf-4779-b8e9-8ced75f54163\",\r\n \"name\": \"simpleentity1\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/ac04c5c6-2c0c-4af8-ba3f-5db090fa7de5", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzL2FjMDRjNWM2LTJjMGMtNGFmOC1iYTNmLTVkYjA5MGZhN2RlNQ==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/7de1c115-4bee-4488-845c-bcc94b660082", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvN2RlMWMxMTUtNGJlZS00NDg4LTg0NWMtYmNjOTRiNjYwMDgy", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -78,10 +78,10 @@ "no-cache" ], "Apim-Request-Id": [ - "01e7c542-31f4-4205-ba84-09cd305ba8d2" + "47020b1d-8a49-4b93-93c6-fc1023d3f35b" ], "Request-Id": [ - "01e7c542-31f4-4205-ba84-09cd305ba8d2" + "47020b1d-8a49-4b93-93c6-fc1023d3f35b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -96,32 +96,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:07 GMT" + "Tue, 29 Oct 2019 14:26:01 GMT" ], "Content-Length": [ - "115" + "730" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"ac04c5c6-2c0c-4af8-ba3f-5db090fa7de5\",\r\n \"name\": \"None\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"roles\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"7de1c115-4bee-4488-845c-bcc94b660082\",\r\n \"name\": \"a1\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [\r\n {\r\n \"id\": \"7def2a1b-ffc0-49b9-8473-a0f30e12a2d7\",\r\n \"name\": \"b1\",\r\n \"instanceOf\": \"datetimeV2\",\r\n \"children\": [],\r\n \"typeId\": 1,\r\n \"readableType\": \"Child Entity Extractor\"\r\n },\r\n {\r\n \"id\": \"d367e574-ec2c-4e30-a366-b3154a419079\",\r\n \"name\": \"c1\",\r\n \"children\": [\r\n {\r\n \"id\": \"8201347d-e0b6-4bbc-b666-fa83c7e40061\",\r\n \"name\": \"d1\",\r\n \"children\": [\r\n {\r\n \"id\": \"90dfb074-b072-42fd-a1b4-59847f163de6\",\r\n \"name\": \"e1\",\r\n \"instanceOf\": \"datetimeV2\",\r\n \"children\": [],\r\n \"typeId\": 1,\r\n \"readableType\": \"Child Entity Extractor\"\r\n }\r\n ],\r\n \"typeId\": 1,\r\n \"readableType\": \"Child Entity Extractor\"\r\n }\r\n ],\r\n \"typeId\": 1,\r\n \"readableType\": \"Child Entity Extractor\"\r\n }\r\n ],\r\n \"roles\": [\r\n {\r\n \"id\": \"2e7bb328-e8ff-4e4f-90cc-f8828e0e3ba3\",\r\n \"name\": \"role_a1\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/entities/eee1436a-701d-46c4-9e4b-6de52d641513", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2VudGl0aWVzL2VlZTE0MzZhLTcwMWQtNDZjNC05ZTRiLTZkZTUyZDY0MTUxMw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/f3ff4992-88d3-45ef-a1ec-d0e77fa02df9", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvZjNmZjQ5OTItODhkMy00NWVmLWExZWMtZDBlNzdmYTAyZGY5", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -132,10 +132,10 @@ "no-cache" ], "Apim-Request-Id": [ - "d49ea6c7-bad9-469a-888a-786928e188ff" + "ad7b5b32-7508-4166-b1fe-77905caed8c2" ], "Request-Id": [ - "d49ea6c7-bad9-469a-888a-786928e188ff" + "ad7b5b32-7508-4166-b1fe-77905caed8c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -150,16 +150,70 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:14:07 GMT" + "Tue, 29 Oct 2019 14:26:01 GMT" ], "Content-Length": [ - "115" + "215" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"eee1436a-701d-46c4-9e4b-6de52d641513\",\r\n \"name\": \"sfds\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"roles\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"f3ff4992-88d3-45ef-a1ec-d0e77fa02df9\",\r\n \"name\": \"Calendar.Subject\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"customPrebuiltDomainName\": \"Calendar\",\r\n \"customPrebuiltModelName\": \"Subject\",\r\n \"roles\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/abf20029-becf-4779-b8e9-8ced75f54163", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvYWJmMjAwMjktYmVjZi00Nzc5LWI4ZTktOGNlZDc1ZjU0MTYz", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "78aeb6d1-d697-4048-b71d-a4727e9d461a" + ], + "Request-Id": [ + "78aeb6d1-d697-4048-b71d-a4727e9d461a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:01 GMT" + ], + "Content-Length": [ + "138" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"id\": \"abf20029-becf-4779-b8e9-8ced75f54163\",\r\n \"name\": \"simpleentity1\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [],\r\n \"roles\": []\r\n}", "StatusCode": 200 } ], diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/UpdateModel.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/UpdateModel.json new file mode 100644 index 000000000000..027c53cd51ab --- /dev/null +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/UpdateModel.json @@ -0,0 +1,240 @@ +{ + "Entries": [ + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"children\": [\r\n {\r\n \"name\": \"child1\"\r\n }\r\n ],\r\n \"name\": \"Entity To Be Added\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "97" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/5b6fc9cc-08f5-4d54-9fce-4495598ea1f2" + ], + "Apim-Request-Id": [ + "992e671f-9faa-4921-bd40-64a7be81e39e" + ], + "Request-Id": [ + "992e671f-9faa-4921-bd40-64a7be81e39e" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/5b6fc9cc-08f5-4d54-9fce-4495598ea1f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:15 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"5b6fc9cc-08f5-4d54-9fce-4495598ea1f2\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/5b6fc9cc-08f5-4d54-9fce-4495598ea1f2", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvNWI2ZmM5Y2MtMDhmNS00ZDU0LTlmY2UtNDQ5NTU5OGVhMWYy", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"name\": \"Updated Model\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "ae32ae5a-bc62-4fac-b682-b16676c3198e" + ], + "Request-Id": [ + "ae32ae5a-bc62-4fac-b682-b16676c3198e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:16 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/5b6fc9cc-08f5-4d54-9fce-4495598ea1f2", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvNWI2ZmM5Y2MtMDhmNS00ZDU0LTlmY2UtNDQ5NTU5OGVhMWYy", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "32377a6e-e623-42c1-a501-7424e170c25b" + ], + "Request-Id": [ + "32377a6e-e623-42c1-a501-7424e170c25b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:16 GMT" + ], + "Content-Length": [ + "265" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"id\": \"5b6fc9cc-08f5-4d54-9fce-4495598ea1f2\",\r\n \"name\": \"Updated Model\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [\r\n {\r\n \"id\": \"3b63216c-2c3a-40bc-a2b4-df8e27b3bb4f\",\r\n \"name\": \"child1\",\r\n \"children\": [],\r\n \"typeId\": 1,\r\n \"readableType\": \"Child Entity Extractor\"\r\n }\r\n ],\r\n \"roles\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/5b6fc9cc-08f5-4d54-9fce-4495598ea1f2", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvNWI2ZmM5Y2MtMDhmNS00ZDU0LTlmY2UtNDQ5NTU5OGVhMWYy", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "0e18b76a-ea73-4716-b2b9-35d6a3573521" + ], + "Request-Id": [ + "0e18b76a-ea73-4716-b2b9-35d6a3573521" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:17 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/UpdateModelChildInstanceOf.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/UpdateModelChildInstanceOf.json new file mode 100644 index 000000000000..1c6f2f97cd97 --- /dev/null +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/UpdateModelChildInstanceOf.json @@ -0,0 +1,462 @@ +{ + "Entries": [ + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRz", + "RequestMethod": "POST", + "RequestBody": "[\r\n \"email\",\r\n \"number\"\r\n]", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "00f22e76-57df-444f-a6ea-884141278d22" + ], + "Request-Id": [ + "00f22e76-57df-444f-a6ea-884141278d22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:07 GMT" + ], + "Content-Length": [ + "254" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "[\r\n {\r\n \"id\": \"30eb5c4f-54e2-4a02-9971-6763b976333b\",\r\n \"name\": \"email\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"1d4412c3-42ad-4131-ad8a-225083f5e9b3\",\r\n \"name\": \"number\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"children\": [\r\n {\r\n \"name\": \"child1\",\r\n \"instanceOf\": \"email\"\r\n }\r\n ],\r\n \"name\": \"Entity To Be Added\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "127" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/c99083ba-157e-4f49-9938-5bec08559d18" + ], + "Apim-Request-Id": [ + "e98a4634-ed92-430a-a09c-4149871115cc" + ], + "Request-Id": [ + "e98a4634-ed92-430a-a09c-4149871115cc" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/c99083ba-157e-4f49-9938-5bec08559d18" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:08 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"c99083ba-157e-4f49-9938-5bec08559d18\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/c99083ba-157e-4f49-9938-5bec08559d18", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvYzk5MDgzYmEtMTU3ZS00ZjQ5LTk5MzgtNWJlYzA4NTU5ZDE4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "1f9abc66-dc9f-4e01-a4af-eac566612b80" + ], + "Request-Id": [ + "1f9abc66-dc9f-4e01-a4af-eac566612b80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:08 GMT" + ], + "Content-Length": [ + "290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"id\": \"c99083ba-157e-4f49-9938-5bec08559d18\",\r\n \"name\": \"Entity To Be Added\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [\r\n {\r\n \"id\": \"3c32bf07-3eff-4440-93d3-b59568b80e27\",\r\n \"name\": \"child1\",\r\n \"instanceOf\": \"email\",\r\n \"children\": [],\r\n \"typeId\": 1,\r\n \"readableType\": \"Child Entity Extractor\"\r\n }\r\n ],\r\n \"roles\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/c99083ba-157e-4f49-9938-5bec08559d18", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvYzk5MDgzYmEtMTU3ZS00ZjQ5LTk5MzgtNWJlYzA4NTU5ZDE4", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "086b65d3-4a08-4c5b-84c9-69906caa83cf" + ], + "Request-Id": [ + "086b65d3-4a08-4c5b-84c9-69906caa83cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:09 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"id\": \"c99083ba-157e-4f49-9938-5bec08559d18\",\r\n \"name\": \"Entity To Be Added\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [\r\n {\r\n \"id\": \"3c32bf07-3eff-4440-93d3-b59568b80e27\",\r\n \"name\": \"changed Instance Of\",\r\n \"instanceOf\": \"number\",\r\n \"children\": [],\r\n \"typeId\": 1,\r\n \"readableType\": \"Child Entity Extractor\"\r\n }\r\n ],\r\n \"roles\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/3c32bf07-3eff-4440-93d3-b59568b80e27", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvM2MzMmJmMDctM2VmZi00NDQwLTkzZDMtYjU5NTY4YjgwZTI3", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"name\": \"changed Instance Of\",\r\n \"instanceOf\": \"number\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "64" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "ce591d7f-f0dc-4d33-bff2-e0ae15a3f4d8" + ], + "Request-Id": [ + "ce591d7f-f0dc-4d33-bff2-e0ae15a3f4d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:08 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/c99083ba-157e-4f49-9938-5bec08559d18", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvYzk5MDgzYmEtMTU3ZS00ZjQ5LTk5MzgtNWJlYzA4NTU5ZDE4", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "fd00c054-6f74-4b9e-b3ab-fba14bf70a04" + ], + "Request-Id": [ + "fd00c054-6f74-4b9e-b3ab-fba14bf70a04" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:09 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/30eb5c4f-54e2-4a02-9971-6763b976333b", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzMwZWI1YzRmLTU0ZTItNGEwMi05OTcxLTY3NjNiOTc2MzMzYg==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "259a790a-70f0-4ea9-9513-4db0a2522445" + ], + "Request-Id": [ + "259a790a-70f0-4ea9-9513-4db0a2522445" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:10 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/1d4412c3-42ad-4131-ad8a-225083f5e9b3", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzFkNDQxMmMzLTQyYWQtNDEzMS1hZDhhLTIyNTA4M2Y1ZTliMw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "784ec5fa-f920-46cf-b809-e7a9d720ffb1" + ], + "Request-Id": [ + "784ec5fa-f920-46cf-b809-e7a9d720ffb1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:10 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/UpdateModelChildName.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/UpdateModelChildName.json new file mode 100644 index 000000000000..6e400ebbdead --- /dev/null +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/ModelTests/UpdateModelChildName.json @@ -0,0 +1,306 @@ +{ + "Entries": [ + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXM=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"Entity To Be Added\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "36" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/5b6b7f0e-2385-4a1d-87d0-ea8114c61bec" + ], + "Apim-Request-Id": [ + "726f1da5-5c81-4e5e-af61-6bd99e98a2e1" + ], + "Request-Id": [ + "726f1da5-5c81-4e5e-af61-6bd99e98a2e1" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/5b6b7f0e-2385-4a1d-87d0-ea8114c61bec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:12 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"5b6b7f0e-2385-4a1d-87d0-ea8114c61bec\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/5b6b7f0e-2385-4a1d-87d0-ea8114c61bec/children", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvNWI2YjdmMGUtMjM4NS00YTFkLTg3ZDAtZWE4MTE0YzYxYmVjL2NoaWxkcmVu", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"children\": [],\r\n \"name\": \"child1\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "43" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/393e848c-f6df-42fb-aefe-ae4d6d841066" + ], + "Apim-Request-Id": [ + "eb664899-7a2f-4d49-9f58-7f2ab037a5ed" + ], + "Request-Id": [ + "eb664899-7a2f-4d49-9f58-7f2ab037a5ed" + ], + "Operation-Location": [ + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/393e848c-f6df-42fb-aefe-ae4d6d841066" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:13 GMT" + ], + "Content-Length": [ + "38" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "\"393e848c-f6df-42fb-aefe-ae4d6d841066\"", + "StatusCode": 201 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/393e848c-f6df-42fb-aefe-ae4d6d841066", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvMzkzZTg0OGMtZjZkZi00MmZiLWFlZmUtYWU0ZDZkODQxMDY2", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"name\": \"child2\"\r\n}", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "ade796b0-2725-49b1-a9f0-0bb3bed56614" + ], + "Request-Id": [ + "ade796b0-2725-49b1-a9f0-0bb3bed56614" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:13 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/5b6b7f0e-2385-4a1d-87d0-ea8114c61bec", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvNWI2YjdmMGUtMjM4NS00YTFkLTg3ZDAtZWE4MTE0YzYxYmVj", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "830ecf96-a37c-4b52-9357-01219e7887e7" + ], + "Request-Id": [ + "830ecf96-a37c-4b52-9357-01219e7887e7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:13 GMT" + ], + "Content-Length": [ + "269" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"id\": \"5b6b7f0e-2385-4a1d-87d0-ea8114c61bec\",\r\n \"name\": \"Entity To Be Added\",\r\n \"typeId\": 1,\r\n \"readableType\": \"Entity Extractor\",\r\n \"children\": [\r\n {\r\n \"id\": \"393e848c-f6df-42fb-aefe-ae4d6d841066\",\r\n \"name\": \"child2\",\r\n \"children\": [],\r\n \"typeId\": 1,\r\n \"readableType\": \"Child Entity Extractor\"\r\n }\r\n ],\r\n \"roles\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/entities/5b6b7f0e-2385-4a1d-87d0-ea8114c61bec", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvZW50aXRpZXMvNWI2YjdmMGUtMjM4NS00YTFkLTg3ZDAtZWE4MTE0YzYxYmVj", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "741656f3-8fef-4fd6-a8cf-59534a959be5" + ], + "Request-Id": [ + "741656f3-8fef-4fd6-a8cf-59534a959be5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 14:26:14 GMT" + ], + "Content-Length": [ + "51" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"Success\",\r\n \"message\": \"Operation Successful\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": {} +} \ No newline at end of file diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/AddPattern.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/AddPattern.json index ac6b516df077..e9bc5592877e 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/AddPattern.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/AddPattern.json @@ -1,25 +1,25 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRz", "RequestMethod": "POST", - "RequestBody": "[\r\n \"datetimeV2\"\r\n]", + "RequestBody": "[\r\n \"email\"\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "20" + "15" ] }, "ResponseHeaders": { @@ -30,10 +30,10 @@ "no-cache" ], "Apim-Request-Id": [ - "abcd9a5e-8fb3-4dc2-8d93-350d3500755f" + "e5a1649b-7d86-4bf1-989a-b7c1c9b160a2" ], "Request-Id": [ - "abcd9a5e-8fb3-4dc2-8d93-350d3500755f" + "e5a1649b-7d86-4bf1-989a-b7c1c9b160a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -48,32 +48,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:19 GMT" + "Tue, 29 Oct 2019 13:23:03 GMT" ], "Content-Length": [ - "132" + "127" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"1ae3e2f3-b54f-4b9b-b7d5-309f990e51ff\",\r\n \"name\": \"datetimeV2\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"ab063221-f283-4eac-ae94-500931034516\",\r\n \"name\": \"email\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrule", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5ydWxl", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrule", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybnJ1bGU=", "RequestMethod": "POST", "RequestBody": "{\r\n \"pattern\": \"This is a {datetimeV2}\",\r\n \"intent\": \"None\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -90,16 +90,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrule/bc03dd09-e5c3-423a-af23-8c002409f7d7" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrule/5afed274-dc8c-4215-ae34-59da4240eaf5" ], "Apim-Request-Id": [ - "20b502c9-b8c0-406c-a64c-444fe81b0cf0" + "24a50855-031f-4bd2-ab35-0cb25cca5974" ], "Request-Id": [ - "20b502c9-b8c0-406c-a64c-444fe81b0cf0" + "24a50855-031f-4bd2-ab35-0cb25cca5974" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrule/bc03dd09-e5c3-423a-af23-8c002409f7d7" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrule/5afed274-dc8c-4215-ae34-59da4240eaf5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -114,7 +114,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:19 GMT" + "Tue, 29 Oct 2019 13:23:04 GMT" ], "Content-Length": [ "96" @@ -123,23 +123,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"bc03dd09-e5c3-423a-af23-8c002409f7d7\",\r\n \"pattern\": \"this is a {datetimeV2}\",\r\n \"intent\": \"None\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"5afed274-dc8c-4215-ae34-59da4240eaf5\",\r\n \"pattern\": \"this is a {datetimeV2}\",\r\n \"intent\": \"None\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrules/bc03dd09-e5c3-423a-af23-8c002409f7d7", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5ydWxlcy9iYzAzZGQwOS1lNWMzLTQyM2EtYWYyMy04YzAwMjQwOWY3ZDc=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrules/5afed274-dc8c-4215-ae34-59da4240eaf5", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybnJ1bGVzLzVhZmVkMjc0LWRjOGMtNDIxNS1hZTM0LTU5ZGE0MjQwZWFmNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -150,10 +150,10 @@ "no-cache" ], "Apim-Request-Id": [ - "4bbda040-4b6d-4d8e-bc20-329915bfe4ed" + "ba3ee40f-e18f-461b-8c23-4fddd0dc9c62" ], "Request-Id": [ - "4bbda040-4b6d-4d8e-bc20-329915bfe4ed" + "ba3ee40f-e18f-461b-8c23-4fddd0dc9c62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -168,7 +168,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:20 GMT" + "Tue, 29 Oct 2019 13:23:04 GMT" ], "Content-Length": [ "51" @@ -181,19 +181,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/1ae3e2f3-b54f-4b9b-b7d5-309f990e51ff", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy8xYWUzZTJmMy1iNTRmLTRiOWItYjdkNS0zMDlmOTkwZTUxZmY=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/ab063221-f283-4eac-ae94-500931034516", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzL2FiMDYzMjIxLWYyODMtNGVhYy1hZTk0LTUwMDkzMTAzNDUxNg==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "019e482b-5754-4b63-b267-1db2f7ff4f3e" + "c831771d-ab57-4e36-96fc-7f7fe001373d" ], "Request-Id": [ - "019e482b-5754-4b63-b267-1db2f7ff4f3e" + "c831771d-ab57-4e36-96fc-7f7fe001373d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,7 +222,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:20 GMT" + "Tue, 29 Oct 2019 13:23:05 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/AddPatterns.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/AddPatterns.json index e325d6985cdc..b5bd123bbf48 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/AddPatterns.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/AddPatterns.json @@ -1,25 +1,25 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRz", "RequestMethod": "POST", - "RequestBody": "[\r\n \"datetimeV2\",\r\n \"number\"\r\n]", + "RequestBody": "[\r\n \"email\",\r\n \"number\"\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "33" + "28" ] }, "ResponseHeaders": { @@ -30,10 +30,10 @@ "no-cache" ], "Apim-Request-Id": [ - "a5f7e8d1-10e9-4aba-8be0-f4fcedb581c9" + "322a1e08-b549-465f-8e1a-84f18e664629" ], "Request-Id": [ - "a5f7e8d1-10e9-4aba-8be0-f4fcedb581c9" + "322a1e08-b549-465f-8e1a-84f18e664629" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -48,32 +48,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:33 GMT" + "Tue, 29 Oct 2019 13:22:58 GMT" ], "Content-Length": [ - "259" + "254" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"764092b9-e0ff-498c-b7ee-6b3ca51f10f9\",\r\n \"name\": \"datetimeV2\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"be7c4a7c-c816-4eec-9bf1-529858c74685\",\r\n \"name\": \"number\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"78b30749-0f3d-4f82-bbf5-09587601c6ed\",\r\n \"name\": \"email\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"808c17c6-77f4-411c-818d-729047aa90f5\",\r\n \"name\": \"number\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrules", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5ydWxlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrules", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybnJ1bGVz", "RequestMethod": "POST", "RequestBody": "[\r\n {\r\n \"pattern\": \"This is a {number}\",\r\n \"intent\": \"None\"\r\n },\r\n {\r\n \"pattern\": \"This is a {datetimeV2}\",\r\n \"intent\": \"None\"\r\n }\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "41cdbca5-45bc-4af5-b4ca-72e0ced6d77b" + "6f1918df-f3d0-4a19-9bfd-e5ffbd493e40" ], "Request-Id": [ - "41cdbca5-45bc-4af5-b4ca-72e0ced6d77b" + "6f1918df-f3d0-4a19-9bfd-e5ffbd493e40" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:33 GMT" + "Tue, 29 Oct 2019 13:22:58 GMT" ], "Content-Length": [ "191" @@ -117,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"9328deef-6957-4b4e-8a47-2afaa87c506b\",\r\n \"pattern\": \"this is a {number}\",\r\n \"intent\": \"None\"\r\n },\r\n {\r\n \"id\": \"61cd30bd-d2d6-4cb9-a687-9f1f87e98026\",\r\n \"pattern\": \"this is a {datetimeV2}\",\r\n \"intent\": \"None\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"413580a8-8157-48d0-bc9a-d10b2f207192\",\r\n \"pattern\": \"this is a {number}\",\r\n \"intent\": \"None\"\r\n },\r\n {\r\n \"id\": \"6fa407e9-755c-4cee-8788-751428ce5d63\",\r\n \"pattern\": \"this is a {datetimeV2}\",\r\n \"intent\": \"None\"\r\n }\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrules", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5ydWxlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrules", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybnJ1bGVz", "RequestMethod": "DELETE", - "RequestBody": "[\r\n \"9328deef-6957-4b4e-8a47-2afaa87c506b\",\r\n \"61cd30bd-d2d6-4cb9-a687-9f1f87e98026\"\r\n]", + "RequestBody": "[\r\n \"413580a8-8157-48d0-bc9a-d10b2f207192\",\r\n \"6fa407e9-755c-4cee-8788-751428ce5d63\"\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -150,10 +150,10 @@ "no-cache" ], "Apim-Request-Id": [ - "878236cd-1c5f-43b7-8871-3945e6774d69" + "829a2a86-bff7-46d4-aff8-93508225fb4a" ], "Request-Id": [ - "878236cd-1c5f-43b7-8871-3945e6774d69" + "829a2a86-bff7-46d4-aff8-93508225fb4a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -168,7 +168,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:33 GMT" + "Tue, 29 Oct 2019 13:22:58 GMT" ], "Content-Length": [ "51" @@ -181,19 +181,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/764092b9-e0ff-498c-b7ee-6b3ca51f10f9", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy83NjQwOTJiOS1lMGZmLTQ5OGMtYjdlZS02YjNjYTUxZjEwZjk=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/78b30749-0f3d-4f82-bbf5-09587601c6ed", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzc4YjMwNzQ5LTBmM2QtNGY4Mi1iYmY1LTA5NTg3NjAxYzZlZA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "a1cc54a8-f246-42b0-80df-e5757046356a" + "75fcbccb-5e55-4477-ba03-99f9c5e71d88" ], "Request-Id": [ - "a1cc54a8-f246-42b0-80df-e5757046356a" + "75fcbccb-5e55-4477-ba03-99f9c5e71d88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,7 +222,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:34 GMT" + "Tue, 29 Oct 2019 13:22:59 GMT" ], "Content-Length": [ "51" @@ -235,19 +235,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/be7c4a7c-c816-4eec-9bf1-529858c74685", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy9iZTdjNGE3Yy1jODE2LTRlZWMtOWJmMS01Mjk4NThjNzQ2ODU=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/808c17c6-77f4-411c-818d-729047aa90f5", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzgwOGMxN2M2LTc3ZjQtNDExYy04MThkLTcyOTA0N2FhOTBmNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -258,10 +258,10 @@ "no-cache" ], "Apim-Request-Id": [ - "f3e0aed8-fef1-44d6-a200-0dfcd3f034a8" + "a522f239-9e66-4ac2-8612-9054f507e1a7" ], "Request-Id": [ - "f3e0aed8-fef1-44d6-a200-0dfcd3f034a8" + "a522f239-9e66-4ac2-8612-9054f507e1a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -276,7 +276,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:34 GMT" + "Tue, 29 Oct 2019 13:22:59 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/DeletePattern.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/DeletePattern.json index e408b4a53a7e..88beeaebb267 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/DeletePattern.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/DeletePattern.json @@ -1,25 +1,25 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRz", "RequestMethod": "POST", - "RequestBody": "[\r\n \"datetimeV2\"\r\n]", + "RequestBody": "[\r\n \"email\"\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "20" + "15" ] }, "ResponseHeaders": { @@ -30,10 +30,10 @@ "no-cache" ], "Apim-Request-Id": [ - "f6cec7c9-1059-4aa8-9c69-2432bc75ea74" + "0fb4d429-5a67-41ee-a263-dafc51321aa0" ], "Request-Id": [ - "f6cec7c9-1059-4aa8-9c69-2432bc75ea74" + "0fb4d429-5a67-41ee-a263-dafc51321aa0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -48,38 +48,38 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:20 GMT" + "Tue, 29 Oct 2019 13:22:52 GMT" ], "Content-Length": [ - "132" + "127" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"a3804e8c-c975-44da-a2e7-d467a9ad07d0\",\r\n \"name\": \"datetimeV2\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"6ff22cdf-987a-4a8f-8765-f17a50a5e34d\",\r\n \"name\": \"email\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrule", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5ydWxl", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrule", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybnJ1bGU=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"pattern\": \"This is a {datetimeV2}\",\r\n \"intent\": \"None\"\r\n}", + "RequestBody": "{\r\n \"pattern\": \"This is a {email}\",\r\n \"intent\": \"None\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "64" + "59" ] }, "ResponseHeaders": { @@ -90,16 +90,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrule/24f6c377-c8e9-4287-830d-4f2d01d33d88" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrule/3a505adc-4ab9-485c-a207-5fc86dca0cb3" ], "Apim-Request-Id": [ - "1fad1710-c746-4d48-a317-09783fcc456c" + "f5a39c99-ef6d-4cd7-ba1b-ae70fc176cb1" ], "Request-Id": [ - "1fad1710-c746-4d48-a317-09783fcc456c" + "f5a39c99-ef6d-4cd7-ba1b-ae70fc176cb1" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrule/24f6c377-c8e9-4287-830d-4f2d01d33d88" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrule/3a505adc-4ab9-485c-a207-5fc86dca0cb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -114,32 +114,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:21 GMT" + "Tue, 29 Oct 2019 13:22:54 GMT" ], "Content-Length": [ - "96" + "91" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"24f6c377-c8e9-4287-830d-4f2d01d33d88\",\r\n \"pattern\": \"this is a {datetimeV2}\",\r\n \"intent\": \"None\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"3a505adc-4ab9-485c-a207-5fc86dca0cb3\",\r\n \"pattern\": \"this is a {email}\",\r\n \"intent\": \"None\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrules/24f6c377-c8e9-4287-830d-4f2d01d33d88", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5ydWxlcy8yNGY2YzM3Ny1jOGU5LTQyODctODMwZC00ZjJkMDFkMzNkODg=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrules/3a505adc-4ab9-485c-a207-5fc86dca0cb3", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybnJ1bGVzLzNhNTA1YWRjLTRhYjktNDg1Yy1hMjA3LTVmYzg2ZGNhMGNiMw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -150,10 +150,10 @@ "no-cache" ], "Apim-Request-Id": [ - "494eb326-27e0-4084-b005-79e60994f923" + "faf191e7-2fbf-472e-832a-3e3b9eec2b5f" ], "Request-Id": [ - "494eb326-27e0-4084-b005-79e60994f923" + "faf191e7-2fbf-472e-832a-3e3b9eec2b5f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -168,7 +168,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:21 GMT" + "Tue, 29 Oct 2019 13:22:54 GMT" ], "Content-Length": [ "51" @@ -181,19 +181,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrules?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5ydWxlcz9za2lwPTAmdGFrZT0xMDA=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrules?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybnJ1bGVzP3NraXA9MCZ0YWtlPTEwMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "3c0b396c-93f4-47ef-9611-264b23949df7" + "33722318-2936-4732-aad1-0e20b635a3d5" ], "Request-Id": [ - "3c0b396c-93f4-47ef-9611-264b23949df7" + "33722318-2936-4732-aad1-0e20b635a3d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,7 +222,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:21 GMT" + "Tue, 29 Oct 2019 13:22:54 GMT" ], "Content-Length": [ "2" @@ -235,19 +235,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/a3804e8c-c975-44da-a2e7-d467a9ad07d0", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy9hMzgwNGU4Yy1jOTc1LTQ0ZGEtYTJlNy1kNDY3YTlhZDA3ZDA=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/6ff22cdf-987a-4a8f-8765-f17a50a5e34d", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzZmZjIyY2RmLTk4N2EtNGE4Zi04NzY1LWYxN2E1MGE1ZTM0ZA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -258,10 +258,10 @@ "no-cache" ], "Apim-Request-Id": [ - "5f1bccb8-c6fd-4bab-b87d-199f09c579a8" + "01126ed8-1151-4d97-bef9-1f8bc92b6139" ], "Request-Id": [ - "5f1bccb8-c6fd-4bab-b87d-199f09c579a8" + "01126ed8-1151-4d97-bef9-1f8bc92b6139" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -276,7 +276,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:22 GMT" + "Tue, 29 Oct 2019 13:22:55 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/DeletePatterns.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/DeletePatterns.json index 9a6a9bb3fffa..2bf1dc4c4b46 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/DeletePatterns.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/DeletePatterns.json @@ -1,25 +1,25 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRz", "RequestMethod": "POST", - "RequestBody": "[\r\n \"datetimeV2\",\r\n \"number\"\r\n]", + "RequestBody": "[\r\n \"email\",\r\n \"number\"\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "33" + "28" ] }, "ResponseHeaders": { @@ -30,10 +30,10 @@ "no-cache" ], "Apim-Request-Id": [ - "b80fb352-9f02-46cb-9f66-556c7f27c8ed" + "8131a90a-90a6-4ec6-a3f8-dd7e156298bc" ], "Request-Id": [ - "b80fb352-9f02-46cb-9f66-556c7f27c8ed" + "8131a90a-90a6-4ec6-a3f8-dd7e156298bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -48,32 +48,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:23 GMT" + "Tue, 29 Oct 2019 13:23:00 GMT" ], "Content-Length": [ - "259" + "254" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"ea2a2375-e01c-46a2-b8ab-700b17b3a205\",\r\n \"name\": \"datetimeV2\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"9f44225b-ae60-4346-846c-e9110fc0b370\",\r\n \"name\": \"number\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"5615ddd1-6309-4c28-b2ed-75ee0e3734c6\",\r\n \"name\": \"email\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"6c28e6c5-72d0-41ca-8908-9ecea46763c4\",\r\n \"name\": \"number\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrules", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5ydWxlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrules", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybnJ1bGVz", "RequestMethod": "POST", "RequestBody": "[\r\n {\r\n \"pattern\": \"This is a {number}\",\r\n \"intent\": \"None\"\r\n },\r\n {\r\n \"pattern\": \"This is a {datetimeV2}\",\r\n \"intent\": \"None\"\r\n }\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "97ce3e6a-f5de-4b14-b248-68cde70f6d88" + "74f996a3-0923-48dd-bfcb-a15cff1144a0" ], "Request-Id": [ - "97ce3e6a-f5de-4b14-b248-68cde70f6d88" + "74f996a3-0923-48dd-bfcb-a15cff1144a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:23 GMT" + "Tue, 29 Oct 2019 13:23:00 GMT" ], "Content-Length": [ "191" @@ -117,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"7718fafa-d131-4453-b515-cb18eb20b699\",\r\n \"pattern\": \"this is a {number}\",\r\n \"intent\": \"None\"\r\n },\r\n {\r\n \"id\": \"7604f597-694e-4508-ad0c-1cbd3ec78088\",\r\n \"pattern\": \"this is a {datetimeV2}\",\r\n \"intent\": \"None\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"9abdb727-3ca3-4434-b14e-3de2001d1112\",\r\n \"pattern\": \"this is a {number}\",\r\n \"intent\": \"None\"\r\n },\r\n {\r\n \"id\": \"e3b165b8-2d3a-45d4-8463-c6fb8ed87c2e\",\r\n \"pattern\": \"this is a {datetimeV2}\",\r\n \"intent\": \"None\"\r\n }\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrules", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5ydWxlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrules", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybnJ1bGVz", "RequestMethod": "DELETE", - "RequestBody": "[\r\n \"7718fafa-d131-4453-b515-cb18eb20b699\",\r\n \"7604f597-694e-4508-ad0c-1cbd3ec78088\"\r\n]", + "RequestBody": "[\r\n \"9abdb727-3ca3-4434-b14e-3de2001d1112\",\r\n \"e3b165b8-2d3a-45d4-8463-c6fb8ed87c2e\"\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -150,10 +150,10 @@ "no-cache" ], "Apim-Request-Id": [ - "39444ed3-6a4c-41a7-b989-725673fcd1b9" + "5f9d9d8c-fd0e-40ce-bd7c-58d6d4b16e03" ], "Request-Id": [ - "39444ed3-6a4c-41a7-b989-725673fcd1b9" + "5f9d9d8c-fd0e-40ce-bd7c-58d6d4b16e03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -168,7 +168,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:23 GMT" + "Tue, 29 Oct 2019 13:23:02 GMT" ], "Content-Length": [ "51" @@ -181,19 +181,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrules?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5ydWxlcz9za2lwPTAmdGFrZT0xMDA=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrules?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybnJ1bGVzP3NraXA9MCZ0YWtlPTEwMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "166c3d7d-735c-4027-93d3-1b9fe4b92440" + "8497bd7f-05a8-489e-beff-d65259a20137" ], "Request-Id": [ - "166c3d7d-735c-4027-93d3-1b9fe4b92440" + "8497bd7f-05a8-489e-beff-d65259a20137" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,7 +222,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:24 GMT" + "Tue, 29 Oct 2019 13:23:02 GMT" ], "Content-Length": [ "2" @@ -235,19 +235,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/ea2a2375-e01c-46a2-b8ab-700b17b3a205", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy9lYTJhMjM3NS1lMDFjLTQ2YTItYjhhYi03MDBiMTdiM2EyMDU=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/5615ddd1-6309-4c28-b2ed-75ee0e3734c6", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzU2MTVkZGQxLTYzMDktNGMyOC1iMmVkLTc1ZWUwZTM3MzRjNg==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -258,10 +258,10 @@ "no-cache" ], "Apim-Request-Id": [ - "c156a2f7-2c9f-49ad-93d9-7150b4400eef" + "e530773b-2f13-47c3-abb7-f27b91448ed0" ], "Request-Id": [ - "c156a2f7-2c9f-49ad-93d9-7150b4400eef" + "e530773b-2f13-47c3-abb7-f27b91448ed0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -276,7 +276,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:24 GMT" + "Tue, 29 Oct 2019 13:23:02 GMT" ], "Content-Length": [ "51" @@ -289,19 +289,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/9f44225b-ae60-4346-846c-e9110fc0b370", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy85ZjQ0MjI1Yi1hZTYwLTQzNDYtODQ2Yy1lOTExMGZjMGIzNzA=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/6c28e6c5-72d0-41ca-8908-9ecea46763c4", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzZjMjhlNmM1LTcyZDAtNDFjYS04OTA4LTllY2VhNDY3NjNjNA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -312,10 +312,10 @@ "no-cache" ], "Apim-Request-Id": [ - "37251375-c735-4e02-bf14-42e82541b150" + "ef7c5615-e993-4f0c-b4af-ab63c9efb9b8" ], "Request-Id": [ - "37251375-c735-4e02-bf14-42e82541b150" + "ef7c5615-e993-4f0c-b4af-ab63c9efb9b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -330,7 +330,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:24 GMT" + "Tue, 29 Oct 2019 13:23:03 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/GetIntentPatterns.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/GetIntentPatterns.json index 5146b8605ccc..55e2b5c20aba 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/GetIntentPatterns.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/GetIntentPatterns.json @@ -1,25 +1,25 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRz", "RequestMethod": "POST", - "RequestBody": "[\r\n \"datetimeV2\",\r\n \"number\"\r\n]", + "RequestBody": "[\r\n \"money\",\r\n \"ordinalV2\"\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "33" + "31" ] }, "ResponseHeaders": { @@ -30,10 +30,10 @@ "no-cache" ], "Apim-Request-Id": [ - "fe054fb7-a5c2-4897-a0ae-fc9bc9045262" + "b87c4547-65e8-49ae-99d6-2f42da03f098" ], "Request-Id": [ - "fe054fb7-a5c2-4897-a0ae-fc9bc9045262" + "b87c4547-65e8-49ae-99d6-2f42da03f098" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -48,38 +48,38 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:25 GMT" + "Tue, 29 Oct 2019 13:23:07 GMT" ], "Content-Length": [ - "259" + "257" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"9c4a8546-8af3-4869-9d6a-81b7836a5fa1\",\r\n \"name\": \"datetimeV2\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"abf74d6c-6eea-4071-a2e5-8958ccc5c2fe\",\r\n \"name\": \"number\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"b639beed-13f6-4d21-a455-6d103294677b\",\r\n \"name\": \"money\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"741d62ec-8cd0-4f9c-abd6-409d59a869f5\",\r\n \"name\": \"ordinalV2\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrules", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5ydWxlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrules", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybnJ1bGVz", "RequestMethod": "POST", - "RequestBody": "[\r\n {\r\n \"pattern\": \"This is a {number}\",\r\n \"intent\": \"None\"\r\n },\r\n {\r\n \"pattern\": \"This is a {datetimeV2}\",\r\n \"intent\": \"None\"\r\n }\r\n]", + "RequestBody": "[\r\n {\r\n \"pattern\": \"This is a {money}\",\r\n \"intent\": \"None\"\r\n },\r\n {\r\n \"pattern\": \"This is a {ordinalV2}\",\r\n \"intent\": \"None\"\r\n }\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "149" + "147" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "ca558595-cf3b-4c53-8703-72cff399cabe" + "9eadec5b-eb5c-414a-9481-7207af5cce48" ], "Request-Id": [ - "ca558595-cf3b-4c53-8703-72cff399cabe" + "9eadec5b-eb5c-414a-9481-7207af5cce48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,32 +108,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:26 GMT" + "Tue, 29 Oct 2019 13:23:07 GMT" ], "Content-Length": [ - "191" + "189" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"3431f983-5b72-4716-910a-e5e4f79de055\",\r\n \"pattern\": \"this is a {number}\",\r\n \"intent\": \"None\"\r\n },\r\n {\r\n \"id\": \"05e87f04-a7fa-4349-a22e-ff0450c4ce31\",\r\n \"pattern\": \"this is a {datetimeV2}\",\r\n \"intent\": \"None\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"eeeb0c3f-3f08-4172-b9c1-44348944dcf8\",\r\n \"pattern\": \"this is a {money}\",\r\n \"intent\": \"None\"\r\n },\r\n {\r\n \"id\": \"00da56f9-54fb-4a5e-9b6a-dc9f0e6485eb\",\r\n \"pattern\": \"this is a {ordinalV2}\",\r\n \"intent\": \"None\"\r\n }\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/intents/ac04c5c6-2c0c-4af8-ba3f-5db090fa7de5/patternrules?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2ludGVudHMvYWMwNGM1YzYtMmMwYy00YWY4LWJhM2YtNWRiMDkwZmE3ZGU1L3BhdHRlcm5ydWxlcz9za2lwPTAmdGFrZT0xMDA=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/intents/731e7ac1-b1d4-4e4e-bc1b-d79f67e2b890/patternrules?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvaW50ZW50cy83MzFlN2FjMS1iMWQ0LTRlNGUtYmMxYi1kNzlmNjdlMmI4OTAvcGF0dGVybnJ1bGVzP3NraXA9MCZ0YWtlPTEwMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "ca43e844-5f9c-47cc-9f02-a3cbbb525e9c" + "55931aae-944c-411b-b100-d8f7c636d77f" ], "Request-Id": [ - "ca43e844-5f9c-47cc-9f02-a3cbbb525e9c" + "55931aae-944c-411b-b100-d8f7c636d77f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,32 +162,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:26 GMT" + "Tue, 29 Oct 2019 13:23:08 GMT" ], "Content-Length": [ - "191" + "189" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"05e87f04-a7fa-4349-a22e-ff0450c4ce31\",\r\n \"pattern\": \"this is a {datetimeV2}\",\r\n \"intent\": \"None\"\r\n },\r\n {\r\n \"id\": \"3431f983-5b72-4716-910a-e5e4f79de055\",\r\n \"pattern\": \"this is a {number}\",\r\n \"intent\": \"None\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"00da56f9-54fb-4a5e-9b6a-dc9f0e6485eb\",\r\n \"pattern\": \"this is a {ordinalV2}\",\r\n \"intent\": \"None\"\r\n },\r\n {\r\n \"id\": \"eeeb0c3f-3f08-4172-b9c1-44348944dcf8\",\r\n \"pattern\": \"this is a {money}\",\r\n \"intent\": \"None\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrules", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5ydWxlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrules", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybnJ1bGVz", "RequestMethod": "DELETE", - "RequestBody": "[\r\n \"3431f983-5b72-4716-910a-e5e4f79de055\",\r\n \"05e87f04-a7fa-4349-a22e-ff0450c4ce31\"\r\n]", + "RequestBody": "[\r\n \"eeeb0c3f-3f08-4172-b9c1-44348944dcf8\",\r\n \"00da56f9-54fb-4a5e-9b6a-dc9f0e6485eb\"\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "dfa44e2b-9379-4eb3-ab44-99dc45ebd6d7" + "3a19e425-9cdc-427c-87cc-2817a3358b46" ], "Request-Id": [ - "dfa44e2b-9379-4eb3-ab44-99dc45ebd6d7" + "3a19e425-9cdc-427c-87cc-2817a3358b46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,7 +222,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:26 GMT" + "Tue, 29 Oct 2019 13:23:08 GMT" ], "Content-Length": [ "51" @@ -235,19 +235,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/9c4a8546-8af3-4869-9d6a-81b7836a5fa1", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy85YzRhODU0Ni04YWYzLTQ4NjktOWQ2YS04MWI3ODM2YTVmYTE=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/b639beed-13f6-4d21-a455-6d103294677b", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzL2I2MzliZWVkLTEzZjYtNGQyMS1hNDU1LTZkMTAzMjk0Njc3Yg==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -258,10 +258,10 @@ "no-cache" ], "Apim-Request-Id": [ - "6f645aef-4062-4074-8f0e-feb906c9ceb8" + "5853b995-b14d-4066-b803-fcbf11ec9c46" ], "Request-Id": [ - "6f645aef-4062-4074-8f0e-feb906c9ceb8" + "5853b995-b14d-4066-b803-fcbf11ec9c46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -276,7 +276,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:27 GMT" + "Tue, 29 Oct 2019 13:23:08 GMT" ], "Content-Length": [ "51" @@ -289,19 +289,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/abf74d6c-6eea-4071-a2e5-8958ccc5c2fe", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy9hYmY3NGQ2Yy02ZWVhLTQwNzEtYTJlNS04OTU4Y2NjNWMyZmU=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/741d62ec-8cd0-4f9c-abd6-409d59a869f5", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzc0MWQ2MmVjLThjZDAtNGY5Yy1hYmQ2LTQwOWQ1OWE4NjlmNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -312,10 +312,10 @@ "no-cache" ], "Apim-Request-Id": [ - "8f441b23-94d2-4fa8-957c-fe86e6d9887c" + "ad7e82e7-8393-496c-867e-2a96375b3376" ], "Request-Id": [ - "8f441b23-94d2-4fa8-957c-fe86e6d9887c" + "ad7e82e7-8393-496c-867e-2a96375b3376" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -330,7 +330,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:27 GMT" + "Tue, 29 Oct 2019 13:23:09 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/GetPatterns.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/GetPatterns.json index 0f080eba0a8c..fd89eb72fe14 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/GetPatterns.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/GetPatterns.json @@ -1,25 +1,25 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRz", "RequestMethod": "POST", - "RequestBody": "[\r\n \"datetimeV2\",\r\n \"number\"\r\n]", + "RequestBody": "[\r\n \"ordinalV2\",\r\n \"money\"\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "33" + "31" ] }, "ResponseHeaders": { @@ -30,10 +30,10 @@ "no-cache" ], "Apim-Request-Id": [ - "35ccb665-4394-447f-bbc0-82ade353d724" + "3c4c6335-f657-4613-896d-01dd6a80aefe" ], "Request-Id": [ - "35ccb665-4394-447f-bbc0-82ade353d724" + "3c4c6335-f657-4613-896d-01dd6a80aefe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -48,38 +48,38 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:16 GMT" + "Tue, 29 Oct 2019 13:22:55 GMT" ], "Content-Length": [ - "259" + "257" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"05b0000c-eb06-4401-bd25-71839a3cc41e\",\r\n \"name\": \"datetimeV2\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"00dde0b9-2302-4640-b1f0-c092d69d1bda\",\r\n \"name\": \"number\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"9594f25c-7958-4607-88e2-20101f74f65e\",\r\n \"name\": \"money\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"0286fc95-54ac-46cf-aee3-4f68fb246b52\",\r\n \"name\": \"ordinalV2\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrules", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5ydWxlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrules", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybnJ1bGVz", "RequestMethod": "POST", - "RequestBody": "[\r\n {\r\n \"pattern\": \"This is a {number}\",\r\n \"intent\": \"None\"\r\n },\r\n {\r\n \"pattern\": \"This is a {datetimeV2}\",\r\n \"intent\": \"None\"\r\n }\r\n]", + "RequestBody": "[\r\n {\r\n \"pattern\": \"This is a {money}\",\r\n \"intent\": \"None\"\r\n },\r\n {\r\n \"pattern\": \"This is a {ordinalV2}\",\r\n \"intent\": \"None\"\r\n }\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "149" + "147" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "975b0d94-3707-48c5-ab99-a8abfaaa5007" + "e9c8f3f1-2602-4ce7-a039-9e40210002b8" ], "Request-Id": [ - "975b0d94-3707-48c5-ab99-a8abfaaa5007" + "e9c8f3f1-2602-4ce7-a039-9e40210002b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,32 +108,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:17 GMT" + "Tue, 29 Oct 2019 13:22:56 GMT" ], "Content-Length": [ - "191" + "189" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"f978fee6-7041-497a-bb9c-59ccfa109d2e\",\r\n \"pattern\": \"this is a {number}\",\r\n \"intent\": \"None\"\r\n },\r\n {\r\n \"id\": \"21300b64-cb0d-4bc7-aa85-8de49ca797dd\",\r\n \"pattern\": \"this is a {datetimeV2}\",\r\n \"intent\": \"None\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"85b8d16d-565d-4ed3-8906-e3d133657f44\",\r\n \"pattern\": \"this is a {money}\",\r\n \"intent\": \"None\"\r\n },\r\n {\r\n \"id\": \"9c372a1c-06c8-4891-8bb5-16927ad38379\",\r\n \"pattern\": \"this is a {ordinalV2}\",\r\n \"intent\": \"None\"\r\n }\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrules?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5ydWxlcz9za2lwPTAmdGFrZT0xMDA=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrules?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybnJ1bGVzP3NraXA9MCZ0YWtlPTEwMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +144,10 @@ "no-cache" ], "Apim-Request-Id": [ - "b09427fa-e109-4de6-8def-bbced1cfeef4" + "ee42a347-53c3-41be-9b5b-bfe3ed0c6f22" ], "Request-Id": [ - "b09427fa-e109-4de6-8def-bbced1cfeef4" + "ee42a347-53c3-41be-9b5b-bfe3ed0c6f22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,32 +162,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:17 GMT" + "Tue, 29 Oct 2019 13:22:56 GMT" ], "Content-Length": [ - "191" + "189" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"21300b64-cb0d-4bc7-aa85-8de49ca797dd\",\r\n \"pattern\": \"this is a {datetimeV2}\",\r\n \"intent\": \"None\"\r\n },\r\n {\r\n \"id\": \"f978fee6-7041-497a-bb9c-59ccfa109d2e\",\r\n \"pattern\": \"this is a {number}\",\r\n \"intent\": \"None\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"9c372a1c-06c8-4891-8bb5-16927ad38379\",\r\n \"pattern\": \"this is a {ordinalV2}\",\r\n \"intent\": \"None\"\r\n },\r\n {\r\n \"id\": \"85b8d16d-565d-4ed3-8906-e3d133657f44\",\r\n \"pattern\": \"this is a {money}\",\r\n \"intent\": \"None\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrules", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5ydWxlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrules", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybnJ1bGVz", "RequestMethod": "DELETE", - "RequestBody": "[\r\n \"f978fee6-7041-497a-bb9c-59ccfa109d2e\",\r\n \"21300b64-cb0d-4bc7-aa85-8de49ca797dd\"\r\n]", + "RequestBody": "[\r\n \"85b8d16d-565d-4ed3-8906-e3d133657f44\",\r\n \"9c372a1c-06c8-4891-8bb5-16927ad38379\"\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -204,10 +204,10 @@ "no-cache" ], "Apim-Request-Id": [ - "39059289-8c29-48ab-b7c0-d769d6ad1e5d" + "442cd491-58d6-4d95-a8af-cdc0b777a141" ], "Request-Id": [ - "39059289-8c29-48ab-b7c0-d769d6ad1e5d" + "442cd491-58d6-4d95-a8af-cdc0b777a141" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,7 +222,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:17 GMT" + "Tue, 29 Oct 2019 13:22:56 GMT" ], "Content-Length": [ "51" @@ -235,19 +235,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/05b0000c-eb06-4401-bd25-71839a3cc41e", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy8wNWIwMDAwYy1lYjA2LTQ0MDEtYmQyNS03MTgzOWEzY2M0MWU=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/9594f25c-7958-4607-88e2-20101f74f65e", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzk1OTRmMjVjLTc5NTgtNDYwNy04OGUyLTIwMTAxZjc0ZjY1ZQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -258,10 +258,10 @@ "no-cache" ], "Apim-Request-Id": [ - "237f29f1-23cc-400a-a54f-4c7377de5dcb" + "25d3d4ce-49f4-4a37-8741-3f90060fce56" ], "Request-Id": [ - "237f29f1-23cc-400a-a54f-4c7377de5dcb" + "25d3d4ce-49f4-4a37-8741-3f90060fce56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -276,7 +276,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:18 GMT" + "Tue, 29 Oct 2019 13:22:57 GMT" ], "Content-Length": [ "51" @@ -289,19 +289,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/00dde0b9-2302-4640-b1f0-c092d69d1bda", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy8wMGRkZTBiOS0yMzAyLTQ2NDAtYjFmMC1jMDkyZDY5ZDFiZGE=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/0286fc95-54ac-46cf-aee3-4f68fb246b52", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzAyODZmYzk1LTU0YWMtNDZjZi1hZWUzLTRmNjhmYjI0NmI1Mg==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -312,10 +312,10 @@ "no-cache" ], "Apim-Request-Id": [ - "6b9a99e7-892b-4076-aeec-424271d51033" + "106af342-9cfa-46ef-a693-133939844b7b" ], "Request-Id": [ - "6b9a99e7-892b-4076-aeec-424271d51033" + "106af342-9cfa-46ef-a693-133939844b7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -330,7 +330,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:18 GMT" + "Tue, 29 Oct 2019 13:22:57 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/UpdatePattern.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/UpdatePattern.json index 11967919d1e5..e828cb996924 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/UpdatePattern.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/UpdatePattern.json @@ -1,25 +1,25 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRz", "RequestMethod": "POST", - "RequestBody": "[\r\n \"datetimeV2\"\r\n]", + "RequestBody": "[\r\n \"email\"\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "20" + "15" ] }, "ResponseHeaders": { @@ -30,10 +30,10 @@ "no-cache" ], "Apim-Request-Id": [ - "413921b6-563e-4717-8f81-5291b8aeeaa1" + "28a9d1da-ac6d-41d8-a0a3-d7e0f54eaab1" ], "Request-Id": [ - "413921b6-563e-4717-8f81-5291b8aeeaa1" + "28a9d1da-ac6d-41d8-a0a3-d7e0f54eaab1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -48,38 +48,38 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:28 GMT" + "Tue, 29 Oct 2019 13:22:50 GMT" ], "Content-Length": [ - "132" + "127" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"356becfe-a257-45e1-be19-28d074cef923\",\r\n \"name\": \"datetimeV2\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"59fb761e-3a2e-4bd9-a000-54760ee841bb\",\r\n \"name\": \"email\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrule", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5ydWxl", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrule", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybnJ1bGU=", "RequestMethod": "POST", - "RequestBody": "{\r\n \"pattern\": \"This is a {datetimeV2}\",\r\n \"intent\": \"None\"\r\n}", + "RequestBody": "{\r\n \"pattern\": \"This is a {email}\",\r\n \"intent\": \"None\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "64" + "59" ] }, "ResponseHeaders": { @@ -90,16 +90,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrule/9f624990-0690-43e7-abeb-46c32f7dba57" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrule/ba483978-e84b-4d80-bca3-4cc6a8011682" ], "Apim-Request-Id": [ - "ea193510-6000-46c5-a8ad-e5371f82fd94" + "ee8cc8d1-2d56-468b-af3f-c54f9bbb52a4" ], "Request-Id": [ - "ea193510-6000-46c5-a8ad-e5371f82fd94" + "ee8cc8d1-2d56-468b-af3f-c54f9bbb52a4" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrule/9f624990-0690-43e7-abeb-46c32f7dba57" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrule/ba483978-e84b-4d80-bca3-4cc6a8011682" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -114,38 +114,38 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:28 GMT" + "Tue, 29 Oct 2019 13:22:51 GMT" ], "Content-Length": [ - "96" + "91" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"9f624990-0690-43e7-abeb-46c32f7dba57\",\r\n \"pattern\": \"this is a {datetimeV2}\",\r\n \"intent\": \"None\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"ba483978-e84b-4d80-bca3-4cc6a8011682\",\r\n \"pattern\": \"this is a {email}\",\r\n \"intent\": \"None\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrules/9f624990-0690-43e7-abeb-46c32f7dba57", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5ydWxlcy85ZjYyNDk5MC0wNjkwLTQzZTctYWJlYi00NmMzMmY3ZGJhNTc=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrules/ba483978-e84b-4d80-bca3-4cc6a8011682", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybnJ1bGVzL2JhNDgzOTc4LWU4NGItNGQ4MC1iY2EzLTRjYzZhODAxMTY4Mg==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"pattern\": \"This [is] a {datetimeV2}\",\r\n \"intent\": \"None\"\r\n}", + "RequestBody": "{\r\n \"pattern\": \"This [is] a {email}\",\r\n \"intent\": \"None\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "66" + "61" ] }, "ResponseHeaders": { @@ -156,10 +156,10 @@ "no-cache" ], "Apim-Request-Id": [ - "c95e98b2-e1f5-419c-ba2c-a333a1af072c" + "f3c04926-2081-4a89-9355-2225b380fd10" ], "Request-Id": [ - "c95e98b2-e1f5-419c-ba2c-a333a1af072c" + "f3c04926-2081-4a89-9355-2225b380fd10" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -174,32 +174,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:29 GMT" + "Tue, 29 Oct 2019 13:22:51 GMT" ], "Content-Length": [ - "98" + "93" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"id\": \"9f624990-0690-43e7-abeb-46c32f7dba57\",\r\n \"pattern\": \"this [is] a {datetimeV2}\",\r\n \"intent\": \"None\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"ba483978-e84b-4d80-bca3-4cc6a8011682\",\r\n \"pattern\": \"this [is] a {email}\",\r\n \"intent\": \"None\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrules/9f624990-0690-43e7-abeb-46c32f7dba57", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5ydWxlcy85ZjYyNDk5MC0wNjkwLTQzZTctYWJlYi00NmMzMmY3ZGJhNTc=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrules/ba483978-e84b-4d80-bca3-4cc6a8011682", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybnJ1bGVzL2JhNDgzOTc4LWU4NGItNGQ4MC1iY2EzLTRjYzZhODAxMTY4Mg==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "554b2881-e807-4140-9da4-11adea240850" + "6621d252-c21d-499d-8f7f-4e66525b410e" ], "Request-Id": [ - "554b2881-e807-4140-9da4-11adea240850" + "6621d252-c21d-499d-8f7f-4e66525b410e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:29 GMT" + "Tue, 29 Oct 2019 13:22:51 GMT" ], "Content-Length": [ "51" @@ -241,19 +241,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/356becfe-a257-45e1-be19-28d074cef923", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy8zNTZiZWNmZS1hMjU3LTQ1ZTEtYmUxOS0yOGQwNzRjZWY5MjM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/59fb761e-3a2e-4bd9-a000-54760ee841bb", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzU5ZmI3NjFlLTNhMmUtNGJkOS1hMDAwLTU0NzYwZWU4NDFiYg==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -264,10 +264,10 @@ "no-cache" ], "Apim-Request-Id": [ - "ed85752a-a13c-4b8a-9bfc-906c98d21429" + "25b3f271-6c81-4aed-adf4-56f9a51d3a6a" ], "Request-Id": [ - "ed85752a-a13c-4b8a-9bfc-906c98d21429" + "25b3f271-6c81-4aed-adf4-56f9a51d3a6a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -282,7 +282,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:29 GMT" + "Tue, 29 Oct 2019 13:22:52 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/UpdatePatterns.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/UpdatePatterns.json index 43de8b51b2b6..babcd97275f5 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/UpdatePatterns.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PatternsTests/UpdatePatterns.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRz", "RequestMethod": "POST", - "RequestBody": "[\r\n \"datetimeV2\",\r\n \"number\"\r\n]", + "RequestBody": "[\r\n \"email\",\r\n \"geographyV2\"\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,10 +30,10 @@ "no-cache" ], "Apim-Request-Id": [ - "9657b418-27ad-4059-a70d-c113b1769d65" + "af40eec1-cf2a-4001-9208-7d2c18c3a397" ], "Request-Id": [ - "9657b418-27ad-4059-a70d-c113b1769d65" + "af40eec1-cf2a-4001-9208-7d2c18c3a397" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -48,7 +48,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:30 GMT" + "Tue, 29 Oct 2019 13:22:47 GMT" ], "Content-Length": [ "259" @@ -57,29 +57,29 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"35d67e2e-4409-4052-8631-39ff637d5905\",\r\n \"name\": \"datetimeV2\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"7e737079-4fc9-4986-80f1-cd6541880926\",\r\n \"name\": \"number\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"319b8859-0c8c-4bae-b90d-1014c3e2b802\",\r\n \"name\": \"email\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n },\r\n {\r\n \"id\": \"f52b266e-f46c-48b9-9fcb-18a692ca793d\",\r\n \"name\": \"geographyV2\",\r\n \"typeId\": 2,\r\n \"readableType\": \"Prebuilt Entity Extractor\",\r\n \"roles\": []\r\n }\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrules", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5ydWxlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrules", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybnJ1bGVz", "RequestMethod": "POST", - "RequestBody": "[\r\n {\r\n \"pattern\": \"This is a {number}\",\r\n \"intent\": \"None\"\r\n }\r\n]", + "RequestBody": "[\r\n {\r\n \"pattern\": \"This is a {email}\",\r\n \"intent\": \"None\"\r\n }\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "74" + "73" ] }, "ResponseHeaders": { @@ -90,10 +90,10 @@ "no-cache" ], "Apim-Request-Id": [ - "dd2392ef-0ca4-4205-b0ea-4a2c8eba76fe" + "6dd0b2da-22df-4b35-88f0-e259509b0147" ], "Request-Id": [ - "dd2392ef-0ca4-4205-b0ea-4a2c8eba76fe" + "6dd0b2da-22df-4b35-88f0-e259509b0147" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,38 +108,38 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:30 GMT" + "Tue, 29 Oct 2019 13:22:48 GMT" ], "Content-Length": [ - "94" + "93" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"1447da95-ff5f-4ebb-8c7c-0221f8de854f\",\r\n \"pattern\": \"this is a {number}\",\r\n \"intent\": \"None\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"1dc42af2-e4b8-4fb7-9234-c78ab6449ce1\",\r\n \"pattern\": \"this is a {email}\",\r\n \"intent\": \"None\"\r\n }\r\n]", "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrules", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5ydWxlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrules", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybnJ1bGVz", "RequestMethod": "PUT", - "RequestBody": "[\r\n {\r\n \"id\": \"1447da95-ff5f-4ebb-8c7c-0221f8de854f\",\r\n \"pattern\": \"This [is] a {datetimeV2}\",\r\n \"intent\": \"None\"\r\n }\r\n]", + "RequestBody": "[\r\n {\r\n \"id\": \"1dc42af2-e4b8-4fb7-9234-c78ab6449ce1\",\r\n \"pattern\": \"This [is] a {geographyV2}\",\r\n \"intent\": \"None\"\r\n }\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "131" + "132" ] }, "ResponseHeaders": { @@ -150,10 +150,10 @@ "no-cache" ], "Apim-Request-Id": [ - "28a2582f-6b85-4849-a1dc-679e18ab3198" + "25a21163-e067-45e5-b319-d626da1a34e8" ], "Request-Id": [ - "28a2582f-6b85-4849-a1dc-679e18ab3198" + "25a21163-e067-45e5-b319-d626da1a34e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -168,32 +168,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:30 GMT" + "Tue, 29 Oct 2019 13:22:48 GMT" ], "Content-Length": [ - "100" + "101" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"id\": \"1447da95-ff5f-4ebb-8c7c-0221f8de854f\",\r\n \"pattern\": \"this [is] a {datetimeV2}\",\r\n \"intent\": \"None\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"id\": \"1dc42af2-e4b8-4fb7-9234-c78ab6449ce1\",\r\n \"pattern\": \"this [is] a {geographyV2}\",\r\n \"intent\": \"None\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/patternrules", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3BhdHRlcm5ydWxlcw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/patternrules", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcGF0dGVybnJ1bGVz", "RequestMethod": "DELETE", - "RequestBody": "[\r\n \"1447da95-ff5f-4ebb-8c7c-0221f8de854f\"\r\n]", + "RequestBody": "[\r\n \"1dc42af2-e4b8-4fb7-9234-c78ab6449ce1\"\r\n]", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -210,10 +210,10 @@ "no-cache" ], "Apim-Request-Id": [ - "687f65d1-d08c-4c41-9f98-aaa28bf5f487" + "116b41f9-b26c-415e-9834-3915c752540a" ], "Request-Id": [ - "687f65d1-d08c-4c41-9f98-aaa28bf5f487" + "116b41f9-b26c-415e-9834-3915c752540a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -228,7 +228,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:31 GMT" + "Tue, 29 Oct 2019 13:22:48 GMT" ], "Content-Length": [ "51" @@ -241,19 +241,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/35d67e2e-4409-4052-8631-39ff637d5905", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy8zNWQ2N2UyZS00NDA5LTQwNTItODYzMS0zOWZmNjM3ZDU5MDU=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/319b8859-0c8c-4bae-b90d-1014c3e2b802", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzLzMxOWI4ODU5LTBjOGMtNGJhZS1iOTBkLTEwMTRjM2UyYjgwMg==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -264,10 +264,10 @@ "no-cache" ], "Apim-Request-Id": [ - "ef5bf3b1-2092-43db-86c3-ff4de4ad2084" + "7c75320c-49ae-459e-a59b-e4cce32eabbe" ], "Request-Id": [ - "ef5bf3b1-2092-43db-86c3-ff4de4ad2084" + "7c75320c-49ae-459e-a59b-e4cce32eabbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -282,7 +282,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:31 GMT" + "Tue, 29 Oct 2019 13:22:49 GMT" ], "Content-Length": [ "51" @@ -295,19 +295,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/prebuilts/7e737079-4fc9-4986-80f1-cd6541880926", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3ByZWJ1aWx0cy83ZTczNzA3OS00ZmM5LTQ5ODYtODBmMS1jZDY1NDE4ODA5MjY=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/prebuilts/f52b266e-f46c-48b9-9fcb-18a692ca793d", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvcHJlYnVpbHRzL2Y1MmIyNjZlLWY0NmMtNDhiOS05ZmNiLTE4YTY5MmNhNzkzZA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -318,10 +318,10 @@ "no-cache" ], "Apim-Request-Id": [ - "c085938f-8756-4cad-8a71-c61de74565fb" + "09e0daf2-3711-47b2-ba56-c0bd0b6433b3" ], "Request-Id": [ - "c085938f-8756-4cad-8a71-c61de74565fb" + "09e0daf2-3711-47b2-ba56-c0bd0b6433b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -336,7 +336,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:31 GMT" + "Tue, 29 Oct 2019 13:22:49 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PermissionsTests/AddPermission.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PermissionsTests/AddPermission.json index 5e33114d4095..06b584e96c81 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PermissionsTests/AddPermission.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PermissionsTests/AddPermission.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/permissions", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvcGVybWlzc2lvbnM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/permissions", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi9wZXJtaXNzaW9ucw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"email\": \"guest@outlook.com\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,10 +30,13 @@ "no-cache" ], "Apim-Request-Id": [ - "b40f0d32-8c27-49b1-822f-02c88e45601b" + "b8085e32-f5fe-4921-a7f4-681cf2acb54f" ], "Request-Id": [ - "b40f0d32-8c27-49b1-822f-02c88e45601b" + "b8085e32-f5fe-4921-a7f4-681cf2acb54f" + ], + "X-API-Deprecation-Date": [ + "2020-09-02T00:00:00Z" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -48,7 +51,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:20 GMT" + "Tue, 29 Oct 2019 13:23:13 GMT" ], "Content-Length": [ "51" @@ -61,19 +64,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/permissions", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvcGVybWlzc2lvbnM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/permissions", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi9wZXJtaXNzaW9ucw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -84,10 +87,13 @@ "no-cache" ], "Apim-Request-Id": [ - "c87d0702-ae12-43d4-a517-3cb1d03726dd" + "7236e438-75de-427b-848a-0a77bdaf6570" ], "Request-Id": [ - "c87d0702-ae12-43d4-a517-3cb1d03726dd" + "7236e438-75de-427b-848a-0a77bdaf6570" + ], + "X-API-Deprecation-Date": [ + "2020-09-02T00:00:00Z" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -102,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:21 GMT" + "Tue, 29 Oct 2019 13:23:13 GMT" ], "Content-Length": [ "65" @@ -111,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"owner\": \"a-omsami@microsoft.com\",\r\n \"emails\": [\r\n \"guest@outlook.com\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"owner\": \"a-nebadr@microsoft.com\",\r\n \"emails\": [\r\n \"guest@outlook.com\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/permissions", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvcGVybWlzc2lvbnM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/permissions", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi9wZXJtaXNzaW9ucw==", "RequestMethod": "DELETE", "RequestBody": "{\r\n \"email\": \"guest@outlook.com\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -144,10 +150,13 @@ "no-cache" ], "Apim-Request-Id": [ - "c148f6b5-329a-441c-bcbf-28f3990dde57" + "78a2aa3a-104a-4794-9c06-0044c41cdbd8" ], "Request-Id": [ - "c148f6b5-329a-441c-bcbf-28f3990dde57" + "78a2aa3a-104a-4794-9c06-0044c41cdbd8" + ], + "X-API-Deprecation-Date": [ + "2020-09-02T00:00:00Z" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +171,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:21 GMT" + "Tue, 29 Oct 2019 13:23:13 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PermissionsTests/DeletePermission.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PermissionsTests/DeletePermission.json index fde7ccef82ff..c207916ade32 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PermissionsTests/DeletePermission.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PermissionsTests/DeletePermission.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/permissions", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvcGVybWlzc2lvbnM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/permissions", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi9wZXJtaXNzaW9ucw==", "RequestMethod": "POST", "RequestBody": "{\r\n \"email\": \"guest@outlook.com\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,10 +30,13 @@ "no-cache" ], "Apim-Request-Id": [ - "0c20cc36-0ed2-4423-b4b3-77e4472ad01d" + "922b2686-0b24-401a-8230-778619f5fd21" ], "Request-Id": [ - "0c20cc36-0ed2-4423-b4b3-77e4472ad01d" + "922b2686-0b24-401a-8230-778619f5fd21" + ], + "X-API-Deprecation-Date": [ + "2020-09-02T00:00:00Z" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -48,7 +51,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:19 GMT" + "Tue, 29 Oct 2019 13:23:11 GMT" ], "Content-Length": [ "51" @@ -61,19 +64,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/permissions", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvcGVybWlzc2lvbnM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/permissions", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi9wZXJtaXNzaW9ucw==", "RequestMethod": "DELETE", "RequestBody": "{\r\n \"email\": \"guest@outlook.com\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -90,10 +93,13 @@ "no-cache" ], "Apim-Request-Id": [ - "f0194827-754a-4094-a5ea-d3c9b073bd00" + "d59a30e0-23e3-4e38-ad27-40b7e2b87403" ], "Request-Id": [ - "f0194827-754a-4094-a5ea-d3c9b073bd00" + "d59a30e0-23e3-4e38-ad27-40b7e2b87403" + ], + "X-API-Deprecation-Date": [ + "2020-09-02T00:00:00Z" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +114,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:20 GMT" + "Tue, 29 Oct 2019 13:23:12 GMT" ], "Content-Length": [ "51" @@ -121,19 +127,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/permissions", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvcGVybWlzc2lvbnM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/permissions", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi9wZXJtaXNzaW9ucw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +150,13 @@ "no-cache" ], "Apim-Request-Id": [ - "5e9198f6-791d-42ec-a82c-cd5f77ddde30" + "6a716de4-e47b-4c16-8e7c-2d16e8895fa9" ], "Request-Id": [ - "5e9198f6-791d-42ec-a82c-cd5f77ddde30" + "6a716de4-e47b-4c16-8e7c-2d16e8895fa9" + ], + "X-API-Deprecation-Date": [ + "2020-09-02T00:00:00Z" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +171,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:20 GMT" + "Tue, 29 Oct 2019 13:23:12 GMT" ], "Content-Length": [ "46" @@ -171,7 +180,7 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"owner\": \"a-omsami@microsoft.com\",\r\n \"emails\": []\r\n}", + "ResponseBody": "{\r\n \"owner\": \"a-nebadr@microsoft.com\",\r\n \"emails\": []\r\n}", "StatusCode": 200 } ], diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PermissionsTests/ListPermissions.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PermissionsTests/ListPermissions.json index 30a011ce44cd..e4dc6d2f7bf2 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PermissionsTests/ListPermissions.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PermissionsTests/ListPermissions.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/permissions", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvcGVybWlzc2lvbnM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/permissions", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi9wZXJtaXNzaW9ucw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"emails\": [\r\n \"guest@outlook.com\",\r\n \"invited.user@live.com\"\r\n ]\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,10 +30,13 @@ "no-cache" ], "Apim-Request-Id": [ - "41d985de-9752-4a78-989c-c8e279a70b91" + "03dded27-9cae-4e05-ae08-9e05ce44c15c" ], "Request-Id": [ - "41d985de-9752-4a78-989c-c8e279a70b91" + "03dded27-9cae-4e05-ae08-9e05ce44c15c" + ], + "X-API-Deprecation-Date": [ + "2020-09-02T00:00:00Z" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -48,7 +51,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:21 GMT" + "Tue, 29 Oct 2019 13:23:10 GMT" ], "Content-Length": [ "51" @@ -61,19 +64,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/permissions", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvcGVybWlzc2lvbnM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/permissions", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi9wZXJtaXNzaW9ucw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -84,10 +87,13 @@ "no-cache" ], "Apim-Request-Id": [ - "28d3e1ed-f3ce-4187-a6a5-82d689f223c4" + "48c9811c-79e4-4efd-8fcb-8622c13636c6" ], "Request-Id": [ - "28d3e1ed-f3ce-4187-a6a5-82d689f223c4" + "48c9811c-79e4-4efd-8fcb-8622c13636c6" + ], + "X-API-Deprecation-Date": [ + "2020-09-02T00:00:00Z" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -102,7 +108,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:23 GMT" + "Tue, 29 Oct 2019 13:23:10 GMT" ], "Content-Length": [ "89" @@ -111,23 +117,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"owner\": \"a-omsami@microsoft.com\",\r\n \"emails\": [\r\n \"guest@outlook.com\",\r\n \"invited.user@live.com\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"owner\": \"a-nebadr@microsoft.com\",\r\n \"emails\": [\r\n \"guest@outlook.com\",\r\n \"invited.user@live.com\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/permissions", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvcGVybWlzc2lvbnM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/permissions", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi9wZXJtaXNzaW9ucw==", "RequestMethod": "DELETE", "RequestBody": "{\r\n \"email\": \"guest@outlook.com\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -144,10 +150,13 @@ "no-cache" ], "Apim-Request-Id": [ - "64b7d6e9-a050-4635-b031-498b05e29a29" + "dc804000-6f73-4466-8324-c04107760c86" ], "Request-Id": [ - "64b7d6e9-a050-4635-b031-498b05e29a29" + "dc804000-6f73-4466-8324-c04107760c86" + ], + "X-API-Deprecation-Date": [ + "2020-09-02T00:00:00Z" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +171,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:23 GMT" + "Tue, 29 Oct 2019 13:23:10 GMT" ], "Content-Length": [ "51" @@ -175,19 +184,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/permissions", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvcGVybWlzc2lvbnM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/permissions", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi9wZXJtaXNzaW9ucw==", "RequestMethod": "DELETE", "RequestBody": "{\r\n \"email\": \"invited.user@live.com\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -204,10 +213,13 @@ "no-cache" ], "Apim-Request-Id": [ - "38ea83e3-6eed-4a87-92f7-809b5bcea669" + "423ec01c-7d0e-4683-a600-191da8151485" ], "Request-Id": [ - "38ea83e3-6eed-4a87-92f7-809b5bcea669" + "423ec01c-7d0e-4683-a600-191da8151485" + ], + "X-API-Deprecation-Date": [ + "2020-09-02T00:00:00Z" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -222,7 +234,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:23 GMT" + "Tue, 29 Oct 2019 13:23:10 GMT" ], "Content-Length": [ "51" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PermissionsTests/UpdatePermission.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PermissionsTests/UpdatePermission.json index 63292ed17149..7009c0131da3 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PermissionsTests/UpdatePermission.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/PermissionsTests/UpdatePermission.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/permissions", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvcGVybWlzc2lvbnM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/permissions", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi9wZXJtaXNzaW9ucw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"emails\": [\r\n \"guest@outlook.com\",\r\n \"invited.user@live.com\"\r\n ]\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -30,10 +30,13 @@ "no-cache" ], "Apim-Request-Id": [ - "a19d58b2-1114-4986-8f0e-7fe150011b85" + "dd5c059f-9b94-4937-ba44-0f1904ff1074" ], "Request-Id": [ - "a19d58b2-1114-4986-8f0e-7fe150011b85" + "dd5c059f-9b94-4937-ba44-0f1904ff1074" + ], + "X-API-Deprecation-Date": [ + "2020-09-02T00:00:00Z" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -48,7 +51,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:23 GMT" + "Tue, 29 Oct 2019 13:23:13 GMT" ], "Content-Length": [ "51" @@ -61,19 +64,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/permissions", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvcGVybWlzc2lvbnM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/permissions", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi9wZXJtaXNzaW9ucw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"emails\": []\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -90,10 +93,13 @@ "no-cache" ], "Apim-Request-Id": [ - "f62acd19-cbb1-452a-ac1b-27707003abdb" + "3f6ffc3d-9282-4c22-b6a7-4e5843434e01" ], "Request-Id": [ - "f62acd19-cbb1-452a-ac1b-27707003abdb" + "3f6ffc3d-9282-4c22-b6a7-4e5843434e01" + ], + "X-API-Deprecation-Date": [ + "2020-09-02T00:00:00Z" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -108,7 +114,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:24 GMT" + "Tue, 29 Oct 2019 13:23:14 GMT" ], "Content-Length": [ "51" @@ -121,19 +127,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/permissions", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvcGVybWlzc2lvbnM=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/permissions", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi9wZXJtaXNzaW9ucw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -144,10 +150,13 @@ "no-cache" ], "Apim-Request-Id": [ - "ce53f461-01d7-49b8-96e4-41062879965c" + "cc502219-4545-4bc9-b2e6-baa9cff836af" ], "Request-Id": [ - "ce53f461-01d7-49b8-96e4-41062879965c" + "cc502219-4545-4bc9-b2e6-baa9cff836af" + ], + "X-API-Deprecation-Date": [ + "2020-09-02T00:00:00Z" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +171,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:21:23 GMT" + "Tue, 29 Oct 2019 13:23:14 GMT" ], "Content-Length": [ "89" @@ -171,7 +180,7 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"owner\": \"a-omsami@microsoft.com\",\r\n \"emails\": [\r\n \"guest@outlook.com\",\r\n \"invited.user@live.com\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"owner\": \"a-nebadr@microsoft.com\",\r\n \"emails\": [\r\n \"guest@outlook.com\",\r\n \"invited.user@live.com\"\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/TrainTests/GetStatus.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/TrainTests/GetStatus.json index a181aca6fc72..17ad623c18ad 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/TrainTests/GetStatus.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/TrainTests/GetStatus.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/train", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3RyYWlu", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/train", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvdHJhaW4=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -24,16 +24,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/train/" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/train/" ], "Apim-Request-Id": [ - "70e645fb-0fe3-4621-8e12-ccb08281f5a1" + "ccf537ac-b177-4e7d-80e0-ce1b123bdcbb" ], "Request-Id": [ - "70e645fb-0fe3-4621-8e12-ccb08281f5a1" + "ccf537ac-b177-4e7d-80e0-ce1b123bdcbb" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/train/" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/train/" ], "Access-Control-Expose-Headers": [ "Operation-Location" @@ -51,32 +51,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:09 GMT" + "Tue, 29 Oct 2019 13:23:15 GMT" ], "Content-Length": [ - "34" + "32" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"statusId\": 2,\r\n \"status\": \"UpToDate\"\r\n}", + "ResponseBody": "{\r\n \"statusId\": 9,\r\n \"status\": \"Queued\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/train", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3RyYWlu", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/train", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvdHJhaW4=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -87,10 +87,10 @@ "no-cache" ], "Apim-Request-Id": [ - "cc5c23a0-e0b4-495b-b9bf-bd7afd09b365" + "abd8dd65-d28f-4e2f-a1a2-46aa1800b93d" ], "Request-Id": [ - "cc5c23a0-e0b4-495b-b9bf-bd7afd09b365" + "abd8dd65-d28f-4e2f-a1a2-46aa1800b93d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -105,16 +105,232 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:09 GMT" + "Tue, 29 Oct 2019 13:23:16 GMT" ], "Content-Length": [ - "231" + "1217" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"modelId\": \"ac04c5c6-2c0c-4af8-ba3f-5db090fa7de5\",\r\n \"details\": {\r\n \"statusId\": 2,\r\n \"status\": \"UpToDate\",\r\n \"exampleCount\": 474\r\n }\r\n },\r\n {\r\n \"modelId\": \"eee1436a-701d-46c4-9e4b-6de52d641513\",\r\n \"details\": {\r\n \"statusId\": 2,\r\n \"status\": \"UpToDate\",\r\n \"exampleCount\": 474\r\n }\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"modelId\": \"7de1c115-4bee-4488-845c-bcc94b660082\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"CollectingData\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"1f65d5ab-3daf-44f5-af17-7cd6f3f4dcce\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"CollectingData\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"f3ff4992-88d3-45ef-a1ec-d0e77fa02df9\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"CollectingData\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"0da76691-d27b-435a-8318-062e6338f5e3\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"CollectingData\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"f3a9fbb1-ae4f-4fcb-962d-f1af369c0a1b\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"CollectingData\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"b70ce982-f1dc-4a20-a193-b3cac214af44\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"CollectingData\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"731e7ac1-b1d4-4e4e-bc1b-d79f67e2b890\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"CollectingData\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"abf20029-becf-4779-b8e9-8ced75f54163\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"CollectingData\"\r\n }\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/train", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvdHJhaW4=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "cc63cb60-8579-42eb-a866-c1ad32fa8734" + ], + "Request-Id": [ + "cc63cb60-8579-42eb-a866-c1ad32fa8734" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 13:23:17 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "[\r\n {\r\n \"modelId\": \"7de1c115-4bee-4488-845c-bcc94b660082\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"1f65d5ab-3daf-44f5-af17-7cd6f3f4dcce\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"f3ff4992-88d3-45ef-a1ec-d0e77fa02df9\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"0da76691-d27b-435a-8318-062e6338f5e3\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"f3a9fbb1-ae4f-4fcb-962d-f1af369c0a1b\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"b70ce982-f1dc-4a20-a193-b3cac214af44\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"731e7ac1-b1d4-4e4e-bc1b-d79f67e2b890\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"abf20029-becf-4779-b8e9-8ced75f54163\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/train", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvdHJhaW4=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "74ecb9fe-884e-43ea-b767-541293e09b51" + ], + "Request-Id": [ + "74ecb9fe-884e-43ea-b767-541293e09b51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 13:23:18 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "[\r\n {\r\n \"modelId\": \"7de1c115-4bee-4488-845c-bcc94b660082\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"1f65d5ab-3daf-44f5-af17-7cd6f3f4dcce\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"f3ff4992-88d3-45ef-a1ec-d0e77fa02df9\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"0da76691-d27b-435a-8318-062e6338f5e3\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"f3a9fbb1-ae4f-4fcb-962d-f1af369c0a1b\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"b70ce982-f1dc-4a20-a193-b3cac214af44\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"731e7ac1-b1d4-4e4e-bc1b-d79f67e2b890\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"abf20029-becf-4779-b8e9-8ced75f54163\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/train", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvdHJhaW4=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "aa221358-cdca-46da-aaad-91566edd8388" + ], + "Request-Id": [ + "aa221358-cdca-46da-aaad-91566edd8388" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 13:23:19 GMT" + ], + "Content-Length": [ + "1185" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "[\r\n {\r\n \"modelId\": \"7de1c115-4bee-4488-845c-bcc94b660082\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"1f65d5ab-3daf-44f5-af17-7cd6f3f4dcce\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"f3ff4992-88d3-45ef-a1ec-d0e77fa02df9\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"0da76691-d27b-435a-8318-062e6338f5e3\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"f3a9fbb1-ae4f-4fcb-962d-f1af369c0a1b\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"b70ce982-f1dc-4a20-a193-b3cac214af44\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"731e7ac1-b1d4-4e4e-bc1b-d79f67e2b890\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"abf20029-becf-4779-b8e9-8ced75f54163\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n }\r\n]", + "StatusCode": 200 + }, + { + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/train", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvdHJhaW4=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "Ocp-Apim-Subscription-Key": [ + "120f721e60454544a884022b1bc988a5" + ], + "User-Agent": [ + "FxVersion/4.6.27817.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-store, proxy-revalidate, no-cache, max-age=0, private" + ], + "Pragma": [ + "no-cache" + ], + "Apim-Request-Id": [ + "c19be7c4-87a2-49f0-be8a-198902cd49bf" + ], + "Request-Id": [ + "c19be7c4-87a2-49f0-be8a-198902cd49bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains; preload" + ], + "Request-Context": [ + "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 29 Oct 2019 13:23:21 GMT" + ], + "Content-Length": [ + "1249" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "[\r\n {\r\n \"modelId\": \"1f65d5ab-3daf-44f5-af17-7cd6f3f4dcce\",\r\n \"details\": {\r\n \"statusId\": 0,\r\n \"status\": \"Success\",\r\n \"exampleCount\": 607,\r\n \"trainingDateTime\": \"2019-10-29T13:23:16Z\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"731e7ac1-b1d4-4e4e-bc1b-d79f67e2b890\",\r\n \"details\": {\r\n \"statusId\": 0,\r\n \"status\": \"Success\",\r\n \"exampleCount\": 607,\r\n \"trainingDateTime\": \"2019-10-29T13:23:16Z\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"abf20029-becf-4779-b8e9-8ced75f54163\",\r\n \"details\": {\r\n \"statusId\": 0,\r\n \"status\": \"Success\",\r\n \"exampleCount\": 607,\r\n \"trainingDateTime\": \"2019-10-29T13:23:16Z\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"b70ce982-f1dc-4a20-a193-b3cac214af44\",\r\n \"details\": {\r\n \"statusId\": 0,\r\n \"status\": \"Success\",\r\n \"exampleCount\": 607,\r\n \"trainingDateTime\": \"2019-10-29T13:23:16Z\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"0da76691-d27b-435a-8318-062e6338f5e3\",\r\n \"details\": {\r\n \"statusId\": 0,\r\n \"status\": \"Success\",\r\n \"exampleCount\": 607,\r\n \"trainingDateTime\": \"2019-10-29T13:23:16Z\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"f3ff4992-88d3-45ef-a1ec-d0e77fa02df9\",\r\n \"details\": {\r\n \"statusId\": 0,\r\n \"status\": \"Success\",\r\n \"exampleCount\": 607,\r\n \"trainingDateTime\": \"2019-10-29T13:23:17Z\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"7de1c115-4bee-4488-845c-bcc94b660082\",\r\n \"details\": {\r\n \"statusId\": 0,\r\n \"status\": \"Success\",\r\n \"exampleCount\": 607,\r\n \"trainingDateTime\": \"2019-10-29T13:23:17Z\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"f3a9fbb1-ae4f-4fcb-962d-f1af369c0a1b\",\r\n \"details\": {\r\n \"statusId\": 0,\r\n \"status\": \"Success\",\r\n \"exampleCount\": 607,\r\n \"trainingDateTime\": \"2019-10-29T13:23:17Z\"\r\n }\r\n }\r\n]", "StatusCode": 200 } ], diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/TrainTests/TrainVersion.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/TrainTests/TrainVersion.json index b0c10c0dd38d..7ce007116ae0 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/TrainTests/TrainVersion.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/TrainTests/TrainVersion.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/train", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3RyYWlu", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/train", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvdHJhaW4=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -24,16 +24,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/train/" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/train/" ], "Apim-Request-Id": [ - "3159241f-82b6-4fbc-afc8-7441f984068a" + "68e95744-6069-45cc-a7ab-d757fcb2c8ba" ], "Request-Id": [ - "3159241f-82b6-4fbc-afc8-7441f984068a" + "68e95744-6069-45cc-a7ab-d757fcb2c8ba" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/train/" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/train/" ], "Access-Control-Expose-Headers": [ "Operation-Location" @@ -51,32 +51,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:00 GMT" + "Tue, 29 Oct 2019 13:23:21 GMT" ], "Content-Length": [ - "32" + "34" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"statusId\": 9,\r\n \"status\": \"Queued\"\r\n}", + "ResponseBody": "{\r\n \"statusId\": 2,\r\n \"status\": \"UpToDate\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/train", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3RyYWlu", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/train", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvdHJhaW4=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -87,16 +87,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/train/" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/train/" ], "Apim-Request-Id": [ - "7831a81c-4626-4f8a-8650-3ee111431207" + "03366e22-772e-4031-bcac-26d625506a16" ], "Request-Id": [ - "7831a81c-4626-4f8a-8650-3ee111431207" + "03366e22-772e-4031-bcac-26d625506a16" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/train/" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/train/" ], "Access-Control-Expose-Headers": [ "Operation-Location" @@ -114,7 +114,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:07 GMT" + "Tue, 29 Oct 2019 13:23:22 GMT" ], "Content-Length": [ "34" @@ -127,289 +127,19 @@ "StatusCode": 202 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/train", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3RyYWlu", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" - ], - "User-Agent": [ - "FxVersion/4.6.27617.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, proxy-revalidate, no-cache, max-age=0, private" - ], - "Pragma": [ - "no-cache" - ], - "Apim-Request-Id": [ - "df0b6f05-f7a2-44cf-8ce7-6f55aac26650" - ], - "Request-Id": [ - "df0b6f05-f7a2-44cf-8ce7-6f55aac26650" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains; preload" - ], - "Request-Context": [ - "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Sun, 25 Aug 2019 19:18:01 GMT" - ], - "Content-Length": [ - "223" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "[\r\n {\r\n \"modelId\": \"ac04c5c6-2c0c-4af8-ba3f-5db090fa7de5\",\r\n \"details\": {\r\n \"statusId\": 9,\r\n \"status\": \"Queued\",\r\n \"exampleCount\": 0\r\n }\r\n },\r\n {\r\n \"modelId\": \"eee1436a-701d-46c4-9e4b-6de52d641513\",\r\n \"details\": {\r\n \"statusId\": 9,\r\n \"status\": \"Queued\",\r\n \"exampleCount\": 0\r\n }\r\n }\r\n]", - "StatusCode": 200 - }, - { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/train", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3RyYWlu", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" - ], - "User-Agent": [ - "FxVersion/4.6.27617.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, proxy-revalidate, no-cache, max-age=0, private" - ], - "Pragma": [ - "no-cache" - ], - "Apim-Request-Id": [ - "1286f1d3-bcde-457d-ba7d-6f5d90a381c8" - ], - "Request-Id": [ - "1286f1d3-bcde-457d-ba7d-6f5d90a381c8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains; preload" - ], - "Request-Context": [ - "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Sun, 25 Aug 2019 19:18:02 GMT" - ], - "Content-Length": [ - "305" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "[\r\n {\r\n \"modelId\": \"ac04c5c6-2c0c-4af8-ba3f-5db090fa7de5\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"CollectingData\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"eee1436a-701d-46c4-9e4b-6de52d641513\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"CollectingData\"\r\n }\r\n }\r\n]", - "StatusCode": 200 - }, - { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/train", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3RyYWlu", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" - ], - "User-Agent": [ - "FxVersion/4.6.27617.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, proxy-revalidate, no-cache, max-age=0, private" - ], - "Pragma": [ - "no-cache" - ], - "Apim-Request-Id": [ - "a6b069bf-5c61-4365-8503-0e07dc1a4f2d" - ], - "Request-Id": [ - "a6b069bf-5c61-4365-8503-0e07dc1a4f2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains; preload" - ], - "Request-Context": [ - "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Sun, 25 Aug 2019 19:18:03 GMT" - ], - "Content-Length": [ - "305" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "[\r\n {\r\n \"modelId\": \"ac04c5c6-2c0c-4af8-ba3f-5db090fa7de5\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"CollectingData\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"eee1436a-701d-46c4-9e4b-6de52d641513\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"CollectingData\"\r\n }\r\n }\r\n]", - "StatusCode": 200 - }, - { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/train", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3RyYWlu", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" - ], - "User-Agent": [ - "FxVersion/4.6.27617.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, proxy-revalidate, no-cache, max-age=0, private" - ], - "Pragma": [ - "no-cache" - ], - "Apim-Request-Id": [ - "995326cd-8bc1-492d-95fa-6d8d79e2137a" - ], - "Request-Id": [ - "995326cd-8bc1-492d-95fa-6d8d79e2137a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains; preload" - ], - "Request-Context": [ - "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Sun, 25 Aug 2019 19:18:04 GMT" - ], - "Content-Length": [ - "297" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "[\r\n {\r\n \"modelId\": \"ac04c5c6-2c0c-4af8-ba3f-5db090fa7de5\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"eee1436a-701d-46c4-9e4b-6de52d641513\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n }\r\n]", - "StatusCode": 200 - }, - { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/train", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3RyYWlu", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" - ], - "User-Agent": [ - "FxVersion/4.6.27617.04", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-store, proxy-revalidate, no-cache, max-age=0, private" - ], - "Pragma": [ - "no-cache" - ], - "Apim-Request-Id": [ - "756f49bd-31a5-40ee-b045-5d1cbb8b5b8e" - ], - "Request-Id": [ - "756f49bd-31a5-40ee-b045-5d1cbb8b5b8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains; preload" - ], - "Request-Context": [ - "appId=cid-v1:26a3540d-a02a-4998-a060-715488fd769b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Sun, 25 Aug 2019 19:18:06 GMT" - ], - "Content-Length": [ - "297" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "[\r\n {\r\n \"modelId\": \"ac04c5c6-2c0c-4af8-ba3f-5db090fa7de5\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"eee1436a-701d-46c4-9e4b-6de52d641513\",\r\n \"details\": {\r\n \"statusId\": 3,\r\n \"status\": \"InProgress\",\r\n \"exampleCount\": 0,\r\n \"progressSubstatus\": \"InProgress\"\r\n }\r\n }\r\n]", - "StatusCode": 200 - }, - { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/train", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL3RyYWlu", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/train", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvdHJhaW4=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -420,10 +150,10 @@ "no-cache" ], "Apim-Request-Id": [ - "aad23782-d274-4fc2-b7a4-97917a3e839c" + "590c521e-6d26-4408-8b72-ef6910558a8c" ], "Request-Id": [ - "aad23782-d274-4fc2-b7a4-97917a3e839c" + "590c521e-6d26-4408-8b72-ef6910558a8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -438,16 +168,16 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:18:07 GMT" + "Tue, 29 Oct 2019 13:23:22 GMT" ], "Content-Length": [ - "313" + "921" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"modelId\": \"ac04c5c6-2c0c-4af8-ba3f-5db090fa7de5\",\r\n \"details\": {\r\n \"statusId\": 0,\r\n \"status\": \"Success\",\r\n \"exampleCount\": 474,\r\n \"trainingDateTime\": \"2019-08-25T19:18:05Z\"\r\n }\r\n },\r\n {\r\n \"modelId\": \"eee1436a-701d-46c4-9e4b-6de52d641513\",\r\n \"details\": {\r\n \"statusId\": 0,\r\n \"status\": \"Success\",\r\n \"exampleCount\": 474,\r\n \"trainingDateTime\": \"2019-08-25T19:18:05Z\"\r\n }\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"modelId\": \"7de1c115-4bee-4488-845c-bcc94b660082\",\r\n \"details\": {\r\n \"statusId\": 2,\r\n \"status\": \"UpToDate\",\r\n \"exampleCount\": 607\r\n }\r\n },\r\n {\r\n \"modelId\": \"1f65d5ab-3daf-44f5-af17-7cd6f3f4dcce\",\r\n \"details\": {\r\n \"statusId\": 2,\r\n \"status\": \"UpToDate\",\r\n \"exampleCount\": 607\r\n }\r\n },\r\n {\r\n \"modelId\": \"f3ff4992-88d3-45ef-a1ec-d0e77fa02df9\",\r\n \"details\": {\r\n \"statusId\": 2,\r\n \"status\": \"UpToDate\",\r\n \"exampleCount\": 607\r\n }\r\n },\r\n {\r\n \"modelId\": \"0da76691-d27b-435a-8318-062e6338f5e3\",\r\n \"details\": {\r\n \"statusId\": 2,\r\n \"status\": \"UpToDate\",\r\n \"exampleCount\": 607\r\n }\r\n },\r\n {\r\n \"modelId\": \"f3a9fbb1-ae4f-4fcb-962d-f1af369c0a1b\",\r\n \"details\": {\r\n \"statusId\": 2,\r\n \"status\": \"UpToDate\",\r\n \"exampleCount\": 607\r\n }\r\n },\r\n {\r\n \"modelId\": \"b70ce982-f1dc-4a20-a193-b3cac214af44\",\r\n \"details\": {\r\n \"statusId\": 2,\r\n \"status\": \"UpToDate\",\r\n \"exampleCount\": 607\r\n }\r\n },\r\n {\r\n \"modelId\": \"731e7ac1-b1d4-4e4e-bc1b-d79f67e2b890\",\r\n \"details\": {\r\n \"statusId\": 2,\r\n \"status\": \"UpToDate\",\r\n \"exampleCount\": 607\r\n }\r\n },\r\n {\r\n \"modelId\": \"abf20029-becf-4779-b8e9-8ced75f54163\",\r\n \"details\": {\r\n \"statusId\": 2,\r\n \"status\": \"UpToDate\",\r\n \"exampleCount\": 607\r\n }\r\n }\r\n]", "StatusCode": 200 } ], diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/CloneVersion.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/CloneVersion.json index 2a67497e9d53..06d0861f1bd8 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/CloneVersion.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/CloneVersion.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -24,10 +24,10 @@ "no-cache" ], "Apim-Request-Id": [ - "21b0ce0e-e034-4a7c-97d8-77aa13ab6528" + "878f8db0-1e03-47ac-8603-f679aa4fd970" ], "Request-Id": [ - "21b0ce0e-e034-4a7c-97d8-77aa13ab6528" + "878f8db0-1e03-47ac-8603-f679aa4fd970" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -42,32 +42,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:48 GMT" + "Tue, 29 Oct 2019 13:23:31 GMT" ], "Content-Length": [ - "357" + "351" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-08-25T18:00:46Z\",\r\n \"lastModifiedDateTime\": \"2019-08-25T19:16:12Z\",\r\n \"lastTrainedDateTime\": \"2019-08-25T18:38:34Z\",\r\n \"lastPublishedDateTime\": \"2019-08-25T19:16:38Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 2,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-10-28T16:56:16Z\",\r\n \"lastModifiedDateTime\": \"2019-10-29T13:23:21Z\",\r\n \"lastTrainedDateTime\": \"2019-10-29T13:23:22Z\",\r\n \"lastPublishedDateTime\": \"2019-10-29T13:17:03Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 3,\r\n \"entitiesCount\": 5,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"Trained\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -78,10 +78,10 @@ "no-cache" ], "Apim-Request-Id": [ - "0a06affb-c4c6-49f0-9fd4-23e708693635" + "82042b28-5d2e-4c81-b60d-e25d32164a5a" ], "Request-Id": [ - "0a06affb-c4c6-49f0-9fd4-23e708693635" + "82042b28-5d2e-4c81-b60d-e25d32164a5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -96,32 +96,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:49 GMT" + "Tue, 29 Oct 2019 13:23:38 GMT" ], "Content-Length": [ - "696" + "684" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"version\": \"test\",\r\n \"createdDateTime\": \"2019-08-25T19:16:49Z\",\r\n \"lastModifiedDateTime\": \"2019-08-25T19:16:49Z\",\r\n \"lastTrainedDateTime\": \"2019-08-25T18:38:34Z\",\r\n \"lastPublishedDateTime\": null,\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 2,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n },\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-08-25T18:00:46Z\",\r\n \"lastModifiedDateTime\": \"2019-08-25T19:16:12Z\",\r\n \"lastTrainedDateTime\": \"2019-08-25T18:38:34Z\",\r\n \"lastPublishedDateTime\": \"2019-08-25T19:16:38Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 2,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"version\": \"test\",\r\n \"createdDateTime\": \"2019-10-29T13:23:32Z\",\r\n \"lastModifiedDateTime\": \"2019-10-29T13:23:37Z\",\r\n \"lastTrainedDateTime\": \"2019-10-29T13:23:22Z\",\r\n \"lastPublishedDateTime\": null,\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 3,\r\n \"entitiesCount\": 5,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"Trained\"\r\n },\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-10-28T16:56:16Z\",\r\n \"lastModifiedDateTime\": \"2019-10-29T13:23:21Z\",\r\n \"lastTrainedDateTime\": \"2019-10-29T13:23:22Z\",\r\n \"lastPublishedDateTime\": \"2019-10-29T13:17:03Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 3,\r\n \"entitiesCount\": 5,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"Trained\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/clone", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb25l", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/clone", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvbmU=", "RequestMethod": "POST", "RequestBody": "{\r\n \"version\": \"test\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -138,16 +138,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/test" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/test" ], "Apim-Request-Id": [ - "2499df80-662f-4016-91a4-1f29236ee7b0" + "6ab4be6d-51f2-4928-9ec2-b7dd864d309c" ], "Request-Id": [ - "2499df80-662f-4016-91a4-1f29236ee7b0" + "6ab4be6d-51f2-4928-9ec2-b7dd864d309c" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/test" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/test" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -162,7 +162,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:49 GMT" + "Tue, 29 Oct 2019 13:23:38 GMT" ], "Content-Length": [ "6" @@ -175,19 +175,19 @@ "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/test/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvdGVzdC8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/test/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy90ZXN0Lw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -198,10 +198,10 @@ "no-cache" ], "Apim-Request-Id": [ - "dde3cda2-802f-429f-8ca8-c1969cd03f82" + "a8992b68-6315-43d5-803a-3e7ec2741439" ], "Request-Id": [ - "dde3cda2-802f-429f-8ca8-c1969cd03f82" + "a8992b68-6315-43d5-803a-3e7ec2741439" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -216,7 +216,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:49 GMT" + "Tue, 29 Oct 2019 13:23:38 GMT" ], "Content-Length": [ "0" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/CloneVersion_ErrorModel.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/CloneVersion_ErrorModel.json index a7f02d6b31c0..db7cdf337815 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/CloneVersion_ErrorModel.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/CloneVersion_ErrorModel.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -24,10 +24,10 @@ "no-cache" ], "Apim-Request-Id": [ - "f2e6ebb8-2195-47f8-942c-717a1d3b8ac9" + "c561102e-5f5a-4f5c-a470-088442a9c0af" ], "Request-Id": [ - "f2e6ebb8-2195-47f8-942c-717a1d3b8ac9" + "c561102e-5f5a-4f5c-a470-088442a9c0af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -42,32 +42,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:56 GMT" + "Tue, 29 Oct 2019 13:23:46 GMT" ], "Content-Length": [ - "357" + "351" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-08-25T18:00:46Z\",\r\n \"lastModifiedDateTime\": \"2019-08-25T19:16:55Z\",\r\n \"lastTrainedDateTime\": \"2019-08-25T18:38:34Z\",\r\n \"lastPublishedDateTime\": \"2019-08-25T19:16:38Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 2,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-10-28T16:56:16Z\",\r\n \"lastModifiedDateTime\": \"2019-10-29T13:23:40Z\",\r\n \"lastTrainedDateTime\": \"2019-10-29T13:23:22Z\",\r\n \"lastPublishedDateTime\": \"2019-10-29T13:17:03Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 3,\r\n \"entitiesCount\": 5,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"Trained\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/clone", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb25l", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/clone", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvbmU=", "RequestMethod": "POST", "RequestBody": "{\r\n \"version\": \"\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -84,10 +84,10 @@ "no-cache" ], "Apim-Request-Id": [ - "7bd1cec6-56c1-49ea-ba8e-b1234b841ea3" + "21128be2-f193-4faa-a98a-8c63700e839f" ], "Request-Id": [ - "7bd1cec6-56c1-49ea-ba8e-b1234b841ea3" + "21128be2-f193-4faa-a98a-8c63700e839f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -102,7 +102,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:57 GMT" + "Tue, 29 Oct 2019 13:23:46 GMT" ], "Content-Length": [ "121" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/DeleteVersion.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/DeleteVersion.json index a7364e5e780f..bc123739f625 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/DeleteVersion.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/DeleteVersion.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -24,10 +24,10 @@ "no-cache" ], "Apim-Request-Id": [ - "262cc8ca-52f2-4edf-a76f-94cf15a4aaf9" + "ab5ab017-80fb-4360-839d-9faab9fc9b4f" ], "Request-Id": [ - "262cc8ca-52f2-4edf-a76f-94cf15a4aaf9" + "ab5ab017-80fb-4360-839d-9faab9fc9b4f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -42,32 +42,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:00 GMT" + "Tue, 29 Oct 2019 13:23:24 GMT" ], "Content-Length": [ - "357" + "351" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-08-25T18:00:46Z\",\r\n \"lastModifiedDateTime\": \"2019-08-25T19:16:55Z\",\r\n \"lastTrainedDateTime\": \"2019-08-25T18:38:34Z\",\r\n \"lastPublishedDateTime\": \"2019-08-25T19:16:38Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 2,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-10-28T16:56:16Z\",\r\n \"lastModifiedDateTime\": \"2019-10-29T13:23:21Z\",\r\n \"lastTrainedDateTime\": \"2019-10-29T13:23:22Z\",\r\n \"lastPublishedDateTime\": \"2019-10-29T13:17:03Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 3,\r\n \"entitiesCount\": 5,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"Trained\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -78,10 +78,10 @@ "no-cache" ], "Apim-Request-Id": [ - "591d7918-6207-4220-891f-a17f5bff0690" + "a908bcbc-02fc-4b05-a4d4-170b596886a4" ], "Request-Id": [ - "591d7918-6207-4220-891f-a17f5bff0690" + "a908bcbc-02fc-4b05-a4d4-170b596886a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -96,32 +96,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:00 GMT" + "Tue, 29 Oct 2019 13:23:30 GMT" ], "Content-Length": [ - "696" + "684" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"version\": \"test\",\r\n \"createdDateTime\": \"2019-08-25T19:17:00Z\",\r\n \"lastModifiedDateTime\": \"2019-08-25T19:17:01Z\",\r\n \"lastTrainedDateTime\": \"2019-08-25T18:38:34Z\",\r\n \"lastPublishedDateTime\": null,\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 2,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n },\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-08-25T18:00:46Z\",\r\n \"lastModifiedDateTime\": \"2019-08-25T19:16:55Z\",\r\n \"lastTrainedDateTime\": \"2019-08-25T18:38:34Z\",\r\n \"lastPublishedDateTime\": \"2019-08-25T19:16:38Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 2,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"version\": \"test\",\r\n \"createdDateTime\": \"2019-10-29T13:23:24Z\",\r\n \"lastModifiedDateTime\": \"2019-10-29T13:23:28Z\",\r\n \"lastTrainedDateTime\": \"2019-10-29T13:23:22Z\",\r\n \"lastPublishedDateTime\": null,\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 3,\r\n \"entitiesCount\": 5,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"Trained\"\r\n },\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-10-28T16:56:16Z\",\r\n \"lastModifiedDateTime\": \"2019-10-29T13:23:21Z\",\r\n \"lastTrainedDateTime\": \"2019-10-29T13:23:22Z\",\r\n \"lastPublishedDateTime\": \"2019-10-29T13:17:03Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 3,\r\n \"entitiesCount\": 5,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"Trained\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -132,10 +132,10 @@ "no-cache" ], "Apim-Request-Id": [ - "6f564afb-58d5-4248-aee6-90a01ddc482b" + "04609af3-33f2-411e-a818-27c22855844a" ], "Request-Id": [ - "6f564afb-58d5-4248-aee6-90a01ddc482b" + "04609af3-33f2-411e-a818-27c22855844a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -150,32 +150,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:01 GMT" + "Tue, 29 Oct 2019 13:23:30 GMT" ], "Content-Length": [ - "357" + "351" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-08-25T18:00:46Z\",\r\n \"lastModifiedDateTime\": \"2019-08-25T19:16:55Z\",\r\n \"lastTrainedDateTime\": \"2019-08-25T18:38:34Z\",\r\n \"lastPublishedDateTime\": \"2019-08-25T19:16:38Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 2,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-10-28T16:56:16Z\",\r\n \"lastModifiedDateTime\": \"2019-10-29T13:23:21Z\",\r\n \"lastTrainedDateTime\": \"2019-10-29T13:23:22Z\",\r\n \"lastPublishedDateTime\": \"2019-10-29T13:17:03Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 3,\r\n \"entitiesCount\": 5,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"Trained\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/clone", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xL2Nsb25l", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/clone", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEvY2xvbmU=", "RequestMethod": "POST", "RequestBody": "{\r\n \"version\": \"test\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -192,16 +192,16 @@ "no-cache" ], "Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/test" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/test" ], "Apim-Request-Id": [ - "09d4ca02-8761-43a5-9cfe-084a996a6135" + "3ccedb46-5ac0-4a9e-8554-43127ac814b9" ], "Request-Id": [ - "09d4ca02-8761-43a5-9cfe-084a996a6135" + "3ccedb46-5ac0-4a9e-8554-43127ac814b9" ], "Operation-Location": [ - "https://westus.api.cognitive.microsoft.com/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/test" + "https://westus.api.cognitive.microsoft.com/luis/api/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/test" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -216,7 +216,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:00 GMT" + "Tue, 29 Oct 2019 13:23:29 GMT" ], "Content-Length": [ "6" @@ -229,19 +229,19 @@ "StatusCode": 201 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/test/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvdGVzdC8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/test/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy90ZXN0Lw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -252,10 +252,10 @@ "no-cache" ], "Apim-Request-Id": [ - "aeddc94a-ffd8-4714-b5ad-eb1a8e391101" + "1a125a35-e9c7-4d5b-b043-c462edb15db2" ], "Request-Id": [ - "aeddc94a-ffd8-4714-b5ad-eb1a8e391101" + "1a125a35-e9c7-4d5b-b043-c462edb15db2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -270,7 +270,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:17:01 GMT" + "Tue, 29 Oct 2019 13:23:30 GMT" ], "Content-Length": [ "0" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/DeleteVersion_ErrorModel.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/DeleteVersion_ErrorModel.json index 60f1ad572261..978d9ec65662 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/DeleteVersion_ErrorModel.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/DeleteVersion_ErrorModel.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -24,10 +24,10 @@ "no-cache" ], "Apim-Request-Id": [ - "fb1063a4-f7c1-4f85-bba8-020470793c9a" + "e00162aa-64ab-411b-b228-841c8e040705" ], "Request-Id": [ - "fb1063a4-f7c1-4f85-bba8-020470793c9a" + "e00162aa-64ab-411b-b228-841c8e040705" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -42,32 +42,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:51 GMT" + "Tue, 29 Oct 2019 13:23:42 GMT" ], "Content-Length": [ - "357" + "351" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-08-25T18:00:46Z\",\r\n \"lastModifiedDateTime\": \"2019-08-25T19:16:12Z\",\r\n \"lastTrainedDateTime\": \"2019-08-25T18:38:34Z\",\r\n \"lastPublishedDateTime\": \"2019-08-25T19:16:38Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 2,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-10-28T16:56:16Z\",\r\n \"lastModifiedDateTime\": \"2019-10-29T13:23:40Z\",\r\n \"lastTrainedDateTime\": \"2019-10-29T13:23:22Z\",\r\n \"lastPublishedDateTime\": \"2019-10-29T13:17:03Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 3,\r\n \"entitiesCount\": 5,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"Trained\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.10/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xMC8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.10/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEwLw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -78,10 +78,10 @@ "no-cache" ], "Apim-Request-Id": [ - "f6b041dc-9d3a-45fb-9c63-b1f678ad9698" + "6cebe9c9-d660-4b8c-b4f4-dcd96b385103" ], "Request-Id": [ - "f6b041dc-9d3a-45fb-9c63-b1f678ad9698" + "6cebe9c9-d660-4b8c-b4f4-dcd96b385103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -96,7 +96,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:51 GMT" + "Tue, 29 Oct 2019 13:23:42 GMT" ], "Content-Length": [ "134" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/GetVersion.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/GetVersion.json index 24deae365b2b..b700c515b820 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/GetVersion.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/GetVersion.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -24,10 +24,10 @@ "no-cache" ], "Apim-Request-Id": [ - "0f0bfd65-a148-4da0-8464-8d447fb29b99" + "ed4f5d67-b03d-43b6-9bc0-a7bc67e9537f" ], "Request-Id": [ - "0f0bfd65-a148-4da0-8464-8d447fb29b99" + "ed4f5d67-b03d-43b6-9bc0-a7bc67e9537f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -42,32 +42,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:57 GMT" + "Tue, 29 Oct 2019 13:23:41 GMT" ], "Content-Length": [ - "357" + "351" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-08-25T18:00:46Z\",\r\n \"lastModifiedDateTime\": \"2019-08-25T19:16:55Z\",\r\n \"lastTrainedDateTime\": \"2019-08-25T18:38:34Z\",\r\n \"lastPublishedDateTime\": \"2019-08-25T19:16:38Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 2,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-10-28T16:56:16Z\",\r\n \"lastModifiedDateTime\": \"2019-10-29T13:23:40Z\",\r\n \"lastTrainedDateTime\": \"2019-10-29T13:23:22Z\",\r\n \"lastPublishedDateTime\": \"2019-10-29T13:17:03Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 3,\r\n \"entitiesCount\": 5,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"Trained\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xLw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEv", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -78,10 +78,10 @@ "no-cache" ], "Apim-Request-Id": [ - "14a895b7-8068-40c8-bbd1-be9480b7a3eb" + "f87b22c3-58cd-4078-b607-9d4abebfe125" ], "Request-Id": [ - "14a895b7-8068-40c8-bbd1-be9480b7a3eb" + "f87b22c3-58cd-4078-b607-9d4abebfe125" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -96,16 +96,16 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:57 GMT" + "Tue, 29 Oct 2019 13:23:41 GMT" ], "Content-Length": [ - "355" + "349" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-08-25T18:00:46Z\",\r\n \"lastModifiedDateTime\": \"2019-08-25T19:16:55Z\",\r\n \"lastTrainedDateTime\": \"2019-08-25T18:38:34Z\",\r\n \"lastPublishedDateTime\": \"2019-08-25T19:16:38Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 2,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n}", + "ResponseBody": "{\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-10-28T16:56:16Z\",\r\n \"lastModifiedDateTime\": \"2019-10-29T13:23:40Z\",\r\n \"lastTrainedDateTime\": \"2019-10-29T13:23:22Z\",\r\n \"lastPublishedDateTime\": \"2019-10-29T13:17:03Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 3,\r\n \"entitiesCount\": 5,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"Trained\"\r\n}", "StatusCode": 200 } ], diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/GetVersion_ErrorVersion.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/GetVersion_ErrorVersion.json index baeacfe1d86e..12dddf08d37d 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/GetVersion_ErrorVersion.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/GetVersion_ErrorVersion.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -24,10 +24,10 @@ "no-cache" ], "Apim-Request-Id": [ - "7e4d71bd-0ce9-4f36-8291-d3c289fbac3b" + "bea3eeea-07a6-4a79-a95f-45ea79338d2d" ], "Request-Id": [ - "7e4d71bd-0ce9-4f36-8291-d3c289fbac3b" + "bea3eeea-07a6-4a79-a95f-45ea79338d2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -42,32 +42,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:55 GMT" + "Tue, 29 Oct 2019 13:23:44 GMT" ], "Content-Length": [ - "357" + "351" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-08-25T18:00:46Z\",\r\n \"lastModifiedDateTime\": \"2019-08-25T19:16:55Z\",\r\n \"lastTrainedDateTime\": \"2019-08-25T18:38:34Z\",\r\n \"lastPublishedDateTime\": \"2019-08-25T19:16:38Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 2,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-10-28T16:56:16Z\",\r\n \"lastModifiedDateTime\": \"2019-10-29T13:23:40Z\",\r\n \"lastTrainedDateTime\": \"2019-10-29T13:23:22Z\",\r\n \"lastPublishedDateTime\": \"2019-10-29T13:17:03Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 3,\r\n \"entitiesCount\": 5,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"Trained\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1_/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xXy8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1_/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjFfLw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -78,10 +78,10 @@ "no-cache" ], "Apim-Request-Id": [ - "54679503-ead1-4bb8-b186-d5ab350cb6a0" + "1aa5fc68-088e-45c5-b818-67e56b028d5e" ], "Request-Id": [ - "54679503-ead1-4bb8-b186-d5ab350cb6a0" + "1aa5fc68-088e-45c5-b818-67e56b028d5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -96,7 +96,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:55 GMT" + "Tue, 29 Oct 2019 13:23:44 GMT" ], "Content-Length": [ "134" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/ListVersions.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/ListVersions.json index f082aa6e073b..a9d1e5382f0e 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/ListVersions.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/ListVersions.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -24,10 +24,10 @@ "no-cache" ], "Apim-Request-Id": [ - "8fcb8d92-9be4-46f2-b469-c88b68c017ee" + "7a72f073-def6-4c09-9c89-4b9a7c6e4435" ], "Request-Id": [ - "8fcb8d92-9be4-46f2-b469-c88b68c017ee" + "7a72f073-def6-4c09-9c89-4b9a7c6e4435" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -42,16 +42,16 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:58 GMT" + "Tue, 29 Oct 2019 13:23:31 GMT" ], "Content-Length": [ - "357" + "351" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-08-25T18:00:46Z\",\r\n \"lastModifiedDateTime\": \"2019-08-25T19:16:55Z\",\r\n \"lastTrainedDateTime\": \"2019-08-25T18:38:34Z\",\r\n \"lastPublishedDateTime\": \"2019-08-25T19:16:38Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 2,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-10-28T16:56:16Z\",\r\n \"lastModifiedDateTime\": \"2019-10-29T13:23:21Z\",\r\n \"lastTrainedDateTime\": \"2019-10-29T13:23:22Z\",\r\n \"lastPublishedDateTime\": \"2019-10-29T13:17:03Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 3,\r\n \"entitiesCount\": 5,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"Trained\"\r\n }\r\n]", "StatusCode": 200 } ], diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/ListVersions_ErrorAppId.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/ListVersions_ErrorAppId.json index 9ef8444bc21c..2c60dea68f78 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/ListVersions_ErrorAppId.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/ListVersions_ErrorAppId.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/86226c53-b7a6-416f-876b-226b2b5ab07d/versions?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy84NjIyNmM1My1iN2E2LTQxNmYtODc2Yi0yMjZiMmI1YWIwN2QvdmVyc2lvbnM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/86226c53-b7a6-416f-876b-226b2b5ab07d/versions?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzg2MjI2YzUzLWI3YTYtNDE2Zi04NzZiLTIyNmIyYjVhYjA3ZC92ZXJzaW9ucz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -24,10 +24,10 @@ "no-cache" ], "Apim-Request-Id": [ - "172006c3-31bf-4135-a1cd-28d3a7fd5cc0" + "c947c9d7-560d-4add-bf67-a3e1eb67e34f" ], "Request-Id": [ - "172006c3-31bf-4135-a1cd-28d3a7fd5cc0" + "c947c9d7-560d-4add-bf67-a3e1eb67e34f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -42,7 +42,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:52 GMT" + "Tue, 29 Oct 2019 13:23:46 GMT" ], "Content-Length": [ "146" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/ListVersions_ErrorSubscriptionKey.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/ListVersions_ErrorSubscriptionKey.json index ef2fc358afca..09da6679ce53 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/ListVersions_ErrorSubscriptionKey.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/ListVersions_ErrorSubscriptionKey.json @@ -1,25 +1,25 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ "3eff76bb229942899255402725b72933", - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { "Date": [ - "Sun, 25 Aug 2019 19:16:59 GMT" + "Tue, 29 Oct 2019 13:23:42 GMT" ], "Content-Length": [ "224" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/UpdateVersion.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/UpdateVersion.json index 8ccbba1df01c..34d4f21d2755 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/UpdateVersion.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/UpdateVersion.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -24,10 +24,10 @@ "no-cache" ], "Apim-Request-Id": [ - "69a6cfc3-6565-41ae-9024-9675294d9f53" + "69d1a650-e8cd-4a32-87a7-86b89999bd57" ], "Request-Id": [ - "69a6cfc3-6565-41ae-9024-9675294d9f53" + "69d1a650-e8cd-4a32-87a7-86b89999bd57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -42,32 +42,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:53 GMT" + "Tue, 29 Oct 2019 13:23:39 GMT" ], "Content-Length": [ - "357" + "351" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-08-25T18:00:46Z\",\r\n \"lastModifiedDateTime\": \"2019-08-25T19:16:12Z\",\r\n \"lastTrainedDateTime\": \"2019-08-25T18:38:34Z\",\r\n \"lastPublishedDateTime\": \"2019-08-25T19:16:38Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 2,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-10-28T16:56:16Z\",\r\n \"lastModifiedDateTime\": \"2019-10-29T13:23:21Z\",\r\n \"lastTrainedDateTime\": \"2019-10-29T13:23:22Z\",\r\n \"lastPublishedDateTime\": \"2019-10-29T13:17:03Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 3,\r\n \"entitiesCount\": 5,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"Trained\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -78,10 +78,10 @@ "no-cache" ], "Apim-Request-Id": [ - "4b6de9b5-28e7-4d62-9d73-927ed7d39c47" + "3d5c024b-9128-4452-b274-bace13c96882" ], "Request-Id": [ - "4b6de9b5-28e7-4d62-9d73-927ed7d39c47" + "3d5c024b-9128-4452-b274-bace13c96882" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -96,32 +96,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:54 GMT" + "Tue, 29 Oct 2019 13:23:40 GMT" ], "Content-Length": [ - "358" + "352" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"version\": \"test\",\r\n \"createdDateTime\": \"2019-08-25T18:00:46Z\",\r\n \"lastModifiedDateTime\": \"2019-08-25T19:16:54Z\",\r\n \"lastTrainedDateTime\": \"2019-08-25T18:38:34Z\",\r\n \"lastPublishedDateTime\": \"2019-08-25T19:16:38Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 2,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"version\": \"test\",\r\n \"createdDateTime\": \"2019-10-28T16:56:16Z\",\r\n \"lastModifiedDateTime\": \"2019-10-29T13:23:40Z\",\r\n \"lastTrainedDateTime\": \"2019-10-29T13:23:22Z\",\r\n \"lastPublishedDateTime\": \"2019-10-29T13:17:03Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 3,\r\n \"entitiesCount\": 5,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"Trained\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xLw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEv", "RequestMethod": "PUT", "RequestBody": "{\r\n \"version\": \"test\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -138,10 +138,10 @@ "no-cache" ], "Apim-Request-Id": [ - "155243f3-bd8c-4871-8ab5-85394f36f433" + "e1aeea9b-3625-48ac-b47f-4eeace5ca08f" ], "Request-Id": [ - "155243f3-bd8c-4871-8ab5-85394f36f433" + "e1aeea9b-3625-48ac-b47f-4eeace5ca08f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -156,7 +156,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:54 GMT" + "Tue, 29 Oct 2019 13:23:40 GMT" ], "Content-Length": [ "0" @@ -166,19 +166,19 @@ "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/test/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvdGVzdC8=", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/test/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy90ZXN0Lw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"version\": \"0.1\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,10 +195,10 @@ "no-cache" ], "Apim-Request-Id": [ - "8fb7d344-43a6-4d64-9cb0-01a97e549423" + "c25f6c70-8252-4264-983c-37cca51defbd" ], "Request-Id": [ - "8fb7d344-43a6-4d64-9cb0-01a97e549423" + "c25f6c70-8252-4264-983c-37cca51defbd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -213,7 +213,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:54 GMT" + "Tue, 29 Oct 2019 13:23:40 GMT" ], "Content-Length": [ "0" diff --git a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/UpdateVersion_ErrorModel.json b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/UpdateVersion_ErrorModel.json index 098e21b7d5d9..b8a8621fee59 100644 --- a/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/UpdateVersion_ErrorModel.json +++ b/sdk/cognitiveservices/Language.LUIS.Authoring/tests/SessionRecords/VersionsTests/UpdateVersion_ErrorModel.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions?skip=0&take=100", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnM/c2tpcD0wJnRha2U9MTAw", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions?skip=0&take=100", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucz9za2lwPTAmdGFrZT0xMDA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ] }, "ResponseHeaders": { @@ -24,10 +24,10 @@ "no-cache" ], "Apim-Request-Id": [ - "86ba4cda-b793-4c67-b268-2003bc024577" + "0078a277-ec89-4141-981d-3880b79e5f48" ], "Request-Id": [ - "86ba4cda-b793-4c67-b268-2003bc024577" + "0078a277-ec89-4141-981d-3880b79e5f48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -42,32 +42,32 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:50 GMT" + "Tue, 29 Oct 2019 13:23:44 GMT" ], "Content-Length": [ - "357" + "351" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-08-25T18:00:46Z\",\r\n \"lastModifiedDateTime\": \"2019-08-25T19:16:12Z\",\r\n \"lastTrainedDateTime\": \"2019-08-25T18:38:34Z\",\r\n \"lastPublishedDateTime\": \"2019-08-25T19:16:38Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 2,\r\n \"entitiesCount\": 0,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"NeedsTraining\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"version\": \"0.1\",\r\n \"createdDateTime\": \"2019-10-28T16:56:16Z\",\r\n \"lastModifiedDateTime\": \"2019-10-29T13:23:40Z\",\r\n \"lastTrainedDateTime\": \"2019-10-29T13:23:22Z\",\r\n \"lastPublishedDateTime\": \"2019-10-29T13:17:03Z\",\r\n \"endpointUrl\": null,\r\n \"assignedEndpointKey\": null,\r\n \"externalApiKeys\": null,\r\n \"intentsCount\": 3,\r\n \"entitiesCount\": 5,\r\n \"endpointHitsCount\": 0,\r\n \"trainingStatus\": \"Trained\"\r\n }\r\n]", "StatusCode": 200 }, { - "RequestUri": "/luis/api/v2.0/apps/3327b33c-35df-40d0-a661-c9ade29da239/versions/0.1/", - "EncodedRequestUri": "L2x1aXMvYXBpL3YyLjAvYXBwcy8zMzI3YjMzYy0zNWRmLTQwZDAtYTY2MS1jOWFkZTI5ZGEyMzkvdmVyc2lvbnMvMC4xLw==", + "RequestUri": "/luis/authoring/v3.0-preview/apps/6c859d36-47a0-4dd9-a2ab-7817e211646b/versions/0.1/", + "EncodedRequestUri": "L2x1aXMvYXV0aG9yaW5nL3YzLjAtcHJldmlldy9hcHBzLzZjODU5ZDM2LTQ3YTAtNGRkOS1hMmFiLTc4MTdlMjExNjQ2Yi92ZXJzaW9ucy8wLjEv", "RequestMethod": "PUT", "RequestBody": "{\r\n \"version\": \"\"\r\n}", "RequestHeaders": { "Ocp-Apim-Subscription-Key": [ - "62b834e0069943d9b035f32abd230359" + "120f721e60454544a884022b1bc988a5" ], "User-Agent": [ - "FxVersion/4.6.27617.04", + "FxVersion/4.6.27817.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18362.", - "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.1.0.0" + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.CognitiveServices.Language.LUIS.Authoring.LUISAuthoringClient/3.8.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -84,10 +84,10 @@ "no-cache" ], "Apim-Request-Id": [ - "bbb6f490-6cad-4f67-833a-fb8b39222c99" + "7b88d5ae-67b7-4a2e-aa81-db22e231fcc0" ], "Request-Id": [ - "bbb6f490-6cad-4f67-833a-fb8b39222c99" + "7b88d5ae-67b7-4a2e-aa81-db22e231fcc0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains; preload" @@ -102,7 +102,7 @@ "SAMEORIGIN" ], "Date": [ - "Sun, 25 Aug 2019 19:16:51 GMT" + "Tue, 29 Oct 2019 13:23:45 GMT" ], "Content-Length": [ "121"