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