From acb09a469528890419cda9fb8289d089a55d85f9 Mon Sep 17 00:00:00 2001 From: Kayla Ames Date: Mon, 20 May 2024 18:28:57 -0700 Subject: [PATCH] updates from removing error response --- .../AzureAI.Assets/routes.tsp | 12 +-- .../2024-04-01-preview/azure-ai-assets.json | 16 ++-- .../2024-05-01-preview/azure-ai-assets.json | 90 ++++++++++--------- ...Indexes_CreateOrUpdate_MaximumSet_Gen.json | 46 ++++++---- .../Indexes_GetLatest_MaximumSet_Gen.json | 18 ++-- ...Indexes_GetNextVersion_MaximumSet_Gen.json | 4 +- .../examples/Indexes_Get_MaximumSet_Gen.json | 20 +++-- .../Indexes_ListLatest_MaximumSet_Gen.json | 14 +-- .../examples/Indexes_List_MaximumSet_Gen.json | 22 +++-- ...Prompts_CreateOrUpdate_MaximumSet_Gen.json | 46 ++++++---- .../Prompts_GetLatest_MaximumSet_Gen.json | 18 ++-- ...Prompts_GetNextVersion_MaximumSet_Gen.json | 4 +- .../examples/Prompts_Get_MaximumSet_Gen.json | 20 +++-- .../Prompts_ListLatest_MaximumSet_Gen.json | 14 +-- .../examples/Prompts_List_MaximumSet_Gen.json | 22 +++-- 15 files changed, 214 insertions(+), 152 deletions(-) diff --git a/specification/machinelearningservices/AzureAI.Assets/routes.tsp b/specification/machinelearningservices/AzureAI.Assets/routes.tsp index 449bc8b506db..b80ce089f8a2 100644 --- a/specification/machinelearningservices/AzureAI.Assets/routes.tsp +++ b/specification/machinelearningservices/AzureAI.Assets/routes.tsp @@ -147,7 +147,7 @@ interface Prompts { @path version: string; }, - Prompt | Foundations.ErrorResponse + Prompt >; #suppress "@azure-tools/typespec-azure-core/use-standard-operations" "Waiting for bug fix: https://github.com/Azure/typespec-azure-pr/issues/3739." @@ -169,7 +169,7 @@ interface Prompts { @body body: Prompt; }, - ResourceCreatedOrOkResponse | Foundations.ErrorResponse + ResourceCreatedOrOkResponse >; #suppress "@azure-tools/typespec-azure-core/use-standard-operations" "Waiting for bug fix: https://github.com/Azure/typespec-azure-pr/issues/3739." @@ -197,7 +197,7 @@ interface Prompts { ...StandardListQueryParameters; }, - PagedPrompt | Foundations.ErrorResponse + PagedPrompt >; #suppress "@azure-tools/typespec-azure-core/use-standard-operations" "Need to define route." @@ -211,7 +211,7 @@ interface Prompts { @path name: string; }, - Prompt | Foundations.ErrorResponse + Prompt >; #suppress "@azure-tools/typespec-azure-core/use-standard-operations" "Need to define route." @@ -225,7 +225,7 @@ interface Prompts { @path name: string; }, - VersionInfo | Foundations.ErrorResponse + VersionInfo >; #suppress "@azure-tools/typespec-azure-core/use-standard-operations" "Need to define route." @@ -236,6 +236,6 @@ interface Prompts { { ...StandardListQueryParameters; }, - PagedPrompt | Foundations.ErrorResponse + PagedPrompt >; } diff --git a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-04-01-preview/azure-ai-assets.json b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-04-01-preview/azure-ai-assets.json index 6495566861c2..b41ab9793a60 100644 --- a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-04-01-preview/azure-ai-assets.json +++ b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-04-01-preview/azure-ai-assets.json @@ -76,7 +76,7 @@ "/indexes": { "get": { "operationId": "Indexes_ListLatest", - "description": "List the latest version of each index.", + "description": "List the latest version of each index. Latest is defined by most recent created by date.", "parameters": [ { "$ref": "#/parameters/Azure.Core.Foundations.ApiVersionParameter" @@ -124,7 +124,7 @@ "/indexes/{name}": { "get": { "operationId": "Indexes_GetLatest", - "description": "Get latest Index.", + "description": "Get latest version of the Index. Latest is defined by most recent created by date.", "parameters": [ { "$ref": "#/parameters/Azure.Core.Foundations.ApiVersionParameter" @@ -168,7 +168,7 @@ "/indexes/{name}:getNextVersion": { "post": { "operationId": "Indexes_GetNextVersion", - "description": "Get next Index version.", + "description": "Get next Index version. This returns the latest version + 1.", "parameters": [ { "$ref": "#/parameters/Azure.Core.Foundations.ApiVersionParameter" @@ -212,7 +212,7 @@ "/indexes/{name}/versions": { "get": { "operationId": "Indexes_List", - "description": "The most basic operation.", + "description": "List the versions of an Index given the name.", "parameters": [ { "$ref": "#/parameters/Azure.Core.Foundations.ApiVersionParameter" @@ -236,7 +236,7 @@ { "name": "orderBy", "in": "query", - "description": "Ordering of list: Please choose OrderBy value from ['createdtime', 'modifiedtime'].", + "description": "Ordering of list: Please choose orderby value from ['createdAt', 'lastModifiedAt'].", "required": false, "type": "string" }, @@ -290,7 +290,7 @@ "/indexes/{name}/versions/{version}": { "get": { "operationId": "Indexes_Get", - "description": "Fetch a IndexVersion by name.", + "description": "Get a specific version of an Index.", "parameters": [ { "$ref": "#/parameters/Azure.Core.Foundations.ApiVersionParameter" @@ -415,7 +415,7 @@ }, "stage": { "type": "string", - "description": "Update stage to 'Archive' for soft delete. Default is Development, which means the asset is under development.", + "description": "Update stage to 'Archive' to archive the asset. Default is Development, which means the asset is under development.", "default": "Development" }, "description": { @@ -519,7 +519,7 @@ }, "stage": { "type": "string", - "description": "Update stage to 'Archive' for soft delete. Default is Development, which means the asset is under development.", + "description": "Update stage to 'Archive' to archive the asset. Default is Development, which means the asset is under development.", "default": "Development" }, "description": { diff --git a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/azure-ai-assets.json b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/azure-ai-assets.json index 19e55dc65589..60601add2f2f 100644 --- a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/azure-ai-assets.json +++ b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/azure-ai-assets.json @@ -21,7 +21,9 @@ "in": "path", "description": "Supported Azure-AI asset endpoints.", "required": true, - "type": "string" + "type": "string", + "format": "uri", + "x-ms-skip-url-encoding": true }, { "name": "subscriptionId", @@ -112,9 +114,6 @@ "x-ms-examples": { "Indexes_ListLatest": { "$ref": "./examples/Indexes_ListLatest_MaximumSet_Gen.json" - }, - "Indexes_ListLatest_MaximumSet_Gen": { - "$ref": "./examples/Indexes_ListLatest_MaximumSet_Gen.json" } }, "x-ms-pageable": { @@ -136,8 +135,7 @@ "description": "Name of the index.", "required": true, "type": "string", - "pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]*$", - "maxLength": 254 + "pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{0,254}$" } ], "responses": { @@ -163,9 +161,6 @@ "x-ms-examples": { "Indexes_GetLatest": { "$ref": "./examples/Indexes_GetLatest_MaximumSet_Gen.json" - }, - "Indexes_GetLatest_MaximumSet_Gen": { - "$ref": "./examples/Indexes_GetLatest_MaximumSet_Gen.json" } } } @@ -210,9 +205,6 @@ "x-ms-examples": { "Indexes_GetNextVersion": { "$ref": "./examples/Indexes_GetNextVersion_MaximumSet_Gen.json" - }, - "Indexes_GetNextVersion_MaximumSet_Gen": { - "$ref": "./examples/Indexes_GetNextVersion_MaximumSet_Gen.json" } } } @@ -288,9 +280,6 @@ "x-ms-examples": { "Indexes_List": { "$ref": "./examples/Indexes_List_MaximumSet_Gen.json" - }, - "Indexes_List_MaximumSet_Gen": { - "$ref": "./examples/Indexes_List_MaximumSet_Gen.json" } }, "x-ms-pageable": { @@ -345,9 +334,6 @@ "x-ms-examples": { "Indexes_Get": { "$ref": "./examples/Indexes_Get_MaximumSet_Gen.json" - }, - "Indexes_Get_MaximumSet_Gen": { - "$ref": "./examples/Indexes_Get_MaximumSet_Gen.json" } } }, @@ -412,9 +398,6 @@ "x-ms-examples": { "Indexes_CreateOrUpdate": { "$ref": "./examples/Indexes_CreateOrUpdate_MaximumSet_Gen.json" - }, - "Indexes_CreateOrUpdate_MaximumSet_Gen": { - "$ref": "./examples/Indexes_CreateOrUpdate_MaximumSet_Gen.json" } } } @@ -460,9 +443,6 @@ "x-ms-examples": { "Prompts_ListLatest": { "$ref": "./examples/Prompts_ListLatest_MaximumSet_Gen.json" - }, - "Prompts_ListLatest_MaximumSet_Gen": { - "$ref": "./examples/Prompts_ListLatest_MaximumSet_Gen.json" } }, "x-ms-pageable": { @@ -510,9 +490,6 @@ "x-ms-examples": { "Prompts_GetLatest": { "$ref": "./examples/Prompts_GetLatest_MaximumSet_Gen.json" - }, - "Prompts_GetLatest_MaximumSet_Gen": { - "$ref": "./examples/Prompts_GetLatest_MaximumSet_Gen.json" } } } @@ -557,9 +534,6 @@ "x-ms-examples": { "Prompts_GetNextVersion": { "$ref": "./examples/Prompts_GetNextVersion_MaximumSet_Gen.json" - }, - "Prompts_GetNextVersion_MaximumSet_Gen": { - "$ref": "./examples/Prompts_GetNextVersion_MaximumSet_Gen.json" } } } @@ -635,9 +609,6 @@ "x-ms-examples": { "Prompts_List": { "$ref": "./examples/Prompts_List_MaximumSet_Gen.json" - }, - "Prompts_List_MaximumSet_Gen": { - "$ref": "./examples/Prompts_List_MaximumSet_Gen.json" } }, "x-ms-pageable": { @@ -692,9 +663,6 @@ "x-ms-examples": { "Prompts_Get": { "$ref": "./examples/Prompts_Get_MaximumSet_Gen.json" - }, - "Prompts_Get_MaximumSet_Gen": { - "$ref": "./examples/Prompts_Get_MaximumSet_Gen.json" } } }, @@ -759,15 +727,55 @@ "x-ms-examples": { "Prompts_CreateOrUpdate": { "$ref": "./examples/Prompts_CreateOrUpdate_MaximumSet_Gen.json" - }, - "Prompts_CreateOrUpdate_MaximumSet_Gen": { - "$ref": "./examples/Prompts_CreateOrUpdate_MaximumSet_Gen.json" } } } } }, "definitions": { + "AssetVersion": { + "type": "object", + "description": "AssetVersion Definition", + "properties": { + "id": { + "type": "string", + "description": "Fully qualified resource Id: azureml://workspace/{workspaceName}/indexes/{name}/versions/{version} of the index.", + "readOnly": true + }, + "stage": { + "type": "string", + "description": "Update stage to 'Archive' to archive the asset. Default is Development, which means the asset is under development.", + "default": "Development" + }, + "description": { + "type": "string", + "description": "Description information of the asset." + }, + "systemData": { + "$ref": "#/definitions/SystemData", + "description": "Metadata containing createdBy and modifiedBy information.", + "readOnly": true + }, + "tags": { + "type": "object", + "description": "Asset's tags.", + "additionalProperties": { + "type": "string" + } + }, + "properties": { + "type": "object", + "description": "Asset's properties.", + "additionalProperties": { + "type": "string" + } + } + }, + "required": [ + "id", + "stage" + ] + }, "Azure.Core.Foundations.Error": { "type": "object", "description": "The error object.", @@ -868,7 +876,6 @@ }, "storageUri": { "type": "string", - "format": "uri", "description": "Default workspace blob storage Uri. Should work across storage types and auth scenarios." } }, @@ -961,8 +968,7 @@ }, "dataUri": { "type": "string", - "format": "uri", - "description": "Default workspace blob storage URI. Should work across storage types and auth scenarios." + "description": "Default workspace blob storage Ui. Should work across storage types and auth scenarios." }, "templatePath": { "type": "string", diff --git a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_CreateOrUpdate_MaximumSet_Gen.json b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_CreateOrUpdate_MaximumSet_Gen.json index bb14925f8d1c..cc341370ba0c 100644 --- a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_CreateOrUpdate_MaximumSet_Gen.json @@ -1,50 +1,62 @@ { - "title": "Indexes_CreateOrUpdate - generated by [MaximumSet] rule", + "title": "Indexes_CreateOrUpdate", "operationId": "Indexes_CreateOrUpdate", "parameters": { "api-version": "2024-05-01-preview", - "name": "abcdefghijklmnopqrstuvwxyz", - "version": "jcqtagksv", + "name": "abcdefghijklmnopqrstuv", + "version": "vmcuwiyadgftkalrpirwnxrhpaq", "body": { "stage": "dtpknfxaptvifkfpusgwofmzsiquso", + "description": "rrtguhharg", "systemData": {}, - "tags": {}, - "properties": {}, - "storageUri": "https://mjwjtrv73stvgdiag0.blob.core.windows.net/", - "description": "zvmkyegtcoarnthrk" + "tags": { + "key4394": "qwugretdqhhxdvrjdqi" + }, + "properties": { + "key4344": "fbczbfsbeynfvkjf" + }, + "storageUri": "https://mjwjtrv73stvgdiag0.blob.core.windows.net/" } }, "responses": { "200": { "body": { + "id": "emmwwjqkyfhqbprteapugk", "stage": "dtpknfxaptvifkfpusgwofmzsiquso", + "description": "rrtguhharg", "systemData": { "createdAt": "2024-04-18T02:23:53.726Z", "createdBy": "kchlnhmr", "createdByType": "djdhwbxwfilggz", "lastModifiedAt": "2024-04-18T02:23:53.726Z" }, - "tags": {}, - "properties": {}, - "storageUri": "https://mjwjtrv73stvgdiag0.blob.core.windows.net/", - "id": "emmwwjqkyfhqbprteapugk", - "description": "zvmkyegtcoarnthrk" + "tags": { + "key4394": "qwugretdqhhxdvrjdqi" + }, + "properties": { + "key4344": "fbczbfsbeynfvkjf" + }, + "storageUri": "https://mjwjtrv73stvgdiag0.blob.core.windows.net/" } }, "201": { "body": { + "id": "emmwwjqkyfhqbprteapugk", "stage": "dtpknfxaptvifkfpusgwofmzsiquso", + "description": "rrtguhharg", "systemData": { "createdAt": "2024-04-18T02:23:53.726Z", "createdBy": "kchlnhmr", "createdByType": "djdhwbxwfilggz", "lastModifiedAt": "2024-04-18T02:23:53.726Z" }, - "tags": {}, - "properties": {}, - "storageUri": "https://mjwjtrv73stvgdiag0.blob.core.windows.net/", - "id": "emmwwjqkyfhqbprteapugk", - "description": "zvmkyegtcoarnthrk" + "tags": { + "key4394": "qwugretdqhhxdvrjdqi" + }, + "properties": { + "key4344": "fbczbfsbeynfvkjf" + }, + "storageUri": "https://mjwjtrv73stvgdiag0.blob.core.windows.net/" } } } diff --git a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_GetLatest_MaximumSet_Gen.json b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_GetLatest_MaximumSet_Gen.json index 925b46cec36f..01e800c6dcb7 100644 --- a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_GetLatest_MaximumSet_Gen.json +++ b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_GetLatest_MaximumSet_Gen.json @@ -1,25 +1,29 @@ { - "title": "Indexes_GetLatest - generated by [MaximumSet] rule", + "title": "Indexes_GetLatest", "operationId": "Indexes_GetLatest", "parameters": { "api-version": "2024-05-01-preview", - "name": "abcdefghijklmnopqrstuvwxyz" + "name": "abcdefghijklmnopqrstuv" }, "responses": { "200": { "body": { + "id": "emmwwjqkyfhqbprteapugk", "stage": "dtpknfxaptvifkfpusgwofmzsiquso", + "description": "rrtguhharg", "systemData": { "createdAt": "2024-04-18T02:23:53.726Z", "createdBy": "kchlnhmr", "createdByType": "djdhwbxwfilggz", "lastModifiedAt": "2024-04-18T02:23:53.726Z" }, - "tags": {}, - "properties": {}, - "storageUri": "https://mjwjtrv73stvgdiag0.blob.core.windows.net/", - "id": "emmwwjqkyfhqbprteapugk", - "description": "zvmkyegtcoarnthrk" + "tags": { + "key4394": "qwugretdqhhxdvrjdqi" + }, + "properties": { + "key4344": "fbczbfsbeynfvkjf" + }, + "storageUri": "https://mjwjtrv73stvgdiag0.blob.core.windows.net/" } } } diff --git a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_GetNextVersion_MaximumSet_Gen.json b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_GetNextVersion_MaximumSet_Gen.json index ddeb27a1c4c0..a58453c63e22 100644 --- a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_GetNextVersion_MaximumSet_Gen.json +++ b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_GetNextVersion_MaximumSet_Gen.json @@ -1,9 +1,9 @@ { - "title": "Indexes_GetNextVersion - generated by [MaximumSet] rule", + "title": "Indexes_GetNextVersion", "operationId": "Indexes_GetNextVersion", "parameters": { "api-version": "2024-05-01-preview", - "name": "abcdefghijklmnopqrstuvwxyz" + "name": "abcdefghijklmnopqrstuv" }, "responses": { "200": { diff --git a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_Get_MaximumSet_Gen.json b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_Get_MaximumSet_Gen.json index c109ab663789..fc04e6c4cfe7 100644 --- a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_Get_MaximumSet_Gen.json +++ b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_Get_MaximumSet_Gen.json @@ -1,26 +1,30 @@ { - "title": "Indexes_Get - generated by [MaximumSet] rule", + "title": "Indexes_Get", "operationId": "Indexes_Get", "parameters": { "api-version": "2024-05-01-preview", - "name": "abcdefghijklmnopqrstuvwxyz", - "version": "pzxiimocsuhhlxvabkcerdwiuh" + "name": "abcdefghijklmnopqrstuv", + "version": "ktgbyjdixnayhpfotfl" }, "responses": { "200": { "body": { + "id": "emmwwjqkyfhqbprteapugk", "stage": "dtpknfxaptvifkfpusgwofmzsiquso", + "description": "rrtguhharg", "systemData": { "createdAt": "2024-04-18T02:23:53.726Z", "createdBy": "kchlnhmr", "createdByType": "djdhwbxwfilggz", "lastModifiedAt": "2024-04-18T02:23:53.726Z" }, - "tags": {}, - "properties": {}, - "storageUri": "https://mjwjtrv73stvgdiag0.blob.core.windows.net/", - "id": "emmwwjqkyfhqbprteapugk", - "description": "zvmkyegtcoarnthrk" + "tags": { + "key4394": "qwugretdqhhxdvrjdqi" + }, + "properties": { + "key4344": "fbczbfsbeynfvkjf" + }, + "storageUri": "https://mjwjtrv73stvgdiag0.blob.core.windows.net/" } } } diff --git a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_ListLatest_MaximumSet_Gen.json b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_ListLatest_MaximumSet_Gen.json index 69f1ada638e0..00fcdfb42609 100644 --- a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_ListLatest_MaximumSet_Gen.json +++ b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_ListLatest_MaximumSet_Gen.json @@ -1,5 +1,5 @@ { - "title": "Indexes_ListLatest - generated by [MaximumSet] rule", + "title": "Indexes_ListLatest", "operationId": "Indexes_ListLatest", "parameters": { "api-version": "2024-05-01-preview", @@ -14,16 +14,20 @@ { "id": "emmwwjqkyfhqbprteapugk", "stage": "dtpknfxaptvifkfpusgwofmzsiquso", + "description": "rrtguhharg", "systemData": { "createdAt": "2024-04-18T02:23:53.726Z", "createdBy": "kchlnhmr", "createdByType": "djdhwbxwfilggz", "lastModifiedAt": "2024-04-18T02:23:53.726Z" }, - "tags": {}, - "properties": {}, - "storageUri": "https://mjwjtrv73stvgdiag0.blob.core.windows.net/", - "description": "vhhiykucilzrxklqdkz" + "tags": { + "key4394": "qwugretdqhhxdvrjdqi" + }, + "properties": { + "key4344": "fbczbfsbeynfvkjf" + }, + "storageUri": "https://mjwjtrv73stvgdiag0.blob.core.windows.net/" } ], "nextLink": "https://microsoft.com/a" diff --git a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_List_MaximumSet_Gen.json b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_List_MaximumSet_Gen.json index 9f015d75c840..7d0eeec25af6 100644 --- a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_List_MaximumSet_Gen.json +++ b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Indexes_List_MaximumSet_Gen.json @@ -1,12 +1,12 @@ { - "title": "Indexes_List - generated by [MaximumSet] rule", + "title": "Indexes_List", "operationId": "Indexes_List", "parameters": { "api-version": "2024-05-01-preview", - "name": "abcdefghijklmnopqrstuvwxyz", - "listViewType": "wbrtym", - "orderby": "yvclbbnjdyctomtfvcicup", - "tags": "ajgonvoydflcafgvwrbbsgiyhcech", + "name": "abcdefghijklmnopqrstuv", + "listViewType": "a", + "orderBy": "oyoxiyzkjrsslddgehvlbcgaeg", + "tags": "xkyngkevaaqyovihhthnzbbjhgqpv", "top": 7, "skip": 14, "maxpagesize": 2 @@ -18,16 +18,20 @@ { "id": "emmwwjqkyfhqbprteapugk", "stage": "dtpknfxaptvifkfpusgwofmzsiquso", + "description": "rrtguhharg", "systemData": { "createdAt": "2024-04-18T02:23:53.726Z", "createdBy": "kchlnhmr", "createdByType": "djdhwbxwfilggz", "lastModifiedAt": "2024-04-18T02:23:53.726Z" }, - "tags": {}, - "properties": {}, - "storageUri": "https://mjwjtrv73stvgdiag0.blob.core.windows.net/", - "description": "vhhiykucilzrxklqdkz" + "tags": { + "key4394": "qwugretdqhhxdvrjdqi" + }, + "properties": { + "key4344": "fbczbfsbeynfvkjf" + }, + "storageUri": "https://mjwjtrv73stvgdiag0.blob.core.windows.net/" } ], "nextLink": "https://microsoft.com/a" diff --git a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_CreateOrUpdate_MaximumSet_Gen.json b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_CreateOrUpdate_MaximumSet_Gen.json index 485bfb4cd5d9..ff0894c7486f 100644 --- a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_CreateOrUpdate_MaximumSet_Gen.json @@ -1,53 +1,65 @@ { - "title": "Prompts_CreateOrUpdate - generated by [MaximumSet] rule", + "title": "Prompts_CreateOrUpdate", "operationId": "Prompts_CreateOrUpdate", "parameters": { "api-version": "2024-05-01-preview", - "name": "abcdefghijklmnopqrstuvwxyz", - "version": "nzytbwjhthd", + "name": "abcdefghijklmnopqrstuv", + "version": "tuhtqwnvpnjjmpabeerth", "body": { "stage": "zvqxcgynwaj", + "description": "koyizsniphigzornxuzqwyufhus", "systemData": {}, - "tags": {}, - "properties": {}, + "tags": { + "key4485": "vkdhpmtdpbjxazikrdqqeh" + }, + "properties": { + "key3188": "qdllbnjhwxzbgswaluvbef" + }, "dataUri": "https://mjwjtrv73stvgdiag0.blob.core.windows.net/", - "templatePath": "mcpymdxgboqmrkhffaawpeznwa", - "description": "idit" + "templatePath": "mcpymdxgboqmrkhffaawpeznwa" } }, "responses": { "200": { "body": { + "id": "jlzbuo", "stage": "zvqxcgynwaj", + "description": "koyizsniphigzornxuzqwyufhus", "systemData": { "createdAt": "2024-04-18T02:23:53.726Z", "createdBy": "kchlnhmr", "createdByType": "djdhwbxwfilggz", "lastModifiedAt": "2024-04-18T02:23:53.726Z" }, - "tags": {}, - "properties": {}, + "tags": { + "key4485": "vkdhpmtdpbjxazikrdqqeh" + }, + "properties": { + "key3188": "qdllbnjhwxzbgswaluvbef" + }, "dataUri": "https://mjwjtrv73stvgdiag0.blob.core.windows.net/", - "templatePath": "mcpymdxgboqmrkhffaawpeznwa", - "id": "jlzbuo", - "description": "idit" + "templatePath": "mcpymdxgboqmrkhffaawpeznwa" } }, "201": { "body": { + "id": "jlzbuo", "stage": "zvqxcgynwaj", + "description": "koyizsniphigzornxuzqwyufhus", "systemData": { "createdAt": "2024-04-18T02:23:53.726Z", "createdBy": "kchlnhmr", "createdByType": "djdhwbxwfilggz", "lastModifiedAt": "2024-04-18T02:23:53.726Z" }, - "tags": {}, - "properties": {}, + "tags": { + "key4485": "vkdhpmtdpbjxazikrdqqeh" + }, + "properties": { + "key3188": "qdllbnjhwxzbgswaluvbef" + }, "dataUri": "https://mjwjtrv73stvgdiag0.blob.core.windows.net/", - "templatePath": "mcpymdxgboqmrkhffaawpeznwa", - "id": "jlzbuo", - "description": "idit" + "templatePath": "mcpymdxgboqmrkhffaawpeznwa" } } } diff --git a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_GetLatest_MaximumSet_Gen.json b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_GetLatest_MaximumSet_Gen.json index bda773f04c53..34c9f51fb6b4 100644 --- a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_GetLatest_MaximumSet_Gen.json +++ b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_GetLatest_MaximumSet_Gen.json @@ -1,26 +1,30 @@ { - "title": "Prompts_GetLatest - generated by [MaximumSet] rule", + "title": "Prompts_GetLatest", "operationId": "Prompts_GetLatest", "parameters": { "api-version": "2024-05-01-preview", - "name": "abcdefghijklmnopqrstuvwxyz" + "name": "abcdefghijklmnopqrstuv" }, "responses": { "200": { "body": { + "id": "jlzbuo", "stage": "zvqxcgynwaj", + "description": "koyizsniphigzornxuzqwyufhus", "systemData": { "createdAt": "2024-04-18T02:23:53.726Z", "createdBy": "kchlnhmr", "createdByType": "djdhwbxwfilggz", "lastModifiedAt": "2024-04-18T02:23:53.726Z" }, - "tags": {}, - "properties": {}, + "tags": { + "key4485": "vkdhpmtdpbjxazikrdqqeh" + }, + "properties": { + "key3188": "qdllbnjhwxzbgswaluvbef" + }, "dataUri": "https://mjwjtrv73stvgdiag0.blob.core.windows.net/", - "templatePath": "mcpymdxgboqmrkhffaawpeznwa", - "id": "jlzbuo", - "description": "idit" + "templatePath": "mcpymdxgboqmrkhffaawpeznwa" } } } diff --git a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_GetNextVersion_MaximumSet_Gen.json b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_GetNextVersion_MaximumSet_Gen.json index 11f680d9e4ff..eed875059e9d 100644 --- a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_GetNextVersion_MaximumSet_Gen.json +++ b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_GetNextVersion_MaximumSet_Gen.json @@ -1,9 +1,9 @@ { - "title": "Prompts_GetNextVersion - generated by [MaximumSet] rule", + "title": "Prompts_GetNextVersion", "operationId": "Prompts_GetNextVersion", "parameters": { "api-version": "2024-05-01-preview", - "name": "abcdefghijklmnopqrstuvwxyz" + "name": "abcdefghijklmnopqrstuv" }, "responses": { "200": { diff --git a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_Get_MaximumSet_Gen.json b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_Get_MaximumSet_Gen.json index b389fcb2419e..55a3b3095a49 100644 --- a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_Get_MaximumSet_Gen.json +++ b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_Get_MaximumSet_Gen.json @@ -1,27 +1,31 @@ { - "title": "Prompts_Get - generated by [MaximumSet] rule", + "title": "Prompts_Get", "operationId": "Prompts_Get", "parameters": { "api-version": "2024-05-01-preview", - "name": "abcdefghijklmnopqrstuvwxyz", - "version": "awuoqzferciqivbfzvvrkynaxtueea" + "name": "abcdefghijklmnopqrstuv", + "version": "ilgneyhozkqbg" }, "responses": { "200": { "body": { + "id": "jlzbuo", "stage": "zvqxcgynwaj", + "description": "koyizsniphigzornxuzqwyufhus", "systemData": { "createdAt": "2024-04-18T02:23:53.726Z", "createdBy": "kchlnhmr", "createdByType": "djdhwbxwfilggz", "lastModifiedAt": "2024-04-18T02:23:53.726Z" }, - "tags": {}, - "properties": {}, + "tags": { + "key4485": "vkdhpmtdpbjxazikrdqqeh" + }, + "properties": { + "key3188": "qdllbnjhwxzbgswaluvbef" + }, "dataUri": "https://mjwjtrv73stvgdiag0.blob.core.windows.net/", - "templatePath": "mcpymdxgboqmrkhffaawpeznwa", - "id": "jlzbuo", - "description": "idit" + "templatePath": "mcpymdxgboqmrkhffaawpeznwa" } } } diff --git a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_ListLatest_MaximumSet_Gen.json b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_ListLatest_MaximumSet_Gen.json index 2e3df157e6ae..11ba11a56fe4 100644 --- a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_ListLatest_MaximumSet_Gen.json +++ b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_ListLatest_MaximumSet_Gen.json @@ -1,5 +1,5 @@ { - "title": "Prompts_ListLatest - generated by [MaximumSet] rule", + "title": "Prompts_ListLatest", "operationId": "Prompts_ListLatest", "parameters": { "api-version": "2024-05-01-preview", @@ -14,17 +14,21 @@ { "id": "jlzbuo", "stage": "zvqxcgynwaj", + "description": "koyizsniphigzornxuzqwyufhus", "systemData": { "createdAt": "2024-04-18T02:23:53.726Z", "createdBy": "kchlnhmr", "createdByType": "djdhwbxwfilggz", "lastModifiedAt": "2024-04-18T02:23:53.726Z" }, - "tags": {}, - "properties": {}, + "tags": { + "key4485": "vkdhpmtdpbjxazikrdqqeh" + }, + "properties": { + "key3188": "qdllbnjhwxzbgswaluvbef" + }, "dataUri": "https://mjwjtrv73stvgdiag0.blob.core.windows.net/", - "templatePath": "mcpymdxgboqmrkhffaawpeznwa", - "description": "ghcunwvevgi" + "templatePath": "mcpymdxgboqmrkhffaawpeznwa" } ], "nextLink": "https://microsoft.com/a" diff --git a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_List_MaximumSet_Gen.json b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_List_MaximumSet_Gen.json index 465798261c82..2579a650aac1 100644 --- a/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_List_MaximumSet_Gen.json +++ b/specification/machinelearningservices/data-plane/Microsoft.MachineLearningServices/preview/2024-05-01-preview/examples/Prompts_List_MaximumSet_Gen.json @@ -1,12 +1,12 @@ { - "title": "Prompts_List - generated by [MaximumSet] rule", + "title": "Prompts_List", "operationId": "Prompts_List", "parameters": { "api-version": "2024-05-01-preview", - "name": "abcdefghijklmnopqrstuvwxyz", - "listViewType": "gtarpaqjkqjfvexpdwrfgojlaei", - "orderby": "rgyhoksqmwplfuxygxugteqpjz", - "tags": "vppzgxtpkgeuugifn", + "name": "abcdefghijklmnopqrstuv", + "listViewType": "gsnfbluqlj", + "orderBy": "ulymzyrgnp", + "tags": "jjuzgrivbdmkfhrzyinv", "top": 7, "skip": 14, "maxpagesize": 2 @@ -18,17 +18,21 @@ { "id": "jlzbuo", "stage": "zvqxcgynwaj", + "description": "koyizsniphigzornxuzqwyufhus", "systemData": { "createdAt": "2024-04-18T02:23:53.726Z", "createdBy": "kchlnhmr", "createdByType": "djdhwbxwfilggz", "lastModifiedAt": "2024-04-18T02:23:53.726Z" }, - "tags": {}, - "properties": {}, + "tags": { + "key4485": "vkdhpmtdpbjxazikrdqqeh" + }, + "properties": { + "key3188": "qdllbnjhwxzbgswaluvbef" + }, "dataUri": "https://mjwjtrv73stvgdiag0.blob.core.windows.net/", - "templatePath": "mcpymdxgboqmrkhffaawpeznwa", - "description": "ghcunwvevgi" + "templatePath": "mcpymdxgboqmrkhffaawpeznwa" } ], "nextLink": "https://microsoft.com/a"