@azure/arm-healthbot 1.1.1 → 2.0.1-alpha.20220131.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 (118) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/LICENSE +21 -0
  3. package/README.md +69 -83
  4. package/dist/index.js +1301 -0
  5. package/dist/index.js.map +1 -0
  6. package/dist/index.min.js +1 -0
  7. package/dist/index.min.js.map +1 -0
  8. package/dist-esm/src/healthbotClient.d.ts +19 -0
  9. package/dist-esm/src/healthbotClient.d.ts.map +1 -0
  10. package/dist-esm/src/healthbotClient.js +52 -0
  11. package/dist-esm/src/healthbotClient.js.map +1 -0
  12. package/dist-esm/src/index.d.ts +5 -0
  13. package/dist-esm/src/index.d.ts.map +1 -0
  14. package/dist-esm/src/index.js +12 -0
  15. package/dist-esm/src/index.js.map +1 -0
  16. package/dist-esm/src/lroImpl.d.ts +16 -0
  17. package/dist-esm/src/lroImpl.d.ts.map +1 -0
  18. package/dist-esm/src/lroImpl.js +29 -0
  19. package/dist-esm/src/lroImpl.js.map +1 -0
  20. package/dist-esm/src/models/index.d.ts +309 -0
  21. package/dist-esm/src/models/index.d.ts.map +1 -0
  22. package/dist-esm/src/models/index.js +16 -0
  23. package/dist-esm/src/models/index.js.map +1 -0
  24. package/dist-esm/src/models/mappers.d.ts +19 -0
  25. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  26. package/{esm → dist-esm/src}/models/mappers.js +252 -199
  27. package/dist-esm/src/models/mappers.js.map +1 -0
  28. package/dist-esm/src/models/parameters.d.ts +12 -0
  29. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  30. package/dist-esm/src/models/parameters.js +112 -0
  31. package/dist-esm/src/models/parameters.js.map +1 -0
  32. package/dist-esm/src/operations/bots.d.ts +99 -0
  33. package/dist-esm/src/operations/bots.d.ts.map +1 -0
  34. package/dist-esm/src/operations/bots.js +454 -0
  35. package/dist-esm/src/operations/bots.js.map +1 -0
  36. package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
  37. package/dist-esm/src/operations/index.d.ts.map +1 -0
  38. package/{esm → dist-esm/src}/operations/index.js +1 -2
  39. package/dist-esm/src/operations/index.js.map +1 -0
  40. package/dist-esm/src/operations/operations.d.ts +32 -0
  41. package/dist-esm/src/operations/operations.d.ts.map +1 -0
  42. package/dist-esm/src/operations/operations.js +120 -0
  43. package/dist-esm/src/operations/operations.js.map +1 -0
  44. package/dist-esm/src/operationsInterfaces/bots.d.ts +63 -0
  45. package/dist-esm/src/operationsInterfaces/bots.d.ts.map +1 -0
  46. package/{esm/models/index.js → dist-esm/src/operationsInterfaces/bots.js} +2 -1
  47. package/dist-esm/src/operationsInterfaces/bots.js.map +1 -0
  48. package/dist-esm/src/operationsInterfaces/index.d.ts +3 -0
  49. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  50. package/{esm/models/operationsMappers.js → dist-esm/src/operationsInterfaces/index.js} +3 -2
  51. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  52. package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
  53. package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
  54. package/dist-esm/src/operationsInterfaces/operations.js +9 -0
  55. package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
  56. package/dist-esm/test/sampleTest.d.ts +2 -0
  57. package/dist-esm/test/sampleTest.d.ts.map +1 -0
  58. package/dist-esm/test/sampleTest.js +40 -0
  59. package/dist-esm/test/sampleTest.js.map +1 -0
  60. package/package.json +65 -22
  61. package/review/arm-healthbot.api.md +271 -0
  62. package/rollup.config.js +181 -30
  63. package/src/healthbotClient.ts +62 -34
  64. package/src/index.ts +12 -0
  65. package/src/lroImpl.ts +34 -0
  66. package/src/models/index.ts +239 -394
  67. package/src/models/mappers.ts +260 -204
  68. package/src/models/parameters.ts +81 -33
  69. package/src/operations/bots.ts +424 -322
  70. package/src/operations/index.ts +1 -2
  71. package/src/operations/operations.ts +87 -75
  72. package/src/operationsInterfaces/bots.ts +116 -0
  73. package/src/{models/operationsMappers.ts → operationsInterfaces/index.ts} +2 -8
  74. package/src/operationsInterfaces/operations.ts +22 -0
  75. package/tsconfig.json +3 -3
  76. package/types/arm-healthbot.d.ts +439 -0
  77. package/types/tsdoc-metadata.json +11 -0
  78. package/dist/arm-healthbot.js +0 -1143
  79. package/dist/arm-healthbot.js.map +0 -1
  80. package/dist/arm-healthbot.min.js +0 -1
  81. package/dist/arm-healthbot.min.js.map +0 -1
  82. package/esm/healthbotClient.d.ts +0 -25
  83. package/esm/healthbotClient.d.ts.map +0 -1
  84. package/esm/healthbotClient.js +0 -38
  85. package/esm/healthbotClient.js.map +0 -1
  86. package/esm/healthbotClientContext.d.ts +0 -22
  87. package/esm/healthbotClientContext.d.ts.map +0 -1
  88. package/esm/healthbotClientContext.js +0 -60
  89. package/esm/healthbotClientContext.js.map +0 -1
  90. package/esm/models/botsMappers.d.ts +0 -2
  91. package/esm/models/botsMappers.d.ts.map +0 -1
  92. package/esm/models/botsMappers.js +0 -9
  93. package/esm/models/botsMappers.js.map +0 -1
  94. package/esm/models/index.d.ts +0 -464
  95. package/esm/models/index.d.ts.map +0 -1
  96. package/esm/models/index.js.map +0 -1
  97. package/esm/models/mappers.d.ts +0 -19
  98. package/esm/models/mappers.d.ts.map +0 -1
  99. package/esm/models/mappers.js.map +0 -1
  100. package/esm/models/operationsMappers.d.ts +0 -2
  101. package/esm/models/operationsMappers.d.ts.map +0 -1
  102. package/esm/models/operationsMappers.js.map +0 -1
  103. package/esm/models/parameters.d.ts +0 -8
  104. package/esm/models/parameters.d.ts.map +0 -1
  105. package/esm/models/parameters.js +0 -80
  106. package/esm/models/parameters.js.map +0 -1
  107. package/esm/operations/bots.d.ts +0 -162
  108. package/esm/operations/bots.d.ts.map +0 -1
  109. package/esm/operations/bots.js +0 -319
  110. package/esm/operations/bots.js.map +0 -1
  111. package/esm/operations/index.d.ts.map +0 -1
  112. package/esm/operations/index.js.map +0 -1
  113. package/esm/operations/operations.d.ts +0 -46
  114. package/esm/operations/operations.d.ts.map +0 -1
  115. package/esm/operations/operations.js +0 -79
  116. package/esm/operations/operations.js.map +0 -1
  117. package/src/healthbotClientContext.ts +0 -67
  118. package/src/models/botsMappers.ts +0 -22
