@azure/arm-storageimportexport 2.1.1-alpha.20250613.1 → 2.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
|
@@ -253,7 +253,7 @@ export interface ListOperationsResponse {
|
|
|
253
253
|
}
|
|
254
254
|
|
|
255
255
|
// @public
|
|
256
|
-
interface
|
|
256
|
+
export interface Location {
|
|
257
257
|
additionalShippingInformation?: string;
|
|
258
258
|
alternateLocations?: string[];
|
|
259
259
|
city?: string;
|
|
@@ -269,12 +269,11 @@ interface Location_2 {
|
|
|
269
269
|
supportedCarriers?: string[];
|
|
270
270
|
type?: string;
|
|
271
271
|
}
|
|
272
|
-
export { Location_2 as Location }
|
|
273
272
|
|
|
274
273
|
// @public
|
|
275
274
|
export interface Locations {
|
|
276
275
|
get(locationName: string, options?: LocationsGetOptionalParams): Promise<LocationsGetResponse>;
|
|
277
|
-
list(options?: LocationsListOptionalParams): PagedAsyncIterableIterator<
|
|
276
|
+
list(options?: LocationsListOptionalParams): PagedAsyncIterableIterator<Location>;
|
|
278
277
|
}
|
|
279
278
|
|
|
280
279
|
// @public
|
|
@@ -282,7 +281,7 @@ export interface LocationsGetOptionalParams extends coreClient.OperationOptions
|
|
|
282
281
|
}
|
|
283
282
|
|
|
284
283
|
// @public
|
|
285
|
-
export type LocationsGetResponse =
|
|
284
|
+
export type LocationsGetResponse = Location;
|
|
286
285
|
|
|
287
286
|
// @public
|
|
288
287
|
export interface LocationsListOptionalParams extends coreClient.OperationOptions {
|
|
@@ -293,7 +292,7 @@ export type LocationsListResponse = LocationsResponse;
|
|
|
293
292
|
|
|
294
293
|
// @public
|
|
295
294
|
export interface LocationsResponse {
|
|
296
|
-
value?:
|
|
295
|
+
value?: Location[];
|
|
297
296
|
}
|
|
298
297
|
|
|
299
298
|
// @public
|