@azure/arm-qumulo 2.0.1-alpha.20250619.1 → 2.0.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
|
@@ -1,346 +1,346 @@
|
|
|
1
|
-
## API Report File for "@azure/arm-qumulo"
|
|
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 { OperationState } from '@azure/core-lro';
|
|
10
|
-
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
|
11
|
-
import { SimplePollerLike } from '@azure/core-lro';
|
|
12
|
-
|
|
13
|
-
// @public
|
|
14
|
-
export type ActionType = string;
|
|
15
|
-
|
|
16
|
-
// @public
|
|
17
|
-
export type CreatedByType = string;
|
|
18
|
-
|
|
19
|
-
// @public
|
|
20
|
-
export interface ErrorAdditionalInfo {
|
|
21
|
-
readonly info?: Record<string, unknown>;
|
|
22
|
-
readonly type?: string;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
// @public
|
|
26
|
-
export interface ErrorDetail {
|
|
27
|
-
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
28
|
-
readonly code?: string;
|
|
29
|
-
readonly details?: ErrorDetail[];
|
|
30
|
-
readonly message?: string;
|
|
31
|
-
readonly target?: string;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
// @public
|
|
35
|
-
export interface ErrorResponse {
|
|
36
|
-
error?: ErrorDetail;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
// @public
|
|
40
|
-
export interface FileSystemResource extends TrackedResource {
|
|
41
|
-
adminPassword?: string;
|
|
42
|
-
availabilityZone?: string;
|
|
43
|
-
clusterLoginUrl?: string;
|
|
44
|
-
delegatedSubnetId?: string;
|
|
45
|
-
identity?: ManagedServiceIdentity;
|
|
46
|
-
marketplaceDetails?: MarketplaceDetails;
|
|
47
|
-
privateIPs?: string[];
|
|
48
|
-
readonly provisioningState?: ProvisioningState;
|
|
49
|
-
storageSku?: string;
|
|
50
|
-
userDetails?: UserDetails;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
// @public
|
|
54
|
-
export interface FileSystemResourceListResult {
|
|
55
|
-
nextLink?: string;
|
|
56
|
-
value: FileSystemResource[];
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
// @public
|
|
60
|
-
export interface FileSystemResourceUpdate {
|
|
61
|
-
identity?: ManagedServiceIdentity;
|
|
62
|
-
properties?: FileSystemResourceUpdateProperties;
|
|
63
|
-
tags?: {
|
|
64
|
-
[propertyName: string]: string;
|
|
65
|
-
};
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
// @public
|
|
69
|
-
export interface FileSystemResourceUpdateProperties {
|
|
70
|
-
delegatedSubnetId?: string;
|
|
71
|
-
marketplaceDetails?: MarketplaceDetails;
|
|
72
|
-
userDetails?: UserDetails;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
// @public
|
|
76
|
-
export interface FileSystems {
|
|
77
|
-
beginCreateOrUpdate(resourceGroupName: string, fileSystemName: string, resource: FileSystemResource, options?: FileSystemsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<FileSystemsCreateOrUpdateResponse>, FileSystemsCreateOrUpdateResponse>>;
|
|
78
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, fileSystemName: string, resource: FileSystemResource, options?: FileSystemsCreateOrUpdateOptionalParams): Promise<FileSystemsCreateOrUpdateResponse>;
|
|
79
|
-
beginDelete(resourceGroupName: string, fileSystemName: string, options?: FileSystemsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<FileSystemsDeleteResponse>, FileSystemsDeleteResponse>>;
|
|
80
|
-
beginDeleteAndWait(resourceGroupName: string, fileSystemName: string, options?: FileSystemsDeleteOptionalParams): Promise<FileSystemsDeleteResponse>;
|
|
81
|
-
get(resourceGroupName: string, fileSystemName: string, options?: FileSystemsGetOptionalParams): Promise<FileSystemsGetResponse>;
|
|
82
|
-
listByResourceGroup(resourceGroupName: string, options?: FileSystemsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<FileSystemResource>;
|
|
83
|
-
listBySubscription(options?: FileSystemsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<FileSystemResource>;
|
|
84
|
-
update(resourceGroupName: string, fileSystemName: string, properties: FileSystemResourceUpdate, options?: FileSystemsUpdateOptionalParams): Promise<FileSystemsUpdateResponse>;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
// @public
|
|
88
|
-
export interface FileSystemsCreateOrUpdateHeaders {
|
|
89
|
-
azureAsyncOperation?: string;
|
|
90
|
-
retryAfter?: number;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
// @public
|
|
94
|
-
export interface FileSystemsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
95
|
-
resumeFrom?: string;
|
|
96
|
-
updateIntervalInMs?: number;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
// @public
|
|
100
|
-
export type FileSystemsCreateOrUpdateResponse = FileSystemResource;
|
|
101
|
-
|
|
102
|
-
// @public
|
|
103
|
-
export interface FileSystemsDeleteHeaders {
|
|
104
|
-
azureAsyncOperation?: string;
|
|
105
|
-
location?: string;
|
|
106
|
-
retryAfter?: number;
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
// @public
|
|
110
|
-
export interface FileSystemsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
111
|
-
resumeFrom?: string;
|
|
112
|
-
updateIntervalInMs?: number;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
// @public
|
|
116
|
-
export type FileSystemsDeleteResponse = FileSystemsDeleteHeaders;
|
|
117
|
-
|
|
118
|
-
// @public
|
|
119
|
-
export interface FileSystemsGetOptionalParams extends coreClient.OperationOptions {
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
// @public
|
|
123
|
-
export type FileSystemsGetResponse = FileSystemResource;
|
|
124
|
-
|
|
125
|
-
// @public
|
|
126
|
-
export interface FileSystemsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
// @public
|
|
130
|
-
export type FileSystemsListByResourceGroupNextResponse = FileSystemResourceListResult;
|
|
131
|
-
|
|
132
|
-
// @public
|
|
133
|
-
export interface FileSystemsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
// @public
|
|
137
|
-
export type FileSystemsListByResourceGroupResponse = FileSystemResourceListResult;
|
|
138
|
-
|
|
139
|
-
// @public
|
|
140
|
-
export interface FileSystemsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
// @public
|
|
144
|
-
export type FileSystemsListBySubscriptionNextResponse = FileSystemResourceListResult;
|
|
145
|
-
|
|
146
|
-
// @public
|
|
147
|
-
export interface FileSystemsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
// @public
|
|
151
|
-
export type FileSystemsListBySubscriptionResponse = FileSystemResourceListResult;
|
|
152
|
-
|
|
153
|
-
// @public
|
|
154
|
-
export interface FileSystemsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
// @public
|
|
158
|
-
export type FileSystemsUpdateResponse = FileSystemResource;
|
|
159
|
-
|
|
160
|
-
// @public
|
|
161
|
-
export function getContinuationToken(page: unknown): string | undefined;
|
|
162
|
-
|
|
163
|
-
// @public
|
|
164
|
-
export enum KnownActionType {
|
|
165
|
-
Internal = "Internal"
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
// @public
|
|
169
|
-
export enum KnownCreatedByType {
|
|
170
|
-
Application = "Application",
|
|
171
|
-
Key = "Key",
|
|
172
|
-
ManagedIdentity = "ManagedIdentity",
|
|
173
|
-
User = "User"
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
// @public
|
|
177
|
-
export enum KnownManagedServiceIdentityType {
|
|
178
|
-
None = "None",
|
|
179
|
-
SystemAssigned = "SystemAssigned",
|
|
180
|
-
SystemAssignedUserAssigned = "SystemAssigned,UserAssigned",
|
|
181
|
-
UserAssigned = "UserAssigned"
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
// @public
|
|
185
|
-
export enum KnownMarketplaceSubscriptionStatus {
|
|
186
|
-
PendingFulfillmentStart = "PendingFulfillmentStart",
|
|
187
|
-
Subscribed = "Subscribed",
|
|
188
|
-
Suspended = "Suspended",
|
|
189
|
-
Unsubscribed = "Unsubscribed"
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
// @public
|
|
193
|
-
export enum KnownOrigin {
|
|
194
|
-
System = "system",
|
|
195
|
-
User = "user",
|
|
196
|
-
UserSystem = "user,system"
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
// @public
|
|
200
|
-
export enum KnownProvisioningState {
|
|
201
|
-
Accepted = "Accepted",
|
|
202
|
-
Canceled = "Canceled",
|
|
203
|
-
Creating = "Creating",
|
|
204
|
-
Deleted = "Deleted",
|
|
205
|
-
Deleting = "Deleting",
|
|
206
|
-
Failed = "Failed",
|
|
207
|
-
Succeeded = "Succeeded",
|
|
208
|
-
Updating = "Updating"
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
// @public
|
|
212
|
-
export interface ManagedServiceIdentity {
|
|
213
|
-
readonly principalId?: string;
|
|
214
|
-
readonly tenantId?: string;
|
|
215
|
-
type: ManagedServiceIdentityType;
|
|
216
|
-
userAssignedIdentities?: {
|
|
217
|
-
[propertyName: string]: UserAssignedIdentity;
|
|
218
|
-
};
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
// @public
|
|
222
|
-
export type ManagedServiceIdentityType = string;
|
|
223
|
-
|
|
224
|
-
// @public
|
|
225
|
-
export interface MarketplaceDetails {
|
|
226
|
-
marketplaceSubscriptionId?: string;
|
|
227
|
-
readonly marketplaceSubscriptionStatus?: MarketplaceSubscriptionStatus;
|
|
228
|
-
offerId: string;
|
|
229
|
-
planId: string;
|
|
230
|
-
publisherId?: string;
|
|
231
|
-
termUnit?: string;
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
// @public
|
|
235
|
-
export type MarketplaceSubscriptionStatus = string;
|
|
236
|
-
|
|
237
|
-
// @public
|
|
238
|
-
export interface Operation {
|
|
239
|
-
readonly actionType?: ActionType;
|
|
240
|
-
display?: OperationDisplay;
|
|
241
|
-
readonly isDataAction?: boolean;
|
|
242
|
-
readonly name?: string;
|
|
243
|
-
readonly origin?: Origin;
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
// @public
|
|
247
|
-
export interface OperationDisplay {
|
|
248
|
-
readonly description?: string;
|
|
249
|
-
readonly operation?: string;
|
|
250
|
-
readonly provider?: string;
|
|
251
|
-
readonly resource?: string;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
// @public
|
|
255
|
-
export interface OperationListResult {
|
|
256
|
-
readonly nextLink?: string;
|
|
257
|
-
readonly value?: Operation[];
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
// @public
|
|
261
|
-
export interface Operations {
|
|
262
|
-
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
// @public
|
|
266
|
-
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
// @public
|
|
270
|
-
export type OperationsListNextResponse = OperationListResult;
|
|
271
|
-
|
|
272
|
-
// @public
|
|
273
|
-
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
274
|
-
}
|
|
275
|
-
|
|
276
|
-
// @public
|
|
277
|
-
export type OperationsListResponse = OperationListResult;
|
|
278
|
-
|
|
279
|
-
// @public
|
|
280
|
-
export type Origin = string;
|
|
281
|
-
|
|
282
|
-
// @public
|
|
283
|
-
export type ProvisioningState = string;
|
|
284
|
-
|
|
285
|
-
// @public (undocumented)
|
|
286
|
-
export class QumuloStorage extends coreClient.ServiceClient {
|
|
287
|
-
// (undocumented)
|
|
288
|
-
$host: string;
|
|
289
|
-
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: QumuloStorageOptionalParams);
|
|
290
|
-
// (undocumented)
|
|
291
|
-
apiVersion: string;
|
|
292
|
-
// (undocumented)
|
|
293
|
-
fileSystems: FileSystems;
|
|
294
|
-
// (undocumented)
|
|
295
|
-
operations: Operations;
|
|
296
|
-
// (undocumented)
|
|
297
|
-
subscriptionId: string;
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
// @public
|
|
301
|
-
export interface QumuloStorageOptionalParams extends coreClient.ServiceClientOptions {
|
|
302
|
-
$host?: string;
|
|
303
|
-
apiVersion?: string;
|
|
304
|
-
endpoint?: string;
|
|
305
|
-
}
|
|
306
|
-
|
|
307
|
-
// @public
|
|
308
|
-
export interface Resource {
|
|
309
|
-
readonly id?: string;
|
|
310
|
-
readonly name?: string;
|
|
311
|
-
readonly systemData?: SystemData;
|
|
312
|
-
readonly type?: string;
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
// @public
|
|
316
|
-
export interface SystemData {
|
|
317
|
-
createdAt?: Date;
|
|
318
|
-
createdBy?: string;
|
|
319
|
-
createdByType?: CreatedByType;
|
|
320
|
-
lastModifiedAt?: Date;
|
|
321
|
-
lastModifiedBy?: string;
|
|
322
|
-
lastModifiedByType?: CreatedByType;
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
// @public
|
|
326
|
-
export interface TrackedResource extends Resource {
|
|
327
|
-
location: string;
|
|
328
|
-
tags?: {
|
|
329
|
-
[propertyName: string]: string;
|
|
330
|
-
};
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
// @public
|
|
334
|
-
export interface UserAssignedIdentity {
|
|
335
|
-
readonly clientId?: string;
|
|
336
|
-
readonly principalId?: string;
|
|
337
|
-
}
|
|
338
|
-
|
|
339
|
-
// @public
|
|
340
|
-
export interface UserDetails {
|
|
341
|
-
email: string;
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
// (No @packageDocumentation comment for this package)
|
|
345
|
-
|
|
346
|
-
```
|
|
1
|
+
## API Report File for "@azure/arm-qumulo"
|
|
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 { OperationState } from '@azure/core-lro';
|
|
10
|
+
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
|
11
|
+
import { SimplePollerLike } from '@azure/core-lro';
|
|
12
|
+
|
|
13
|
+
// @public
|
|
14
|
+
export type ActionType = string;
|
|
15
|
+
|
|
16
|
+
// @public
|
|
17
|
+
export type CreatedByType = string;
|
|
18
|
+
|
|
19
|
+
// @public
|
|
20
|
+
export interface ErrorAdditionalInfo {
|
|
21
|
+
readonly info?: Record<string, unknown>;
|
|
22
|
+
readonly type?: string;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
// @public
|
|
26
|
+
export interface ErrorDetail {
|
|
27
|
+
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
28
|
+
readonly code?: string;
|
|
29
|
+
readonly details?: ErrorDetail[];
|
|
30
|
+
readonly message?: string;
|
|
31
|
+
readonly target?: string;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
// @public
|
|
35
|
+
export interface ErrorResponse {
|
|
36
|
+
error?: ErrorDetail;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
// @public
|
|
40
|
+
export interface FileSystemResource extends TrackedResource {
|
|
41
|
+
adminPassword?: string;
|
|
42
|
+
availabilityZone?: string;
|
|
43
|
+
clusterLoginUrl?: string;
|
|
44
|
+
delegatedSubnetId?: string;
|
|
45
|
+
identity?: ManagedServiceIdentity;
|
|
46
|
+
marketplaceDetails?: MarketplaceDetails;
|
|
47
|
+
privateIPs?: string[];
|
|
48
|
+
readonly provisioningState?: ProvisioningState;
|
|
49
|
+
storageSku?: string;
|
|
50
|
+
userDetails?: UserDetails;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
// @public
|
|
54
|
+
export interface FileSystemResourceListResult {
|
|
55
|
+
nextLink?: string;
|
|
56
|
+
value: FileSystemResource[];
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// @public
|
|
60
|
+
export interface FileSystemResourceUpdate {
|
|
61
|
+
identity?: ManagedServiceIdentity;
|
|
62
|
+
properties?: FileSystemResourceUpdateProperties;
|
|
63
|
+
tags?: {
|
|
64
|
+
[propertyName: string]: string;
|
|
65
|
+
};
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
// @public
|
|
69
|
+
export interface FileSystemResourceUpdateProperties {
|
|
70
|
+
delegatedSubnetId?: string;
|
|
71
|
+
marketplaceDetails?: MarketplaceDetails;
|
|
72
|
+
userDetails?: UserDetails;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
// @public
|
|
76
|
+
export interface FileSystems {
|
|
77
|
+
beginCreateOrUpdate(resourceGroupName: string, fileSystemName: string, resource: FileSystemResource, options?: FileSystemsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<FileSystemsCreateOrUpdateResponse>, FileSystemsCreateOrUpdateResponse>>;
|
|
78
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, fileSystemName: string, resource: FileSystemResource, options?: FileSystemsCreateOrUpdateOptionalParams): Promise<FileSystemsCreateOrUpdateResponse>;
|
|
79
|
+
beginDelete(resourceGroupName: string, fileSystemName: string, options?: FileSystemsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<FileSystemsDeleteResponse>, FileSystemsDeleteResponse>>;
|
|
80
|
+
beginDeleteAndWait(resourceGroupName: string, fileSystemName: string, options?: FileSystemsDeleteOptionalParams): Promise<FileSystemsDeleteResponse>;
|
|
81
|
+
get(resourceGroupName: string, fileSystemName: string, options?: FileSystemsGetOptionalParams): Promise<FileSystemsGetResponse>;
|
|
82
|
+
listByResourceGroup(resourceGroupName: string, options?: FileSystemsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<FileSystemResource>;
|
|
83
|
+
listBySubscription(options?: FileSystemsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<FileSystemResource>;
|
|
84
|
+
update(resourceGroupName: string, fileSystemName: string, properties: FileSystemResourceUpdate, options?: FileSystemsUpdateOptionalParams): Promise<FileSystemsUpdateResponse>;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
// @public
|
|
88
|
+
export interface FileSystemsCreateOrUpdateHeaders {
|
|
89
|
+
azureAsyncOperation?: string;
|
|
90
|
+
retryAfter?: number;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
// @public
|
|
94
|
+
export interface FileSystemsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
95
|
+
resumeFrom?: string;
|
|
96
|
+
updateIntervalInMs?: number;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
// @public
|
|
100
|
+
export type FileSystemsCreateOrUpdateResponse = FileSystemResource;
|
|
101
|
+
|
|
102
|
+
// @public
|
|
103
|
+
export interface FileSystemsDeleteHeaders {
|
|
104
|
+
azureAsyncOperation?: string;
|
|
105
|
+
location?: string;
|
|
106
|
+
retryAfter?: number;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
// @public
|
|
110
|
+
export interface FileSystemsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
111
|
+
resumeFrom?: string;
|
|
112
|
+
updateIntervalInMs?: number;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
// @public
|
|
116
|
+
export type FileSystemsDeleteResponse = FileSystemsDeleteHeaders;
|
|
117
|
+
|
|
118
|
+
// @public
|
|
119
|
+
export interface FileSystemsGetOptionalParams extends coreClient.OperationOptions {
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
// @public
|
|
123
|
+
export type FileSystemsGetResponse = FileSystemResource;
|
|
124
|
+
|
|
125
|
+
// @public
|
|
126
|
+
export interface FileSystemsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
// @public
|
|
130
|
+
export type FileSystemsListByResourceGroupNextResponse = FileSystemResourceListResult;
|
|
131
|
+
|
|
132
|
+
// @public
|
|
133
|
+
export interface FileSystemsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
// @public
|
|
137
|
+
export type FileSystemsListByResourceGroupResponse = FileSystemResourceListResult;
|
|
138
|
+
|
|
139
|
+
// @public
|
|
140
|
+
export interface FileSystemsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
// @public
|
|
144
|
+
export type FileSystemsListBySubscriptionNextResponse = FileSystemResourceListResult;
|
|
145
|
+
|
|
146
|
+
// @public
|
|
147
|
+
export interface FileSystemsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
// @public
|
|
151
|
+
export type FileSystemsListBySubscriptionResponse = FileSystemResourceListResult;
|
|
152
|
+
|
|
153
|
+
// @public
|
|
154
|
+
export interface FileSystemsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
// @public
|
|
158
|
+
export type FileSystemsUpdateResponse = FileSystemResource;
|
|
159
|
+
|
|
160
|
+
// @public
|
|
161
|
+
export function getContinuationToken(page: unknown): string | undefined;
|
|
162
|
+
|
|
163
|
+
// @public
|
|
164
|
+
export enum KnownActionType {
|
|
165
|
+
Internal = "Internal"
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
// @public
|
|
169
|
+
export enum KnownCreatedByType {
|
|
170
|
+
Application = "Application",
|
|
171
|
+
Key = "Key",
|
|
172
|
+
ManagedIdentity = "ManagedIdentity",
|
|
173
|
+
User = "User"
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
// @public
|
|
177
|
+
export enum KnownManagedServiceIdentityType {
|
|
178
|
+
None = "None",
|
|
179
|
+
SystemAssigned = "SystemAssigned",
|
|
180
|
+
SystemAssignedUserAssigned = "SystemAssigned,UserAssigned",
|
|
181
|
+
UserAssigned = "UserAssigned"
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
// @public
|
|
185
|
+
export enum KnownMarketplaceSubscriptionStatus {
|
|
186
|
+
PendingFulfillmentStart = "PendingFulfillmentStart",
|
|
187
|
+
Subscribed = "Subscribed",
|
|
188
|
+
Suspended = "Suspended",
|
|
189
|
+
Unsubscribed = "Unsubscribed"
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
// @public
|
|
193
|
+
export enum KnownOrigin {
|
|
194
|
+
System = "system",
|
|
195
|
+
User = "user",
|
|
196
|
+
UserSystem = "user,system"
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
// @public
|
|
200
|
+
export enum KnownProvisioningState {
|
|
201
|
+
Accepted = "Accepted",
|
|
202
|
+
Canceled = "Canceled",
|
|
203
|
+
Creating = "Creating",
|
|
204
|
+
Deleted = "Deleted",
|
|
205
|
+
Deleting = "Deleting",
|
|
206
|
+
Failed = "Failed",
|
|
207
|
+
Succeeded = "Succeeded",
|
|
208
|
+
Updating = "Updating"
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
// @public
|
|
212
|
+
export interface ManagedServiceIdentity {
|
|
213
|
+
readonly principalId?: string;
|
|
214
|
+
readonly tenantId?: string;
|
|
215
|
+
type: ManagedServiceIdentityType;
|
|
216
|
+
userAssignedIdentities?: {
|
|
217
|
+
[propertyName: string]: UserAssignedIdentity;
|
|
218
|
+
};
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
// @public
|
|
222
|
+
export type ManagedServiceIdentityType = string;
|
|
223
|
+
|
|
224
|
+
// @public
|
|
225
|
+
export interface MarketplaceDetails {
|
|
226
|
+
marketplaceSubscriptionId?: string;
|
|
227
|
+
readonly marketplaceSubscriptionStatus?: MarketplaceSubscriptionStatus;
|
|
228
|
+
offerId: string;
|
|
229
|
+
planId: string;
|
|
230
|
+
publisherId?: string;
|
|
231
|
+
termUnit?: string;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
// @public
|
|
235
|
+
export type MarketplaceSubscriptionStatus = string;
|
|
236
|
+
|
|
237
|
+
// @public
|
|
238
|
+
export interface Operation {
|
|
239
|
+
readonly actionType?: ActionType;
|
|
240
|
+
display?: OperationDisplay;
|
|
241
|
+
readonly isDataAction?: boolean;
|
|
242
|
+
readonly name?: string;
|
|
243
|
+
readonly origin?: Origin;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
// @public
|
|
247
|
+
export interface OperationDisplay {
|
|
248
|
+
readonly description?: string;
|
|
249
|
+
readonly operation?: string;
|
|
250
|
+
readonly provider?: string;
|
|
251
|
+
readonly resource?: string;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
// @public
|
|
255
|
+
export interface OperationListResult {
|
|
256
|
+
readonly nextLink?: string;
|
|
257
|
+
readonly value?: Operation[];
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
// @public
|
|
261
|
+
export interface Operations {
|
|
262
|
+
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
// @public
|
|
266
|
+
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
// @public
|
|
270
|
+
export type OperationsListNextResponse = OperationListResult;
|
|
271
|
+
|
|
272
|
+
// @public
|
|
273
|
+
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
// @public
|
|
277
|
+
export type OperationsListResponse = OperationListResult;
|
|
278
|
+
|
|
279
|
+
// @public
|
|
280
|
+
export type Origin = string;
|
|
281
|
+
|
|
282
|
+
// @public
|
|
283
|
+
export type ProvisioningState = string;
|
|
284
|
+
|
|
285
|
+
// @public (undocumented)
|
|
286
|
+
export class QumuloStorage extends coreClient.ServiceClient {
|
|
287
|
+
// (undocumented)
|
|
288
|
+
$host: string;
|
|
289
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: QumuloStorageOptionalParams);
|
|
290
|
+
// (undocumented)
|
|
291
|
+
apiVersion: string;
|
|
292
|
+
// (undocumented)
|
|
293
|
+
fileSystems: FileSystems;
|
|
294
|
+
// (undocumented)
|
|
295
|
+
operations: Operations;
|
|
296
|
+
// (undocumented)
|
|
297
|
+
subscriptionId: string;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
// @public
|
|
301
|
+
export interface QumuloStorageOptionalParams extends coreClient.ServiceClientOptions {
|
|
302
|
+
$host?: string;
|
|
303
|
+
apiVersion?: string;
|
|
304
|
+
endpoint?: string;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
// @public
|
|
308
|
+
export interface Resource {
|
|
309
|
+
readonly id?: string;
|
|
310
|
+
readonly name?: string;
|
|
311
|
+
readonly systemData?: SystemData;
|
|
312
|
+
readonly type?: string;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
// @public
|
|
316
|
+
export interface SystemData {
|
|
317
|
+
createdAt?: Date;
|
|
318
|
+
createdBy?: string;
|
|
319
|
+
createdByType?: CreatedByType;
|
|
320
|
+
lastModifiedAt?: Date;
|
|
321
|
+
lastModifiedBy?: string;
|
|
322
|
+
lastModifiedByType?: CreatedByType;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
// @public
|
|
326
|
+
export interface TrackedResource extends Resource {
|
|
327
|
+
location: string;
|
|
328
|
+
tags?: {
|
|
329
|
+
[propertyName: string]: string;
|
|
330
|
+
};
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
// @public
|
|
334
|
+
export interface UserAssignedIdentity {
|
|
335
|
+
readonly clientId?: string;
|
|
336
|
+
readonly principalId?: string;
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
// @public
|
|
340
|
+
export interface UserDetails {
|
|
341
|
+
email: string;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
// (No @packageDocumentation comment for this package)
|
|
345
|
+
|
|
346
|
+
```
|