@azure/arm-healthbot 1.0.0 → 2.0.1-alpha.20220113.4

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 +70 -74
  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 -21
  61. package/review/arm-healthbot.api.md +271 -0
  62. package/rollup.config.js +181 -30
  63. package/src/healthbotClient.ts +62 -28
  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 -1133
  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 -19
  83. package/esm/healthbotClient.d.ts.map +0 -1
  84. package/esm/healthbotClient.js +0 -33
  85. package/esm/healthbotClient.js.map +0 -1
  86. package/esm/healthbotClientContext.d.ts +0 -16
  87. package/esm/healthbotClientContext.d.ts.map +0 -1
  88. package/esm/healthbotClientContext.js +0 -55
  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 -61
  118. package/src/models/botsMappers.ts +0 -22
@@ -5,105 +5,136 @@
5
5
  * Code generated by Microsoft (R) AutoRest Code Generator.
6
6
  * Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
7
  */
8
- import { __assign } from "tslib";
9
- import { CloudErrorMapper, BaseResourceMapper } from "@azure/ms-rest-azure-js";
10
- export var CloudError = CloudErrorMapper;
11
- export var BaseResource = BaseResourceMapper;
12
- export var Sku = {
13
- serializedName: "Sku",
8
+ export const Sku = {
14
9
  type: {
15
10
  name: "Composite",
16
11
  className: "Sku",
17
12
  modelProperties: {
18
13
  name: {
19
- required: true,
20
14
  serializedName: "name",
15
+ required: true,
21
16
  type: {
22
17
  name: "Enum",
23
- allowedValues: [
24
- "F0",
25
- "S1",
26
- "C0"
27
- ]
18
+ allowedValues: ["F0", "S1", "C0"]
28
19
  }
29
20
  }
30
21
  }
31
22
  }
32
23
  };
33
- export var SystemData = {
34
- serializedName: "SystemData",
24
+ export const Identity = {
35
25
  type: {
36
26
  name: "Composite",
37
- className: "SystemData",
27
+ className: "Identity",
38
28
  modelProperties: {
39
- createdBy: {
40
- serializedName: "createdBy",
29
+ principalId: {
30
+ serializedName: "principalId",
31
+ readOnly: true,
41
32
  type: {
42
33
  name: "String"
43
34
  }
44
35
  },
45
- createdByType: {
46
- serializedName: "createdByType",
36
+ tenantId: {
37
+ serializedName: "tenantId",
38
+ readOnly: true,
47
39
  type: {
48
40
  name: "String"
49
41
  }
50
42
  },
51
- createdAt: {
52
- serializedName: "createdAt",
43
+ type: {
44
+ serializedName: "type",
53
45
  type: {
54
- name: "DateTime"
46
+ name: "Enum",
47
+ allowedValues: [
48
+ "SystemAssigned",
49
+ "UserAssigned",
50
+ "SystemAssigned, UserAssigned",
51
+ "None"
52
+ ]
55
53
  }
56
54
  },
57
- lastModifiedBy: {
58
- serializedName: "lastModifiedBy",
55
+ userAssignedIdentities: {
56
+ serializedName: "userAssignedIdentities",
57
+ type: {
58
+ name: "Dictionary",
59
+ value: {
60
+ type: { name: "Composite", className: "UserAssignedIdentity" }
61
+ }
62
+ }
63
+ }
64
+ }
65
+ }
66
+ };
67
+ export const UserAssignedIdentity = {
68
+ type: {
69
+ name: "Composite",
70
+ className: "UserAssignedIdentity",
71
+ modelProperties: {
72
+ principalId: {
73
+ serializedName: "principalId",
74
+ readOnly: true,
59
75
  type: {
60
76
  name: "String"
61
77
  }
62
78
  },
63
- lastModifiedByType: {
64
- serializedName: "lastModifiedByType",
79
+ clientId: {
80
+ serializedName: "clientId",
81
+ readOnly: true,
82
+ type: {
83
+ name: "String"
84
+ }
85
+ }
86
+ }
87
+ }
88
+ };
89
+ export const HealthBotProperties = {
90
+ type: {
91
+ name: "Composite",
92
+ className: "HealthBotProperties",
93
+ modelProperties: {
94
+ provisioningState: {
95
+ serializedName: "provisioningState",
96
+ readOnly: true,
65
97
  type: {
66
98
  name: "String"
67
99
  }
68
100
  },
69
- lastModifiedAt: {
70
- serializedName: "lastModifiedAt",
101
+ botManagementPortalLink: {
102
+ serializedName: "botManagementPortalLink",
103
+ readOnly: true,
71
104
  type: {
72
- name: "DateTime"
105
+ name: "String"
73
106
  }
74
107
  }
75
108
  }
76
109
  }
77
110
  };
78
- export var Resource = {
79
- serializedName: "Resource",
111
+ export const Resource = {
80
112
  type: {
81
113
  name: "Composite",
82
114
  className: "Resource",
83
115
  modelProperties: {
84
116
  id: {
85
- readOnly: true,
86
117
  serializedName: "id",
118
+ readOnly: true,
87
119
  type: {
88
120
  name: "String"
89
121
  }
90
122
  },
91
123
  name: {
92
- readOnly: true,
93
124
  serializedName: "name",
125
+ readOnly: true,
94
126
  type: {
95
127
  name: "String"
96
128
  }
97
129
  },
98
130
  type: {
99
- readOnly: true,
100
131
  serializedName: "type",
132
+ readOnly: true,
101
133
  type: {
102
134
  name: "String"
103
135
  }
104
136
  },
105
137
  systemData: {
106
- readOnly: true,
107
138
  serializedName: "systemData",
108
139
  type: {
109
140
  name: "Composite",
@@ -113,169 +144,94 @@ export var Resource = {
113
144
  }
114
145
  }
115
146
  };
116
- export var TrackedResource = {
117
- serializedName: "TrackedResource",
118
- type: {
119
- name: "Composite",
120
- className: "TrackedResource",
121
- modelProperties: __assign(__assign({}, Resource.type.modelProperties), { tags: {
122
- serializedName: "tags",
123
- type: {
124
- name: "Dictionary",
125
- value: {
126
- type: {
127
- name: "String"
128
- }
129
- }
130
- }
131
- }, location: {
132
- required: true,
133
- serializedName: "location",
134
- type: {
135
- name: "String"
136
- }
137
- } })
138
- }
139
- };
140
- export var HealthBotProperties = {
141
- serializedName: "HealthBotProperties",
147
+ export const SystemData = {
142
148
  type: {
143
149
  name: "Composite",
144
- className: "HealthBotProperties",
150
+ className: "SystemData",
145
151
  modelProperties: {
146
- provisioningState: {
147
- readOnly: true,
148
- serializedName: "provisioningState",
152
+ createdBy: {
153
+ serializedName: "createdBy",
149
154
  type: {
150
155
  name: "String"
151
156
  }
152
157
  },
153
- botManagementPortalLink: {
154
- readOnly: true,
155
- serializedName: "botManagementPortalLink",
158
+ createdByType: {
159
+ serializedName: "createdByType",
156
160
  type: {
157
161
  name: "String"
158
162
  }
159
- }
160
- }
161
- }
162
- };
163
- export var HealthBot = {
164
- serializedName: "HealthBot",
165
- type: {
166
- name: "Composite",
167
- className: "HealthBot",
168
- modelProperties: __assign(__assign({}, TrackedResource.type.modelProperties), { sku: {
169
- required: true,
170
- serializedName: "sku",
171
- type: {
172
- name: "Composite",
173
- className: "Sku"
174
- }
175
- }, properties: {
176
- serializedName: "properties",
163
+ },
164
+ createdAt: {
165
+ serializedName: "createdAt",
177
166
  type: {
178
- name: "Composite",
179
- className: "HealthBotProperties"
167
+ name: "DateTime"
180
168
  }
181
- } })
182
- }
183
- };
184
- export var HealthBotUpdateParameters = {
185
- serializedName: "HealthBotUpdateParameters",
186
- type: {
187
- name: "Composite",
188
- className: "HealthBotUpdateParameters",
189
- modelProperties: {
190
- tags: {
191
- serializedName: "tags",
169
+ },
170
+ lastModifiedBy: {
171
+ serializedName: "lastModifiedBy",
192
172
  type: {
193
- name: "Dictionary",
194
- value: {
195
- type: {
196
- name: "String"
197
- }
198
- }
173
+ name: "String"
199
174
  }
200
175
  },
201
- sku: {
202
- serializedName: "sku",
176
+ lastModifiedByType: {
177
+ serializedName: "lastModifiedByType",
203
178
  type: {
204
- name: "Composite",
205
- className: "Sku"
179
+ name: "String"
206
180
  }
207
- }
208
- }
209
- }
210
- };
211
- export var ValidationResult = {
212
- serializedName: "ValidationResult",
213
- type: {
214
- name: "Composite",
215
- className: "ValidationResult",
216
- modelProperties: {
217
- status: {
218
- serializedName: "status",
181
+ },
182
+ lastModifiedAt: {
183
+ serializedName: "lastModifiedAt",
219
184
  type: {
220
- name: "String"
185
+ name: "DateTime"
221
186
  }
222
187
  }
223
188
  }
224
189
  }
225
190
  };
226
- export var ErrorAdditionalInfo = {
227
- serializedName: "ErrorAdditionalInfo",
191
+ export const ErrorModel = {
228
192
  type: {
229
193
  name: "Composite",
230
- className: "ErrorAdditionalInfo",
194
+ className: "ErrorModel",
231
195
  modelProperties: {
232
- type: {
233
- readOnly: true,
234
- serializedName: "type",
235
- type: {
236
- name: "String"
237
- }
238
- },
239
- info: {
240
- readOnly: true,
241
- serializedName: "info",
196
+ error: {
197
+ serializedName: "error",
242
198
  type: {
243
- name: "Object"
199
+ name: "Composite",
200
+ className: "ErrorError"
244
201
  }
245
202
  }
246
203
  }
247
204
  }
248
205
  };
249
- export var ErrorError = {
250
- serializedName: "Error_error",
206
+ export const ErrorError = {
251
207
  type: {
252
208
  name: "Composite",
253
209
  className: "ErrorError",
254
210
  modelProperties: {
255
211
  code: {
256
- readOnly: true,
257
212
  serializedName: "code",
213
+ readOnly: true,
258
214
  type: {
259
215
  name: "String"
260
216
  }
261
217
  },
262
218
  message: {
263
- readOnly: true,
264
219
  serializedName: "message",
220
+ readOnly: true,
265
221
  type: {
266
222
  name: "String"
267
223
  }
268
224
  },
269
225
  target: {
270
- readOnly: true,
271
226
  serializedName: "target",
227
+ readOnly: true,
272
228
  type: {
273
229
  name: "String"
274
230
  }
275
231
  },
276
232
  details: {
277
- readOnly: true,
278
233
  serializedName: "details",
234
+ readOnly: true,
279
235
  type: {
280
236
  name: "Sequence",
281
237
  element: {
@@ -287,8 +243,8 @@ export var ErrorError = {
287
243
  }
288
244
  },
289
245
  additionalInfo: {
290
- readOnly: true,
291
246
  serializedName: "additionalInfo",
247
+ readOnly: true,
292
248
  type: {
293
249
  name: "Sequence",
294
250
  element: {
@@ -302,48 +258,111 @@ export var ErrorError = {
302
258
  }
303
259
  }
304
260
  };
305
- export var ErrorModel = {
306
- serializedName: "Error",
261
+ export const ErrorAdditionalInfo = {
307
262
  type: {
308
263
  name: "Composite",
309
- className: "ErrorModel",
264
+ className: "ErrorAdditionalInfo",
310
265
  modelProperties: {
311
- error: {
312
- serializedName: "error",
266
+ type: {
267
+ serializedName: "type",
268
+ readOnly: true,
313
269
  type: {
314
- name: "Composite",
315
- className: "ErrorError"
270
+ name: "String"
271
+ }
272
+ },
273
+ info: {
274
+ serializedName: "info",
275
+ readOnly: true,
276
+ type: {
277
+ name: "Dictionary",
278
+ value: { type: { name: "any" } }
316
279
  }
317
280
  }
318
281
  }
319
282
  }
320
283
  };
321
- export var OperationDisplay = {
322
- serializedName: "OperationDisplay",
284
+ export const HealthBotUpdateParameters = {
323
285
  type: {
324
286
  name: "Composite",
325
- className: "OperationDisplay",
287
+ className: "HealthBotUpdateParameters",
326
288
  modelProperties: {
327
- provider: {
328
- serializedName: "provider",
289
+ tags: {
290
+ serializedName: "tags",
329
291
  type: {
330
- name: "String"
292
+ name: "Dictionary",
293
+ value: { type: { name: "String" } }
331
294
  }
332
295
  },
333
- resource: {
334
- serializedName: "resource",
296
+ sku: {
297
+ serializedName: "sku",
335
298
  type: {
336
- name: "String"
299
+ name: "Composite",
300
+ className: "Sku"
337
301
  }
338
302
  },
339
- operation: {
340
- serializedName: "operation",
303
+ identity: {
304
+ serializedName: "identity",
305
+ type: {
306
+ name: "Composite",
307
+ className: "Identity"
308
+ }
309
+ },
310
+ location: {
311
+ serializedName: "location",
312
+ type: {
313
+ name: "String"
314
+ }
315
+ }
316
+ }
317
+ }
318
+ };
319
+ export const BotResponseList = {
320
+ type: {
321
+ name: "Composite",
322
+ className: "BotResponseList",
323
+ modelProperties: {
324
+ nextLink: {
325
+ serializedName: "nextLink",
326
+ readOnly: true,
341
327
  type: {
342
328
  name: "String"
343
329
  }
344
330
  },
345
- description: {
346
- serializedName: "description",
331
+ value: {
332
+ serializedName: "value",
333
+ readOnly: true,
334
+ type: {
335
+ name: "Sequence",
336
+ element: {
337
+ type: {
338
+ name: "Composite",
339
+ className: "HealthBot"
340
+ }
341
+ }
342
+ }
343
+ }
344
+ }
345
+ }
346
+ };
347
+ export const AvailableOperations = {
348
+ type: {
349
+ name: "Composite",
350
+ className: "AvailableOperations",
351
+ modelProperties: {
352
+ value: {
353
+ serializedName: "value",
354
+ type: {
355
+ name: "Sequence",
356
+ element: {
357
+ type: {
358
+ name: "Composite",
359
+ className: "OperationDetail"
360
+ }
361
+ }
362
+ }
363
+ },
364
+ nextLink: {
365
+ serializedName: "nextLink",
347
366
  type: {
348
367
  name: "String"
349
368
  }
@@ -351,8 +370,7 @@ export var OperationDisplay = {
351
370
  }
352
371
  }
353
372
  };
354
- export var OperationDetail = {
355
- serializedName: "OperationDetail",
373
+ export const OperationDetail = {
356
374
  type: {
357
375
  name: "Composite",
358
376
  className: "OperationDetail",
@@ -385,61 +403,52 @@ export var OperationDetail = {
385
403
  properties: {
386
404
  serializedName: "properties",
387
405
  type: {
388
- name: "Object"
406
+ name: "Dictionary",
407
+ value: { type: { name: "any" } }
389
408
  }
390
409
  }
391
410
  }
392
411
  }
393
412
  };
394
- export var BotResponseList = {
395
- serializedName: "BotResponseList",
413
+ export const OperationDisplay = {
396
414
  type: {
397
415
  name: "Composite",
398
- className: "BotResponseList",
416
+ className: "OperationDisplay",
399
417
  modelProperties: {
400
- nextLink: {
401
- readOnly: true,
402
- serializedName: "nextLink",
418
+ provider: {
419
+ serializedName: "provider",
403
420
  type: {
404
421
  name: "String"
405
422
  }
406
423
  },
407
- value: {
408
- readOnly: true,
409
- serializedName: "",
424
+ resource: {
425
+ serializedName: "resource",
410
426
  type: {
411
- name: "Sequence",
412
- element: {
413
- type: {
414
- name: "Composite",
415
- className: "HealthBot"
416
- }
417
- }
427
+ name: "String"
428
+ }
429
+ },
430
+ operation: {
431
+ serializedName: "operation",
432
+ type: {
433
+ name: "String"
434
+ }
435
+ },
436
+ description: {
437
+ serializedName: "description",
438
+ type: {
439
+ name: "String"
418
440
  }
419
441
  }
420
442
  }
421
443
  }
422
444
  };
423
- export var AvailableOperations = {
424
- serializedName: "AvailableOperations",
445
+ export const ValidationResult = {
425
446
  type: {
426
447
  name: "Composite",
427
- className: "AvailableOperations",
448
+ className: "ValidationResult",
428
449
  modelProperties: {
429
- value: {
430
- serializedName: "",
431
- type: {
432
- name: "Sequence",
433
- element: {
434
- type: {
435
- name: "Composite",
436
- className: "OperationDetail"
437
- }
438
- }
439
- }
440
- },
441
- nextLink: {
442
- serializedName: "nextLink",
450
+ status: {
451
+ serializedName: "status",
443
452
  type: {
444
453
  name: "String"
445
454
  }
@@ -447,4 +456,48 @@ export var AvailableOperations = {
447
456
  }
448
457
  }
449
458
  };
459
+ export const TrackedResource = {
460
+ type: {
461
+ name: "Composite",
462
+ className: "TrackedResource",
463
+ modelProperties: Object.assign(Object.assign({}, Resource.type.modelProperties), { tags: {
464
+ serializedName: "tags",
465
+ type: {
466
+ name: "Dictionary",
467
+ value: { type: { name: "String" } }
468
+ }
469
+ }, location: {
470
+ serializedName: "location",
471
+ required: true,
472
+ type: {
473
+ name: "String"
474
+ }
475
+ } })
476
+ }
477
+ };
478
+ export const HealthBot = {
479
+ type: {
480
+ name: "Composite",
481
+ className: "HealthBot",
482
+ modelProperties: Object.assign(Object.assign({}, TrackedResource.type.modelProperties), { sku: {
483
+ serializedName: "sku",
484
+ type: {
485
+ name: "Composite",
486
+ className: "Sku"
487
+ }
488
+ }, identity: {
489
+ serializedName: "identity",
490
+ type: {
491
+ name: "Composite",
492
+ className: "Identity"
493
+ }
494
+ }, properties: {
495
+ serializedName: "properties",
496
+ type: {
497
+ name: "Composite",
498
+ className: "HealthBotProperties"
499
+ }
500
+ } })
501
+ }
502
+ };
450
503
  //# sourceMappingURL=mappers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"mappers.js","sourceRoot":"","sources":["../../../src/models/mappers.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,12 @@
1
+ import { OperationParameter, OperationURLParameter, OperationQueryParameter } from "@azure/core-client";
2
+ export declare const contentType: OperationParameter;
3
+ export declare const parameters: OperationParameter;
4
+ export declare const accept: OperationParameter;
5
+ export declare const $host: OperationURLParameter;
6
+ export declare const subscriptionId: OperationURLParameter;
7
+ export declare const resourceGroupName: OperationURLParameter;
8
+ export declare const botName: OperationURLParameter;
9
+ export declare const apiVersion: OperationQueryParameter;
10
+ export declare const parameters1: OperationParameter;
11
+ export declare const nextLink: OperationURLParameter;
12
+ //# sourceMappingURL=parameters.d.ts.map