@azure/arm-astro 1.0.0-alpha.20250619.1 → 1.0.0-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,412 +1,412 @@
|
|
|
1
|
-
## API Report File for "@azure/arm-astro"
|
|
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 (undocumented)
|
|
17
|
-
export class AstroManagementClient extends coreClient.ServiceClient {
|
|
18
|
-
// (undocumented)
|
|
19
|
-
$host: string;
|
|
20
|
-
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: AstroManagementClientOptionalParams);
|
|
21
|
-
// (undocumented)
|
|
22
|
-
apiVersion: string;
|
|
23
|
-
// (undocumented)
|
|
24
|
-
operations: Operations;
|
|
25
|
-
// (undocumented)
|
|
26
|
-
organizations: Organizations;
|
|
27
|
-
// (undocumented)
|
|
28
|
-
subscriptionId: string;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
// @public
|
|
32
|
-
export interface AstroManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
33
|
-
$host?: string;
|
|
34
|
-
apiVersion?: string;
|
|
35
|
-
endpoint?: string;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
// @public
|
|
39
|
-
export type CreatedByType = string;
|
|
40
|
-
|
|
41
|
-
// @public
|
|
42
|
-
export interface ErrorAdditionalInfo {
|
|
43
|
-
readonly info?: Record<string, unknown>;
|
|
44
|
-
readonly type?: string;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
// @public
|
|
48
|
-
export interface ErrorDetail {
|
|
49
|
-
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
50
|
-
readonly code?: string;
|
|
51
|
-
readonly details?: ErrorDetail[];
|
|
52
|
-
readonly message?: string;
|
|
53
|
-
readonly target?: string;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
// @public
|
|
57
|
-
export interface ErrorResponse {
|
|
58
|
-
error?: ErrorDetail;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
// @public
|
|
62
|
-
export function getContinuationToken(page: unknown): string | undefined;
|
|
63
|
-
|
|
64
|
-
// @public
|
|
65
|
-
export enum KnownActionType {
|
|
66
|
-
Internal = "Internal"
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
// @public
|
|
70
|
-
export enum KnownCreatedByType {
|
|
71
|
-
Application = "Application",
|
|
72
|
-
Key = "Key",
|
|
73
|
-
ManagedIdentity = "ManagedIdentity",
|
|
74
|
-
User = "User"
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
// @public
|
|
78
|
-
export enum KnownManagedServiceIdentityType {
|
|
79
|
-
None = "None",
|
|
80
|
-
SystemAssigned = "SystemAssigned",
|
|
81
|
-
SystemAssignedUserAssigned = "SystemAssigned, UserAssigned",
|
|
82
|
-
UserAssigned = "UserAssigned"
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
// @public
|
|
86
|
-
export enum KnownMarketplaceSubscriptionStatus {
|
|
87
|
-
PendingFulfillmentStart = "PendingFulfillmentStart",
|
|
88
|
-
Subscribed = "Subscribed",
|
|
89
|
-
Suspended = "Suspended",
|
|
90
|
-
Unsubscribed = "Unsubscribed"
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
// @public
|
|
94
|
-
export enum KnownOrigin {
|
|
95
|
-
System = "system",
|
|
96
|
-
User = "user",
|
|
97
|
-
UserSystem = "user,system"
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
// @public
|
|
101
|
-
export enum KnownResourceProvisioningState {
|
|
102
|
-
Canceled = "Canceled",
|
|
103
|
-
Failed = "Failed",
|
|
104
|
-
Succeeded = "Succeeded"
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
// @public
|
|
108
|
-
export enum KnownSingleSignOnStates {
|
|
109
|
-
Disable = "Disable",
|
|
110
|
-
Enable = "Enable",
|
|
111
|
-
Initial = "Initial"
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
// @public
|
|
115
|
-
export enum KnownVersions {
|
|
116
|
-
V1Preview = "2023-08-01"
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
// @public
|
|
120
|
-
export interface LiftrBaseDataOrganizationProperties {
|
|
121
|
-
marketplace: LiftrBaseMarketplaceDetails;
|
|
122
|
-
partnerOrganizationProperties?: LiftrBaseDataPartnerOrganizationProperties;
|
|
123
|
-
readonly provisioningState?: ResourceProvisioningState;
|
|
124
|
-
user: LiftrBaseUserDetails;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
// @public
|
|
128
|
-
export interface LiftrBaseDataPartnerOrganizationProperties {
|
|
129
|
-
organizationId?: string;
|
|
130
|
-
organizationName: string;
|
|
131
|
-
singleSignOnProperties?: LiftrBaseSingleSignOnProperties;
|
|
132
|
-
workspaceId?: string;
|
|
133
|
-
workspaceName?: string;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
// @public
|
|
137
|
-
export interface LiftrBaseDataPartnerOrganizationPropertiesUpdate {
|
|
138
|
-
organizationId?: string;
|
|
139
|
-
organizationName?: string;
|
|
140
|
-
singleSignOnProperties?: LiftrBaseSingleSignOnProperties;
|
|
141
|
-
workspaceId?: string;
|
|
142
|
-
workspaceName?: string;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
// @public
|
|
146
|
-
export interface LiftrBaseMarketplaceDetails {
|
|
147
|
-
offerDetails: LiftrBaseOfferDetails;
|
|
148
|
-
subscriptionId: string;
|
|
149
|
-
subscriptionStatus?: MarketplaceSubscriptionStatus;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
// @public
|
|
153
|
-
export interface LiftrBaseOfferDetails {
|
|
154
|
-
offerId: string;
|
|
155
|
-
planId: string;
|
|
156
|
-
planName?: string;
|
|
157
|
-
publisherId: string;
|
|
158
|
-
termId?: string;
|
|
159
|
-
termUnit?: string;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
// @public
|
|
163
|
-
export interface LiftrBaseSingleSignOnProperties {
|
|
164
|
-
aadDomains?: string[];
|
|
165
|
-
enterpriseAppId?: string;
|
|
166
|
-
readonly provisioningState?: ResourceProvisioningState;
|
|
167
|
-
singleSignOnState?: SingleSignOnStates;
|
|
168
|
-
singleSignOnUrl?: string;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
// @public
|
|
172
|
-
export interface LiftrBaseUserDetails {
|
|
173
|
-
emailAddress: string;
|
|
174
|
-
firstName: string;
|
|
175
|
-
lastName: string;
|
|
176
|
-
phoneNumber?: string;
|
|
177
|
-
upn?: string;
|
|
178
|
-
}
|
|
179
|
-
|
|
180
|
-
// @public
|
|
181
|
-
export interface LiftrBaseUserDetailsUpdate {
|
|
182
|
-
emailAddress?: string;
|
|
183
|
-
firstName?: string;
|
|
184
|
-
lastName?: string;
|
|
185
|
-
phoneNumber?: string;
|
|
186
|
-
upn?: string;
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
// @public
|
|
190
|
-
export interface ManagedServiceIdentity {
|
|
191
|
-
readonly principalId?: string;
|
|
192
|
-
readonly tenantId?: string;
|
|
193
|
-
type: ManagedServiceIdentityType;
|
|
194
|
-
userAssignedIdentities?: {
|
|
195
|
-
[propertyName: string]: UserAssignedIdentity;
|
|
196
|
-
};
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
// @public
|
|
200
|
-
export type ManagedServiceIdentityType = string;
|
|
201
|
-
|
|
202
|
-
// @public
|
|
203
|
-
export type MarketplaceSubscriptionStatus = string;
|
|
204
|
-
|
|
205
|
-
// @public
|
|
206
|
-
export interface Operation {
|
|
207
|
-
readonly actionType?: ActionType;
|
|
208
|
-
display?: OperationDisplay;
|
|
209
|
-
readonly isDataAction?: boolean;
|
|
210
|
-
readonly name?: string;
|
|
211
|
-
readonly origin?: Origin;
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
// @public
|
|
215
|
-
export interface OperationDisplay {
|
|
216
|
-
readonly description?: string;
|
|
217
|
-
readonly operation?: string;
|
|
218
|
-
readonly provider?: string;
|
|
219
|
-
readonly resource?: string;
|
|
220
|
-
}
|
|
221
|
-
|
|
222
|
-
// @public
|
|
223
|
-
export interface OperationListResult {
|
|
224
|
-
readonly nextLink?: string;
|
|
225
|
-
readonly value?: Operation[];
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
// @public
|
|
229
|
-
export interface Operations {
|
|
230
|
-
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
// @public
|
|
234
|
-
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
// @public
|
|
238
|
-
export type OperationsListNextResponse = OperationListResult;
|
|
239
|
-
|
|
240
|
-
// @public
|
|
241
|
-
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
// @public
|
|
245
|
-
export type OperationsListResponse = OperationListResult;
|
|
246
|
-
|
|
247
|
-
// @public
|
|
248
|
-
export interface OrganizationResource extends TrackedResource {
|
|
249
|
-
identity?: ManagedServiceIdentity;
|
|
250
|
-
properties?: LiftrBaseDataOrganizationProperties;
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
// @public
|
|
254
|
-
export interface OrganizationResourceListResult {
|
|
255
|
-
nextLink?: string;
|
|
256
|
-
value: OrganizationResource[];
|
|
257
|
-
}
|
|
258
|
-
|
|
259
|
-
// @public
|
|
260
|
-
export interface OrganizationResourceUpdate {
|
|
261
|
-
identity?: ManagedServiceIdentity;
|
|
262
|
-
properties?: OrganizationResourceUpdateProperties;
|
|
263
|
-
tags?: {
|
|
264
|
-
[propertyName: string]: string;
|
|
265
|
-
};
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
// @public
|
|
269
|
-
export interface OrganizationResourceUpdateProperties {
|
|
270
|
-
partnerOrganizationProperties?: LiftrBaseDataPartnerOrganizationPropertiesUpdate;
|
|
271
|
-
user?: LiftrBaseUserDetailsUpdate;
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
// @public
|
|
275
|
-
export interface Organizations {
|
|
276
|
-
beginCreateOrUpdate(resourceGroupName: string, organizationName: string, resource: OrganizationResource, options?: OrganizationsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<OrganizationsCreateOrUpdateResponse>, OrganizationsCreateOrUpdateResponse>>;
|
|
277
|
-
beginCreateOrUpdateAndWait(resourceGroupName: string, organizationName: string, resource: OrganizationResource, options?: OrganizationsCreateOrUpdateOptionalParams): Promise<OrganizationsCreateOrUpdateResponse>;
|
|
278
|
-
beginDelete(resourceGroupName: string, organizationName: string, options?: OrganizationsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<OrganizationsDeleteResponse>, OrganizationsDeleteResponse>>;
|
|
279
|
-
beginDeleteAndWait(resourceGroupName: string, organizationName: string, options?: OrganizationsDeleteOptionalParams): Promise<OrganizationsDeleteResponse>;
|
|
280
|
-
beginUpdate(resourceGroupName: string, organizationName: string, properties: OrganizationResourceUpdate, options?: OrganizationsUpdateOptionalParams): Promise<SimplePollerLike<OperationState<OrganizationsUpdateResponse>, OrganizationsUpdateResponse>>;
|
|
281
|
-
beginUpdateAndWait(resourceGroupName: string, organizationName: string, properties: OrganizationResourceUpdate, options?: OrganizationsUpdateOptionalParams): Promise<OrganizationsUpdateResponse>;
|
|
282
|
-
get(resourceGroupName: string, organizationName: string, options?: OrganizationsGetOptionalParams): Promise<OrganizationsGetResponse>;
|
|
283
|
-
listByResourceGroup(resourceGroupName: string, options?: OrganizationsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<OrganizationResource>;
|
|
284
|
-
listBySubscription(options?: OrganizationsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<OrganizationResource>;
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
// @public
|
|
288
|
-
export interface OrganizationsCreateOrUpdateHeaders {
|
|
289
|
-
retryAfter?: number;
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
// @public
|
|
293
|
-
export interface OrganizationsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
294
|
-
resumeFrom?: string;
|
|
295
|
-
updateIntervalInMs?: number;
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
// @public
|
|
299
|
-
export type OrganizationsCreateOrUpdateResponse = OrganizationResource;
|
|
300
|
-
|
|
301
|
-
// @public
|
|
302
|
-
export interface OrganizationsDeleteHeaders {
|
|
303
|
-
location?: string;
|
|
304
|
-
retryAfter?: number;
|
|
305
|
-
}
|
|
306
|
-
|
|
307
|
-
// @public
|
|
308
|
-
export interface OrganizationsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
309
|
-
resumeFrom?: string;
|
|
310
|
-
updateIntervalInMs?: number;
|
|
311
|
-
}
|
|
312
|
-
|
|
313
|
-
// @public
|
|
314
|
-
export type OrganizationsDeleteResponse = OrganizationsDeleteHeaders;
|
|
315
|
-
|
|
316
|
-
// @public
|
|
317
|
-
export interface OrganizationsGetOptionalParams extends coreClient.OperationOptions {
|
|
318
|
-
}
|
|
319
|
-
|
|
320
|
-
// @public
|
|
321
|
-
export type OrganizationsGetResponse = OrganizationResource;
|
|
322
|
-
|
|
323
|
-
// @public
|
|
324
|
-
export interface OrganizationsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
325
|
-
}
|
|
326
|
-
|
|
327
|
-
// @public
|
|
328
|
-
export type OrganizationsListByResourceGroupNextResponse = OrganizationResourceListResult;
|
|
329
|
-
|
|
330
|
-
// @public
|
|
331
|
-
export interface OrganizationsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
332
|
-
}
|
|
333
|
-
|
|
334
|
-
// @public
|
|
335
|
-
export type OrganizationsListByResourceGroupResponse = OrganizationResourceListResult;
|
|
336
|
-
|
|
337
|
-
// @public
|
|
338
|
-
export interface OrganizationsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
339
|
-
}
|
|
340
|
-
|
|
341
|
-
// @public
|
|
342
|
-
export type OrganizationsListBySubscriptionNextResponse = OrganizationResourceListResult;
|
|
343
|
-
|
|
344
|
-
// @public
|
|
345
|
-
export interface OrganizationsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
// @public
|
|
349
|
-
export type OrganizationsListBySubscriptionResponse = OrganizationResourceListResult;
|
|
350
|
-
|
|
351
|
-
// @public
|
|
352
|
-
export interface OrganizationsUpdateHeaders {
|
|
353
|
-
location?: string;
|
|
354
|
-
retryAfter?: number;
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
// @public
|
|
358
|
-
export interface OrganizationsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
359
|
-
resumeFrom?: string;
|
|
360
|
-
updateIntervalInMs?: number;
|
|
361
|
-
}
|
|
362
|
-
|
|
363
|
-
// @public
|
|
364
|
-
export type OrganizationsUpdateResponse = OrganizationResource;
|
|
365
|
-
|
|
366
|
-
// @public
|
|
367
|
-
export type Origin = string;
|
|
368
|
-
|
|
369
|
-
// @public
|
|
370
|
-
export interface Resource {
|
|
371
|
-
readonly id?: string;
|
|
372
|
-
readonly name?: string;
|
|
373
|
-
readonly systemData?: SystemData;
|
|
374
|
-
readonly type?: string;
|
|
375
|
-
}
|
|
376
|
-
|
|
377
|
-
// @public
|
|
378
|
-
export type ResourceProvisioningState = string;
|
|
379
|
-
|
|
380
|
-
// @public
|
|
381
|
-
export type SingleSignOnStates = string;
|
|
382
|
-
|
|
383
|
-
// @public
|
|
384
|
-
export interface SystemData {
|
|
385
|
-
createdAt?: Date;
|
|
386
|
-
createdBy?: string;
|
|
387
|
-
createdByType?: CreatedByType;
|
|
388
|
-
lastModifiedAt?: Date;
|
|
389
|
-
lastModifiedBy?: string;
|
|
390
|
-
lastModifiedByType?: CreatedByType;
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
// @public
|
|
394
|
-
export interface TrackedResource extends Resource {
|
|
395
|
-
location: string;
|
|
396
|
-
tags?: {
|
|
397
|
-
[propertyName: string]: string;
|
|
398
|
-
};
|
|
399
|
-
}
|
|
400
|
-
|
|
401
|
-
// @public
|
|
402
|
-
export interface UserAssignedIdentity {
|
|
403
|
-
readonly clientId?: string;
|
|
404
|
-
readonly principalId?: string;
|
|
405
|
-
}
|
|
406
|
-
|
|
407
|
-
// @public
|
|
408
|
-
export type Versions = string;
|
|
409
|
-
|
|
410
|
-
// (No @packageDocumentation comment for this package)
|
|
411
|
-
|
|
412
|
-
```
|
|
1
|
+
## API Report File for "@azure/arm-astro"
|
|
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 (undocumented)
|
|
17
|
+
export class AstroManagementClient extends coreClient.ServiceClient {
|
|
18
|
+
// (undocumented)
|
|
19
|
+
$host: string;
|
|
20
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: AstroManagementClientOptionalParams);
|
|
21
|
+
// (undocumented)
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
// (undocumented)
|
|
24
|
+
operations: Operations;
|
|
25
|
+
// (undocumented)
|
|
26
|
+
organizations: Organizations;
|
|
27
|
+
// (undocumented)
|
|
28
|
+
subscriptionId: string;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
// @public
|
|
32
|
+
export interface AstroManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
33
|
+
$host?: string;
|
|
34
|
+
apiVersion?: string;
|
|
35
|
+
endpoint?: string;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// @public
|
|
39
|
+
export type CreatedByType = string;
|
|
40
|
+
|
|
41
|
+
// @public
|
|
42
|
+
export interface ErrorAdditionalInfo {
|
|
43
|
+
readonly info?: Record<string, unknown>;
|
|
44
|
+
readonly type?: string;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
// @public
|
|
48
|
+
export interface ErrorDetail {
|
|
49
|
+
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
50
|
+
readonly code?: string;
|
|
51
|
+
readonly details?: ErrorDetail[];
|
|
52
|
+
readonly message?: string;
|
|
53
|
+
readonly target?: string;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
// @public
|
|
57
|
+
export interface ErrorResponse {
|
|
58
|
+
error?: ErrorDetail;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
// @public
|
|
62
|
+
export function getContinuationToken(page: unknown): string | undefined;
|
|
63
|
+
|
|
64
|
+
// @public
|
|
65
|
+
export enum KnownActionType {
|
|
66
|
+
Internal = "Internal"
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
// @public
|
|
70
|
+
export enum KnownCreatedByType {
|
|
71
|
+
Application = "Application",
|
|
72
|
+
Key = "Key",
|
|
73
|
+
ManagedIdentity = "ManagedIdentity",
|
|
74
|
+
User = "User"
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
// @public
|
|
78
|
+
export enum KnownManagedServiceIdentityType {
|
|
79
|
+
None = "None",
|
|
80
|
+
SystemAssigned = "SystemAssigned",
|
|
81
|
+
SystemAssignedUserAssigned = "SystemAssigned, UserAssigned",
|
|
82
|
+
UserAssigned = "UserAssigned"
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
// @public
|
|
86
|
+
export enum KnownMarketplaceSubscriptionStatus {
|
|
87
|
+
PendingFulfillmentStart = "PendingFulfillmentStart",
|
|
88
|
+
Subscribed = "Subscribed",
|
|
89
|
+
Suspended = "Suspended",
|
|
90
|
+
Unsubscribed = "Unsubscribed"
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
// @public
|
|
94
|
+
export enum KnownOrigin {
|
|
95
|
+
System = "system",
|
|
96
|
+
User = "user",
|
|
97
|
+
UserSystem = "user,system"
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
// @public
|
|
101
|
+
export enum KnownResourceProvisioningState {
|
|
102
|
+
Canceled = "Canceled",
|
|
103
|
+
Failed = "Failed",
|
|
104
|
+
Succeeded = "Succeeded"
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
// @public
|
|
108
|
+
export enum KnownSingleSignOnStates {
|
|
109
|
+
Disable = "Disable",
|
|
110
|
+
Enable = "Enable",
|
|
111
|
+
Initial = "Initial"
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
// @public
|
|
115
|
+
export enum KnownVersions {
|
|
116
|
+
V1Preview = "2023-08-01"
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
// @public
|
|
120
|
+
export interface LiftrBaseDataOrganizationProperties {
|
|
121
|
+
marketplace: LiftrBaseMarketplaceDetails;
|
|
122
|
+
partnerOrganizationProperties?: LiftrBaseDataPartnerOrganizationProperties;
|
|
123
|
+
readonly provisioningState?: ResourceProvisioningState;
|
|
124
|
+
user: LiftrBaseUserDetails;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
// @public
|
|
128
|
+
export interface LiftrBaseDataPartnerOrganizationProperties {
|
|
129
|
+
organizationId?: string;
|
|
130
|
+
organizationName: string;
|
|
131
|
+
singleSignOnProperties?: LiftrBaseSingleSignOnProperties;
|
|
132
|
+
workspaceId?: string;
|
|
133
|
+
workspaceName?: string;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
// @public
|
|
137
|
+
export interface LiftrBaseDataPartnerOrganizationPropertiesUpdate {
|
|
138
|
+
organizationId?: string;
|
|
139
|
+
organizationName?: string;
|
|
140
|
+
singleSignOnProperties?: LiftrBaseSingleSignOnProperties;
|
|
141
|
+
workspaceId?: string;
|
|
142
|
+
workspaceName?: string;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
// @public
|
|
146
|
+
export interface LiftrBaseMarketplaceDetails {
|
|
147
|
+
offerDetails: LiftrBaseOfferDetails;
|
|
148
|
+
subscriptionId: string;
|
|
149
|
+
subscriptionStatus?: MarketplaceSubscriptionStatus;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
// @public
|
|
153
|
+
export interface LiftrBaseOfferDetails {
|
|
154
|
+
offerId: string;
|
|
155
|
+
planId: string;
|
|
156
|
+
planName?: string;
|
|
157
|
+
publisherId: string;
|
|
158
|
+
termId?: string;
|
|
159
|
+
termUnit?: string;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
// @public
|
|
163
|
+
export interface LiftrBaseSingleSignOnProperties {
|
|
164
|
+
aadDomains?: string[];
|
|
165
|
+
enterpriseAppId?: string;
|
|
166
|
+
readonly provisioningState?: ResourceProvisioningState;
|
|
167
|
+
singleSignOnState?: SingleSignOnStates;
|
|
168
|
+
singleSignOnUrl?: string;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
// @public
|
|
172
|
+
export interface LiftrBaseUserDetails {
|
|
173
|
+
emailAddress: string;
|
|
174
|
+
firstName: string;
|
|
175
|
+
lastName: string;
|
|
176
|
+
phoneNumber?: string;
|
|
177
|
+
upn?: string;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
// @public
|
|
181
|
+
export interface LiftrBaseUserDetailsUpdate {
|
|
182
|
+
emailAddress?: string;
|
|
183
|
+
firstName?: string;
|
|
184
|
+
lastName?: string;
|
|
185
|
+
phoneNumber?: string;
|
|
186
|
+
upn?: string;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
// @public
|
|
190
|
+
export interface ManagedServiceIdentity {
|
|
191
|
+
readonly principalId?: string;
|
|
192
|
+
readonly tenantId?: string;
|
|
193
|
+
type: ManagedServiceIdentityType;
|
|
194
|
+
userAssignedIdentities?: {
|
|
195
|
+
[propertyName: string]: UserAssignedIdentity;
|
|
196
|
+
};
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
// @public
|
|
200
|
+
export type ManagedServiceIdentityType = string;
|
|
201
|
+
|
|
202
|
+
// @public
|
|
203
|
+
export type MarketplaceSubscriptionStatus = string;
|
|
204
|
+
|
|
205
|
+
// @public
|
|
206
|
+
export interface Operation {
|
|
207
|
+
readonly actionType?: ActionType;
|
|
208
|
+
display?: OperationDisplay;
|
|
209
|
+
readonly isDataAction?: boolean;
|
|
210
|
+
readonly name?: string;
|
|
211
|
+
readonly origin?: Origin;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
// @public
|
|
215
|
+
export interface OperationDisplay {
|
|
216
|
+
readonly description?: string;
|
|
217
|
+
readonly operation?: string;
|
|
218
|
+
readonly provider?: string;
|
|
219
|
+
readonly resource?: string;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
// @public
|
|
223
|
+
export interface OperationListResult {
|
|
224
|
+
readonly nextLink?: string;
|
|
225
|
+
readonly value?: Operation[];
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
// @public
|
|
229
|
+
export interface Operations {
|
|
230
|
+
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
// @public
|
|
234
|
+
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
// @public
|
|
238
|
+
export type OperationsListNextResponse = OperationListResult;
|
|
239
|
+
|
|
240
|
+
// @public
|
|
241
|
+
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
// @public
|
|
245
|
+
export type OperationsListResponse = OperationListResult;
|
|
246
|
+
|
|
247
|
+
// @public
|
|
248
|
+
export interface OrganizationResource extends TrackedResource {
|
|
249
|
+
identity?: ManagedServiceIdentity;
|
|
250
|
+
properties?: LiftrBaseDataOrganizationProperties;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
// @public
|
|
254
|
+
export interface OrganizationResourceListResult {
|
|
255
|
+
nextLink?: string;
|
|
256
|
+
value: OrganizationResource[];
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
// @public
|
|
260
|
+
export interface OrganizationResourceUpdate {
|
|
261
|
+
identity?: ManagedServiceIdentity;
|
|
262
|
+
properties?: OrganizationResourceUpdateProperties;
|
|
263
|
+
tags?: {
|
|
264
|
+
[propertyName: string]: string;
|
|
265
|
+
};
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
// @public
|
|
269
|
+
export interface OrganizationResourceUpdateProperties {
|
|
270
|
+
partnerOrganizationProperties?: LiftrBaseDataPartnerOrganizationPropertiesUpdate;
|
|
271
|
+
user?: LiftrBaseUserDetailsUpdate;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
// @public
|
|
275
|
+
export interface Organizations {
|
|
276
|
+
beginCreateOrUpdate(resourceGroupName: string, organizationName: string, resource: OrganizationResource, options?: OrganizationsCreateOrUpdateOptionalParams): Promise<SimplePollerLike<OperationState<OrganizationsCreateOrUpdateResponse>, OrganizationsCreateOrUpdateResponse>>;
|
|
277
|
+
beginCreateOrUpdateAndWait(resourceGroupName: string, organizationName: string, resource: OrganizationResource, options?: OrganizationsCreateOrUpdateOptionalParams): Promise<OrganizationsCreateOrUpdateResponse>;
|
|
278
|
+
beginDelete(resourceGroupName: string, organizationName: string, options?: OrganizationsDeleteOptionalParams): Promise<SimplePollerLike<OperationState<OrganizationsDeleteResponse>, OrganizationsDeleteResponse>>;
|
|
279
|
+
beginDeleteAndWait(resourceGroupName: string, organizationName: string, options?: OrganizationsDeleteOptionalParams): Promise<OrganizationsDeleteResponse>;
|
|
280
|
+
beginUpdate(resourceGroupName: string, organizationName: string, properties: OrganizationResourceUpdate, options?: OrganizationsUpdateOptionalParams): Promise<SimplePollerLike<OperationState<OrganizationsUpdateResponse>, OrganizationsUpdateResponse>>;
|
|
281
|
+
beginUpdateAndWait(resourceGroupName: string, organizationName: string, properties: OrganizationResourceUpdate, options?: OrganizationsUpdateOptionalParams): Promise<OrganizationsUpdateResponse>;
|
|
282
|
+
get(resourceGroupName: string, organizationName: string, options?: OrganizationsGetOptionalParams): Promise<OrganizationsGetResponse>;
|
|
283
|
+
listByResourceGroup(resourceGroupName: string, options?: OrganizationsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<OrganizationResource>;
|
|
284
|
+
listBySubscription(options?: OrganizationsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<OrganizationResource>;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
// @public
|
|
288
|
+
export interface OrganizationsCreateOrUpdateHeaders {
|
|
289
|
+
retryAfter?: number;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
// @public
|
|
293
|
+
export interface OrganizationsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
294
|
+
resumeFrom?: string;
|
|
295
|
+
updateIntervalInMs?: number;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
// @public
|
|
299
|
+
export type OrganizationsCreateOrUpdateResponse = OrganizationResource;
|
|
300
|
+
|
|
301
|
+
// @public
|
|
302
|
+
export interface OrganizationsDeleteHeaders {
|
|
303
|
+
location?: string;
|
|
304
|
+
retryAfter?: number;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
// @public
|
|
308
|
+
export interface OrganizationsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
309
|
+
resumeFrom?: string;
|
|
310
|
+
updateIntervalInMs?: number;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
// @public
|
|
314
|
+
export type OrganizationsDeleteResponse = OrganizationsDeleteHeaders;
|
|
315
|
+
|
|
316
|
+
// @public
|
|
317
|
+
export interface OrganizationsGetOptionalParams extends coreClient.OperationOptions {
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
// @public
|
|
321
|
+
export type OrganizationsGetResponse = OrganizationResource;
|
|
322
|
+
|
|
323
|
+
// @public
|
|
324
|
+
export interface OrganizationsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
// @public
|
|
328
|
+
export type OrganizationsListByResourceGroupNextResponse = OrganizationResourceListResult;
|
|
329
|
+
|
|
330
|
+
// @public
|
|
331
|
+
export interface OrganizationsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
// @public
|
|
335
|
+
export type OrganizationsListByResourceGroupResponse = OrganizationResourceListResult;
|
|
336
|
+
|
|
337
|
+
// @public
|
|
338
|
+
export interface OrganizationsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
// @public
|
|
342
|
+
export type OrganizationsListBySubscriptionNextResponse = OrganizationResourceListResult;
|
|
343
|
+
|
|
344
|
+
// @public
|
|
345
|
+
export interface OrganizationsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
// @public
|
|
349
|
+
export type OrganizationsListBySubscriptionResponse = OrganizationResourceListResult;
|
|
350
|
+
|
|
351
|
+
// @public
|
|
352
|
+
export interface OrganizationsUpdateHeaders {
|
|
353
|
+
location?: string;
|
|
354
|
+
retryAfter?: number;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
// @public
|
|
358
|
+
export interface OrganizationsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
359
|
+
resumeFrom?: string;
|
|
360
|
+
updateIntervalInMs?: number;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
// @public
|
|
364
|
+
export type OrganizationsUpdateResponse = OrganizationResource;
|
|
365
|
+
|
|
366
|
+
// @public
|
|
367
|
+
export type Origin = string;
|
|
368
|
+
|
|
369
|
+
// @public
|
|
370
|
+
export interface Resource {
|
|
371
|
+
readonly id?: string;
|
|
372
|
+
readonly name?: string;
|
|
373
|
+
readonly systemData?: SystemData;
|
|
374
|
+
readonly type?: string;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
// @public
|
|
378
|
+
export type ResourceProvisioningState = string;
|
|
379
|
+
|
|
380
|
+
// @public
|
|
381
|
+
export type SingleSignOnStates = string;
|
|
382
|
+
|
|
383
|
+
// @public
|
|
384
|
+
export interface SystemData {
|
|
385
|
+
createdAt?: Date;
|
|
386
|
+
createdBy?: string;
|
|
387
|
+
createdByType?: CreatedByType;
|
|
388
|
+
lastModifiedAt?: Date;
|
|
389
|
+
lastModifiedBy?: string;
|
|
390
|
+
lastModifiedByType?: CreatedByType;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
// @public
|
|
394
|
+
export interface TrackedResource extends Resource {
|
|
395
|
+
location: string;
|
|
396
|
+
tags?: {
|
|
397
|
+
[propertyName: string]: string;
|
|
398
|
+
};
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
// @public
|
|
402
|
+
export interface UserAssignedIdentity {
|
|
403
|
+
readonly clientId?: string;
|
|
404
|
+
readonly principalId?: string;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
// @public
|
|
408
|
+
export type Versions = string;
|
|
409
|
+
|
|
410
|
+
// (No @packageDocumentation comment for this package)
|
|
411
|
+
|
|
412
|
+
```
|