From 52b6a33d0084174ccf67b64f1628d7842fdcff1e Mon Sep 17 00:00:00 2001 From: frantran Date: Thu, 13 Feb 2025 18:38:39 -0800 Subject: [PATCH 01/11] add autoupgradeprofilestatus --- .../fleet/stable/2025-03-01/fleets.json | 59 +++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json index ee3627810bec..9eacc56c4341 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json @@ -2212,6 +2212,11 @@ "disabled": { "type": "boolean", "description": "If set to False: the auto upgrade has effect - target managed clusters will be upgraded on schedule.\nIf set to True: the auto upgrade has no effect - no upgrade will be run on the target managed clusters.\nThis is a boolean and not an enum because enabled/disabled are all available states of the auto upgrade profile.\nBy default, this is set to False." + }, + "autoUpgradeProfileStatus": { + "$ref": "#/definitions/AutoUpgradeProfileStatus", + "description": "AutoUpgradeProfileStatus is the status of an auto upgrade profile.", + "readOnly": true } }, "required": [ @@ -2249,6 +2254,60 @@ }, "readOnly": true }, + "AutoUpgradeLastTriggerStatus": { + "type": "string", + "description": "AutoUpgradeLastTriggerStatus is the status of the last AutoUpgrade trigger (attempt to automatically create and start UpdateRun when there are new released versions) of an auto upgrade profile.", + "enum": [ + "Succeeded", + "Failed" + ], + "x-ms-enum": { + "name": "AutoUpgradeLastTriggerStatus", + "modelAsString": true, + "values": [ + { + "name": "Succeeded", + "value": "Succeeded", + "description": "The last trigger for this AutoUpgrade succeeded." + }, + { + "name": "Failed", + "value": "Failed", + "description": "The last trigger for this AutoUpgrade failed." + } + ] + } + }, + "AutoUpgradeProfileStatus": { + "type": "object", + "description": "AutoUpgradeProfileStatus is the status of an auto upgrade profile.", + "properties": { + "lastTriggeredAt": { + "type": "string", + "format": "date-time", + "description": "The time of the last attempt to automatically create and start an UpdateRun as triggered by the release of new versions.", + "readOnly": true + }, + "lastTriggerStatus": { + "$ref": "#/definitions/AutoUpgradeLastTriggerStatus", + "description": " The status of the last AutoUpgrade trigger.", + "readOnly": true + }, + "lastTriggerError": { + "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorDetail", + "description": "The error details of the last AutoUpgrade trigger.", + "readOnly": true + }, + "lastTriggerUpgradeVersions": { + "type": "array", + "items": { + "type": "string" + }, + "description": "The target Kubernetes version or Node Image versions of the last AutoUpgrade trigger.", + "readOnly": true + } + } + }, "ClusterResourceId": { "type": "string", "format": "arm-id", From 795b7491c94e3afd97c0c2cb2862596b00e9dc77 Mon Sep 17 00:00:00 2001 From: frantran Date: Fri, 14 Feb 2025 14:35:16 -0800 Subject: [PATCH 02/11] add tsp files --- .../AutoUpgradeProfiles_CreateOrUpdate.json | 58 ++++++ .../AutoUpgradeProfiles_Delete.json | 20 ++ .../2025-03-01/AutoUpgradeProfiles_Get.json | 33 +++ .../AutoUpgradeProfiles_ListByFleet.json | 37 ++++ .../2025-03-01/FleetMembers_Create.json | 68 ++++++ .../2025-03-01/FleetMembers_Delete.json | 21 ++ .../examples/2025-03-01/FleetMembers_Get.json | 36 ++++ .../2025-03-01/FleetMembers_ListByFleet.json | 37 ++++ .../2025-03-01/FleetMembers_Update.json | 48 +++++ .../2025-03-01/Fleets_CreateOrUpdate.json | 103 +++++++++ .../examples/2025-03-01/Fleets_Delete.json | 20 ++ .../examples/2025-03-01/Fleets_Get.json | 48 +++++ .../Fleets_ListByResourceGroup.json | 49 +++++ .../examples/2025-03-01/Fleets_ListBySub.json | 48 +++++ .../Fleets_ListCredentialsResult.json | 22 ++ .../examples/2025-03-01/Fleets_PatchTags.json | 61 ++++++ .../examples/2025-03-01/Operations_List.json | 25 +++ .../2025-03-01/UpdateRuns_CreateOrUpdate.json | 196 ++++++++++++++++++ .../2025-03-01/UpdateRuns_Delete.json | 21 ++ .../examples/2025-03-01/UpdateRuns_Get.json | 90 ++++++++ .../2025-03-01/UpdateRuns_ListByFleet.json | 94 +++++++++ .../examples/2025-03-01/UpdateRuns_Skip.json | 130 ++++++++++++ .../examples/2025-03-01/UpdateRuns_Start.json | 99 +++++++++ .../examples/2025-03-01/UpdateRuns_Stop.json | 99 +++++++++ .../UpdateStrategies_CreateOrUpdate.json | 94 +++++++++ .../2025-03-01/UpdateStrategies_Delete.json | 21 ++ .../2025-03-01/UpdateStrategies_Get.json | 45 ++++ .../UpdateStrategies_ListByFleet.json | 49 +++++ .../Fleet.Management/main.tsp | 5 + .../update/autoupgradeprofile.tsp | 36 ++++ .../fleet/stable/2025-03-01/fleets.json | 58 +++--- 31 files changed, 1742 insertions(+), 29 deletions(-) create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_CreateOrUpdate.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Delete.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Get.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_ListByFleet.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Create.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Delete.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Get.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_ListByFleet.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Update.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_CreateOrUpdate.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Delete.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Get.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListByResourceGroup.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListBySub.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListCredentialsResult.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_PatchTags.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_CreateOrUpdate.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Delete.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Get.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_ListByFleet.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Skip.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Start.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Stop.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateStrategies_CreateOrUpdate.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateStrategies_Delete.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateStrategies_Get.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateStrategies_ListByFleet.json diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_CreateOrUpdate.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_CreateOrUpdate.json new file mode 100644 index 000000000000..77965e3e2fee --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_CreateOrUpdate.json @@ -0,0 +1,58 @@ +{ + "operationId": "AutoUpgradeProfiles_CreateOrUpdate", + "title": "Create an AutoUpgradeProfile.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rg1", + "fleetName": "fleet1", + "autoUpgradeProfileName": "autoupgradeprofile1", + "resource": { + "properties": { + "channel": "Stable" + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/autoUpgradeProfiles/autoupgradeprofile1", + "name": "autoupgradeprofile1", + "type": "Microsoft.ContainerService/fleets/autoUpgradeProfiles", + "systemData": { + "createdBy": "@contoso.com", + "createdByType": "User", + "createdAt": "2023-03-01T01:10:08.395Z", + "lastModifiedBy": "@contoso.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-03-01T01:10:08.395Z" + }, + "properties": { + "provisioningState": "Succeeded", + "channel": "Stable" + }, + "eTag": "\"EtagValue\"" + } + }, + "201": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/autoUpgradeProfiles/autoupgradeprofile1", + "name": "autoupgradeprofile1", + "type": "Microsoft.ContainerService/fleets/autoUpgradeProfiles", + "systemData": { + "createdBy": "@contoso.com", + "createdByType": "User", + "createdAt": "2023-03-01T01:10:08.395Z", + "lastModifiedBy": "@contoso.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-03-01T01:10:08.395Z" + }, + "properties": { + "provisioningState": "Succeeded", + "channel": "Stable" + }, + "eTag": "\"EtagValue\"" + } + } + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Delete.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Delete.json new file mode 100644 index 000000000000..1fa121e26f3d --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Delete.json @@ -0,0 +1,20 @@ +{ + "operationId": "AutoUpgradeProfiles_Delete", + "title": "Delete an AutoUpgradeProfile resource.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rg1", + "fleetName": "fleet1", + "autoUpgradeProfileName": "autoupgradeprofile1" + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operations/00000000-0000-0000-0000-000000000000?api-version=2025-03-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operationResults/00000000-0000-0000-0000-000000000000?api-version=2025-03-01" + } + }, + "204": {} + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Get.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Get.json new file mode 100644 index 000000000000..004a787f5fcf --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Get.json @@ -0,0 +1,33 @@ +{ + "operationId": "AutoUpgradeProfiles_Get", + "title": "Gets an AutoUpgradeProfile resource.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rg1", + "fleetName": "fleet1", + "autoUpgradeProfileName": "autoupgradeprofile1" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/autoUpgradeProfiles/autoupgradeprofile1", + "name": "autoupgradeprofile1", + "type": "Microsoft.ContainerService/fleets/autoUpgradeProfiles", + "systemData": { + "createdBy": "@contoso.com", + "createdByType": "User", + "createdAt": "2023-03-01T01:10:08.395Z", + "lastModifiedBy": "@contoso.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-03-01T01:10:08.395Z" + }, + "properties": { + "provisioningState": "Succeeded", + "channel": "Stable" + }, + "eTag": "\"EtagValue\"" + } + } + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_ListByFleet.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_ListByFleet.json new file mode 100644 index 000000000000..4a0054217da3 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_ListByFleet.json @@ -0,0 +1,37 @@ +{ + "operationId": "AutoUpgradeProfiles_ListByFleet", + "title": "Lists the AutoUpgradeProfile resources by fleet.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rg1", + "fleetName": "fleet1" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/autoUpgradeProfiles/autoupgradeprofile1", + "name": "autoupgradeprofile1", + "type": "Microsoft.ContainerService/fleets/autoUpgradeProfiles", + "systemData": { + "createdBy": "@contoso.com", + "createdByType": "User", + "createdAt": "2023-03-01T01:10:08.395Z", + "lastModifiedBy": "@contoso.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-03-01T01:10:08.395Z" + }, + "properties": { + "provisioningState": "Succeeded", + "channel": "Stable" + }, + "eTag": "\"EtagValue\"" + } + ], + "nextLink": "http://nextlink.contoso.com" + } + } + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Create.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Create.json new file mode 100644 index 000000000000..1341babb0535 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Create.json @@ -0,0 +1,68 @@ +{ + "operationId": "FleetMembers_Create", + "title": "Creates a FleetMember resource with a long running operation.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rg1", + "fleetName": "fleet1", + "fleetMemberName": "member-1", + "resource": { + "properties": { + "clusterResourceId": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/cluster-1" + } + } + }, + "responses": { + "201": { + "headers": { + "ETag": "23ujdflewrj3=", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operations/00000000-0000-0000-0000-000000000000?api-version=2022-02-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-02-01" + }, + "body": { + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet-1/members/member-1", + "name": "member-1", + "type": "Microsoft.ContainerService/fleets/members", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + }, + "eTag": "23ujdflewrj3=", + "properties": { + "clusterResourceId": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/cluster-1", + "provisioningState": "Succeeded" + } + } + }, + "200": { + "headers": { + "ETag": "23ujdflewrj3=", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operations/00000000-0000-0000-0000-000000000000?api-version=2022-02-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-02-01" + }, + "body": { + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet-1/members/member-1", + "name": "member-1", + "type": "Microsoft.ContainerService/fleets/members", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + }, + "eTag": "23ujdflewrj3=", + "properties": { + "clusterResourceId": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/cluster-1", + "provisioningState": "Succeeded" + } + } + } + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Delete.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Delete.json new file mode 100644 index 000000000000..a7a8ee5e4f63 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Delete.json @@ -0,0 +1,21 @@ +{ + "operationId": "FleetMembers_Delete", + "title": "Deletes a FleetMember resource asynchronously with a long running operation.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rg1", + "fleetName": "fleet1", + "fleetMemberName": "member-1" + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operations/00000000-0000-0000-0000-000000000000?api-version=2022-02-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-02-01" + } + }, + "200": {}, + "204": {} + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Get.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Get.json new file mode 100644 index 000000000000..73fab948fc71 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Get.json @@ -0,0 +1,36 @@ +{ + "operationId": "FleetMembers_Get", + "title": "Gets a FleetMember resource.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rg1", + "fleetName": "fleet1", + "fleetMemberName": "member-1" + }, + "responses": { + "200": { + "headers": { + "ETag": "kd30rkdfo49=" + }, + "body": { + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet-1/members/member-1", + "name": "member-1", + "type": "Microsoft.ContainerService/fleets/members", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + }, + "eTag": "kd30rkdfo49=", + "properties": { + "clusterResourceId": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/cluster-1", + "provisioningState": "Succeeded" + } + } + } + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_ListByFleet.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_ListByFleet.json new file mode 100644 index 000000000000..7cf169b63534 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_ListByFleet.json @@ -0,0 +1,37 @@ +{ + "operationId": "FleetMembers_ListByFleet", + "title": "Lists the members of a Fleet.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rg1", + "fleetName": "fleet1" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet-1/members/member-1", + "name": "member-1", + "type": "Microsoft.ContainerService/fleets/members", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + }, + "eTag": "kd30rkdfo49=", + "properties": { + "clusterResourceId": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/cluster-1", + "provisioningState": "Succeeded" + } + } + ], + "nextLink": null + } + } + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Update.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Update.json new file mode 100644 index 000000000000..fbdd964c029a --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Update.json @@ -0,0 +1,48 @@ +{ + "operationId": "FleetMembers_Update", + "title": "Updates a FleetMember resource synchronously.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rg1", + "fleetName": "fleet1", + "fleetMemberName": "member-1", + "properties": { + "properties": { + "group": "staging" + } + } + }, + "responses": { + "200": { + "headers": { + "ETag": "23ujdflewrj3=" + }, + "body": { + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet-1/members/member-1", + "name": "member-1", + "type": "Microsoft.ContainerService/fleets/members", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + }, + "eTag": "23ujdflewrj3=", + "properties": { + "clusterResourceId": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/cluster-1", + "group": "staging", + "provisioningState": "Succeeded" + } + } + }, + "202": { + "headers": { + "Retry-After": "20", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operations/00000000-0000-0000-0000-000000000000?api-version=2022-02-01" + } + } + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_CreateOrUpdate.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_CreateOrUpdate.json new file mode 100644 index 000000000000..24095f8c8a5b --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_CreateOrUpdate.json @@ -0,0 +1,103 @@ +{ + "operationId": "Fleets_CreateOrUpdate", + "title": "Creates a Fleet resource with a long running operation.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rg1", + "fleetName": "fleet1", + "resource": { + "tags": { + "tier": "production", + "archv2": "" + }, + "location": "East US", + "properties": { + "hubProfile": { + "dnsPrefix": "dnsprefix1", + "agentProfile": { + "vmSize": "Standard_DS1" + } + } + } + } + }, + "responses": { + "200": { + "headers": { + "ETag": "23ujdflewrj3=", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operations/00000000-0000-0000-0000-000000000000?api-version=2022-02-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-02-01" + }, + "body": { + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet-1", + "name": "fleet-1", + "type": "Microsoft.ContainerService/fleets", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + }, + "tags": { + "tier": "production", + "archv2": "" + }, + "location": "East US", + "eTag": "23ujdflewrj3=", + "properties": { + "hubProfile": { + "dnsPrefix": "dnsprefix1", + "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "portalFqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "kubernetesVersion": "1.22.4", + "agentProfile": { + "vmSize": "Standard_DS1" + } + }, + "provisioningState": "Updating" + } + } + }, + "201": { + "headers": { + "ETag": "23ujdflewrj3=", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operations/00000000-0000-0000-0000-000000000000?api-version=2022-02-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-02-01" + }, + "body": { + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet1", + "name": "fleet1", + "type": "Microsoft.ContainerService/fleets", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + }, + "tags": { + "tier": "production", + "archv2": "" + }, + "location": "East US", + "eTag": "23ujdflewrj3=", + "properties": { + "hubProfile": { + "dnsPrefix": "dnsprefix1", + "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "portalFqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "kubernetesVersion": "1.22.4", + "agentProfile": { + "vmSize": "Standard_DS1" + } + }, + "provisioningState": "Creating" + } + } + } + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Delete.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Delete.json new file mode 100644 index 000000000000..f3cd24ffba58 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Delete.json @@ -0,0 +1,20 @@ +{ + "operationId": "Fleets_Delete", + "title": "Deletes a Fleet resource asynchronously with a long running operation.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rg1", + "fleetName": "fleet1" + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operations/00000000-0000-0000-0000-000000000000?api-version=2022-02-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-02-01" + } + }, + "200": {}, + "204": {} + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Get.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Get.json new file mode 100644 index 000000000000..ce0df7f5a8f8 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Get.json @@ -0,0 +1,48 @@ +{ + "operationId": "Fleets_Get", + "title": "Gets a Fleet resource.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rg1", + "fleetName": "fleet1" + }, + "responses": { + "200": { + "headers": { + "ETag": "23ujdflewrj3=" + }, + "body": { + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet-1", + "name": "fleet-1", + "type": "Microsoft.ContainerService/fleets", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + }, + "tags": { + "tier": "production", + "archv2": "" + }, + "location": "East US", + "eTag": "23ujdflewrj3=", + "properties": { + "hubProfile": { + "dnsPrefix": "dnsprefix1", + "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "portalFqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "kubernetesVersion": "1.22.4", + "agentProfile": { + "vmSize": "Standard_DS1" + } + }, + "provisioningState": "Succeeded" + } + } + } + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListByResourceGroup.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListByResourceGroup.json new file mode 100644 index 000000000000..c39c6f922470 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListByResourceGroup.json @@ -0,0 +1,49 @@ +{ + "operationId": "Fleets_ListByResourceGroup", + "title": "Lists the Fleet resources in a resource group.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rg1" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet-1", + "name": "fleet1", + "type": "Microsoft.ContainerService/fleets", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + }, + "tags": { + "tier": "production", + "archv2": "" + }, + "location": "East US", + "eTag": "23ujdflewrj3=", + "properties": { + "hubProfile": { + "dnsPrefix": "dnsprefix1", + "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "portalFqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "kubernetesVersion": "1.22.4", + "agentProfile": { + "vmSize": "Standard_DS1" + } + }, + "provisioningState": "Succeeded" + } + } + ], + "nextLink": null + } + } + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListBySub.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListBySub.json new file mode 100644 index 000000000000..c948600f8e67 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListBySub.json @@ -0,0 +1,48 @@ +{ + "operationId": "Fleets_ListBySubscription", + "title": "Lists the Fleet resources in a subscription.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet1", + "name": "fleet-1", + "type": "Microsoft.ContainerService/fleets", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + }, + "tags": { + "tier": "production", + "archv2": "" + }, + "location": "East US", + "eTag": "23ujdflewrj3=", + "properties": { + "hubProfile": { + "dnsPrefix": "dnsprefix1", + "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "portalFqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "kubernetesVersion": "1.22.4", + "agentProfile": { + "vmSize": "Standard_DS1" + } + }, + "provisioningState": "Succeeded" + } + } + ], + "nextLink": null + } + } + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListCredentialsResult.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListCredentialsResult.json new file mode 100644 index 000000000000..80bc33402e13 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListCredentialsResult.json @@ -0,0 +1,22 @@ +{ + "operationId": "Fleets_ListCredentials", + "title": "Lists the user credentials of a Fleet.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rg1", + "fleetName": "fleet" + }, + "responses": { + "200": { + "body": { + "kubeconfigs": [ + { + "name": "credentialName1", + "value": "Y3JlZGVudGlhbFZhbHVlMQ==" + } + ] + } + } + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_PatchTags.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_PatchTags.json new file mode 100644 index 000000000000..354dbd5383c2 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_PatchTags.json @@ -0,0 +1,61 @@ +{ + "operationId": "Fleets_Update", + "title": "Update a Fleet.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rg1", + "fleetName": "fleet1", + "If-Match": "dfjkwelr7384", + "properties": { + "tags": { + "tier": "secure", + "env": "prod" + } + } + }, + "responses": { + "200": { + "headers": { + "ETag": "23ujdflewrj3=" + }, + "body": { + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet-1", + "name": "fleet-1", + "type": "Microsoft.ContainerService/fleets", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + }, + "tags": { + "tier": "secure", + "env": "prod" + }, + "location": "East US", + "eTag": "23ujdflewrj3=", + "properties": { + "hubProfile": { + "dnsPrefix": "dnsprefix1", + "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "portalFqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "kubernetesVersion": "1.22.4", + "agentProfile": { + "vmSize": "Standard_DS1" + } + }, + "provisioningState": "Succeeded" + } + } + }, + "202": { + "headers": { + "Retry-After": "20", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operations/00000000-0000-0000-0000-000000000000?api-version=2022-02-01" + } + } + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List.json new file mode 100644 index 000000000000..98717a8f8781 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List.json @@ -0,0 +1,25 @@ +{ + "operationId": "Operations_List", + "title": "List the operations for the provider.", + "parameters": { + "api-version": "2025-03-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "display": { + "description": "Gets the status of an asynchronous operation", + "operation": "Get Operation", + "provider": "Microsoft Container Service", + "resource": "Operation" + }, + "name": "Microsoft.ContainerService/locations/operations/read", + "origin": "user,system" + } + ] + } + } + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_CreateOrUpdate.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_CreateOrUpdate.json new file mode 100644 index 000000000000..416af050c68f --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_CreateOrUpdate.json @@ -0,0 +1,196 @@ +{ + "operationId": "UpdateRuns_CreateOrUpdate", + "title": "Create an UpdateRun.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rg1", + "fleetName": "fleet1", + "updateRunName": "run1", + "resource": { + "properties": { + "updateStrategyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest" + } + } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateRuns/run1", + "name": "run1", + "type": "Microsoft.ContainerService/fleets/updateRuns", + "systemData": { + "createdBy": "@contoso.com", + "createdByType": "User", + "createdAt": "2023-03-01T01:10:08.395Z", + "lastModifiedBy": "@contoso.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-03-01T01:10:08.395Z" + }, + "properties": { + "provisioningState": "Succeeded", + "updateStrategyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest" + } + }, + "status": { + "status": { + "state": "NotStarted" + }, + "stages": [ + { + "status": { + "state": "NotStarted" + }, + "name": "stage1", + "groups": [ + { + "status": { + "state": "NotStarted" + }, + "name": "group-a", + "members": [ + { + "status": { + "state": "NotStarted" + }, + "name": "member-one", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster" + } + ] + } + ], + "afterStageWaitStatus": { + "status": { + "state": "NotStarted" + }, + "waitDurationInSeconds": 3600 + } + } + ] + } + }, + "eTag": "\"EtagValue\"" + } + }, + "201": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateRuns/run1", + "name": "run1", + "type": "Microsoft.ContainerService/fleets/updateRuns", + "systemData": { + "createdBy": "@contoso.com", + "createdByType": "User", + "createdAt": "2023-03-01T01:10:08.395Z", + "lastModifiedBy": "@contoso.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-03-01T01:10:08.395Z" + }, + "properties": { + "provisioningState": "Succeeded", + "updateStrategyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest" + } + }, + "status": { + "status": { + "state": "NotStarted" + }, + "stages": [ + { + "status": { + "state": "NotStarted" + }, + "name": "stage1", + "groups": [ + { + "status": { + "state": "NotStarted" + }, + "name": "group-a", + "members": [ + { + "status": { + "state": "NotStarted" + }, + "name": "member-one", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster" + } + ] + } + ], + "afterStageWaitStatus": { + "status": { + "state": "NotStarted" + }, + "waitDurationInSeconds": 3600 + } + } + ] + } + }, + "eTag": "\"EtagValue\"" + } + } + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Delete.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Delete.json new file mode 100644 index 000000000000..fffa6decfdc9 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Delete.json @@ -0,0 +1,21 @@ +{ + "operationId": "UpdateRuns_Delete", + "title": "Delete an updateRun resource.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rg1", + "fleetName": "fleet1", + "updateRunName": "run1" + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operations/00000000-0000-0000-0000-000000000000?api-version=2022-09-02-preview", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-09-02-preview" + } + }, + "200": {}, + "204": {} + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Get.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Get.json new file mode 100644 index 000000000000..c8fdef7c3c9f --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Get.json @@ -0,0 +1,90 @@ +{ + "operationId": "UpdateRuns_Get", + "title": "Gets an UpdateRun resource.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rg1", + "fleetName": "fleet1", + "updateRunName": "run1" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateRuns/run1", + "name": "run1", + "type": "Microsoft.ContainerService/fleets/updateRuns", + "systemData": { + "createdBy": "@contoso.com", + "createdByType": "User", + "createdAt": "2023-03-01T01:10:08.395Z", + "lastModifiedBy": "@contoso.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-03-01T01:10:08.395Z" + }, + "properties": { + "provisioningState": "Succeeded", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest" + } + }, + "status": { + "status": { + "state": "NotStarted" + }, + "stages": [ + { + "status": { + "state": "NotStarted" + }, + "name": "stage1", + "groups": [ + { + "status": { + "state": "NotStarted" + }, + "name": "group-a", + "members": [ + { + "status": { + "state": "NotStarted" + }, + "name": "member-one", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster" + } + ] + } + ], + "afterStageWaitStatus": { + "status": { + "state": "NotStarted" + }, + "waitDurationInSeconds": 3600 + } + } + ] + } + }, + "eTag": "\"EtagValue\"" + } + } + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_ListByFleet.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_ListByFleet.json new file mode 100644 index 000000000000..c79c44c53786 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_ListByFleet.json @@ -0,0 +1,94 @@ +{ + "operationId": "UpdateRuns_ListByFleet", + "title": "Lists the UpdateRun resources by fleet.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rg1", + "fleetName": "fleet1" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateRuns/run1", + "name": "run1", + "type": "Microsoft.ContainerService/fleets/updateRuns", + "systemData": { + "createdBy": "@contoso.com", + "createdByType": "User", + "createdAt": "2023-03-01T01:10:08.395Z", + "lastModifiedBy": "@contoso.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-03-01T01:10:08.395Z" + }, + "properties": { + "provisioningState": "Succeeded", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest" + } + }, + "status": { + "status": { + "state": "NotStarted" + }, + "stages": [ + { + "status": { + "state": "NotStarted" + }, + "name": "stage1", + "groups": [ + { + "status": { + "state": "NotStarted" + }, + "name": "group-a", + "members": [ + { + "status": { + "state": "NotStarted" + }, + "name": "member-one", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster" + } + ] + } + ], + "afterStageWaitStatus": { + "status": { + "state": "NotStarted" + }, + "waitDurationInSeconds": 3600 + } + } + ] + } + }, + "eTag": "\"EtagValue\"" + } + ], + "nextLink": "http://nextlink.contoso.com" + } + } + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Skip.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Skip.json new file mode 100644 index 000000000000..1aa3881be91d --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Skip.json @@ -0,0 +1,130 @@ +{ + "operationId": "UpdateRuns_Skip", + "title": "Skips one or more member/group/stage/afterStageWait(s) of an UpdateRun.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rg1", + "fleetName": "fleet1", + "updateRunName": "run1", + "body": { + "targets": [ + { + "type": "Member", + "name": "member-one" + }, + { + "type": "AfterStageWait", + "name": "stage1" + } + ] + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateRuns/run1", + "name": "run1", + "type": "Microsoft.ContainerService/fleets/updateRuns", + "systemData": { + "createdBy": "@contoso.com", + "createdByType": "User", + "createdAt": "2023-03-01T01:09:08.395Z", + "lastModifiedBy": "@contoso.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-03-01T01:10:08.395Z" + }, + "properties": { + "provisioningState": "Succeeded", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + }, + { + "name": "group-b" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest" + } + }, + "status": { + "status": { + "startTime": "2023-03-01T01:10:08.395Z", + "state": "Running" + }, + "stages": [ + { + "status": { + "startTime": "2023-03-01T01:10:08.395Z", + "state": "Running" + }, + "name": "stage1", + "groups": [ + { + "status": { + "startTime": "2023-03-01T01:10:08.395Z", + "state": "Skipped" + }, + "name": "group-a", + "members": [ + { + "status": { + "state": "Skipped" + }, + "name": "member-one", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster-1" + } + ] + }, + { + "status": { + "startTime": "2023-03-01T01:10:08.395Z", + "state": "Running" + }, + "name": "group-b", + "members": [ + { + "status": { + "state": "Running" + }, + "name": "member-two", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster-2" + } + ] + } + ], + "afterStageWaitStatus": { + "status": { + "state": "Skipped" + }, + "waitDurationInSeconds": 3600 + } + } + ] + } + }, + "eTag": "\"EtagValue\"" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-02-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-02-01" + } + } + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Start.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Start.json new file mode 100644 index 000000000000..10ec57316acd --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Start.json @@ -0,0 +1,99 @@ +{ + "operationId": "UpdateRuns_Start", + "title": "Starts an UpdateRun.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rg1", + "fleetName": "fleet1", + "updateRunName": "run1" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateRuns/run1", + "name": "run1", + "type": "Microsoft.ContainerService/fleets/updateRuns", + "systemData": { + "createdBy": "@contoso.com", + "createdByType": "User", + "createdAt": "2023-03-01T01:09:08.395Z", + "lastModifiedBy": "@contoso.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-03-01T01:10:08.395Z" + }, + "properties": { + "provisioningState": "Succeeded", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest" + } + }, + "status": { + "status": { + "startTime": "2023-03-01T01:10:08.395Z", + "state": "Running" + }, + "stages": [ + { + "status": { + "startTime": "2023-03-01T01:10:08.395Z", + "state": "Running" + }, + "name": "stage1", + "groups": [ + { + "status": { + "startTime": "2023-03-01T01:10:08.395Z", + "state": "Running" + }, + "name": "group-a", + "members": [ + { + "status": { + "state": "Running" + }, + "name": "member-one", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster" + } + ] + } + ], + "afterStageWaitStatus": { + "status": { + "state": "NotStarted" + }, + "waitDurationInSeconds": 3600 + } + } + ] + } + }, + "eTag": "\"EtagValue\"" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-02-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-02-01" + } + } + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Stop.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Stop.json new file mode 100644 index 000000000000..a09800b42681 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Stop.json @@ -0,0 +1,99 @@ +{ + "operationId": "UpdateRuns_Stop", + "title": "Stops an UpdateRun.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rg1", + "fleetName": "fleet1", + "updateRunName": "run1" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateRuns/run1", + "name": "run1", + "type": "Microsoft.ContainerService/fleets/updateRuns", + "systemData": { + "createdBy": "@contoso.com", + "createdByType": "User", + "createdAt": "2023-03-01T01:09:08.395Z", + "lastModifiedBy": "@contoso.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-03-01T01:10:08.395Z" + }, + "properties": { + "provisioningState": "Succeeded", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest" + } + }, + "status": { + "status": { + "startTime": "2023-03-01T01:10:08.395Z", + "state": "Stopping" + }, + "stages": [ + { + "status": { + "startTime": "2023-03-01T01:10:08.395Z", + "state": "Stopping" + }, + "name": "stage1", + "groups": [ + { + "status": { + "startTime": "2023-03-01T01:10:08.395Z", + "state": "Stopping" + }, + "name": "group-a", + "members": [ + { + "status": { + "state": "Stopping" + }, + "name": "member-one", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster" + } + ] + } + ], + "afterStageWaitStatus": { + "status": { + "state": "NotStarted" + }, + "waitDurationInSeconds": 3600 + } + } + ] + } + }, + "eTag": "\"EtagValue\"" + } + }, + "202": { + "headers": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-02-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-02-01" + } + } + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateStrategies_CreateOrUpdate.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateStrategies_CreateOrUpdate.json new file mode 100644 index 000000000000..4c4e66bbb402 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateStrategies_CreateOrUpdate.json @@ -0,0 +1,94 @@ +{ + "operationId": "FleetUpdateStrategies_CreateOrUpdate", + "title": "Create a FleetUpdateStrategy.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rg1", + "fleetName": "fleet1", + "updateStrategyName": "strartegy1", + "resource": { + "properties": { + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + } + } + } + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "name": "strategy1", + "type": "Microsoft.ContainerService/fleets/updateStrategies", + "systemData": { + "createdBy": "@contoso.com", + "createdByType": "User", + "createdAt": "2023-03-01T01:10:08.395Z", + "lastModifiedBy": "@contoso.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-03-01T01:10:08.395Z" + }, + "properties": { + "provisioningState": "Succeeded", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + } + }, + "eTag": "\"EtagValue\"" + } + }, + "201": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "name": "strategy1", + "type": "Microsoft.ContainerService/fleets/updateStrategies", + "systemData": { + "createdBy": "@contoso.com", + "createdByType": "User", + "createdAt": "2023-03-01T01:10:08.395Z", + "lastModifiedBy": "@contoso.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-03-01T01:10:08.395Z" + }, + "properties": { + "provisioningState": "Succeeded", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + } + }, + "eTag": "\"EtagValue\"" + } + } + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateStrategies_Delete.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateStrategies_Delete.json new file mode 100644 index 000000000000..73f0fff74439 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateStrategies_Delete.json @@ -0,0 +1,21 @@ +{ + "operationId": "FleetUpdateStrategies_Delete", + "title": "Delete a FleetUpdateStrategy resource.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rg1", + "fleetName": "fleet1", + "updateStrategyName": "strategy1" + }, + "responses": { + "202": { + "headers": { + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operations/00000000-0000-0000-0000-000000000000?api-version=2022-09-02-preview", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.ContainerService/locations/eastus/operationResults/00000000-0000-0000-0000-000000000000?api-version=2022-09-02-preview" + } + }, + "200": {}, + "204": {} + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateStrategies_Get.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateStrategies_Get.json new file mode 100644 index 000000000000..ae57cb5571bd --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateStrategies_Get.json @@ -0,0 +1,45 @@ +{ + "operationId": "FleetUpdateStrategies_Get", + "title": "Get a FleetUpdateStrategy resource.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rg1", + "fleetName": "fleet1", + "updateStrategyName": "strategy1" + }, + "responses": { + "200": { + "body": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "name": "strategy1", + "type": "Microsoft.ContainerService/fleets/updateStrategies", + "systemData": { + "createdBy": "@contoso.com", + "createdByType": "User", + "createdAt": "2023-03-01T01:10:08.395Z", + "lastModifiedBy": "@contoso.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-03-01T01:10:08.395Z" + }, + "properties": { + "provisioningState": "Succeeded", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + } + }, + "eTag": "\"EtagValue\"" + } + } + } +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateStrategies_ListByFleet.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateStrategies_ListByFleet.json new file mode 100644 index 000000000000..f769666ee182 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateStrategies_ListByFleet.json @@ -0,0 +1,49 @@ +{ + "operationId": "FleetUpdateStrategies_ListByFleet", + "title": "List the FleetUpdateStrategy resources by fleet.", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "00000000-0000-0000-0000-000000000000", + "resourceGroupName": "rg1", + "fleetName": "fleet1" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "name": "strategy1", + "type": "Microsoft.ContainerService/fleets/updateStrategies", + "systemData": { + "createdBy": "@contoso.com", + "createdByType": "User", + "createdAt": "2023-03-01T01:10:08.395Z", + "lastModifiedBy": "@contoso.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-03-01T01:10:08.395Z" + }, + "properties": { + "provisioningState": "Succeeded", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + } + }, + "eTag": "\"EtagValue\"" + } + ], + "nextLink": "http://nextlink.contoso.com" + } + } + } +} diff --git a/specification/containerservice/Fleet.Management/main.tsp b/specification/containerservice/Fleet.Management/main.tsp index 1a7e6c1fa51f..d392de7e7305 100644 --- a/specification/containerservice/Fleet.Management/main.tsp +++ b/specification/containerservice/Fleet.Management/main.tsp @@ -62,4 +62,9 @@ enum Versions { @useDependency(Azure.Core.Versions.v1_0_Preview_2) @useDependency(Azure.ResourceManager.Versions.v1_0_Preview_1) v2024_05_02_preview: "2024-05-02-preview", + + @doc("Azure Kubernetes Fleet Manager api version 2025-03-01.") + @useDependency(Azure.Core.Versions.v1_0_Preview_2) + @useDependency(Azure.ResourceManager.Versions.v1_0_Preview_1) + v2025_03_01: "2025-03-01", } diff --git a/specification/containerservice/Fleet.Management/update/autoupgradeprofile.tsp b/specification/containerservice/Fleet.Management/update/autoupgradeprofile.tsp index f2840d188c41..2eb64e1395a1 100644 --- a/specification/containerservice/Fleet.Management/update/autoupgradeprofile.tsp +++ b/specification/containerservice/Fleet.Management/update/autoupgradeprofile.tsp @@ -66,6 +66,10 @@ model AutoUpgradeProfileProperties { By default, this is set to False. """) disabled?: boolean; + + @doc("The status of the auto upgrade profile.") + @added(Versions.v2025_03_01) + autoUpgradeProfileStatus?: AutoUpgradeProfileStatus; } @doc("Configuration of how auto upgrade will be run.") @@ -124,3 +128,35 @@ interface AutoUpgradeProfiles { listByFleet is ArmResourceListByParent; } + +@doc("AutoUpgradeProfileStatus is the status of an auto upgrade profile.") +@added(Versions.v2025_03_01) +model AutoUpgradeProfileStatus { + @doc("The time of the last attempt to automatically create and start an UpdateRun as triggered by the release of new versions.") + @visibility("read") + lastTriggeredAt?: utcDateTime; + + @doc("The status of the last AutoUpgrade trigger.") + @visibility("read") + lastTriggerStatus?: AutoUpgradeLastTriggerStatus; + + @doc("The error details of the last trigger.") + @visibility("read") + lastTriggerError?: Azure.ResourceManager.Foundations.ErrorDetail; // https://github.com/Azure/azure-rest-api-specs/blob/1de0b5315d62e1b40052bad2c9a2f2c89d84ff0f/specification/common-types/resource-management/v5/types.json#L260 + + @doc("The target Kubernetes version or node image versions of the last trigger.") + @visibility("read") + lastTriggerUpgradeVersions?: string[]; +} + +@doc("AutoUpgradeLastTriggerStatus is the status of the last AutoUpgrade trigger (attempt to automatically create and start UpdateRun when there are new released versions) of an auto upgrade profile.") +@added(Versions.v2025_03_01) +union AutoUpgradeLastTriggerStatus { + string, + + @doc("The last AutoUpgrade trigger was succeeded.") + Succeeded: "Succeeded", + + @doc("The last AutoUpgrade trigger failed.") + Failed: "Failed", +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json index 9eacc56c4341..fb4ead056ee8 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json @@ -2101,6 +2101,31 @@ } } }, + "AutoUpgradeLastTriggerStatus": { + "type": "string", + "description": "AutoUpgradeLastTriggerStatus is the status of the last AutoUpgrade trigger (attempt to automatically create and start UpdateRun when there are new released versions) of an auto upgrade profile.", + "enum": [ + "Succeeded", + "Failed" + ], + "x-ms-enum": { + "name": "AutoUpgradeLastTriggerStatus", + "modelAsString": true, + "values": [ + { + "name": "Succeeded", + "value": "Succeeded", + "description": "The last AutoUpgrade trigger was succeeded." + }, + { + "name": "Failed", + "value": "Failed", + "description": "The last AutoUpgrade trigger failed." + } + ] + }, + "readOnly": true + }, "AutoUpgradeNodeImageSelection": { "type": "object", "description": "The node image upgrade to be applied to the target clusters in auto upgrade.", @@ -2215,8 +2240,7 @@ }, "autoUpgradeProfileStatus": { "$ref": "#/definitions/AutoUpgradeProfileStatus", - "description": "AutoUpgradeProfileStatus is the status of an auto upgrade profile.", - "readOnly": true + "description": "The status of the auto upgrade profile." } }, "required": [ @@ -2254,30 +2278,6 @@ }, "readOnly": true }, - "AutoUpgradeLastTriggerStatus": { - "type": "string", - "description": "AutoUpgradeLastTriggerStatus is the status of the last AutoUpgrade trigger (attempt to automatically create and start UpdateRun when there are new released versions) of an auto upgrade profile.", - "enum": [ - "Succeeded", - "Failed" - ], - "x-ms-enum": { - "name": "AutoUpgradeLastTriggerStatus", - "modelAsString": true, - "values": [ - { - "name": "Succeeded", - "value": "Succeeded", - "description": "The last trigger for this AutoUpgrade succeeded." - }, - { - "name": "Failed", - "value": "Failed", - "description": "The last trigger for this AutoUpgrade failed." - } - ] - } - }, "AutoUpgradeProfileStatus": { "type": "object", "description": "AutoUpgradeProfileStatus is the status of an auto upgrade profile.", @@ -2290,20 +2290,20 @@ }, "lastTriggerStatus": { "$ref": "#/definitions/AutoUpgradeLastTriggerStatus", - "description": " The status of the last AutoUpgrade trigger.", + "description": "The status of the last AutoUpgrade trigger.", "readOnly": true }, "lastTriggerError": { "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorDetail", - "description": "The error details of the last AutoUpgrade trigger.", + "description": "The error details of the last trigger.", "readOnly": true }, "lastTriggerUpgradeVersions": { "type": "array", + "description": "The target Kubernetes version or node image versions of the last trigger.", "items": { "type": "string" }, - "description": "The target Kubernetes version or Node Image versions of the last AutoUpgrade trigger.", "readOnly": true } } From 10bd07afd5644caa93b260bf3be0467e0929f1ba Mon Sep 17 00:00:00 2001 From: frantran Date: Wed, 19 Feb 2025 14:37:42 -0800 Subject: [PATCH 03/11] add v5 version --- .../Fleet.Management/main.tsp | 1 + .../update/autoupgradeprofile.tsp | 2 +- .../fleet/stable/2025-03-01/fleets.json | 236 +++++++++--------- 3 files changed, 120 insertions(+), 119 deletions(-) diff --git a/specification/containerservice/Fleet.Management/main.tsp b/specification/containerservice/Fleet.Management/main.tsp index d392de7e7305..57e3e00b3ce4 100644 --- a/specification/containerservice/Fleet.Management/main.tsp +++ b/specification/containerservice/Fleet.Management/main.tsp @@ -66,5 +66,6 @@ enum Versions { @doc("Azure Kubernetes Fleet Manager api version 2025-03-01.") @useDependency(Azure.Core.Versions.v1_0_Preview_2) @useDependency(Azure.ResourceManager.Versions.v1_0_Preview_1) + @armCommonTypesVersion(Azure.ResourceManager.CommonTypes.Versions.v5) v2025_03_01: "2025-03-01", } diff --git a/specification/containerservice/Fleet.Management/update/autoupgradeprofile.tsp b/specification/containerservice/Fleet.Management/update/autoupgradeprofile.tsp index 2eb64e1395a1..3a0efa0642c7 100644 --- a/specification/containerservice/Fleet.Management/update/autoupgradeprofile.tsp +++ b/specification/containerservice/Fleet.Management/update/autoupgradeprofile.tsp @@ -132,7 +132,7 @@ interface AutoUpgradeProfiles { @doc("AutoUpgradeProfileStatus is the status of an auto upgrade profile.") @added(Versions.v2025_03_01) model AutoUpgradeProfileStatus { - @doc("The time of the last attempt to automatically create and start an UpdateRun as triggered by the release of new versions.") + @doc("The UTC time of the last attempt to automatically create and start an UpdateRun as triggered by the release of new versions.") @visibility("read") lastTriggeredAt?: utcDateTime; diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json index fb4ead056ee8..ce5432e6d214 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json @@ -68,20 +68,20 @@ "description": "List the operations for the provider", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" } ], "responses": { "200": { "description": "Azure operation completed successfully.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/OperationListResult" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/OperationListResult" } }, "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -104,10 +104,10 @@ "description": "Lists fleets in the specified subscription.", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" } ], "responses": { @@ -120,7 +120,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -143,13 +143,13 @@ "description": "Lists fleets in the specified subscription and resource group.", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" } ], "responses": { @@ -162,7 +162,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -185,13 +185,13 @@ "description": "Gets a Fleet.", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "fleetName", @@ -214,7 +214,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -232,13 +232,13 @@ "description": "Creates or updates a Fleet.", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "If-Match", @@ -299,7 +299,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -321,13 +321,13 @@ "description": "Update a Fleet", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "If-Match", @@ -381,7 +381,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -403,13 +403,13 @@ "description": "Delete a Fleet", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "If-Match", @@ -454,7 +454,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -478,13 +478,13 @@ "description": "List AutoUpgradeProfile resources by Fleet", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "fleetName", @@ -507,7 +507,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -530,13 +530,13 @@ "description": "Get a AutoUpgradeProfile", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "fleetName", @@ -569,7 +569,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -587,13 +587,13 @@ "description": "Create a AutoUpgradeProfile", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "If-Match", @@ -668,7 +668,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -690,13 +690,13 @@ "description": "Delete a AutoUpgradeProfile", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "If-Match", @@ -748,7 +748,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -772,13 +772,13 @@ "description": "Lists the user credentials of a Fleet.", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "fleetName", @@ -801,7 +801,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -821,13 +821,13 @@ "description": "List FleetMember resources by Fleet", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "fleetName", @@ -850,7 +850,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -873,13 +873,13 @@ "description": "Get a FleetMember", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "fleetName", @@ -912,7 +912,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -930,13 +930,13 @@ "description": "Create a FleetMember", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "If-Match", @@ -1007,7 +1007,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1029,13 +1029,13 @@ "description": "Update a FleetMember", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "If-Match", @@ -1099,7 +1099,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1121,13 +1121,13 @@ "description": "Delete a FleetMember", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "If-Match", @@ -1182,7 +1182,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1206,13 +1206,13 @@ "description": "List UpdateRun resources by Fleet", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "fleetName", @@ -1235,7 +1235,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1258,13 +1258,13 @@ "description": "Get a UpdateRun", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "fleetName", @@ -1297,7 +1297,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1315,13 +1315,13 @@ "description": "Create a UpdateRun", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "If-Match", @@ -1392,7 +1392,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1414,13 +1414,13 @@ "description": "Delete a UpdateRun", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "If-Match", @@ -1475,7 +1475,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1499,13 +1499,13 @@ "description": "Skips one or a combination of member/group/stage/afterStageWait(s) of an update run.", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "If-Match", @@ -1569,7 +1569,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1593,13 +1593,13 @@ "description": "Starts an UpdateRun.", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "If-Match", @@ -1654,7 +1654,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1678,13 +1678,13 @@ "description": "Stops an UpdateRun.", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "If-Match", @@ -1739,7 +1739,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1763,13 +1763,13 @@ "description": "List FleetUpdateStrategy resources by Fleet", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "fleetName", @@ -1792,7 +1792,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1815,13 +1815,13 @@ "description": "Get a FleetUpdateStrategy", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "fleetName", @@ -1854,7 +1854,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1872,13 +1872,13 @@ "description": "Create a FleetUpdateStrategy", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "If-Match", @@ -1949,7 +1949,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -1971,13 +1971,13 @@ "description": "Delete a FleetUpdateStrategy", "parameters": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ApiVersionParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/SubscriptionIdParameter" }, { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/parameters/ResourceGroupNameParameter" }, { "name": "If-Match", @@ -2032,7 +2032,7 @@ "default": { "description": "An unexpected error response.", "schema": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorResponse" } } }, @@ -2184,7 +2184,7 @@ }, "allOf": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ProxyResource" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" } ] }, @@ -2285,7 +2285,7 @@ "lastTriggeredAt": { "type": "string", "format": "date-time", - "description": "The time of the last attempt to automatically create and start an UpdateRun as triggered by the release of new versions.", + "description": "The UTC time of the last attempt to automatically create and start an UpdateRun as triggered by the release of new versions.", "readOnly": true }, "lastTriggerStatus": { @@ -2294,7 +2294,7 @@ "readOnly": true }, "lastTriggerError": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorDetail", + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorDetail", "description": "The error details of the last trigger.", "readOnly": true }, @@ -2341,7 +2341,7 @@ }, "allOf": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/TrackedResource" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/TrackedResource" } ] }, @@ -2465,7 +2465,7 @@ }, "allOf": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ProxyResource" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" } ] }, @@ -2690,7 +2690,7 @@ }, "allOf": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ProxyResource" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" } ] }, @@ -3114,7 +3114,7 @@ }, "allOf": [ { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ProxyResource" + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ProxyResource" } ] }, @@ -3386,7 +3386,7 @@ "readOnly": true }, "error": { - "$ref": "../../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorDetail", + "$ref": "../../../../../../common-types/resource-management/v5/types.json#/definitions/ErrorDetail", "description": "The error details when a failure is encountered.", "readOnly": true } From 40f63f25ba4f2c1851d1b0fa5f7fb2c72a6791d3 Mon Sep 17 00:00:00 2001 From: frantran Date: Wed, 19 Feb 2025 14:43:20 -0800 Subject: [PATCH 04/11] generate examples --- ...rofiles_CreateOrUpdate_MaximumSet_Gen.json | 119 ++++++ ...UpgradeProfiles_Delete_MaximumSet_Gen.json | 20 + ...utoUpgradeProfiles_Get_MaximumSet_Gen.json | 57 +++ ...deProfiles_ListByFleet_MaximumSet_Gen.json | 61 +++ .../FleetMembers_Create_MaximumSet_Gen.json | 66 +++ .../FleetMembers_Delete_MaximumSet_Gen.json | 21 + .../FleetMembers_Get_MaximumSet_Gen.json | 34 ++ ...eetMembers_ListByFleet_MaximumSet_Gen.json | 38 ++ .../FleetMembers_Update_MaximumSet_Gen.json | 45 +++ ...ategies_CreateOrUpdate_MaximumSet_Gen.json | 99 +++++ ...pdateStrategies_Delete_MaximumSet_Gen.json | 21 + ...etUpdateStrategies_Get_MaximumSet_Gen.json | 45 +++ ...Strategies_ListByFleet_MaximumSet_Gen.json | 49 +++ .../Fleets_CreateOrUpdate_MaximumSet_Gen.json | 135 +++++++ .../Fleets_Delete_MaximumSet_Gen.json | 20 + .../examples/Fleets_Get_MaximumSet_Gen.json | 59 +++ ...ts_ListByResourceGroup_MaximumSet_Gen.json | 63 +++ ...ets_ListBySubscription_MaximumSet_Gen.json | 62 +++ ...Fleets_ListCredentials_MaximumSet_Gen.json | 22 + .../Fleets_Update_MaximumSet_Gen.json | 74 ++++ .../Operations_List_MaximumSet_Gen.json | 28 ++ .../Operations_List_MinimumSet_Gen.json | 12 + ...ateRuns_CreateOrUpdate_MaximumSet_Gen.json | 379 ++++++++++++++++++ .../UpdateRuns_Delete_MaximumSet_Gen.json | 21 + .../UpdateRuns_Get_MaximumSet_Gen.json | 175 ++++++++ ...UpdateRuns_ListByFleet_MaximumSet_Gen.json | 179 +++++++++ .../UpdateRuns_Skip_MaximumSet_Gen.json | 193 +++++++++ .../UpdateRuns_Start_MaximumSet_Gen.json | 181 +++++++++ .../UpdateRuns_Stop_MaximumSet_Gen.json | 181 +++++++++ .../fleet/stable/2025-03-01/fleets.json | 89 +++- 30 files changed, 2547 insertions(+), 1 deletion(-) create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Get_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Create_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Delete_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Get_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_ListByFleet_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Update_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Delete_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Get_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_ListByFleet_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_CreateOrUpdate_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Delete_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Get_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListByResourceGroup_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListBySubscription_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListCredentials_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Update_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MinimumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Delete_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Get_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_ListByFleet_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Skip_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Start_MaximumSet_Gen.json create mode 100644 specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Stop_MaximumSet_Gen.json diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..ab0a0095f32f --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,119 @@ +{ + "title": "Create an AutoUpgradeProfile. - generated by [MaximumSet] rule", + "operationId": "AutoUpgradeProfiles_CreateOrUpdate", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "irugdrminrllxnxfebziysfijsq", + "If-None-Match": "ktfmpsvpbiphyqiixda", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "autoUpgradeProfileName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "resource": { + "properties": { + "channel": "Stable", + "updateStrategyId": "skcdtnw", + "nodeImageSelection": { + "type": "Latest" + }, + "disabled": true, + "autoUpgradeProfileStatus": { + "lastTriggerError": {} + } + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "channel": "Stable", + "provisioningState": "Succeeded", + "updateStrategyId": "skcdtnw", + "nodeImageSelection": { + "type": "Latest" + }, + "disabled": true, + "autoUpgradeProfileStatus": { + "lastTriggeredAt": "2025-02-19T22:39:10.786Z", + "lastTriggerStatus": "Succeeded", + "lastTriggerError": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + }, + "lastTriggerUpgradeVersions": [ + "wjfesvtcxdnkq" + ] + } + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/autoUpgradeProfiles/autoupgradeprofile1", + "name": "autoupgradeprofile1", + "type": "Microsoft.ContainerService/fleets/autoUpgradeProfiles", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "channel": "Stable", + "provisioningState": "Succeeded", + "updateStrategyId": "skcdtnw", + "nodeImageSelection": { + "type": "Latest" + }, + "disabled": true, + "autoUpgradeProfileStatus": { + "lastTriggeredAt": "2025-02-19T22:39:10.786Z", + "lastTriggerStatus": "Succeeded", + "lastTriggerError": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + }, + "lastTriggerUpgradeVersions": [ + "wjfesvtcxdnkq" + ] + } + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/autoUpgradeProfiles/autoupgradeprofile1", + "name": "autoupgradeprofile1", + "type": "Microsoft.ContainerService/fleets/autoUpgradeProfiles", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..a1fd9ab1b595 --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json @@ -0,0 +1,20 @@ +{ + "title": "Delete an AutoUpgradeProfile resource. - generated by [MaximumSet] rule", + "operationId": "AutoUpgradeProfiles_Delete", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "yjtwfcfvifjgvxbmvvpwr", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "autoUpgradeProfileName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Get_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..3b1f4eedd495 --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Get_MaximumSet_Gen.json @@ -0,0 +1,57 @@ +{ + "title": "Gets an AutoUpgradeProfile resource. - generated by [MaximumSet] rule", + "operationId": "AutoUpgradeProfiles_Get", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "autoUpgradeProfileName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "properties": { + "channel": "Stable", + "provisioningState": "Succeeded", + "updateStrategyId": "skcdtnw", + "nodeImageSelection": { + "type": "Latest" + }, + "disabled": true, + "autoUpgradeProfileStatus": { + "lastTriggeredAt": "2025-02-19T22:39:10.786Z", + "lastTriggerStatus": "Succeeded", + "lastTriggerError": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + }, + "lastTriggerUpgradeVersions": [ + "wjfesvtcxdnkq" + ] + } + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/autoUpgradeProfiles/autoupgradeprofile1", + "name": "autoupgradeprofile1", + "type": "Microsoft.ContainerService/fleets/autoUpgradeProfiles", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json new file mode 100644 index 000000000000..498eba742a26 --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json @@ -0,0 +1,61 @@ +{ + "title": "Lists the AutoUpgradeProfile resources by fleet. - generated by [MaximumSet] rule", + "operationId": "AutoUpgradeProfiles_ListByFleet", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/autoUpgradeProfiles/autoupgradeprofile1", + "name": "autoupgradeprofile1", + "type": "Microsoft.ContainerService/fleets/autoUpgradeProfiles", + "systemData": { + "createdBy": "@contoso.com", + "createdByType": "User", + "createdAt": "2023-03-01T01:10:08.395Z", + "lastModifiedBy": "@contoso.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-03-01T01:10:08.395Z" + }, + "properties": { + "provisioningState": "Succeeded", + "channel": "Stable", + "updateStrategyId": "skcdtnw", + "nodeImageSelection": { + "type": "Latest" + }, + "disabled": true, + "autoUpgradeProfileStatus": { + "lastTriggeredAt": "2025-02-19T22:39:10.786Z", + "lastTriggerStatus": "Succeeded", + "lastTriggerError": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + }, + "lastTriggerUpgradeVersions": [ + "wjfesvtcxdnkq" + ] + } + }, + "eTag": "\"EtagValue\"" + } + ], + "nextLink": "http://nextlink.contoso.com" + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Create_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Create_MaximumSet_Gen.json new file mode 100644 index 000000000000..a924ca11b064 --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Create_MaximumSet_Gen.json @@ -0,0 +1,66 @@ +{ + "title": "Creates a FleetMember resource with a long running operation. - generated by [MaximumSet] rule", + "operationId": "FleetMembers_Create", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "wrifws", + "If-None-Match": "cvffafrakpwuuhxrxe", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "fleetMemberName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "resource": { + "properties": { + "clusterResourceId": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/cluster-1", + "group": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "clusterResourceId": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/cluster-1", + "group": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "provisioningState": "Succeeded" + }, + "eTag": "kd30rkdfo49=", + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet-1/members/member-1", + "name": "member-1", + "type": "Microsoft.ContainerService/fleets/members", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "clusterResourceId": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/cluster-1", + "group": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "provisioningState": "Succeeded" + }, + "eTag": "kd30rkdfo49=", + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet-1/members/member-1", + "name": "member-1", + "type": "Microsoft.ContainerService/fleets/members", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Delete_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..85de2ddfa1c8 --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Delete_MaximumSet_Gen.json @@ -0,0 +1,21 @@ +{ + "title": "Deletes a FleetMember resource asynchronously with a long running operation. - generated by [MaximumSet] rule", + "operationId": "FleetMembers_Delete", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "lizduv", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "fleetMemberName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Get_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..868a8df813fe --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Get_MaximumSet_Gen.json @@ -0,0 +1,34 @@ +{ + "title": "Gets a FleetMember resource. - generated by [MaximumSet] rule", + "operationId": "FleetMembers_Get", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "fleetMemberName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "properties": { + "clusterResourceId": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/cluster-1", + "group": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "provisioningState": "Succeeded" + }, + "eTag": "kd30rkdfo49=", + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet-1/members/member-1", + "name": "member-1", + "type": "Microsoft.ContainerService/fleets/members", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_ListByFleet_MaximumSet_Gen.json new file mode 100644 index 000000000000..cbe80a26c2e6 --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_ListByFleet_MaximumSet_Gen.json @@ -0,0 +1,38 @@ +{ + "title": "Lists the members of a Fleet. - generated by [MaximumSet] rule", + "operationId": "FleetMembers_ListByFleet", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet-1/members/member-1", + "name": "member-1", + "type": "Microsoft.ContainerService/fleets/members", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + }, + "eTag": "kd30rkdfo49=", + "properties": { + "clusterResourceId": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/cluster-1", + "provisioningState": "Succeeded", + "group": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Update_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..17960f6ee93f --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Update_MaximumSet_Gen.json @@ -0,0 +1,45 @@ +{ + "title": "Updates a FleetMember resource synchronously. - generated by [MaximumSet] rule", + "operationId": "FleetMembers_Update", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "tb", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "fleetMemberName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "properties": { + "properties": { + "group": "staging" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "clusterResourceId": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/cluster-1", + "group": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "provisioningState": "Succeeded" + }, + "eTag": "kd30rkdfo49=", + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet-1/members/member-1", + "name": "member-1", + "type": "Microsoft.ContainerService/fleets/members", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + }, + "202": { + "headers": { + "original-uri": "https://contoso.com/operationstatus" + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..77822b140a5c --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,99 @@ +{ + "title": "Create a FleetUpdateStrategy. - generated by [MaximumSet] rule", + "operationId": "FleetUpdateStrategies_CreateOrUpdate", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "ysolecusdtwlipjmkbaqeyfnbpm", + "If-None-Match": "lfroigptmejod", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "updateStrategyName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "resource": { + "properties": { + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + } + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "provisioningState": "Succeeded" + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "name": "strategy1", + "type": "Microsoft.ContainerService/fleets/updateStrategies", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "provisioningState": "Succeeded" + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "name": "strategy1", + "type": "Microsoft.ContainerService/fleets/updateStrategies", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Delete_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..1af37efd77ca --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Delete_MaximumSet_Gen.json @@ -0,0 +1,21 @@ +{ + "title": "Delete a FleetUpdateStrategy resource. - generated by [MaximumSet] rule", + "operationId": "FleetUpdateStrategies_Delete", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "hyomxpjfqrk", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "updateStrategyName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Get_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..bbf1aacf25b2 --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Get_MaximumSet_Gen.json @@ -0,0 +1,45 @@ +{ + "title": "Get a FleetUpdateStrategy resource. - generated by [MaximumSet] rule", + "operationId": "FleetUpdateStrategies_Get", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "updateStrategyName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "properties": { + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "provisioningState": "Succeeded" + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "name": "strategy1", + "type": "Microsoft.ContainerService/fleets/updateStrategies", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_ListByFleet_MaximumSet_Gen.json new file mode 100644 index 000000000000..bcbac871b580 --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_ListByFleet_MaximumSet_Gen.json @@ -0,0 +1,49 @@ +{ + "title": "List the FleetUpdateStrategy resources by fleet. - generated by [MaximumSet] rule", + "operationId": "FleetUpdateStrategies_ListByFleet", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "name": "strategy1", + "type": "Microsoft.ContainerService/fleets/updateStrategies", + "systemData": { + "createdBy": "@contoso.com", + "createdByType": "User", + "createdAt": "2023-03-01T01:10:08.395Z", + "lastModifiedBy": "@contoso.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-03-01T01:10:08.395Z" + }, + "properties": { + "provisioningState": "Succeeded", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + } + }, + "eTag": "\"EtagValue\"" + } + ], + "nextLink": "http://nextlink.contoso.com" + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..a1d2216a9ee1 --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,135 @@ +{ + "title": "Creates a Fleet resource with a long running operation. - generated by [MaximumSet] rule", + "operationId": "Fleets_CreateOrUpdate", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "uirpyfukqwkhjczjgobex", + "If-None-Match": "nnqjqomvqlukvjzimabldeemg", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "resource": { + "tags": {}, + "location": "East US", + "properties": { + "hubProfile": { + "dnsPrefix": "dnsprefix1", + "agentProfile": { + "vmSize": "Standard_DS1", + "subnetId": "z" + }, + "apiServerAccessProfile": { + "enablePrivateCluster": true, + "enableVnetIntegration": true, + "subnetId": "z" + } + } + }, + "identity": { + "type": "None", + "userAssignedIdentities": { + "key6720": {} + } + } + } + }, + "responses": { + "200": { + "body": { + "tags": {}, + "location": "East US", + "properties": { + "hubProfile": { + "dnsPrefix": "dnsprefix1", + "agentProfile": { + "vmSize": "Standard_DS1", + "subnetId": "z" + }, + "apiServerAccessProfile": { + "enablePrivateCluster": true, + "enableVnetIntegration": true, + "subnetId": "z" + }, + "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "kubernetesVersion": "1.22.4", + "portalFqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io" + }, + "provisioningState": "Succeeded" + }, + "eTag": "23ujdflewrj3=", + "identity": { + "principalId": "jgawflailr", + "tenantId": "t", + "type": "None", + "userAssignedIdentities": { + "key6720": { + "principalId": "bzuykwfgwtvcdipr", + "clientId": "bog" + } + } + }, + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet1", + "name": "fleet-1", + "type": "Microsoft.ContainerService/fleets", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "tags": {}, + "location": "East US", + "properties": { + "hubProfile": { + "dnsPrefix": "dnsprefix1", + "agentProfile": { + "vmSize": "Standard_DS1", + "subnetId": "z" + }, + "apiServerAccessProfile": { + "enablePrivateCluster": true, + "enableVnetIntegration": true, + "subnetId": "z" + }, + "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "kubernetesVersion": "1.22.4", + "portalFqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io" + }, + "provisioningState": "Succeeded" + }, + "eTag": "23ujdflewrj3=", + "identity": { + "principalId": "jgawflailr", + "tenantId": "t", + "type": "None", + "userAssignedIdentities": { + "key6720": { + "principalId": "bzuykwfgwtvcdipr", + "clientId": "bog" + } + } + }, + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet1", + "name": "fleet-1", + "type": "Microsoft.ContainerService/fleets", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Delete_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..d26ead11897b --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Delete_MaximumSet_Gen.json @@ -0,0 +1,20 @@ +{ + "title": "Deletes a Fleet resource asynchronously with a long running operation. - generated by [MaximumSet] rule", + "operationId": "Fleets_Delete", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "ppnihtqltdowtckhe", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Get_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..1b3ac0c55d2f --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Get_MaximumSet_Gen.json @@ -0,0 +1,59 @@ +{ + "title": "Gets a Fleet resource. - generated by [MaximumSet] rule", + "operationId": "Fleets_Get", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "tags": {}, + "location": "East US", + "properties": { + "hubProfile": { + "dnsPrefix": "dnsprefix1", + "agentProfile": { + "vmSize": "Standard_DS1", + "subnetId": "z" + }, + "apiServerAccessProfile": { + "enablePrivateCluster": true, + "enableVnetIntegration": true, + "subnetId": "z" + }, + "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "kubernetesVersion": "1.22.4", + "portalFqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io" + }, + "provisioningState": "Succeeded" + }, + "eTag": "23ujdflewrj3=", + "identity": { + "principalId": "jgawflailr", + "tenantId": "t", + "type": "None", + "userAssignedIdentities": { + "key6720": { + "principalId": "bzuykwfgwtvcdipr", + "clientId": "bog" + } + } + }, + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet1", + "name": "fleet-1", + "type": "Microsoft.ContainerService/fleets", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListByResourceGroup_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListByResourceGroup_MaximumSet_Gen.json new file mode 100644 index 000000000000..6be48f43e23e --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListByResourceGroup_MaximumSet_Gen.json @@ -0,0 +1,63 @@ +{ + "title": "Lists the Fleet resources in a resource group. - generated by [MaximumSet] rule", + "operationId": "Fleets_ListByResourceGroup", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet1", + "name": "fleet-1", + "type": "Microsoft.ContainerService/fleets", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + }, + "tags": {}, + "location": "East US", + "eTag": "23ujdflewrj3=", + "properties": { + "hubProfile": { + "dnsPrefix": "dnsprefix1", + "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "portalFqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "kubernetesVersion": "1.22.4", + "agentProfile": { + "vmSize": "Standard_DS1", + "subnetId": "z" + }, + "apiServerAccessProfile": { + "enablePrivateCluster": true, + "enableVnetIntegration": true, + "subnetId": "z" + } + }, + "provisioningState": "Succeeded" + }, + "identity": { + "principalId": "jgawflailr", + "tenantId": "t", + "type": "None", + "userAssignedIdentities": { + "key6720": { + "principalId": "bzuykwfgwtvcdipr", + "clientId": "bog" + } + } + } + } + ], + "nextLink": "https://microsoft.com/anas" + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListBySubscription_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListBySubscription_MaximumSet_Gen.json new file mode 100644 index 000000000000..8bc891b53817 --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListBySubscription_MaximumSet_Gen.json @@ -0,0 +1,62 @@ +{ + "title": "Lists the Fleet resources in a subscription. - generated by [MaximumSet] rule", + "operationId": "Fleets_ListBySubscription", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet1", + "name": "fleet-1", + "type": "Microsoft.ContainerService/fleets", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + }, + "tags": {}, + "location": "East US", + "eTag": "23ujdflewrj3=", + "properties": { + "hubProfile": { + "dnsPrefix": "dnsprefix1", + "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "portalFqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "kubernetesVersion": "1.22.4", + "agentProfile": { + "vmSize": "Standard_DS1", + "subnetId": "z" + }, + "apiServerAccessProfile": { + "enablePrivateCluster": true, + "enableVnetIntegration": true, + "subnetId": "z" + } + }, + "provisioningState": "Succeeded" + }, + "identity": { + "principalId": "jgawflailr", + "tenantId": "t", + "type": "None", + "userAssignedIdentities": { + "key6720": { + "principalId": "bzuykwfgwtvcdipr", + "clientId": "bog" + } + } + } + } + ], + "nextLink": "https://microsoft.com/anas" + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListCredentials_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListCredentials_MaximumSet_Gen.json new file mode 100644 index 000000000000..c0243af287bd --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListCredentials_MaximumSet_Gen.json @@ -0,0 +1,22 @@ +{ + "title": "Lists the user credentials of a Fleet. - generated by [MaximumSet] rule", + "operationId": "Fleets_ListCredentials", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "kubeconfigs": [ + { + "name": "credentialName1", + "value": "Y3JlZGVudGlhbFZhbHVlMQ==" + } + ] + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Update_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..f27f4c59b1b5 --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Update_MaximumSet_Gen.json @@ -0,0 +1,74 @@ +{ + "title": "Update a Fleet. - generated by [MaximumSet] rule", + "operationId": "Fleets_Update", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "eivhhpkbwguzttijskioz", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "properties": { + "tags": {}, + "identity": { + "type": "None", + "userAssignedIdentities": { + "key6720": {} + } + } + } + }, + "responses": { + "200": { + "body": { + "tags": {}, + "location": "East US", + "properties": { + "hubProfile": { + "dnsPrefix": "dnsprefix1", + "agentProfile": { + "vmSize": "Standard_DS1", + "subnetId": "z" + }, + "apiServerAccessProfile": { + "enablePrivateCluster": true, + "enableVnetIntegration": true, + "subnetId": "z" + }, + "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "kubernetesVersion": "1.22.4", + "portalFqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io" + }, + "provisioningState": "Succeeded" + }, + "eTag": "23ujdflewrj3=", + "identity": { + "principalId": "jgawflailr", + "tenantId": "t", + "type": "None", + "userAssignedIdentities": { + "key6720": { + "principalId": "bzuykwfgwtvcdipr", + "clientId": "bog" + } + } + }, + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet1", + "name": "fleet-1", + "type": "Microsoft.ContainerService/fleets", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + }, + "202": { + "headers": { + "original-uri": "https://contoso.com/operationstatus" + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MaximumSet_Gen.json new file mode 100644 index 000000000000..5c40c109df09 --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MaximumSet_Gen.json @@ -0,0 +1,28 @@ +{ + "title": "List the operations for the provider. - generated by [MaximumSet] rule", + "operationId": "Operations_List", + "parameters": { + "api-version": "2025-03-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "display": { + "operation": "Get Operation", + "provider": "Microsoft Container Service", + "resource": "Operation", + "description": "tpcd" + }, + "name": "Microsoft.ContainerService/locations/operations/read", + "origin": "user,system", + "isDataAction": true, + "actionType": "Internal" + } + ], + "nextLink": "https://microsoft.com/aghsbghm" + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MinimumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MinimumSet_Gen.json new file mode 100644 index 000000000000..9aa58f9870ed --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MinimumSet_Gen.json @@ -0,0 +1,12 @@ +{ + "title": "List the operations for the provider. - generated by [MinimumSet] rule", + "operationId": "Operations_List", + "parameters": { + "api-version": "2025-03-01" + }, + "responses": { + "200": { + "body": {} + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..038ab71b1a40 --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,379 @@ +{ + "title": "Create an UpdateRun. - generated by [MaximumSet] rule", + "operationId": "UpdateRuns_CreateOrUpdate", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "abdlcwdionq", + "If-None-Match": "lisvvkpuevjxytgopaqcq", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "resource": { + "properties": { + "updateStrategyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest", + "customNodeImageVersions": [ + {} + ] + } + }, + "status": { + "status": { + "state": "NotStarted", + "error": {} + }, + "nodeImageSelection": {} + } + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "updateStrategyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest", + "customNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + }, + "provisioningState": "Succeeded", + "status": { + "status": { + "startTime": "2025-02-19T22:39:10.792Z", + "completedTime": "2025-02-19T22:39:10.792Z", + "state": "NotStarted", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "stages": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "stage1", + "groups": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "group-a", + "members": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "member-one", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", + "operationId": "rxjsmuearjyhrsthixbcohpmkommx", + "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + } + ] + } + ], + "afterStageWaitStatus": { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "waitDurationInSeconds": 3600 + } + } + ], + "nodeImageSelection": { + "selectedNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + } + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateRuns/run1", + "name": "run1", + "type": "Microsoft.ContainerService/fleets/updateRuns", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "updateStrategyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest", + "customNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + }, + "provisioningState": "Succeeded", + "status": { + "status": { + "startTime": "2025-02-19T22:39:10.792Z", + "completedTime": "2025-02-19T22:39:10.792Z", + "state": "NotStarted", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "stages": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "stage1", + "groups": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "group-a", + "members": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "member-one", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", + "operationId": "rxjsmuearjyhrsthixbcohpmkommx", + "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + } + ] + } + ], + "afterStageWaitStatus": { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "waitDurationInSeconds": 3600 + } + } + ], + "nodeImageSelection": { + "selectedNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + } + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateRuns/run1", + "name": "run1", + "type": "Microsoft.ContainerService/fleets/updateRuns", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Delete_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..5a0a0b6e0167 --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Delete_MaximumSet_Gen.json @@ -0,0 +1,21 @@ +{ + "title": "Delete an updateRun resource. - generated by [MaximumSet] rule", + "operationId": "UpdateRuns_Delete", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "uuyhfmfoyyytwppuujowoajyam", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Get_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..55ceacce4e0f --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Get_MaximumSet_Gen.json @@ -0,0 +1,175 @@ +{ + "title": "Gets an UpdateRun resource. - generated by [MaximumSet] rule", + "operationId": "UpdateRuns_Get", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "properties": { + "updateStrategyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest", + "customNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + }, + "provisioningState": "Succeeded", + "status": { + "status": { + "startTime": "2025-02-19T22:39:10.792Z", + "completedTime": "2025-02-19T22:39:10.792Z", + "state": "NotStarted", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "stages": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "stage1", + "groups": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "group-a", + "members": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "member-one", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", + "operationId": "rxjsmuearjyhrsthixbcohpmkommx", + "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + } + ] + } + ], + "afterStageWaitStatus": { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "waitDurationInSeconds": 3600 + } + } + ], + "nodeImageSelection": { + "selectedNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + } + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateRuns/run1", + "name": "run1", + "type": "Microsoft.ContainerService/fleets/updateRuns", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_ListByFleet_MaximumSet_Gen.json new file mode 100644 index 000000000000..f754d3c16d62 --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_ListByFleet_MaximumSet_Gen.json @@ -0,0 +1,179 @@ +{ + "title": "Lists the UpdateRun resources by fleet. - generated by [MaximumSet] rule", + "operationId": "UpdateRuns_ListByFleet", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateRuns/run1", + "name": "run1", + "type": "Microsoft.ContainerService/fleets/updateRuns", + "systemData": { + "createdBy": "@contoso.com", + "createdByType": "User", + "createdAt": "2023-03-01T01:10:08.395Z", + "lastModifiedBy": "@contoso.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-03-01T01:10:08.395Z" + }, + "properties": { + "provisioningState": "Succeeded", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest", + "customNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + }, + "status": { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "stages": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "stage1", + "groups": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "group-a", + "members": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "member-one", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", + "operationId": "rxjsmuearjyhrsthixbcohpmkommx", + "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + } + ] + } + ], + "afterStageWaitStatus": { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "waitDurationInSeconds": 3600 + } + } + ], + "nodeImageSelection": { + "selectedNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + }, + "updateStrategyId": "skcdtnw" + }, + "eTag": "\"EtagValue\"" + } + ], + "nextLink": "http://nextlink.contoso.com" + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Skip_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Skip_MaximumSet_Gen.json new file mode 100644 index 000000000000..d4a00d46424b --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Skip_MaximumSet_Gen.json @@ -0,0 +1,193 @@ +{ + "title": "Skips one or more member/group/stage/afterStageWait(s) of an UpdateRun. - generated by [MaximumSet] rule", + "operationId": "UpdateRuns_Skip", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "ghwj", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "body": { + "targets": [ + { + "type": "Member", + "name": "member-one" + }, + { + "type": "AfterStageWait", + "name": "stage1" + } + ] + } + }, + "responses": { + "200": { + "body": { + "properties": { + "updateStrategyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest", + "customNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + }, + "provisioningState": "Succeeded", + "status": { + "status": { + "startTime": "2025-02-19T22:39:10.792Z", + "completedTime": "2025-02-19T22:39:10.792Z", + "state": "NotStarted", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "stages": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "stage1", + "groups": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "group-a", + "members": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "member-one", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", + "operationId": "rxjsmuearjyhrsthixbcohpmkommx", + "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + } + ] + } + ], + "afterStageWaitStatus": { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "waitDurationInSeconds": 3600 + } + } + ], + "nodeImageSelection": { + "selectedNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + } + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateRuns/run1", + "name": "run1", + "type": "Microsoft.ContainerService/fleets/updateRuns", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Start_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Start_MaximumSet_Gen.json new file mode 100644 index 000000000000..8453023dffbc --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Start_MaximumSet_Gen.json @@ -0,0 +1,181 @@ +{ + "title": "Starts an UpdateRun. - generated by [MaximumSet] rule", + "operationId": "UpdateRuns_Start", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "kjqphtdwlnfdgywwsoeovagogsiqs", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "properties": { + "updateStrategyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest", + "customNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + }, + "provisioningState": "Succeeded", + "status": { + "status": { + "startTime": "2025-02-19T22:39:10.792Z", + "completedTime": "2025-02-19T22:39:10.792Z", + "state": "NotStarted", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "stages": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "stage1", + "groups": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "group-a", + "members": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "member-one", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", + "operationId": "rxjsmuearjyhrsthixbcohpmkommx", + "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + } + ] + } + ], + "afterStageWaitStatus": { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "waitDurationInSeconds": 3600 + } + } + ], + "nodeImageSelection": { + "selectedNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + } + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateRuns/run1", + "name": "run1", + "type": "Microsoft.ContainerService/fleets/updateRuns", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Stop_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Stop_MaximumSet_Gen.json new file mode 100644 index 000000000000..da892c716923 --- /dev/null +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Stop_MaximumSet_Gen.json @@ -0,0 +1,181 @@ +{ + "title": "Stops an UpdateRun. - generated by [MaximumSet] rule", + "operationId": "UpdateRuns_Stop", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "ob", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "properties": { + "updateStrategyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest", + "customNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + }, + "provisioningState": "Succeeded", + "status": { + "status": { + "startTime": "2025-02-19T22:39:10.792Z", + "completedTime": "2025-02-19T22:39:10.792Z", + "state": "NotStarted", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "stages": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "stage1", + "groups": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "group-a", + "members": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "member-one", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", + "operationId": "rxjsmuearjyhrsthixbcohpmkommx", + "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + } + ] + } + ], + "afterStageWaitStatus": { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "waitDurationInSeconds": 3600 + } + } + ], + "nodeImageSelection": { + "selectedNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + } + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateRuns/run1", + "name": "run1", + "type": "Microsoft.ContainerService/fleets/updateRuns", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json index ce5432e6d214..3fc0c8bb3461 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json @@ -88,6 +88,12 @@ "x-ms-examples": { "List the operations for the provider.": { "$ref": "./examples/Operations_List.json" + }, + "Operations_List_MaximumSet_Gen": { + "$ref": "./examples/Operations_List_MaximumSet_Gen.json" + }, + "Operations_List_MinimumSet_Gen": { + "$ref": "./examples/Operations_List_MinimumSet_Gen.json" } }, "x-ms-pageable": { @@ -127,6 +133,9 @@ "x-ms-examples": { "Lists the Fleet resources in a subscription.": { "$ref": "./examples/Fleets_ListBySub.json" + }, + "Fleets_ListBySubscription_MaximumSet_Gen": { + "$ref": "./examples/Fleets_ListBySubscription_MaximumSet_Gen.json" } }, "x-ms-pageable": { @@ -169,6 +178,9 @@ "x-ms-examples": { "Lists the Fleet resources in a resource group.": { "$ref": "./examples/Fleets_ListByResourceGroup.json" + }, + "Fleets_ListByResourceGroup_MaximumSet_Gen": { + "$ref": "./examples/Fleets_ListByResourceGroup_MaximumSet_Gen.json" } }, "x-ms-pageable": { @@ -221,6 +233,9 @@ "x-ms-examples": { "Gets a Fleet resource.": { "$ref": "./examples/Fleets_Get.json" + }, + "Fleets_Get_MaximumSet_Gen": { + "$ref": "./examples/Fleets_Get_MaximumSet_Gen.json" } } }, @@ -306,6 +321,9 @@ "x-ms-examples": { "Creates a Fleet resource with a long running operation.": { "$ref": "./examples/Fleets_CreateOrUpdate.json" + }, + "Fleets_CreateOrUpdate_MaximumSet_Gen": { + "$ref": "./examples/Fleets_CreateOrUpdate_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -388,6 +406,9 @@ "x-ms-examples": { "Update a Fleet.": { "$ref": "./examples/Fleets_PatchTags.json" + }, + "Fleets_Update_MaximumSet_Gen": { + "$ref": "./examples/Fleets_Update_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -461,6 +482,9 @@ "x-ms-examples": { "Deletes a Fleet resource asynchronously with a long running operation.": { "$ref": "./examples/Fleets_Delete.json" + }, + "Fleets_Delete_MaximumSet_Gen": { + "$ref": "./examples/Fleets_Delete_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -514,6 +538,9 @@ "x-ms-examples": { "Lists the AutoUpgradeProfile resources by fleet.": { "$ref": "./examples/AutoUpgradeProfiles_ListByFleet.json" + }, + "AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen": { + "$ref": "./examples/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json" } }, "x-ms-pageable": { @@ -576,6 +603,9 @@ "x-ms-examples": { "Gets an AutoUpgradeProfile resource.": { "$ref": "./examples/AutoUpgradeProfiles_Get.json" + }, + "AutoUpgradeProfiles_Get_MaximumSet_Gen": { + "$ref": "./examples/AutoUpgradeProfiles_Get_MaximumSet_Gen.json" } } }, @@ -675,6 +705,9 @@ "x-ms-examples": { "Create an AutoUpgradeProfile.": { "$ref": "./examples/AutoUpgradeProfiles_CreateOrUpdate.json" + }, + "AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen": { + "$ref": "./examples/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -755,6 +788,9 @@ "x-ms-examples": { "Delete an AutoUpgradeProfile resource.": { "$ref": "./examples/AutoUpgradeProfiles_Delete.json" + }, + "AutoUpgradeProfiles_Delete_MaximumSet_Gen": { + "$ref": "./examples/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -808,6 +844,9 @@ "x-ms-examples": { "Lists the user credentials of a Fleet.": { "$ref": "./examples/Fleets_ListCredentialsResult.json" + }, + "Fleets_ListCredentials_MaximumSet_Gen": { + "$ref": "./examples/Fleets_ListCredentials_MaximumSet_Gen.json" } } } @@ -857,6 +896,9 @@ "x-ms-examples": { "Lists the members of a Fleet.": { "$ref": "./examples/FleetMembers_ListByFleet.json" + }, + "FleetMembers_ListByFleet_MaximumSet_Gen": { + "$ref": "./examples/FleetMembers_ListByFleet_MaximumSet_Gen.json" } }, "x-ms-pageable": { @@ -919,6 +961,9 @@ "x-ms-examples": { "Gets a FleetMember resource.": { "$ref": "./examples/FleetMembers_Get.json" + }, + "FleetMembers_Get_MaximumSet_Gen": { + "$ref": "./examples/FleetMembers_Get_MaximumSet_Gen.json" } } }, @@ -1014,6 +1059,9 @@ "x-ms-examples": { "Creates a FleetMember resource with a long running operation.": { "$ref": "./examples/FleetMembers_Create.json" + }, + "FleetMembers_Create_MaximumSet_Gen": { + "$ref": "./examples/FleetMembers_Create_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -1106,6 +1154,9 @@ "x-ms-examples": { "Updates a FleetMember resource synchronously.": { "$ref": "./examples/FleetMembers_Update.json" + }, + "FleetMembers_Update_MaximumSet_Gen": { + "$ref": "./examples/FleetMembers_Update_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -1189,6 +1240,9 @@ "x-ms-examples": { "Deletes a FleetMember resource asynchronously with a long running operation.": { "$ref": "./examples/FleetMembers_Delete.json" + }, + "FleetMembers_Delete_MaximumSet_Gen": { + "$ref": "./examples/FleetMembers_Delete_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -1242,6 +1296,9 @@ "x-ms-examples": { "Lists the UpdateRun resources by fleet.": { "$ref": "./examples/UpdateRuns_ListByFleet.json" + }, + "UpdateRuns_ListByFleet_MaximumSet_Gen": { + "$ref": "./examples/UpdateRuns_ListByFleet_MaximumSet_Gen.json" } }, "x-ms-pageable": { @@ -1304,6 +1361,9 @@ "x-ms-examples": { "Gets an UpdateRun resource.": { "$ref": "./examples/UpdateRuns_Get.json" + }, + "UpdateRuns_Get_MaximumSet_Gen": { + "$ref": "./examples/UpdateRuns_Get_MaximumSet_Gen.json" } } }, @@ -1399,6 +1459,9 @@ "x-ms-examples": { "Create an UpdateRun.": { "$ref": "./examples/UpdateRuns_CreateOrUpdate.json" + }, + "UpdateRuns_CreateOrUpdate_MaximumSet_Gen": { + "$ref": "./examples/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -1482,6 +1545,9 @@ "x-ms-examples": { "Delete an updateRun resource.": { "$ref": "./examples/UpdateRuns_Delete.json" + }, + "UpdateRuns_Delete_MaximumSet_Gen": { + "$ref": "./examples/UpdateRuns_Delete_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -1576,6 +1642,9 @@ "x-ms-examples": { "Skips one or more member/group/stage/afterStageWait(s) of an UpdateRun.": { "$ref": "./examples/UpdateRuns_Skip.json" + }, + "UpdateRuns_Skip_MaximumSet_Gen": { + "$ref": "./examples/UpdateRuns_Skip_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -1661,6 +1730,9 @@ "x-ms-examples": { "Starts an UpdateRun.": { "$ref": "./examples/UpdateRuns_Start.json" + }, + "UpdateRuns_Start_MaximumSet_Gen": { + "$ref": "./examples/UpdateRuns_Start_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -1746,6 +1818,9 @@ "x-ms-examples": { "Stops an UpdateRun.": { "$ref": "./examples/UpdateRuns_Stop.json" + }, + "UpdateRuns_Stop_MaximumSet_Gen": { + "$ref": "./examples/UpdateRuns_Stop_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -1799,6 +1874,9 @@ "x-ms-examples": { "List the FleetUpdateStrategy resources by fleet.": { "$ref": "./examples/UpdateStrategies_ListByFleet.json" + }, + "FleetUpdateStrategies_ListByFleet_MaximumSet_Gen": { + "$ref": "./examples/FleetUpdateStrategies_ListByFleet_MaximumSet_Gen.json" } }, "x-ms-pageable": { @@ -1861,6 +1939,9 @@ "x-ms-examples": { "Get a FleetUpdateStrategy resource.": { "$ref": "./examples/UpdateStrategies_Get.json" + }, + "FleetUpdateStrategies_Get_MaximumSet_Gen": { + "$ref": "./examples/FleetUpdateStrategies_Get_MaximumSet_Gen.json" } } }, @@ -1956,6 +2037,9 @@ "x-ms-examples": { "Create a FleetUpdateStrategy.": { "$ref": "./examples/UpdateStrategies_CreateOrUpdate.json" + }, + "FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen": { + "$ref": "./examples/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -2039,6 +2123,9 @@ "x-ms-examples": { "Delete a FleetUpdateStrategy resource.": { "$ref": "./examples/UpdateStrategies_Delete.json" + }, + "FleetUpdateStrategies_Delete_MaximumSet_Gen": { + "$ref": "./examples/FleetUpdateStrategies_Delete_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -3441,4 +3528,4 @@ } }, "parameters": {} -} +} \ No newline at end of file From f99b9acecf07520c21731085a1498be37eb4c3ac Mon Sep 17 00:00:00 2001 From: frantran Date: Wed, 19 Feb 2025 14:46:56 -0800 Subject: [PATCH 05/11] transfer examples --- ...rofiles_CreateOrUpdate_MaximumSet_Gen.json | 119 ++++++ ...UpgradeProfiles_Delete_MaximumSet_Gen.json | 20 + ...utoUpgradeProfiles_Get_MaximumSet_Gen.json | 57 +++ ...deProfiles_ListByFleet_MaximumSet_Gen.json | 61 +++ .../FleetMembers_Create_MaximumSet_Gen.json | 66 +++ .../FleetMembers_Delete_MaximumSet_Gen.json | 21 + .../FleetMembers_Get_MaximumSet_Gen.json | 34 ++ ...eetMembers_ListByFleet_MaximumSet_Gen.json | 38 ++ .../FleetMembers_Update_MaximumSet_Gen.json | 45 +++ ...ategies_CreateOrUpdate_MaximumSet_Gen.json | 99 +++++ ...pdateStrategies_Delete_MaximumSet_Gen.json | 21 + ...etUpdateStrategies_Get_MaximumSet_Gen.json | 45 +++ ...Strategies_ListByFleet_MaximumSet_Gen.json | 49 +++ .../Fleets_CreateOrUpdate_MaximumSet_Gen.json | 135 +++++++ .../Fleets_Delete_MaximumSet_Gen.json | 20 + .../2025-03-01/Fleets_Get_MaximumSet_Gen.json | 59 +++ ...ts_ListByResourceGroup_MaximumSet_Gen.json | 63 +++ ...ets_ListBySubscription_MaximumSet_Gen.json | 62 +++ ...Fleets_ListCredentials_MaximumSet_Gen.json | 22 + .../Fleets_Update_MaximumSet_Gen.json | 74 ++++ .../Operations_List_MaximumSet_Gen.json | 28 ++ .../Operations_List_MinimumSet_Gen.json | 12 + ...ateRuns_CreateOrUpdate_MaximumSet_Gen.json | 379 ++++++++++++++++++ .../UpdateRuns_Delete_MaximumSet_Gen.json | 21 + .../UpdateRuns_Get_MaximumSet_Gen.json | 175 ++++++++ ...UpdateRuns_ListByFleet_MaximumSet_Gen.json | 179 +++++++++ .../UpdateRuns_Skip_MaximumSet_Gen.json | 193 +++++++++ .../UpdateRuns_Start_MaximumSet_Gen.json | 181 +++++++++ .../UpdateRuns_Stop_MaximumSet_Gen.json | 181 +++++++++ 29 files changed, 2459 insertions(+) create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Get_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Create_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Delete_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Get_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_ListByFleet_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Update_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Delete_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Get_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_ListByFleet_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_CreateOrUpdate_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Delete_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Get_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListByResourceGroup_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListBySubscription_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListCredentials_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Update_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MinimumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Delete_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Get_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_ListByFleet_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Skip_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Start_MaximumSet_Gen.json create mode 100644 specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Stop_MaximumSet_Gen.json diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..ab0a0095f32f --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,119 @@ +{ + "title": "Create an AutoUpgradeProfile. - generated by [MaximumSet] rule", + "operationId": "AutoUpgradeProfiles_CreateOrUpdate", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "irugdrminrllxnxfebziysfijsq", + "If-None-Match": "ktfmpsvpbiphyqiixda", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "autoUpgradeProfileName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "resource": { + "properties": { + "channel": "Stable", + "updateStrategyId": "skcdtnw", + "nodeImageSelection": { + "type": "Latest" + }, + "disabled": true, + "autoUpgradeProfileStatus": { + "lastTriggerError": {} + } + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "channel": "Stable", + "provisioningState": "Succeeded", + "updateStrategyId": "skcdtnw", + "nodeImageSelection": { + "type": "Latest" + }, + "disabled": true, + "autoUpgradeProfileStatus": { + "lastTriggeredAt": "2025-02-19T22:39:10.786Z", + "lastTriggerStatus": "Succeeded", + "lastTriggerError": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + }, + "lastTriggerUpgradeVersions": [ + "wjfesvtcxdnkq" + ] + } + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/autoUpgradeProfiles/autoupgradeprofile1", + "name": "autoupgradeprofile1", + "type": "Microsoft.ContainerService/fleets/autoUpgradeProfiles", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "channel": "Stable", + "provisioningState": "Succeeded", + "updateStrategyId": "skcdtnw", + "nodeImageSelection": { + "type": "Latest" + }, + "disabled": true, + "autoUpgradeProfileStatus": { + "lastTriggeredAt": "2025-02-19T22:39:10.786Z", + "lastTriggerStatus": "Succeeded", + "lastTriggerError": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + }, + "lastTriggerUpgradeVersions": [ + "wjfesvtcxdnkq" + ] + } + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/autoUpgradeProfiles/autoupgradeprofile1", + "name": "autoupgradeprofile1", + "type": "Microsoft.ContainerService/fleets/autoUpgradeProfiles", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..a1fd9ab1b595 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json @@ -0,0 +1,20 @@ +{ + "title": "Delete an AutoUpgradeProfile resource. - generated by [MaximumSet] rule", + "operationId": "AutoUpgradeProfiles_Delete", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "yjtwfcfvifjgvxbmvvpwr", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "autoUpgradeProfileName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Get_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..3b1f4eedd495 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Get_MaximumSet_Gen.json @@ -0,0 +1,57 @@ +{ + "title": "Gets an AutoUpgradeProfile resource. - generated by [MaximumSet] rule", + "operationId": "AutoUpgradeProfiles_Get", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "autoUpgradeProfileName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "properties": { + "channel": "Stable", + "provisioningState": "Succeeded", + "updateStrategyId": "skcdtnw", + "nodeImageSelection": { + "type": "Latest" + }, + "disabled": true, + "autoUpgradeProfileStatus": { + "lastTriggeredAt": "2025-02-19T22:39:10.786Z", + "lastTriggerStatus": "Succeeded", + "lastTriggerError": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + }, + "lastTriggerUpgradeVersions": [ + "wjfesvtcxdnkq" + ] + } + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/autoUpgradeProfiles/autoupgradeprofile1", + "name": "autoupgradeprofile1", + "type": "Microsoft.ContainerService/fleets/autoUpgradeProfiles", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json new file mode 100644 index 000000000000..498eba742a26 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json @@ -0,0 +1,61 @@ +{ + "title": "Lists the AutoUpgradeProfile resources by fleet. - generated by [MaximumSet] rule", + "operationId": "AutoUpgradeProfiles_ListByFleet", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/autoUpgradeProfiles/autoupgradeprofile1", + "name": "autoupgradeprofile1", + "type": "Microsoft.ContainerService/fleets/autoUpgradeProfiles", + "systemData": { + "createdBy": "@contoso.com", + "createdByType": "User", + "createdAt": "2023-03-01T01:10:08.395Z", + "lastModifiedBy": "@contoso.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-03-01T01:10:08.395Z" + }, + "properties": { + "provisioningState": "Succeeded", + "channel": "Stable", + "updateStrategyId": "skcdtnw", + "nodeImageSelection": { + "type": "Latest" + }, + "disabled": true, + "autoUpgradeProfileStatus": { + "lastTriggeredAt": "2025-02-19T22:39:10.786Z", + "lastTriggerStatus": "Succeeded", + "lastTriggerError": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + }, + "lastTriggerUpgradeVersions": [ + "wjfesvtcxdnkq" + ] + } + }, + "eTag": "\"EtagValue\"" + } + ], + "nextLink": "http://nextlink.contoso.com" + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Create_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Create_MaximumSet_Gen.json new file mode 100644 index 000000000000..a924ca11b064 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Create_MaximumSet_Gen.json @@ -0,0 +1,66 @@ +{ + "title": "Creates a FleetMember resource with a long running operation. - generated by [MaximumSet] rule", + "operationId": "FleetMembers_Create", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "wrifws", + "If-None-Match": "cvffafrakpwuuhxrxe", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "fleetMemberName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "resource": { + "properties": { + "clusterResourceId": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/cluster-1", + "group": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "clusterResourceId": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/cluster-1", + "group": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "provisioningState": "Succeeded" + }, + "eTag": "kd30rkdfo49=", + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet-1/members/member-1", + "name": "member-1", + "type": "Microsoft.ContainerService/fleets/members", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "clusterResourceId": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/cluster-1", + "group": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "provisioningState": "Succeeded" + }, + "eTag": "kd30rkdfo49=", + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet-1/members/member-1", + "name": "member-1", + "type": "Microsoft.ContainerService/fleets/members", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Delete_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..85de2ddfa1c8 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Delete_MaximumSet_Gen.json @@ -0,0 +1,21 @@ +{ + "title": "Deletes a FleetMember resource asynchronously with a long running operation. - generated by [MaximumSet] rule", + "operationId": "FleetMembers_Delete", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "lizduv", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "fleetMemberName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Get_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..868a8df813fe --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Get_MaximumSet_Gen.json @@ -0,0 +1,34 @@ +{ + "title": "Gets a FleetMember resource. - generated by [MaximumSet] rule", + "operationId": "FleetMembers_Get", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "fleetMemberName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "properties": { + "clusterResourceId": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/cluster-1", + "group": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "provisioningState": "Succeeded" + }, + "eTag": "kd30rkdfo49=", + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet-1/members/member-1", + "name": "member-1", + "type": "Microsoft.ContainerService/fleets/members", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_ListByFleet_MaximumSet_Gen.json new file mode 100644 index 000000000000..cbe80a26c2e6 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_ListByFleet_MaximumSet_Gen.json @@ -0,0 +1,38 @@ +{ + "title": "Lists the members of a Fleet. - generated by [MaximumSet] rule", + "operationId": "FleetMembers_ListByFleet", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet-1/members/member-1", + "name": "member-1", + "type": "Microsoft.ContainerService/fleets/members", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + }, + "eTag": "kd30rkdfo49=", + "properties": { + "clusterResourceId": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/cluster-1", + "provisioningState": "Succeeded", + "group": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + } + } + ], + "nextLink": "https://microsoft.com/a" + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Update_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..17960f6ee93f --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Update_MaximumSet_Gen.json @@ -0,0 +1,45 @@ +{ + "title": "Updates a FleetMember resource synchronously. - generated by [MaximumSet] rule", + "operationId": "FleetMembers_Update", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "tb", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "fleetMemberName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "properties": { + "properties": { + "group": "staging" + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "clusterResourceId": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/managedClusters/cluster-1", + "group": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "provisioningState": "Succeeded" + }, + "eTag": "kd30rkdfo49=", + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet-1/members/member-1", + "name": "member-1", + "type": "Microsoft.ContainerService/fleets/members", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + }, + "202": { + "headers": { + "original-uri": "https://contoso.com/operationstatus" + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..77822b140a5c --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,99 @@ +{ + "title": "Create a FleetUpdateStrategy. - generated by [MaximumSet] rule", + "operationId": "FleetUpdateStrategies_CreateOrUpdate", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "ysolecusdtwlipjmkbaqeyfnbpm", + "If-None-Match": "lfroigptmejod", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "updateStrategyName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "resource": { + "properties": { + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + } + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "provisioningState": "Succeeded" + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "name": "strategy1", + "type": "Microsoft.ContainerService/fleets/updateStrategies", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "provisioningState": "Succeeded" + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "name": "strategy1", + "type": "Microsoft.ContainerService/fleets/updateStrategies", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Delete_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..1af37efd77ca --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Delete_MaximumSet_Gen.json @@ -0,0 +1,21 @@ +{ + "title": "Delete a FleetUpdateStrategy resource. - generated by [MaximumSet] rule", + "operationId": "FleetUpdateStrategies_Delete", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "hyomxpjfqrk", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "updateStrategyName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Get_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..bbf1aacf25b2 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Get_MaximumSet_Gen.json @@ -0,0 +1,45 @@ +{ + "title": "Get a FleetUpdateStrategy resource. - generated by [MaximumSet] rule", + "operationId": "FleetUpdateStrategies_Get", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "updateStrategyName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "properties": { + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "provisioningState": "Succeeded" + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "name": "strategy1", + "type": "Microsoft.ContainerService/fleets/updateStrategies", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_ListByFleet_MaximumSet_Gen.json new file mode 100644 index 000000000000..bcbac871b580 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_ListByFleet_MaximumSet_Gen.json @@ -0,0 +1,49 @@ +{ + "title": "List the FleetUpdateStrategy resources by fleet. - generated by [MaximumSet] rule", + "operationId": "FleetUpdateStrategies_ListByFleet", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "name": "strategy1", + "type": "Microsoft.ContainerService/fleets/updateStrategies", + "systemData": { + "createdBy": "@contoso.com", + "createdByType": "User", + "createdAt": "2023-03-01T01:10:08.395Z", + "lastModifiedBy": "@contoso.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-03-01T01:10:08.395Z" + }, + "properties": { + "provisioningState": "Succeeded", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + } + }, + "eTag": "\"EtagValue\"" + } + ], + "nextLink": "http://nextlink.contoso.com" + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..a1d2216a9ee1 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,135 @@ +{ + "title": "Creates a Fleet resource with a long running operation. - generated by [MaximumSet] rule", + "operationId": "Fleets_CreateOrUpdate", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "uirpyfukqwkhjczjgobex", + "If-None-Match": "nnqjqomvqlukvjzimabldeemg", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "resource": { + "tags": {}, + "location": "East US", + "properties": { + "hubProfile": { + "dnsPrefix": "dnsprefix1", + "agentProfile": { + "vmSize": "Standard_DS1", + "subnetId": "z" + }, + "apiServerAccessProfile": { + "enablePrivateCluster": true, + "enableVnetIntegration": true, + "subnetId": "z" + } + } + }, + "identity": { + "type": "None", + "userAssignedIdentities": { + "key6720": {} + } + } + } + }, + "responses": { + "200": { + "body": { + "tags": {}, + "location": "East US", + "properties": { + "hubProfile": { + "dnsPrefix": "dnsprefix1", + "agentProfile": { + "vmSize": "Standard_DS1", + "subnetId": "z" + }, + "apiServerAccessProfile": { + "enablePrivateCluster": true, + "enableVnetIntegration": true, + "subnetId": "z" + }, + "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "kubernetesVersion": "1.22.4", + "portalFqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io" + }, + "provisioningState": "Succeeded" + }, + "eTag": "23ujdflewrj3=", + "identity": { + "principalId": "jgawflailr", + "tenantId": "t", + "type": "None", + "userAssignedIdentities": { + "key6720": { + "principalId": "bzuykwfgwtvcdipr", + "clientId": "bog" + } + } + }, + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet1", + "name": "fleet-1", + "type": "Microsoft.ContainerService/fleets", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "tags": {}, + "location": "East US", + "properties": { + "hubProfile": { + "dnsPrefix": "dnsprefix1", + "agentProfile": { + "vmSize": "Standard_DS1", + "subnetId": "z" + }, + "apiServerAccessProfile": { + "enablePrivateCluster": true, + "enableVnetIntegration": true, + "subnetId": "z" + }, + "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "kubernetesVersion": "1.22.4", + "portalFqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io" + }, + "provisioningState": "Succeeded" + }, + "eTag": "23ujdflewrj3=", + "identity": { + "principalId": "jgawflailr", + "tenantId": "t", + "type": "None", + "userAssignedIdentities": { + "key6720": { + "principalId": "bzuykwfgwtvcdipr", + "clientId": "bog" + } + } + }, + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet1", + "name": "fleet-1", + "type": "Microsoft.ContainerService/fleets", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Delete_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..d26ead11897b --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Delete_MaximumSet_Gen.json @@ -0,0 +1,20 @@ +{ + "title": "Deletes a Fleet resource asynchronously with a long running operation. - generated by [MaximumSet] rule", + "operationId": "Fleets_Delete", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "ppnihtqltdowtckhe", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Get_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..1b3ac0c55d2f --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Get_MaximumSet_Gen.json @@ -0,0 +1,59 @@ +{ + "title": "Gets a Fleet resource. - generated by [MaximumSet] rule", + "operationId": "Fleets_Get", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "tags": {}, + "location": "East US", + "properties": { + "hubProfile": { + "dnsPrefix": "dnsprefix1", + "agentProfile": { + "vmSize": "Standard_DS1", + "subnetId": "z" + }, + "apiServerAccessProfile": { + "enablePrivateCluster": true, + "enableVnetIntegration": true, + "subnetId": "z" + }, + "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "kubernetesVersion": "1.22.4", + "portalFqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io" + }, + "provisioningState": "Succeeded" + }, + "eTag": "23ujdflewrj3=", + "identity": { + "principalId": "jgawflailr", + "tenantId": "t", + "type": "None", + "userAssignedIdentities": { + "key6720": { + "principalId": "bzuykwfgwtvcdipr", + "clientId": "bog" + } + } + }, + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet1", + "name": "fleet-1", + "type": "Microsoft.ContainerService/fleets", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListByResourceGroup_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListByResourceGroup_MaximumSet_Gen.json new file mode 100644 index 000000000000..6be48f43e23e --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListByResourceGroup_MaximumSet_Gen.json @@ -0,0 +1,63 @@ +{ + "title": "Lists the Fleet resources in a resource group. - generated by [MaximumSet] rule", + "operationId": "Fleets_ListByResourceGroup", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet1", + "name": "fleet-1", + "type": "Microsoft.ContainerService/fleets", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + }, + "tags": {}, + "location": "East US", + "eTag": "23ujdflewrj3=", + "properties": { + "hubProfile": { + "dnsPrefix": "dnsprefix1", + "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "portalFqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "kubernetesVersion": "1.22.4", + "agentProfile": { + "vmSize": "Standard_DS1", + "subnetId": "z" + }, + "apiServerAccessProfile": { + "enablePrivateCluster": true, + "enableVnetIntegration": true, + "subnetId": "z" + } + }, + "provisioningState": "Succeeded" + }, + "identity": { + "principalId": "jgawflailr", + "tenantId": "t", + "type": "None", + "userAssignedIdentities": { + "key6720": { + "principalId": "bzuykwfgwtvcdipr", + "clientId": "bog" + } + } + } + } + ], + "nextLink": "https://microsoft.com/anas" + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListBySubscription_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListBySubscription_MaximumSet_Gen.json new file mode 100644 index 000000000000..8bc891b53817 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListBySubscription_MaximumSet_Gen.json @@ -0,0 +1,62 @@ +{ + "title": "Lists the Fleet resources in a subscription. - generated by [MaximumSet] rule", + "operationId": "Fleets_ListBySubscription", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet1", + "name": "fleet-1", + "type": "Microsoft.ContainerService/fleets", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + }, + "tags": {}, + "location": "East US", + "eTag": "23ujdflewrj3=", + "properties": { + "hubProfile": { + "dnsPrefix": "dnsprefix1", + "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "portalFqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "kubernetesVersion": "1.22.4", + "agentProfile": { + "vmSize": "Standard_DS1", + "subnetId": "z" + }, + "apiServerAccessProfile": { + "enablePrivateCluster": true, + "enableVnetIntegration": true, + "subnetId": "z" + } + }, + "provisioningState": "Succeeded" + }, + "identity": { + "principalId": "jgawflailr", + "tenantId": "t", + "type": "None", + "userAssignedIdentities": { + "key6720": { + "principalId": "bzuykwfgwtvcdipr", + "clientId": "bog" + } + } + } + } + ], + "nextLink": "https://microsoft.com/anas" + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListCredentials_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListCredentials_MaximumSet_Gen.json new file mode 100644 index 000000000000..c0243af287bd --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListCredentials_MaximumSet_Gen.json @@ -0,0 +1,22 @@ +{ + "title": "Lists the user credentials of a Fleet. - generated by [MaximumSet] rule", + "operationId": "Fleets_ListCredentials", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "kubeconfigs": [ + { + "name": "credentialName1", + "value": "Y3JlZGVudGlhbFZhbHVlMQ==" + } + ] + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Update_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Update_MaximumSet_Gen.json new file mode 100644 index 000000000000..f27f4c59b1b5 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Update_MaximumSet_Gen.json @@ -0,0 +1,74 @@ +{ + "title": "Update a Fleet. - generated by [MaximumSet] rule", + "operationId": "Fleets_Update", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "eivhhpkbwguzttijskioz", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "properties": { + "tags": {}, + "identity": { + "type": "None", + "userAssignedIdentities": { + "key6720": {} + } + } + } + }, + "responses": { + "200": { + "body": { + "tags": {}, + "location": "East US", + "properties": { + "hubProfile": { + "dnsPrefix": "dnsprefix1", + "agentProfile": { + "vmSize": "Standard_DS1", + "subnetId": "z" + }, + "apiServerAccessProfile": { + "enablePrivateCluster": true, + "enableVnetIntegration": true, + "subnetId": "z" + }, + "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", + "kubernetesVersion": "1.22.4", + "portalFqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io" + }, + "provisioningState": "Succeeded" + }, + "eTag": "23ujdflewrj3=", + "identity": { + "principalId": "jgawflailr", + "tenantId": "t", + "type": "None", + "userAssignedIdentities": { + "key6720": { + "principalId": "bzuykwfgwtvcdipr", + "clientId": "bog" + } + } + }, + "id": "/subscriptions/subid1/resourcegroups/rg1/providers/Microsoft.ContainerService/fleets/fleet1", + "name": "fleet-1", + "type": "Microsoft.ContainerService/fleets", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + }, + "202": { + "headers": { + "original-uri": "https://contoso.com/operationstatus" + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MaximumSet_Gen.json new file mode 100644 index 000000000000..5c40c109df09 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MaximumSet_Gen.json @@ -0,0 +1,28 @@ +{ + "title": "List the operations for the provider. - generated by [MaximumSet] rule", + "operationId": "Operations_List", + "parameters": { + "api-version": "2025-03-01" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "display": { + "operation": "Get Operation", + "provider": "Microsoft Container Service", + "resource": "Operation", + "description": "tpcd" + }, + "name": "Microsoft.ContainerService/locations/operations/read", + "origin": "user,system", + "isDataAction": true, + "actionType": "Internal" + } + ], + "nextLink": "https://microsoft.com/aghsbghm" + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MinimumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MinimumSet_Gen.json new file mode 100644 index 000000000000..9aa58f9870ed --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MinimumSet_Gen.json @@ -0,0 +1,12 @@ +{ + "title": "List the operations for the provider. - generated by [MinimumSet] rule", + "operationId": "Operations_List", + "parameters": { + "api-version": "2025-03-01" + }, + "responses": { + "200": { + "body": {} + } + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json new file mode 100644 index 000000000000..038ab71b1a40 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json @@ -0,0 +1,379 @@ +{ + "title": "Create an UpdateRun. - generated by [MaximumSet] rule", + "operationId": "UpdateRuns_CreateOrUpdate", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "abdlcwdionq", + "If-None-Match": "lisvvkpuevjxytgopaqcq", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "resource": { + "properties": { + "updateStrategyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest", + "customNodeImageVersions": [ + {} + ] + } + }, + "status": { + "status": { + "state": "NotStarted", + "error": {} + }, + "nodeImageSelection": {} + } + } + } + }, + "responses": { + "200": { + "body": { + "properties": { + "updateStrategyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest", + "customNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + }, + "provisioningState": "Succeeded", + "status": { + "status": { + "startTime": "2025-02-19T22:39:10.792Z", + "completedTime": "2025-02-19T22:39:10.792Z", + "state": "NotStarted", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "stages": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "stage1", + "groups": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "group-a", + "members": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "member-one", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", + "operationId": "rxjsmuearjyhrsthixbcohpmkommx", + "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + } + ] + } + ], + "afterStageWaitStatus": { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "waitDurationInSeconds": 3600 + } + } + ], + "nodeImageSelection": { + "selectedNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + } + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateRuns/run1", + "name": "run1", + "type": "Microsoft.ContainerService/fleets/updateRuns", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + }, + "201": { + "headers": { + "Azure-AsyncOperation": "https://contoso.com/operationstatus" + }, + "body": { + "properties": { + "updateStrategyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest", + "customNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + }, + "provisioningState": "Succeeded", + "status": { + "status": { + "startTime": "2025-02-19T22:39:10.792Z", + "completedTime": "2025-02-19T22:39:10.792Z", + "state": "NotStarted", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "stages": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "stage1", + "groups": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "group-a", + "members": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "member-one", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", + "operationId": "rxjsmuearjyhrsthixbcohpmkommx", + "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + } + ] + } + ], + "afterStageWaitStatus": { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "waitDurationInSeconds": 3600 + } + } + ], + "nodeImageSelection": { + "selectedNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + } + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateRuns/run1", + "name": "run1", + "type": "Microsoft.ContainerService/fleets/updateRuns", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Delete_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Delete_MaximumSet_Gen.json new file mode 100644 index 000000000000..5a0a0b6e0167 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Delete_MaximumSet_Gen.json @@ -0,0 +1,21 @@ +{ + "title": "Delete an updateRun resource. - generated by [MaximumSet] rule", + "operationId": "UpdateRuns_Delete", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "uuyhfmfoyyytwppuujowoajyam", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": {}, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + }, + "204": {} + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Get_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Get_MaximumSet_Gen.json new file mode 100644 index 000000000000..55ceacce4e0f --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Get_MaximumSet_Gen.json @@ -0,0 +1,175 @@ +{ + "title": "Gets an UpdateRun resource. - generated by [MaximumSet] rule", + "operationId": "UpdateRuns_Get", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "properties": { + "updateStrategyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest", + "customNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + }, + "provisioningState": "Succeeded", + "status": { + "status": { + "startTime": "2025-02-19T22:39:10.792Z", + "completedTime": "2025-02-19T22:39:10.792Z", + "state": "NotStarted", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "stages": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "stage1", + "groups": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "group-a", + "members": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "member-one", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", + "operationId": "rxjsmuearjyhrsthixbcohpmkommx", + "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + } + ] + } + ], + "afterStageWaitStatus": { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "waitDurationInSeconds": 3600 + } + } + ], + "nodeImageSelection": { + "selectedNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + } + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateRuns/run1", + "name": "run1", + "type": "Microsoft.ContainerService/fleets/updateRuns", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_ListByFleet_MaximumSet_Gen.json new file mode 100644 index 000000000000..f754d3c16d62 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_ListByFleet_MaximumSet_Gen.json @@ -0,0 +1,179 @@ +{ + "title": "Lists the UpdateRun resources by fleet. - generated by [MaximumSet] rule", + "operationId": "UpdateRuns_ListByFleet", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateRuns/run1", + "name": "run1", + "type": "Microsoft.ContainerService/fleets/updateRuns", + "systemData": { + "createdBy": "@contoso.com", + "createdByType": "User", + "createdAt": "2023-03-01T01:10:08.395Z", + "lastModifiedBy": "@contoso.com", + "lastModifiedByType": "User", + "lastModifiedAt": "2023-03-01T01:10:08.395Z" + }, + "properties": { + "provisioningState": "Succeeded", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest", + "customNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + }, + "status": { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "stages": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "stage1", + "groups": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "group-a", + "members": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "member-one", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", + "operationId": "rxjsmuearjyhrsthixbcohpmkommx", + "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + } + ] + } + ], + "afterStageWaitStatus": { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "waitDurationInSeconds": 3600 + } + } + ], + "nodeImageSelection": { + "selectedNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + }, + "updateStrategyId": "skcdtnw" + }, + "eTag": "\"EtagValue\"" + } + ], + "nextLink": "http://nextlink.contoso.com" + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Skip_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Skip_MaximumSet_Gen.json new file mode 100644 index 000000000000..d4a00d46424b --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Skip_MaximumSet_Gen.json @@ -0,0 +1,193 @@ +{ + "title": "Skips one or more member/group/stage/afterStageWait(s) of an UpdateRun. - generated by [MaximumSet] rule", + "operationId": "UpdateRuns_Skip", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "ghwj", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "body": { + "targets": [ + { + "type": "Member", + "name": "member-one" + }, + { + "type": "AfterStageWait", + "name": "stage1" + } + ] + } + }, + "responses": { + "200": { + "body": { + "properties": { + "updateStrategyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest", + "customNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + }, + "provisioningState": "Succeeded", + "status": { + "status": { + "startTime": "2025-02-19T22:39:10.792Z", + "completedTime": "2025-02-19T22:39:10.792Z", + "state": "NotStarted", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "stages": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "stage1", + "groups": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "group-a", + "members": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "member-one", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", + "operationId": "rxjsmuearjyhrsthixbcohpmkommx", + "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + } + ] + } + ], + "afterStageWaitStatus": { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "waitDurationInSeconds": 3600 + } + } + ], + "nodeImageSelection": { + "selectedNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + } + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateRuns/run1", + "name": "run1", + "type": "Microsoft.ContainerService/fleets/updateRuns", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Start_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Start_MaximumSet_Gen.json new file mode 100644 index 000000000000..8453023dffbc --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Start_MaximumSet_Gen.json @@ -0,0 +1,181 @@ +{ + "title": "Starts an UpdateRun. - generated by [MaximumSet] rule", + "operationId": "UpdateRuns_Start", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "kjqphtdwlnfdgywwsoeovagogsiqs", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "properties": { + "updateStrategyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest", + "customNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + }, + "provisioningState": "Succeeded", + "status": { + "status": { + "startTime": "2025-02-19T22:39:10.792Z", + "completedTime": "2025-02-19T22:39:10.792Z", + "state": "NotStarted", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "stages": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "stage1", + "groups": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "group-a", + "members": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "member-one", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", + "operationId": "rxjsmuearjyhrsthixbcohpmkommx", + "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + } + ] + } + ], + "afterStageWaitStatus": { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "waitDurationInSeconds": 3600 + } + } + ], + "nodeImageSelection": { + "selectedNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + } + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateRuns/run1", + "name": "run1", + "type": "Microsoft.ContainerService/fleets/updateRuns", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} \ No newline at end of file diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Stop_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Stop_MaximumSet_Gen.json new file mode 100644 index 000000000000..da892c716923 --- /dev/null +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Stop_MaximumSet_Gen.json @@ -0,0 +1,181 @@ +{ + "title": "Stops an UpdateRun. - generated by [MaximumSet] rule", + "operationId": "UpdateRuns_Stop", + "parameters": { + "api-version": "2025-03-01", + "subscriptionId": "subid1", + "resourceGroupName": "rgfleets", + "If-Match": "ob", + "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", + "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" + }, + "responses": { + "200": { + "body": { + "properties": { + "updateStrategyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateStrategies/strategy1", + "strategy": { + "stages": [ + { + "name": "stage1", + "groups": [ + { + "name": "group-a" + } + ], + "afterStageWaitInSeconds": 3600 + } + ] + }, + "managedClusterUpdate": { + "upgrade": { + "type": "Full", + "kubernetesVersion": "1.26.1" + }, + "nodeImageSelection": { + "type": "Latest", + "customNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + }, + "provisioningState": "Succeeded", + "status": { + "status": { + "startTime": "2025-02-19T22:39:10.792Z", + "completedTime": "2025-02-19T22:39:10.792Z", + "state": "NotStarted", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "stages": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "stage1", + "groups": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "group-a", + "members": [ + { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "name": "member-one", + "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", + "operationId": "rxjsmuearjyhrsthixbcohpmkommx", + "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + } + ] + } + ], + "afterStageWaitStatus": { + "status": { + "state": "NotStarted", + "startTime": "2025-02-19T22:39:10.791Z", + "completedTime": "2025-02-19T22:39:10.791Z", + "error": { + "code": "qzqj", + "message": "osupezyqdwqhdrcg", + "target": "kofcubxtiwnhinnfbpwpee", + "details": [], + "additionalInfo": [ + { + "type": "wxmgrx", + "info": {} + } + ] + } + }, + "waitDurationInSeconds": 3600 + } + } + ], + "nodeImageSelection": { + "selectedNodeImageVersions": [ + { + "version": "ysmeyalytmcziwnbbpkd" + } + ] + } + } + }, + "eTag": "\"EtagValue\"", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.ContainerService/fleets/myFleet/updateRuns/run1", + "name": "run1", + "type": "Microsoft.ContainerService/fleets/updateRuns", + "systemData": { + "createdBy": "someUser", + "createdByType": "User", + "createdAt": "2022-03-23T05:40:40.657Z", + "lastModifiedBy": "someOtherUser", + "lastModifiedByType": "User", + "lastModifiedAt": "2022-03-23T05:40:40.657Z" + } + } + }, + "202": { + "headers": { + "location": "https://contoso.com/operationstatus" + } + } + } +} \ No newline at end of file From 843e615b728fd92c0d1dc0e2ac23d4b7c8d55982 Mon Sep 17 00:00:00 2001 From: frantran Date: Wed, 19 Feb 2025 15:55:24 -0800 Subject: [PATCH 06/11] try generate oav --- ...rofiles_CreateOrUpdate_MaximumSet_Gen.json | 34 ++--- ...UpgradeProfiles_Delete_MaximumSet_Gen.json | 2 +- ...utoUpgradeProfiles_Get_MaximumSet_Gen.json | 14 +- ...deProfiles_ListByFleet_MaximumSet_Gen.json | 14 +- .../FleetMembers_Create_MaximumSet_Gen.json | 4 +- .../FleetMembers_Delete_MaximumSet_Gen.json | 2 +- .../FleetMembers_Update_MaximumSet_Gen.json | 2 +- ...ategies_CreateOrUpdate_MaximumSet_Gen.json | 4 +- ...pdateStrategies_Delete_MaximumSet_Gen.json | 2 +- .../Fleets_CreateOrUpdate_MaximumSet_Gen.json | 38 ++--- .../Fleets_Delete_MaximumSet_Gen.json | 2 +- .../2025-03-01/Fleets_Get_MaximumSet_Gen.json | 14 +- ...ts_ListByResourceGroup_MaximumSet_Gen.json | 16 +- ...ets_ListBySubscription_MaximumSet_Gen.json | 16 +- .../Fleets_Update_MaximumSet_Gen.json | 18 +-- .../Operations_List_MaximumSet_Gen.json | 4 +- ...ateRuns_CreateOrUpdate_MaximumSet_Gen.json | 140 +++++++++--------- .../UpdateRuns_Delete_MaximumSet_Gen.json | 2 +- .../UpdateRuns_Get_MaximumSet_Gen.json | 68 ++++----- ...UpdateRuns_ListByFleet_MaximumSet_Gen.json | 70 ++++----- .../UpdateRuns_Skip_MaximumSet_Gen.json | 70 ++++----- .../UpdateRuns_Start_MaximumSet_Gen.json | 70 ++++----- .../UpdateRuns_Stop_MaximumSet_Gen.json | 70 ++++----- ...rofiles_CreateOrUpdate_MaximumSet_Gen.json | 34 ++--- ...UpgradeProfiles_Delete_MaximumSet_Gen.json | 2 +- ...utoUpgradeProfiles_Get_MaximumSet_Gen.json | 14 +- ...deProfiles_ListByFleet_MaximumSet_Gen.json | 14 +- .../FleetMembers_Create_MaximumSet_Gen.json | 4 +- .../FleetMembers_Delete_MaximumSet_Gen.json | 2 +- .../FleetMembers_Update_MaximumSet_Gen.json | 2 +- ...ategies_CreateOrUpdate_MaximumSet_Gen.json | 4 +- ...pdateStrategies_Delete_MaximumSet_Gen.json | 2 +- .../Fleets_CreateOrUpdate_MaximumSet_Gen.json | 38 ++--- .../Fleets_Delete_MaximumSet_Gen.json | 2 +- .../examples/Fleets_Get_MaximumSet_Gen.json | 14 +- ...ts_ListByResourceGroup_MaximumSet_Gen.json | 16 +- ...ets_ListBySubscription_MaximumSet_Gen.json | 16 +- .../Fleets_Update_MaximumSet_Gen.json | 18 +-- .../Operations_List_MaximumSet_Gen.json | 4 +- ...ateRuns_CreateOrUpdate_MaximumSet_Gen.json | 140 +++++++++--------- .../UpdateRuns_Delete_MaximumSet_Gen.json | 2 +- .../UpdateRuns_Get_MaximumSet_Gen.json | 68 ++++----- ...UpdateRuns_ListByFleet_MaximumSet_Gen.json | 70 ++++----- .../UpdateRuns_Skip_MaximumSet_Gen.json | 70 ++++----- .../UpdateRuns_Start_MaximumSet_Gen.json | 70 ++++----- .../UpdateRuns_Stop_MaximumSet_Gen.json | 70 ++++----- .../fleet/stable/2025-03-01/fleets.json | 87 +++++++++++ 47 files changed, 763 insertions(+), 676 deletions(-) diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json index ab0a0095f32f..3701e49e563c 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json @@ -5,14 +5,14 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "irugdrminrllxnxfebziysfijsq", - "If-None-Match": "ktfmpsvpbiphyqiixda", + "If-Match": "swnvvxbzd", + "If-None-Match": "iuqfsqhorgqzzqhpdalxrzyuzq", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "autoUpgradeProfileName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "resource": { "properties": { "channel": "Stable", - "updateStrategyId": "skcdtnw", + "updateStrategyId": "pnqyzztlv", "nodeImageSelection": { "type": "Latest" }, @@ -29,28 +29,28 @@ "properties": { "channel": "Stable", "provisioningState": "Succeeded", - "updateStrategyId": "skcdtnw", + "updateStrategyId": "pnqyzztlv", "nodeImageSelection": { "type": "Latest" }, "disabled": true, "autoUpgradeProfileStatus": { - "lastTriggeredAt": "2025-02-19T22:39:10.786Z", + "lastTriggeredAt": "2025-02-19T23:50:02.478Z", "lastTriggerStatus": "Succeeded", "lastTriggerError": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] }, "lastTriggerUpgradeVersions": [ - "wjfesvtcxdnkq" + "kfficebabkcagsbkpdlkndrhq" ] } }, @@ -76,28 +76,28 @@ "properties": { "channel": "Stable", "provisioningState": "Succeeded", - "updateStrategyId": "skcdtnw", + "updateStrategyId": "pnqyzztlv", "nodeImageSelection": { "type": "Latest" }, "disabled": true, "autoUpgradeProfileStatus": { - "lastTriggeredAt": "2025-02-19T22:39:10.786Z", + "lastTriggeredAt": "2025-02-19T23:50:02.478Z", "lastTriggerStatus": "Succeeded", "lastTriggerError": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] }, "lastTriggerUpgradeVersions": [ - "wjfesvtcxdnkq" + "kfficebabkcagsbkpdlkndrhq" ] } }, diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json index a1fd9ab1b595..a14d5e29fc02 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "yjtwfcfvifjgvxbmvvpwr", + "If-Match": "mhyg", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "autoUpgradeProfileName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Get_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Get_MaximumSet_Gen.json index 3b1f4eedd495..4c8562a18933 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Get_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Get_MaximumSet_Gen.json @@ -14,28 +14,28 @@ "properties": { "channel": "Stable", "provisioningState": "Succeeded", - "updateStrategyId": "skcdtnw", + "updateStrategyId": "pnqyzztlv", "nodeImageSelection": { "type": "Latest" }, "disabled": true, "autoUpgradeProfileStatus": { - "lastTriggeredAt": "2025-02-19T22:39:10.786Z", + "lastTriggeredAt": "2025-02-19T23:50:02.478Z", "lastTriggerStatus": "Succeeded", "lastTriggerError": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] }, "lastTriggerUpgradeVersions": [ - "wjfesvtcxdnkq" + "kfficebabkcagsbkpdlkndrhq" ] } }, diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json index 498eba742a26..f6e153b3a079 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json @@ -26,28 +26,28 @@ "properties": { "provisioningState": "Succeeded", "channel": "Stable", - "updateStrategyId": "skcdtnw", + "updateStrategyId": "pnqyzztlv", "nodeImageSelection": { "type": "Latest" }, "disabled": true, "autoUpgradeProfileStatus": { - "lastTriggeredAt": "2025-02-19T22:39:10.786Z", + "lastTriggeredAt": "2025-02-19T23:50:02.478Z", "lastTriggerStatus": "Succeeded", "lastTriggerError": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] }, "lastTriggerUpgradeVersions": [ - "wjfesvtcxdnkq" + "kfficebabkcagsbkpdlkndrhq" ] } }, diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Create_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Create_MaximumSet_Gen.json index a924ca11b064..3296ec3a74e4 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Create_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Create_MaximumSet_Gen.json @@ -5,8 +5,8 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "wrifws", - "If-None-Match": "cvffafrakpwuuhxrxe", + "If-Match": "akvyjetcdzuotgiycfrncdytpzhk", + "If-None-Match": "hixbzprfthzsuz", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "fleetMemberName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "resource": { diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Delete_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Delete_MaximumSet_Gen.json index 85de2ddfa1c8..f3d5b12540cb 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Delete_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "lizduv", + "If-Match": "dhtwxhehdfriampporpwkez", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "fleetMemberName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Update_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Update_MaximumSet_Gen.json index 17960f6ee93f..ce7d47f6b766 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Update_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Update_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "tb", + "If-Match": "sxajvnerntvtzpzmd", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "fleetMemberName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "properties": { diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json index 77822b140a5c..22af79776cdb 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json @@ -5,8 +5,8 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "ysolecusdtwlipjmkbaqeyfnbpm", - "If-None-Match": "lfroigptmejod", + "If-Match": "gixdvzfdebqrvmfrxicdcgeee", + "If-None-Match": "loolywtqdklsyaredzi", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateStrategyName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "resource": { diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Delete_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Delete_MaximumSet_Gen.json index 1af37efd77ca..7eb350dfd773 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Delete_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "hyomxpjfqrk", + "If-Match": "qkqxmklnbceocphsxchlwsluqlawy", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateStrategyName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_CreateOrUpdate_MaximumSet_Gen.json index a1d2216a9ee1..ce464fbc482e 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_CreateOrUpdate_MaximumSet_Gen.json @@ -5,8 +5,8 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "uirpyfukqwkhjczjgobex", - "If-None-Match": "nnqjqomvqlukvjzimabldeemg", + "If-Match": "shrehzalrjbmlsanjlrgubuwmclpxi", + "If-None-Match": "zrnjyxtvbqmgyiqkunrekrc", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "resource": { "tags": {}, @@ -16,19 +16,19 @@ "dnsPrefix": "dnsprefix1", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "z" + "subnetId": "s" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "z" + "subnetId": "s" } } }, "identity": { "type": "None", "userAssignedIdentities": { - "key6720": {} + "key8683": {} } } } @@ -43,12 +43,12 @@ "dnsPrefix": "dnsprefix1", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "z" + "subnetId": "s" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "z" + "subnetId": "s" }, "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", "kubernetesVersion": "1.22.4", @@ -58,13 +58,13 @@ }, "eTag": "23ujdflewrj3=", "identity": { - "principalId": "jgawflailr", - "tenantId": "t", + "principalId": "z", + "tenantId": "ahylglviidxwpbep", "type": "None", "userAssignedIdentities": { - "key6720": { - "principalId": "bzuykwfgwtvcdipr", - "clientId": "bog" + "key8683": { + "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", + "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" } } }, @@ -93,12 +93,12 @@ "dnsPrefix": "dnsprefix1", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "z" + "subnetId": "s" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "z" + "subnetId": "s" }, "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", "kubernetesVersion": "1.22.4", @@ -108,13 +108,13 @@ }, "eTag": "23ujdflewrj3=", "identity": { - "principalId": "jgawflailr", - "tenantId": "t", + "principalId": "z", + "tenantId": "ahylglviidxwpbep", "type": "None", "userAssignedIdentities": { - "key6720": { - "principalId": "bzuykwfgwtvcdipr", - "clientId": "bog" + "key8683": { + "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", + "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" } } }, diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Delete_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Delete_MaximumSet_Gen.json index d26ead11897b..922e3d6271b2 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Delete_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "ppnihtqltdowtckhe", + "If-Match": "sigdya", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "responses": { diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Get_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Get_MaximumSet_Gen.json index 1b3ac0c55d2f..128efef23ea7 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Get_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Get_MaximumSet_Gen.json @@ -17,12 +17,12 @@ "dnsPrefix": "dnsprefix1", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "z" + "subnetId": "s" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "z" + "subnetId": "s" }, "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", "kubernetesVersion": "1.22.4", @@ -32,13 +32,13 @@ }, "eTag": "23ujdflewrj3=", "identity": { - "principalId": "jgawflailr", - "tenantId": "t", + "principalId": "z", + "tenantId": "ahylglviidxwpbep", "type": "None", "userAssignedIdentities": { - "key6720": { - "principalId": "bzuykwfgwtvcdipr", - "clientId": "bog" + "key8683": { + "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", + "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" } } }, diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListByResourceGroup_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListByResourceGroup_MaximumSet_Gen.json index 6be48f43e23e..3345be5c584c 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListByResourceGroup_MaximumSet_Gen.json @@ -33,30 +33,30 @@ "kubernetesVersion": "1.22.4", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "z" + "subnetId": "s" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "z" + "subnetId": "s" } }, "provisioningState": "Succeeded" }, "identity": { - "principalId": "jgawflailr", - "tenantId": "t", + "principalId": "z", + "tenantId": "ahylglviidxwpbep", "type": "None", "userAssignedIdentities": { - "key6720": { - "principalId": "bzuykwfgwtvcdipr", - "clientId": "bog" + "key8683": { + "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", + "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" } } } } ], - "nextLink": "https://microsoft.com/anas" + "nextLink": "https://microsoft.com/a" } } } diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListBySubscription_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListBySubscription_MaximumSet_Gen.json index 8bc891b53817..6d5b52440c90 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListBySubscription_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListBySubscription_MaximumSet_Gen.json @@ -32,30 +32,30 @@ "kubernetesVersion": "1.22.4", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "z" + "subnetId": "s" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "z" + "subnetId": "s" } }, "provisioningState": "Succeeded" }, "identity": { - "principalId": "jgawflailr", - "tenantId": "t", + "principalId": "z", + "tenantId": "ahylglviidxwpbep", "type": "None", "userAssignedIdentities": { - "key6720": { - "principalId": "bzuykwfgwtvcdipr", - "clientId": "bog" + "key8683": { + "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", + "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" } } } } ], - "nextLink": "https://microsoft.com/anas" + "nextLink": "https://microsoft.com/a" } } } diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Update_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Update_MaximumSet_Gen.json index f27f4c59b1b5..db00f9eb4241 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Update_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Update_MaximumSet_Gen.json @@ -5,14 +5,14 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "eivhhpkbwguzttijskioz", + "If-Match": "qlsoyycxzgd", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "properties": { "tags": {}, "identity": { "type": "None", "userAssignedIdentities": { - "key6720": {} + "key8683": {} } } } @@ -27,12 +27,12 @@ "dnsPrefix": "dnsprefix1", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "z" + "subnetId": "s" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "z" + "subnetId": "s" }, "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", "kubernetesVersion": "1.22.4", @@ -42,13 +42,13 @@ }, "eTag": "23ujdflewrj3=", "identity": { - "principalId": "jgawflailr", - "tenantId": "t", + "principalId": "z", + "tenantId": "ahylglviidxwpbep", "type": "None", "userAssignedIdentities": { - "key6720": { - "principalId": "bzuykwfgwtvcdipr", - "clientId": "bog" + "key8683": { + "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", + "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" } } }, diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MaximumSet_Gen.json index 5c40c109df09..97df83963810 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MaximumSet_Gen.json @@ -13,7 +13,7 @@ "operation": "Get Operation", "provider": "Microsoft Container Service", "resource": "Operation", - "description": "tpcd" + "description": "y" }, "name": "Microsoft.ContainerService/locations/operations/read", "origin": "user,system", @@ -21,7 +21,7 @@ "actionType": "Internal" } ], - "nextLink": "https://microsoft.com/aghsbghm" + "nextLink": "https://microsoft.com/a" } } } diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json index 038ab71b1a40..a99a0b57f19f 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json @@ -5,8 +5,8 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "abdlcwdionq", - "If-None-Match": "lisvvkpuevjxytgopaqcq", + "If-Match": "pzmcyysndpakonugmoofznun", + "If-None-Match": "ejyyqho", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "resource": { @@ -74,7 +74,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } @@ -82,17 +82,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T22:39:10.792Z", - "completedTime": "2025-02-19T22:39:10.792Z", + "startTime": "2025-02-19T23:50:02.489Z", + "completedTime": "2025-02-19T23:50:02.489Z", "state": "NotStarted", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -102,16 +102,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -122,16 +122,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -142,16 +142,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -159,8 +159,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "rxjsmuearjyhrsthixbcohpmkommx", - "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + "operationId": "unwusxwjjovzblozf", + "message": "m" } ] } @@ -168,16 +168,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -190,7 +190,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } @@ -239,7 +239,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } @@ -247,17 +247,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T22:39:10.792Z", - "completedTime": "2025-02-19T22:39:10.792Z", + "startTime": "2025-02-19T23:50:02.489Z", + "completedTime": "2025-02-19T23:50:02.489Z", "state": "NotStarted", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -267,16 +267,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -287,16 +287,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -307,16 +307,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -324,8 +324,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "rxjsmuearjyhrsthixbcohpmkommx", - "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + "operationId": "unwusxwjjovzblozf", + "message": "m" } ] } @@ -333,16 +333,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -355,7 +355,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Delete_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Delete_MaximumSet_Gen.json index 5a0a0b6e0167..d8a786714513 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Delete_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "uuyhfmfoyyytwppuujowoajyam", + "If-Match": "rpfpzegbtanjwsnyrbnwrcsetnuph", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Get_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Get_MaximumSet_Gen.json index 55ceacce4e0f..20f04a1779ad 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Get_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Get_MaximumSet_Gen.json @@ -35,7 +35,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } @@ -43,17 +43,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T22:39:10.792Z", - "completedTime": "2025-02-19T22:39:10.792Z", + "startTime": "2025-02-19T23:50:02.489Z", + "completedTime": "2025-02-19T23:50:02.489Z", "state": "NotStarted", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -63,16 +63,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -83,16 +83,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -103,16 +103,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -120,8 +120,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "rxjsmuearjyhrsthixbcohpmkommx", - "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + "operationId": "unwusxwjjovzblozf", + "message": "m" } ] } @@ -129,16 +129,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -151,7 +151,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_ListByFleet_MaximumSet_Gen.json index f754d3c16d62..67f5c202d2d5 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_ListByFleet_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_ListByFleet_MaximumSet_Gen.json @@ -47,7 +47,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } @@ -55,16 +55,16 @@ "status": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -74,16 +74,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -94,16 +94,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -114,16 +114,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -131,8 +131,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "rxjsmuearjyhrsthixbcohpmkommx", - "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + "operationId": "unwusxwjjovzblozf", + "message": "m" } ] } @@ -140,16 +140,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -162,12 +162,12 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } }, - "updateStrategyId": "skcdtnw" + "updateStrategyId": "pnqyzztlv" }, "eTag": "\"EtagValue\"" } diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Skip_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Skip_MaximumSet_Gen.json index d4a00d46424b..8151fd4cf960 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Skip_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Skip_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "ghwj", + "If-Match": "hzvzdivqigstpigwjkejax", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "body": { @@ -48,7 +48,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } @@ -56,17 +56,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T22:39:10.792Z", - "completedTime": "2025-02-19T22:39:10.792Z", + "startTime": "2025-02-19T23:50:02.489Z", + "completedTime": "2025-02-19T23:50:02.489Z", "state": "NotStarted", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -76,16 +76,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -96,16 +96,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -116,16 +116,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -133,8 +133,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "rxjsmuearjyhrsthixbcohpmkommx", - "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + "operationId": "unwusxwjjovzblozf", + "message": "m" } ] } @@ -142,16 +142,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -164,7 +164,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Start_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Start_MaximumSet_Gen.json index 8453023dffbc..41dcb33f1148 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Start_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Start_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "kjqphtdwlnfdgywwsoeovagogsiqs", + "If-Match": "zltdatqku", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -36,7 +36,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } @@ -44,17 +44,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T22:39:10.792Z", - "completedTime": "2025-02-19T22:39:10.792Z", + "startTime": "2025-02-19T23:50:02.489Z", + "completedTime": "2025-02-19T23:50:02.489Z", "state": "NotStarted", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -64,16 +64,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -84,16 +84,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -104,16 +104,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -121,8 +121,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "rxjsmuearjyhrsthixbcohpmkommx", - "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + "operationId": "unwusxwjjovzblozf", + "message": "m" } ] } @@ -130,16 +130,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -152,7 +152,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Stop_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Stop_MaximumSet_Gen.json index da892c716923..f4cff39d6ab1 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Stop_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Stop_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "ob", + "If-Match": "xofitllvyb", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -36,7 +36,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } @@ -44,17 +44,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T22:39:10.792Z", - "completedTime": "2025-02-19T22:39:10.792Z", + "startTime": "2025-02-19T23:50:02.489Z", + "completedTime": "2025-02-19T23:50:02.489Z", "state": "NotStarted", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -64,16 +64,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -84,16 +84,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -104,16 +104,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -121,8 +121,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "rxjsmuearjyhrsthixbcohpmkommx", - "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + "operationId": "unwusxwjjovzblozf", + "message": "m" } ] } @@ -130,16 +130,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -152,7 +152,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json index ab0a0095f32f..3701e49e563c 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json @@ -5,14 +5,14 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "irugdrminrllxnxfebziysfijsq", - "If-None-Match": "ktfmpsvpbiphyqiixda", + "If-Match": "swnvvxbzd", + "If-None-Match": "iuqfsqhorgqzzqhpdalxrzyuzq", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "autoUpgradeProfileName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "resource": { "properties": { "channel": "Stable", - "updateStrategyId": "skcdtnw", + "updateStrategyId": "pnqyzztlv", "nodeImageSelection": { "type": "Latest" }, @@ -29,28 +29,28 @@ "properties": { "channel": "Stable", "provisioningState": "Succeeded", - "updateStrategyId": "skcdtnw", + "updateStrategyId": "pnqyzztlv", "nodeImageSelection": { "type": "Latest" }, "disabled": true, "autoUpgradeProfileStatus": { - "lastTriggeredAt": "2025-02-19T22:39:10.786Z", + "lastTriggeredAt": "2025-02-19T23:50:02.478Z", "lastTriggerStatus": "Succeeded", "lastTriggerError": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] }, "lastTriggerUpgradeVersions": [ - "wjfesvtcxdnkq" + "kfficebabkcagsbkpdlkndrhq" ] } }, @@ -76,28 +76,28 @@ "properties": { "channel": "Stable", "provisioningState": "Succeeded", - "updateStrategyId": "skcdtnw", + "updateStrategyId": "pnqyzztlv", "nodeImageSelection": { "type": "Latest" }, "disabled": true, "autoUpgradeProfileStatus": { - "lastTriggeredAt": "2025-02-19T22:39:10.786Z", + "lastTriggeredAt": "2025-02-19T23:50:02.478Z", "lastTriggerStatus": "Succeeded", "lastTriggerError": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] }, "lastTriggerUpgradeVersions": [ - "wjfesvtcxdnkq" + "kfficebabkcagsbkpdlkndrhq" ] } }, diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json index a1fd9ab1b595..a14d5e29fc02 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "yjtwfcfvifjgvxbmvvpwr", + "If-Match": "mhyg", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "autoUpgradeProfileName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Get_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Get_MaximumSet_Gen.json index 3b1f4eedd495..4c8562a18933 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Get_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Get_MaximumSet_Gen.json @@ -14,28 +14,28 @@ "properties": { "channel": "Stable", "provisioningState": "Succeeded", - "updateStrategyId": "skcdtnw", + "updateStrategyId": "pnqyzztlv", "nodeImageSelection": { "type": "Latest" }, "disabled": true, "autoUpgradeProfileStatus": { - "lastTriggeredAt": "2025-02-19T22:39:10.786Z", + "lastTriggeredAt": "2025-02-19T23:50:02.478Z", "lastTriggerStatus": "Succeeded", "lastTriggerError": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] }, "lastTriggerUpgradeVersions": [ - "wjfesvtcxdnkq" + "kfficebabkcagsbkpdlkndrhq" ] } }, diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json index 498eba742a26..f6e153b3a079 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json @@ -26,28 +26,28 @@ "properties": { "provisioningState": "Succeeded", "channel": "Stable", - "updateStrategyId": "skcdtnw", + "updateStrategyId": "pnqyzztlv", "nodeImageSelection": { "type": "Latest" }, "disabled": true, "autoUpgradeProfileStatus": { - "lastTriggeredAt": "2025-02-19T22:39:10.786Z", + "lastTriggeredAt": "2025-02-19T23:50:02.478Z", "lastTriggerStatus": "Succeeded", "lastTriggerError": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] }, "lastTriggerUpgradeVersions": [ - "wjfesvtcxdnkq" + "kfficebabkcagsbkpdlkndrhq" ] } }, diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Create_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Create_MaximumSet_Gen.json index a924ca11b064..3296ec3a74e4 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Create_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Create_MaximumSet_Gen.json @@ -5,8 +5,8 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "wrifws", - "If-None-Match": "cvffafrakpwuuhxrxe", + "If-Match": "akvyjetcdzuotgiycfrncdytpzhk", + "If-None-Match": "hixbzprfthzsuz", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "fleetMemberName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "resource": { diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Delete_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Delete_MaximumSet_Gen.json index 85de2ddfa1c8..f3d5b12540cb 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Delete_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "lizduv", + "If-Match": "dhtwxhehdfriampporpwkez", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "fleetMemberName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Update_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Update_MaximumSet_Gen.json index 17960f6ee93f..ce7d47f6b766 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Update_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Update_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "tb", + "If-Match": "sxajvnerntvtzpzmd", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "fleetMemberName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "properties": { diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json index 77822b140a5c..22af79776cdb 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json @@ -5,8 +5,8 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "ysolecusdtwlipjmkbaqeyfnbpm", - "If-None-Match": "lfroigptmejod", + "If-Match": "gixdvzfdebqrvmfrxicdcgeee", + "If-None-Match": "loolywtqdklsyaredzi", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateStrategyName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "resource": { diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Delete_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Delete_MaximumSet_Gen.json index 1af37efd77ca..7eb350dfd773 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Delete_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "hyomxpjfqrk", + "If-Match": "qkqxmklnbceocphsxchlwsluqlawy", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateStrategyName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_CreateOrUpdate_MaximumSet_Gen.json index a1d2216a9ee1..ce464fbc482e 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_CreateOrUpdate_MaximumSet_Gen.json @@ -5,8 +5,8 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "uirpyfukqwkhjczjgobex", - "If-None-Match": "nnqjqomvqlukvjzimabldeemg", + "If-Match": "shrehzalrjbmlsanjlrgubuwmclpxi", + "If-None-Match": "zrnjyxtvbqmgyiqkunrekrc", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "resource": { "tags": {}, @@ -16,19 +16,19 @@ "dnsPrefix": "dnsprefix1", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "z" + "subnetId": "s" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "z" + "subnetId": "s" } } }, "identity": { "type": "None", "userAssignedIdentities": { - "key6720": {} + "key8683": {} } } } @@ -43,12 +43,12 @@ "dnsPrefix": "dnsprefix1", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "z" + "subnetId": "s" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "z" + "subnetId": "s" }, "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", "kubernetesVersion": "1.22.4", @@ -58,13 +58,13 @@ }, "eTag": "23ujdflewrj3=", "identity": { - "principalId": "jgawflailr", - "tenantId": "t", + "principalId": "z", + "tenantId": "ahylglviidxwpbep", "type": "None", "userAssignedIdentities": { - "key6720": { - "principalId": "bzuykwfgwtvcdipr", - "clientId": "bog" + "key8683": { + "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", + "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" } } }, @@ -93,12 +93,12 @@ "dnsPrefix": "dnsprefix1", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "z" + "subnetId": "s" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "z" + "subnetId": "s" }, "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", "kubernetesVersion": "1.22.4", @@ -108,13 +108,13 @@ }, "eTag": "23ujdflewrj3=", "identity": { - "principalId": "jgawflailr", - "tenantId": "t", + "principalId": "z", + "tenantId": "ahylglviidxwpbep", "type": "None", "userAssignedIdentities": { - "key6720": { - "principalId": "bzuykwfgwtvcdipr", - "clientId": "bog" + "key8683": { + "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", + "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" } } }, diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Delete_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Delete_MaximumSet_Gen.json index d26ead11897b..922e3d6271b2 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Delete_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "ppnihtqltdowtckhe", + "If-Match": "sigdya", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "responses": { diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Get_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Get_MaximumSet_Gen.json index 1b3ac0c55d2f..128efef23ea7 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Get_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Get_MaximumSet_Gen.json @@ -17,12 +17,12 @@ "dnsPrefix": "dnsprefix1", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "z" + "subnetId": "s" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "z" + "subnetId": "s" }, "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", "kubernetesVersion": "1.22.4", @@ -32,13 +32,13 @@ }, "eTag": "23ujdflewrj3=", "identity": { - "principalId": "jgawflailr", - "tenantId": "t", + "principalId": "z", + "tenantId": "ahylglviidxwpbep", "type": "None", "userAssignedIdentities": { - "key6720": { - "principalId": "bzuykwfgwtvcdipr", - "clientId": "bog" + "key8683": { + "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", + "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" } } }, diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListByResourceGroup_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListByResourceGroup_MaximumSet_Gen.json index 6be48f43e23e..3345be5c584c 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListByResourceGroup_MaximumSet_Gen.json @@ -33,30 +33,30 @@ "kubernetesVersion": "1.22.4", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "z" + "subnetId": "s" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "z" + "subnetId": "s" } }, "provisioningState": "Succeeded" }, "identity": { - "principalId": "jgawflailr", - "tenantId": "t", + "principalId": "z", + "tenantId": "ahylglviidxwpbep", "type": "None", "userAssignedIdentities": { - "key6720": { - "principalId": "bzuykwfgwtvcdipr", - "clientId": "bog" + "key8683": { + "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", + "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" } } } } ], - "nextLink": "https://microsoft.com/anas" + "nextLink": "https://microsoft.com/a" } } } diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListBySubscription_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListBySubscription_MaximumSet_Gen.json index 8bc891b53817..6d5b52440c90 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListBySubscription_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListBySubscription_MaximumSet_Gen.json @@ -32,30 +32,30 @@ "kubernetesVersion": "1.22.4", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "z" + "subnetId": "s" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "z" + "subnetId": "s" } }, "provisioningState": "Succeeded" }, "identity": { - "principalId": "jgawflailr", - "tenantId": "t", + "principalId": "z", + "tenantId": "ahylglviidxwpbep", "type": "None", "userAssignedIdentities": { - "key6720": { - "principalId": "bzuykwfgwtvcdipr", - "clientId": "bog" + "key8683": { + "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", + "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" } } } } ], - "nextLink": "https://microsoft.com/anas" + "nextLink": "https://microsoft.com/a" } } } diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Update_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Update_MaximumSet_Gen.json index f27f4c59b1b5..db00f9eb4241 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Update_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Update_MaximumSet_Gen.json @@ -5,14 +5,14 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "eivhhpkbwguzttijskioz", + "If-Match": "qlsoyycxzgd", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "properties": { "tags": {}, "identity": { "type": "None", "userAssignedIdentities": { - "key6720": {} + "key8683": {} } } } @@ -27,12 +27,12 @@ "dnsPrefix": "dnsprefix1", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "z" + "subnetId": "s" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "z" + "subnetId": "s" }, "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", "kubernetesVersion": "1.22.4", @@ -42,13 +42,13 @@ }, "eTag": "23ujdflewrj3=", "identity": { - "principalId": "jgawflailr", - "tenantId": "t", + "principalId": "z", + "tenantId": "ahylglviidxwpbep", "type": "None", "userAssignedIdentities": { - "key6720": { - "principalId": "bzuykwfgwtvcdipr", - "clientId": "bog" + "key8683": { + "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", + "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" } } }, diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MaximumSet_Gen.json index 5c40c109df09..97df83963810 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MaximumSet_Gen.json @@ -13,7 +13,7 @@ "operation": "Get Operation", "provider": "Microsoft Container Service", "resource": "Operation", - "description": "tpcd" + "description": "y" }, "name": "Microsoft.ContainerService/locations/operations/read", "origin": "user,system", @@ -21,7 +21,7 @@ "actionType": "Internal" } ], - "nextLink": "https://microsoft.com/aghsbghm" + "nextLink": "https://microsoft.com/a" } } } diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json index 038ab71b1a40..a99a0b57f19f 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json @@ -5,8 +5,8 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "abdlcwdionq", - "If-None-Match": "lisvvkpuevjxytgopaqcq", + "If-Match": "pzmcyysndpakonugmoofznun", + "If-None-Match": "ejyyqho", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "resource": { @@ -74,7 +74,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } @@ -82,17 +82,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T22:39:10.792Z", - "completedTime": "2025-02-19T22:39:10.792Z", + "startTime": "2025-02-19T23:50:02.489Z", + "completedTime": "2025-02-19T23:50:02.489Z", "state": "NotStarted", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -102,16 +102,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -122,16 +122,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -142,16 +142,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -159,8 +159,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "rxjsmuearjyhrsthixbcohpmkommx", - "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + "operationId": "unwusxwjjovzblozf", + "message": "m" } ] } @@ -168,16 +168,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -190,7 +190,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } @@ -239,7 +239,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } @@ -247,17 +247,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T22:39:10.792Z", - "completedTime": "2025-02-19T22:39:10.792Z", + "startTime": "2025-02-19T23:50:02.489Z", + "completedTime": "2025-02-19T23:50:02.489Z", "state": "NotStarted", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -267,16 +267,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -287,16 +287,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -307,16 +307,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -324,8 +324,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "rxjsmuearjyhrsthixbcohpmkommx", - "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + "operationId": "unwusxwjjovzblozf", + "message": "m" } ] } @@ -333,16 +333,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -355,7 +355,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Delete_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Delete_MaximumSet_Gen.json index 5a0a0b6e0167..d8a786714513 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Delete_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "uuyhfmfoyyytwppuujowoajyam", + "If-Match": "rpfpzegbtanjwsnyrbnwrcsetnuph", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Get_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Get_MaximumSet_Gen.json index 55ceacce4e0f..20f04a1779ad 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Get_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Get_MaximumSet_Gen.json @@ -35,7 +35,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } @@ -43,17 +43,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T22:39:10.792Z", - "completedTime": "2025-02-19T22:39:10.792Z", + "startTime": "2025-02-19T23:50:02.489Z", + "completedTime": "2025-02-19T23:50:02.489Z", "state": "NotStarted", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -63,16 +63,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -83,16 +83,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -103,16 +103,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -120,8 +120,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "rxjsmuearjyhrsthixbcohpmkommx", - "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + "operationId": "unwusxwjjovzblozf", + "message": "m" } ] } @@ -129,16 +129,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -151,7 +151,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_ListByFleet_MaximumSet_Gen.json index f754d3c16d62..67f5c202d2d5 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_ListByFleet_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_ListByFleet_MaximumSet_Gen.json @@ -47,7 +47,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } @@ -55,16 +55,16 @@ "status": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -74,16 +74,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -94,16 +94,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -114,16 +114,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -131,8 +131,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "rxjsmuearjyhrsthixbcohpmkommx", - "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + "operationId": "unwusxwjjovzblozf", + "message": "m" } ] } @@ -140,16 +140,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -162,12 +162,12 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } }, - "updateStrategyId": "skcdtnw" + "updateStrategyId": "pnqyzztlv" }, "eTag": "\"EtagValue\"" } diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Skip_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Skip_MaximumSet_Gen.json index d4a00d46424b..8151fd4cf960 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Skip_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Skip_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "ghwj", + "If-Match": "hzvzdivqigstpigwjkejax", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "body": { @@ -48,7 +48,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } @@ -56,17 +56,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T22:39:10.792Z", - "completedTime": "2025-02-19T22:39:10.792Z", + "startTime": "2025-02-19T23:50:02.489Z", + "completedTime": "2025-02-19T23:50:02.489Z", "state": "NotStarted", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -76,16 +76,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -96,16 +96,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -116,16 +116,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -133,8 +133,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "rxjsmuearjyhrsthixbcohpmkommx", - "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + "operationId": "unwusxwjjovzblozf", + "message": "m" } ] } @@ -142,16 +142,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -164,7 +164,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Start_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Start_MaximumSet_Gen.json index 8453023dffbc..41dcb33f1148 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Start_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Start_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "kjqphtdwlnfdgywwsoeovagogsiqs", + "If-Match": "zltdatqku", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -36,7 +36,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } @@ -44,17 +44,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T22:39:10.792Z", - "completedTime": "2025-02-19T22:39:10.792Z", + "startTime": "2025-02-19T23:50:02.489Z", + "completedTime": "2025-02-19T23:50:02.489Z", "state": "NotStarted", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -64,16 +64,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -84,16 +84,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -104,16 +104,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -121,8 +121,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "rxjsmuearjyhrsthixbcohpmkommx", - "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + "operationId": "unwusxwjjovzblozf", + "message": "m" } ] } @@ -130,16 +130,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -152,7 +152,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Stop_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Stop_MaximumSet_Gen.json index da892c716923..f4cff39d6ab1 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Stop_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Stop_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "ob", + "If-Match": "xofitllvyb", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -36,7 +36,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } @@ -44,17 +44,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T22:39:10.792Z", - "completedTime": "2025-02-19T22:39:10.792Z", + "startTime": "2025-02-19T23:50:02.489Z", + "completedTime": "2025-02-19T23:50:02.489Z", "state": "NotStarted", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -64,16 +64,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -84,16 +84,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -104,16 +104,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -121,8 +121,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "rxjsmuearjyhrsthixbcohpmkommx", - "message": "ytxhbhirkcbxpgrrnpuddyhpfc" + "operationId": "unwusxwjjovzblozf", + "message": "m" } ] } @@ -130,16 +130,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T22:39:10.791Z", - "completedTime": "2025-02-19T22:39:10.791Z", + "startTime": "2025-02-19T23:50:02.487Z", + "completedTime": "2025-02-19T23:50:02.487Z", "error": { - "code": "qzqj", - "message": "osupezyqdwqhdrcg", - "target": "kofcubxtiwnhinnfbpwpee", + "code": "vznrgtmwpdkngtmllcj", + "message": "nivagouilffjaai", + "target": "qaaubxdbbtiwfxaicyfhilqtmxc", "details": [], "additionalInfo": [ { - "type": "wxmgrx", + "type": "anvsapjjyqsbifgtpuak", "info": {} } ] @@ -152,7 +152,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "ysmeyalytmcziwnbbpkd" + "version": "owwfysjmtwblmjoncjxixjqspl" } ] } diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json index 3fc0c8bb3461..707d11b72453 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json @@ -89,6 +89,12 @@ "List the operations for the provider.": { "$ref": "./examples/Operations_List.json" }, + "List the operations for the provider. - generated by [MaximumSet] rule": { + "$ref": "./examples/Operations_List_MaximumSet_Gen.json" + }, + "List the operations for the provider. - generated by [MinimumSet] rule": { + "$ref": "./examples/Operations_List_MinimumSet_Gen.json" + }, "Operations_List_MaximumSet_Gen": { "$ref": "./examples/Operations_List_MaximumSet_Gen.json" }, @@ -134,6 +140,9 @@ "Lists the Fleet resources in a subscription.": { "$ref": "./examples/Fleets_ListBySub.json" }, + "Lists the Fleet resources in a subscription. - generated by [MaximumSet] rule": { + "$ref": "./examples/Fleets_ListBySubscription_MaximumSet_Gen.json" + }, "Fleets_ListBySubscription_MaximumSet_Gen": { "$ref": "./examples/Fleets_ListBySubscription_MaximumSet_Gen.json" } @@ -179,6 +188,9 @@ "Lists the Fleet resources in a resource group.": { "$ref": "./examples/Fleets_ListByResourceGroup.json" }, + "Lists the Fleet resources in a resource group. - generated by [MaximumSet] rule": { + "$ref": "./examples/Fleets_ListByResourceGroup_MaximumSet_Gen.json" + }, "Fleets_ListByResourceGroup_MaximumSet_Gen": { "$ref": "./examples/Fleets_ListByResourceGroup_MaximumSet_Gen.json" } @@ -234,6 +246,9 @@ "Gets a Fleet resource.": { "$ref": "./examples/Fleets_Get.json" }, + "Gets a Fleet resource. - generated by [MaximumSet] rule": { + "$ref": "./examples/Fleets_Get_MaximumSet_Gen.json" + }, "Fleets_Get_MaximumSet_Gen": { "$ref": "./examples/Fleets_Get_MaximumSet_Gen.json" } @@ -322,6 +337,9 @@ "Creates a Fleet resource with a long running operation.": { "$ref": "./examples/Fleets_CreateOrUpdate.json" }, + "Creates a Fleet resource with a long running operation. - generated by [MaximumSet] rule": { + "$ref": "./examples/Fleets_CreateOrUpdate_MaximumSet_Gen.json" + }, "Fleets_CreateOrUpdate_MaximumSet_Gen": { "$ref": "./examples/Fleets_CreateOrUpdate_MaximumSet_Gen.json" } @@ -407,6 +425,9 @@ "Update a Fleet.": { "$ref": "./examples/Fleets_PatchTags.json" }, + "Update a Fleet. - generated by [MaximumSet] rule": { + "$ref": "./examples/Fleets_Update_MaximumSet_Gen.json" + }, "Fleets_Update_MaximumSet_Gen": { "$ref": "./examples/Fleets_Update_MaximumSet_Gen.json" } @@ -483,6 +504,9 @@ "Deletes a Fleet resource asynchronously with a long running operation.": { "$ref": "./examples/Fleets_Delete.json" }, + "Deletes a Fleet resource asynchronously with a long running operation. - generated by [MaximumSet] rule": { + "$ref": "./examples/Fleets_Delete_MaximumSet_Gen.json" + }, "Fleets_Delete_MaximumSet_Gen": { "$ref": "./examples/Fleets_Delete_MaximumSet_Gen.json" } @@ -539,6 +563,9 @@ "Lists the AutoUpgradeProfile resources by fleet.": { "$ref": "./examples/AutoUpgradeProfiles_ListByFleet.json" }, + "Lists the AutoUpgradeProfile resources by fleet. - generated by [MaximumSet] rule": { + "$ref": "./examples/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json" + }, "AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen": { "$ref": "./examples/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json" } @@ -604,6 +631,9 @@ "Gets an AutoUpgradeProfile resource.": { "$ref": "./examples/AutoUpgradeProfiles_Get.json" }, + "Gets an AutoUpgradeProfile resource. - generated by [MaximumSet] rule": { + "$ref": "./examples/AutoUpgradeProfiles_Get_MaximumSet_Gen.json" + }, "AutoUpgradeProfiles_Get_MaximumSet_Gen": { "$ref": "./examples/AutoUpgradeProfiles_Get_MaximumSet_Gen.json" } @@ -706,6 +736,9 @@ "Create an AutoUpgradeProfile.": { "$ref": "./examples/AutoUpgradeProfiles_CreateOrUpdate.json" }, + "Create an AutoUpgradeProfile. - generated by [MaximumSet] rule": { + "$ref": "./examples/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json" + }, "AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen": { "$ref": "./examples/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json" } @@ -789,6 +822,9 @@ "Delete an AutoUpgradeProfile resource.": { "$ref": "./examples/AutoUpgradeProfiles_Delete.json" }, + "Delete an AutoUpgradeProfile resource. - generated by [MaximumSet] rule": { + "$ref": "./examples/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json" + }, "AutoUpgradeProfiles_Delete_MaximumSet_Gen": { "$ref": "./examples/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json" } @@ -845,6 +881,9 @@ "Lists the user credentials of a Fleet.": { "$ref": "./examples/Fleets_ListCredentialsResult.json" }, + "Lists the user credentials of a Fleet. - generated by [MaximumSet] rule": { + "$ref": "./examples/Fleets_ListCredentials_MaximumSet_Gen.json" + }, "Fleets_ListCredentials_MaximumSet_Gen": { "$ref": "./examples/Fleets_ListCredentials_MaximumSet_Gen.json" } @@ -897,6 +936,9 @@ "Lists the members of a Fleet.": { "$ref": "./examples/FleetMembers_ListByFleet.json" }, + "Lists the members of a Fleet. - generated by [MaximumSet] rule": { + "$ref": "./examples/FleetMembers_ListByFleet_MaximumSet_Gen.json" + }, "FleetMembers_ListByFleet_MaximumSet_Gen": { "$ref": "./examples/FleetMembers_ListByFleet_MaximumSet_Gen.json" } @@ -962,6 +1004,9 @@ "Gets a FleetMember resource.": { "$ref": "./examples/FleetMembers_Get.json" }, + "Gets a FleetMember resource. - generated by [MaximumSet] rule": { + "$ref": "./examples/FleetMembers_Get_MaximumSet_Gen.json" + }, "FleetMembers_Get_MaximumSet_Gen": { "$ref": "./examples/FleetMembers_Get_MaximumSet_Gen.json" } @@ -1060,6 +1105,9 @@ "Creates a FleetMember resource with a long running operation.": { "$ref": "./examples/FleetMembers_Create.json" }, + "Creates a FleetMember resource with a long running operation. - generated by [MaximumSet] rule": { + "$ref": "./examples/FleetMembers_Create_MaximumSet_Gen.json" + }, "FleetMembers_Create_MaximumSet_Gen": { "$ref": "./examples/FleetMembers_Create_MaximumSet_Gen.json" } @@ -1155,6 +1203,9 @@ "Updates a FleetMember resource synchronously.": { "$ref": "./examples/FleetMembers_Update.json" }, + "Updates a FleetMember resource synchronously. - generated by [MaximumSet] rule": { + "$ref": "./examples/FleetMembers_Update_MaximumSet_Gen.json" + }, "FleetMembers_Update_MaximumSet_Gen": { "$ref": "./examples/FleetMembers_Update_MaximumSet_Gen.json" } @@ -1241,6 +1292,9 @@ "Deletes a FleetMember resource asynchronously with a long running operation.": { "$ref": "./examples/FleetMembers_Delete.json" }, + "Deletes a FleetMember resource asynchronously with a long running operation. - generated by [MaximumSet] rule": { + "$ref": "./examples/FleetMembers_Delete_MaximumSet_Gen.json" + }, "FleetMembers_Delete_MaximumSet_Gen": { "$ref": "./examples/FleetMembers_Delete_MaximumSet_Gen.json" } @@ -1297,6 +1351,9 @@ "Lists the UpdateRun resources by fleet.": { "$ref": "./examples/UpdateRuns_ListByFleet.json" }, + "Lists the UpdateRun resources by fleet. - generated by [MaximumSet] rule": { + "$ref": "./examples/UpdateRuns_ListByFleet_MaximumSet_Gen.json" + }, "UpdateRuns_ListByFleet_MaximumSet_Gen": { "$ref": "./examples/UpdateRuns_ListByFleet_MaximumSet_Gen.json" } @@ -1362,6 +1419,9 @@ "Gets an UpdateRun resource.": { "$ref": "./examples/UpdateRuns_Get.json" }, + "Gets an UpdateRun resource. - generated by [MaximumSet] rule": { + "$ref": "./examples/UpdateRuns_Get_MaximumSet_Gen.json" + }, "UpdateRuns_Get_MaximumSet_Gen": { "$ref": "./examples/UpdateRuns_Get_MaximumSet_Gen.json" } @@ -1460,6 +1520,9 @@ "Create an UpdateRun.": { "$ref": "./examples/UpdateRuns_CreateOrUpdate.json" }, + "Create an UpdateRun. - generated by [MaximumSet] rule": { + "$ref": "./examples/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json" + }, "UpdateRuns_CreateOrUpdate_MaximumSet_Gen": { "$ref": "./examples/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json" } @@ -1546,6 +1609,9 @@ "Delete an updateRun resource.": { "$ref": "./examples/UpdateRuns_Delete.json" }, + "Delete an updateRun resource. - generated by [MaximumSet] rule": { + "$ref": "./examples/UpdateRuns_Delete_MaximumSet_Gen.json" + }, "UpdateRuns_Delete_MaximumSet_Gen": { "$ref": "./examples/UpdateRuns_Delete_MaximumSet_Gen.json" } @@ -1643,6 +1709,9 @@ "Skips one or more member/group/stage/afterStageWait(s) of an UpdateRun.": { "$ref": "./examples/UpdateRuns_Skip.json" }, + "Skips one or more member/group/stage/afterStageWait(s) of an UpdateRun. - generated by [MaximumSet] rule": { + "$ref": "./examples/UpdateRuns_Skip_MaximumSet_Gen.json" + }, "UpdateRuns_Skip_MaximumSet_Gen": { "$ref": "./examples/UpdateRuns_Skip_MaximumSet_Gen.json" } @@ -1731,6 +1800,9 @@ "Starts an UpdateRun.": { "$ref": "./examples/UpdateRuns_Start.json" }, + "Starts an UpdateRun. - generated by [MaximumSet] rule": { + "$ref": "./examples/UpdateRuns_Start_MaximumSet_Gen.json" + }, "UpdateRuns_Start_MaximumSet_Gen": { "$ref": "./examples/UpdateRuns_Start_MaximumSet_Gen.json" } @@ -1819,6 +1891,9 @@ "Stops an UpdateRun.": { "$ref": "./examples/UpdateRuns_Stop.json" }, + "Stops an UpdateRun. - generated by [MaximumSet] rule": { + "$ref": "./examples/UpdateRuns_Stop_MaximumSet_Gen.json" + }, "UpdateRuns_Stop_MaximumSet_Gen": { "$ref": "./examples/UpdateRuns_Stop_MaximumSet_Gen.json" } @@ -1875,6 +1950,9 @@ "List the FleetUpdateStrategy resources by fleet.": { "$ref": "./examples/UpdateStrategies_ListByFleet.json" }, + "List the FleetUpdateStrategy resources by fleet. - generated by [MaximumSet] rule": { + "$ref": "./examples/FleetUpdateStrategies_ListByFleet_MaximumSet_Gen.json" + }, "FleetUpdateStrategies_ListByFleet_MaximumSet_Gen": { "$ref": "./examples/FleetUpdateStrategies_ListByFleet_MaximumSet_Gen.json" } @@ -1940,6 +2018,9 @@ "Get a FleetUpdateStrategy resource.": { "$ref": "./examples/UpdateStrategies_Get.json" }, + "Get a FleetUpdateStrategy resource. - generated by [MaximumSet] rule": { + "$ref": "./examples/FleetUpdateStrategies_Get_MaximumSet_Gen.json" + }, "FleetUpdateStrategies_Get_MaximumSet_Gen": { "$ref": "./examples/FleetUpdateStrategies_Get_MaximumSet_Gen.json" } @@ -2038,6 +2119,9 @@ "Create a FleetUpdateStrategy.": { "$ref": "./examples/UpdateStrategies_CreateOrUpdate.json" }, + "Create a FleetUpdateStrategy. - generated by [MaximumSet] rule": { + "$ref": "./examples/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json" + }, "FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen": { "$ref": "./examples/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json" } @@ -2124,6 +2208,9 @@ "Delete a FleetUpdateStrategy resource.": { "$ref": "./examples/UpdateStrategies_Delete.json" }, + "Delete a FleetUpdateStrategy resource. - generated by [MaximumSet] rule": { + "$ref": "./examples/FleetUpdateStrategies_Delete_MaximumSet_Gen.json" + }, "FleetUpdateStrategies_Delete_MaximumSet_Gen": { "$ref": "./examples/FleetUpdateStrategies_Delete_MaximumSet_Gen.json" } From faaf4abbc9086ee7b6263dd7056fa5a8f2b6f64d Mon Sep 17 00:00:00 2001 From: frantran Date: Wed, 19 Feb 2025 16:49:35 -0800 Subject: [PATCH 07/11] fix generate --- ...rofiles_CreateOrUpdate_MaximumSet_Gen.json | 34 ++--- ...UpgradeProfiles_Delete_MaximumSet_Gen.json | 2 +- ...utoUpgradeProfiles_Get_MaximumSet_Gen.json | 14 +- ...deProfiles_ListByFleet_MaximumSet_Gen.json | 14 +- .../FleetMembers_Create_MaximumSet_Gen.json | 4 +- .../FleetMembers_Delete_MaximumSet_Gen.json | 2 +- .../FleetMembers_Update_MaximumSet_Gen.json | 2 +- ...ategies_CreateOrUpdate_MaximumSet_Gen.json | 4 +- ...pdateStrategies_Delete_MaximumSet_Gen.json | 2 +- .../Fleets_CreateOrUpdate_MaximumSet_Gen.json | 38 ++--- .../Fleets_Delete_MaximumSet_Gen.json | 2 +- .../examples/Fleets_Get_MaximumSet_Gen.json | 14 +- ...ts_ListByResourceGroup_MaximumSet_Gen.json | 14 +- ...ets_ListBySubscription_MaximumSet_Gen.json | 14 +- .../Fleets_Update_MaximumSet_Gen.json | 18 +-- .../Operations_List_MaximumSet_Gen.json | 2 +- ...ateRuns_CreateOrUpdate_MaximumSet_Gen.json | 140 +++++++++--------- .../UpdateRuns_Delete_MaximumSet_Gen.json | 2 +- .../UpdateRuns_Get_MaximumSet_Gen.json | 68 ++++----- ...UpdateRuns_ListByFleet_MaximumSet_Gen.json | 70 ++++----- .../UpdateRuns_Skip_MaximumSet_Gen.json | 70 ++++----- .../UpdateRuns_Start_MaximumSet_Gen.json | 70 ++++----- .../UpdateRuns_Stop_MaximumSet_Gen.json | 70 ++++----- .../fleet/stable/2025-03-01/fleets.json | 87 ----------- 24 files changed, 335 insertions(+), 422 deletions(-) diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json index 3701e49e563c..fbf3f1256110 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json @@ -5,14 +5,14 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "swnvvxbzd", - "If-None-Match": "iuqfsqhorgqzzqhpdalxrzyuzq", + "If-Match": "vhf", + "If-None-Match": "djyb", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "autoUpgradeProfileName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "resource": { "properties": { "channel": "Stable", - "updateStrategyId": "pnqyzztlv", + "updateStrategyId": "ohaskc", "nodeImageSelection": { "type": "Latest" }, @@ -29,28 +29,28 @@ "properties": { "channel": "Stable", "provisioningState": "Succeeded", - "updateStrategyId": "pnqyzztlv", + "updateStrategyId": "ohaskc", "nodeImageSelection": { "type": "Latest" }, "disabled": true, "autoUpgradeProfileStatus": { - "lastTriggeredAt": "2025-02-19T23:50:02.478Z", + "lastTriggeredAt": "2025-02-20T00:48:22.164Z", "lastTriggerStatus": "Succeeded", "lastTriggerError": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] }, "lastTriggerUpgradeVersions": [ - "kfficebabkcagsbkpdlkndrhq" + "nbotahqooxzbdxdnya" ] } }, @@ -76,28 +76,28 @@ "properties": { "channel": "Stable", "provisioningState": "Succeeded", - "updateStrategyId": "pnqyzztlv", + "updateStrategyId": "ohaskc", "nodeImageSelection": { "type": "Latest" }, "disabled": true, "autoUpgradeProfileStatus": { - "lastTriggeredAt": "2025-02-19T23:50:02.478Z", + "lastTriggeredAt": "2025-02-20T00:48:22.164Z", "lastTriggerStatus": "Succeeded", "lastTriggerError": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] }, "lastTriggerUpgradeVersions": [ - "kfficebabkcagsbkpdlkndrhq" + "nbotahqooxzbdxdnya" ] } }, diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json index a14d5e29fc02..a97cf88267fc 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "mhyg", + "If-Match": "gzrlqrbqhsxleyxniqdbohaqgde", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "autoUpgradeProfileName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Get_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Get_MaximumSet_Gen.json index 4c8562a18933..b54e8d1a9fb3 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Get_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Get_MaximumSet_Gen.json @@ -14,28 +14,28 @@ "properties": { "channel": "Stable", "provisioningState": "Succeeded", - "updateStrategyId": "pnqyzztlv", + "updateStrategyId": "ohaskc", "nodeImageSelection": { "type": "Latest" }, "disabled": true, "autoUpgradeProfileStatus": { - "lastTriggeredAt": "2025-02-19T23:50:02.478Z", + "lastTriggeredAt": "2025-02-20T00:48:22.164Z", "lastTriggerStatus": "Succeeded", "lastTriggerError": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] }, "lastTriggerUpgradeVersions": [ - "kfficebabkcagsbkpdlkndrhq" + "nbotahqooxzbdxdnya" ] } }, diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json index f6e153b3a079..23915c95fd82 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json @@ -26,28 +26,28 @@ "properties": { "provisioningState": "Succeeded", "channel": "Stable", - "updateStrategyId": "pnqyzztlv", + "updateStrategyId": "ohaskc", "nodeImageSelection": { "type": "Latest" }, "disabled": true, "autoUpgradeProfileStatus": { - "lastTriggeredAt": "2025-02-19T23:50:02.478Z", + "lastTriggeredAt": "2025-02-20T00:48:22.164Z", "lastTriggerStatus": "Succeeded", "lastTriggerError": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] }, "lastTriggerUpgradeVersions": [ - "kfficebabkcagsbkpdlkndrhq" + "nbotahqooxzbdxdnya" ] } }, diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Create_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Create_MaximumSet_Gen.json index 3296ec3a74e4..16040286c6e7 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Create_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Create_MaximumSet_Gen.json @@ -5,8 +5,8 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "akvyjetcdzuotgiycfrncdytpzhk", - "If-None-Match": "hixbzprfthzsuz", + "If-Match": "awgjzdt", + "If-None-Match": "iy", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "fleetMemberName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "resource": { diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Delete_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Delete_MaximumSet_Gen.json index f3d5b12540cb..b10061f83765 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Delete_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "dhtwxhehdfriampporpwkez", + "If-Match": "ivrjiiegjv", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "fleetMemberName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Update_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Update_MaximumSet_Gen.json index ce7d47f6b766..1d94525aaa33 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Update_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Update_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "sxajvnerntvtzpzmd", + "If-Match": "udtriggqul", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "fleetMemberName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "properties": { diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json index 22af79776cdb..b9e84330307c 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json @@ -5,8 +5,8 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "gixdvzfdebqrvmfrxicdcgeee", - "If-None-Match": "loolywtqdklsyaredzi", + "If-Match": "cpvxzrxdwcxqgux", + "If-None-Match": "krwxknjdvyddhjafir", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateStrategyName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "resource": { diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Delete_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Delete_MaximumSet_Gen.json index 7eb350dfd773..bcc10ba934dd 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Delete_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "qkqxmklnbceocphsxchlwsluqlawy", + "If-Match": "kndajsfprcnlyky", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateStrategyName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_CreateOrUpdate_MaximumSet_Gen.json index ce464fbc482e..a976c12d3d44 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_CreateOrUpdate_MaximumSet_Gen.json @@ -5,8 +5,8 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "shrehzalrjbmlsanjlrgubuwmclpxi", - "If-None-Match": "zrnjyxtvbqmgyiqkunrekrc", + "If-Match": "ifljjhybjjexzuyqjmbfwhub", + "If-None-Match": "vibeotgbklktaamfz", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "resource": { "tags": {}, @@ -16,19 +16,19 @@ "dnsPrefix": "dnsprefix1", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" } } }, "identity": { "type": "None", "userAssignedIdentities": { - "key8683": {} + "key4393": {} } } } @@ -43,12 +43,12 @@ "dnsPrefix": "dnsprefix1", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" }, "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", "kubernetesVersion": "1.22.4", @@ -58,13 +58,13 @@ }, "eTag": "23ujdflewrj3=", "identity": { - "principalId": "z", - "tenantId": "ahylglviidxwpbep", + "principalId": "iaonqlmxsimir", + "tenantId": "pyvckulhirsx", "type": "None", "userAssignedIdentities": { - "key8683": { - "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", - "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" + "key4393": { + "principalId": "zbvtsblmhrlgjlwjrrjxexkx", + "clientId": "ljvjxromkypljsnxhowopwhyaxcl" } } }, @@ -93,12 +93,12 @@ "dnsPrefix": "dnsprefix1", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" }, "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", "kubernetesVersion": "1.22.4", @@ -108,13 +108,13 @@ }, "eTag": "23ujdflewrj3=", "identity": { - "principalId": "z", - "tenantId": "ahylglviidxwpbep", + "principalId": "iaonqlmxsimir", + "tenantId": "pyvckulhirsx", "type": "None", "userAssignedIdentities": { - "key8683": { - "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", - "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" + "key4393": { + "principalId": "zbvtsblmhrlgjlwjrrjxexkx", + "clientId": "ljvjxromkypljsnxhowopwhyaxcl" } } }, diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Delete_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Delete_MaximumSet_Gen.json index 922e3d6271b2..831fa392946d 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Delete_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "sigdya", + "If-Match": "rk", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "responses": { diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Get_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Get_MaximumSet_Gen.json index 128efef23ea7..4b6dc233d5fe 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Get_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Get_MaximumSet_Gen.json @@ -17,12 +17,12 @@ "dnsPrefix": "dnsprefix1", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" }, "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", "kubernetesVersion": "1.22.4", @@ -32,13 +32,13 @@ }, "eTag": "23ujdflewrj3=", "identity": { - "principalId": "z", - "tenantId": "ahylglviidxwpbep", + "principalId": "iaonqlmxsimir", + "tenantId": "pyvckulhirsx", "type": "None", "userAssignedIdentities": { - "key8683": { - "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", - "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" + "key4393": { + "principalId": "zbvtsblmhrlgjlwjrrjxexkx", + "clientId": "ljvjxromkypljsnxhowopwhyaxcl" } } }, diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListByResourceGroup_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListByResourceGroup_MaximumSet_Gen.json index 3345be5c584c..da39684a3364 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListByResourceGroup_MaximumSet_Gen.json @@ -33,24 +33,24 @@ "kubernetesVersion": "1.22.4", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" } }, "provisioningState": "Succeeded" }, "identity": { - "principalId": "z", - "tenantId": "ahylglviidxwpbep", + "principalId": "iaonqlmxsimir", + "tenantId": "pyvckulhirsx", "type": "None", "userAssignedIdentities": { - "key8683": { - "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", - "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" + "key4393": { + "principalId": "zbvtsblmhrlgjlwjrrjxexkx", + "clientId": "ljvjxromkypljsnxhowopwhyaxcl" } } } diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListBySubscription_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListBySubscription_MaximumSet_Gen.json index 6d5b52440c90..a2731cc1fd29 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListBySubscription_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListBySubscription_MaximumSet_Gen.json @@ -32,24 +32,24 @@ "kubernetesVersion": "1.22.4", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" } }, "provisioningState": "Succeeded" }, "identity": { - "principalId": "z", - "tenantId": "ahylglviidxwpbep", + "principalId": "iaonqlmxsimir", + "tenantId": "pyvckulhirsx", "type": "None", "userAssignedIdentities": { - "key8683": { - "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", - "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" + "key4393": { + "principalId": "zbvtsblmhrlgjlwjrrjxexkx", + "clientId": "ljvjxromkypljsnxhowopwhyaxcl" } } } diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Update_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Update_MaximumSet_Gen.json index db00f9eb4241..b0c2d060aa22 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Update_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Update_MaximumSet_Gen.json @@ -5,14 +5,14 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "qlsoyycxzgd", + "If-Match": "mdtfdjlvbhb", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "properties": { "tags": {}, "identity": { "type": "None", "userAssignedIdentities": { - "key8683": {} + "key4393": {} } } } @@ -27,12 +27,12 @@ "dnsPrefix": "dnsprefix1", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" }, "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", "kubernetesVersion": "1.22.4", @@ -42,13 +42,13 @@ }, "eTag": "23ujdflewrj3=", "identity": { - "principalId": "z", - "tenantId": "ahylglviidxwpbep", + "principalId": "iaonqlmxsimir", + "tenantId": "pyvckulhirsx", "type": "None", "userAssignedIdentities": { - "key8683": { - "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", - "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" + "key4393": { + "principalId": "zbvtsblmhrlgjlwjrrjxexkx", + "clientId": "ljvjxromkypljsnxhowopwhyaxcl" } } }, diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MaximumSet_Gen.json index 97df83963810..9dc225372855 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MaximumSet_Gen.json @@ -13,7 +13,7 @@ "operation": "Get Operation", "provider": "Microsoft Container Service", "resource": "Operation", - "description": "y" + "description": "pzqrqoqilyhnwnu" }, "name": "Microsoft.ContainerService/locations/operations/read", "origin": "user,system", diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json index a99a0b57f19f..5359424d1834 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json @@ -5,8 +5,8 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "pzmcyysndpakonugmoofznun", - "If-None-Match": "ejyyqho", + "If-Match": "ewftk", + "If-None-Match": "hjpetxltlsnqzlrnvhko", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "resource": { @@ -74,7 +74,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } @@ -82,17 +82,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T23:50:02.489Z", - "completedTime": "2025-02-19T23:50:02.489Z", + "startTime": "2025-02-20T00:48:22.175Z", + "completedTime": "2025-02-20T00:48:22.175Z", "state": "NotStarted", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -102,16 +102,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -122,16 +122,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -142,16 +142,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -159,8 +159,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "unwusxwjjovzblozf", - "message": "m" + "operationId": "khbrsjuwrypzcnj", + "message": "vpxvmjkitgmzuscyjesjojusr" } ] } @@ -168,16 +168,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -190,7 +190,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } @@ -239,7 +239,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } @@ -247,17 +247,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T23:50:02.489Z", - "completedTime": "2025-02-19T23:50:02.489Z", + "startTime": "2025-02-20T00:48:22.175Z", + "completedTime": "2025-02-20T00:48:22.175Z", "state": "NotStarted", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -267,16 +267,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -287,16 +287,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -307,16 +307,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -324,8 +324,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "unwusxwjjovzblozf", - "message": "m" + "operationId": "khbrsjuwrypzcnj", + "message": "vpxvmjkitgmzuscyjesjojusr" } ] } @@ -333,16 +333,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -355,7 +355,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Delete_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Delete_MaximumSet_Gen.json index d8a786714513..b6d6273b38b2 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Delete_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "rpfpzegbtanjwsnyrbnwrcsetnuph", + "If-Match": "w", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Get_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Get_MaximumSet_Gen.json index 20f04a1779ad..bcca9f5752ca 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Get_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Get_MaximumSet_Gen.json @@ -35,7 +35,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } @@ -43,17 +43,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T23:50:02.489Z", - "completedTime": "2025-02-19T23:50:02.489Z", + "startTime": "2025-02-20T00:48:22.175Z", + "completedTime": "2025-02-20T00:48:22.175Z", "state": "NotStarted", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -63,16 +63,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -83,16 +83,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -103,16 +103,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -120,8 +120,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "unwusxwjjovzblozf", - "message": "m" + "operationId": "khbrsjuwrypzcnj", + "message": "vpxvmjkitgmzuscyjesjojusr" } ] } @@ -129,16 +129,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -151,7 +151,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_ListByFleet_MaximumSet_Gen.json index 67f5c202d2d5..8d08ede697f0 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_ListByFleet_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_ListByFleet_MaximumSet_Gen.json @@ -47,7 +47,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } @@ -55,16 +55,16 @@ "status": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -74,16 +74,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -94,16 +94,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -114,16 +114,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -131,8 +131,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "unwusxwjjovzblozf", - "message": "m" + "operationId": "khbrsjuwrypzcnj", + "message": "vpxvmjkitgmzuscyjesjojusr" } ] } @@ -140,16 +140,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -162,12 +162,12 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } }, - "updateStrategyId": "pnqyzztlv" + "updateStrategyId": "ohaskc" }, "eTag": "\"EtagValue\"" } diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Skip_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Skip_MaximumSet_Gen.json index 8151fd4cf960..aab872d466cd 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Skip_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Skip_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "hzvzdivqigstpigwjkejax", + "If-Match": "fngljludqnnyhdyprvuclvsqnsk", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "body": { @@ -48,7 +48,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } @@ -56,17 +56,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T23:50:02.489Z", - "completedTime": "2025-02-19T23:50:02.489Z", + "startTime": "2025-02-20T00:48:22.175Z", + "completedTime": "2025-02-20T00:48:22.175Z", "state": "NotStarted", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -76,16 +76,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -96,16 +96,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -116,16 +116,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -133,8 +133,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "unwusxwjjovzblozf", - "message": "m" + "operationId": "khbrsjuwrypzcnj", + "message": "vpxvmjkitgmzuscyjesjojusr" } ] } @@ -142,16 +142,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -164,7 +164,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Start_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Start_MaximumSet_Gen.json index 41dcb33f1148..816504c62ece 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Start_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Start_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "zltdatqku", + "If-Match": "qgsuxoswfukttgzgv", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -36,7 +36,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } @@ -44,17 +44,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T23:50:02.489Z", - "completedTime": "2025-02-19T23:50:02.489Z", + "startTime": "2025-02-20T00:48:22.175Z", + "completedTime": "2025-02-20T00:48:22.175Z", "state": "NotStarted", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -64,16 +64,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -84,16 +84,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -104,16 +104,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -121,8 +121,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "unwusxwjjovzblozf", - "message": "m" + "operationId": "khbrsjuwrypzcnj", + "message": "vpxvmjkitgmzuscyjesjojusr" } ] } @@ -130,16 +130,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -152,7 +152,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Stop_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Stop_MaximumSet_Gen.json index f4cff39d6ab1..9cd0fc28ae05 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Stop_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Stop_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "xofitllvyb", + "If-Match": "xujyrtwvdfarlaowvi", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -36,7 +36,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } @@ -44,17 +44,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T23:50:02.489Z", - "completedTime": "2025-02-19T23:50:02.489Z", + "startTime": "2025-02-20T00:48:22.175Z", + "completedTime": "2025-02-20T00:48:22.175Z", "state": "NotStarted", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -64,16 +64,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -84,16 +84,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -104,16 +104,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -121,8 +121,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "unwusxwjjovzblozf", - "message": "m" + "operationId": "khbrsjuwrypzcnj", + "message": "vpxvmjkitgmzuscyjesjojusr" } ] } @@ -130,16 +130,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -152,7 +152,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json index 707d11b72453..33d153c48577 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json @@ -94,12 +94,6 @@ }, "List the operations for the provider. - generated by [MinimumSet] rule": { "$ref": "./examples/Operations_List_MinimumSet_Gen.json" - }, - "Operations_List_MaximumSet_Gen": { - "$ref": "./examples/Operations_List_MaximumSet_Gen.json" - }, - "Operations_List_MinimumSet_Gen": { - "$ref": "./examples/Operations_List_MinimumSet_Gen.json" } }, "x-ms-pageable": { @@ -142,9 +136,6 @@ }, "Lists the Fleet resources in a subscription. - generated by [MaximumSet] rule": { "$ref": "./examples/Fleets_ListBySubscription_MaximumSet_Gen.json" - }, - "Fleets_ListBySubscription_MaximumSet_Gen": { - "$ref": "./examples/Fleets_ListBySubscription_MaximumSet_Gen.json" } }, "x-ms-pageable": { @@ -190,9 +181,6 @@ }, "Lists the Fleet resources in a resource group. - generated by [MaximumSet] rule": { "$ref": "./examples/Fleets_ListByResourceGroup_MaximumSet_Gen.json" - }, - "Fleets_ListByResourceGroup_MaximumSet_Gen": { - "$ref": "./examples/Fleets_ListByResourceGroup_MaximumSet_Gen.json" } }, "x-ms-pageable": { @@ -248,9 +236,6 @@ }, "Gets a Fleet resource. - generated by [MaximumSet] rule": { "$ref": "./examples/Fleets_Get_MaximumSet_Gen.json" - }, - "Fleets_Get_MaximumSet_Gen": { - "$ref": "./examples/Fleets_Get_MaximumSet_Gen.json" } } }, @@ -339,9 +324,6 @@ }, "Creates a Fleet resource with a long running operation. - generated by [MaximumSet] rule": { "$ref": "./examples/Fleets_CreateOrUpdate_MaximumSet_Gen.json" - }, - "Fleets_CreateOrUpdate_MaximumSet_Gen": { - "$ref": "./examples/Fleets_CreateOrUpdate_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -427,9 +409,6 @@ }, "Update a Fleet. - generated by [MaximumSet] rule": { "$ref": "./examples/Fleets_Update_MaximumSet_Gen.json" - }, - "Fleets_Update_MaximumSet_Gen": { - "$ref": "./examples/Fleets_Update_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -506,9 +485,6 @@ }, "Deletes a Fleet resource asynchronously with a long running operation. - generated by [MaximumSet] rule": { "$ref": "./examples/Fleets_Delete_MaximumSet_Gen.json" - }, - "Fleets_Delete_MaximumSet_Gen": { - "$ref": "./examples/Fleets_Delete_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -565,9 +541,6 @@ }, "Lists the AutoUpgradeProfile resources by fleet. - generated by [MaximumSet] rule": { "$ref": "./examples/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json" - }, - "AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen": { - "$ref": "./examples/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json" } }, "x-ms-pageable": { @@ -633,9 +606,6 @@ }, "Gets an AutoUpgradeProfile resource. - generated by [MaximumSet] rule": { "$ref": "./examples/AutoUpgradeProfiles_Get_MaximumSet_Gen.json" - }, - "AutoUpgradeProfiles_Get_MaximumSet_Gen": { - "$ref": "./examples/AutoUpgradeProfiles_Get_MaximumSet_Gen.json" } } }, @@ -738,9 +708,6 @@ }, "Create an AutoUpgradeProfile. - generated by [MaximumSet] rule": { "$ref": "./examples/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json" - }, - "AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen": { - "$ref": "./examples/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -824,9 +791,6 @@ }, "Delete an AutoUpgradeProfile resource. - generated by [MaximumSet] rule": { "$ref": "./examples/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json" - }, - "AutoUpgradeProfiles_Delete_MaximumSet_Gen": { - "$ref": "./examples/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -883,9 +847,6 @@ }, "Lists the user credentials of a Fleet. - generated by [MaximumSet] rule": { "$ref": "./examples/Fleets_ListCredentials_MaximumSet_Gen.json" - }, - "Fleets_ListCredentials_MaximumSet_Gen": { - "$ref": "./examples/Fleets_ListCredentials_MaximumSet_Gen.json" } } } @@ -938,9 +899,6 @@ }, "Lists the members of a Fleet. - generated by [MaximumSet] rule": { "$ref": "./examples/FleetMembers_ListByFleet_MaximumSet_Gen.json" - }, - "FleetMembers_ListByFleet_MaximumSet_Gen": { - "$ref": "./examples/FleetMembers_ListByFleet_MaximumSet_Gen.json" } }, "x-ms-pageable": { @@ -1006,9 +964,6 @@ }, "Gets a FleetMember resource. - generated by [MaximumSet] rule": { "$ref": "./examples/FleetMembers_Get_MaximumSet_Gen.json" - }, - "FleetMembers_Get_MaximumSet_Gen": { - "$ref": "./examples/FleetMembers_Get_MaximumSet_Gen.json" } } }, @@ -1107,9 +1062,6 @@ }, "Creates a FleetMember resource with a long running operation. - generated by [MaximumSet] rule": { "$ref": "./examples/FleetMembers_Create_MaximumSet_Gen.json" - }, - "FleetMembers_Create_MaximumSet_Gen": { - "$ref": "./examples/FleetMembers_Create_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -1205,9 +1157,6 @@ }, "Updates a FleetMember resource synchronously. - generated by [MaximumSet] rule": { "$ref": "./examples/FleetMembers_Update_MaximumSet_Gen.json" - }, - "FleetMembers_Update_MaximumSet_Gen": { - "$ref": "./examples/FleetMembers_Update_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -1294,9 +1243,6 @@ }, "Deletes a FleetMember resource asynchronously with a long running operation. - generated by [MaximumSet] rule": { "$ref": "./examples/FleetMembers_Delete_MaximumSet_Gen.json" - }, - "FleetMembers_Delete_MaximumSet_Gen": { - "$ref": "./examples/FleetMembers_Delete_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -1353,9 +1299,6 @@ }, "Lists the UpdateRun resources by fleet. - generated by [MaximumSet] rule": { "$ref": "./examples/UpdateRuns_ListByFleet_MaximumSet_Gen.json" - }, - "UpdateRuns_ListByFleet_MaximumSet_Gen": { - "$ref": "./examples/UpdateRuns_ListByFleet_MaximumSet_Gen.json" } }, "x-ms-pageable": { @@ -1421,9 +1364,6 @@ }, "Gets an UpdateRun resource. - generated by [MaximumSet] rule": { "$ref": "./examples/UpdateRuns_Get_MaximumSet_Gen.json" - }, - "UpdateRuns_Get_MaximumSet_Gen": { - "$ref": "./examples/UpdateRuns_Get_MaximumSet_Gen.json" } } }, @@ -1522,9 +1462,6 @@ }, "Create an UpdateRun. - generated by [MaximumSet] rule": { "$ref": "./examples/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json" - }, - "UpdateRuns_CreateOrUpdate_MaximumSet_Gen": { - "$ref": "./examples/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -1611,9 +1548,6 @@ }, "Delete an updateRun resource. - generated by [MaximumSet] rule": { "$ref": "./examples/UpdateRuns_Delete_MaximumSet_Gen.json" - }, - "UpdateRuns_Delete_MaximumSet_Gen": { - "$ref": "./examples/UpdateRuns_Delete_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -1711,9 +1645,6 @@ }, "Skips one or more member/group/stage/afterStageWait(s) of an UpdateRun. - generated by [MaximumSet] rule": { "$ref": "./examples/UpdateRuns_Skip_MaximumSet_Gen.json" - }, - "UpdateRuns_Skip_MaximumSet_Gen": { - "$ref": "./examples/UpdateRuns_Skip_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -1802,9 +1733,6 @@ }, "Starts an UpdateRun. - generated by [MaximumSet] rule": { "$ref": "./examples/UpdateRuns_Start_MaximumSet_Gen.json" - }, - "UpdateRuns_Start_MaximumSet_Gen": { - "$ref": "./examples/UpdateRuns_Start_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -1893,9 +1821,6 @@ }, "Stops an UpdateRun. - generated by [MaximumSet] rule": { "$ref": "./examples/UpdateRuns_Stop_MaximumSet_Gen.json" - }, - "UpdateRuns_Stop_MaximumSet_Gen": { - "$ref": "./examples/UpdateRuns_Stop_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -1952,9 +1877,6 @@ }, "List the FleetUpdateStrategy resources by fleet. - generated by [MaximumSet] rule": { "$ref": "./examples/FleetUpdateStrategies_ListByFleet_MaximumSet_Gen.json" - }, - "FleetUpdateStrategies_ListByFleet_MaximumSet_Gen": { - "$ref": "./examples/FleetUpdateStrategies_ListByFleet_MaximumSet_Gen.json" } }, "x-ms-pageable": { @@ -2020,9 +1942,6 @@ }, "Get a FleetUpdateStrategy resource. - generated by [MaximumSet] rule": { "$ref": "./examples/FleetUpdateStrategies_Get_MaximumSet_Gen.json" - }, - "FleetUpdateStrategies_Get_MaximumSet_Gen": { - "$ref": "./examples/FleetUpdateStrategies_Get_MaximumSet_Gen.json" } } }, @@ -2121,9 +2040,6 @@ }, "Create a FleetUpdateStrategy. - generated by [MaximumSet] rule": { "$ref": "./examples/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json" - }, - "FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen": { - "$ref": "./examples/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { @@ -2210,9 +2126,6 @@ }, "Delete a FleetUpdateStrategy resource. - generated by [MaximumSet] rule": { "$ref": "./examples/FleetUpdateStrategies_Delete_MaximumSet_Gen.json" - }, - "FleetUpdateStrategies_Delete_MaximumSet_Gen": { - "$ref": "./examples/FleetUpdateStrategies_Delete_MaximumSet_Gen.json" } }, "x-ms-long-running-operation-options": { From 1389c16808f8d476b3de6a0b3e4f55585637f2b8 Mon Sep 17 00:00:00 2001 From: frantran Date: Wed, 19 Feb 2025 16:54:27 -0800 Subject: [PATCH 08/11] transfer examples --- ...rofiles_CreateOrUpdate_MaximumSet_Gen.json | 34 ++--- ...UpgradeProfiles_Delete_MaximumSet_Gen.json | 2 +- ...utoUpgradeProfiles_Get_MaximumSet_Gen.json | 14 +- ...deProfiles_ListByFleet_MaximumSet_Gen.json | 14 +- .../FleetMembers_Create_MaximumSet_Gen.json | 4 +- .../FleetMembers_Delete_MaximumSet_Gen.json | 2 +- .../FleetMembers_Update_MaximumSet_Gen.json | 2 +- ...ategies_CreateOrUpdate_MaximumSet_Gen.json | 4 +- ...pdateStrategies_Delete_MaximumSet_Gen.json | 2 +- .../Fleets_CreateOrUpdate_MaximumSet_Gen.json | 38 ++--- .../Fleets_Delete_MaximumSet_Gen.json | 2 +- .../2025-03-01/Fleets_Get_MaximumSet_Gen.json | 14 +- ...ts_ListByResourceGroup_MaximumSet_Gen.json | 14 +- ...ets_ListBySubscription_MaximumSet_Gen.json | 14 +- .../Fleets_Update_MaximumSet_Gen.json | 18 +-- .../Operations_List_MaximumSet_Gen.json | 2 +- ...ateRuns_CreateOrUpdate_MaximumSet_Gen.json | 140 +++++++++--------- .../UpdateRuns_Delete_MaximumSet_Gen.json | 2 +- .../UpdateRuns_Get_MaximumSet_Gen.json | 68 ++++----- ...UpdateRuns_ListByFleet_MaximumSet_Gen.json | 70 ++++----- .../UpdateRuns_Skip_MaximumSet_Gen.json | 70 ++++----- .../UpdateRuns_Start_MaximumSet_Gen.json | 70 ++++----- .../UpdateRuns_Stop_MaximumSet_Gen.json | 70 ++++----- 23 files changed, 335 insertions(+), 335 deletions(-) diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json index 3701e49e563c..fbf3f1256110 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json @@ -5,14 +5,14 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "swnvvxbzd", - "If-None-Match": "iuqfsqhorgqzzqhpdalxrzyuzq", + "If-Match": "vhf", + "If-None-Match": "djyb", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "autoUpgradeProfileName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "resource": { "properties": { "channel": "Stable", - "updateStrategyId": "pnqyzztlv", + "updateStrategyId": "ohaskc", "nodeImageSelection": { "type": "Latest" }, @@ -29,28 +29,28 @@ "properties": { "channel": "Stable", "provisioningState": "Succeeded", - "updateStrategyId": "pnqyzztlv", + "updateStrategyId": "ohaskc", "nodeImageSelection": { "type": "Latest" }, "disabled": true, "autoUpgradeProfileStatus": { - "lastTriggeredAt": "2025-02-19T23:50:02.478Z", + "lastTriggeredAt": "2025-02-20T00:48:22.164Z", "lastTriggerStatus": "Succeeded", "lastTriggerError": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] }, "lastTriggerUpgradeVersions": [ - "kfficebabkcagsbkpdlkndrhq" + "nbotahqooxzbdxdnya" ] } }, @@ -76,28 +76,28 @@ "properties": { "channel": "Stable", "provisioningState": "Succeeded", - "updateStrategyId": "pnqyzztlv", + "updateStrategyId": "ohaskc", "nodeImageSelection": { "type": "Latest" }, "disabled": true, "autoUpgradeProfileStatus": { - "lastTriggeredAt": "2025-02-19T23:50:02.478Z", + "lastTriggeredAt": "2025-02-20T00:48:22.164Z", "lastTriggerStatus": "Succeeded", "lastTriggerError": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] }, "lastTriggerUpgradeVersions": [ - "kfficebabkcagsbkpdlkndrhq" + "nbotahqooxzbdxdnya" ] } }, diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json index a14d5e29fc02..a97cf88267fc 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "mhyg", + "If-Match": "gzrlqrbqhsxleyxniqdbohaqgde", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "autoUpgradeProfileName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Get_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Get_MaximumSet_Gen.json index 4c8562a18933..b54e8d1a9fb3 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Get_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Get_MaximumSet_Gen.json @@ -14,28 +14,28 @@ "properties": { "channel": "Stable", "provisioningState": "Succeeded", - "updateStrategyId": "pnqyzztlv", + "updateStrategyId": "ohaskc", "nodeImageSelection": { "type": "Latest" }, "disabled": true, "autoUpgradeProfileStatus": { - "lastTriggeredAt": "2025-02-19T23:50:02.478Z", + "lastTriggeredAt": "2025-02-20T00:48:22.164Z", "lastTriggerStatus": "Succeeded", "lastTriggerError": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] }, "lastTriggerUpgradeVersions": [ - "kfficebabkcagsbkpdlkndrhq" + "nbotahqooxzbdxdnya" ] } }, diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json index f6e153b3a079..23915c95fd82 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json @@ -26,28 +26,28 @@ "properties": { "provisioningState": "Succeeded", "channel": "Stable", - "updateStrategyId": "pnqyzztlv", + "updateStrategyId": "ohaskc", "nodeImageSelection": { "type": "Latest" }, "disabled": true, "autoUpgradeProfileStatus": { - "lastTriggeredAt": "2025-02-19T23:50:02.478Z", + "lastTriggeredAt": "2025-02-20T00:48:22.164Z", "lastTriggerStatus": "Succeeded", "lastTriggerError": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] }, "lastTriggerUpgradeVersions": [ - "kfficebabkcagsbkpdlkndrhq" + "nbotahqooxzbdxdnya" ] } }, diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Create_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Create_MaximumSet_Gen.json index 3296ec3a74e4..16040286c6e7 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Create_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Create_MaximumSet_Gen.json @@ -5,8 +5,8 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "akvyjetcdzuotgiycfrncdytpzhk", - "If-None-Match": "hixbzprfthzsuz", + "If-Match": "awgjzdt", + "If-None-Match": "iy", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "fleetMemberName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "resource": { diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Delete_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Delete_MaximumSet_Gen.json index f3d5b12540cb..b10061f83765 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Delete_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "dhtwxhehdfriampporpwkez", + "If-Match": "ivrjiiegjv", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "fleetMemberName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Update_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Update_MaximumSet_Gen.json index ce7d47f6b766..1d94525aaa33 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Update_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Update_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "sxajvnerntvtzpzmd", + "If-Match": "udtriggqul", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "fleetMemberName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "properties": { diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json index 22af79776cdb..b9e84330307c 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json @@ -5,8 +5,8 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "gixdvzfdebqrvmfrxicdcgeee", - "If-None-Match": "loolywtqdklsyaredzi", + "If-Match": "cpvxzrxdwcxqgux", + "If-None-Match": "krwxknjdvyddhjafir", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateStrategyName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "resource": { diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Delete_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Delete_MaximumSet_Gen.json index 7eb350dfd773..bcc10ba934dd 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Delete_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "qkqxmklnbceocphsxchlwsluqlawy", + "If-Match": "kndajsfprcnlyky", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateStrategyName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_CreateOrUpdate_MaximumSet_Gen.json index ce464fbc482e..a976c12d3d44 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_CreateOrUpdate_MaximumSet_Gen.json @@ -5,8 +5,8 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "shrehzalrjbmlsanjlrgubuwmclpxi", - "If-None-Match": "zrnjyxtvbqmgyiqkunrekrc", + "If-Match": "ifljjhybjjexzuyqjmbfwhub", + "If-None-Match": "vibeotgbklktaamfz", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "resource": { "tags": {}, @@ -16,19 +16,19 @@ "dnsPrefix": "dnsprefix1", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" } } }, "identity": { "type": "None", "userAssignedIdentities": { - "key8683": {} + "key4393": {} } } } @@ -43,12 +43,12 @@ "dnsPrefix": "dnsprefix1", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" }, "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", "kubernetesVersion": "1.22.4", @@ -58,13 +58,13 @@ }, "eTag": "23ujdflewrj3=", "identity": { - "principalId": "z", - "tenantId": "ahylglviidxwpbep", + "principalId": "iaonqlmxsimir", + "tenantId": "pyvckulhirsx", "type": "None", "userAssignedIdentities": { - "key8683": { - "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", - "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" + "key4393": { + "principalId": "zbvtsblmhrlgjlwjrrjxexkx", + "clientId": "ljvjxromkypljsnxhowopwhyaxcl" } } }, @@ -93,12 +93,12 @@ "dnsPrefix": "dnsprefix1", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" }, "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", "kubernetesVersion": "1.22.4", @@ -108,13 +108,13 @@ }, "eTag": "23ujdflewrj3=", "identity": { - "principalId": "z", - "tenantId": "ahylglviidxwpbep", + "principalId": "iaonqlmxsimir", + "tenantId": "pyvckulhirsx", "type": "None", "userAssignedIdentities": { - "key8683": { - "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", - "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" + "key4393": { + "principalId": "zbvtsblmhrlgjlwjrrjxexkx", + "clientId": "ljvjxromkypljsnxhowopwhyaxcl" } } }, diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Delete_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Delete_MaximumSet_Gen.json index 922e3d6271b2..831fa392946d 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Delete_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "sigdya", + "If-Match": "rk", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, "responses": { diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Get_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Get_MaximumSet_Gen.json index 128efef23ea7..4b6dc233d5fe 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Get_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Get_MaximumSet_Gen.json @@ -17,12 +17,12 @@ "dnsPrefix": "dnsprefix1", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" }, "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", "kubernetesVersion": "1.22.4", @@ -32,13 +32,13 @@ }, "eTag": "23ujdflewrj3=", "identity": { - "principalId": "z", - "tenantId": "ahylglviidxwpbep", + "principalId": "iaonqlmxsimir", + "tenantId": "pyvckulhirsx", "type": "None", "userAssignedIdentities": { - "key8683": { - "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", - "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" + "key4393": { + "principalId": "zbvtsblmhrlgjlwjrrjxexkx", + "clientId": "ljvjxromkypljsnxhowopwhyaxcl" } } }, diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListByResourceGroup_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListByResourceGroup_MaximumSet_Gen.json index 3345be5c584c..da39684a3364 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListByResourceGroup_MaximumSet_Gen.json @@ -33,24 +33,24 @@ "kubernetesVersion": "1.22.4", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" } }, "provisioningState": "Succeeded" }, "identity": { - "principalId": "z", - "tenantId": "ahylglviidxwpbep", + "principalId": "iaonqlmxsimir", + "tenantId": "pyvckulhirsx", "type": "None", "userAssignedIdentities": { - "key8683": { - "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", - "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" + "key4393": { + "principalId": "zbvtsblmhrlgjlwjrrjxexkx", + "clientId": "ljvjxromkypljsnxhowopwhyaxcl" } } } diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListBySubscription_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListBySubscription_MaximumSet_Gen.json index 6d5b52440c90..a2731cc1fd29 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListBySubscription_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListBySubscription_MaximumSet_Gen.json @@ -32,24 +32,24 @@ "kubernetesVersion": "1.22.4", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" } }, "provisioningState": "Succeeded" }, "identity": { - "principalId": "z", - "tenantId": "ahylglviidxwpbep", + "principalId": "iaonqlmxsimir", + "tenantId": "pyvckulhirsx", "type": "None", "userAssignedIdentities": { - "key8683": { - "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", - "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" + "key4393": { + "principalId": "zbvtsblmhrlgjlwjrrjxexkx", + "clientId": "ljvjxromkypljsnxhowopwhyaxcl" } } } diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Update_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Update_MaximumSet_Gen.json index db00f9eb4241..b0c2d060aa22 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Update_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Update_MaximumSet_Gen.json @@ -5,14 +5,14 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "qlsoyycxzgd", + "If-Match": "mdtfdjlvbhb", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "properties": { "tags": {}, "identity": { "type": "None", "userAssignedIdentities": { - "key8683": {} + "key4393": {} } } } @@ -27,12 +27,12 @@ "dnsPrefix": "dnsprefix1", "agentProfile": { "vmSize": "Standard_DS1", - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" }, "apiServerAccessProfile": { "enablePrivateCluster": true, "enableVnetIntegration": true, - "subnetId": "s" + "subnetId": "aexnnctsagqbhvudgknkogxuad" }, "fqdn": "dnsprefix1-abcd1234.flt.eastus.azmk8s.io", "kubernetesVersion": "1.22.4", @@ -42,13 +42,13 @@ }, "eTag": "23ujdflewrj3=", "identity": { - "principalId": "z", - "tenantId": "ahylglviidxwpbep", + "principalId": "iaonqlmxsimir", + "tenantId": "pyvckulhirsx", "type": "None", "userAssignedIdentities": { - "key8683": { - "principalId": "ctbcbvpwuxovpbzvbimnaoybbivnq", - "clientId": "luoqmyillbnsmmfcjcmpdpjfcagqqe" + "key4393": { + "principalId": "zbvtsblmhrlgjlwjrrjxexkx", + "clientId": "ljvjxromkypljsnxhowopwhyaxcl" } } }, diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MaximumSet_Gen.json index 97df83963810..9dc225372855 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MaximumSet_Gen.json @@ -13,7 +13,7 @@ "operation": "Get Operation", "provider": "Microsoft Container Service", "resource": "Operation", - "description": "y" + "description": "pzqrqoqilyhnwnu" }, "name": "Microsoft.ContainerService/locations/operations/read", "origin": "user,system", diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json index a99a0b57f19f..5359424d1834 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json @@ -5,8 +5,8 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "pzmcyysndpakonugmoofznun", - "If-None-Match": "ejyyqho", + "If-Match": "ewftk", + "If-None-Match": "hjpetxltlsnqzlrnvhko", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "resource": { @@ -74,7 +74,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } @@ -82,17 +82,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T23:50:02.489Z", - "completedTime": "2025-02-19T23:50:02.489Z", + "startTime": "2025-02-20T00:48:22.175Z", + "completedTime": "2025-02-20T00:48:22.175Z", "state": "NotStarted", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -102,16 +102,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -122,16 +122,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -142,16 +142,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -159,8 +159,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "unwusxwjjovzblozf", - "message": "m" + "operationId": "khbrsjuwrypzcnj", + "message": "vpxvmjkitgmzuscyjesjojusr" } ] } @@ -168,16 +168,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -190,7 +190,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } @@ -239,7 +239,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } @@ -247,17 +247,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T23:50:02.489Z", - "completedTime": "2025-02-19T23:50:02.489Z", + "startTime": "2025-02-20T00:48:22.175Z", + "completedTime": "2025-02-20T00:48:22.175Z", "state": "NotStarted", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -267,16 +267,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -287,16 +287,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -307,16 +307,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -324,8 +324,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "unwusxwjjovzblozf", - "message": "m" + "operationId": "khbrsjuwrypzcnj", + "message": "vpxvmjkitgmzuscyjesjojusr" } ] } @@ -333,16 +333,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -355,7 +355,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Delete_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Delete_MaximumSet_Gen.json index d8a786714513..b6d6273b38b2 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Delete_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "rpfpzegbtanjwsnyrbnwrcsetnuph", + "If-Match": "w", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Get_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Get_MaximumSet_Gen.json index 20f04a1779ad..bcca9f5752ca 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Get_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Get_MaximumSet_Gen.json @@ -35,7 +35,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } @@ -43,17 +43,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T23:50:02.489Z", - "completedTime": "2025-02-19T23:50:02.489Z", + "startTime": "2025-02-20T00:48:22.175Z", + "completedTime": "2025-02-20T00:48:22.175Z", "state": "NotStarted", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -63,16 +63,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -83,16 +83,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -103,16 +103,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -120,8 +120,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "unwusxwjjovzblozf", - "message": "m" + "operationId": "khbrsjuwrypzcnj", + "message": "vpxvmjkitgmzuscyjesjojusr" } ] } @@ -129,16 +129,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -151,7 +151,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_ListByFleet_MaximumSet_Gen.json index 67f5c202d2d5..8d08ede697f0 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_ListByFleet_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_ListByFleet_MaximumSet_Gen.json @@ -47,7 +47,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } @@ -55,16 +55,16 @@ "status": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -74,16 +74,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -94,16 +94,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -114,16 +114,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -131,8 +131,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "unwusxwjjovzblozf", - "message": "m" + "operationId": "khbrsjuwrypzcnj", + "message": "vpxvmjkitgmzuscyjesjojusr" } ] } @@ -140,16 +140,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -162,12 +162,12 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } }, - "updateStrategyId": "pnqyzztlv" + "updateStrategyId": "ohaskc" }, "eTag": "\"EtagValue\"" } diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Skip_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Skip_MaximumSet_Gen.json index 8151fd4cf960..aab872d466cd 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Skip_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Skip_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "hzvzdivqigstpigwjkejax", + "If-Match": "fngljludqnnyhdyprvuclvsqnsk", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "body": { @@ -48,7 +48,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } @@ -56,17 +56,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T23:50:02.489Z", - "completedTime": "2025-02-19T23:50:02.489Z", + "startTime": "2025-02-20T00:48:22.175Z", + "completedTime": "2025-02-20T00:48:22.175Z", "state": "NotStarted", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -76,16 +76,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -96,16 +96,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -116,16 +116,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -133,8 +133,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "unwusxwjjovzblozf", - "message": "m" + "operationId": "khbrsjuwrypzcnj", + "message": "vpxvmjkitgmzuscyjesjojusr" } ] } @@ -142,16 +142,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -164,7 +164,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Start_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Start_MaximumSet_Gen.json index 41dcb33f1148..816504c62ece 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Start_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Start_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "zltdatqku", + "If-Match": "qgsuxoswfukttgzgv", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -36,7 +36,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } @@ -44,17 +44,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T23:50:02.489Z", - "completedTime": "2025-02-19T23:50:02.489Z", + "startTime": "2025-02-20T00:48:22.175Z", + "completedTime": "2025-02-20T00:48:22.175Z", "state": "NotStarted", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -64,16 +64,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -84,16 +84,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -104,16 +104,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -121,8 +121,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "unwusxwjjovzblozf", - "message": "m" + "operationId": "khbrsjuwrypzcnj", + "message": "vpxvmjkitgmzuscyjesjojusr" } ] } @@ -130,16 +130,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -152,7 +152,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Stop_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Stop_MaximumSet_Gen.json index f4cff39d6ab1..9cd0fc28ae05 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Stop_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Stop_MaximumSet_Gen.json @@ -5,7 +5,7 @@ "api-version": "2025-03-01", "subscriptionId": "subid1", "resourceGroupName": "rgfleets", - "If-Match": "xofitllvyb", + "If-Match": "xujyrtwvdfarlaowvi", "fleetName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$", "updateRunName": "Replace this value with a string matching RegExp ^[a-z0-9]([-a-z0-9]*[a-z0-9])?$" }, @@ -36,7 +36,7 @@ "type": "Latest", "customNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } @@ -44,17 +44,17 @@ "provisioningState": "Succeeded", "status": { "status": { - "startTime": "2025-02-19T23:50:02.489Z", - "completedTime": "2025-02-19T23:50:02.489Z", + "startTime": "2025-02-20T00:48:22.175Z", + "completedTime": "2025-02-20T00:48:22.175Z", "state": "NotStarted", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -64,16 +64,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -84,16 +84,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.172Z", + "completedTime": "2025-02-20T00:48:22.172Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -104,16 +104,16 @@ { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -121,8 +121,8 @@ }, "name": "member-one", "clusterResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myClusters/providers/Microsoft.ContainerService/managedClusters/myCluster", - "operationId": "unwusxwjjovzblozf", - "message": "m" + "operationId": "khbrsjuwrypzcnj", + "message": "vpxvmjkitgmzuscyjesjojusr" } ] } @@ -130,16 +130,16 @@ "afterStageWaitStatus": { "status": { "state": "NotStarted", - "startTime": "2025-02-19T23:50:02.487Z", - "completedTime": "2025-02-19T23:50:02.487Z", + "startTime": "2025-02-20T00:48:22.173Z", + "completedTime": "2025-02-20T00:48:22.173Z", "error": { - "code": "vznrgtmwpdkngtmllcj", - "message": "nivagouilffjaai", - "target": "qaaubxdbbtiwfxaicyfhilqtmxc", + "code": "pxuopsshmbfvkbatogpzsbpvkwsb", + "message": "wyeojnblhufnbohcsop", + "target": "pgkraficzuerevkwuimmapxexlrc", "details": [], "additionalInfo": [ { - "type": "anvsapjjyqsbifgtpuak", + "type": "xjtvkcuocwqtlay", "info": {} } ] @@ -152,7 +152,7 @@ "nodeImageSelection": { "selectedNodeImageVersions": [ { - "version": "owwfysjmtwblmjoncjxixjqspl" + "version": "qkbwfhitaw" } ] } From 618c26644c8d5d9a10a8fcfed4b93e470341b602 Mon Sep 17 00:00:00 2001 From: frantran Date: Wed, 19 Feb 2025 16:59:07 -0800 Subject: [PATCH 09/11] fix gen --- .../fleet/stable/2025-03-01/fleets.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json index 33d153c48577..e32cebd26f25 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/fleets.json @@ -3528,4 +3528,4 @@ } }, "parameters": {} -} \ No newline at end of file +} From f2d161587edf7d3a66a6e5941d11d5cf60e553cd Mon Sep 17 00:00:00 2001 From: frantran Date: Wed, 19 Feb 2025 17:03:28 -0800 Subject: [PATCH 10/11] fix format --- .../Fleet.Management/update/autoupgradeprofile.tsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/containerservice/Fleet.Management/update/autoupgradeprofile.tsp b/specification/containerservice/Fleet.Management/update/autoupgradeprofile.tsp index 3a0efa0642c7..d3d6010c1c4d 100644 --- a/specification/containerservice/Fleet.Management/update/autoupgradeprofile.tsp +++ b/specification/containerservice/Fleet.Management/update/autoupgradeprofile.tsp @@ -159,4 +159,4 @@ union AutoUpgradeLastTriggerStatus { @doc("The last AutoUpgrade trigger failed.") Failed: "Failed", -} \ No newline at end of file +} From 6f5ee28ab20e2e09d2c5db98494d791d58c58416 Mon Sep 17 00:00:00 2001 From: frantran Date: Wed, 19 Feb 2025 17:17:19 -0800 Subject: [PATCH 11/11] run prettier on examples --- .../AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json | 2 +- .../2025-03-01/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json | 2 +- .../2025-03-01/AutoUpgradeProfiles_Get_MaximumSet_Gen.json | 2 +- .../AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json | 2 +- .../examples/2025-03-01/FleetMembers_Create_MaximumSet_Gen.json | 2 +- .../examples/2025-03-01/FleetMembers_Delete_MaximumSet_Gen.json | 2 +- .../examples/2025-03-01/FleetMembers_Get_MaximumSet_Gen.json | 2 +- .../2025-03-01/FleetMembers_ListByFleet_MaximumSet_Gen.json | 2 +- .../examples/2025-03-01/FleetMembers_Update_MaximumSet_Gen.json | 2 +- .../FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json | 2 +- .../2025-03-01/FleetUpdateStrategies_Delete_MaximumSet_Gen.json | 2 +- .../2025-03-01/FleetUpdateStrategies_Get_MaximumSet_Gen.json | 2 +- .../FleetUpdateStrategies_ListByFleet_MaximumSet_Gen.json | 2 +- .../2025-03-01/Fleets_CreateOrUpdate_MaximumSet_Gen.json | 2 +- .../examples/2025-03-01/Fleets_Delete_MaximumSet_Gen.json | 2 +- .../examples/2025-03-01/Fleets_Get_MaximumSet_Gen.json | 2 +- .../2025-03-01/Fleets_ListByResourceGroup_MaximumSet_Gen.json | 2 +- .../2025-03-01/Fleets_ListBySubscription_MaximumSet_Gen.json | 2 +- .../2025-03-01/Fleets_ListCredentials_MaximumSet_Gen.json | 2 +- .../examples/2025-03-01/Fleets_Update_MaximumSet_Gen.json | 2 +- .../examples/2025-03-01/Operations_List_MaximumSet_Gen.json | 2 +- .../examples/2025-03-01/Operations_List_MinimumSet_Gen.json | 2 +- .../2025-03-01/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json | 2 +- .../examples/2025-03-01/UpdateRuns_Delete_MaximumSet_Gen.json | 2 +- .../examples/2025-03-01/UpdateRuns_Get_MaximumSet_Gen.json | 2 +- .../2025-03-01/UpdateRuns_ListByFleet_MaximumSet_Gen.json | 2 +- .../examples/2025-03-01/UpdateRuns_Skip_MaximumSet_Gen.json | 2 +- .../examples/2025-03-01/UpdateRuns_Start_MaximumSet_Gen.json | 2 +- .../examples/2025-03-01/UpdateRuns_Stop_MaximumSet_Gen.json | 2 +- .../AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json | 2 +- .../examples/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json | 2 +- .../examples/AutoUpgradeProfiles_Get_MaximumSet_Gen.json | 2 +- .../AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json | 2 +- .../2025-03-01/examples/FleetMembers_Create_MaximumSet_Gen.json | 2 +- .../2025-03-01/examples/FleetMembers_Delete_MaximumSet_Gen.json | 2 +- .../2025-03-01/examples/FleetMembers_Get_MaximumSet_Gen.json | 2 +- .../examples/FleetMembers_ListByFleet_MaximumSet_Gen.json | 2 +- .../2025-03-01/examples/FleetMembers_Update_MaximumSet_Gen.json | 2 +- .../FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json | 2 +- .../examples/FleetUpdateStrategies_Delete_MaximumSet_Gen.json | 2 +- .../examples/FleetUpdateStrategies_Get_MaximumSet_Gen.json | 2 +- .../FleetUpdateStrategies_ListByFleet_MaximumSet_Gen.json | 2 +- .../examples/Fleets_CreateOrUpdate_MaximumSet_Gen.json | 2 +- .../2025-03-01/examples/Fleets_Delete_MaximumSet_Gen.json | 2 +- .../stable/2025-03-01/examples/Fleets_Get_MaximumSet_Gen.json | 2 +- .../examples/Fleets_ListByResourceGroup_MaximumSet_Gen.json | 2 +- .../examples/Fleets_ListBySubscription_MaximumSet_Gen.json | 2 +- .../examples/Fleets_ListCredentials_MaximumSet_Gen.json | 2 +- .../2025-03-01/examples/Fleets_Update_MaximumSet_Gen.json | 2 +- .../2025-03-01/examples/Operations_List_MaximumSet_Gen.json | 2 +- .../2025-03-01/examples/Operations_List_MinimumSet_Gen.json | 2 +- .../examples/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json | 2 +- .../2025-03-01/examples/UpdateRuns_Delete_MaximumSet_Gen.json | 2 +- .../2025-03-01/examples/UpdateRuns_Get_MaximumSet_Gen.json | 2 +- .../examples/UpdateRuns_ListByFleet_MaximumSet_Gen.json | 2 +- .../2025-03-01/examples/UpdateRuns_Skip_MaximumSet_Gen.json | 2 +- .../2025-03-01/examples/UpdateRuns_Start_MaximumSet_Gen.json | 2 +- .../2025-03-01/examples/UpdateRuns_Stop_MaximumSet_Gen.json | 2 +- 58 files changed, 58 insertions(+), 58 deletions(-) diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json index fbf3f1256110..650112d52172 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json @@ -116,4 +116,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json index a97cf88267fc..cde27fda0597 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json @@ -17,4 +17,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Get_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Get_MaximumSet_Gen.json index b54e8d1a9fb3..e038291e6dda 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Get_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_Get_MaximumSet_Gen.json @@ -54,4 +54,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json index 23915c95fd82..fc40e93cfe87 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json @@ -58,4 +58,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Create_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Create_MaximumSet_Gen.json index 16040286c6e7..3e313a34494f 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Create_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Create_MaximumSet_Gen.json @@ -63,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Delete_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Delete_MaximumSet_Gen.json index b10061f83765..79c13bd62ce1 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Delete_MaximumSet_Gen.json @@ -18,4 +18,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Get_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Get_MaximumSet_Gen.json index 868a8df813fe..c8e16085e5f3 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Get_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Get_MaximumSet_Gen.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_ListByFleet_MaximumSet_Gen.json index cbe80a26c2e6..2411fbc2eb35 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_ListByFleet_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_ListByFleet_MaximumSet_Gen.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Update_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Update_MaximumSet_Gen.json index 1d94525aaa33..c01f59b40e12 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Update_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetMembers_Update_MaximumSet_Gen.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json index b9e84330307c..80e54b706bd8 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json @@ -96,4 +96,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Delete_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Delete_MaximumSet_Gen.json index bcc10ba934dd..fe5400cb05d2 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Delete_MaximumSet_Gen.json @@ -18,4 +18,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Get_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Get_MaximumSet_Gen.json index bbf1aacf25b2..6e970ef95f7f 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Get_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_Get_MaximumSet_Gen.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_ListByFleet_MaximumSet_Gen.json index bcbac871b580..a3f52312c577 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_ListByFleet_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/FleetUpdateStrategies_ListByFleet_MaximumSet_Gen.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_CreateOrUpdate_MaximumSet_Gen.json index a976c12d3d44..bdee242ec2e7 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_CreateOrUpdate_MaximumSet_Gen.json @@ -132,4 +132,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Delete_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Delete_MaximumSet_Gen.json index 831fa392946d..a562b4b76dc6 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Delete_MaximumSet_Gen.json @@ -17,4 +17,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Get_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Get_MaximumSet_Gen.json index 4b6dc233d5fe..a8420cde254b 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Get_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Get_MaximumSet_Gen.json @@ -56,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListByResourceGroup_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListByResourceGroup_MaximumSet_Gen.json index da39684a3364..b4c79d671512 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListByResourceGroup_MaximumSet_Gen.json @@ -60,4 +60,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListBySubscription_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListBySubscription_MaximumSet_Gen.json index a2731cc1fd29..0776aae2230e 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListBySubscription_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListBySubscription_MaximumSet_Gen.json @@ -59,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListCredentials_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListCredentials_MaximumSet_Gen.json index c0243af287bd..f816194d83ea 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListCredentials_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_ListCredentials_MaximumSet_Gen.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Update_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Update_MaximumSet_Gen.json index b0c2d060aa22..f3213fcc0c56 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Update_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Fleets_Update_MaximumSet_Gen.json @@ -71,4 +71,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MaximumSet_Gen.json index 9dc225372855..e4bd5f14e0ba 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MaximumSet_Gen.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MinimumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MinimumSet_Gen.json index 9aa58f9870ed..801dfda8cb34 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MinimumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/Operations_List_MinimumSet_Gen.json @@ -9,4 +9,4 @@ "body": {} } } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json index 5359424d1834..a8f93ab20969 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json @@ -376,4 +376,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Delete_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Delete_MaximumSet_Gen.json index b6d6273b38b2..1dbce1c09203 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Delete_MaximumSet_Gen.json @@ -18,4 +18,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Get_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Get_MaximumSet_Gen.json index bcca9f5752ca..1caa51da248f 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Get_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Get_MaximumSet_Gen.json @@ -172,4 +172,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_ListByFleet_MaximumSet_Gen.json index 8d08ede697f0..83b021155b09 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_ListByFleet_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_ListByFleet_MaximumSet_Gen.json @@ -176,4 +176,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Skip_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Skip_MaximumSet_Gen.json index aab872d466cd..77adf4c03001 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Skip_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Skip_MaximumSet_Gen.json @@ -190,4 +190,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Start_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Start_MaximumSet_Gen.json index 816504c62ece..0508d44a6a7e 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Start_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Start_MaximumSet_Gen.json @@ -178,4 +178,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Stop_MaximumSet_Gen.json b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Stop_MaximumSet_Gen.json index 9cd0fc28ae05..ef15b40e9b5a 100644 --- a/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Stop_MaximumSet_Gen.json +++ b/specification/containerservice/Fleet.Management/examples/2025-03-01/UpdateRuns_Stop_MaximumSet_Gen.json @@ -178,4 +178,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json index fbf3f1256110..650112d52172 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_CreateOrUpdate_MaximumSet_Gen.json @@ -116,4 +116,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json index a97cf88267fc..cde27fda0597 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Delete_MaximumSet_Gen.json @@ -17,4 +17,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Get_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Get_MaximumSet_Gen.json index b54e8d1a9fb3..e038291e6dda 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Get_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_Get_MaximumSet_Gen.json @@ -54,4 +54,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json index 23915c95fd82..fc40e93cfe87 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/AutoUpgradeProfiles_ListByFleet_MaximumSet_Gen.json @@ -58,4 +58,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Create_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Create_MaximumSet_Gen.json index 16040286c6e7..3e313a34494f 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Create_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Create_MaximumSet_Gen.json @@ -63,4 +63,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Delete_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Delete_MaximumSet_Gen.json index b10061f83765..79c13bd62ce1 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Delete_MaximumSet_Gen.json @@ -18,4 +18,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Get_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Get_MaximumSet_Gen.json index 868a8df813fe..c8e16085e5f3 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Get_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Get_MaximumSet_Gen.json @@ -31,4 +31,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_ListByFleet_MaximumSet_Gen.json index cbe80a26c2e6..2411fbc2eb35 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_ListByFleet_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_ListByFleet_MaximumSet_Gen.json @@ -35,4 +35,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Update_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Update_MaximumSet_Gen.json index 1d94525aaa33..c01f59b40e12 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Update_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetMembers_Update_MaximumSet_Gen.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json index b9e84330307c..80e54b706bd8 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_CreateOrUpdate_MaximumSet_Gen.json @@ -96,4 +96,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Delete_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Delete_MaximumSet_Gen.json index bcc10ba934dd..fe5400cb05d2 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Delete_MaximumSet_Gen.json @@ -18,4 +18,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Get_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Get_MaximumSet_Gen.json index bbf1aacf25b2..6e970ef95f7f 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Get_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_Get_MaximumSet_Gen.json @@ -42,4 +42,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_ListByFleet_MaximumSet_Gen.json index bcbac871b580..a3f52312c577 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_ListByFleet_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/FleetUpdateStrategies_ListByFleet_MaximumSet_Gen.json @@ -46,4 +46,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_CreateOrUpdate_MaximumSet_Gen.json index a976c12d3d44..bdee242ec2e7 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_CreateOrUpdate_MaximumSet_Gen.json @@ -132,4 +132,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Delete_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Delete_MaximumSet_Gen.json index 831fa392946d..a562b4b76dc6 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Delete_MaximumSet_Gen.json @@ -17,4 +17,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Get_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Get_MaximumSet_Gen.json index 4b6dc233d5fe..a8420cde254b 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Get_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Get_MaximumSet_Gen.json @@ -56,4 +56,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListByResourceGroup_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListByResourceGroup_MaximumSet_Gen.json index da39684a3364..b4c79d671512 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListByResourceGroup_MaximumSet_Gen.json @@ -60,4 +60,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListBySubscription_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListBySubscription_MaximumSet_Gen.json index a2731cc1fd29..0776aae2230e 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListBySubscription_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListBySubscription_MaximumSet_Gen.json @@ -59,4 +59,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListCredentials_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListCredentials_MaximumSet_Gen.json index c0243af287bd..f816194d83ea 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListCredentials_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_ListCredentials_MaximumSet_Gen.json @@ -19,4 +19,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Update_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Update_MaximumSet_Gen.json index b0c2d060aa22..f3213fcc0c56 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Update_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Fleets_Update_MaximumSet_Gen.json @@ -71,4 +71,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MaximumSet_Gen.json index 9dc225372855..e4bd5f14e0ba 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MaximumSet_Gen.json @@ -25,4 +25,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MinimumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MinimumSet_Gen.json index 9aa58f9870ed..801dfda8cb34 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MinimumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/Operations_List_MinimumSet_Gen.json @@ -9,4 +9,4 @@ "body": {} } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json index 5359424d1834..a8f93ab20969 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_CreateOrUpdate_MaximumSet_Gen.json @@ -376,4 +376,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Delete_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Delete_MaximumSet_Gen.json index b6d6273b38b2..1dbce1c09203 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Delete_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Delete_MaximumSet_Gen.json @@ -18,4 +18,4 @@ }, "204": {} } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Get_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Get_MaximumSet_Gen.json index bcca9f5752ca..1caa51da248f 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Get_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Get_MaximumSet_Gen.json @@ -172,4 +172,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_ListByFleet_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_ListByFleet_MaximumSet_Gen.json index 8d08ede697f0..83b021155b09 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_ListByFleet_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_ListByFleet_MaximumSet_Gen.json @@ -176,4 +176,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Skip_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Skip_MaximumSet_Gen.json index aab872d466cd..77adf4c03001 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Skip_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Skip_MaximumSet_Gen.json @@ -190,4 +190,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Start_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Start_MaximumSet_Gen.json index 816504c62ece..0508d44a6a7e 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Start_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Start_MaximumSet_Gen.json @@ -178,4 +178,4 @@ } } } -} \ No newline at end of file +} diff --git a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Stop_MaximumSet_Gen.json b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Stop_MaximumSet_Gen.json index 9cd0fc28ae05..ef15b40e9b5a 100644 --- a/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Stop_MaximumSet_Gen.json +++ b/specification/containerservice/resource-manager/Microsoft.ContainerService/fleet/stable/2025-03-01/examples/UpdateRuns_Stop_MaximumSet_Gen.json @@ -178,4 +178,4 @@ } } } -} \ No newline at end of file +}