@azure/arm-maps 2.0.0 → 3.0.0-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 (132) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/LICENSE +21 -0
  3. package/README.md +68 -81
  4. package/dist/index.js +1892 -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/azureMapsManagementClient.d.ts +20 -0
  9. package/dist-esm/src/azureMapsManagementClient.d.ts.map +1 -0
  10. package/dist-esm/src/azureMapsManagementClient.js +53 -0
  11. package/dist-esm/src/azureMapsManagementClient.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/{esm/models/mapsMappers.js → dist-esm/src/index.js} +5 -2
  15. package/dist-esm/src/index.js.map +1 -0
  16. package/dist-esm/src/models/index.d.ts +480 -0
  17. package/dist-esm/src/models/index.d.ts.map +1 -0
  18. package/dist-esm/src/models/index.js +35 -0
  19. package/dist-esm/src/models/index.js.map +1 -0
  20. package/dist-esm/src/models/mappers.d.ts +25 -0
  21. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  22. package/{esm → dist-esm/src}/models/mappers.js +332 -379
  23. package/dist-esm/src/models/mappers.js.map +1 -0
  24. package/dist-esm/src/models/parameters.d.ts +16 -0
  25. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  26. package/dist-esm/src/models/parameters.js +131 -0
  27. package/dist-esm/src/models/parameters.js.map +1 -0
  28. package/dist-esm/src/operations/accounts.d.ts +103 -0
  29. package/dist-esm/src/operations/accounts.d.ts.map +1 -0
  30. package/dist-esm/src/operations/accounts.js +427 -0
  31. package/dist-esm/src/operations/accounts.js.map +1 -0
  32. package/dist-esm/src/operations/creators.d.ts +74 -0
  33. package/dist-esm/src/operations/creators.d.ts.map +1 -0
  34. package/dist-esm/src/operations/creators.js +281 -0
  35. package/dist-esm/src/operations/creators.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/maps.d.ts +51 -0
  41. package/dist-esm/src/operations/maps.d.ts.map +1 -0
  42. package/dist-esm/src/operations/maps.js +220 -0
  43. package/dist-esm/src/operations/maps.js.map +1 -0
  44. package/dist-esm/src/operationsInterfaces/accounts.d.ts +67 -0
  45. package/dist-esm/src/operationsInterfaces/accounts.d.ts.map +1 -0
  46. package/dist-esm/src/operationsInterfaces/accounts.js +9 -0
  47. package/dist-esm/src/operationsInterfaces/accounts.js.map +1 -0
  48. package/dist-esm/src/operationsInterfaces/creators.d.ts +49 -0
  49. package/dist-esm/src/operationsInterfaces/creators.d.ts.map +1 -0
  50. package/dist-esm/src/operationsInterfaces/creators.js +9 -0
  51. package/dist-esm/src/operationsInterfaces/creators.js.map +1 -0
  52. package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
  53. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  54. package/dist-esm/src/operationsInterfaces/index.js +11 -0
  55. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  56. package/dist-esm/src/operationsInterfaces/maps.d.ts +16 -0
  57. package/dist-esm/src/operationsInterfaces/maps.d.ts.map +1 -0
  58. package/{esm/models/index.js → dist-esm/src/operationsInterfaces/maps.js} +2 -1
  59. package/dist-esm/src/operationsInterfaces/maps.js.map +1 -0
  60. package/dist-esm/test/sampleTest.d.ts +2 -0
  61. package/dist-esm/test/sampleTest.d.ts.map +1 -0
  62. package/dist-esm/test/sampleTest.js +40 -0
  63. package/dist-esm/test/sampleTest.js.map +1 -0
  64. package/package.json +71 -21
  65. package/review/arm-maps.api.md +423 -0
  66. package/rollup.config.js +181 -24
  67. package/src/azureMapsManagementClient.ts +61 -30
  68. package/src/{models/mapsMappers.ts → index.ts} +4 -11
  69. package/src/models/index.ts +380 -684
  70. package/src/models/mappers.ts +333 -378
  71. package/src/models/parameters.ts +99 -36
  72. package/src/operations/accounts.ts +315 -502
  73. package/src/operations/creators.ts +202 -341
  74. package/src/operations/index.ts +1 -2
  75. package/src/operations/maps.ts +196 -77
  76. package/src/operationsInterfaces/accounts.ts +125 -0
  77. package/src/operationsInterfaces/creators.ts +95 -0
  78. package/src/operationsInterfaces/index.ts +11 -0
  79. package/src/operationsInterfaces/maps.ts +33 -0
  80. package/tsconfig.json +3 -3
  81. package/types/arm-maps.d.ts +696 -0
  82. package/types/tsdoc-metadata.json +11 -0
  83. package/dist/arm-maps.js +0 -1661
  84. package/dist/arm-maps.js.map +0 -1
  85. package/dist/arm-maps.min.js +0 -1
  86. package/dist/arm-maps.min.js.map +0 -1
  87. package/esm/azureMapsManagementClient.d.ts +0 -20
  88. package/esm/azureMapsManagementClient.d.ts.map +0 -1
  89. package/esm/azureMapsManagementClient.js +0 -34
  90. package/esm/azureMapsManagementClient.js.map +0 -1
  91. package/esm/azureMapsManagementClientContext.d.ts +0 -16
  92. package/esm/azureMapsManagementClientContext.d.ts.map +0 -1
  93. package/esm/azureMapsManagementClientContext.js +0 -56
  94. package/esm/azureMapsManagementClientContext.js.map +0 -1
  95. package/esm/models/accountsMappers.d.ts +0 -2
  96. package/esm/models/accountsMappers.d.ts.map +0 -1
  97. package/esm/models/accountsMappers.js +0 -9
  98. package/esm/models/accountsMappers.js.map +0 -1
  99. package/esm/models/creatorsMappers.d.ts +0 -2
  100. package/esm/models/creatorsMappers.d.ts.map +0 -1
  101. package/esm/models/creatorsMappers.js +0 -9
  102. package/esm/models/creatorsMappers.js.map +0 -1
  103. package/esm/models/index.d.ts +0 -793
  104. package/esm/models/index.d.ts.map +0 -1
  105. package/esm/models/index.js.map +0 -1
  106. package/esm/models/mappers.d.ts +0 -29
  107. package/esm/models/mappers.d.ts.map +0 -1
  108. package/esm/models/mappers.js.map +0 -1
  109. package/esm/models/mapsMappers.d.ts +0 -2
  110. package/esm/models/mapsMappers.d.ts.map +0 -1
  111. package/esm/models/mapsMappers.js.map +0 -1
  112. package/esm/models/parameters.d.ts +0 -9
  113. package/esm/models/parameters.d.ts.map +0 -1
  114. package/esm/models/parameters.js +0 -91
  115. package/esm/models/parameters.js.map +0 -1
  116. package/esm/operations/accounts.d.ts +0 -222
  117. package/esm/operations/accounts.d.ts.map +0 -1
  118. package/esm/operations/accounts.js +0 -271
  119. package/esm/operations/accounts.js.map +0 -1
  120. package/esm/operations/creators.d.ts +0 -157
  121. package/esm/operations/creators.d.ts.map +0 -1
  122. package/esm/operations/creators.js +0 -201
  123. package/esm/operations/creators.js.map +0 -1
  124. package/esm/operations/index.d.ts.map +0 -1
  125. package/esm/operations/index.js.map +0 -1
  126. package/esm/operations/maps.d.ts +0 -46
  127. package/esm/operations/maps.d.ts.map +0 -1
  128. package/esm/operations/maps.js +0 -69
  129. package/esm/operations/maps.js.map +0 -1
  130. package/src/azureMapsManagementClientContext.ts +0 -68
  131. package/src/models/accountsMappers.ts +0 -28
  132. package/src/models/creatorsMappers.ts +0 -26
