@azure/arm-maps 1.1.0 → 3.0.0

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 (127) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/LICENSE +21 -0
  3. package/LICENSE.txt +1 -1
  4. package/README.md +75 -77
  5. package/dist/index.js +1892 -0
  6. package/dist/index.js.map +1 -0
  7. package/dist/index.min.js +1 -0
  8. package/dist/index.min.js.map +1 -0
  9. package/dist-esm/src/azureMapsManagementClient.d.ts +20 -0
  10. package/dist-esm/src/azureMapsManagementClient.d.ts.map +1 -0
  11. package/dist-esm/src/azureMapsManagementClient.js +53 -0
  12. package/dist-esm/src/azureMapsManagementClient.js.map +1 -0
  13. package/dist-esm/src/index.d.ts +5 -0
  14. package/dist-esm/src/index.d.ts.map +1 -0
  15. package/dist-esm/src/index.js +12 -0
  16. package/dist-esm/src/index.js.map +1 -0
  17. package/dist-esm/src/models/index.d.ts +480 -0
  18. package/dist-esm/src/models/index.d.ts.map +1 -0
  19. package/dist-esm/src/models/index.js +35 -0
  20. package/dist-esm/src/models/index.js.map +1 -0
  21. package/dist-esm/src/models/mappers.d.ts +25 -0
  22. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  23. package/dist-esm/src/models/mappers.js +732 -0
  24. package/dist-esm/src/models/mappers.js.map +1 -0
  25. package/dist-esm/src/models/parameters.d.ts +16 -0
  26. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  27. package/dist-esm/src/models/parameters.js +131 -0
  28. package/dist-esm/src/models/parameters.js.map +1 -0
  29. package/dist-esm/src/operations/accounts.d.ts +103 -0
  30. package/dist-esm/src/operations/accounts.d.ts.map +1 -0
  31. package/dist-esm/src/operations/accounts.js +427 -0
  32. package/dist-esm/src/operations/accounts.js.map +1 -0
  33. package/dist-esm/src/operations/creators.d.ts +74 -0
  34. package/dist-esm/src/operations/creators.d.ts.map +1 -0
  35. package/dist-esm/src/operations/creators.js +281 -0
  36. package/dist-esm/src/operations/creators.js.map +1 -0
  37. package/dist-esm/src/operations/index.d.ts +4 -0
  38. package/dist-esm/src/operations/index.d.ts.map +1 -0
  39. package/dist-esm/src/operations/index.js +11 -0
  40. package/dist-esm/src/operations/index.js.map +1 -0
  41. package/dist-esm/src/operations/maps.d.ts +51 -0
  42. package/dist-esm/src/operations/maps.d.ts.map +1 -0
  43. package/dist-esm/src/operations/maps.js +220 -0
  44. package/dist-esm/src/operations/maps.js.map +1 -0
  45. package/dist-esm/src/operationsInterfaces/accounts.d.ts +67 -0
  46. package/dist-esm/src/operationsInterfaces/accounts.d.ts.map +1 -0
  47. package/dist-esm/src/operationsInterfaces/accounts.js +9 -0
  48. package/dist-esm/src/operationsInterfaces/accounts.js.map +1 -0
  49. package/dist-esm/src/operationsInterfaces/creators.d.ts +49 -0
  50. package/dist-esm/src/operationsInterfaces/creators.d.ts.map +1 -0
  51. package/dist-esm/src/operationsInterfaces/creators.js +9 -0
  52. package/dist-esm/src/operationsInterfaces/creators.js.map +1 -0
  53. package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
  54. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  55. package/dist-esm/src/operationsInterfaces/index.js +11 -0
  56. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  57. package/dist-esm/src/operationsInterfaces/maps.d.ts +16 -0
  58. package/dist-esm/src/operationsInterfaces/maps.d.ts.map +1 -0
  59. package/dist-esm/src/operationsInterfaces/maps.js +9 -0
  60. package/dist-esm/src/operationsInterfaces/maps.js.map +1 -0
  61. package/dist-esm/test/sampleTest.d.ts +2 -0
  62. package/dist-esm/test/sampleTest.d.ts.map +1 -0
  63. package/dist-esm/test/sampleTest.js +40 -0
  64. package/dist-esm/test/sampleTest.js.map +1 -0
  65. package/package.json +73 -34
  66. package/review/arm-maps.api.md +423 -0
  67. package/rollup.config.js +184 -27
  68. package/src/azureMapsManagementClient.ts +79 -0
  69. package/src/index.ts +12 -0
  70. package/src/models/index.ts +552 -0
  71. package/src/models/mappers.ts +769 -0
  72. package/src/models/parameters.ts +156 -0
  73. package/src/operations/accounts.ts +541 -0
  74. package/src/operations/creators.ts +383 -0
  75. package/src/operations/index.ts +11 -0
  76. package/src/operations/maps.ts +256 -0
  77. package/src/operationsInterfaces/accounts.ts +125 -0
  78. package/src/operationsInterfaces/creators.ts +95 -0
  79. package/src/operationsInterfaces/index.ts +11 -0
  80. package/src/operationsInterfaces/maps.ts +33 -0
  81. package/tsconfig.json +4 -4
  82. package/types/arm-maps.d.ts +696 -0
  83. package/types/tsdoc-metadata.json +11 -0
  84. package/dist/arm-maps.js +0 -1035
  85. package/dist/arm-maps.js.map +0 -1
  86. package/dist/arm-maps.min.js +0 -1
  87. package/dist/arm-maps.min.js.map +0 -1
  88. package/esm/mapsManagementClient.d.ts +0 -19
  89. package/esm/mapsManagementClient.d.ts.map +0 -1
  90. package/esm/mapsManagementClient.js +0 -34
  91. package/esm/mapsManagementClient.js.map +0 -1
  92. package/esm/mapsManagementClientContext.d.ts +0 -17
  93. package/esm/mapsManagementClientContext.d.ts.map +0 -1
  94. package/esm/mapsManagementClientContext.js +0 -57
  95. package/esm/mapsManagementClientContext.js.map +0 -1
  96. package/esm/models/accountsMappers.d.ts +0 -2
  97. package/esm/models/accountsMappers.d.ts.map +0 -1
  98. package/esm/models/accountsMappers.js +0 -11
  99. package/esm/models/accountsMappers.js.map +0 -1
  100. package/esm/models/index.d.ts +0 -491
  101. package/esm/models/index.d.ts.map +0 -1
  102. package/esm/models/index.js +0 -10
  103. package/esm/models/index.js.map +0 -1
  104. package/esm/models/mappers.d.ts +0 -18
  105. package/esm/models/mappers.d.ts.map +0 -1
  106. package/esm/models/mappers.js +0 -419
  107. package/esm/models/mappers.js.map +0 -1
  108. package/esm/models/parameters.d.ts +0 -7
  109. package/esm/models/parameters.d.ts.map +0 -1
  110. package/esm/models/parameters.js +0 -60
  111. package/esm/models/parameters.js.map +0 -1
  112. package/esm/operations/accounts.d.ts +0 -222
  113. package/esm/operations/accounts.d.ts.map +0 -1
  114. package/esm/operations/accounts.js +0 -347
  115. package/esm/operations/accounts.js.map +0 -1
  116. package/esm/operations/index.d.ts +0 -2
  117. package/esm/operations/index.d.ts.map +0 -1
  118. package/esm/operations/index.js +0 -11
  119. package/esm/operations/index.js.map +0 -1
  120. package/lib/mapsManagementClient.ts +0 -43
  121. package/lib/mapsManagementClientContext.ts +0 -63
  122. package/lib/models/accountsMappers.ts +0 -28
  123. package/lib/models/index.ts +0 -521
  124. package/lib/models/mappers.ts +0 -439
  125. package/lib/models/parameters.ts +0 -62
  126. package/lib/operations/accounts.ts +0 -620
  127. package/lib/operations/index.ts +0 -11
