你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Projects - List
获取经过身份验证的订阅的项目列表。
GET {endpoint}/speechtotext/v3.2-preview.2/projects
GET {endpoint}/speechtotext/v3.2-preview.2/projects?skip={skip}&top={top}&filter={filter}
URI 参数
名称 | 在 | 必需 | 类型 | 说明 |
---|---|---|---|---|
endpoint
|
path | True |
string |
支持的认知服务终结点 (协议和主机名,例如: https://westus.api.cognitive.microsoft.com) 。 |
filter
|
query |
string |
用于选择可用项目的子集的筛选表达式。
|
|
skip
|
query |
integer int32 |
将跳过的数据集数。 |
|
top
|
query |
integer int32 |
跳过后将包含的数据集数。 |
响应
名称 | 类型 | 说明 |
---|---|---|
200 OK |
确定 |
|
Other Status Codes |
出现了错误。 |
安全性
Ocp-Apim-Subscription-Key
在此处提供认知服务帐户密钥。
类型:
apiKey
在:
header
Authorization
提供此区域的 STS 返回的 JWT 的访问令牌。 通过将以下查询字符串添加到 STS URL,确保将管理范围添加到令牌: ?scope=speechservicesmanagement
类型:
apiKey
在:
header
示例
Get all projects |
Get all projects created in 2018 or 2019 |
Get all projects
示例请求
GET {endpoint}/speechtotext/v3.2-preview.2/projects?skip=0&top=3
示例响应
{
"values": [
{
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.1/projects/abc46f33-90b8-443d-adad-4870517356e0",
"links": {
"evaluations": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/evaluations",
"datasets": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/datasets",
"models": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/models",
"endpoints": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/endpoints",
"transcriptions": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/transcriptions"
},
"properties": {
"datasetCount": 23,
"evaluationCount": 42,
"modelCount": 2,
"transcriptionCount": 1994,
"endpointCount": 12
},
"createdDateTime": "2019-01-07T11:34:12Z",
"locale": "en-US",
"displayName": "My speech project"
},
{
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.1/projects/abc46f33-90b8-443d-adad-4870517356e0",
"links": {
"evaluations": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/evaluations",
"datasets": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/datasets",
"models": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/models",
"endpoints": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/endpoints",
"transcriptions": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/transcriptions"
},
"properties": {
"datasetCount": 23,
"evaluationCount": 42,
"modelCount": 2,
"transcriptionCount": 1994,
"endpointCount": 12
},
"createdDateTime": "2019-01-07T11:34:12Z",
"locale": "en-US",
"displayName": "My speech project"
},
{
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.1/projects/abc46f33-90b8-443d-adad-4870517356e0",
"links": {
"evaluations": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/evaluations",
"datasets": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/datasets",
"models": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/models",
"endpoints": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/endpoints",
"transcriptions": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/transcriptions"
},
"properties": {
"datasetCount": 23,
"evaluationCount": 42,
"modelCount": 2,
"transcriptionCount": 1994,
"endpointCount": 12
},
"createdDateTime": "2019-01-07T11:34:12Z",
"locale": "en-US",
"displayName": "My speech project"
}
],
"@nextLink": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects?skip=3&top=3"
}
Get all projects created in 2018 or 2019
示例请求
GET {endpoint}/speechtotext/v3.2-preview.2/projects?skip=0&top=3&filter=createdDateTime%20ge%202018-01-01T00:00:00Z%20and%20createdDateTime%20lt%202020-01-01T00:00:00Z
示例响应
{
"values": [
{
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.1/projects/abc46f33-90b8-443d-adad-4870517356e0",
"links": {
"evaluations": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/evaluations",
"datasets": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/datasets",
"models": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/models",
"endpoints": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/endpoints",
"transcriptions": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/transcriptions"
},
"properties": {
"datasetCount": 23,
"evaluationCount": 42,
"modelCount": 2,
"transcriptionCount": 1994,
"endpointCount": 12
},
"createdDateTime": "2018-03-03T12:45:27Z",
"locale": "en-US",
"displayName": "My speech project"
},
{
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.1/projects/abc46f33-90b8-443d-adad-4870517356e0",
"links": {
"evaluations": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/evaluations",
"datasets": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/datasets",
"models": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/models",
"endpoints": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/endpoints",
"transcriptions": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/transcriptions"
},
"properties": {
"datasetCount": 23,
"evaluationCount": 42,
"modelCount": 2,
"transcriptionCount": 1994,
"endpointCount": 12
},
"createdDateTime": "2018-12-19T17:54:57Z",
"locale": "en-US",
"displayName": "My speech project"
},
{
"self": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.1/projects/abc46f33-90b8-443d-adad-4870517356e0",
"links": {
"evaluations": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/evaluations",
"datasets": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/datasets",
"models": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/models",
"endpoints": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/endpoints",
"transcriptions": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects/abc46f33-90b8-443d-adad-4870517356e0/transcriptions"
},
"properties": {
"datasetCount": 23,
"evaluationCount": 42,
"modelCount": 2,
"transcriptionCount": 1994,
"endpointCount": 12
},
"createdDateTime": "2019-02-01T00:45:27Z",
"locale": "en-US",
"displayName": "My speech project"
}
],
"@nextLink": "https://westus.api.cognitive.microsoft.com/speechtotext/v3.2-preview.2/projects?skip=6&top=3&filter=createdDateTime%20ge%202018-01-01T00:00:00Z%20and%20createdDateTime%20lt%202020-01-01T00:00:00Z"
}
定义
名称 | 说明 |
---|---|
Detailed |
DetailedErrorCode |
Error |
错误 |
Error |
ErrorCode |
Inner |
InnerError |
Paginated |
PaginatedProjects |
Project |
Project |
Project |
ProjectLinks |
Project |
ProjectProperties |
DetailedErrorCode
DetailedErrorCode
名称 | 类型 | 说明 |
---|---|---|
DataImportFailed |
string |
数据导入失败。 |
DeleteNotAllowed |
string |
不允许删除。 |
DeployNotAllowed |
string |
不允许部署。 |
DeployingFailedModel |
string |
部署失败的模型。 |
EmptyRequest |
string |
空请求。 |
EndpointCannotBeDefault |
string |
终结点不能为默认值。 |
EndpointNotUpdatable |
string |
终结点不可更新。 |
EndpointWithoutLogging |
string |
没有日志记录的终结点。 |
ExceededNumberOfRecordingsUris |
string |
已超出录制 URI 数。 |
FailedDataset |
string |
失败的数据集。 |
Forbidden |
string |
已禁止。 |
InUseViolation |
string |
在使用中冲突。 |
InaccessibleCustomerStorage |
string |
无法访问客户存储。 |
InvalidAdaptationMapping |
string |
无效的适应映射。 |
InvalidBaseModel |
string |
基本模型无效。 |
InvalidCallbackUri |
string |
无效的回调 URI。 |
InvalidCollection |
string |
无效的集合。 |
InvalidDataset |
string |
数据集无效。 |
InvalidDocument |
string |
无效的文档。 |
InvalidDocumentBatch |
string |
无效的文档批处理。 |
InvalidLocale |
string |
区域设置无效。 |
InvalidLogDate |
string |
日志日期无效。 |
InvalidLogEndTime |
string |
日志结束时间无效。 |
InvalidLogId |
string |
日志 ID 无效。 |
InvalidLogStartTime |
string |
日志开始时间无效。 |
InvalidModel |
string |
无效的模型。 |
InvalidModelUri |
string |
模型 URI 无效。 |
InvalidParameter |
string |
参数无效。 |
InvalidParameterValue |
string |
参数值无效。 |
InvalidPayload |
string |
有效负载无效。 |
InvalidPermissions |
string |
权限无效。 |
InvalidPrerequisite |
string |
先决条件无效。 |
InvalidProductId |
string |
产品 ID 无效。 |
InvalidProject |
string |
无效的项目。 |
InvalidProjectKind |
string |
无效的项目类型。 |
InvalidRecordingsUri |
string |
录制 URI 无效。 |
InvalidRequestBodyFormat |
string |
请求正文格式无效。 |
InvalidSasValidityDuration |
string |
SAS 有效期无效。 |
InvalidSkipTokenForLogs |
string |
日志的跳过令牌无效。 |
InvalidSourceAzureResourceId |
string |
源 Azure 资源 ID 无效。 |
InvalidSubscription |
string |
订阅无效。 |
InvalidTest |
string |
测试无效。 |
InvalidTimeToLive |
string |
生存时间无效。 |
InvalidTopForLogs |
string |
日志顶部无效。 |
InvalidTranscription |
string |
听录无效。 |
InvalidWebHookEventKind |
string |
Web 挂钩事件类型无效。 |
MissingInputRecords |
string |
缺少输入记录。 |
ModelCopyOperationExists |
string |
存在模型复制操作。 |
ModelDeploymentNotCompleteState |
string |
模型部署未完成状态。 |
ModelDeprecated |
string |
模型已弃用。 |
ModelExists |
string |
模型存在。 |
ModelMismatch |
string |
模型不匹配。 |
ModelNotDeployable |
string |
模型不可部署。 |
ModelVersionIncorrect |
string |
模型版本不正确。 |
NoUtf8WithBom |
string |
没有具有 bom 的 utf8。 |
OnlyOneOfUrlsOrContainerOrDataset |
string |
只有一个 URL 或容器或数据集。 |
ProjectGenderMismatch |
string |
项目性别不匹配。 |
QuotaViolation |
string |
配额冲突。 |
SingleDefaultEndpoint |
string |
单个默认终结点。 |
SkuLimitsExist |
string |
存在 SKU 限制。 |
SubscriptionNotFound |
string |
找不到订阅。 |
UnexpectedError |
string |
意外错误。 |
UnsupportedClassBasedAdaptation |
string |
不支持的基于类的适应。 |
UnsupportedDelta |
string |
不支持的增量。 |
UnsupportedDynamicConfiguration |
string |
不支持的动态配置。 |
UnsupportedFilter |
string |
不支持的筛选器。 |
UnsupportedLanguageCode |
string |
不支持的语言代码。 |
UnsupportedOrderBy |
string |
不支持的订单。 |
UnsupportedPagination |
string |
不支持分页。 |
UnsupportedTimeRange |
string |
不支持的时间范围。 |
Error
错误
名称 | 类型 | 说明 |
---|---|---|
code |
ErrorCode |
|
details |
Error[] |
有关错误和/或预期策略的其他支持详细信息。 |
innerError |
InnerError |
|
message |
string |
高级错误消息。 |
target |
string |
错误的源。 例如,如果文档无效,应为“文档”或“文档 ID”。 |
ErrorCode
ErrorCode
名称 | 类型 | 说明 |
---|---|---|
Conflict |
string |
表示冲突错误代码。 |
Forbidden |
string |
表示禁止的错误代码。 |
InternalCommunicationFailed |
string |
表示内部通信失败的错误代码。 |
InternalServerError |
string |
表示内部服务器错误代码。 |
InvalidArgument |
string |
表示无效的参数错误代码。 |
InvalidRequest |
string |
表示无效的请求错误代码。 |
NotAllowed |
string |
表示不允许的错误代码。 |
NotFound |
string |
表示找不到的错误代码。 |
PipelineError |
string |
表示管道错误代码。 |
ServiceUnavailable |
string |
表示服务不可用的错误代码。 |
TooManyRequests |
string |
表示请求过多的错误代码。 |
Unauthorized |
string |
表示未经授权的错误代码。 |
UnprocessableEntity |
string |
表示不可处理的实体错误代码。 |
UnsupportedMediaType |
string |
表示不受支持的媒体类型错误代码。 |
InnerError
InnerError
名称 | 类型 | 说明 |
---|---|---|
code |
DetailedErrorCode |
|
details |
object |
有关错误和/或预期策略的其他支持详细信息。 |
innerError |
InnerError |
|
message |
string |
高级错误消息。 |
target |
string |
错误的源。 例如,如果文档无效,应为“文档”或“文档 ID”。 |
PaginatedProjects
PaginatedProjects
名称 | 类型 | 说明 |
---|---|---|
@nextLink |
string |
如果有更多的实体可用,则为指向下一组分页结果的链接;否则为 null。 |
values |
Project[] |
受传递的查询参数“skip”和“top”或其默认值限制的实体列表。 使用分页和并行删除实体循环访问列表时,某些实体将在结果中跳过。 建议在客户端上生成列表,并在提取完整列表后删除。 |
Project
Project
名称 | 类型 | 说明 |
---|---|---|
createdDateTime |
string |
创建对象时的时间戳。 时间戳编码为 ISO 8601 日期和时间格式 (“YYYY-MM-DDThh:mm:ssZ”,请参阅 https://en.wikipedia.org/wiki/ISO_8601#Combined_date_and_time_representations) 。 |
customProperties |
object |
此实体的自定义属性。 允许的最大密钥长度为 64 个字符,允许的最大值长度为 256 个字符,允许的条目计数为 10。 |
description |
string |
对象的说明。 |
displayName |
string |
对象的显示名称。 |
links |
ProjectLinks |
|
locale |
string |
包含数据的区域设置。 |
properties |
ProjectProperties |
|
self |
string |
此实体的位置。 |
ProjectLinks
ProjectLinks
名称 | 类型 | 说明 |
---|---|---|
datasets |
string |
获取此项目的所有数据集列表的位置。 有关更多详细信息,请参阅操作“Projects_ListDatasets”。 |
endpoints |
string |
获取此项目的所有终结点列表的位置。 有关更多详细信息,请参阅操作“Projects_ListEndpoints”。 |
evaluations |
string |
获取此项目的所有评估列表的位置。 有关更多详细信息,请参阅操作“Projects_ListEvaluations”。 |
models |
string |
获取此项目的所有模型列表的位置。 有关更多详细信息,请参阅操作“Projects_ListModels”。 |
transcriptions |
string |
获取此项目的所有听录列表的位置。 有关更多详细信息,请参阅操作“Projects_ListTranscriptions”。 |
ProjectProperties
ProjectProperties
名称 | 类型 | 说明 |
---|---|---|
datasetCount |
integer |
与此项目关联的数据集数。 |
endpointCount |
integer |
与此项目关联的终结点数。 |
evaluationCount |
integer |
与此项目关联的评估数。 |
modelCount |
integer |
与此项目关联的模型数。 |
transcriptionCount |
integer |
与此项目关联的听录数。 |