@@ -1,793 +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
- * Creator resource properties
6
- */
7
- export interface CreatorProperties {
8
- /**
9
- * The state of the resource provisioning, terminal states: Succeeded, Failed, Canceled
10
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
11
- */
12
- readonly provisioningState?: string;
13
- /**
14
- * The storage units to be allocated. Integer values from 1 to 100, inclusive.
15
- */
16
- storageUnits: number;
17
- }
18
- /**
19
- * An Azure resource which represents Maps Creator product and provides ability to manage private
20
- * location data.
21
- */
22
- export interface Creator extends BaseResource {
23
- /**
24
- * The Creator resource properties.
25
- */
26
- properties: CreatorProperties;
27
- }
28
- /**
29
- * The SKU of the Maps Account.
30
- */
31
- export interface Sku {
32
- /**
33
- * The name of the SKU, in standard format (such as S0). Possible values include: 'S0', 'S1',
34
- * 'G2'
35
- */
36
- name: Name;
37
- /**
38
- * Gets the sku tier. This is based on the SKU name.
39
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
40
- */
41
- readonly tier?: string;
42
- }
43
- /**
44
- * Metadata pertaining to creation and last modification of the resource.
45
- */
46
- export interface SystemData {
47
- /**
48
- * The identity that created the resource.
49
- */
50
- createdBy?: string;
51
- /**
52
- * The type of identity that created the resource. Possible values include: 'User',
53
- * 'Application', 'ManagedIdentity', 'Key'
54
- */
55
- createdByType?: CreatedByType;
56
- /**
57
- * The timestamp of resource creation (UTC).
58
- */
59
- createdAt?: Date;
60
- /**
61
- * The identity that last modified the resource.
62
- */
63
- lastModifiedBy?: string;
64
- /**
65
- * The type of identity that last modified the resource. Possible values include: 'User',
66
- * 'Application', 'ManagedIdentity', 'Key'
67
- */
68
- lastModifiedByType?: CreatedByType;
69
- /**
70
- * The timestamp of resource last modification (UTC)
71
- */
72
- lastModifiedAt?: Date;
73
- }
74
- /**
75
- * Additional Map account properties
76
- */
77
- export interface MapsAccountProperties {
78
- /**
79
- * A unique identifier for the maps account
80
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
81
- */
82
- readonly uniqueId?: string;
83
- /**
84
- * Allows toggle functionality on Azure Policy to disable Azure Maps local authentication
85
- * support. This will disable Shared Keys authentication from any usage. Default value: false.
86
- */
87
- disableLocalAuth?: boolean;
88
- /**
89
- * the state of the provisioning.
90
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
91
- */
92
- readonly provisioningState?: string;
93
- }
94
- /**
95
- * An Azure resource which represents access to a suite of Maps REST APIs.
96
- */
97
- export interface MapsAccount extends BaseResource {
98
- /**
99
- * The SKU of this account.
100
- */
101
- sku: Sku;
102
- /**
103
- * Get or Set Kind property. Possible values include: 'Gen1', 'Gen2'. Default value: 'Gen1'.
104
- */
105
- kind?: Kind;
106
- /**
107
- * The system meta data relating to this resource.
108
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
109
- */
110
- readonly systemData?: SystemData;
111
- /**
112
- * The map account properties.
113
- */
114
- properties?: MapsAccountProperties;
115
- }
116
- /**
117
- * Parameters used to update an existing Maps Account.
118
- */
119
- export interface MapsAccountUpdateParameters {
120
- /**
121
- * Gets or sets a list of key value pairs that describe the resource. These tags can be used in
122
- * viewing and grouping this resource (across resource groups). A maximum of 15 tags can be
123
- * provided for a resource. Each tag must have a key no greater than 128 characters and value no
124
- * greater than 256 characters.
125
- */
126
- tags?: {
127
- [propertyName: string]: string;
128
- };
129
- /**
130
- * Get or Set Kind property. Possible values include: 'Gen1', 'Gen2'. Default value: 'Gen1'.
131
- */
132
- kind?: Kind;
133
- /**
134
- * The SKU of this account.
135
- */
136
- sku?: Sku;
137
- /**
138
- * A unique identifier for the maps account
139
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
140
- */
141
- readonly uniqueId?: string;
142
- /**
143
- * Allows toggle functionality on Azure Policy to disable Azure Maps local authentication
144
- * support. This will disable Shared Keys authentication from any usage. Default value: false.
145
- */
146
- disableLocalAuth?: boolean;
147
- /**
148
- * the state of the provisioning.
149
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
150
- */
151
- readonly provisioningState?: string;
152
- }
153
- /**
154
- * Parameters used to update an existing Creator resource.
155
- */
156
- export interface CreatorUpdateParameters {
157
- /**
158
- * Gets or sets a list of key value pairs that describe the resource. These tags can be used in
159
- * viewing and grouping this resource (across resource groups). A maximum of 15 tags can be
160
- * provided for a resource. Each tag must have a key no greater than 128 characters and value no
161
- * greater than 256 characters.
162
- */
163
- tags?: {
164
- [propertyName: string]: string;
165
- };
166
- /**
167
- * The state of the resource provisioning, terminal states: Succeeded, Failed, Canceled
168
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
169
- */
170
- readonly provisioningState?: string;
171
- /**
172
- * The storage units to be allocated. Integer values from 1 to 100, inclusive.
173
- */
174
- storageUnits: number;
175
- }
176
- /**
177
- * Whether the operation refers to the primary or secondary key.
178
- */
179
- export interface MapsKeySpecification {
180
- /**
181
- * Whether the operation refers to the primary or secondary key. Possible values include:
182
- * 'primary', 'secondary'
183
- */
184
- keyType: KeyType;
185
- }
186
- /**
187
- * The set of keys which can be used to access the Maps REST APIs. Two keys are provided for key
188
- * rotation without interruption.
189
- */
190
- export interface MapsAccountKeys {
191
- /**
192
- * The last updated date and time of the primary key.
193
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
194
- */
195
- readonly primaryKeyLastUpdated?: string;
196
- /**
197
- * The primary key for accessing the Maps REST APIs.
198
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
199
- */
200
- readonly primaryKey?: string;
201
- /**
202
- * The secondary key for accessing the Maps REST APIs.
203
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
204
- */
205
- readonly secondaryKey?: string;
206
- /**
207
- * The last updated date and time of the secondary key.
208
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
209
- */
210
- readonly secondaryKeyLastUpdated?: string;
211
- }
212
- /**
213
- * Operation display payload
214
- */
215
- export interface OperationDisplay {
216
- /**
217
- * Resource provider of the operation
218
- */
219
- provider?: string;
220
- /**
221
- * Resource of the operation
222
- */
223
- resource?: string;
224
- /**
225
- * Localized friendly name for the operation
226
- */
227
- operation?: string;
228
- /**
229
- * Localized friendly description for the operation
230
- */
231
- description?: string;
232
- }
233
- /**
234
- * Dimension of map account, for example API Category, Api Name, Result Type, and Response Code.
235
- */
236
- export interface Dimension {
237
- /**
238
- * Display name of dimension.
239
- */
240
- name?: string;
241
- /**
242
- * Display name of dimension.
243
- */
244
- displayName?: string;
245
- }
246
- /**
247
- * Metric specification of operation.
248
- */
249
- export interface MetricSpecification {
250
- /**
251
- * Name of metric specification.
252
- */
253
- name?: string;
254
- /**
255
- * Display name of metric specification.
256
- */
257
- displayName?: string;
258
- /**
259
- * Display description of metric specification.
260
- */
261
- displayDescription?: string;
262
- /**
263
- * Unit could be Count.
264
- */
265
- unit?: string;
266
- /**
267
- * Dimensions of map account.
268
- */
269
- dimensions?: Dimension[];
270
- /**
271
- * Aggregation type could be Average.
272
- */
273
- aggregationType?: string;
274
- /**
275
- * The property to decide fill gap with zero or not.
276
- */
277
- fillGapWithZero?: boolean;
278
- /**
279
- * The category this metric specification belong to, could be Capacity.
280
- */
281
- category?: string;
282
- /**
283
- * Account Resource Id.
284
- */
285
- resourceIdDimensionNameOverride?: string;
286
- }
287
- /**
288
- * One property of operation, include metric specifications.
289
- */
290
- export interface ServiceSpecification {
291
- /**
292
- * Metric specifications of operation.
293
- */
294
- metricSpecifications?: MetricSpecification[];
295
- }
296
- /**
297
- * Operation detail payload
298
- */
299
- export interface OperationDetail {
300
- /**
301
- * Name of the operation
302
- */
303
- name?: string;
304
- /**
305
- * Indicates whether the operation is a data action
306
- */
307
- isDataAction?: boolean;
308
- /**
309
- * Display of the operation
310
- */
311
- display?: OperationDisplay;
312
- /**
313
- * Origin of the operation
314
- */
315
- origin?: string;
316
- /**
317
- * One property of operation, include metric specifications.
318
- */
319
- serviceSpecification?: ServiceSpecification;
320
- }
321
- /**
322
- * Common fields that are returned in the response for all Azure Resource Manager resources
323
- * @summary Resource
324
- */
325
- export interface Resource extends BaseResource {
326
- /**
327
- * Fully qualified resource ID for the resource. Ex -
328
- * /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
329
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
330
- */
331
- readonly id?: string;
332
- /**
333
- * The name of the resource
334
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
335
- */
336
- readonly name?: string;
337
- /**
338
- * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
339
- * "Microsoft.Storage/storageAccounts"
340
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
341
- */
342
- readonly type?: string;
343
- }
344
- /**
345
- * The resource model definition for a Azure Resource Manager proxy resource. It will not have tags
346
- * and a location
347
- * @summary Proxy Resource
348
- */
349
- export interface ProxyResource extends Resource {
350
- }
351
- /**
352
- * The resource model definition for an Azure Resource Manager resource with an etag.
353
- * @summary Entity Resource
354
- */
355
- export interface AzureEntityResource extends Resource {
356
- /**
357
- * Resource Etag.
358
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
359
- */
360
- readonly etag?: string;
361
- }
362
- /**
363
- * The resource model definition for an Azure Resource Manager tracked top level resource which has
364
- * 'tags' and a 'location'
365
- * @summary Tracked Resource
366
- */
367
- export interface TrackedResource extends Resource {
368
- /**
369
- * Resource tags.
370
- */
371
- tags?: {
372
- [propertyName: string]: string;
373
- };
374
- /**
375
- * The geo-location where the resource lives
376
- */
377
- location: string;
378
- }
379
- /**
380
- * The resource management error additional info.
381
- */
382
- export interface ErrorAdditionalInfo {
383
- /**
384
- * The additional info type.
385
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
386
- */
387
- readonly type?: string;
388
- /**
389
- * The additional info.
390
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
391
- */
392
- readonly info?: any;
393
- }
394
- /**
395
- * The error detail.
396
- */
397
- export interface ErrorDetail {
398
- /**
399
- * The error code.
400
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
401
- */
402
- readonly code?: string;
403
- /**
404
- * The error message.
405
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
406
- */
407
- readonly message?: string;
408
- /**
409
- * The error target.
410
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
411
- */
412
- readonly target?: string;
413
- /**
414
- * The error details.
415
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
416
- */
417
- readonly details?: ErrorDetail[];
418
- /**
419
- * The error additional info.
420
- * **NOTE: This property will not be serialized. It can only be populated by the server.**
421
- */
422
- readonly additionalInfo?: ErrorAdditionalInfo[];
423
- }
424
- /**
425
- * Common error response for all Azure Resource Manager APIs to return error details for failed
426
- * operations. (This also follows the OData error response format.).
427
- * @summary Error response
428
- */
429
- export interface ErrorResponse {
430
- /**
431
- * The error object.
432
- */
433
- error?: ErrorDetail;
434
- }
435
- /**
436
- * An interface representing AzureMapsManagementClientOptions.
437
- */
438
- export interface AzureMapsManagementClientOptions extends AzureServiceClientOptions {
439
- baseUri?: string;
440
- }
441
- /**
442
- * @interface
443
- * A list of Maps Accounts.
444
- * @extends Array<MapsAccount>
445
- */
446
- export interface MapsAccounts extends Array<MapsAccount> {
447
- /**
448
- * URL client should use to fetch the next page (per server side paging).
449
- * It's null for now, added for future use.
450
- */
451
- nextLink?: string;
452
- }
453
- /**
454
- * @interface
455
- * The set of operations available for Maps.
456
- * @extends Array<OperationDetail>
457
- */
458
- export interface MapsOperations extends Array<OperationDetail> {
459
- /**
460
- * URL client should use to fetch the next page (per server side paging).
461
- * It's null for now, added for future use.
462
- */
463
- nextLink?: string;
464
- }
465
- /**
466
- * @interface
467
- * A list of Creator resources.
468
- * @extends Array<Creator>
469
- */
470
- export interface CreatorList extends Array<Creator> {
471
- /**
472
- * URL client should use to fetch the next page (per server side paging).
473
- * It's null for now, added for future use.
474
- */
475
- nextLink?: string;
476
- }
477
- /**
478
- * Defines values for Name.
479
- * Possible values include: 'S0', 'S1', 'G2'
480
- * @readonly
481
- * @enum {string}
482
- */
483
- export declare type Name = "S0" | "S1" | "G2";
484
- /**
485
- * Defines values for Kind.
486
- * Possible values include: 'Gen1', 'Gen2'
487
- * @readonly
488
- * @enum {string}
489
- */
490
- export declare type Kind = "Gen1" | "Gen2";
491
- /**
492
- * Defines values for CreatedByType.
493
- * Possible values include: 'User', 'Application', 'ManagedIdentity', 'Key'
494
- * @readonly
495
- * @enum {string}
496
- */
497
- export declare type CreatedByType = "User" | "Application" | "ManagedIdentity" | "Key";
498
- /**
499
- * Defines values for KeyType.
500
- * Possible values include: 'primary', 'secondary'
501
- * @readonly
502
- * @enum {string}
503
- */
504
- export declare type KeyType = "primary" | "secondary";
505
- /**
506
- * Contains response data for the createOrUpdate operation.
507
- */
508
- export declare type AccountsCreateOrUpdateResponse = MapsAccount & {
509
- /**
510
- * The underlying HTTP response.
511
- */
512
- _response: msRest.HttpResponse & {
513
- /**
514
- * The response body as text (string format)
515
- */
516
- bodyAsText: string;
517
- /**
518
- * The response body as parsed JSON or XML
519
- */
520
- parsedBody: MapsAccount;
521
- };
522
- };
523
- /**
524
- * Contains response data for the update operation.
525
- */
526
- export declare type AccountsUpdateResponse = MapsAccount & {
527
- /**
528
- * The underlying HTTP response.
529
- */
530
- _response: msRest.HttpResponse & {
531
- /**
532
- * The response body as text (string format)
533
- */
534
- bodyAsText: string;
535
- /**
536
- * The response body as parsed JSON or XML
537
- */
538
- parsedBody: MapsAccount;
539
- };
540
- };
541
- /**
542
- * Contains response data for the get operation.
543
- */
544
- export declare type AccountsGetResponse = MapsAccount & {
545
- /**
546
- * The underlying HTTP response.
547
- */
548
- _response: msRest.HttpResponse & {
549
- /**
550
- * The response body as text (string format)
551
- */
552
- bodyAsText: string;
553
- /**
554
- * The response body as parsed JSON or XML
555
- */
556
- parsedBody: MapsAccount;
557
- };
558
- };
559
- /**
560
- * Contains response data for the listByResourceGroup operation.
561
- */
562
- export declare type AccountsListByResourceGroupResponse = MapsAccounts & {
563
- /**
564
- * The underlying HTTP response.
565
- */
566
- _response: msRest.HttpResponse & {
567
- /**
568
- * The response body as text (string format)
569
- */
570
- bodyAsText: string;
571
- /**
572
- * The response body as parsed JSON or XML
573
- */
574
- parsedBody: MapsAccounts;
575
- };
576
- };
577
- /**
578
- * Contains response data for the listBySubscription operation.
579
- */
580
- export declare type AccountsListBySubscriptionResponse = MapsAccounts & {
581
- /**
582
- * The underlying HTTP response.
583
- */
584
- _response: msRest.HttpResponse & {
585
- /**
586
- * The response body as text (string format)
587
- */
588
- bodyAsText: string;
589
- /**
590
- * The response body as parsed JSON or XML
591
- */
592
- parsedBody: MapsAccounts;
593
- };
594
- };
595
- /**
596
- * Contains response data for the listKeys operation.
597
- */
598
- export declare type AccountsListKeysResponse = MapsAccountKeys & {
599
- /**
600
- * The underlying HTTP response.
601
- */
602
- _response: msRest.HttpResponse & {
603
- /**
604
- * The response body as text (string format)
605
- */
606
- bodyAsText: string;
607
- /**
608
- * The response body as parsed JSON or XML
609
- */
610
- parsedBody: MapsAccountKeys;
611
- };
612
- };
613
- /**
614
- * Contains response data for the regenerateKeys operation.
615
- */
616
- export declare type AccountsRegenerateKeysResponse = MapsAccountKeys & {
617
- /**
618
- * The underlying HTTP response.
619
- */
620
- _response: msRest.HttpResponse & {
621
- /**
622
- * The response body as text (string format)
623
- */
624
- bodyAsText: string;
625
- /**
626
- * The response body as parsed JSON or XML
627
- */
628
- parsedBody: MapsAccountKeys;
629
- };
630
- };
631
- /**
632
- * Contains response data for the listByResourceGroupNext operation.
633
- */
634
- export declare type AccountsListByResourceGroupNextResponse = MapsAccounts & {
635
- /**
636
- * The underlying HTTP response.
637
- */
638
- _response: msRest.HttpResponse & {
639
- /**
640
- * The response body as text (string format)
641
- */
642
- bodyAsText: string;
643
- /**
644
- * The response body as parsed JSON or XML
645
- */
646
- parsedBody: MapsAccounts;
647
- };
648
- };
649
- /**
650
- * Contains response data for the listBySubscriptionNext operation.
651
- */
652
- export declare type AccountsListBySubscriptionNextResponse = MapsAccounts & {
653
- /**
654
- * The underlying HTTP response.
655
- */
656
- _response: msRest.HttpResponse & {
657
- /**
658
- * The response body as text (string format)
659
- */
660
- bodyAsText: string;
661
- /**
662
- * The response body as parsed JSON or XML
663
- */
664
- parsedBody: MapsAccounts;
665
- };
666
- };
667
- /**
668
- * Contains response data for the listOperations operation.
669
- */
670
- export declare type MapsListOperationsResponse = MapsOperations & {
671
- /**
672
- * The underlying HTTP response.
673
- */
674
- _response: msRest.HttpResponse & {
675
- /**
676
- * The response body as text (string format)
677
- */
678
- bodyAsText: string;
679
- /**
680
- * The response body as parsed JSON or XML
681
- */
682
- parsedBody: MapsOperations;
683
- };
684
- };
685
- /**
686
- * Contains response data for the listOperationsNext operation.
687
- */
688
- export declare type MapsListOperationsNextResponse = MapsOperations & {
689
- /**
690
- * The underlying HTTP response.
691
- */
692
- _response: msRest.HttpResponse & {
693
- /**
694
- * The response body as text (string format)
695
- */
696
- bodyAsText: string;
697
- /**
698
- * The response body as parsed JSON or XML
699
- */
700
- parsedBody: MapsOperations;
701
- };
702
- };
703
- /**
704
- * Contains response data for the listByAccount operation.
705
- */
706
- export declare type CreatorsListByAccountResponse = CreatorList & {
707
- /**
708
- * The underlying HTTP response.
709
- */
710
- _response: msRest.HttpResponse & {
711
- /**
712
- * The response body as text (string format)
713
- */
714
- bodyAsText: string;
715
- /**
716
- * The response body as parsed JSON or XML
717
- */
718
- parsedBody: CreatorList;
719
- };
720
- };
721
- /**
722
- * Contains response data for the createOrUpdate operation.
723
- */
724
- export declare type CreatorsCreateOrUpdateResponse = Creator & {
725
- /**
726
- * The underlying HTTP response.
727
- */
728
- _response: msRest.HttpResponse & {
729
- /**
730
- * The response body as text (string format)
731
- */
732
- bodyAsText: string;
733
- /**
734
- * The response body as parsed JSON or XML
735
- */
736
- parsedBody: Creator;
737
- };
738
- };
739
- /**
740
- * Contains response data for the update operation.
741
- */
742
- export declare type CreatorsUpdateResponse = Creator & {
743
- /**
744
- * The underlying HTTP response.
745
- */
746
- _response: msRest.HttpResponse & {
747
- /**
748
- * The response body as text (string format)
749
- */
750
- bodyAsText: string;
751
- /**
752
- * The response body as parsed JSON or XML
753
- */
754
- parsedBody: Creator;
755
- };
756
- };
757
- /**
758
- * Contains response data for the get operation.
759
- */
760
- export declare type CreatorsGetResponse = Creator & {
761
- /**
762
- * The underlying HTTP response.
763
- */
764
- _response: msRest.HttpResponse & {
765
- /**
766
- * The response body as text (string format)
767
- */
768
- bodyAsText: string;
769
- /**
770
- * The response body as parsed JSON or XML
771
- */
772
- parsedBody: Creator;
773
- };
774
- };
775
- /**
776
- * Contains response data for the listByAccountNext operation.
777
- */
778
- export declare type CreatorsListByAccountNextResponse = CreatorList & {
779
- /**
780
- * The underlying HTTP response.
781
- */
782
- _response: msRest.HttpResponse & {
783
- /**
784
- * The response body as text (string format)
785
- */
786
- bodyAsText: string;
787
- /**
788
- * The response body as parsed JSON or XML
789
- */
790
- parsedBody: CreatorList;
791
- };
792
- };
793
- //# sourceMappingURL=index.d.ts.map