@azure/arm-azureadexternalidentities 1.0.4-alpha.20250718.1 → 1.0.4-alpha.20250721.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.
Files changed (51) hide show
  1. package/dist/browser/externalIdentitiesConfigurationClient.js +16 -5
  2. package/dist/browser/externalIdentitiesConfigurationClient.js.map +1 -1
  3. package/dist/browser/lroImpl.js +11 -3
  4. package/dist/browser/lroImpl.js.map +1 -1
  5. package/dist/browser/operations/b2CTenants.js +41 -65
  6. package/dist/browser/operations/b2CTenants.js.map +1 -1
  7. package/dist/browser/operations/guestUsages.js +19 -53
  8. package/dist/browser/operations/guestUsages.js.map +1 -1
  9. package/dist/browser/operations/operations.js +10 -27
  10. package/dist/browser/operations/operations.js.map +1 -1
  11. package/dist/browser/pagingHelper.js +2 -4
  12. package/dist/browser/pagingHelper.js.map +1 -1
  13. package/dist/commonjs/externalIdentitiesConfigurationClient.js +16 -5
  14. package/dist/commonjs/externalIdentitiesConfigurationClient.js.map +1 -1
  15. package/dist/commonjs/lroImpl.js +11 -3
  16. package/dist/commonjs/lroImpl.js.map +1 -1
  17. package/dist/commonjs/operations/b2CTenants.js +41 -64
  18. package/dist/commonjs/operations/b2CTenants.js.map +1 -1
  19. package/dist/commonjs/operations/guestUsages.js +19 -52
  20. package/dist/commonjs/operations/guestUsages.js.map +1 -1
  21. package/dist/commonjs/operations/operations.js +10 -26
  22. package/dist/commonjs/operations/operations.js.map +1 -1
  23. package/dist/commonjs/pagingHelper.js +2 -4
  24. package/dist/commonjs/pagingHelper.js.map +1 -1
  25. package/dist/commonjs/tsdoc-metadata.json +11 -11
  26. package/dist/esm/externalIdentitiesConfigurationClient.js +16 -5
  27. package/dist/esm/externalIdentitiesConfigurationClient.js.map +1 -1
  28. package/dist/esm/lroImpl.js +11 -3
  29. package/dist/esm/lroImpl.js.map +1 -1
  30. package/dist/esm/operations/b2CTenants.js +41 -65
  31. package/dist/esm/operations/b2CTenants.js.map +1 -1
  32. package/dist/esm/operations/guestUsages.js +19 -53
  33. package/dist/esm/operations/guestUsages.js.map +1 -1
  34. package/dist/esm/operations/operations.js +10 -27
  35. package/dist/esm/operations/operations.js.map +1 -1
  36. package/dist/esm/pagingHelper.js +2 -4
  37. package/dist/esm/pagingHelper.js.map +1 -1
  38. package/dist/react-native/externalIdentitiesConfigurationClient.js +16 -5
  39. package/dist/react-native/externalIdentitiesConfigurationClient.js.map +1 -1
  40. package/dist/react-native/lroImpl.js +11 -3
  41. package/dist/react-native/lroImpl.js.map +1 -1
  42. package/dist/react-native/operations/b2CTenants.js +41 -65
  43. package/dist/react-native/operations/b2CTenants.js.map +1 -1
  44. package/dist/react-native/operations/guestUsages.js +19 -53
  45. package/dist/react-native/operations/guestUsages.js.map +1 -1
  46. package/dist/react-native/operations/operations.js +10 -27
  47. package/dist/react-native/operations/operations.js.map +1 -1
  48. package/dist/react-native/pagingHelper.js +2 -4
  49. package/dist/react-native/pagingHelper.js.map +1 -1
  50. package/package.json +2 -2
  51. package/review/arm-azureadexternalidentities-node.api.md +381 -381
