@azure/arm-desktopvirtualization 1.2.2-alpha.20260303.2 → 1.2.2-alpha.20260304.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commonjs/desktopVirtualizationAPIClient.js +4 -0
- package/dist/commonjs/index.js +7 -0
- package/dist/commonjs/models/index.js +35 -0
- package/dist/commonjs/models/mappers.js +92 -0
- package/dist/commonjs/models/parameters.js +51 -0
- package/dist/commonjs/operations/appAttachPackageInfo.js +4 -0
- package/dist/commonjs/operations/appAttachPackageOperations.js +4 -0
- package/dist/commonjs/operations/applicationGroups.js +4 -0
- package/dist/commonjs/operations/applications.js +4 -0
- package/dist/commonjs/operations/desktops.js +4 -0
- package/dist/commonjs/operations/hostPools.js +4 -0
- package/dist/commonjs/operations/index.js +21 -0
- package/dist/commonjs/operations/msixImages.js +4 -0
- package/dist/commonjs/operations/msixPackages.js +4 -0
- package/dist/commonjs/operations/operations.js +4 -0
- package/dist/commonjs/operations/privateEndpointConnections.js +4 -0
- package/dist/commonjs/operations/privateLinkResources.js +4 -0
- package/dist/commonjs/operations/scalingPlanPersonalSchedules.js +4 -0
- package/dist/commonjs/operations/scalingPlanPooledSchedules.js +4 -0
- package/dist/commonjs/operations/scalingPlans.js +4 -0
- package/dist/commonjs/operations/sessionHosts.js +4 -0
- package/dist/commonjs/operations/startMenuItems.js +4 -0
- package/dist/commonjs/operations/userSessions.js +4 -0
- package/dist/commonjs/operations/workspaces.js +4 -0
- package/dist/commonjs/operationsInterfaces/index.js +21 -0
- package/dist/commonjs/pagingHelper.js +5 -0
- package/package.json +3 -3
|
@@ -157,3 +157,7 @@ class DesktopVirtualizationAPIClient extends coreClient.ServiceClient {
|
|
|
157
157
|
msixImages;
|
|
158
158
|
appAttachPackageOperations;
|
|
159
159
|
}
|
|
160
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
161
|
+
0 && (module.exports = {
|
|
162
|
+
DesktopVirtualizationAPIClient
|
|
163
|
+
});
|
package/dist/commonjs/index.js
CHANGED
|
@@ -26,3 +26,10 @@ var import_pagingHelper = require("./pagingHelper.js");
|
|
|
26
26
|
__reExport(src_exports, require("./models/index.js"), module.exports);
|
|
27
27
|
var import_desktopVirtualizationAPIClient = require("./desktopVirtualizationAPIClient.js");
|
|
28
28
|
__reExport(src_exports, require("./operationsInterfaces/index.js"), module.exports);
|
|
29
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
30
|
+
0 && (module.exports = {
|
|
31
|
+
DesktopVirtualizationAPIClient,
|
|
32
|
+
getContinuationToken,
|
|
33
|
+
...require("./models/index.js"),
|
|
34
|
+
...require("./operationsInterfaces/index.js")
|
|
35
|
+
});
|
|
@@ -267,3 +267,38 @@ var KnownFailHealthCheckOnStagingFailure = /* @__PURE__ */ ((KnownFailHealthChec
|
|
|
267
267
|
KnownFailHealthCheckOnStagingFailure2["DoNotFail"] = "DoNotFail";
|
|
268
268
|
return KnownFailHealthCheckOnStagingFailure2;
|
|
269
269
|
})(KnownFailHealthCheckOnStagingFailure || {});
|
|
270
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
271
|
+
0 && (module.exports = {
|
|
272
|
+
KnownAppAttachPackageArchitectures,
|
|
273
|
+
KnownApplicationGroupType,
|
|
274
|
+
KnownApplicationType,
|
|
275
|
+
KnownCommandLineSetting,
|
|
276
|
+
KnownCreatedByType,
|
|
277
|
+
KnownFailHealthCheckOnStagingFailure,
|
|
278
|
+
KnownHealthCheckName,
|
|
279
|
+
KnownHealthCheckResult,
|
|
280
|
+
KnownHostPoolType,
|
|
281
|
+
KnownHostpoolPublicNetworkAccess,
|
|
282
|
+
KnownLoadBalancerType,
|
|
283
|
+
KnownPackageTimestamped,
|
|
284
|
+
KnownPersonalDesktopAssignmentType,
|
|
285
|
+
KnownPreferredAppGroupType,
|
|
286
|
+
KnownPrivateEndpointConnectionProvisioningState,
|
|
287
|
+
KnownPrivateEndpointServiceConnectionStatus,
|
|
288
|
+
KnownProvisioningState,
|
|
289
|
+
KnownPublicNetworkAccess,
|
|
290
|
+
KnownRegistrationTokenOperation,
|
|
291
|
+
KnownRemoteApplicationType,
|
|
292
|
+
KnownSSOSecretType,
|
|
293
|
+
KnownScalingHostPoolType,
|
|
294
|
+
KnownScalingScheduleDaysOfWeekItem,
|
|
295
|
+
KnownSessionHandlingOperation,
|
|
296
|
+
KnownSessionHostComponentUpdateType,
|
|
297
|
+
KnownSessionHostLoadBalancingAlgorithm,
|
|
298
|
+
KnownSessionState,
|
|
299
|
+
KnownSetStartVMOnConnect,
|
|
300
|
+
KnownStartupBehavior,
|
|
301
|
+
KnownStatus,
|
|
302
|
+
KnownStopHostsWhen,
|
|
303
|
+
KnownUpdateState
|
|
304
|
+
});
|
|
@@ -4197,3 +4197,95 @@ const HostPool = {
|
|
|
4197
4197
|
}
|
|
4198
4198
|
}
|
|
4199
4199
|
};
|
|
4200
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
4201
|
+
0 && (module.exports = {
|
|
4202
|
+
AgentUpdatePatchProperties,
|
|
4203
|
+
AgentUpdateProperties,
|
|
4204
|
+
AppAttachPackage,
|
|
4205
|
+
AppAttachPackageInfoProperties,
|
|
4206
|
+
AppAttachPackageList,
|
|
4207
|
+
AppAttachPackagePatch,
|
|
4208
|
+
AppAttachPackagePatchProperties,
|
|
4209
|
+
AppAttachPackageProperties,
|
|
4210
|
+
Application,
|
|
4211
|
+
ApplicationGroup,
|
|
4212
|
+
ApplicationGroupList,
|
|
4213
|
+
ApplicationGroupPatch,
|
|
4214
|
+
ApplicationList,
|
|
4215
|
+
ApplicationPatch,
|
|
4216
|
+
CloudError,
|
|
4217
|
+
CloudErrorProperties,
|
|
4218
|
+
Desktop,
|
|
4219
|
+
DesktopList,
|
|
4220
|
+
DesktopPatch,
|
|
4221
|
+
ErrorAdditionalInfo,
|
|
4222
|
+
ErrorDetail,
|
|
4223
|
+
ErrorResponse,
|
|
4224
|
+
ExpandMsixImage,
|
|
4225
|
+
ExpandMsixImageList,
|
|
4226
|
+
HostPool,
|
|
4227
|
+
HostPoolList,
|
|
4228
|
+
HostPoolPatch,
|
|
4229
|
+
Identity,
|
|
4230
|
+
ImportPackageInfoRequest,
|
|
4231
|
+
LogSpecification,
|
|
4232
|
+
MaintenanceWindowPatchProperties,
|
|
4233
|
+
MaintenanceWindowProperties,
|
|
4234
|
+
MsixImageURI,
|
|
4235
|
+
MsixPackage,
|
|
4236
|
+
MsixPackageApplications,
|
|
4237
|
+
MsixPackageDependencies,
|
|
4238
|
+
MsixPackageList,
|
|
4239
|
+
MsixPackagePatch,
|
|
4240
|
+
OperationProperties,
|
|
4241
|
+
Plan,
|
|
4242
|
+
PrivateEndpoint,
|
|
4243
|
+
PrivateEndpointConnection,
|
|
4244
|
+
PrivateEndpointConnectionListResultWithSystemData,
|
|
4245
|
+
PrivateEndpointConnectionWithSystemData,
|
|
4246
|
+
PrivateLinkResource,
|
|
4247
|
+
PrivateLinkResourceListResult,
|
|
4248
|
+
PrivateLinkServiceConnectionState,
|
|
4249
|
+
ProxyResource,
|
|
4250
|
+
RegistrationInfo,
|
|
4251
|
+
RegistrationInfoPatch,
|
|
4252
|
+
RegistrationTokenList,
|
|
4253
|
+
RegistrationTokenMinimal,
|
|
4254
|
+
Resource,
|
|
4255
|
+
ResourceModelWithAllowedPropertySet,
|
|
4256
|
+
ResourceModelWithAllowedPropertySetIdentity,
|
|
4257
|
+
ResourceModelWithAllowedPropertySetPlan,
|
|
4258
|
+
ResourceModelWithAllowedPropertySetSku,
|
|
4259
|
+
ResourceProviderOperation,
|
|
4260
|
+
ResourceProviderOperationDisplay,
|
|
4261
|
+
ResourceProviderOperationList,
|
|
4262
|
+
ScalingHostPoolReference,
|
|
4263
|
+
ScalingPlan,
|
|
4264
|
+
ScalingPlanList,
|
|
4265
|
+
ScalingPlanPatch,
|
|
4266
|
+
ScalingPlanPersonalSchedule,
|
|
4267
|
+
ScalingPlanPersonalScheduleList,
|
|
4268
|
+
ScalingPlanPersonalSchedulePatch,
|
|
4269
|
+
ScalingPlanPooledSchedule,
|
|
4270
|
+
ScalingPlanPooledScheduleList,
|
|
4271
|
+
ScalingPlanPooledSchedulePatch,
|
|
4272
|
+
ScalingSchedule,
|
|
4273
|
+
SendMessage,
|
|
4274
|
+
ServiceSpecification,
|
|
4275
|
+
SessionHost,
|
|
4276
|
+
SessionHostHealthCheckFailureDetails,
|
|
4277
|
+
SessionHostHealthCheckReport,
|
|
4278
|
+
SessionHostList,
|
|
4279
|
+
SessionHostPatch,
|
|
4280
|
+
Sku,
|
|
4281
|
+
StartMenuItem,
|
|
4282
|
+
StartMenuItemList,
|
|
4283
|
+
SystemData,
|
|
4284
|
+
Time,
|
|
4285
|
+
TrackedResource,
|
|
4286
|
+
UserSession,
|
|
4287
|
+
UserSessionList,
|
|
4288
|
+
Workspace,
|
|
4289
|
+
WorkspaceList,
|
|
4290
|
+
WorkspacePatch
|
|
4291
|
+
});
|
|
@@ -462,3 +462,54 @@ const appAttachPackagePatch = {
|
|
|
462
462
|
parameterPath: ["options", "appAttachPackagePatch"],
|
|
463
463
|
mapper: import_mappers.AppAttachPackagePatch
|
|
464
464
|
};
|
|
465
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
466
|
+
0 && (module.exports = {
|
|
467
|
+
$host,
|
|
468
|
+
accept,
|
|
469
|
+
apiVersion,
|
|
470
|
+
appAttachPackage,
|
|
471
|
+
appAttachPackageName,
|
|
472
|
+
appAttachPackagePatch,
|
|
473
|
+
application,
|
|
474
|
+
application1,
|
|
475
|
+
applicationGroup,
|
|
476
|
+
applicationGroup1,
|
|
477
|
+
applicationGroupName,
|
|
478
|
+
applicationName,
|
|
479
|
+
connection,
|
|
480
|
+
contentType,
|
|
481
|
+
desktop,
|
|
482
|
+
desktopName,
|
|
483
|
+
filter,
|
|
484
|
+
force,
|
|
485
|
+
hostPool,
|
|
486
|
+
hostPool1,
|
|
487
|
+
hostPoolName,
|
|
488
|
+
importPackageInfoRequest,
|
|
489
|
+
initialSkip,
|
|
490
|
+
isDescending,
|
|
491
|
+
msixImageURI,
|
|
492
|
+
msixPackage,
|
|
493
|
+
msixPackage1,
|
|
494
|
+
msixPackageFullName,
|
|
495
|
+
nextLink,
|
|
496
|
+
pageSize,
|
|
497
|
+
privateEndpointConnectionName,
|
|
498
|
+
resourceGroupName,
|
|
499
|
+
scalingPlan,
|
|
500
|
+
scalingPlan1,
|
|
501
|
+
scalingPlanName,
|
|
502
|
+
scalingPlanSchedule,
|
|
503
|
+
scalingPlanSchedule1,
|
|
504
|
+
scalingPlanSchedule2,
|
|
505
|
+
scalingPlanSchedule3,
|
|
506
|
+
scalingPlanScheduleName,
|
|
507
|
+
sendMessage,
|
|
508
|
+
sessionHost,
|
|
509
|
+
sessionHostName,
|
|
510
|
+
subscriptionId,
|
|
511
|
+
userSessionId,
|
|
512
|
+
workspace,
|
|
513
|
+
workspace1,
|
|
514
|
+
workspaceName
|
|
515
|
+
});
|
|
@@ -32,3 +32,24 @@ __reExport(operations_exports, require("./msixPackages.js"), module.exports);
|
|
|
32
32
|
__reExport(operations_exports, require("./appAttachPackageInfo.js"), module.exports);
|
|
33
33
|
__reExport(operations_exports, require("./msixImages.js"), module.exports);
|
|
34
34
|
__reExport(operations_exports, require("./appAttachPackageOperations.js"), module.exports);
|
|
35
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
36
|
+
0 && (module.exports = {
|
|
37
|
+
...require("./operations.js"),
|
|
38
|
+
...require("./workspaces.js"),
|
|
39
|
+
...require("./privateEndpointConnections.js"),
|
|
40
|
+
...require("./privateLinkResources.js"),
|
|
41
|
+
...require("./scalingPlans.js"),
|
|
42
|
+
...require("./scalingPlanPooledSchedules.js"),
|
|
43
|
+
...require("./scalingPlanPersonalSchedules.js"),
|
|
44
|
+
...require("./applicationGroups.js"),
|
|
45
|
+
...require("./startMenuItems.js"),
|
|
46
|
+
...require("./applications.js"),
|
|
47
|
+
...require("./desktops.js"),
|
|
48
|
+
...require("./hostPools.js"),
|
|
49
|
+
...require("./userSessions.js"),
|
|
50
|
+
...require("./sessionHosts.js"),
|
|
51
|
+
...require("./msixPackages.js"),
|
|
52
|
+
...require("./appAttachPackageInfo.js"),
|
|
53
|
+
...require("./msixImages.js"),
|
|
54
|
+
...require("./appAttachPackageOperations.js")
|
|
55
|
+
});
|
|
@@ -32,3 +32,24 @@ __reExport(operationsInterfaces_exports, require("./msixPackages.js"), module.ex
|
|
|
32
32
|
__reExport(operationsInterfaces_exports, require("./appAttachPackageInfo.js"), module.exports);
|
|
33
33
|
__reExport(operationsInterfaces_exports, require("./msixImages.js"), module.exports);
|
|
34
34
|
__reExport(operationsInterfaces_exports, require("./appAttachPackageOperations.js"), module.exports);
|
|
35
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
36
|
+
0 && (module.exports = {
|
|
37
|
+
...require("./operations.js"),
|
|
38
|
+
...require("./workspaces.js"),
|
|
39
|
+
...require("./privateEndpointConnections.js"),
|
|
40
|
+
...require("./privateLinkResources.js"),
|
|
41
|
+
...require("./scalingPlans.js"),
|
|
42
|
+
...require("./scalingPlanPooledSchedules.js"),
|
|
43
|
+
...require("./scalingPlanPersonalSchedules.js"),
|
|
44
|
+
...require("./applicationGroups.js"),
|
|
45
|
+
...require("./startMenuItems.js"),
|
|
46
|
+
...require("./applications.js"),
|
|
47
|
+
...require("./desktops.js"),
|
|
48
|
+
...require("./hostPools.js"),
|
|
49
|
+
...require("./userSessions.js"),
|
|
50
|
+
...require("./sessionHosts.js"),
|
|
51
|
+
...require("./msixPackages.js"),
|
|
52
|
+
...require("./appAttachPackageInfo.js"),
|
|
53
|
+
...require("./msixImages.js"),
|
|
54
|
+
...require("./appAttachPackageOperations.js")
|
|
55
|
+
});
|
|
@@ -36,3 +36,8 @@ function setContinuationToken(page, continuationToken) {
|
|
|
36
36
|
pageInfo.continuationToken = continuationToken;
|
|
37
37
|
pageMap.set(page, pageInfo);
|
|
38
38
|
}
|
|
39
|
+
// Annotate the CommonJS export names for ESM import in node:
|
|
40
|
+
0 && (module.exports = {
|
|
41
|
+
getContinuationToken,
|
|
42
|
+
setContinuationToken
|
|
43
|
+
});
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"sdk-type": "mgmt",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "A generated SDK for DesktopVirtualizationAPIClient.",
|
|
6
|
-
"version": "1.2.2-alpha.
|
|
6
|
+
"version": "1.2.2-alpha.20260304.1",
|
|
7
7
|
"engines": {
|
|
8
8
|
"node": ">=20.0.0"
|
|
9
9
|
},
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"vitest": "^4.0.8",
|
|
41
41
|
"@azure-tools/test-credential": "^2.1.2",
|
|
42
42
|
"@azure-tools/test-recorder": "^4.1.1",
|
|
43
|
-
"@azure
|
|
44
|
-
"@azure/
|
|
43
|
+
"@azure/dev-tool": "^1.0.0",
|
|
44
|
+
"@azure-tools/test-utils-vitest": "^2.0.1"
|
|
45
45
|
},
|
|
46
46
|
"repository": "github:Azure/azure-sdk-for-js",
|
|
47
47
|
"bugs": {
|