@azure/arm-maps 3.1.1-alpha.20250620.1 → 3.1.1-alpha.20250718.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.
package/package.json
CHANGED
|
@@ -1,543 +1,543 @@
|
|
|
1
|
-
## API Report File for "@azure/arm-maps"
|
|
2
|
-
|
|
3
|
-
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
-
|
|
5
|
-
```ts
|
|
6
|
-
|
|
7
|
-
import * as coreAuth from '@azure/core-auth';
|
|
8
|
-
import * as coreClient from '@azure/core-client';
|
|
9
|
-
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
|
10
|
-
|
|
11
|
-
// @public
|
|
12
|
-
export interface Accounts {
|
|
13
|
-
createOrUpdate(resourceGroupName: string, accountName: string, mapsAccount: MapsAccount, options?: AccountsCreateOrUpdateOptionalParams): Promise<AccountsCreateOrUpdateResponse>;
|
|
14
|
-
delete(resourceGroupName: string, accountName: string, options?: AccountsDeleteOptionalParams): Promise<void>;
|
|
15
|
-
get(resourceGroupName: string, accountName: string, options?: AccountsGetOptionalParams): Promise<AccountsGetResponse>;
|
|
16
|
-
listByResourceGroup(resourceGroupName: string, options?: AccountsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<MapsAccount>;
|
|
17
|
-
listBySubscription(options?: AccountsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<MapsAccount>;
|
|
18
|
-
listKeys(resourceGroupName: string, accountName: string, options?: AccountsListKeysOptionalParams): Promise<AccountsListKeysResponse>;
|
|
19
|
-
listSas(resourceGroupName: string, accountName: string, mapsAccountSasParameters: AccountSasParameters, options?: AccountsListSasOptionalParams): Promise<AccountsListSasResponse>;
|
|
20
|
-
regenerateKeys(resourceGroupName: string, accountName: string, keySpecification: MapsKeySpecification, options?: AccountsRegenerateKeysOptionalParams): Promise<AccountsRegenerateKeysResponse>;
|
|
21
|
-
update(resourceGroupName: string, accountName: string, mapsAccountUpdateParameters: MapsAccountUpdateParameters, options?: AccountsUpdateOptionalParams): Promise<AccountsUpdateResponse>;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
// @public
|
|
25
|
-
export interface AccountSasParameters {
|
|
26
|
-
expiry: string;
|
|
27
|
-
maxRatePerSecond: number;
|
|
28
|
-
principalId: string;
|
|
29
|
-
regions?: string[];
|
|
30
|
-
signingKey: SigningKey;
|
|
31
|
-
start: string;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
// @public
|
|
35
|
-
export interface AccountsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
// @public
|
|
39
|
-
export type AccountsCreateOrUpdateResponse = MapsAccount;
|
|
40
|
-
|
|
41
|
-
// @public
|
|
42
|
-
export interface AccountsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
// @public
|
|
46
|
-
export interface AccountsGetOptionalParams extends coreClient.OperationOptions {
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
// @public
|
|
50
|
-
export type AccountsGetResponse = MapsAccount;
|
|
51
|
-
|
|
52
|
-
// @public
|
|
53
|
-
export interface AccountsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
// @public
|
|
57
|
-
export type AccountsListByResourceGroupNextResponse = MapsAccounts;
|
|
58
|
-
|
|
59
|
-
// @public
|
|
60
|
-
export interface AccountsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
// @public
|
|
64
|
-
export type AccountsListByResourceGroupResponse = MapsAccounts;
|
|
65
|
-
|
|
66
|
-
// @public
|
|
67
|
-
export interface AccountsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
// @public
|
|
71
|
-
export type AccountsListBySubscriptionNextResponse = MapsAccounts;
|
|
72
|
-
|
|
73
|
-
// @public
|
|
74
|
-
export interface AccountsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
// @public
|
|
78
|
-
export type AccountsListBySubscriptionResponse = MapsAccounts;
|
|
79
|
-
|
|
80
|
-
// @public
|
|
81
|
-
export interface AccountsListKeysOptionalParams extends coreClient.OperationOptions {
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
// @public
|
|
85
|
-
export type AccountsListKeysResponse = MapsAccountKeys;
|
|
86
|
-
|
|
87
|
-
// @public
|
|
88
|
-
export interface AccountsListSasOptionalParams extends coreClient.OperationOptions {
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
// @public
|
|
92
|
-
export type AccountsListSasResponse = MapsAccountSasToken;
|
|
93
|
-
|
|
94
|
-
// @public
|
|
95
|
-
export interface AccountsRegenerateKeysOptionalParams extends coreClient.OperationOptions {
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
// @public
|
|
99
|
-
export type AccountsRegenerateKeysResponse = MapsAccountKeys;
|
|
100
|
-
|
|
101
|
-
// @public
|
|
102
|
-
export interface AccountsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
// @public
|
|
106
|
-
export type AccountsUpdateResponse = MapsAccount;
|
|
107
|
-
|
|
108
|
-
// @public (undocumented)
|
|
109
|
-
export class AzureMapsManagementClient extends coreClient.ServiceClient {
|
|
110
|
-
// (undocumented)
|
|
111
|
-
$host: string;
|
|
112
|
-
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: AzureMapsManagementClientOptionalParams);
|
|
113
|
-
constructor(credentials: coreAuth.TokenCredential, options?: AzureMapsManagementClientOptionalParams);
|
|
114
|
-
// (undocumented)
|
|
115
|
-
accounts: Accounts;
|
|
116
|
-
// (undocumented)
|
|
117
|
-
apiVersion: string;
|
|
118
|
-
// (undocumented)
|
|
119
|
-
creators: Creators;
|
|
120
|
-
// (undocumented)
|
|
121
|
-
maps: Maps;
|
|
122
|
-
// (undocumented)
|
|
123
|
-
subscriptionId?: string;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
// @public
|
|
127
|
-
export interface AzureMapsManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
128
|
-
$host?: string;
|
|
129
|
-
apiVersion?: string;
|
|
130
|
-
endpoint?: string;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
// @public
|
|
134
|
-
export interface CorsRule {
|
|
135
|
-
allowedOrigins: string[];
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
// @public
|
|
139
|
-
export interface CorsRules {
|
|
140
|
-
corsRules?: CorsRule[];
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
// @public
|
|
144
|
-
export type CreatedByType = string;
|
|
145
|
-
|
|
146
|
-
// @public
|
|
147
|
-
export interface Creator extends TrackedResource {
|
|
148
|
-
properties: CreatorProperties;
|
|
149
|
-
readonly systemData?: SystemData;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
// @public
|
|
153
|
-
export interface CreatorList {
|
|
154
|
-
nextLink?: string;
|
|
155
|
-
readonly value?: Creator[];
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
// @public
|
|
159
|
-
export interface CreatorProperties {
|
|
160
|
-
readonly provisioningState?: string;
|
|
161
|
-
storageUnits: number;
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
// @public
|
|
165
|
-
export interface Creators {
|
|
166
|
-
createOrUpdate(resourceGroupName: string, accountName: string, creatorName: string, creatorResource: Creator, options?: CreatorsCreateOrUpdateOptionalParams): Promise<CreatorsCreateOrUpdateResponse>;
|
|
167
|
-
delete(resourceGroupName: string, accountName: string, creatorName: string, options?: CreatorsDeleteOptionalParams): Promise<void>;
|
|
168
|
-
get(resourceGroupName: string, accountName: string, creatorName: string, options?: CreatorsGetOptionalParams): Promise<CreatorsGetResponse>;
|
|
169
|
-
listByAccount(resourceGroupName: string, accountName: string, options?: CreatorsListByAccountOptionalParams): PagedAsyncIterableIterator<Creator>;
|
|
170
|
-
update(resourceGroupName: string, accountName: string, creatorName: string, creatorUpdateParameters: CreatorUpdateParameters, options?: CreatorsUpdateOptionalParams): Promise<CreatorsUpdateResponse>;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
// @public
|
|
174
|
-
export interface CreatorsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
// @public
|
|
178
|
-
export type CreatorsCreateOrUpdateResponse = Creator;
|
|
179
|
-
|
|
180
|
-
// @public
|
|
181
|
-
export interface CreatorsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
182
|
-
}
|
|
183
|
-
|
|
184
|
-
// @public
|
|
185
|
-
export interface CreatorsGetOptionalParams extends coreClient.OperationOptions {
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
// @public
|
|
189
|
-
export type CreatorsGetResponse = Creator;
|
|
190
|
-
|
|
191
|
-
// @public
|
|
192
|
-
export interface CreatorsListByAccountNextOptionalParams extends coreClient.OperationOptions {
|
|
193
|
-
}
|
|
194
|
-
|
|
195
|
-
// @public
|
|
196
|
-
export type CreatorsListByAccountNextResponse = CreatorList;
|
|
197
|
-
|
|
198
|
-
// @public
|
|
199
|
-
export interface CreatorsListByAccountOptionalParams extends coreClient.OperationOptions {
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
// @public
|
|
203
|
-
export type CreatorsListByAccountResponse = CreatorList;
|
|
204
|
-
|
|
205
|
-
// @public
|
|
206
|
-
export interface CreatorsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
// @public
|
|
210
|
-
export type CreatorsUpdateResponse = Creator;
|
|
211
|
-
|
|
212
|
-
// @public
|
|
213
|
-
export interface CreatorUpdateParameters {
|
|
214
|
-
readonly provisioningState?: string;
|
|
215
|
-
storageUnits?: number;
|
|
216
|
-
tags?: {
|
|
217
|
-
[propertyName: string]: string;
|
|
218
|
-
};
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
// @public
|
|
222
|
-
export interface CustomerManagedKeyEncryption {
|
|
223
|
-
keyEncryptionKeyIdentity?: CustomerManagedKeyEncryptionKeyIdentity;
|
|
224
|
-
keyEncryptionKeyUrl?: string;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
// @public
|
|
228
|
-
export interface CustomerManagedKeyEncryptionKeyIdentity {
|
|
229
|
-
delegatedIdentityClientId?: string;
|
|
230
|
-
identityType?: IdentityType;
|
|
231
|
-
userAssignedIdentityResourceId?: string;
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
// @public
|
|
235
|
-
export interface Dimension {
|
|
236
|
-
displayName?: string;
|
|
237
|
-
internalMetricName?: string;
|
|
238
|
-
internalName?: string;
|
|
239
|
-
name?: string;
|
|
240
|
-
sourceMdmNamespace?: string;
|
|
241
|
-
toBeExportedToShoebox?: boolean;
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
// @public
|
|
245
|
-
export interface Encryption {
|
|
246
|
-
customerManagedKeyEncryption?: CustomerManagedKeyEncryption;
|
|
247
|
-
infrastructureEncryption?: InfrastructureEncryption;
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
// @public
|
|
251
|
-
export interface ErrorAdditionalInfo {
|
|
252
|
-
readonly info?: Record<string, unknown>;
|
|
253
|
-
readonly type?: string;
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
// @public
|
|
257
|
-
export interface ErrorDetail {
|
|
258
|
-
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
259
|
-
readonly code?: string;
|
|
260
|
-
readonly details?: ErrorDetail[];
|
|
261
|
-
readonly message?: string;
|
|
262
|
-
readonly target?: string;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
// @public
|
|
266
|
-
export interface ErrorResponse {
|
|
267
|
-
error?: ErrorDetail;
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
// @public
|
|
271
|
-
export function getContinuationToken(page: unknown): string | undefined;
|
|
272
|
-
|
|
273
|
-
// @public
|
|
274
|
-
export type IdentityType = string;
|
|
275
|
-
|
|
276
|
-
// @public
|
|
277
|
-
export type InfrastructureEncryption = string;
|
|
278
|
-
|
|
279
|
-
// @public
|
|
280
|
-
export type KeyType = string;
|
|
281
|
-
|
|
282
|
-
// @public
|
|
283
|
-
export type Kind = string;
|
|
284
|
-
|
|
285
|
-
// @public
|
|
286
|
-
export enum KnownCreatedByType {
|
|
287
|
-
Application = "Application",
|
|
288
|
-
Key = "Key",
|
|
289
|
-
ManagedIdentity = "ManagedIdentity",
|
|
290
|
-
User = "User"
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
// @public
|
|
294
|
-
export enum KnownIdentityType {
|
|
295
|
-
DelegatedResourceIdentity = "delegatedResourceIdentity",
|
|
296
|
-
SystemAssignedIdentity = "systemAssignedIdentity",
|
|
297
|
-
UserAssignedIdentity = "userAssignedIdentity"
|
|
298
|
-
}
|
|
299
|
-
|
|
300
|
-
// @public
|
|
301
|
-
export enum KnownInfrastructureEncryption {
|
|
302
|
-
Disabled = "disabled",
|
|
303
|
-
Enabled = "enabled"
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
// @public
|
|
307
|
-
export enum KnownKeyType {
|
|
308
|
-
Primary = "primary",
|
|
309
|
-
Secondary = "secondary"
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
// @public
|
|
313
|
-
export enum KnownKind {
|
|
314
|
-
Gen1 = "Gen1",
|
|
315
|
-
Gen2 = "Gen2"
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
// @public
|
|
319
|
-
export enum KnownManagedServiceIdentityType {
|
|
320
|
-
None = "None",
|
|
321
|
-
SystemAssigned = "SystemAssigned",
|
|
322
|
-
SystemAssignedUserAssigned = "SystemAssigned, UserAssigned",
|
|
323
|
-
UserAssigned = "UserAssigned"
|
|
324
|
-
}
|
|
325
|
-
|
|
326
|
-
// @public
|
|
327
|
-
export enum KnownName {
|
|
328
|
-
G2 = "G2",
|
|
329
|
-
S0 = "S0",
|
|
330
|
-
S1 = "S1"
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
// @public
|
|
334
|
-
export enum KnownSigningKey {
|
|
335
|
-
ManagedIdentity = "managedIdentity",
|
|
336
|
-
PrimaryKey = "primaryKey",
|
|
337
|
-
SecondaryKey = "secondaryKey"
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
// @public
|
|
341
|
-
export interface LinkedResource {
|
|
342
|
-
id: string;
|
|
343
|
-
uniqueName: string;
|
|
344
|
-
}
|
|
345
|
-
|
|
346
|
-
// @public
|
|
347
|
-
export interface ManagedServiceIdentity {
|
|
348
|
-
readonly principalId?: string;
|
|
349
|
-
readonly tenantId?: string;
|
|
350
|
-
type: ManagedServiceIdentityType;
|
|
351
|
-
userAssignedIdentities?: {
|
|
352
|
-
[propertyName: string]: UserAssignedIdentity;
|
|
353
|
-
};
|
|
354
|
-
}
|
|
355
|
-
|
|
356
|
-
// @public
|
|
357
|
-
export type ManagedServiceIdentityType = string;
|
|
358
|
-
|
|
359
|
-
// @public
|
|
360
|
-
export interface Maps {
|
|
361
|
-
listOperations(options?: MapsListOperationsOptionalParams): PagedAsyncIterableIterator<OperationDetail>;
|
|
362
|
-
listSubscriptionOperations(options?: MapsListSubscriptionOperationsOptionalParams): PagedAsyncIterableIterator<OperationDetail>;
|
|
363
|
-
}
|
|
364
|
-
|
|
365
|
-
// @public
|
|
366
|
-
export interface MapsAccount extends TrackedResource {
|
|
367
|
-
identity?: ManagedServiceIdentity;
|
|
368
|
-
kind?: Kind;
|
|
369
|
-
properties?: MapsAccountProperties;
|
|
370
|
-
sku: Sku;
|
|
371
|
-
readonly systemData?: SystemData;
|
|
372
|
-
}
|
|
373
|
-
|
|
374
|
-
// @public
|
|
375
|
-
export interface MapsAccountKeys {
|
|
376
|
-
readonly primaryKey?: string;
|
|
377
|
-
readonly primaryKeyLastUpdated?: string;
|
|
378
|
-
readonly secondaryKey?: string;
|
|
379
|
-
readonly secondaryKeyLastUpdated?: string;
|
|
380
|
-
}
|
|
381
|
-
|
|
382
|
-
// @public
|
|
383
|
-
export interface MapsAccountProperties {
|
|
384
|
-
cors?: CorsRules;
|
|
385
|
-
disableLocalAuth?: boolean;
|
|
386
|
-
encryption?: Encryption;
|
|
387
|
-
linkedResources?: LinkedResource[];
|
|
388
|
-
readonly provisioningState?: string;
|
|
389
|
-
readonly uniqueId?: string;
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
// @public
|
|
393
|
-
export interface MapsAccounts {
|
|
394
|
-
nextLink?: string;
|
|
395
|
-
readonly value?: MapsAccount[];
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
// @public
|
|
399
|
-
export interface MapsAccountSasToken {
|
|
400
|
-
readonly accountSasToken?: string;
|
|
401
|
-
}
|
|
402
|
-
|
|
403
|
-
// @public
|
|
404
|
-
export interface MapsAccountUpdateParameters {
|
|
405
|
-
cors?: CorsRules;
|
|
406
|
-
disableLocalAuth?: boolean;
|
|
407
|
-
encryption?: Encryption;
|
|
408
|
-
identity?: ManagedServiceIdentity;
|
|
409
|
-
kind?: Kind;
|
|
410
|
-
linkedResources?: LinkedResource[];
|
|
411
|
-
readonly provisioningState?: string;
|
|
412
|
-
sku?: Sku;
|
|
413
|
-
tags?: {
|
|
414
|
-
[propertyName: string]: string;
|
|
415
|
-
};
|
|
416
|
-
readonly uniqueId?: string;
|
|
417
|
-
}
|
|
418
|
-
|
|
419
|
-
// @public
|
|
420
|
-
export interface MapsKeySpecification {
|
|
421
|
-
keyType: KeyType;
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
// @public
|
|
425
|
-
export interface MapsListOperationsNextOptionalParams extends coreClient.OperationOptions {
|
|
426
|
-
}
|
|
427
|
-
|
|
428
|
-
// @public
|
|
429
|
-
export type MapsListOperationsNextResponse = MapsOperations;
|
|
430
|
-
|
|
431
|
-
// @public
|
|
432
|
-
export interface MapsListOperationsOptionalParams extends coreClient.OperationOptions {
|
|
433
|
-
}
|
|
434
|
-
|
|
435
|
-
// @public
|
|
436
|
-
export type MapsListOperationsResponse = MapsOperations;
|
|
437
|
-
|
|
438
|
-
// @public
|
|
439
|
-
export interface MapsListSubscriptionOperationsNextOptionalParams extends coreClient.OperationOptions {
|
|
440
|
-
}
|
|
441
|
-
|
|
442
|
-
// @public
|
|
443
|
-
export type MapsListSubscriptionOperationsNextResponse = MapsOperations;
|
|
444
|
-
|
|
445
|
-
// @public
|
|
446
|
-
export interface MapsListSubscriptionOperationsOptionalParams extends coreClient.OperationOptions {
|
|
447
|
-
}
|
|
448
|
-
|
|
449
|
-
// @public
|
|
450
|
-
export type MapsListSubscriptionOperationsResponse = MapsOperations;
|
|
451
|
-
|
|
452
|
-
// @public
|
|
453
|
-
export interface MapsOperations {
|
|
454
|
-
nextLink?: string;
|
|
455
|
-
readonly value?: OperationDetail[];
|
|
456
|
-
}
|
|
457
|
-
|
|
458
|
-
// @public
|
|
459
|
-
export interface MetricSpecification {
|
|
460
|
-
aggregationType?: string;
|
|
461
|
-
category?: string;
|
|
462
|
-
dimensions?: Dimension[];
|
|
463
|
-
displayDescription?: string;
|
|
464
|
-
displayName?: string;
|
|
465
|
-
fillGapWithZero?: boolean;
|
|
466
|
-
internalMetricName?: string;
|
|
467
|
-
lockAggregationType?: string;
|
|
468
|
-
name?: string;
|
|
469
|
-
resourceIdDimensionNameOverride?: string;
|
|
470
|
-
sourceMdmAccount?: string;
|
|
471
|
-
sourceMdmNamespace?: string;
|
|
472
|
-
supportedAggregationTypes?: string;
|
|
473
|
-
unit?: string;
|
|
474
|
-
}
|
|
475
|
-
|
|
476
|
-
// @public
|
|
477
|
-
export type Name = string;
|
|
478
|
-
|
|
479
|
-
// @public
|
|
480
|
-
export interface OperationDetail {
|
|
481
|
-
display?: OperationDisplay;
|
|
482
|
-
isDataAction?: boolean;
|
|
483
|
-
name?: string;
|
|
484
|
-
origin?: string;
|
|
485
|
-
serviceSpecification?: ServiceSpecification;
|
|
486
|
-
}
|
|
487
|
-
|
|
488
|
-
// @public
|
|
489
|
-
export interface OperationDisplay {
|
|
490
|
-
description?: string;
|
|
491
|
-
operation?: string;
|
|
492
|
-
provider?: string;
|
|
493
|
-
resource?: string;
|
|
494
|
-
}
|
|
495
|
-
|
|
496
|
-
// @public
|
|
497
|
-
export interface Resource {
|
|
498
|
-
readonly id?: string;
|
|
499
|
-
readonly name?: string;
|
|
500
|
-
readonly type?: string;
|
|
501
|
-
}
|
|
502
|
-
|
|
503
|
-
// @public
|
|
504
|
-
export interface ServiceSpecification {
|
|
505
|
-
metricSpecifications?: MetricSpecification[];
|
|
506
|
-
}
|
|
507
|
-
|
|
508
|
-
// @public
|
|
509
|
-
export type SigningKey = string;
|
|
510
|
-
|
|
511
|
-
// @public
|
|
512
|
-
export interface Sku {
|
|
513
|
-
name: Name;
|
|
514
|
-
readonly tier?: string;
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
-
// @public
|
|
518
|
-
export interface SystemData {
|
|
519
|
-
createdAt?: Date;
|
|
520
|
-
createdBy?: string;
|
|
521
|
-
createdByType?: CreatedByType;
|
|
522
|
-
lastModifiedAt?: Date;
|
|
523
|
-
lastModifiedBy?: string;
|
|
524
|
-
lastModifiedByType?: CreatedByType;
|
|
525
|
-
}
|
|
526
|
-
|
|
527
|
-
// @public
|
|
528
|
-
export interface TrackedResource extends Resource {
|
|
529
|
-
location: string;
|
|
530
|
-
tags?: {
|
|
531
|
-
[propertyName: string]: string;
|
|
532
|
-
};
|
|
533
|
-
}
|
|
534
|
-
|
|
535
|
-
// @public
|
|
536
|
-
export interface UserAssignedIdentity {
|
|
537
|
-
readonly clientId?: string;
|
|
538
|
-
readonly principalId?: string;
|
|
539
|
-
}
|
|
540
|
-
|
|
541
|
-
// (No @packageDocumentation comment for this package)
|
|
542
|
-
|
|
543
|
-
```
|
|
1
|
+
## API Report File for "@azure/arm-maps"
|
|
2
|
+
|
|
3
|
+
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
+
|
|
5
|
+
```ts
|
|
6
|
+
|
|
7
|
+
import * as coreAuth from '@azure/core-auth';
|
|
8
|
+
import * as coreClient from '@azure/core-client';
|
|
9
|
+
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
|
10
|
+
|
|
11
|
+
// @public
|
|
12
|
+
export interface Accounts {
|
|
13
|
+
createOrUpdate(resourceGroupName: string, accountName: string, mapsAccount: MapsAccount, options?: AccountsCreateOrUpdateOptionalParams): Promise<AccountsCreateOrUpdateResponse>;
|
|
14
|
+
delete(resourceGroupName: string, accountName: string, options?: AccountsDeleteOptionalParams): Promise<void>;
|
|
15
|
+
get(resourceGroupName: string, accountName: string, options?: AccountsGetOptionalParams): Promise<AccountsGetResponse>;
|
|
16
|
+
listByResourceGroup(resourceGroupName: string, options?: AccountsListByResourceGroupOptionalParams): PagedAsyncIterableIterator<MapsAccount>;
|
|
17
|
+
listBySubscription(options?: AccountsListBySubscriptionOptionalParams): PagedAsyncIterableIterator<MapsAccount>;
|
|
18
|
+
listKeys(resourceGroupName: string, accountName: string, options?: AccountsListKeysOptionalParams): Promise<AccountsListKeysResponse>;
|
|
19
|
+
listSas(resourceGroupName: string, accountName: string, mapsAccountSasParameters: AccountSasParameters, options?: AccountsListSasOptionalParams): Promise<AccountsListSasResponse>;
|
|
20
|
+
regenerateKeys(resourceGroupName: string, accountName: string, keySpecification: MapsKeySpecification, options?: AccountsRegenerateKeysOptionalParams): Promise<AccountsRegenerateKeysResponse>;
|
|
21
|
+
update(resourceGroupName: string, accountName: string, mapsAccountUpdateParameters: MapsAccountUpdateParameters, options?: AccountsUpdateOptionalParams): Promise<AccountsUpdateResponse>;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
// @public
|
|
25
|
+
export interface AccountSasParameters {
|
|
26
|
+
expiry: string;
|
|
27
|
+
maxRatePerSecond: number;
|
|
28
|
+
principalId: string;
|
|
29
|
+
regions?: string[];
|
|
30
|
+
signingKey: SigningKey;
|
|
31
|
+
start: string;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
// @public
|
|
35
|
+
export interface AccountsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// @public
|
|
39
|
+
export type AccountsCreateOrUpdateResponse = MapsAccount;
|
|
40
|
+
|
|
41
|
+
// @public
|
|
42
|
+
export interface AccountsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
// @public
|
|
46
|
+
export interface AccountsGetOptionalParams extends coreClient.OperationOptions {
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
// @public
|
|
50
|
+
export type AccountsGetResponse = MapsAccount;
|
|
51
|
+
|
|
52
|
+
// @public
|
|
53
|
+
export interface AccountsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
// @public
|
|
57
|
+
export type AccountsListByResourceGroupNextResponse = MapsAccounts;
|
|
58
|
+
|
|
59
|
+
// @public
|
|
60
|
+
export interface AccountsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
// @public
|
|
64
|
+
export type AccountsListByResourceGroupResponse = MapsAccounts;
|
|
65
|
+
|
|
66
|
+
// @public
|
|
67
|
+
export interface AccountsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
// @public
|
|
71
|
+
export type AccountsListBySubscriptionNextResponse = MapsAccounts;
|
|
72
|
+
|
|
73
|
+
// @public
|
|
74
|
+
export interface AccountsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
// @public
|
|
78
|
+
export type AccountsListBySubscriptionResponse = MapsAccounts;
|
|
79
|
+
|
|
80
|
+
// @public
|
|
81
|
+
export interface AccountsListKeysOptionalParams extends coreClient.OperationOptions {
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
// @public
|
|
85
|
+
export type AccountsListKeysResponse = MapsAccountKeys;
|
|
86
|
+
|
|
87
|
+
// @public
|
|
88
|
+
export interface AccountsListSasOptionalParams extends coreClient.OperationOptions {
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
// @public
|
|
92
|
+
export type AccountsListSasResponse = MapsAccountSasToken;
|
|
93
|
+
|
|
94
|
+
// @public
|
|
95
|
+
export interface AccountsRegenerateKeysOptionalParams extends coreClient.OperationOptions {
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
// @public
|
|
99
|
+
export type AccountsRegenerateKeysResponse = MapsAccountKeys;
|
|
100
|
+
|
|
101
|
+
// @public
|
|
102
|
+
export interface AccountsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
// @public
|
|
106
|
+
export type AccountsUpdateResponse = MapsAccount;
|
|
107
|
+
|
|
108
|
+
// @public (undocumented)
|
|
109
|
+
export class AzureMapsManagementClient extends coreClient.ServiceClient {
|
|
110
|
+
// (undocumented)
|
|
111
|
+
$host: string;
|
|
112
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: AzureMapsManagementClientOptionalParams);
|
|
113
|
+
constructor(credentials: coreAuth.TokenCredential, options?: AzureMapsManagementClientOptionalParams);
|
|
114
|
+
// (undocumented)
|
|
115
|
+
accounts: Accounts;
|
|
116
|
+
// (undocumented)
|
|
117
|
+
apiVersion: string;
|
|
118
|
+
// (undocumented)
|
|
119
|
+
creators: Creators;
|
|
120
|
+
// (undocumented)
|
|
121
|
+
maps: Maps;
|
|
122
|
+
// (undocumented)
|
|
123
|
+
subscriptionId?: string;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
// @public
|
|
127
|
+
export interface AzureMapsManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
128
|
+
$host?: string;
|
|
129
|
+
apiVersion?: string;
|
|
130
|
+
endpoint?: string;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
// @public
|
|
134
|
+
export interface CorsRule {
|
|
135
|
+
allowedOrigins: string[];
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
// @public
|
|
139
|
+
export interface CorsRules {
|
|
140
|
+
corsRules?: CorsRule[];
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
// @public
|
|
144
|
+
export type CreatedByType = string;
|
|
145
|
+
|
|
146
|
+
// @public
|
|
147
|
+
export interface Creator extends TrackedResource {
|
|
148
|
+
properties: CreatorProperties;
|
|
149
|
+
readonly systemData?: SystemData;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
// @public
|
|
153
|
+
export interface CreatorList {
|
|
154
|
+
nextLink?: string;
|
|
155
|
+
readonly value?: Creator[];
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
// @public
|
|
159
|
+
export interface CreatorProperties {
|
|
160
|
+
readonly provisioningState?: string;
|
|
161
|
+
storageUnits: number;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
// @public
|
|
165
|
+
export interface Creators {
|
|
166
|
+
createOrUpdate(resourceGroupName: string, accountName: string, creatorName: string, creatorResource: Creator, options?: CreatorsCreateOrUpdateOptionalParams): Promise<CreatorsCreateOrUpdateResponse>;
|
|
167
|
+
delete(resourceGroupName: string, accountName: string, creatorName: string, options?: CreatorsDeleteOptionalParams): Promise<void>;
|
|
168
|
+
get(resourceGroupName: string, accountName: string, creatorName: string, options?: CreatorsGetOptionalParams): Promise<CreatorsGetResponse>;
|
|
169
|
+
listByAccount(resourceGroupName: string, accountName: string, options?: CreatorsListByAccountOptionalParams): PagedAsyncIterableIterator<Creator>;
|
|
170
|
+
update(resourceGroupName: string, accountName: string, creatorName: string, creatorUpdateParameters: CreatorUpdateParameters, options?: CreatorsUpdateOptionalParams): Promise<CreatorsUpdateResponse>;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
// @public
|
|
174
|
+
export interface CreatorsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
// @public
|
|
178
|
+
export type CreatorsCreateOrUpdateResponse = Creator;
|
|
179
|
+
|
|
180
|
+
// @public
|
|
181
|
+
export interface CreatorsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
// @public
|
|
185
|
+
export interface CreatorsGetOptionalParams extends coreClient.OperationOptions {
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
// @public
|
|
189
|
+
export type CreatorsGetResponse = Creator;
|
|
190
|
+
|
|
191
|
+
// @public
|
|
192
|
+
export interface CreatorsListByAccountNextOptionalParams extends coreClient.OperationOptions {
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
// @public
|
|
196
|
+
export type CreatorsListByAccountNextResponse = CreatorList;
|
|
197
|
+
|
|
198
|
+
// @public
|
|
199
|
+
export interface CreatorsListByAccountOptionalParams extends coreClient.OperationOptions {
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
// @public
|
|
203
|
+
export type CreatorsListByAccountResponse = CreatorList;
|
|
204
|
+
|
|
205
|
+
// @public
|
|
206
|
+
export interface CreatorsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
// @public
|
|
210
|
+
export type CreatorsUpdateResponse = Creator;
|
|
211
|
+
|
|
212
|
+
// @public
|
|
213
|
+
export interface CreatorUpdateParameters {
|
|
214
|
+
readonly provisioningState?: string;
|
|
215
|
+
storageUnits?: number;
|
|
216
|
+
tags?: {
|
|
217
|
+
[propertyName: string]: string;
|
|
218
|
+
};
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
// @public
|
|
222
|
+
export interface CustomerManagedKeyEncryption {
|
|
223
|
+
keyEncryptionKeyIdentity?: CustomerManagedKeyEncryptionKeyIdentity;
|
|
224
|
+
keyEncryptionKeyUrl?: string;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
// @public
|
|
228
|
+
export interface CustomerManagedKeyEncryptionKeyIdentity {
|
|
229
|
+
delegatedIdentityClientId?: string;
|
|
230
|
+
identityType?: IdentityType;
|
|
231
|
+
userAssignedIdentityResourceId?: string;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
// @public
|
|
235
|
+
export interface Dimension {
|
|
236
|
+
displayName?: string;
|
|
237
|
+
internalMetricName?: string;
|
|
238
|
+
internalName?: string;
|
|
239
|
+
name?: string;
|
|
240
|
+
sourceMdmNamespace?: string;
|
|
241
|
+
toBeExportedToShoebox?: boolean;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
// @public
|
|
245
|
+
export interface Encryption {
|
|
246
|
+
customerManagedKeyEncryption?: CustomerManagedKeyEncryption;
|
|
247
|
+
infrastructureEncryption?: InfrastructureEncryption;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
// @public
|
|
251
|
+
export interface ErrorAdditionalInfo {
|
|
252
|
+
readonly info?: Record<string, unknown>;
|
|
253
|
+
readonly type?: string;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
// @public
|
|
257
|
+
export interface ErrorDetail {
|
|
258
|
+
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
259
|
+
readonly code?: string;
|
|
260
|
+
readonly details?: ErrorDetail[];
|
|
261
|
+
readonly message?: string;
|
|
262
|
+
readonly target?: string;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
// @public
|
|
266
|
+
export interface ErrorResponse {
|
|
267
|
+
error?: ErrorDetail;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
// @public
|
|
271
|
+
export function getContinuationToken(page: unknown): string | undefined;
|
|
272
|
+
|
|
273
|
+
// @public
|
|
274
|
+
export type IdentityType = string;
|
|
275
|
+
|
|
276
|
+
// @public
|
|
277
|
+
export type InfrastructureEncryption = string;
|
|
278
|
+
|
|
279
|
+
// @public
|
|
280
|
+
export type KeyType = string;
|
|
281
|
+
|
|
282
|
+
// @public
|
|
283
|
+
export type Kind = string;
|
|
284
|
+
|
|
285
|
+
// @public
|
|
286
|
+
export enum KnownCreatedByType {
|
|
287
|
+
Application = "Application",
|
|
288
|
+
Key = "Key",
|
|
289
|
+
ManagedIdentity = "ManagedIdentity",
|
|
290
|
+
User = "User"
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
// @public
|
|
294
|
+
export enum KnownIdentityType {
|
|
295
|
+
DelegatedResourceIdentity = "delegatedResourceIdentity",
|
|
296
|
+
SystemAssignedIdentity = "systemAssignedIdentity",
|
|
297
|
+
UserAssignedIdentity = "userAssignedIdentity"
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
// @public
|
|
301
|
+
export enum KnownInfrastructureEncryption {
|
|
302
|
+
Disabled = "disabled",
|
|
303
|
+
Enabled = "enabled"
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
// @public
|
|
307
|
+
export enum KnownKeyType {
|
|
308
|
+
Primary = "primary",
|
|
309
|
+
Secondary = "secondary"
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
// @public
|
|
313
|
+
export enum KnownKind {
|
|
314
|
+
Gen1 = "Gen1",
|
|
315
|
+
Gen2 = "Gen2"
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
// @public
|
|
319
|
+
export enum KnownManagedServiceIdentityType {
|
|
320
|
+
None = "None",
|
|
321
|
+
SystemAssigned = "SystemAssigned",
|
|
322
|
+
SystemAssignedUserAssigned = "SystemAssigned, UserAssigned",
|
|
323
|
+
UserAssigned = "UserAssigned"
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
// @public
|
|
327
|
+
export enum KnownName {
|
|
328
|
+
G2 = "G2",
|
|
329
|
+
S0 = "S0",
|
|
330
|
+
S1 = "S1"
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
// @public
|
|
334
|
+
export enum KnownSigningKey {
|
|
335
|
+
ManagedIdentity = "managedIdentity",
|
|
336
|
+
PrimaryKey = "primaryKey",
|
|
337
|
+
SecondaryKey = "secondaryKey"
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
// @public
|
|
341
|
+
export interface LinkedResource {
|
|
342
|
+
id: string;
|
|
343
|
+
uniqueName: string;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
// @public
|
|
347
|
+
export interface ManagedServiceIdentity {
|
|
348
|
+
readonly principalId?: string;
|
|
349
|
+
readonly tenantId?: string;
|
|
350
|
+
type: ManagedServiceIdentityType;
|
|
351
|
+
userAssignedIdentities?: {
|
|
352
|
+
[propertyName: string]: UserAssignedIdentity;
|
|
353
|
+
};
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
// @public
|
|
357
|
+
export type ManagedServiceIdentityType = string;
|
|
358
|
+
|
|
359
|
+
// @public
|
|
360
|
+
export interface Maps {
|
|
361
|
+
listOperations(options?: MapsListOperationsOptionalParams): PagedAsyncIterableIterator<OperationDetail>;
|
|
362
|
+
listSubscriptionOperations(options?: MapsListSubscriptionOperationsOptionalParams): PagedAsyncIterableIterator<OperationDetail>;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
// @public
|
|
366
|
+
export interface MapsAccount extends TrackedResource {
|
|
367
|
+
identity?: ManagedServiceIdentity;
|
|
368
|
+
kind?: Kind;
|
|
369
|
+
properties?: MapsAccountProperties;
|
|
370
|
+
sku: Sku;
|
|
371
|
+
readonly systemData?: SystemData;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
// @public
|
|
375
|
+
export interface MapsAccountKeys {
|
|
376
|
+
readonly primaryKey?: string;
|
|
377
|
+
readonly primaryKeyLastUpdated?: string;
|
|
378
|
+
readonly secondaryKey?: string;
|
|
379
|
+
readonly secondaryKeyLastUpdated?: string;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
// @public
|
|
383
|
+
export interface MapsAccountProperties {
|
|
384
|
+
cors?: CorsRules;
|
|
385
|
+
disableLocalAuth?: boolean;
|
|
386
|
+
encryption?: Encryption;
|
|
387
|
+
linkedResources?: LinkedResource[];
|
|
388
|
+
readonly provisioningState?: string;
|
|
389
|
+
readonly uniqueId?: string;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
// @public
|
|
393
|
+
export interface MapsAccounts {
|
|
394
|
+
nextLink?: string;
|
|
395
|
+
readonly value?: MapsAccount[];
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
// @public
|
|
399
|
+
export interface MapsAccountSasToken {
|
|
400
|
+
readonly accountSasToken?: string;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
// @public
|
|
404
|
+
export interface MapsAccountUpdateParameters {
|
|
405
|
+
cors?: CorsRules;
|
|
406
|
+
disableLocalAuth?: boolean;
|
|
407
|
+
encryption?: Encryption;
|
|
408
|
+
identity?: ManagedServiceIdentity;
|
|
409
|
+
kind?: Kind;
|
|
410
|
+
linkedResources?: LinkedResource[];
|
|
411
|
+
readonly provisioningState?: string;
|
|
412
|
+
sku?: Sku;
|
|
413
|
+
tags?: {
|
|
414
|
+
[propertyName: string]: string;
|
|
415
|
+
};
|
|
416
|
+
readonly uniqueId?: string;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
// @public
|
|
420
|
+
export interface MapsKeySpecification {
|
|
421
|
+
keyType: KeyType;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
// @public
|
|
425
|
+
export interface MapsListOperationsNextOptionalParams extends coreClient.OperationOptions {
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
// @public
|
|
429
|
+
export type MapsListOperationsNextResponse = MapsOperations;
|
|
430
|
+
|
|
431
|
+
// @public
|
|
432
|
+
export interface MapsListOperationsOptionalParams extends coreClient.OperationOptions {
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
// @public
|
|
436
|
+
export type MapsListOperationsResponse = MapsOperations;
|
|
437
|
+
|
|
438
|
+
// @public
|
|
439
|
+
export interface MapsListSubscriptionOperationsNextOptionalParams extends coreClient.OperationOptions {
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
// @public
|
|
443
|
+
export type MapsListSubscriptionOperationsNextResponse = MapsOperations;
|
|
444
|
+
|
|
445
|
+
// @public
|
|
446
|
+
export interface MapsListSubscriptionOperationsOptionalParams extends coreClient.OperationOptions {
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
// @public
|
|
450
|
+
export type MapsListSubscriptionOperationsResponse = MapsOperations;
|
|
451
|
+
|
|
452
|
+
// @public
|
|
453
|
+
export interface MapsOperations {
|
|
454
|
+
nextLink?: string;
|
|
455
|
+
readonly value?: OperationDetail[];
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
// @public
|
|
459
|
+
export interface MetricSpecification {
|
|
460
|
+
aggregationType?: string;
|
|
461
|
+
category?: string;
|
|
462
|
+
dimensions?: Dimension[];
|
|
463
|
+
displayDescription?: string;
|
|
464
|
+
displayName?: string;
|
|
465
|
+
fillGapWithZero?: boolean;
|
|
466
|
+
internalMetricName?: string;
|
|
467
|
+
lockAggregationType?: string;
|
|
468
|
+
name?: string;
|
|
469
|
+
resourceIdDimensionNameOverride?: string;
|
|
470
|
+
sourceMdmAccount?: string;
|
|
471
|
+
sourceMdmNamespace?: string;
|
|
472
|
+
supportedAggregationTypes?: string;
|
|
473
|
+
unit?: string;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
// @public
|
|
477
|
+
export type Name = string;
|
|
478
|
+
|
|
479
|
+
// @public
|
|
480
|
+
export interface OperationDetail {
|
|
481
|
+
display?: OperationDisplay;
|
|
482
|
+
isDataAction?: boolean;
|
|
483
|
+
name?: string;
|
|
484
|
+
origin?: string;
|
|
485
|
+
serviceSpecification?: ServiceSpecification;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
// @public
|
|
489
|
+
export interface OperationDisplay {
|
|
490
|
+
description?: string;
|
|
491
|
+
operation?: string;
|
|
492
|
+
provider?: string;
|
|
493
|
+
resource?: string;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
// @public
|
|
497
|
+
export interface Resource {
|
|
498
|
+
readonly id?: string;
|
|
499
|
+
readonly name?: string;
|
|
500
|
+
readonly type?: string;
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
// @public
|
|
504
|
+
export interface ServiceSpecification {
|
|
505
|
+
metricSpecifications?: MetricSpecification[];
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
// @public
|
|
509
|
+
export type SigningKey = string;
|
|
510
|
+
|
|
511
|
+
// @public
|
|
512
|
+
export interface Sku {
|
|
513
|
+
name: Name;
|
|
514
|
+
readonly tier?: string;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
// @public
|
|
518
|
+
export interface SystemData {
|
|
519
|
+
createdAt?: Date;
|
|
520
|
+
createdBy?: string;
|
|
521
|
+
createdByType?: CreatedByType;
|
|
522
|
+
lastModifiedAt?: Date;
|
|
523
|
+
lastModifiedBy?: string;
|
|
524
|
+
lastModifiedByType?: CreatedByType;
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
// @public
|
|
528
|
+
export interface TrackedResource extends Resource {
|
|
529
|
+
location: string;
|
|
530
|
+
tags?: {
|
|
531
|
+
[propertyName: string]: string;
|
|
532
|
+
};
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
// @public
|
|
536
|
+
export interface UserAssignedIdentity {
|
|
537
|
+
readonly clientId?: string;
|
|
538
|
+
readonly principalId?: string;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
// (No @packageDocumentation comment for this package)
|
|
542
|
+
|
|
543
|
+
```
|