Skip to content

Commit

Permalink
Cognitive Services 2022-12-01
Browse files Browse the repository at this point in the history
  • Loading branch information
yangyuan committed Dec 1, 2022
1 parent f1867ea commit 9854192
Show file tree
Hide file tree
Showing 17 changed files with 1,124 additions and 5 deletions.
2 changes: 2 additions & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -504,6 +504,7 @@ customprebuiltintents
customprebuiltmodels
customproviders
customsearch
customsubdomain
customvision
customvisionprediction
customvisiontraining
Expand Down Expand Up @@ -1378,6 +1379,7 @@ Multinomial
multipart
multipoint
multipoints
multiregion
Multiset
multislot
multispeaker
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
{
"parameters": {
"api-version": "2022-12-01",
"subscriptionId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"resourceGroupName": "resourceGroupName",
"commitmentPlanName": "commitmentPlanName",
"commitmentPlan": {
"location": "West US",
"kind": "SpeechServices",
"sku": {
"name": "S0"
},
"properties": {
"hostingModel": "Web",
"planType": "STT",
"autoRenew": true,
"current": {
"tier": "T1"
}
}
}
},
"responses": {
"200": {
"body": {
"id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/resourceGroupName/providers/Microsoft.CognitiveServices/commitmentPlans/commitmentPlanName",
"name": "commitmentPlanName",
"type": "Microsoft.CognitiveServices/commitmentPlans",
"location": "West US",
"sku": {
"name": "S0"
},
"kind": "SpeechServices",
"properties": {
"provisioningState": "Succeeded",
"hostingModel": "Web",
"planType": "STT",
"autoRenew": true,
"current": {
"tier": "T1"
}
}
}
},
"201": {
"body": {
"id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/resourceGroupName/providers/Microsoft.CognitiveServices/commitmentPlans/commitmentPlanName",
"name": "commitmentPlanName",
"type": "Microsoft.CognitiveServices/commitmentPlans",
"location": "West US",
"sku": {
"name": "S0"
},
"kind": "SpeechServices",
"properties": {
"provisioningState": "Succeeded",
"hostingModel": "Web",
"planType": "STT",
"autoRenew": true,
"current": {
"tier": "T1"
}
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"parameters": {
"api-version": "2022-12-01",
"subscriptionId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"resourceGroupName": "resourceGroupName",
"commitmentPlanName": "commitmentPlanName",
"commitmentPlanAssociationName": "commitmentPlanAssociationName",
"association": {
"properties": {
"accountId": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.CognitiveServices/accounts/accountName"
}
}
},
"responses": {
"200": {
"body": {
"id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.CognitiveServices/commitmentPlans/commitmentPlanName/accountAssociations/commitmentPlanAssociationName",
"name": "commitmentPlanAssociationName",
"type": "Microsoft.CognitiveServices/commitmentPlans/accountAssociations",
"properties": {
"accountId": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.CognitiveServices/accounts/accountName"
}
}
},
"201": {
"body": {
"id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.CognitiveServices/commitmentPlans/commitmentPlanName/accountAssociations/commitmentPlanAssociationName",
"name": "commitmentPlanAssociationName",
"type": "Microsoft.CognitiveServices/commitmentPlans/accountAssociations",
"properties": {
"accountId": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.CognitiveServices/accounts/accountName"
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
},
"responses": {
"200": {},
"202": {},
"202": {
"headers": {
"azure-asyncoperation": "http://azure.async.operation/status"
}
},
"204": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@
},
"responses": {
"200": {},
"202": {},
"202": {
"headers": {
"azure-asyncoperation": "http://azure.async.operation/status"
}
},
"204": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@
},
"responses": {
"200": {},
"202": {},
"202": {
"headers": {
"azure-asyncoperation": "http://azure.async.operation/status"
}
},
"204": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@
},
"responses": {
"200": {},
"202": {},
"202": {
"headers": {
"azure-asyncoperation": "http://azure.async.operation/status"
}
},
"204": {}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"parameters": {
"api-version": "2022-12-01",
"subscriptionId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"resourceGroupName": "resourceGroupName",
"commitmentPlanName": "commitmentPlanName"
},
"responses": {
"200": {},
"202": {
"headers": {
"azure-asyncoperation": "http://azure.async.operation/status"
}
},
"204": {}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"parameters": {
"api-version": "2022-12-01",
"subscriptionId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"resourceGroupName": "resourceGroupName",
"commitmentPlanName": "commitmentPlanName",
"commitmentPlanAssociationName": "commitmentPlanAssociationName"
},
"responses": {
"200": {},
"202": {
"headers": {
"azure-asyncoperation": "http://azure.async.operation/status"
}
},
"204": {}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"parameters": {
"api-version": "2022-12-01",
"subscriptionId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"resourceGroupName": "resourceGroupName",
"commitmentPlanName": "commitmentPlanName"
},
"responses": {
"200": {
"body": {
"id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/resourceGroupName/providers/Microsoft.CognitiveServices/commitmentPlans/commitmentPlanName",
"name": "commitmentPlanName",
"type": "Microsoft.CognitiveServices/commitmentPlans",
"location": "West US",
"sku": {
"name": "S0"
},
"kind": "SpeechServices",
"properties": {
"provisioningState": "Succeeded",
"hostingModel": "Web",
"planType": "STT",
"autoRenew": true,
"current": {
"tier": "T1"
}
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"parameters": {
"api-version": "2022-12-01",
"subscriptionId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"resourceGroupName": "resourceGroupName",
"commitmentPlanName": "commitmentPlanName",
"commitmentPlanAssociationName": "commitmentPlanAssociationName"
},
"responses": {
"200": {
"body": {
"id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.CognitiveServices/commitmentPlans/commitmentPlanName/accountAssociations/commitmentPlanAssociationName",
"name": "commitmentPlanAssociationName",
"type": "Microsoft.CognitiveServices/commitmentPlans/accountAssociations",
"properties": {
"accountId": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.CognitiveServices/accounts/accountName"
}
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"parameters": {
"api-version": "2022-12-01",
"subscriptionId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"resourceGroupName": "resourceGroupName",
"commitmentPlanName": "commitmentPlanName"
},
"responses": {
"200": {
"body": {
"value": [
{
"id": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.CognitiveServices/commitmentPlans/commitmentPlanName/accountAssociations/accountAssociationName",
"name": "accountAssociationName",
"type": "Microsoft.CognitiveServices/commitmentPlans/accountAssociations",
"properties": {
"accountId": "/subscriptions/subscriptionId/resourceGroups/resourceGroupName/providers/Microsoft.CognitiveServices/accounts/accountName"
}
}
]
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"parameters": {
"api-version": "2022-12-01",
"subscriptionId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"resourceGroupName": "resourceGroupName"
},
"responses": {
"200": {
"body": {
"value": [
{
"id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/resourceGroupName/providers/Microsoft.CognitiveServices/commitmentPlans/commitmentPlanName",
"name": "commitmentPlanName",
"type": "Microsoft.CognitiveServices/commitmentPlans",
"location": "West US",
"sku": {
"name": "S0"
},
"kind": "SpeechServices",
"properties": {
"provisioningState": "Succeeded",
"hostingModel": "Web",
"planType": "STT",
"autoRenew": true,
"current": {
"tier": "T1"
}
}
}
]
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"parameters": {
"api-version": "2022-12-01",
"subscriptionId": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
},
"responses": {
"200": {
"body": {
"value": [
{
"id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/resourceGroupName/providers/Microsoft.CognitiveServices/commitmentPlans/commitmentPlanName",
"name": "commitmentPlanName",
"type": "Microsoft.CognitiveServices/commitmentPlans",
"location": "West US",
"sku": {
"name": "S0"
},
"kind": "SpeechServices",
"properties": {
"provisioningState": "Succeeded",
"hostingModel": "Web",
"planType": "STT",
"autoRenew": true,
"current": {
"tier": "T1"
}
}
}
]
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@
},
"responses": {
"200": {},
"202": {},
"202": {
"headers": {
"azure-asyncoperation": "http://azure.async.operation/status"
}
},
"204": {}
}
}
Loading

0 comments on commit 9854192

Please sign in to comment.