Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ using Language.Conversations.Authoring;
using Azure.ClientGenerator.Core;
using Versioning;

@useDependency(Language.Conversations.Authoring.Versions.v2025_05_15_preview)
@useDependency(Language.Conversations.Authoring.Versions.v2025_11_15_preview)
namespace Language.ConversationsAuthoringClientCustomizations;

@@clientName(conversationAuthoringListDeployments, "listDeployments");
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"operationId": "ConversationAuthoringProject_AssignProjectResources",
"title": "Successful Assign Project Resources",
"parameters": {
"Endpoint": "{Endpoint}",
"Ocp-Apim-Subscription-Key": "{API key}",
"api-version": "2025-11-01",
"projectName": "EmailApp",
"body": {
"projectResources": [
{
"azureResourceId": "/subscriptions/8ff19748-59ed-4e8a-af4b-7ce285849735/resourceGroups/test-rg/providers/Microsoft.CognitiveServices/accounts/LangTestWeu",
"customDomain": "lang-test-weu.cognitiveservices.azure.com",
"region": "westeurope"
},
{
"azureResourceId": "/subscriptions/8ff19748-59ed-4e8a-af4b-7ce285849735/resourceGroups/test-rg/providers/Microsoft.CognitiveServices/accounts/LangTestEus",
"customDomain": "lang-test-eus.cognitiveservices.azure.com",
"region": "eastus"
}
]
}
},
"responses": {
"202": {
"headers": {
"operation-location": "{Endpoint}/language/authoring/analyze-conversations/projects/EmailApp/resources/assign/jobs/66fa9a67-a561-42f1-8a13-f3a879b1a324_637858368000000000?api-version=2025-11-01"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"operationId": "ConversationAuthoringProject_CancelTrainingJob",
"title": "Successful Cancel Training Job",
"parameters": {
"Endpoint": "{Endpoint}",
"Ocp-Apim-Subscription-Key": "{API key}",
"api-version": "2025-11-01",
"projectName": "EmailApp",
"jobId": "8ccf2ffe-e758-4d04-a44a-31512918c7e8_637858368000000000"
},
"responses": {
"202": {
"headers": {
"operation-location": "{Endpoint}/language/authoring/analyze-conversations/projects/EmailApp/train/jobs/4d37982f-fded-4c2c-afe3-15953b5919b6_637858368000000000?api-version=2025-11-01"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"operationId": "ConversationAuthoringProject_CreateProject",
"title": "Successful Create Project",
"parameters": {
"Endpoint": "{Endpoint}",
"Ocp-Apim-Subscription-Key": "{API key}",
"Content-Type": "application/merge-patch+json",
"api-version": "2025-11-01",
"projectName": "myproject",
"body": {
"projectName": "myproject",
"language": "en",
"projectKind": "Conversation",
"description": "This is a sample conversation project.",
"multilingual": false
}
},
"responses": {
"201": {
"headers": {},
"body": {
"createdDateTime": "2022-04-18T13:53:03Z",
"lastModifiedDateTime": "2022-04-18T13:53:03Z",
"projectKind": "Conversation",
"projectName": "myproject",
"multilingual": false,
"description": "This is a sample conversation project.",
"language": "en"
}
},
"200": {
"headers": {},
"body": {
"createdDateTime": "2022-04-18T13:53:03Z",
"lastModifiedDateTime": "2022-04-18T13:53:03Z",
"lastTrainedDateTime": "2022-04-18T14:14:28Z",
"lastDeployedDateTime": "2022-04-18T14:49:01Z",
"projectKind": "Conversation",
"projectName": "myproject",
"multilingual": false,
"description": "This is a sample conversation project.",
"language": "en"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"operationId": "ConversationAuthoringDeployment_DeleteDeployment",
"title": "Successful Delete Deployment",
"parameters": {
"Endpoint": "{Endpoint}",
"Ocp-Apim-Subscription-Key": "{API key}",
"api-version": "2025-11-01",
"projectName": "EmailApp",
"deploymentName": "staging"
},
"responses": {
"202": {
"headers": {
"operation-location": "{Endpoint}/language/authoring/analyze-conversations/projects/EmailApp/deployments/staging/jobs/61ebb7ef-a207-40d2-82b9-5285440ae579_637858368000000000?api-version=2025-11-01"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"operationId": "ConversationAuthoringDeployment_DeleteDeploymentFromResources",
"title": "Successful Delete Deployment From Resources",
"parameters": {
"Endpoint": "{Endpoint}",
"Ocp-Apim-Subscription-Key": "{API key}",
"api-version": "2025-11-01",
"projectName": "EmailApp",
"deploymentName": "staging",
"body": {
"assignedResourceIds": [
"/subscriptions/8ff19748-59ed-4e8a-af4b-7ce285849735/resourceGroups/test-rg/providers/Microsoft.CognitiveServices/accounts/LangTestWeu"
]
}
},
"responses": {
"202": {
"headers": {
"operation-location": "{Endpoint}/language/authoring/analyze-conversations/projects/EmailApp/deployments/staging/delete-from-resources/jobs/61ebb7ef-a207-40d2-82b9-5285440ae579_637858368000000000?api-version=2025-11-01"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"operationId": "ConversationAuthoringTrainedModel_DeleteTrainedModel",
"title": "Successful Delete Model",
"parameters": {
"Endpoint": "{Endpoint}",
"Ocp-Apim-Subscription-Key": "{API key}",
"api-version": "2025-11-01",
"projectName": "EmailApp",
"trainedModelLabel": "model2"
},
"responses": {
"204": {}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"operationId": "ConversationAuthoringProject_DeleteProject",
"title": "Successful Delete Project",
"parameters": {
"Endpoint": "{Endpoint}",
"Ocp-Apim-Subscription-Key": "{API key}",
"api-version": "2025-11-01",
"projectName": "myproject"
},
"responses": {
"202": {
"headers": {
"operation-location": "{Endpoint}/language/authoring/analyze-conversations/projects/global/deletion-jobs/129d3182-625d-496c-bcf9-43686e85160b_637858368000000000?api-version=2025-11-01"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"operationId": "ConversationAuthoringDeployment_DeployProject",
"title": "Successful Deploy Project",
"parameters": {
"Endpoint": "{Endpoint}",
"Ocp-Apim-Subscription-Key": "{API key}",
"api-version": "2025-11-01",
"projectName": "EmailApp",
"deploymentName": "production",
"body": {
"trainedModelLabel": "29886710a2ae49259d62cffca977db66"
}
},
"responses": {
"202": {
"headers": {
"operation-location": "{Endpoint}/language/authoring/analyze-conversations/projects/EmailApp/deployments/production/jobs/66fa9a67-a561-42f1-8a13-f3a879b1a324_637858368000000000?api-version=2025-11-01"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"operationId": "ConversationAuthoringProject_Export",
"title": "Successful Export Project",
"parameters": {
"Endpoint": "{Endpoint}",
"Ocp-Apim-Subscription-Key": "{API key}",
"api-version": "2025-11-01",
"projectName": "EmailApp",
"stringIndexType": "Utf16CodeUnit"
},
"responses": {
"202": {
"headers": {
"operation-location": "{Endpoint}/language/authoring/analyze-conversations/projects/EmailApp/export/jobs/4d37982f-fded-4c2c-afe3-15953b5919b6_637858368000000000?api-version=2025-11-01"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"operationId": "ConversationAuthoringProject_GetAssignProjectResourcesStatus",
"title": "Successful Get Assign Project Resources Status",
"parameters": {
"Endpoint": "{Endpoint}",
"Ocp-Apim-Subscription-Key": "{API key}",
"api-version": "2025-11-01",
"projectName": "EmailApp",
"jobId": "66fa9a67-a561-42f1-8a13-f3a879b1a324_637858368000000000"
},
"responses": {
"200": {
"headers": {},
"body": {
"jobId": "66fa9a67-a561-42f1-8a13-f3a879b1a324_637858368000000000",
"createdDateTime": "2022-04-18T15:52:48Z",
"lastUpdatedDateTime": "2022-04-18T15:53:04Z",
"expirationDateTime": "2022-04-25T15:52:48Z",
"status": "succeeded"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"operationId": "ConversationAuthoringDeployment_GetDeployment",
"title": "Successful Get Deployment",
"parameters": {
"Endpoint": "{Endpoint}",
"Ocp-Apim-Subscription-Key": "{API key}",
"api-version": "2025-11-01",
"projectName": "EmailApp",
"deploymentName": "staging"
},
"responses": {
"200": {
"headers": {},
"body": {
"deploymentName": "staging",
"modelId": "model1-20220418T034749-299f45b8114849538c1a750b21b05a94",
"lastTrainedDateTime": "2022-04-18T15:47:49.4334381Z",
"lastDeployedDateTime": "2022-04-18T15:53:04Z",
"deploymentExpirationDate": "2023-10-28",
"modelTrainingConfigVersion": "2022-05-15-preview"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"operationId": "ConversationAuthoringDeployment_GetDeploymentDeleteFromResourcesStatus",
"title": "Successful Get Deployment Delete From Resources Status",
"parameters": {
"Endpoint": "{Endpoint}",
"Ocp-Apim-Subscription-Key": "{API key}",
"api-version": "2025-11-01",
"projectName": "EmailApp",
"deploymentName": "production",
"jobId": "66fa9a67-a561-42f1-8a13-f3a879b1a324_637858368000000000"
},
"responses": {
"200": {
"headers": {},
"body": {
"jobId": "66fa9a67-a561-42f1-8a13-f3a879b1a324_637858368000000000",
"createdDateTime": "2022-04-18T15:52:48Z",
"lastUpdatedDateTime": "2022-04-18T15:53:04Z",
"expirationDateTime": "2022-04-25T15:52:48Z",
"status": "succeeded"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"operationId": "ConversationAuthoringDeployment_GetDeploymentStatus",
"title": "Successful Get Deployment Status",
"parameters": {
"Endpoint": "{Endpoint}",
"Ocp-Apim-Subscription-Key": "{API key}",
"api-version": "2025-11-01",
"projectName": "EmailApp",
"deploymentName": "production",
"jobId": "66fa9a67-a561-42f1-8a13-f3a879b1a324_637858368000000000"
},
"responses": {
"200": {
"headers": {},
"body": {
"jobId": "66fa9a67-a561-42f1-8a13-f3a879b1a324_637858368000000000",
"createdDateTime": "2022-04-18T15:52:48Z",
"lastUpdatedDateTime": "2022-04-18T15:53:04Z",
"expirationDateTime": "2022-04-25T15:52:48Z",
"status": "succeeded"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"operationId": "ConversationAuthoringProject_GetExportResult",
"title": "Successful Get Export Result",
"parameters": {
"Endpoint": "{Endpoint}",
"Ocp-Apim-Subscription-Key": "{API key}",
"api-version": "2025-11-01",
"projectName": "SampleProject",
"jobId": "job12345"
},
"responses": {
"200": {
"headers": {},
"body": {
"projectFileVersion": "1.0.0",
"stringIndexType": "Utf16CodeUnit",
"metadata": {
"projectKind": "Conversation",
"projectName": "SampleProject",
"language": "en",
"settings": {
"confidenceThreshold": 0.8,
"normalizeCasing": true,
"augmentDiacritics": false
},
"storageInputContainerName": "project-container",
"multilingual": false,
"description": "Sample project description"
},
"assets": {
"projectKind": "Conversation"
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"operationId": "ConversationAuthoringProject_GetExportStatus",
"title": "Successful Get Export Status",
"parameters": {
"Endpoint": "{Endpoint}",
"Ocp-Apim-Subscription-Key": "{API key}",
"api-version": "2025-11-01",
"projectName": "EmailApp",
"jobId": "c95efa2a-44e8-461e-8aa5-04b4677bfa84_637858368000000000"
},
"responses": {
"200": {
"headers": {},
"body": {
"resultUrl": "{Endpoint}/language/authoring/analyze-conversations/projects/EmailApp/export/jobs/c4946bfa-4fbf-493b-bfcf-2d232eb9de69_637858368000000000/result?api-version=2025-11-01",
"jobId": "c4946bfa-4fbf-493b-bfcf-2d232eb9de69_637858368000000000",
"createdDateTime": "2022-04-18T15:23:07Z",
"lastUpdatedDateTime": "2022-04-18T15:23:08Z",
"expirationDateTime": "2022-04-25T15:23:07Z",
"status": "succeeded"
}
}
}
}
Loading
Loading