@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
@@ -1,464 +0,0 @@
1
- import { BaseResource, CloudError, AzureServiceClientOptions } from "@azure/ms-rest-azure-js";
2
- import * as msRest from "@azure/ms-rest-js";
3
- export { BaseResource, CloudError };
4
- /**
5
- * The resource model definition representing SKU
6
- */
7
- export interface Sku {
8
- /**
9
- * The name of the HealthBot SKU. Possible values include: 'F0', 'S1', 'C0'
10
- */
11
- name: SkuName;
12
- }
13
- /**
14
- * Read only system data
15
- */
16
- export interface SystemData {
17
- /**
18
- * The identity that created the resource.
19
- */
20
- createdBy?: string;
21
- /**
22
- * The type of identity that created the resource. Possible values include: 'User',
23
- * 'Application', 'ManagedIdentity', 'Key'
24
- */
25
- createdByType?: IdentityType;
26
- /**
27
- * The timestamp of resource creation (UTC)
28
- */
29
- createdAt?: Date;
30
- /**
31
- * The identity that last modified the resource.
32
- */
33
- lastModifiedBy?: string;
34
- /**
35
- * The type of identity that last modified the resource. Possible values include: 'User',
36
- * 'Application', 'ManagedIdentity', 'Key'
37
- */
38
- lastModifiedByType?: IdentityType;
39
- /**
40
- * The timestamp of resource last modification (UTC)
41
- */
42
- lastModifiedAt?: Date;
43
- }
44
- /**
45
- * The resource model definition for a ARM tracked top level resource
46
- */
47
- export interface Resource extends BaseResource {
48
- /**
49
- * Fully qualified resource Id for the resource.
50
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
51
- */
52
- readonly id?: string;
53
- /**
54
- * The name of the resource
55
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
56
- */
57
- readonly name?: string;
58
- /**
59
- * The type of the resource.
60
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
61
- */
62
- readonly type?: string;
63
- /**
64
- * Metadata pertaining to creation and last modification of the resource
65
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
66
- */
67
- readonly systemData?: SystemData;
68
- }
69
- /**
70
- * The resource model definition for a ARM tracked top level resource
71
- */
72
- export interface TrackedResource extends Resource {
73
- /**
74
- * Resource tags.
75
- */
76
- tags?: {
77
- [propertyName: string]: string;
78
- };
79
- /**
80
- * The geo-location where the resource lives
81
- */
82
- location: string;
83
- }
84
- /**
85
- * The properties of a HealthBot. The Health Bot Service is a cloud platform that empowers
86
- * developers in Healthcare organizations to build and deploy their compliant, AI-powered virtual
87
- * health assistants and health bots, that help them improve processes and reduce costs.
88
- * @summary HealthBotProperties
89
- */
90
- export interface HealthBotProperties {
91
- /**
92
- * The provisioning state of the Healthbot resource.
93
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
94
- */
95
- readonly provisioningState?: string;
96
- /**
97
- * The link.
98
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
99
- */
100
- readonly botManagementPortalLink?: string;
101
- }
102
- /**
103
- * HealthBot resource definition
104
- */
105
- export interface HealthBot extends TrackedResource {
106
- /**
107
- * SKU of the HealthBot.
108
- */
109
- sku: Sku;
110
- /**
111
- * The set of properties specific to Healthbot resource.
112
- */
113
- properties?: HealthBotProperties;
114
- }
115
- /**
116
- * Parameters for updating a HealthBot.
117
- */
118
- export interface HealthBotUpdateParameters {
119
- /**
120
- * Tags for a HealthBot.
121
- */
122
- tags?: {
123
- [propertyName: string]: string;
124
- };
125
- /**
126
- * SKU of the HealthBot.
127
- */
128
- sku?: Sku;
129
- }
130
- /**
131
- * The response returned from validation process
132
- * @summary ValidationResult
133
- */
134
- export interface ValidationResult {
135
- /**
136
- * The status code of the response validation.
137
- */
138
- status?: string;
139
- }
140
- /**
141
- * The resource management error additional info.
142
- */
143
- export interface ErrorAdditionalInfo {
144
- /**
145
- * The additional info type.
146
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
147
- */
148
- readonly type?: string;
149
- /**
150
- * The additional info.
151
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
152
- */
153
- readonly info?: any;
154
- }
155
- /**
156
- * The error object.
157
- */
158
- export interface ErrorError {
159
- /**
160
- * The error code.
161
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
162
- */
163
- readonly code?: string;
164
- /**
165
- * The error message.
166
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
167
- */
168
- readonly message?: string;
169
- /**
170
- * The error target.
171
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
172
- */
173
- readonly target?: string;
174
- /**
175
- * The error details.
176
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
177
- */
178
- readonly details?: ErrorModel[];
179
- /**
180
- * The error additional info.
181
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
182
- */
183
- readonly additionalInfo?: ErrorAdditionalInfo[];
184
- }
185
- /**
186
- * The resource management error response.
187
- */
188
- export interface ErrorModel {
189
- /**
190
- * The error object.
191
- */
192
- error?: ErrorError;
193
- }
194
- /**
195
- * Operation display payload
196
- */
197
- export interface OperationDisplay {
198
- /**
199
- * Resource provider of the operation
200
- */
201
- provider?: string;
202
- /**
203
- * Resource of the operation
204
- */
205
- resource?: string;
206
- /**
207
- * Localized friendly name for the operation
208
- */
209
- operation?: string;
210
- /**
211
- * Localized friendly description for the operation
212
- */
213
- description?: string;
214
- }
215
- /**
216
- * Operation detail payload
217
- */
218
- export interface OperationDetail {
219
- /**
220
- * Name of the operation
221
- */
222
- name?: string;
223
- /**
224
- * Indicates whether the operation is a data action
225
- */
226
- isDataAction?: boolean;
227
- /**
228
- * Display of the operation
229
- */
230
- display?: OperationDisplay;
231
- /**
232
- * Origin of the operation
233
- */
234
- origin?: string;
235
- /**
236
- * Additional properties.
237
- */
238
- properties?: any;
239
- }
240
- /**
241
- * An interface representing HealthbotClientOptions.
242
- */
243
- export interface HealthbotClientOptions extends AzureServiceClientOptions {
244
- baseUri?: string;
245
- }
246
- /**
247
- * @interface
248
- * The list of Healthbot operation response.
249
- * @extends Array<HealthBot>
250
- */
251
- export interface BotResponseList extends Array<HealthBot> {
252
- /**
253
- * The link used to get the next page of bot service resources.
254
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
255
- */
256
- readonly nextLink?: string;
257
- }
258
- /**
259
- * @interface
260
- * Available operations of the service
261
- * @extends Array<OperationDetail>
262
- */
263
- export interface AvailableOperations extends Array<OperationDetail> {
264
- /**
265
- * URL client should use to fetch the next page (per server side paging).
266
- * It's null for now, added for future use.
267
- */
268
- nextLink?: string;
269
- }
270
- /**
271
- * Defines values for SkuName.
272
- * Possible values include: 'F0', 'S1', 'C0'
273
- * @readonly
274
- * @enum {string}
275
- */
276
- export declare type SkuName = 'F0' | 'S1' | 'C0';
277
- /**
278
- * Defines values for IdentityType.
279
- * Possible values include: 'User', 'Application', 'ManagedIdentity', 'Key'
280
- * @readonly
281
- * @enum {string}
282
- */
283
- export declare type IdentityType = 'User' | 'Application' | 'ManagedIdentity' | 'Key';
284
- /**
285
- * Contains response data for the create operation.
286
- */
287
- export declare type BotsCreateResponse = HealthBot & {
288
- /**
289
- * The underlying HTTP response.
290
- */
291
- _response: msRest.HttpResponse & {
292
- /**
293
- * The response body as text (string format)
294
- */
295
- bodyAsText: string;
296
- /**
297
- * The response body as parsed JSON or XML
298
- */
299
- parsedBody: HealthBot;
300
- };
301
- };
302
- /**
303
- * Contains response data for the get operation.
304
- */
305
- export declare type BotsGetResponse = HealthBot & {
306
- /**
307
- * The underlying HTTP response.
308
- */
309
- _response: msRest.HttpResponse & {
310
- /**
311
- * The response body as text (string format)
312
- */
313
- bodyAsText: string;
314
- /**
315
- * The response body as parsed JSON or XML
316
- */
317
- parsedBody: HealthBot;
318
- };
319
- };
320
- /**
321
- * Contains response data for the update operation.
322
- */
323
- export declare type BotsUpdateResponse = HealthBot & {
324
- /**
325
- * The underlying HTTP response.
326
- */
327
- _response: msRest.HttpResponse & {
328
- /**
329
- * The response body as text (string format)
330
- */
331
- bodyAsText: string;
332
- /**
333
- * The response body as parsed JSON or XML
334
- */
335
- parsedBody: HealthBot;
336
- };
337
- };
338
- /**
339
- * Contains response data for the listByResourceGroup operation.
340
- */
341
- export declare type BotsListByResourceGroupResponse = BotResponseList & {
342
- /**
343
- * The underlying HTTP response.
344
- */
345
- _response: msRest.HttpResponse & {
346
- /**
347
- * The response body as text (string format)
348
- */
349
- bodyAsText: string;
350
- /**
351
- * The response body as parsed JSON or XML
352
- */
353
- parsedBody: BotResponseList;
354
- };
355
- };
356
- /**
357
- * Contains response data for the list operation.
358
- */
359
- export declare type BotsListResponse = BotResponseList & {
360
- /**
361
- * The underlying HTTP response.
362
- */
363
- _response: msRest.HttpResponse & {
364
- /**
365
- * The response body as text (string format)
366
- */
367
- bodyAsText: string;
368
- /**
369
- * The response body as parsed JSON or XML
370
- */
371
- parsedBody: BotResponseList;
372
- };
373
- };
374
- /**
375
- * Contains response data for the beginCreate operation.
376
- */
377
- export declare type BotsBeginCreateResponse = HealthBot & {
378
- /**
379
- * The underlying HTTP response.
380
- */
381
- _response: msRest.HttpResponse & {
382
- /**
383
- * The response body as text (string format)
384
- */
385
- bodyAsText: string;
386
- /**
387
- * The response body as parsed JSON or XML
388
- */
389
- parsedBody: HealthBot;
390
- };
391
- };
392
- /**
393
- * Contains response data for the listByResourceGroupNext operation.
394
- */
395
- export declare type BotsListByResourceGroupNextResponse = BotResponseList & {
396
- /**
397
- * The underlying HTTP response.
398
- */
399
- _response: msRest.HttpResponse & {
400
- /**
401
- * The response body as text (string format)
402
- */
403
- bodyAsText: string;
404
- /**
405
- * The response body as parsed JSON or XML
406
- */
407
- parsedBody: BotResponseList;
408
- };
409
- };
410
- /**
411
- * Contains response data for the listNext operation.
412
- */
413
- export declare type BotsListNextResponse = BotResponseList & {
414
- /**
415
- * The underlying HTTP response.
416
- */
417
- _response: msRest.HttpResponse & {
418
- /**
419
- * The response body as text (string format)
420
- */
421
- bodyAsText: string;
422
- /**
423
- * The response body as parsed JSON or XML
424
- */
425
- parsedBody: BotResponseList;
426
- };
427
- };
428
- /**
429
- * Contains response data for the list operation.
430
- */
431
- export declare type OperationsListResponse = AvailableOperations & {
432
- /**
433
- * The underlying HTTP response.
434
- */
435
- _response: msRest.HttpResponse & {
436
- /**
437
- * The response body as text (string format)
438
- */
439
- bodyAsText: string;
440
- /**
441
- * The response body as parsed JSON or XML
442
- */
443
- parsedBody: AvailableOperations;
444
- };
445
- };
446
- /**
447
- * Contains response data for the listNext operation.
448
- */
449
- export declare type OperationsListNextResponse = AvailableOperations & {
450
- /**
451
- * The underlying HTTP response.
452
- */
453
- _response: msRest.HttpResponse & {
454
- /**
455
- * The response body as text (string format)
456
- */
457
- bodyAsText: string;
458
- /**
459
- * The response body as parsed JSON or XML
460
- */
461
- parsedBody: AvailableOperations;
462
- };
463
- };
464
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":"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"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG"}
@@ -1,19 +0,0 @@
1
- import * as msRest from "@azure/ms-rest-js";
2
- export declare const CloudError: msRest.CompositeMapper;
3
- export declare const BaseResource: msRest.CompositeMapper;
4
- export declare const Sku: msRest.CompositeMapper;
5
- export declare const SystemData: msRest.CompositeMapper;
6
- export declare const Resource: msRest.CompositeMapper;
7
- export declare const TrackedResource: msRest.CompositeMapper;
8
- export declare const HealthBotProperties: msRest.CompositeMapper;
9
- export declare const HealthBot: msRest.CompositeMapper;
10
- export declare const HealthBotUpdateParameters: msRest.CompositeMapper;
11
- export declare const ValidationResult: msRest.CompositeMapper;
12
- export declare const ErrorAdditionalInfo: msRest.CompositeMapper;
13
- export declare const ErrorError: msRest.CompositeMapper;
14
- export declare const ErrorModel: msRest.CompositeMapper;
15
- export declare const OperationDisplay: msRest.CompositeMapper;
16
- export declare const OperationDetail: msRest.CompositeMapper;
17
- export declare const BotResponseList: msRest.CompositeMapper;
18
- export declare const AvailableOperations: msRest.CompositeMapper;
19
- //# sourceMappingURL=mappers.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"mappers.d.ts","sourceRoot":"","sources":["../../src/models/mappers.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,eAAO,MAAM,UAAU,wBAAmB,CAAC;AAC3C,eAAO,MAAM,YAAY,wBAAqB,CAAC;AAE/C,eAAO,MAAM,GAAG,EAAE,MAAM,CAAC,eAoBxB,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,MAAM,CAAC,eA4C/B,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,eAqC7B,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,MAAM,CAAC,eA2BpC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,MAAM,CAAC,eAsBxC,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,MAAM,CAAC,eAwB9B,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAAE,MAAM,CAAC,eA0B9C,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,MAAM,CAAC,eAcrC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,MAAM,CAAC,eAsBxC,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,MAAM,CAAC,eAuD/B,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,MAAM,CAAC,eAe/B,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,MAAM,CAAC,eAgCrC,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,MAAM,CAAC,eAuCpC,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,MAAM,CAAC,eA4BpC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,MAAM,CAAC,eA0BxC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"mappers.js","sourceRoot":"","sources":["../../src/models/mappers.ts"],"names":[],"mappings":"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"}
@@ -1,2 +0,0 @@
1
- export { AvailableOperations, ErrorAdditionalInfo, ErrorError, ErrorModel, OperationDetail, OperationDisplay } from "../models/mappers";
2
- //# sourceMappingURL=operationsMappers.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"operationsMappers.d.ts","sourceRoot":"","sources":["../../src/models/operationsMappers.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,mBAAmB,EACnB,mBAAmB,EACnB,UAAU,EACV,UAAU,EACV,eAAe,EACf,gBAAgB,EACjB,MAAM,mBAAmB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"operationsMappers.js","sourceRoot":"","sources":["../../src/models/operationsMappers.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EACL,mBAAmB,EACnB,mBAAmB,EACnB,UAAU,EACV,UAAU,EACV,eAAe,EACf,gBAAgB,EACjB,MAAM,mBAAmB,CAAC"}
@@ -1,8 +0,0 @@
1
- import * as msRest from "@azure/ms-rest-js";
2
- export declare const acceptLanguage: msRest.OperationParameter;
3
- export declare const apiVersion: msRest.OperationQueryParameter;
4
- export declare const botName: msRest.OperationURLParameter;
5
- export declare const nextPageLink: msRest.OperationURLParameter;
6
- export declare const resourceGroupName: msRest.OperationURLParameter;
7
- export declare const subscriptionId: msRest.OperationURLParameter;
8
- //# sourceMappingURL=parameters.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"parameters.d.ts","sourceRoot":"","sources":["../../src/models/parameters.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,kBASnC,CAAC;AACF,eAAO,MAAM,UAAU,EAAE,MAAM,CAAC,uBAS/B,CAAC;AACF,eAAO,MAAM,OAAO,EAAE,MAAM,CAAC,qBAc5B,CAAC;AACF,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,qBAUjC,CAAC;AACF,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,qBActC,CAAC;AACF,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,qBASnC,CAAC"}
@@ -1,80 +0,0 @@
1
- /*
2
- * Copyright (c) Microsoft Corporation.
3
- * Licensed under the MIT License.
4
- *
5
- * Code generated by Microsoft (R) AutoRest Code Generator.
6
- * Changes may cause incorrect behavior and will be lost if the code is
7
- * regenerated.
8
- */
9
- export var acceptLanguage = {
10
- parameterPath: "acceptLanguage",
11
- mapper: {
12
- serializedName: "accept-language",
13
- defaultValue: 'en-US',
14
- type: {
15
- name: "String"
16
- }
17
- }
18
- };
19
- export var apiVersion = {
20
- parameterPath: "apiVersion",
21
- mapper: {
22
- required: true,
23
- serializedName: "api-version",
24
- type: {
25
- name: "String"
26
- }
27
- }
28
- };
29
- export var botName = {
30
- parameterPath: "botName",
31
- mapper: {
32
- required: true,
33
- serializedName: "botName",
34
- constraints: {
35
- MaxLength: 64,
36
- MinLength: 2,
37
- Pattern: /^[a-zA-Z0-9][a-zA-Z0-9_.-]*$/
38
- },
39
- type: {
40
- name: "String"
41
- }
42
- }
43
- };
44
- export var nextPageLink = {
45
- parameterPath: "nextPageLink",
46
- mapper: {
47
- required: true,
48
- serializedName: "nextLink",
49
- type: {
50
- name: "String"
51
- }
52
- },
53
- skipEncoding: true
54
- };
55
- export var resourceGroupName = {
56
- parameterPath: "resourceGroupName",
57
- mapper: {
58
- required: true,
59
- serializedName: "resourceGroupName",
60
- constraints: {
61
- MaxLength: 64,
62
- MinLength: 2,
63
- Pattern: /^[a-zA-Z0-9][a-zA-Z0-9_.-]*$/
64
- },
65
- type: {
66
- name: "String"
67
- }
68
- }
69
- };
70
- export var subscriptionId = {
71
- parameterPath: "subscriptionId",
72
- mapper: {
73
- required: true,
74
- serializedName: "subscriptionId",
75
- type: {
76
- name: "String"
77
- }
78
- }
79
- };
80
- //# sourceMappingURL=parameters.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"parameters.js","sourceRoot":"","sources":["../../src/models/parameters.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAIH,MAAM,CAAC,IAAM,cAAc,GAA8B;IACvD,aAAa,EAAE,gBAAgB;IAC/B,MAAM,EAAE;QACN,cAAc,EAAE,iBAAiB;QACjC,YAAY,EAAE,OAAO;QACrB,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,UAAU,GAAmC;IACxD,aAAa,EAAE,YAAY;IAC3B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,aAAa;QAC7B,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,OAAO,GAAiC;IACnD,aAAa,EAAE,SAAS;IACxB,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,SAAS;QACzB,WAAW,EAAE;YACX,SAAS,EAAE,EAAE;YACb,SAAS,EAAE,CAAC;YACZ,OAAO,EAAE,8BAA8B;SACxC;QACD,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,YAAY,GAAiC;IACxD,aAAa,EAAE,cAAc;IAC7B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,UAAU;QAC1B,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;IACD,YAAY,EAAE,IAAI;CACnB,CAAC;AACF,MAAM,CAAC,IAAM,iBAAiB,GAAiC;IAC7D,aAAa,EAAE,mBAAmB;IAClC,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,mBAAmB;QACnC,WAAW,EAAE;YACX,SAAS,EAAE,EAAE;YACb,SAAS,EAAE,CAAC;YACZ,OAAO,EAAE,8BAA8B;SACxC;QACD,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AACF,MAAM,CAAC,IAAM,cAAc,GAAiC;IAC1D,aAAa,EAAE,gBAAgB;IAC/B,MAAM,EAAE;QACN,QAAQ,EAAE,IAAI;QACd,cAAc,EAAE,gBAAgB;QAChC,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC"}