@@ -1,491 +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
- * @interface
6
- * An interface representing ErrorDetailsItem.
7
- */
8
- export interface ErrorDetailsItem {
9
- /**
10
- * @member {string} [code] Error code.
11
- * **NOTE: This property will not be serialized. It can only be populated by
12
- * the server.**
13
- */
14
- readonly code?: string;
15
- /**
16
- * @member {string} [message] If available, a human readable description of
17
- * the error.
18
- * **NOTE: This property will not be serialized. It can only be populated by
19
- * the server.**
20
- */
21
- readonly message?: string;
22
- /**
23
- * @member {string} [target] If available, the component generating the
24
- * error.
25
- * **NOTE: This property will not be serialized. It can only be populated by
26
- * the server.**
27
- */
28
- readonly target?: string;
29
- }
30
- /**
31
- * @interface
32
- * An interface representing ErrorModel.
33
- * This object is returned when an error occurs in the Maps API
34
- *
35
- */
36
- export interface ErrorModel {
37
- /**
38
- * @member {string} [code] Error code.
39
- * **NOTE: This property will not be serialized. It can only be populated by
40
- * the server.**
41
- */
42
- readonly code?: string;
43
- /**
44
- * @member {string} [message] If available, a human readable description of
45
- * the error.
46
- * **NOTE: This property will not be serialized. It can only be populated by
47
- * the server.**
48
- */
49
- readonly message?: string;
50
- /**
51
- * @member {string} [target] If available, the component generating the
52
- * error.
53
- * **NOTE: This property will not be serialized. It can only be populated by
54
- * the server.**
55
- */
56
- readonly target?: string;
57
- /**
58
- * @member {ErrorDetailsItem[]} [details] If available, a list of additional
59
- * details about the error.
60
- * **NOTE: This property will not be serialized. It can only be populated by
61
- * the server.**
62
- */
63
- readonly details?: ErrorDetailsItem[];
64
- }
65
- /**
66
- * @interface
67
- * An interface representing Resource.
68
- * An Azure resource
69
- *
70
- * @extends BaseResource
71
- */
72
- export interface Resource extends BaseResource {
73
- /**
74
- * @member {string} [id] The fully qualified Maps Account resource
75
- * identifier.
76
- * **NOTE: This property will not be serialized. It can only be populated by
77
- * the server.**
78
- */
79
- readonly id?: string;
80
- /**
81
- * @member {string} [name] The name of the Maps Account, which is unique
82
- * within a Resource Group.
83
- * **NOTE: This property will not be serialized. It can only be populated by
84
- * the server.**
85
- */
86
- readonly name?: string;
87
- /**
88
- * @member {string} [type] Azure resource type.
89
- * **NOTE: This property will not be serialized. It can only be populated by
90
- * the server.**
91
- */
92
- readonly type?: string;
93
- }
94
- /**
95
- * @interface
96
- * An interface representing Sku.
97
- * The SKU of the Maps Account.
98
- *
99
- */
100
- export interface Sku {
101
- /**
102
- * @member {string} name The name of the SKU, in standard format (such as
103
- * S0).
104
- */
105
- name: string;
106
- /**
107
- * @member {string} [tier] Gets the sku tier. This is based on the SKU name.
108
- * **NOTE: This property will not be serialized. It can only be populated by
109
- * the server.**
110
- */
111
- readonly tier?: string;
112
- }
113
- /**
114
- * @interface
115
- * An interface representing MapsAccount.
116
- * An Azure resource which represents access to a suite of Maps REST APIs.
117
- *
118
- * @extends Resource
119
- */
120
- export interface MapsAccount extends Resource {
121
- /**
122
- * @member {string} [location] The location of the resource.
123
- * **NOTE: This property will not be serialized. It can only be populated by
124
- * the server.**
125
- */
126
- readonly location?: string;
127
- /**
128
- * @member {{ [propertyName: string]: string }} [tags] Gets a list of key
129
- * value pairs that describe the resource. These tags can be used in viewing
130
- * and grouping this resource (across resource groups). A maximum of 15 tags
131
- * can be provided for a resource. Each tag must have a key no greater than
132
- * 128 characters and value no greater than 256 characters.
133
- * **NOTE: This property will not be serialized. It can only be populated by
134
- * the server.**
135
- */
136
- readonly tags?: {
137
- [propertyName: string]: string;
138
- };
139
- /**
140
- * @member {Sku} [sku] The SKU of this account.
141
- * **NOTE: This property will not be serialized. It can only be populated by
142
- * the server.**
143
- */
144
- readonly sku?: Sku;
145
- }
146
- /**
147
- * @interface
148
- * An interface representing MapsAccountCreateParameters.
149
- * Parameters used to create a new Maps Account.
150
- *
151
- */
152
- export interface MapsAccountCreateParameters {
153
- /**
154
- * @member {string} location The location of the resource.
155
- */
156
- location: string;
157
- /**
158
- * @member {{ [propertyName: string]: string }} [tags] Gets or sets a list of
159
- * key value pairs that describe the resource. These tags can be used in
160
- * viewing and grouping this resource (across resource groups). A maximum of
161
- * 15 tags can be provided for a resource. Each tag must have a key no
162
- * greater than 128 characters and value no greater than 256 characters.
163
- */
164
- tags?: {
165
- [propertyName: string]: string;
166
- };
167
- /**
168
- * @member {Sku} sku The SKU of this account.
169
- */
170
- sku: Sku;
171
- }
172
- /**
173
- * @interface
174
- * An interface representing MapsAccountUpdateParameters.
175
- * Parameters used to update an existing Maps Account.
176
- *
177
- */
178
- export interface MapsAccountUpdateParameters {
179
- /**
180
- * @member {{ [propertyName: string]: string }} [tags] Gets or sets a list of
181
- * key value pairs that describe the resource. These tags can be used in
182
- * viewing and grouping this resource (across resource groups). A maximum of
183
- * 15 tags can be provided for a resource. Each tag must have a key no
184
- * greater than 128 characters and value no greater than 256 characters.
185
- */
186
- tags?: {
187
- [propertyName: string]: string;
188
- };
189
- /**
190
- * @member {Sku} [sku] The SKU of this account.
191
- */
192
- sku?: Sku;
193
- }
194
- /**
195
- * @interface
196
- * An interface representing MapsAccountsMoveRequest.
197
- * The description of what resources to move between resource groups.
198
- *
199
- */
200
- export interface MapsAccountsMoveRequest {
201
- /**
202
- * @member {string} targetResourceGroup The name of the destination resource
203
- * group.
204
- */
205
- targetResourceGroup: string;
206
- /**
207
- * @member {string[]} resourceIds A list of resource names to move from the
208
- * source resource group.
209
- */
210
- resourceIds: string[];
211
- }
212
- /**
213
- * @interface
214
- * An interface representing MapsKeySpecification.
215
- * Whether the operation refers to the primary or secondary key.
216
- *
217
- */
218
- export interface MapsKeySpecification {
219
- /**
220
- * @member {KeyType} keyType Whether the operation refers to the primary or
221
- * secondary key. Possible values include: 'primary', 'secondary'
222
- */
223
- keyType: KeyType;
224
- }
225
- /**
226
- * @interface
227
- * An interface representing MapsAccountKeys.
228
- * The set of keys which can be used to access the Maps REST APIs. Two keys are
229
- * provided for key rotation without interruption.
230
- *
231
- */
232
- export interface MapsAccountKeys {
233
- /**
234
- * @member {string} [id] The full Azure resource identifier of the Maps
235
- * Account.
236
- * **NOTE: This property will not be serialized. It can only be populated by
237
- * the server.**
238
- */
239
- readonly id?: string;
240
- /**
241
- * @member {string} [primaryKey] The primary key for accessing the Maps REST
242
- * APIs.
243
- * **NOTE: This property will not be serialized. It can only be populated by
244
- * the server.**
245
- */
246
- readonly primaryKey?: string;
247
- /**
248
- * @member {string} [secondaryKey] The secondary key for accessing the Maps
249
- * REST APIs.
250
- * **NOTE: This property will not be serialized. It can only be populated by
251
- * the server.**
252
- */
253
- readonly secondaryKey?: string;
254
- }
255
- /**
256
- * @interface
257
- * An interface representing MapsOperationsValueItemDisplay.
258
- * The human-readable description of the operation.
259
- *
260
- */
261
- export interface MapsOperationsValueItemDisplay {
262
- /**
263
- * @member {string} [provider] Service provider: Microsoft Maps.
264
- * **NOTE: This property will not be serialized. It can only be populated by
265
- * the server.**
266
- */
267
- readonly provider?: string;
268
- /**
269
- * @member {string} [resource] Resource on which the operation is performed.
270
- * **NOTE: This property will not be serialized. It can only be populated by
271
- * the server.**
272
- */
273
- readonly resource?: string;
274
- /**
275
- * @member {string} [operation] The action that users can perform, based on
276
- * their permission level.
277
- * **NOTE: This property will not be serialized. It can only be populated by
278
- * the server.**
279
- */
280
- readonly operation?: string;
281
- /**
282
- * @member {string} [description] The description of the operation.
283
- * **NOTE: This property will not be serialized. It can only be populated by
284
- * the server.**
285
- */
286
- readonly description?: string;
287
- }
288
- /**
289
- * @interface
290
- * An interface representing MapsOperationsValueItem.
291
- */
292
- export interface MapsOperationsValueItem {
293
- /**
294
- * @member {string} [name] Operation name: {provider}/{resource}/{operation}.
295
- * **NOTE: This property will not be serialized. It can only be populated by
296
- * the server.**
297
- */
298
- readonly name?: string;
299
- /**
300
- * @member {MapsOperationsValueItemDisplay} [display] The human-readable
301
- * description of the operation.
302
- */
303
- display?: MapsOperationsValueItemDisplay;
304
- /**
305
- * @member {string} [origin] The origin of the operation.
306
- * **NOTE: This property will not be serialized. It can only be populated by
307
- * the server.**
308
- */
309
- readonly origin?: string;
310
- }
311
- /**
312
- * @interface
313
- * An interface representing MapsManagementClientOptions.
314
- * @extends AzureServiceClientOptions
315
- */
316
- export interface MapsManagementClientOptions extends AzureServiceClientOptions {
317
- /**
318
- * @member {string} [baseUri]
319
- */
320
- baseUri?: string;
321
- }
322
- /**
323
- * @interface
324
- * An interface representing the MapsAccounts.
325
- * A list of Maps Accounts.
326
- *
327
- * @extends Array<MapsAccount>
328
- */
329
- export interface MapsAccounts extends Array<MapsAccount> {
330
- }
331
- /**
332
- * @interface
333
- * An interface representing the MapsOperations.
334
- * The set of operations available for Maps.
335
- *
336
- * @extends Array<MapsOperationsValueItem>
337
- */
338
- export interface MapsOperations extends Array<MapsOperationsValueItem> {
339
- }
340
- /**
341
- * Defines values for KeyType.
342
- * Possible values include: 'primary', 'secondary'
343
- * @readonly
344
- * @enum {string}
345
- */
346
- export declare type KeyType = 'primary' | 'secondary';
347
- /**
348
- * Contains response data for the createOrUpdate operation.
349
- */
350
- export declare type AccountsCreateOrUpdateResponse = MapsAccount & {
351
- /**
352
- * The underlying HTTP response.
353
- */
354
- _response: msRest.HttpResponse & {
355
- /**
356
- * The response body as text (string format)
357
- */
358
- bodyAsText: string;
359
- /**
360
- * The response body as parsed JSON or XML
361
- */
362
- parsedBody: MapsAccount;
363
- };
364
- };
365
- /**
366
- * Contains response data for the update operation.
367
- */
368
- export declare type AccountsUpdateResponse = MapsAccount & {
369
- /**
370
- * The underlying HTTP response.
371
- */
372
- _response: msRest.HttpResponse & {
373
- /**
374
- * The response body as text (string format)
375
- */
376
- bodyAsText: string;
377
- /**
378
- * The response body as parsed JSON or XML
379
- */
380
- parsedBody: MapsAccount;
381
- };
382
- };
383
- /**
384
- * Contains response data for the get operation.
385
- */
386
- export declare type AccountsGetResponse = MapsAccount & {
387
- /**
388
- * The underlying HTTP response.
389
- */
390
- _response: msRest.HttpResponse & {
391
- /**
392
- * The response body as text (string format)
393
- */
394
- bodyAsText: string;
395
- /**
396
- * The response body as parsed JSON or XML
397
- */
398
- parsedBody: MapsAccount;
399
- };
400
- };
401
- /**
402
- * Contains response data for the listByResourceGroup operation.
403
- */
404
- export declare type AccountsListByResourceGroupResponse = MapsAccounts & {
405
- /**
406
- * The underlying HTTP response.
407
- */
408
- _response: msRest.HttpResponse & {
409
- /**
410
- * The response body as text (string format)
411
- */
412
- bodyAsText: string;
413
- /**
414
- * The response body as parsed JSON or XML
415
- */
416
- parsedBody: MapsAccounts;
417
- };
418
- };
419
- /**
420
- * Contains response data for the listBySubscription operation.
421
- */
422
- export declare type AccountsListBySubscriptionResponse = MapsAccounts & {
423
- /**
424
- * The underlying HTTP response.
425
- */
426
- _response: msRest.HttpResponse & {
427
- /**
428
- * The response body as text (string format)
429
- */
430
- bodyAsText: string;
431
- /**
432
- * The response body as parsed JSON or XML
433
- */
434
- parsedBody: MapsAccounts;
435
- };
436
- };
437
- /**
438
- * Contains response data for the listKeys operation.
439
- */
440
- export declare type AccountsListKeysResponse = MapsAccountKeys & {
441
- /**
442
- * The underlying HTTP response.
443
- */
444
- _response: msRest.HttpResponse & {
445
- /**
446
- * The response body as text (string format)
447
- */
448
- bodyAsText: string;
449
- /**
450
- * The response body as parsed JSON or XML
451
- */
452
- parsedBody: MapsAccountKeys;
453
- };
454
- };
455
- /**
456
- * Contains response data for the regenerateKeys operation.
457
- */
458
- export declare type AccountsRegenerateKeysResponse = MapsAccountKeys & {
459
- /**
460
- * The underlying HTTP response.
461
- */
462
- _response: msRest.HttpResponse & {
463
- /**
464
- * The response body as text (string format)
465
- */
466
- bodyAsText: string;
467
- /**
468
- * The response body as parsed JSON or XML
469
- */
470
- parsedBody: MapsAccountKeys;
471
- };
472
- };
473
- /**
474
- * Contains response data for the listOperations operation.
475
- */
476
- export declare type AccountsListOperationsResponse = MapsOperations & {
477
- /**
478
- * The underlying HTTP response.
479
- */
480
- _response: msRest.HttpResponse & {
481
- /**
482
- * The response body as text (string format)
483
- */
484
- bodyAsText: string;
485
- /**
486
- * The response body as parsed JSON or XML
487
- */
488
- parsedBody: MapsOperations;
489
- };
490
- };
491
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../lib/models/index.ts"],"names":[],"mappings":"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"}
@@ -1,10 +0,0 @@
1
- /*
2
- * Copyright (c) Microsoft Corporation. All rights reserved.
3
- * Licensed under the MIT License. See License.txt in the project root for
4
- * license information.
5
- *
6
- * Code generated by Microsoft (R) AutoRest Code Generator.
7
- * Changes may cause incorrect behavior and will be lost if the code is
8
- * regenerated.
9
- */
10
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../lib/models/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG"}
@@ -1,18 +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 ErrorDetailsItem: msRest.CompositeMapper;
5
- export declare const ErrorModel: msRest.CompositeMapper;
6
- export declare const Resource: msRest.CompositeMapper;
7
- export declare const Sku: msRest.CompositeMapper;
8
- export declare const MapsAccount: msRest.CompositeMapper;
9
- export declare const MapsAccountCreateParameters: msRest.CompositeMapper;
10
- export declare const MapsAccountUpdateParameters: msRest.CompositeMapper;
11
- export declare const MapsAccountsMoveRequest: msRest.CompositeMapper;
12
- export declare const MapsKeySpecification: msRest.CompositeMapper;
13
- export declare const MapsAccountKeys: msRest.CompositeMapper;
14
- export declare const MapsOperationsValueItemDisplay: msRest.CompositeMapper;
15
- export declare const MapsOperationsValueItem: msRest.CompositeMapper;
16
- export declare const MapsAccounts: msRest.CompositeMapper;
17
- export declare const MapsOperations: msRest.CompositeMapper;
18
- //# sourceMappingURL=mappers.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"mappers.d.ts","sourceRoot":"","sources":["../../lib/models/mappers.ts"],"names":[],"mappings":"AAWA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,eAAO,MAAM,UAAU,wBAAmB,CAAC;AAC3C,eAAO,MAAM,YAAY,wBAAqB,CAAC;AAE/C,eAAO,MAAM,gBAAgB,EAAE,MAAM,CAAC,eA6BrC,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,MAAM,CAAC,eA0C/B,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,eA6B7B,CAAC;AAEF,eAAO,MAAM,GAAG,EAAE,MAAM,CAAC,eAsBxB,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,MAAM,CAAC,eAoChC,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,MAAM,CAAC,eAkChD,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,MAAM,CAAC,eA0BhD,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,MAAM,CAAC,eA2B5C,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,MAAM,CAAC,eAezC,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,MAAM,CAAC,eA6BpC,CAAC;AAEF,eAAO,MAAM,8BAA8B,EAAE,MAAM,CAAC,eAoCnD,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,MAAM,CAAC,eA6B5C,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,MAAM,CAAC,eAqBjC,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,MAAM,CAAC,eAqBnC,CAAC"}