@azure/arm-labservices 3.1.1-alpha.20250612.1 → 3.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
@@ -80,7 +80,7 @@ export interface Identity {
|
|
80
80
|
}
|
81
81
|
|
82
82
|
// @public
|
83
|
-
interface
|
83
|
+
export interface Image extends ProxyResource {
|
84
84
|
readonly author?: string;
|
85
85
|
availableRegions?: string[];
|
86
86
|
readonly description?: string;
|
@@ -99,7 +99,6 @@ interface Image_2 extends ProxyResource {
|
|
99
99
|
readonly termsStatus?: EnableState;
|
100
100
|
readonly version?: string;
|
101
101
|
}
|
102
|
-
export { Image_2 as Image }
|
103
102
|
|
104
103
|
// @public
|
105
104
|
export interface ImageProperties extends ImageUpdateProperties {
|
@@ -132,9 +131,9 @@ export interface ImageReference {
|
|
132
131
|
|
133
132
|
// @public
|
134
133
|
export interface Images {
|
135
|
-
createOrUpdate(resourceGroupName: string, labPlanName: string, imageName: string, body:
|
134
|
+
createOrUpdate(resourceGroupName: string, labPlanName: string, imageName: string, body: Image, options?: ImagesCreateOrUpdateOptionalParams): Promise<ImagesCreateOrUpdateResponse>;
|
136
135
|
get(resourceGroupName: string, labPlanName: string, imageName: string, options?: ImagesGetOptionalParams): Promise<ImagesGetResponse>;
|
137
|
-
listByLabPlan(resourceGroupName: string, labPlanName: string, options?: ImagesListByLabPlanOptionalParams): PagedAsyncIterableIterator<
|
136
|
+
listByLabPlan(resourceGroupName: string, labPlanName: string, options?: ImagesListByLabPlanOptionalParams): PagedAsyncIterableIterator<Image>;
|
138
137
|
update(resourceGroupName: string, labPlanName: string, imageName: string, body: ImageUpdate, options?: ImagesUpdateOptionalParams): Promise<ImagesUpdateResponse>;
|
139
138
|
}
|
140
139
|
|
@@ -143,14 +142,14 @@ export interface ImagesCreateOrUpdateOptionalParams extends coreClient.Operation
|
|
143
142
|
}
|
144
143
|
|
145
144
|
// @public
|
146
|
-
export type ImagesCreateOrUpdateResponse =
|
145
|
+
export type ImagesCreateOrUpdateResponse = Image;
|
147
146
|
|
148
147
|
// @public
|
149
148
|
export interface ImagesGetOptionalParams extends coreClient.OperationOptions {
|
150
149
|
}
|
151
150
|
|
152
151
|
// @public
|
153
|
-
export type ImagesGetResponse =
|
152
|
+
export type ImagesGetResponse = Image;
|
154
153
|
|
155
154
|
// @public
|
156
155
|
export interface ImagesListByLabPlanNextOptionalParams extends coreClient.OperationOptions {
|
@@ -172,7 +171,7 @@ export interface ImagesUpdateOptionalParams extends coreClient.OperationOptions
|
|
172
171
|
}
|
173
172
|
|
174
173
|
// @public
|
175
|
-
export type ImagesUpdateResponse =
|
174
|
+
export type ImagesUpdateResponse = Image;
|
176
175
|
|
177
176
|
// @public
|
178
177
|
export interface ImageUpdate {
|
@@ -684,7 +683,7 @@ export type OsType = "Windows" | "Linux";
|
|
684
683
|
// @public
|
685
684
|
export interface PagedImages {
|
686
685
|
readonly nextLink?: string;
|
687
|
-
readonly value?:
|
686
|
+
readonly value?: Image[];
|
688
687
|
}
|
689
688
|
|
690
689
|
// @public
|