Update CloudShell API version to 2025-09-01-preview

This commit is contained in:
Bikram Choudhury
2026-08-28 10:56:20 +05:30
parent f30a613ab3
commit 6a176f57ce
2 changed files with 9 additions and 9 deletions
@@ -85,7 +85,7 @@ describe("CloudShellClient", () => {
host: MOCK_ARM_ENDPOINT,
path: "/providers/Microsoft.Portal/userSettings/cloudconsole",
method: "GET",
apiVersion: "2023-02-01-preview",
apiVersion: "2025-09-01-preview",
});
expect(result).toEqual(mockSettings);
});
@@ -100,7 +100,7 @@ describe("CloudShellClient", () => {
host: MOCK_ARM_ENDPOINT,
path: "/providers/Microsoft.Portal/userSettings/cloudconsole",
method: "GET",
apiVersion: "2023-02-01-preview",
apiVersion: "2025-09-01-preview",
});
});
});
@@ -116,7 +116,7 @@ describe("CloudShellClient", () => {
host: MOCK_ARM_ENDPOINT,
path: "/providers/Microsoft.Portal/userSettings/cloudconsole",
method: "PUT",
apiVersion: "2023-02-01-preview",
apiVersion: "2025-09-01-preview",
body: {
properties: {
preferredOsType: OsType.Linux,
@@ -144,7 +144,7 @@ describe("CloudShellClient", () => {
host: MOCK_ARM_ENDPOINT,
path: "/providers/Microsoft.Portal/userSettings/cloudconsole",
method: "PUT",
apiVersion: "2023-02-01-preview",
apiVersion: "2025-09-01-preview",
body: {
properties: {
preferredOsType: OsType.Linux,
@@ -247,7 +247,7 @@ describe("CloudShellClient", () => {
host: MOCK_ARM_ENDPOINT,
path: "providers/Microsoft.Portal/consoles/default",
method: "PUT",
apiVersion: "2023-02-01-preview",
apiVersion: "2025-09-01-preview",
customHeaders: {
"x-ms-console-preferred-location": "eastus",
},
@@ -271,7 +271,7 @@ describe("CloudShellClient", () => {
host: MOCK_ARM_ENDPOINT,
path: "providers/Microsoft.Portal/consoles/default",
method: "PUT",
apiVersion: "2023-02-01-preview",
apiVersion: "2025-09-01-preview",
customHeaders: {
"x-ms-console-preferred-location": "eastus",
},
@@ -26,7 +26,7 @@ export const getUserSettings = async (): Promise<CloudShellSettings> => {
host: configContext.ARM_ENDPOINT,
path: `/providers/Microsoft.Portal/userSettings/cloudconsole`,
method: "GET",
apiVersion: "2023-02-01-preview",
apiVersion: "2025-09-01-preview",
});
};
@@ -56,7 +56,7 @@ export const putEphemeralUserSettings = async (
host: configContext.ARM_ENDPOINT,
path: `/providers/Microsoft.Portal/userSettings/cloudconsole`,
method: "PUT",
apiVersion: "2023-02-01-preview",
apiVersion: "2025-09-01-preview",
body: ephemeralSettings,
timeoutMs: CLOUDSHELL_ARM_TIMEOUT_MS,
});
@@ -92,7 +92,7 @@ export const provisionConsole = async (consoleLocation: string): Promise<Provisi
host: configContext.ARM_ENDPOINT,
path: `providers/Microsoft.Portal/consoles/default`,
method: "PUT",
apiVersion: "2023-02-01-preview",
apiVersion: "2025-09-01-preview",
customHeaders: {
"x-ms-console-preferred-location": consoleLocation,
},