@@ -1,381 +1,381 @@
1
- ## API Report File for "@azure/arm-azureadexternalidentities"
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
- import { PollerLike } from '@azure/core-lro';
11
- import { PollOperationState } from '@azure/core-lro';
12
-
13
- // @public
14
- export interface AvailableOperations {
15
- nextLink?: string;
16
- value?: OperationDetail[];
17
- }
18
-
19
- // @public
20
- export interface B2CResourceSKU {
21
- name?: B2CResourceSKUName;
22
- tier?: B2CResourceSKUTier;
23
- }
24
-
25
- // @public
26
- export type B2CResourceSKUName = string;
27
-
28
- // @public
29
- export type B2CResourceSKUTier = string;
30
-
31
- // @public (undocumented)
32
- export interface B2CTenantResource {
33
- billingConfig?: B2CTenantResourcePropertiesBillingConfig;
34
- readonly id?: string;
35
- location: string;
36
- readonly name?: string;
37
- sku: B2CResourceSKU;
38
- readonly systemData?: SystemData;
39
- tags?: {
40
- [propertyName: string]: string;
41
- };
42
- tenantId?: string;
43
- readonly type?: TypeValue;
44
- }
45
-
46
- // @public
47
- export interface B2CTenantResourceList {
48
- readonly value?: B2CTenantResource[];
49
- }
50
-
51
- // @public
52
- export interface B2CTenantResourcePropertiesBillingConfig {
53
- billingType?: BillingType;
54
- readonly effectiveStartDateUtc?: string;
55
- }
56
-
57
- // @public
58
- export interface B2CTenants {
59
- beginCreate(resourceGroupName: string, resourceName: string, options?: B2CTenantsCreateOptionalParams): Promise<PollerLike<PollOperationState<B2CTenantsCreateResponse>, B2CTenantsCreateResponse>>;
60
- beginCreateAndWait(resourceGroupName: string, resourceName: string, options?: B2CTenantsCreateOptionalParams): Promise<B2CTenantsCreateResponse>;
61
- beginDelete(resourceGroupName: string, resourceName: string, options?: B2CTenantsDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
62
- beginDeleteAndWait(resourceGroupName: string, resourceName: string, options?: B2CTenantsDeleteOptionalParams): Promise<void>;
63
- checkNameAvailability(options?: B2CTenantsCheckNameAvailabilityOptionalParams): Promise<B2CTenantsCheckNameAvailabilityResponse>;
64
- get(resourceGroupName: string, resourceName: string, options?: B2CTenantsGetOptionalParams): Promise<B2CTenantsGetResponse>;
65
- listByResourceGroup(resourceGroupName: string, options?: B2CTenantsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<B2CTenantResource>;
66
- listBySubscription(options?: B2CTenantsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<B2CTenantResource>;
67
- update(resourceGroupName: string, resourceName: string, options?: B2CTenantsUpdateOptionalParams): Promise<B2CTenantsUpdateResponse>;
68
- }
69
-
70
- // @public
71
- export interface B2CTenantsCheckNameAvailabilityOptionalParams extends coreClient.OperationOptions {
72
- checkNameAvailabilityRequestBody?: CheckNameAvailabilityRequestBody;
73
- }
74
-
75
- // @public
76
- export type B2CTenantsCheckNameAvailabilityResponse = NameAvailabilityResponse;
77
-
78
- // @public
79
- export interface B2CTenantsCreateHeaders {
80
- location?: string;
81
- retryAfter?: string;
82
- }
83
-
84
- // @public
85
- export interface B2CTenantsCreateOptionalParams extends coreClient.OperationOptions {
86
- createTenantRequestBody?: CreateTenantRequestBody;
87
- resumeFrom?: string;
88
- updateIntervalInMs?: number;
89
- }
90
-
91
- // @public
92
- export type B2CTenantsCreateResponse = B2CTenantResource;
93
-
94
- // @public
95
- export interface B2CTenantsDeleteHeaders {
96
- location?: string;
97
- retryAfter?: string;
98
- }
99
-
100
- // @public
101
- export interface B2CTenantsDeleteOptionalParams extends coreClient.OperationOptions {
102
- resumeFrom?: string;
103
- updateIntervalInMs?: number;
104
- }
105
-
106
- // @public
107
- export interface B2CTenantsGetOptionalParams extends coreClient.OperationOptions {
108
- }
109
-
110
- // @public
111
- export type B2CTenantsGetResponse = B2CTenantResource;
112
-
113
- // @public
114
- export interface B2CTenantsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
115
- }
116
-
117
- // @public
118
- export type B2CTenantsListByResourceGroupResponse = B2CTenantResourceList;
119
-
120
- // @public
121
- export interface B2CTenantsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
122
- }
123
-
124
- // @public
125
- export type B2CTenantsListBySubscriptionResponse = B2CTenantResourceList;
126
-
127
- // @public
128
- export interface B2CTenantsUpdateOptionalParams extends coreClient.OperationOptions {
129
- updateTenantRequestBody?: B2CTenantUpdateRequest;
130
- }
131
-
132
- // @public
133
- export type B2CTenantsUpdateResponse = B2CTenantResource;
134
-
135
- // @public
136
- export interface B2CTenantUpdateRequest {
137
- billingConfig?: B2CTenantResourcePropertiesBillingConfig;
138
- sku?: B2CResourceSKU;
139
- tags?: {
140
- [propertyName: string]: string;
141
- };
142
- tenantId?: string;
143
- }
144
-
145
- // @public
146
- export type BillingType = string;
147
-
148
- // @public
149
- export interface CheckNameAvailabilityRequestBody {
150
- countryCode: string;
151
- name: string;
152
- }
153
-
154
- // @public
155
- export interface CloudError {
156
- error?: ErrorResponse;
157
- }
158
-
159
- // @public
160
- export type CreatedByType = string;
161
-
162
- // @public
163
- export interface CreateTenantRequestBody {
164
- countryCode?: string;
165
- displayName?: string;
166
- location: string;
167
- sku: B2CResourceSKU;
168
- tags?: {
169
- [propertyName: string]: string;
170
- };
171
- }
172
-
173
- // @public
174
- export interface ErrorAdditionalInfo {
175
- readonly info?: Record<string, unknown>;
176
- readonly type?: string;
177
- }
178
-
179
- // @public
180
- export interface ErrorResponse {
181
- readonly additionalInfo?: ErrorAdditionalInfo[];
182
- readonly code?: string;
183
- readonly details?: ErrorResponse[];
184
- readonly message?: string;
185
- readonly target?: string;
186
- }
187
-
188
- // @public (undocumented)
189
- export class ExternalIdentitiesConfigurationClient extends coreClient.ServiceClient {
190
- // (undocumented)
191
- $host: string;
192
- constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: ExternalIdentitiesConfigurationClientOptionalParams);
193
- // (undocumented)
194
- apiVersion: string;
195
- // (undocumented)
196
- b2CTenants: B2CTenants;
197
- // (undocumented)
198
- guestUsages: GuestUsages;
199
- // (undocumented)
200
- operations: Operations;
201
- // (undocumented)
202
- subscriptionId: string;
203
- }
204
-
205
- // @public
206
- export interface ExternalIdentitiesConfigurationClientOptionalParams extends coreClient.ServiceClientOptions {
207
- $host?: string;
208
- apiVersion?: string;
209
- endpoint?: string;
210
- }
211
-
212
- // @public
213
- export function getContinuationToken(page: unknown): string | undefined;
214
-
215
- // @public
216
- export interface GuestUsages {
217
- create(resourceGroupName: string, resourceName: string, options?: GuestUsagesCreateOptionalParams): Promise<GuestUsagesCreateResponse>;
218
- delete(resourceGroupName: string, resourceName: string, options?: GuestUsagesDeleteOptionalParams): Promise<void>;
219
- get(resourceGroupName: string, resourceName: string, options?: GuestUsagesGetOptionalParams): Promise<GuestUsagesGetResponse>;
220
- listByResourceGroup(resourceGroupName: string, options?: GuestUsagesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<GuestUsagesResource>;
221
- listBySubscription(options?: GuestUsagesListBySubscriptionOptionalParams): PagedAsyncIterableIterator<GuestUsagesResource>;
222
- update(resourceGroupName: string, resourceName: string, options?: GuestUsagesUpdateOptionalParams): Promise<GuestUsagesUpdateResponse>;
223
- }
224
-
225
- // @public
226
- export interface GuestUsagesCreateOptionalParams extends coreClient.OperationOptions {
227
- resource?: GuestUsagesResource;
228
- }
229
-
230
- // @public
231
- export type GuestUsagesCreateResponse = GuestUsagesResource;
232
-
233
- // @public
234
- export interface GuestUsagesDeleteOptionalParams extends coreClient.OperationOptions {
235
- }
236
-
237
- // @public
238
- export interface GuestUsagesGetOptionalParams extends coreClient.OperationOptions {
239
- }
240
-
241
- // @public
242
- export type GuestUsagesGetResponse = GuestUsagesResource;
243
-
244
- // @public
245
- export interface GuestUsagesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
246
- }
247
-
248
- // @public
249
- export type GuestUsagesListByResourceGroupResponse = GuestUsagesResourceList;
250
-
251
- // @public
252
- export interface GuestUsagesListBySubscriptionOptionalParams extends coreClient.OperationOptions {
253
- }
254
-
255
- // @public
256
- export type GuestUsagesListBySubscriptionResponse = GuestUsagesResourceList;
257
-
258
- // @public
259
- export interface GuestUsagesResource {
260
- readonly id?: string;
261
- location?: string;
262
- readonly name?: string;
263
- readonly systemData?: SystemData;
264
- tags?: {
265
- [propertyName: string]: string;
266
- };
267
- tenantId?: string;
268
- readonly type?: string;
269
- }
270
-
271
- // @public
272
- export interface GuestUsagesResourceList {
273
- readonly value?: GuestUsagesResource[];
274
- }
275
-
276
- // @public
277
- export interface GuestUsagesResourcePatch {
278
- tags?: {
279
- [propertyName: string]: string;
280
- };
281
- }
282
-
283
- // @public
284
- export interface GuestUsagesUpdateOptionalParams extends coreClient.OperationOptions {
285
- resourcePatch?: GuestUsagesResourcePatch;
286
- }
287
-
288
- // @public
289
- export type GuestUsagesUpdateResponse = GuestUsagesResource;
290
-
291
- // @public
292
- export enum KnownB2CResourceSKUName {
293
- PremiumP1 = "PremiumP1",
294
- PremiumP2 = "PremiumP2",
295
- Standard = "Standard"
296
- }
297
-
298
- // @public
299
- export enum KnownB2CResourceSKUTier {
300
- A0 = "A0"
301
- }
302
-
303
- // @public
304
- export enum KnownBillingType {
305
- Auths = "Auths",
306
- MAU = "MAU"
307
- }
308
-
309
- // @public
310
- export enum KnownCreatedByType {
311
- Application = "Application",
312
- Key = "Key",
313
- ManagedIdentity = "ManagedIdentity",
314
- User = "User"
315
- }
316
-
317
- // @public
318
- export enum KnownNameAvailabilityReasonType {
319
- AlreadyExists = "AlreadyExists",
320
- Invalid = "Invalid"
321
- }
322
-
323
- // @public
324
- export enum KnownTypeValue {
325
- MicrosoftAzureActiveDirectoryB2CDirectories = "Microsoft.AzureActiveDirectory/b2cDirectories"
326
- }
327
-
328
- // @public
329
- export type NameAvailabilityReasonType = string;
330
-
331
- // @public
332
- export interface NameAvailabilityResponse {
333
- message?: string;
334
- nameAvailable?: boolean;
335
- reason?: NameAvailabilityReasonType;
336
- }
337
-
338
- // @public
339
- export interface OperationDetail {
340
- display?: OperationDisplay;
341
- isDataAction?: boolean;
342
- name?: string;
343
- origin?: string;
344
- }
345
-
346
- // @public
347
- export interface OperationDisplay {
348
- description?: string;
349
- operation?: string;
350
- provider?: string;
351
- resource?: string;
352
- }
353
-
354
- // @public
355
- export interface Operations {
356
- list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<OperationDetail>;
357
- }
358
-
359
- // @public
360
- export interface OperationsListOptionalParams extends coreClient.OperationOptions {
361
- }
362
-
363
- // @public
364
- export type OperationsListResponse = AvailableOperations;
365
-
366
- // @public
367
- export interface SystemData {
368
- createdAt?: Date;
369
- createdBy?: string;
370
- createdByType?: CreatedByType;
371
- lastModifiedAt?: Date;
372
- lastModifiedBy?: string;
373
- lastModifiedByType?: CreatedByType;
374
- }
375
-
376
- // @public
377
- export type TypeValue = string;
378
-
379
- // (No @packageDocumentation comment for this package)
380
-
381
- ```
1
+ ## API Report File for "@azure/arm-azureadexternalidentities"
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
+ import { PollerLike } from '@azure/core-lro';
11
+ import { PollOperationState } from '@azure/core-lro';
12
+
13
+ // @public
14
+ export interface AvailableOperations {
15
+ nextLink?: string;
16
+ value?: OperationDetail[];
17
+ }
18
+
19
+ // @public
20
+ export interface B2CResourceSKU {
21
+ name?: B2CResourceSKUName;
22
+ tier?: B2CResourceSKUTier;
23
+ }
24
+
25
+ // @public
26
+ export type B2CResourceSKUName = string;
27
+
28
+ // @public
29
+ export type B2CResourceSKUTier = string;
30
+
31
+ // @public (undocumented)
32
+ export interface B2CTenantResource {
33
+ billingConfig?: B2CTenantResourcePropertiesBillingConfig;
34
+ readonly id?: string;
35
+ location: string;
36
+ readonly name?: string;
37
+ sku: B2CResourceSKU;
38
+ readonly systemData?: SystemData;
39
+ tags?: {
40
+ [propertyName: string]: string;
41
+ };
42
+ tenantId?: string;
43
+ readonly type?: TypeValue;
44
+ }
45
+
46
+ // @public
47
+ export interface B2CTenantResourceList {
48
+ readonly value?: B2CTenantResource[];
49
+ }
50
+
51
+ // @public
52
+ export interface B2CTenantResourcePropertiesBillingConfig {
53
+ billingType?: BillingType;
54
+ readonly effectiveStartDateUtc?: string;
55
+ }
56
+
57
+ // @public
58
+ export interface B2CTenants {
59
+ beginCreate(resourceGroupName: string, resourceName: string, options?: B2CTenantsCreateOptionalParams): Promise<PollerLike<PollOperationState<B2CTenantsCreateResponse>, B2CTenantsCreateResponse>>;
60
+ beginCreateAndWait(resourceGroupName: string, resourceName: string, options?: B2CTenantsCreateOptionalParams): Promise<B2CTenantsCreateResponse>;
61
+ beginDelete(resourceGroupName: string, resourceName: string, options?: B2CTenantsDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
62
+ beginDeleteAndWait(resourceGroupName: string, resourceName: string, options?: B2CTenantsDeleteOptionalParams): Promise<void>;
63
+ checkNameAvailability(options?: B2CTenantsCheckNameAvailabilityOptionalParams): Promise<B2CTenantsCheckNameAvailabilityResponse>;
64
+ get(resourceGroupName: string, resourceName: string, options?: B2CTenantsGetOptionalParams): Promise<B2CTenantsGetResponse>;
65
+ listByResourceGroup(resourceGroupName: string, options?: B2CTenantsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<B2CTenantResource>;
66
+ listBySubscription(options?: B2CTenantsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<B2CTenantResource>;
67
+ update(resourceGroupName: string, resourceName: string, options?: B2CTenantsUpdateOptionalParams): Promise<B2CTenantsUpdateResponse>;
68
+ }
69
+
70
+ // @public
71
+ export interface B2CTenantsCheckNameAvailabilityOptionalParams extends coreClient.OperationOptions {
72
+ checkNameAvailabilityRequestBody?: CheckNameAvailabilityRequestBody;
73
+ }
74
+
75
+ // @public
76
+ export type B2CTenantsCheckNameAvailabilityResponse = NameAvailabilityResponse;
77
+
78
+ // @public
79
+ export interface B2CTenantsCreateHeaders {
80
+ location?: string;
81
+ retryAfter?: string;
82
+ }
83
+
84
+ // @public
85
+ export interface B2CTenantsCreateOptionalParams extends coreClient.OperationOptions {
86
+ createTenantRequestBody?: CreateTenantRequestBody;
87
+ resumeFrom?: string;
88
+ updateIntervalInMs?: number;
89
+ }
90
+
91
+ // @public
92
+ export type B2CTenantsCreateResponse = B2CTenantResource;
93
+
94
+ // @public
95
+ export interface B2CTenantsDeleteHeaders {
96
+ location?: string;
97
+ retryAfter?: string;
98
+ }
99
+
100
+ // @public
101
+ export interface B2CTenantsDeleteOptionalParams extends coreClient.OperationOptions {
102
+ resumeFrom?: string;
103
+ updateIntervalInMs?: number;
104
+ }
105
+
106
+ // @public
107
+ export interface B2CTenantsGetOptionalParams extends coreClient.OperationOptions {
108
+ }
109
+
110
+ // @public
111
+ export type B2CTenantsGetResponse = B2CTenantResource;
112
+
113
+ // @public
114
+ export interface B2CTenantsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
115
+ }
116
+
117
+ // @public
118
+ export type B2CTenantsListByResourceGroupResponse = B2CTenantResourceList;
119
+
120
+ // @public
121
+ export interface B2CTenantsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
122
+ }
123
+
124
+ // @public
125
+ export type B2CTenantsListBySubscriptionResponse = B2CTenantResourceList;
126
+
127
+ // @public
128
+ export interface B2CTenantsUpdateOptionalParams extends coreClient.OperationOptions {
129
+ updateTenantRequestBody?: B2CTenantUpdateRequest;
130
+ }
131
+
132
+ // @public
133
+ export type B2CTenantsUpdateResponse = B2CTenantResource;
134
+
135
+ // @public
136
+ export interface B2CTenantUpdateRequest {
137
+ billingConfig?: B2CTenantResourcePropertiesBillingConfig;
138
+ sku?: B2CResourceSKU;
139
+ tags?: {
140
+ [propertyName: string]: string;
141
+ };
142
+ tenantId?: string;
143
+ }
144
+
145
+ // @public
146
+ export type BillingType = string;
147
+
148
+ // @public
149
+ export interface CheckNameAvailabilityRequestBody {
150
+ countryCode: string;
151
+ name: string;
152
+ }
153
+
154
+ // @public
155
+ export interface CloudError {
156
+ error?: ErrorResponse;
157
+ }
158
+
159
+ // @public
160
+ export type CreatedByType = string;
161
+
162
+ // @public
163
+ export interface CreateTenantRequestBody {
164
+ countryCode?: string;
165
+ displayName?: string;
166
+ location: string;
167
+ sku: B2CResourceSKU;
168
+ tags?: {
169
+ [propertyName: string]: string;
170
+ };
171
+ }
172
+
173
+ // @public
174
+ export interface ErrorAdditionalInfo {
175
+ readonly info?: Record<string, unknown>;
176
+ readonly type?: string;
177
+ }
178
+
179
+ // @public
180
+ export interface ErrorResponse {
181
+ readonly additionalInfo?: ErrorAdditionalInfo[];
182
+ readonly code?: string;
183
+ readonly details?: ErrorResponse[];
184
+ readonly message?: string;
185
+ readonly target?: string;
186
+ }
187
+
188
+ // @public (undocumented)
189
+ export class ExternalIdentitiesConfigurationClient extends coreClient.ServiceClient {
190
+ // (undocumented)
191
+ $host: string;
192
+ constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: ExternalIdentitiesConfigurationClientOptionalParams);
193
+ // (undocumented)
194
+ apiVersion: string;
195
+ // (undocumented)
196
+ b2CTenants: B2CTenants;
197
+ // (undocumented)
198
+ guestUsages: GuestUsages;
199
+ // (undocumented)
200
+ operations: Operations;
201
+ // (undocumented)
202
+ subscriptionId: string;
203
+ }
204
+
205
+ // @public
206
+ export interface ExternalIdentitiesConfigurationClientOptionalParams extends coreClient.ServiceClientOptions {
207
+ $host?: string;
208
+ apiVersion?: string;
209
+ endpoint?: string;
210
+ }
211
+
212
+ // @public
213
+ export function getContinuationToken(page: unknown): string | undefined;
214
+
215
+ // @public
216
+ export interface GuestUsages {
217
+ create(resourceGroupName: string, resourceName: string, options?: GuestUsagesCreateOptionalParams): Promise<GuestUsagesCreateResponse>;
218
+ delete(resourceGroupName: string, resourceName: string, options?: GuestUsagesDeleteOptionalParams): Promise<void>;
219
+ get(resourceGroupName: string, resourceName: string, options?: GuestUsagesGetOptionalParams): Promise<GuestUsagesGetResponse>;
220
+ listByResourceGroup(resourceGroupName: string, options?: GuestUsagesListByResourceGroupOptionalParams): PagedAsyncIterableIterator<GuestUsagesResource>;
221
+ listBySubscription(options?: GuestUsagesListBySubscriptionOptionalParams): PagedAsyncIterableIterator<GuestUsagesResource>;
222
+ update(resourceGroupName: string, resourceName: string, options?: GuestUsagesUpdateOptionalParams): Promise<GuestUsagesUpdateResponse>;
223
+ }
224
+
225
+ // @public
226
+ export interface GuestUsagesCreateOptionalParams extends coreClient.OperationOptions {
227
+ resource?: GuestUsagesResource;
228
+ }
229
+
230
+ // @public
231
+ export type GuestUsagesCreateResponse = GuestUsagesResource;
232
+
233
+ // @public
234
+ export interface GuestUsagesDeleteOptionalParams extends coreClient.OperationOptions {
235
+ }
236
+
237
+ // @public
238
+ export interface GuestUsagesGetOptionalParams extends coreClient.OperationOptions {
239
+ }
240
+
241
+ // @public
242
+ export type GuestUsagesGetResponse = GuestUsagesResource;
243
+
244
+ // @public
245
+ export interface GuestUsagesListByResourceGroupOptionalParams extends coreClient.OperationOptions {
246
+ }
247
+
248
+ // @public
249
+ export type GuestUsagesListByResourceGroupResponse = GuestUsagesResourceList;
250
+
251
+ // @public
252
+ export interface GuestUsagesListBySubscriptionOptionalParams extends coreClient.OperationOptions {
253
+ }
254
+
255
+ // @public
256
+ export type GuestUsagesListBySubscriptionResponse = GuestUsagesResourceList;
257
+
258
+ // @public
259
+ export interface GuestUsagesResource {
260
+ readonly id?: string;
261
+ location?: string;
262
+ readonly name?: string;
263
+ readonly systemData?: SystemData;
264
+ tags?: {
265
+ [propertyName: string]: string;
266
+ };
267
+ tenantId?: string;
268
+ readonly type?: string;
269
+ }
270
+
271
+ // @public
272
+ export interface GuestUsagesResourceList {
273
+ readonly value?: GuestUsagesResource[];
274
+ }
275
+
276
+ // @public
277
+ export interface GuestUsagesResourcePatch {
278
+ tags?: {
279
+ [propertyName: string]: string;
280
+ };
281
+ }
282
+
283
+ // @public
284
+ export interface GuestUsagesUpdateOptionalParams extends coreClient.OperationOptions {
285
+ resourcePatch?: GuestUsagesResourcePatch;
286
+ }
287
+
288
+ // @public
289
+ export type GuestUsagesUpdateResponse = GuestUsagesResource;
290
+
291
+ // @public
292
+ export enum KnownB2CResourceSKUName {
293
+ PremiumP1 = "PremiumP1",
294
+ PremiumP2 = "PremiumP2",
295
+ Standard = "Standard"
296
+ }
297
+
298
+ // @public
299
+ export enum KnownB2CResourceSKUTier {
300
+ A0 = "A0"
301
+ }
302
+
303
+ // @public
304
+ export enum KnownBillingType {
305
+ Auths = "Auths",
306
+ MAU = "MAU"
307
+ }
308
+
309
+ // @public
310
+ export enum KnownCreatedByType {
311
+ Application = "Application",
312
+ Key = "Key",
313
+ ManagedIdentity = "ManagedIdentity",
314
+ User = "User"
315
+ }
316
+
317
+ // @public
318
+ export enum KnownNameAvailabilityReasonType {
319
+ AlreadyExists = "AlreadyExists",
320
+ Invalid = "Invalid"
321
+ }
322
+
323
+ // @public
324
+ export enum KnownTypeValue {
325
+ MicrosoftAzureActiveDirectoryB2CDirectories = "Microsoft.AzureActiveDirectory/b2cDirectories"
326
+ }
327
+
328
+ // @public
329
+ export type NameAvailabilityReasonType = string;
330
+
331
+ // @public
332
+ export interface NameAvailabilityResponse {
333
+ message?: string;
334
+ nameAvailable?: boolean;
335
+ reason?: NameAvailabilityReasonType;
336
+ }
337
+
338
+ // @public
339
+ export interface OperationDetail {
340
+ display?: OperationDisplay;
341
+ isDataAction?: boolean;
342
+ name?: string;
343
+ origin?: string;
344
+ }
345
+
346
+ // @public
347
+ export interface OperationDisplay {
348
+ description?: string;
349
+ operation?: string;
350
+ provider?: string;
351
+ resource?: string;
352
+ }
353
+
354
+ // @public
355
+ export interface Operations {
356
+ list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<OperationDetail>;
357
+ }
358
+
359
+ // @public
360
+ export interface OperationsListOptionalParams extends coreClient.OperationOptions {
361
+ }
362
+
363
+ // @public
364
+ export type OperationsListResponse = AvailableOperations;
365
+
366
+ // @public
367
+ export interface SystemData {
368
+ createdAt?: Date;
369
+ createdBy?: string;
370
+ createdByType?: CreatedByType;
371
+ lastModifiedAt?: Date;
372
+ lastModifiedBy?: string;
373
+ lastModifiedByType?: CreatedByType;
374
+ }
375
+
376
+ // @public
377
+ export type TypeValue = string;
378
+
379
+ // (No @packageDocumentation comment for this package)
380
+
381
+ ```