Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
"summary": "Get analysis status and results",
"parameters": [
{
"$ref": "#/parameters/JobId"
"$ref": "#/parameters/AnalyzeJobId"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

is that because of the uuid issue?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, I decided to add a new value for the job ID for Analyze because Guid has already been implemented for the Healthcare service and I didn't want to break anything. The service team who owns the Analyze frontend has told us that they won't have time to change their job ID to a Guid in time for the preview release.

},
{
"$ref": "#/parameters/ShowStats"
Expand Down Expand Up @@ -1045,10 +1045,12 @@
"tasks": {
"properties": {
"details": {
"items": {
"$ref": "#/definitions/TaskState"
"properties": {
"allof": {
"$ref": "#/definitions/TaskState"
}
},
"type": "array"
"type": "object"
},
"completed": {
"type": "integer"
Expand Down Expand Up @@ -2257,6 +2259,14 @@
"type": "string",
"x-ms-parameter-location": "method"
},
"AnalyzeJobId": {
"description": "Job ID for Analyze",
"in": "path",
"name": "jobId",
"required": true,
"type": "string",
"x-ms-parameter-location": "method"
},
"ShowStats": {
"name": "showStats",
"in": "query",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ input-file: preview/v3.1-preview.2/TextAnalytics.json

### Release 3.1-Preview.3

These settings apply only when `--tag=release_3_2_preview.1` is specified on the command line.
These settings apply only when `--tag=release_3_1_preview.3` is specified on the command line.

``` yaml $(tag) == 'release_3_2_preview.1'
``` yaml $(tag) == 'release_3_1_preview.3'
input-file: preview/v3.1-preview.3/TextAnalytics.json
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ no-namespace-folders: true
batch:
- tag: release_3_0
- tag: release_3_1_preview.2
- tag: release_3_2_preview.1
- tag: release_3_1_preview.3
- multiapiscript: true
```

Expand Down Expand Up @@ -48,8 +48,8 @@ namespace: azure.ai.textanalytics.v3_1_preview_2
output-folder: $(python-sdks-folder)/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/v3_1_preview_2
```

### Tag: release_3_2_preview_1
``` yaml $(tag) == 'release_3_2_preview.1'
namespace: azure.ai.textanalytics.v3_2_preview_1
output-folder: $(python-sdks-folder)/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/v3_2_preview_1
### Tag: release_3_1_preview_3
``` yaml $(tag) == 'release_3_1_preview.3'
namespace: azure.ai.textanalytics.v3_1_preview_3
output-folder: $(python-sdks-folder)/textanalytics/azure-ai-textanalytics/azure/ai/textanalytics/v3_1_preview_3
```