@azure/arm-devcenter 1.1.1-alpha.20250613.1 → 1.1.1-alpha.20250617.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/package.json CHANGED
@@ -3,9 +3,9 @@
3
3
  "sdk-type": "mgmt",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "A generated SDK for DevCenterClient.",
6
- "version": "1.1.1-alpha.20250613.1",
6
+ "version": "1.1.1-alpha.20250617.1",
7
7
  "engines": {
8
- "node": ">=18.0.0"
8
+ "node": ">=20.0.0"
9
9
  },
10
10
  "dependencies": {
11
11
  "@azure/abort-controller": "^2.1.2",
@@ -35,7 +35,7 @@
35
35
  "@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
36
36
  "@azure/identity": "^4.6.0",
37
37
  "@azure/logger": "^1.1.4",
38
- "@types/node": "^18.0.0",
38
+ "@types/node": "^20.0.0",
39
39
  "@vitest/browser": "^3.0.9",
40
40
  "@vitest/coverage-istanbul": "^3.0.9",
41
41
  "dotenv": "^16.0.0",
@@ -1076,7 +1076,7 @@ export type HibernateSupport = string;
1076
1076
  export type IdentityType = string;
1077
1077
 
1078
1078
  // @public
1079
- interface Image_2 extends ProxyResource {
1079
+ export interface Image extends ProxyResource {
1080
1080
  readonly description?: string;
1081
1081
  readonly hibernateSupport?: HibernateSupport;
1082
1082
  readonly offer?: string;
@@ -1085,12 +1085,11 @@ interface Image_2 extends ProxyResource {
1085
1085
  readonly recommendedMachineConfiguration?: RecommendedMachineConfiguration;
1086
1086
  readonly sku?: string;
1087
1087
  }
1088
- export { Image_2 as Image }
1089
1088
 
1090
1089
  // @public
1091
1090
  export interface ImageListResult {
1092
1091
  readonly nextLink?: string;
1093
- readonly value?: Image_2[];
1092
+ readonly value?: Image[];
1094
1093
  }
1095
1094
 
1096
1095
  // @public
@@ -1102,8 +1101,8 @@ export interface ImageReference {
1102
1101
  // @public
1103
1102
  export interface Images {
1104
1103
  get(resourceGroupName: string, devCenterName: string, galleryName: string, imageName: string, options?: ImagesGetOptionalParams): Promise<ImagesGetResponse>;
1105
- listByDevCenter(resourceGroupName: string, devCenterName: string, options?: ImagesListByDevCenterOptionalParams): PagedAsyncIterableIterator<Image_2>;
1106
- listByGallery(resourceGroupName: string, devCenterName: string, galleryName: string, options?: ImagesListByGalleryOptionalParams): PagedAsyncIterableIterator<Image_2>;
1104
+ listByDevCenter(resourceGroupName: string, devCenterName: string, options?: ImagesListByDevCenterOptionalParams): PagedAsyncIterableIterator<Image>;
1105
+ listByGallery(resourceGroupName: string, devCenterName: string, galleryName: string, options?: ImagesListByGalleryOptionalParams): PagedAsyncIterableIterator<Image>;
1107
1106
  }
1108
1107
 
1109
1108
  // @public
@@ -1111,7 +1110,7 @@ export interface ImagesGetOptionalParams extends coreClient.OperationOptions {
1111
1110
  }
1112
1111
 
1113
1112
  // @public
1114
- export type ImagesGetResponse = Image_2;
1113
+ export type ImagesGetResponse = Image;
1115
1114
 
1116
1115
  // @public
1117
1116
  export interface ImagesListByDevCenterNextOptionalParams extends coreClient.OperationOptions {