@azure/arm-subscriptions 5.1.1-alpha.20250613.1 → 5.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
@@ -3,7 +3,7 @@
3
3
  "sdk-type": "mgmt",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "A generated SDK for SubscriptionClient.",
6
- "version": "5.1.1-alpha.20250613.1",
6
+ "version": "5.1.1-alpha.20250616.1",
7
7
  "engines": {
8
8
  "node": ">=18.0.0"
9
9
  },
@@ -183,7 +183,7 @@ export enum KnownWorkload {
183
183
  }
184
184
 
185
185
  // @public
186
- interface Location_2 {
186
+ export interface Location {
187
187
  readonly displayName?: string;
188
188
  readonly id?: string;
189
189
  readonly latitude?: string;
@@ -191,11 +191,10 @@ interface Location_2 {
191
191
  readonly name?: string;
192
192
  readonly subscriptionId?: string;
193
193
  }
194
- export { Location_2 as Location }
195
194
 
196
195
  // @public
197
196
  export interface LocationListResult {
198
- value?: Location_2[];
197
+ value?: Location[];
199
198
  }
200
199
 
201
200
  // @public
@@ -474,7 +473,7 @@ export type SubscriptionRenameResponse = RenamedSubscriptionId;
474
473
  export interface Subscriptions {
475
474
  get(subscriptionId: string, options?: SubscriptionsGetOptionalParams): Promise<SubscriptionsGetResponse>;
476
475
  list(options?: SubscriptionsListOptionalParams): PagedAsyncIterableIterator<Subscription>;
477
- listLocations(subscriptionId: string, options?: SubscriptionsListLocationsOptionalParams): PagedAsyncIterableIterator<Location_2>;
476
+ listLocations(subscriptionId: string, options?: SubscriptionsListLocationsOptionalParams): PagedAsyncIterableIterator<Location>;
478
477
  }
479
478
 
480
479
  // @public