@azure/arm-locks-profile-2020-09-01-hybrid 2.1.1-alpha.20250619.1 → 2.1.1-alpha.20250718.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 ManagementLockClient.",
6
- "version": "2.1.1-alpha.20250619.1",
6
+ "version": "2.1.1-alpha.20250718.1",
7
7
  "engines": {
8
8
  "node": ">=20.0.0"
9
9
  },
@@ -1,259 +1,259 @@
1
- ## API Report File for "@azure/arm-locks-profile-2020-09-01-hybrid"
2
-
3
- > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
-
5
- ```ts
6
-
7
- import * as coreAuth from '@azure/core-auth';
8
- import * as coreClient from '@azure/core-client';
9
- import { PagedAsyncIterableIterator } from '@azure/core-paging';
10
-
11
- // @public
12
- export interface AuthorizationOperations {
13
- list(options?: AuthorizationOperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
14
- }
15
-
16
- // @public
17
- export interface AuthorizationOperationsListNextOptionalParams extends coreClient.OperationOptions {
18
- }
19
-
20
- // @public
21
- export type AuthorizationOperationsListNextResponse = OperationListResult;
22
-
23
- // @public
24
- export interface AuthorizationOperationsListOptionalParams extends coreClient.OperationOptions {
25
- }
26
-
27
- // @public
28
- export type AuthorizationOperationsListResponse = OperationListResult;
29
-
30
- // @public
31
- export function getContinuationToken(page: unknown): string | undefined;
32
-
33
- // @public
34
- export enum KnownLockLevel {
35
- CanNotDelete = "CanNotDelete",
36
- NotSpecified = "NotSpecified",
37
- ReadOnly = "ReadOnly"
38
- }
39
-
40
- // @public
41
- export type LockLevel = string;
42
-
43
- // @public (undocumented)
44
- export class ManagementLockClient extends coreClient.ServiceClient {
45
- // (undocumented)
46
- $host: string;
47
- constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: ManagementLockClientOptionalParams);
48
- // (undocumented)
49
- apiVersion: string;
50
- // (undocumented)
51
- authorizationOperations: AuthorizationOperations;
52
- // (undocumented)
53
- managementLocks: ManagementLocks;
54
- // (undocumented)
55
- subscriptionId: string;
56
- }
57
-
58
- // @public
59
- export interface ManagementLockClientOptionalParams extends coreClient.ServiceClientOptions {
60
- $host?: string;
61
- apiVersion?: string;
62
- endpoint?: string;
63
- }
64
-
65
- // @public
66
- export interface ManagementLockListResult {
67
- nextLink?: string;
68
- value?: ManagementLockObject[];
69
- }
70
-
71
- // @public
72
- export interface ManagementLockObject {
73
- readonly id?: string;
74
- level: LockLevel;
75
- readonly name?: string;
76
- notes?: string;
77
- owners?: ManagementLockOwner[];
78
- readonly type?: string;
79
- }
80
-
81
- // @public
82
- export interface ManagementLockOwner {
83
- applicationId?: string;
84
- }
85
-
86
- // @public
87
- export interface ManagementLocks {
88
- createOrUpdateAtResourceGroupLevel(resourceGroupName: string, lockName: string, parameters: ManagementLockObject, options?: ManagementLocksCreateOrUpdateAtResourceGroupLevelOptionalParams): Promise<ManagementLocksCreateOrUpdateAtResourceGroupLevelResponse>;
89
- createOrUpdateAtResourceLevel(resourceGroupName: string, resourceProviderNamespace: string, parentResourcePath: string, resourceType: string, resourceName: string, lockName: string, parameters: ManagementLockObject, options?: ManagementLocksCreateOrUpdateAtResourceLevelOptionalParams): Promise<ManagementLocksCreateOrUpdateAtResourceLevelResponse>;
90
- createOrUpdateAtSubscriptionLevel(lockName: string, parameters: ManagementLockObject, options?: ManagementLocksCreateOrUpdateAtSubscriptionLevelOptionalParams): Promise<ManagementLocksCreateOrUpdateAtSubscriptionLevelResponse>;
91
- createOrUpdateByScope(scope: string, lockName: string, parameters: ManagementLockObject, options?: ManagementLocksCreateOrUpdateByScopeOptionalParams): Promise<ManagementLocksCreateOrUpdateByScopeResponse>;
92
- deleteAtResourceGroupLevel(resourceGroupName: string, lockName: string, options?: ManagementLocksDeleteAtResourceGroupLevelOptionalParams): Promise<void>;
93
- deleteAtResourceLevel(resourceGroupName: string, resourceProviderNamespace: string, parentResourcePath: string, resourceType: string, resourceName: string, lockName: string, options?: ManagementLocksDeleteAtResourceLevelOptionalParams): Promise<void>;
94
- deleteAtSubscriptionLevel(lockName: string, options?: ManagementLocksDeleteAtSubscriptionLevelOptionalParams): Promise<void>;
95
- deleteByScope(scope: string, lockName: string, options?: ManagementLocksDeleteByScopeOptionalParams): Promise<void>;
96
- getAtResourceGroupLevel(resourceGroupName: string, lockName: string, options?: ManagementLocksGetAtResourceGroupLevelOptionalParams): Promise<ManagementLocksGetAtResourceGroupLevelResponse>;
97
- getAtResourceLevel(resourceGroupName: string, resourceProviderNamespace: string, parentResourcePath: string, resourceType: string, resourceName: string, lockName: string, options?: ManagementLocksGetAtResourceLevelOptionalParams): Promise<ManagementLocksGetAtResourceLevelResponse>;
98
- getAtSubscriptionLevel(lockName: string, options?: ManagementLocksGetAtSubscriptionLevelOptionalParams): Promise<ManagementLocksGetAtSubscriptionLevelResponse>;
99
- getByScope(scope: string, lockName: string, options?: ManagementLocksGetByScopeOptionalParams): Promise<ManagementLocksGetByScopeResponse>;
100
- listAtResourceGroupLevel(resourceGroupName: string, options?: ManagementLocksListAtResourceGroupLevelOptionalParams): PagedAsyncIterableIterator<ManagementLockObject>;
101
- listAtResourceLevel(resourceGroupName: string, resourceProviderNamespace: string, parentResourcePath: string, resourceType: string, resourceName: string, options?: ManagementLocksListAtResourceLevelOptionalParams): PagedAsyncIterableIterator<ManagementLockObject>;
102
- listAtSubscriptionLevel(options?: ManagementLocksListAtSubscriptionLevelOptionalParams): PagedAsyncIterableIterator<ManagementLockObject>;
103
- listByScope(scope: string, options?: ManagementLocksListByScopeOptionalParams): PagedAsyncIterableIterator<ManagementLockObject>;
104
- }
105
-
106
- // @public
107
- export interface ManagementLocksCreateOrUpdateAtResourceGroupLevelOptionalParams extends coreClient.OperationOptions {
108
- }
109
-
110
- // @public
111
- export type ManagementLocksCreateOrUpdateAtResourceGroupLevelResponse = ManagementLockObject;
112
-
113
- // @public
114
- export interface ManagementLocksCreateOrUpdateAtResourceLevelOptionalParams extends coreClient.OperationOptions {
115
- }
116
-
117
- // @public
118
- export type ManagementLocksCreateOrUpdateAtResourceLevelResponse = ManagementLockObject;
119
-
120
- // @public
121
- export interface ManagementLocksCreateOrUpdateAtSubscriptionLevelOptionalParams extends coreClient.OperationOptions {
122
- }
123
-
124
- // @public
125
- export type ManagementLocksCreateOrUpdateAtSubscriptionLevelResponse = ManagementLockObject;
126
-
127
- // @public
128
- export interface ManagementLocksCreateOrUpdateByScopeOptionalParams extends coreClient.OperationOptions {
129
- }
130
-
131
- // @public
132
- export type ManagementLocksCreateOrUpdateByScopeResponse = ManagementLockObject;
133
-
134
- // @public
135
- export interface ManagementLocksDeleteAtResourceGroupLevelOptionalParams extends coreClient.OperationOptions {
136
- }
137
-
138
- // @public
139
- export interface ManagementLocksDeleteAtResourceLevelOptionalParams extends coreClient.OperationOptions {
140
- }
141
-
142
- // @public
143
- export interface ManagementLocksDeleteAtSubscriptionLevelOptionalParams extends coreClient.OperationOptions {
144
- }
145
-
146
- // @public
147
- export interface ManagementLocksDeleteByScopeOptionalParams extends coreClient.OperationOptions {
148
- }
149
-
150
- // @public
151
- export interface ManagementLocksGetAtResourceGroupLevelOptionalParams extends coreClient.OperationOptions {
152
- }
153
-
154
- // @public
155
- export type ManagementLocksGetAtResourceGroupLevelResponse = ManagementLockObject;
156
-
157
- // @public
158
- export interface ManagementLocksGetAtResourceLevelOptionalParams extends coreClient.OperationOptions {
159
- }
160
-
161
- // @public
162
- export type ManagementLocksGetAtResourceLevelResponse = ManagementLockObject;
163
-
164
- // @public
165
- export interface ManagementLocksGetAtSubscriptionLevelOptionalParams extends coreClient.OperationOptions {
166
- }
167
-
168
- // @public
169
- export type ManagementLocksGetAtSubscriptionLevelResponse = ManagementLockObject;
170
-
171
- // @public
172
- export interface ManagementLocksGetByScopeOptionalParams extends coreClient.OperationOptions {
173
- }
174
-
175
- // @public
176
- export type ManagementLocksGetByScopeResponse = ManagementLockObject;
177
-
178
- // @public
179
- export interface ManagementLocksListAtResourceGroupLevelNextOptionalParams extends coreClient.OperationOptions {
180
- }
181
-
182
- // @public
183
- export type ManagementLocksListAtResourceGroupLevelNextResponse = ManagementLockListResult;
184
-
185
- // @public
186
- export interface ManagementLocksListAtResourceGroupLevelOptionalParams extends coreClient.OperationOptions {
187
- filter?: string;
188
- }
189
-
190
- // @public
191
- export type ManagementLocksListAtResourceGroupLevelResponse = ManagementLockListResult;
192
-
193
- // @public
194
- export interface ManagementLocksListAtResourceLevelNextOptionalParams extends coreClient.OperationOptions {
195
- }
196
-
197
- // @public
198
- export type ManagementLocksListAtResourceLevelNextResponse = ManagementLockListResult;
199
-
200
- // @public
201
- export interface ManagementLocksListAtResourceLevelOptionalParams extends coreClient.OperationOptions {
202
- filter?: string;
203
- }
204
-
205
- // @public
206
- export type ManagementLocksListAtResourceLevelResponse = ManagementLockListResult;
207
-
208
- // @public
209
- export interface ManagementLocksListAtSubscriptionLevelNextOptionalParams extends coreClient.OperationOptions {
210
- }
211
-
212
- // @public
213
- export type ManagementLocksListAtSubscriptionLevelNextResponse = ManagementLockListResult;
214
-
215
- // @public
216
- export interface ManagementLocksListAtSubscriptionLevelOptionalParams extends coreClient.OperationOptions {
217
- filter?: string;
218
- }
219
-
220
- // @public
221
- export type ManagementLocksListAtSubscriptionLevelResponse = ManagementLockListResult;
222
-
223
- // @public
224
- export interface ManagementLocksListByScopeNextOptionalParams extends coreClient.OperationOptions {
225
- }
226
-
227
- // @public
228
- export type ManagementLocksListByScopeNextResponse = ManagementLockListResult;
229
-
230
- // @public
231
- export interface ManagementLocksListByScopeOptionalParams extends coreClient.OperationOptions {
232
- filter?: string;
233
- }
234
-
235
- // @public
236
- export type ManagementLocksListByScopeResponse = ManagementLockListResult;
237
-
238
- // @public
239
- export interface Operation {
240
- display?: OperationDisplay;
241
- name?: string;
242
- }
243
-
244
- // @public
245
- export interface OperationDisplay {
246
- operation?: string;
247
- provider?: string;
248
- resource?: string;
249
- }
250
-
251
- // @public
252
- export interface OperationListResult {
253
- nextLink?: string;
254
- value?: Operation[];
255
- }
256
-
257
- // (No @packageDocumentation comment for this package)
258
-
259
- ```
1
+ ## API Report File for "@azure/arm-locks-profile-2020-09-01-hybrid"
2
+
3
+ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
+
5
+ ```ts
6
+
7
+ import * as coreAuth from '@azure/core-auth';
8
+ import * as coreClient from '@azure/core-client';
9
+ import { PagedAsyncIterableIterator } from '@azure/core-paging';
10
+
11
+ // @public
12
+ export interface AuthorizationOperations {
13
+ list(options?: AuthorizationOperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
14
+ }
15
+
16
+ // @public
17
+ export interface AuthorizationOperationsListNextOptionalParams extends coreClient.OperationOptions {
18
+ }
19
+
20
+ // @public
21
+ export type AuthorizationOperationsListNextResponse = OperationListResult;
22
+
23
+ // @public
24
+ export interface AuthorizationOperationsListOptionalParams extends coreClient.OperationOptions {
25
+ }
26
+
27
+ // @public
28
+ export type AuthorizationOperationsListResponse = OperationListResult;
29
+
30
+ // @public
31
+ export function getContinuationToken(page: unknown): string | undefined;
32
+
33
+ // @public
34
+ export enum KnownLockLevel {
35
+ CanNotDelete = "CanNotDelete",
36
+ NotSpecified = "NotSpecified",
37
+ ReadOnly = "ReadOnly"
38
+ }
39
+
40
+ // @public
41
+ export type LockLevel = string;
42
+
43
+ // @public (undocumented)
44
+ export class ManagementLockClient extends coreClient.ServiceClient {
45
+ // (undocumented)
46
+ $host: string;
47
+ constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: ManagementLockClientOptionalParams);
48
+ // (undocumented)
49
+ apiVersion: string;
50
+ // (undocumented)
51
+ authorizationOperations: AuthorizationOperations;
52
+ // (undocumented)
53
+ managementLocks: ManagementLocks;
54
+ // (undocumented)
55
+ subscriptionId: string;
56
+ }
57
+
58
+ // @public
59
+ export interface ManagementLockClientOptionalParams extends coreClient.ServiceClientOptions {
60
+ $host?: string;
61
+ apiVersion?: string;
62
+ endpoint?: string;
63
+ }
64
+
65
+ // @public
66
+ export interface ManagementLockListResult {
67
+ nextLink?: string;
68
+ value?: ManagementLockObject[];
69
+ }
70
+
71
+ // @public
72
+ export interface ManagementLockObject {
73
+ readonly id?: string;
74
+ level: LockLevel;
75
+ readonly name?: string;
76
+ notes?: string;
77
+ owners?: ManagementLockOwner[];
78
+ readonly type?: string;
79
+ }
80
+
81
+ // @public
82
+ export interface ManagementLockOwner {
83
+ applicationId?: string;
84
+ }
85
+
86
+ // @public
87
+ export interface ManagementLocks {
88
+ createOrUpdateAtResourceGroupLevel(resourceGroupName: string, lockName: string, parameters: ManagementLockObject, options?: ManagementLocksCreateOrUpdateAtResourceGroupLevelOptionalParams): Promise<ManagementLocksCreateOrUpdateAtResourceGroupLevelResponse>;
89
+ createOrUpdateAtResourceLevel(resourceGroupName: string, resourceProviderNamespace: string, parentResourcePath: string, resourceType: string, resourceName: string, lockName: string, parameters: ManagementLockObject, options?: ManagementLocksCreateOrUpdateAtResourceLevelOptionalParams): Promise<ManagementLocksCreateOrUpdateAtResourceLevelResponse>;
90
+ createOrUpdateAtSubscriptionLevel(lockName: string, parameters: ManagementLockObject, options?: ManagementLocksCreateOrUpdateAtSubscriptionLevelOptionalParams): Promise<ManagementLocksCreateOrUpdateAtSubscriptionLevelResponse>;
91
+ createOrUpdateByScope(scope: string, lockName: string, parameters: ManagementLockObject, options?: ManagementLocksCreateOrUpdateByScopeOptionalParams): Promise<ManagementLocksCreateOrUpdateByScopeResponse>;
92
+ deleteAtResourceGroupLevel(resourceGroupName: string, lockName: string, options?: ManagementLocksDeleteAtResourceGroupLevelOptionalParams): Promise<void>;
93
+ deleteAtResourceLevel(resourceGroupName: string, resourceProviderNamespace: string, parentResourcePath: string, resourceType: string, resourceName: string, lockName: string, options?: ManagementLocksDeleteAtResourceLevelOptionalParams): Promise<void>;
94
+ deleteAtSubscriptionLevel(lockName: string, options?: ManagementLocksDeleteAtSubscriptionLevelOptionalParams): Promise<void>;
95
+ deleteByScope(scope: string, lockName: string, options?: ManagementLocksDeleteByScopeOptionalParams): Promise<void>;
96
+ getAtResourceGroupLevel(resourceGroupName: string, lockName: string, options?: ManagementLocksGetAtResourceGroupLevelOptionalParams): Promise<ManagementLocksGetAtResourceGroupLevelResponse>;
97
+ getAtResourceLevel(resourceGroupName: string, resourceProviderNamespace: string, parentResourcePath: string, resourceType: string, resourceName: string, lockName: string, options?: ManagementLocksGetAtResourceLevelOptionalParams): Promise<ManagementLocksGetAtResourceLevelResponse>;
98
+ getAtSubscriptionLevel(lockName: string, options?: ManagementLocksGetAtSubscriptionLevelOptionalParams): Promise<ManagementLocksGetAtSubscriptionLevelResponse>;
99
+ getByScope(scope: string, lockName: string, options?: ManagementLocksGetByScopeOptionalParams): Promise<ManagementLocksGetByScopeResponse>;
100
+ listAtResourceGroupLevel(resourceGroupName: string, options?: ManagementLocksListAtResourceGroupLevelOptionalParams): PagedAsyncIterableIterator<ManagementLockObject>;
101
+ listAtResourceLevel(resourceGroupName: string, resourceProviderNamespace: string, parentResourcePath: string, resourceType: string, resourceName: string, options?: ManagementLocksListAtResourceLevelOptionalParams): PagedAsyncIterableIterator<ManagementLockObject>;
102
+ listAtSubscriptionLevel(options?: ManagementLocksListAtSubscriptionLevelOptionalParams): PagedAsyncIterableIterator<ManagementLockObject>;
103
+ listByScope(scope: string, options?: ManagementLocksListByScopeOptionalParams): PagedAsyncIterableIterator<ManagementLockObject>;
104
+ }
105
+
106
+ // @public
107
+ export interface ManagementLocksCreateOrUpdateAtResourceGroupLevelOptionalParams extends coreClient.OperationOptions {
108
+ }
109
+
110
+ // @public
111
+ export type ManagementLocksCreateOrUpdateAtResourceGroupLevelResponse = ManagementLockObject;
112
+
113
+ // @public
114
+ export interface ManagementLocksCreateOrUpdateAtResourceLevelOptionalParams extends coreClient.OperationOptions {
115
+ }
116
+
117
+ // @public
118
+ export type ManagementLocksCreateOrUpdateAtResourceLevelResponse = ManagementLockObject;
119
+
120
+ // @public
121
+ export interface ManagementLocksCreateOrUpdateAtSubscriptionLevelOptionalParams extends coreClient.OperationOptions {
122
+ }
123
+
124
+ // @public
125
+ export type ManagementLocksCreateOrUpdateAtSubscriptionLevelResponse = ManagementLockObject;
126
+
127
+ // @public
128
+ export interface ManagementLocksCreateOrUpdateByScopeOptionalParams extends coreClient.OperationOptions {
129
+ }
130
+
131
+ // @public
132
+ export type ManagementLocksCreateOrUpdateByScopeResponse = ManagementLockObject;
133
+
134
+ // @public
135
+ export interface ManagementLocksDeleteAtResourceGroupLevelOptionalParams extends coreClient.OperationOptions {
136
+ }
137
+
138
+ // @public
139
+ export interface ManagementLocksDeleteAtResourceLevelOptionalParams extends coreClient.OperationOptions {
140
+ }
141
+
142
+ // @public
143
+ export interface ManagementLocksDeleteAtSubscriptionLevelOptionalParams extends coreClient.OperationOptions {
144
+ }
145
+
146
+ // @public
147
+ export interface ManagementLocksDeleteByScopeOptionalParams extends coreClient.OperationOptions {
148
+ }
149
+
150
+ // @public
151
+ export interface ManagementLocksGetAtResourceGroupLevelOptionalParams extends coreClient.OperationOptions {
152
+ }
153
+
154
+ // @public
155
+ export type ManagementLocksGetAtResourceGroupLevelResponse = ManagementLockObject;
156
+
157
+ // @public
158
+ export interface ManagementLocksGetAtResourceLevelOptionalParams extends coreClient.OperationOptions {
159
+ }
160
+
161
+ // @public
162
+ export type ManagementLocksGetAtResourceLevelResponse = ManagementLockObject;
163
+
164
+ // @public
165
+ export interface ManagementLocksGetAtSubscriptionLevelOptionalParams extends coreClient.OperationOptions {
166
+ }
167
+
168
+ // @public
169
+ export type ManagementLocksGetAtSubscriptionLevelResponse = ManagementLockObject;
170
+
171
+ // @public
172
+ export interface ManagementLocksGetByScopeOptionalParams extends coreClient.OperationOptions {
173
+ }
174
+
175
+ // @public
176
+ export type ManagementLocksGetByScopeResponse = ManagementLockObject;
177
+
178
+ // @public
179
+ export interface ManagementLocksListAtResourceGroupLevelNextOptionalParams extends coreClient.OperationOptions {
180
+ }
181
+
182
+ // @public
183
+ export type ManagementLocksListAtResourceGroupLevelNextResponse = ManagementLockListResult;
184
+
185
+ // @public
186
+ export interface ManagementLocksListAtResourceGroupLevelOptionalParams extends coreClient.OperationOptions {
187
+ filter?: string;
188
+ }
189
+
190
+ // @public
191
+ export type ManagementLocksListAtResourceGroupLevelResponse = ManagementLockListResult;
192
+
193
+ // @public
194
+ export interface ManagementLocksListAtResourceLevelNextOptionalParams extends coreClient.OperationOptions {
195
+ }
196
+
197
+ // @public
198
+ export type ManagementLocksListAtResourceLevelNextResponse = ManagementLockListResult;
199
+
200
+ // @public
201
+ export interface ManagementLocksListAtResourceLevelOptionalParams extends coreClient.OperationOptions {
202
+ filter?: string;
203
+ }
204
+
205
+ // @public
206
+ export type ManagementLocksListAtResourceLevelResponse = ManagementLockListResult;
207
+
208
+ // @public
209
+ export interface ManagementLocksListAtSubscriptionLevelNextOptionalParams extends coreClient.OperationOptions {
210
+ }
211
+
212
+ // @public
213
+ export type ManagementLocksListAtSubscriptionLevelNextResponse = ManagementLockListResult;
214
+
215
+ // @public
216
+ export interface ManagementLocksListAtSubscriptionLevelOptionalParams extends coreClient.OperationOptions {
217
+ filter?: string;
218
+ }
219
+
220
+ // @public
221
+ export type ManagementLocksListAtSubscriptionLevelResponse = ManagementLockListResult;
222
+
223
+ // @public
224
+ export interface ManagementLocksListByScopeNextOptionalParams extends coreClient.OperationOptions {
225
+ }
226
+
227
+ // @public
228
+ export type ManagementLocksListByScopeNextResponse = ManagementLockListResult;
229
+
230
+ // @public
231
+ export interface ManagementLocksListByScopeOptionalParams extends coreClient.OperationOptions {
232
+ filter?: string;
233
+ }
234
+
235
+ // @public
236
+ export type ManagementLocksListByScopeResponse = ManagementLockListResult;
237
+
238
+ // @public
239
+ export interface Operation {
240
+ display?: OperationDisplay;
241
+ name?: string;
242
+ }
243
+
244
+ // @public
245
+ export interface OperationDisplay {
246
+ operation?: string;
247
+ provider?: string;
248
+ resource?: string;
249
+ }
250
+
251
+ // @public
252
+ export interface OperationListResult {
253
+ nextLink?: string;
254
+ value?: Operation[];
255
+ }
256
+
257
+ // (No @packageDocumentation comment for this package)
258
+
259
+ ```