@azure/arm-devcenter 1.1.1-alpha.20250612.1 → 1.1.1-alpha.20250616.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
|
@@ -1076,7 +1076,7 @@ export type HibernateSupport = string;
|
|
|
1076
1076
|
export type IdentityType = string;
|
|
1077
1077
|
|
|
1078
1078
|
// @public
|
|
1079
|
-
interface
|
|
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?:
|
|
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<
|
|
1106
|
-
listByGallery(resourceGroupName: string, devCenterName: string, galleryName: string, options?: ImagesListByGalleryOptionalParams): PagedAsyncIterableIterator<
|
|
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 =
|
|
1113
|
+
export type ImagesGetResponse = Image;
|
|
1115
1114
|
|
|
1116
1115
|
// @public
|
|
1117
1116
|
export interface ImagesListByDevCenterNextOptionalParams extends coreClient.OperationOptions {
|