@@ -0,0 +1,439 @@
1
+ import * as coreAuth from '@azure/core-auth';
2
+ import * as coreClient from '@azure/core-client';
3
+ import { PagedAsyncIterableIterator } from '@azure/core-paging';
4
+ import { PollerLike } from '@azure/core-lro';
5
+ import { PollOperationState } from '@azure/core-lro';
6
+
7
+ /** Available operations of the service */
8
+ export declare interface AvailableOperations {
9
+ /** Collection of available operation details */
10
+ value?: OperationDetail[];
11
+ /**
12
+ * URL client should use to fetch the next page (per server side paging).
13
+ * It's null for now, added for future use.
14
+ */
15
+ nextLink?: string;
16
+ }
17
+
18
+ /** The list of Azure Health Bot operation response. */
19
+ export declare interface BotResponseList {
20
+ /**
21
+ * The link used to get the next page of bot service resources.
22
+ * NOTE: This property will not be serialized. It can only be populated by the server.
23
+ */
24
+ readonly nextLink?: string;
25
+ /**
26
+ * Gets the list of Azure Health Bot results and their properties.
27
+ * NOTE: This property will not be serialized. It can only be populated by the server.
28
+ */
29
+ readonly value?: HealthBot[];
30
+ }
31
+
32
+ /** Interface representing a Bots. */
33
+ export declare interface Bots {
34
+ /**
35
+ * Returns all the resources of a particular type belonging to a resource group
36
+ * @param resourceGroupName The name of the Bot resource group in the user subscription.
37
+ * @param options The options parameters.
38
+ */
39
+ listByResourceGroup(resourceGroupName: string, options?: BotsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<HealthBot>;
40
+ /**
41
+ * Returns all the resources of a particular type belonging to a subscription.
42
+ * @param options The options parameters.
43
+ */
44
+ list(options?: BotsListOptionalParams): PagedAsyncIterableIterator<HealthBot>;
45
+ /**
46
+ * Create a new Azure Health Bot.
47
+ * @param resourceGroupName The name of the Bot resource group in the user subscription.
48
+ * @param botName The name of the Bot resource.
49
+ * @param parameters The parameters to provide for the created Azure Health Bot.
50
+ * @param options The options parameters.
51
+ */
52
+ beginCreate(resourceGroupName: string, botName: string, parameters: HealthBot, options?: BotsCreateOptionalParams): Promise<PollerLike<PollOperationState<BotsCreateResponse>, BotsCreateResponse>>;
53
+ /**
54
+ * Create a new Azure Health Bot.
55
+ * @param resourceGroupName The name of the Bot resource group in the user subscription.
56
+ * @param botName The name of the Bot resource.
57
+ * @param parameters The parameters to provide for the created Azure Health Bot.
58
+ * @param options The options parameters.
59
+ */
60
+ beginCreateAndWait(resourceGroupName: string, botName: string, parameters: HealthBot, options?: BotsCreateOptionalParams): Promise<BotsCreateResponse>;
61
+ /**
62
+ * Get a HealthBot.
63
+ * @param resourceGroupName The name of the Bot resource group in the user subscription.
64
+ * @param botName The name of the Bot resource.
65
+ * @param options The options parameters.
66
+ */
67
+ get(resourceGroupName: string, botName: string, options?: BotsGetOptionalParams): Promise<BotsGetResponse>;
68
+ /**
69
+ * Patch a HealthBot.
70
+ * @param resourceGroupName The name of the Bot resource group in the user subscription.
71
+ * @param botName The name of the Bot resource.
72
+ * @param parameters The parameters to provide for the required Azure Health Bot.
73
+ * @param options The options parameters.
74
+ */
75
+ update(resourceGroupName: string, botName: string, parameters: HealthBotUpdateParameters, options?: BotsUpdateOptionalParams): Promise<BotsUpdateResponse>;
76
+ /**
77
+ * Delete a HealthBot.
78
+ * @param resourceGroupName The name of the Bot resource group in the user subscription.
79
+ * @param botName The name of the Bot resource.
80
+ * @param options The options parameters.
81
+ */
82
+ beginDelete(resourceGroupName: string, botName: string, options?: BotsDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
83
+ /**
84
+ * Delete a HealthBot.
85
+ * @param resourceGroupName The name of the Bot resource group in the user subscription.
86
+ * @param botName The name of the Bot resource.
87
+ * @param options The options parameters.
88
+ */
89
+ beginDeleteAndWait(resourceGroupName: string, botName: string, options?: BotsDeleteOptionalParams): Promise<void>;
90
+ }
91
+
92
+ /** Optional parameters. */
93
+ export declare interface BotsCreateOptionalParams extends coreClient.OperationOptions {
94
+ /** Delay to wait until next poll, in milliseconds. */
95
+ updateIntervalInMs?: number;
96
+ /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
97
+ resumeFrom?: string;
98
+ }
99
+
100
+ /** Contains response data for the create operation. */
101
+ export declare type BotsCreateResponse = HealthBot;
102
+
103
+ /** Optional parameters. */
104
+ export declare interface BotsDeleteOptionalParams extends coreClient.OperationOptions {
105
+ /** Delay to wait until next poll, in milliseconds. */
106
+ updateIntervalInMs?: number;
107
+ /** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
108
+ resumeFrom?: string;
109
+ }
110
+
111
+ /** Optional parameters. */
112
+ export declare interface BotsGetOptionalParams extends coreClient.OperationOptions {
113
+ }
114
+
115
+ /** Contains response data for the get operation. */
116
+ export declare type BotsGetResponse = HealthBot;
117
+
118
+ /** Optional parameters. */
119
+ export declare interface BotsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
120
+ }
121
+
122
+ /** Contains response data for the listByResourceGroupNext operation. */
123
+ export declare type BotsListByResourceGroupNextResponse = BotResponseList;
124
+
125
+ /** Optional parameters. */
126
+ export declare interface BotsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
127
+ }
128
+
129
+ /** Contains response data for the listByResourceGroup operation. */
130
+ export declare type BotsListByResourceGroupResponse = BotResponseList;
131
+
132
+ /** Optional parameters. */
133
+ export declare interface BotsListNextOptionalParams extends coreClient.OperationOptions {
134
+ }
135
+
136
+ /** Contains response data for the listNext operation. */
137
+ export declare type BotsListNextResponse = BotResponseList;
138
+
139
+ /** Optional parameters. */
140
+ export declare interface BotsListOptionalParams extends coreClient.OperationOptions {
141
+ }
142
+
143
+ /** Contains response data for the list operation. */
144
+ export declare type BotsListResponse = BotResponseList;
145
+
146
+ /** Optional parameters. */
147
+ export declare interface BotsUpdateOptionalParams extends coreClient.OperationOptions {
148
+ }
149
+
150
+ /** Contains response data for the update operation. */
151
+ export declare type BotsUpdateResponse = HealthBot;
152
+
153
+ /** The resource management error additional info. */
154
+ export declare interface ErrorAdditionalInfo {
155
+ /**
156
+ * The additional info type.
157
+ * NOTE: This property will not be serialized. It can only be populated by the server.
158
+ */
159
+ readonly type?: string;
160
+ /**
161
+ * The additional info.
162
+ * NOTE: This property will not be serialized. It can only be populated by the server.
163
+ */
164
+ readonly info?: Record<string, unknown>;
165
+ }
166
+
167
+ /** The error object. */
168
+ export declare interface ErrorError {
169
+ /**
170
+ * The error code.
171
+ * NOTE: This property will not be serialized. It can only be populated by the server.
172
+ */
173
+ readonly code?: string;
174
+ /**
175
+ * The error message.
176
+ * NOTE: This property will not be serialized. It can only be populated by the server.
177
+ */
178
+ readonly message?: string;
179
+ /**
180
+ * The error target.
181
+ * NOTE: This property will not be serialized. It can only be populated by the server.
182
+ */
183
+ readonly target?: string;
184
+ /**
185
+ * The error details.
186
+ * NOTE: This property will not be serialized. It can only be populated by the server.
187
+ */
188
+ readonly details?: ErrorModel[];
189
+ /**
190
+ * The error additional info.
191
+ * NOTE: This property will not be serialized. It can only be populated by the server.
192
+ */
193
+ readonly additionalInfo?: ErrorAdditionalInfo[];
194
+ }
195
+
196
+ /** The resource management error response. */
197
+ export declare interface ErrorModel {
198
+ /** The error object. */
199
+ error?: ErrorError;
200
+ }
201
+
202
+ /** Azure Health Bot resource definition */
203
+ export declare type HealthBot = TrackedResource & {
204
+ /** SKU of the Azure Health Bot. */
205
+ sku: Sku;
206
+ /** The identity of the Azure Health Bot. */
207
+ identity?: Identity;
208
+ /** The set of properties specific to Azure Health Bot resource. */
209
+ properties?: HealthBotProperties;
210
+ };
211
+
212
+ export declare class HealthbotClient extends coreClient.ServiceClient {
213
+ $host: string;
214
+ subscriptionId: string;
215
+ apiVersion: string;
216
+ /**
217
+ * Initializes a new instance of the HealthbotClient class.
218
+ * @param credentials Subscription credentials which uniquely identify client subscription.
219
+ * @param subscriptionId Azure Subscription ID.
220
+ * @param options The parameter options
221
+ */
222
+ constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: HealthbotClientOptionalParams);
223
+ bots: Bots;
224
+ operations: Operations;
225
+ }
226
+
227
+ /** Optional parameters. */
228
+ export declare interface HealthbotClientOptionalParams extends coreClient.ServiceClientOptions {
229
+ /** server parameter */
230
+ $host?: string;
231
+ /** Api Version */
232
+ apiVersion?: string;
233
+ /** Overrides client endpoint. */
234
+ endpoint?: string;
235
+ }
236
+
237
+ /** The properties of a Azure Health Bot. The Health Bot Service is a cloud platform that empowers developers in Healthcare organizations to build and deploy their compliant, AI-powered virtual health assistants and health bots, that help them improve processes and reduce costs. */
238
+ export declare interface HealthBotProperties {
239
+ /**
240
+ * The provisioning state of the Azure Health Bot resource.
241
+ * NOTE: This property will not be serialized. It can only be populated by the server.
242
+ */
243
+ readonly provisioningState?: string;
244
+ /**
245
+ * The link.
246
+ * NOTE: This property will not be serialized. It can only be populated by the server.
247
+ */
248
+ readonly botManagementPortalLink?: string;
249
+ }
250
+
251
+ /** Parameters for updating a Azure Health Bot. */
252
+ export declare interface HealthBotUpdateParameters {
253
+ /** Tags for a Azure Health Bot. */
254
+ tags?: {
255
+ [propertyName: string]: string;
256
+ };
257
+ /** SKU of the Azure Health Bot. */
258
+ sku?: Sku;
259
+ /** The identity of the Azure Health Bot. */
260
+ identity?: Identity;
261
+ location?: string;
262
+ }
263
+
264
+ /** Identity for the resource. */
265
+ export declare interface Identity {
266
+ /**
267
+ * The principal ID of resource identity. This property will only be provided for a system assigned identity.
268
+ * NOTE: This property will not be serialized. It can only be populated by the server.
269
+ */
270
+ readonly principalId?: string;
271
+ /**
272
+ * The tenant ID of resource. This property will only be provided for a system assigned identity.
273
+ * NOTE: This property will not be serialized. It can only be populated by the server.
274
+ */
275
+ readonly tenantId?: string;
276
+ /** The identity type. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user assigned identities. The type 'None' will remove any identities from the Azure Health Bot */
277
+ type?: ResourceIdentityType;
278
+ /**
279
+ * The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form:
280
+ * '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
281
+ *
282
+ */
283
+ userAssignedIdentities?: {
284
+ [propertyName: string]: UserAssignedIdentity;
285
+ };
286
+ }
287
+
288
+ /**
289
+ * Defines values for IdentityType. \
290
+ * {@link KnownIdentityType} can be used interchangeably with IdentityType,
291
+ * this enum contains the known values that the service supports.
292
+ * ### Known values supported by the service
293
+ * **User** \
294
+ * **Application** \
295
+ * **ManagedIdentity** \
296
+ * **Key**
297
+ */
298
+ export declare type IdentityType = string;
299
+
300
+ /** Known values of {@link IdentityType} that the service accepts. */
301
+ export declare enum KnownIdentityType {
302
+ User = "User",
303
+ Application = "Application",
304
+ ManagedIdentity = "ManagedIdentity",
305
+ Key = "Key"
306
+ }
307
+
308
+ /** Operation detail payload */
309
+ export declare interface OperationDetail {
310
+ /** Name of the operation */
311
+ name?: string;
312
+ /** Indicates whether the operation is a data action */
313
+ isDataAction?: boolean;
314
+ /** Display of the operation */
315
+ display?: OperationDisplay;
316
+ /** Origin of the operation */
317
+ origin?: string;
318
+ /** Additional properties. */
319
+ properties?: Record<string, unknown>;
320
+ }
321
+
322
+ /** Operation display payload */
323
+ export declare interface OperationDisplay {
324
+ /** Resource provider of the operation */
325
+ provider?: string;
326
+ /** Resource of the operation */
327
+ resource?: string;
328
+ /** Localized friendly name for the operation */
329
+ operation?: string;
330
+ /** Localized friendly description for the operation */
331
+ description?: string;
332
+ }
333
+
334
+ /** Interface representing a Operations. */
335
+ export declare interface Operations {
336
+ /**
337
+ * Lists all the available Azure Health Bot operations.
338
+ * @param options The options parameters.
339
+ */
340
+ list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<OperationDetail>;
341
+ }
342
+
343
+ /** Optional parameters. */
344
+ export declare interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
345
+ }
346
+
347
+ /** Contains response data for the listNext operation. */
348
+ export declare type OperationsListNextResponse = AvailableOperations;
349
+
350
+ /** Optional parameters. */
351
+ export declare interface OperationsListOptionalParams extends coreClient.OperationOptions {
352
+ }
353
+
354
+ /** Contains response data for the list operation. */
355
+ export declare type OperationsListResponse = AvailableOperations;
356
+
357
+ /** The resource model definition for a ARM tracked top level resource */
358
+ export declare interface Resource {
359
+ /**
360
+ * Fully qualified resource Id for the resource.
361
+ * NOTE: This property will not be serialized. It can only be populated by the server.
362
+ */
363
+ readonly id?: string;
364
+ /**
365
+ * The name of the resource
366
+ * NOTE: This property will not be serialized. It can only be populated by the server.
367
+ */
368
+ readonly name?: string;
369
+ /**
370
+ * The type of the resource.
371
+ * NOTE: This property will not be serialized. It can only be populated by the server.
372
+ */
373
+ readonly type?: string;
374
+ /**
375
+ * Metadata pertaining to creation and last modification of the resource
376
+ * NOTE: This property will not be serialized. It can only be populated by the server.
377
+ */
378
+ readonly systemData?: SystemData;
379
+ }
380
+
381
+ /** Defines values for ResourceIdentityType. */
382
+ export declare type ResourceIdentityType = "SystemAssigned" | "UserAssigned" | "SystemAssigned, UserAssigned" | "None";
383
+
384
+ /** The resource model definition representing SKU */
385
+ export declare interface Sku {
386
+ /** The name of the Azure Health Bot SKU */
387
+ name: SkuName;
388
+ }
389
+
390
+ /** Defines values for SkuName. */
391
+ export declare type SkuName = "F0" | "S1" | "C0";
392
+
393
+ /** Read only system data */
394
+ export declare interface SystemData {
395
+ /** The identity that created the resource. */
396
+ createdBy?: string;
397
+ /** The type of identity that created the resource */
398
+ createdByType?: IdentityType;
399
+ /** The timestamp of resource creation (UTC) */
400
+ createdAt?: Date;
401
+ /** The identity that last modified the resource. */
402
+ lastModifiedBy?: string;
403
+ /** The type of identity that last modified the resource */
404
+ lastModifiedByType?: IdentityType;
405
+ /** The timestamp of resource last modification (UTC) */
406
+ lastModifiedAt?: Date;
407
+ }
408
+
409
+ /** The resource model definition for a ARM tracked top level resource */
410
+ export declare type TrackedResource = Resource & {
411
+ /** Resource tags. */
412
+ tags?: {
413
+ [propertyName: string]: string;
414
+ };
415
+ /** The geo-location where the resource lives */
416
+ location: string;
417
+ };
418
+
419
+ /** The details of the user assigned managed identity used by the Video Analyzer resource. */
420
+ export declare interface UserAssignedIdentity {
421
+ /**
422
+ * The principal ID of user assigned identity.
423
+ * NOTE: This property will not be serialized. It can only be populated by the server.
424
+ */
425
+ readonly principalId?: string;
426
+ /**
427
+ * The client ID of user assigned identity.
428
+ * NOTE: This property will not be serialized. It can only be populated by the server.
429
+ */
430
+ readonly clientId?: string;
431
+ }
432
+
433
+ /** The response returned from validation process */
434
+ export declare interface ValidationResult {
435
+ /** The status code of the response validation. */
436
+ status?: string;
437
+ }
438
+
439
+ export { }
@@ -0,0 +1,11 @@
1
+ // This file is read by tools that parse documentation comments conforming to the TSDoc standard.
2
+ // It should be published with your NPM package. It should not be tracked by Git.
3
+ {
4
+ "tsdocVersion": "0.12",
5
+ "toolPackages": [
6
+ {
7
+ "packageName": "@microsoft/api-extractor",
8
+ "packageVersion": "7.19.4"
9
+ }
10
+ ]
11
+ }