@azure/arm-subscriptions 5.1.1-alpha.20250613.1 → 5.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 SubscriptionClient.",
|
|
6
|
-
"version": "5.1.1-alpha.
|
|
6
|
+
"version": "5.1.1-alpha.20250617.1",
|
|
7
7
|
"engines": {
|
|
8
|
-
"node": ">=
|
|
8
|
+
"node": ">=20.0.0"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@azure/abort-controller": "^2.1.2",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@azure/dev-tool": ">=1.0.0-alpha <1.0.0-alphb",
|
|
35
35
|
"@azure/identity": "^4.6.0",
|
|
36
36
|
"@azure/logger": "^1.1.4",
|
|
37
|
-
"@types/node": "^
|
|
37
|
+
"@types/node": "^20.0.0",
|
|
38
38
|
"@vitest/browser": "^3.0.9",
|
|
39
39
|
"@vitest/coverage-istanbul": "^3.0.9",
|
|
40
40
|
"playwright": "^1.50.1",
|
|
@@ -183,7 +183,7 @@ export enum KnownWorkload {
|
|
|
183
183
|
}
|
|
184
184
|
|
|
185
185
|
// @public
|
|
186
|
-
interface
|
|
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?:
|
|
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<
|
|
476
|
+
listLocations(subscriptionId: string, options?: SubscriptionsListLocationsOptionalParams): PagedAsyncIterableIterator<Location>;
|
|
478
477
|
}
|
|
479
478
|
|
|
480
479
|
// @public
|