@azure/arm-maps 3.1.0-beta.1 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +42 -27
- package/LICENSE +1 -1
- package/README.md +2 -2
- package/dist/index.js +399 -113
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist-esm/samples-dev/accountsCreateOrUpdateSample.js +63 -12
- package/dist-esm/samples-dev/accountsCreateOrUpdateSample.js.map +1 -1
- package/dist-esm/samples-dev/accountsDeleteSample.js +12 -4
- package/dist-esm/samples-dev/accountsDeleteSample.js.map +1 -1
- package/dist-esm/samples-dev/accountsGetSample.js +12 -4
- package/dist-esm/samples-dev/accountsGetSample.js.map +1 -1
- package/dist-esm/samples-dev/accountsListByResourceGroupSample.js +24 -9
- package/dist-esm/samples-dev/accountsListByResourceGroupSample.js.map +1 -1
- package/dist-esm/samples-dev/accountsListBySubscriptionSample.js +23 -8
- package/dist-esm/samples-dev/accountsListBySubscriptionSample.js.map +1 -1
- package/dist-esm/samples-dev/accountsListKeysSample.js +12 -4
- package/dist-esm/samples-dev/accountsListKeysSample.js.map +1 -1
- package/dist-esm/samples-dev/accountsListSasSample.js +12 -4
- package/dist-esm/samples-dev/accountsListSasSample.js.map +1 -1
- package/dist-esm/samples-dev/accountsRegenerateKeysSample.js +12 -4
- package/dist-esm/samples-dev/accountsRegenerateKeysSample.js.map +1 -1
- package/dist-esm/samples-dev/accountsUpdateSample.js +63 -16
- package/dist-esm/samples-dev/accountsUpdateSample.js.map +1 -1
- package/dist-esm/samples-dev/creatorsCreateOrUpdateSample.js +12 -4
- package/dist-esm/samples-dev/creatorsCreateOrUpdateSample.js.map +1 -1
- package/dist-esm/samples-dev/creatorsDeleteSample.js +12 -4
- package/dist-esm/samples-dev/creatorsDeleteSample.js.map +1 -1
- package/dist-esm/samples-dev/creatorsGetSample.js +12 -4
- package/dist-esm/samples-dev/creatorsGetSample.js.map +1 -1
- package/dist-esm/samples-dev/creatorsListByAccountSample.js +24 -9
- package/dist-esm/samples-dev/creatorsListByAccountSample.js.map +1 -1
- package/dist-esm/samples-dev/creatorsUpdateSample.js +12 -4
- package/dist-esm/samples-dev/creatorsUpdateSample.js.map +1 -1
- package/dist-esm/samples-dev/mapsListOperationsSample.js +22 -9
- package/dist-esm/samples-dev/mapsListOperationsSample.js.map +1 -1
- package/dist-esm/samples-dev/mapsListSubscriptionOperationsSample.js +23 -8
- package/dist-esm/samples-dev/mapsListSubscriptionOperationsSample.js.map +1 -1
- package/dist-esm/src/azureMapsManagementClient.d.ts +4 -1
- package/dist-esm/src/azureMapsManagementClient.d.ts.map +1 -1
- package/dist-esm/src/azureMapsManagementClient.js +57 -28
- package/dist-esm/src/azureMapsManagementClient.js.map +1 -1
- package/dist-esm/src/index.d.ts +1 -0
- package/dist-esm/src/index.d.ts.map +1 -1
- package/dist-esm/src/index.js +1 -0
- package/dist-esm/src/index.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +161 -56
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +45 -0
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +4 -1
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +109 -17
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/src/models/parameters.js +1 -1
- package/dist-esm/src/models/parameters.js.map +1 -1
- package/dist-esm/src/operations/accounts.d.ts.map +1 -1
- package/dist-esm/src/operations/accounts.js +61 -26
- package/dist-esm/src/operations/accounts.js.map +1 -1
- package/dist-esm/src/operations/creators.d.ts.map +1 -1
- package/dist-esm/src/operations/creators.js +31 -13
- package/dist-esm/src/operations/creators.js.map +1 -1
- package/dist-esm/src/operations/maps.d.ts.map +1 -1
- package/dist-esm/src/operations/maps.js +61 -26
- package/dist-esm/src/operations/maps.js.map +1 -1
- package/dist-esm/src/pagingHelper.d.ts +13 -0
- package/dist-esm/src/pagingHelper.d.ts.map +1 -0
- package/dist-esm/src/pagingHelper.js +32 -0
- package/dist-esm/src/pagingHelper.js.map +1 -0
- package/dist-esm/test/maps_operations_test.spec.d.ts +4 -0
- package/dist-esm/test/maps_operations_test.spec.d.ts.map +1 -0
- package/dist-esm/test/maps_operations_test.spec.js +140 -0
- package/dist-esm/test/maps_operations_test.spec.js.map +1 -0
- package/package.json +20 -15
- package/review/arm-maps.api.md +78 -35
- package/src/azureMapsManagementClient.ts +78 -24
- package/src/index.ts +1 -0
- package/src/models/index.ts +146 -38
- package/src/models/mappers.ts +112 -19
- package/src/models/parameters.ts +1 -1
- package/src/operations/accounts.ts +46 -19
- package/src/operations/creators.ts +26 -13
- package/src/operations/maps.ts +41 -18
- package/src/pagingHelper.ts +39 -0
- package/types/arm-maps.d.ts +169 -44
- package/types/tsdoc-metadata.json +1 -1
- package/dist-esm/test/sampleTest.d.ts +0 -2
- package/dist-esm/test/sampleTest.d.ts.map +0 -1
- package/dist-esm/test/sampleTest.js +0 -40
- package/dist-esm/test/sampleTest.js.map +0 -1
|
@@ -24,33 +24,34 @@ export interface SystemData {
|
|
|
24
24
|
/** The timestamp of resource last modification (UTC) */
|
|
25
25
|
lastModifiedAt?: Date;
|
|
26
26
|
}
|
|
27
|
-
/**
|
|
27
|
+
/** Managed service identity (system assigned and/or user assigned identities) */
|
|
28
28
|
export interface ManagedServiceIdentity {
|
|
29
29
|
/**
|
|
30
|
-
* The principal ID of
|
|
30
|
+
* The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
|
|
31
31
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
32
32
|
*/
|
|
33
33
|
readonly principalId?: string;
|
|
34
34
|
/**
|
|
35
|
-
* The tenant ID of
|
|
35
|
+
* The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
|
|
36
36
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
37
37
|
*/
|
|
38
38
|
readonly tenantId?: string;
|
|
39
|
-
/**
|
|
40
|
-
type
|
|
41
|
-
/** The
|
|
39
|
+
/** Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed). */
|
|
40
|
+
type: ManagedServiceIdentityType;
|
|
41
|
+
/** The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests. */
|
|
42
42
|
userAssignedIdentities?: {
|
|
43
|
-
[propertyName: string]:
|
|
43
|
+
[propertyName: string]: UserAssignedIdentity;
|
|
44
44
|
};
|
|
45
45
|
}
|
|
46
|
-
|
|
46
|
+
/** User assigned identity properties */
|
|
47
|
+
export interface UserAssignedIdentity {
|
|
47
48
|
/**
|
|
48
|
-
* The principal
|
|
49
|
+
* The principal ID of the assigned identity.
|
|
49
50
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
50
51
|
*/
|
|
51
52
|
readonly principalId?: string;
|
|
52
53
|
/**
|
|
53
|
-
* The client
|
|
54
|
+
* The client ID of the assigned identity.
|
|
54
55
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
55
56
|
*/
|
|
56
57
|
readonly clientId?: string;
|
|
@@ -62,17 +63,19 @@ export interface MapsAccountProperties {
|
|
|
62
63
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
63
64
|
*/
|
|
64
65
|
readonly uniqueId?: string;
|
|
65
|
-
/** Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys authentication from any usage. */
|
|
66
|
+
/** Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys and Shared Access Signature Token authentication from any usage. */
|
|
66
67
|
disableLocalAuth?: boolean;
|
|
67
68
|
/**
|
|
68
|
-
* The provisioning state of the Map account resource.
|
|
69
|
+
* The provisioning state of the Map account resource, Account updates can only be performed on terminal states. Terminal states: `Succeeded` and `Failed`
|
|
69
70
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
70
71
|
*/
|
|
71
72
|
readonly provisioningState?: string;
|
|
72
|
-
/**
|
|
73
|
+
/** The array of associated resources to the Map account. Linked resource in the array cannot individually update, you must update all linked resources in the array together. These resources may be used on operations on the Azure Maps REST API. Access is controlled by the Map Account Managed Identity(s) permissions to those resource(s). */
|
|
73
74
|
linkedResources?: LinkedResource[];
|
|
74
75
|
/** Specifies CORS rules for the Blob service. You can include up to five CorsRule elements in the request. If no CorsRule elements are included in the request body, all CORS rules will be deleted, and CORS will be disabled for the Blob service. */
|
|
75
76
|
cors?: CorsRules;
|
|
77
|
+
/** (Optional) Discouraged to include in resource definition. Only needed where it is possible to disable platform (AKA infrastructure) encryption. Azure SQL TDE is an example of this. Values are enabled and disabled. */
|
|
78
|
+
encryption?: Encryption;
|
|
76
79
|
}
|
|
77
80
|
/** Linked resource is reference to a resource deployed in an Azure subscription, add the linked resource `uniqueName` value as an optional parameter for operations on Azure Maps Geospatial REST APIs. */
|
|
78
81
|
export interface LinkedResource {
|
|
@@ -91,6 +94,29 @@ export interface CorsRule {
|
|
|
91
94
|
/** Required if CorsRule element is present. A list of origin domains that will be allowed via CORS, or "*" to allow all domains */
|
|
92
95
|
allowedOrigins: string[];
|
|
93
96
|
}
|
|
97
|
+
/** (Optional) Discouraged to include in resource definition. Only needed where it is possible to disable platform (AKA infrastructure) encryption. Azure SQL TDE is an example of this. Values are enabled and disabled. */
|
|
98
|
+
export interface Encryption {
|
|
99
|
+
/** Values are enabled and disabled. */
|
|
100
|
+
infrastructureEncryption?: InfrastructureEncryption;
|
|
101
|
+
/** All Customer-managed key encryption properties for the resource. */
|
|
102
|
+
customerManagedKeyEncryption?: CustomerManagedKeyEncryption;
|
|
103
|
+
}
|
|
104
|
+
/** All Customer-managed key encryption properties for the resource. */
|
|
105
|
+
export interface CustomerManagedKeyEncryption {
|
|
106
|
+
/** All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault. */
|
|
107
|
+
keyEncryptionKeyIdentity?: CustomerManagedKeyEncryptionKeyIdentity;
|
|
108
|
+
/** key encryption key Url, versioned or non-versioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek. */
|
|
109
|
+
keyEncryptionKeyUrl?: string;
|
|
110
|
+
}
|
|
111
|
+
/** All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault. */
|
|
112
|
+
export interface CustomerManagedKeyEncryptionKeyIdentity {
|
|
113
|
+
/** Values can be systemAssignedIdentity or userAssignedIdentity */
|
|
114
|
+
identityType?: IdentityType;
|
|
115
|
+
/** user assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity and delegatedResourceIdentity. */
|
|
116
|
+
userAssignedIdentityResourceId?: string;
|
|
117
|
+
/** delegated identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity and userAssignedIdentity - internal use only. */
|
|
118
|
+
delegatedIdentityClientId?: string;
|
|
119
|
+
}
|
|
94
120
|
/** Common fields that are returned in the response for all Azure Resource Manager resources */
|
|
95
121
|
export interface Resource {
|
|
96
122
|
/**
|
|
@@ -165,24 +191,26 @@ export interface MapsAccountUpdateParameters {
|
|
|
165
191
|
kind?: Kind;
|
|
166
192
|
/** The SKU of this account. */
|
|
167
193
|
sku?: Sku;
|
|
168
|
-
/**
|
|
194
|
+
/** Managed service identity (system assigned and/or user assigned identities) */
|
|
169
195
|
identity?: ManagedServiceIdentity;
|
|
170
196
|
/**
|
|
171
197
|
* A unique identifier for the maps account
|
|
172
198
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
173
199
|
*/
|
|
174
200
|
readonly uniqueId?: string;
|
|
175
|
-
/** Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys authentication from any usage. */
|
|
201
|
+
/** Allows toggle functionality on Azure Policy to disable Azure Maps local authentication support. This will disable Shared Keys and Shared Access Signature Token authentication from any usage. */
|
|
176
202
|
disableLocalAuth?: boolean;
|
|
177
203
|
/**
|
|
178
|
-
* The provisioning state of the Map account resource.
|
|
204
|
+
* The provisioning state of the Map account resource, Account updates can only be performed on terminal states. Terminal states: `Succeeded` and `Failed`
|
|
179
205
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
180
206
|
*/
|
|
181
207
|
readonly provisioningState?: string;
|
|
182
|
-
/**
|
|
208
|
+
/** The array of associated resources to the Map account. Linked resource in the array cannot individually update, you must update all linked resources in the array together. These resources may be used on operations on the Azure Maps REST API. Access is controlled by the Map Account Managed Identity(s) permissions to those resource(s). */
|
|
183
209
|
linkedResources?: LinkedResource[];
|
|
184
210
|
/** Specifies CORS rules for the Blob service. You can include up to five CorsRule elements in the request. If no CorsRule elements are included in the request body, all CORS rules will be deleted, and CORS will be disabled for the Blob service. */
|
|
185
211
|
cors?: CorsRules;
|
|
212
|
+
/** (Optional) Discouraged to include in resource definition. Only needed where it is possible to disable platform (AKA infrastructure) encryption. Azure SQL TDE is an example of this. Values are enabled and disabled. */
|
|
213
|
+
encryption?: Encryption;
|
|
186
214
|
}
|
|
187
215
|
/** A list of Maps Accounts. */
|
|
188
216
|
export interface MapsAccounts {
|
|
@@ -199,7 +227,7 @@ export interface MapsAccounts {
|
|
|
199
227
|
}
|
|
200
228
|
/** Parameters used to create an account Shared Access Signature (SAS) token. The REST API access control is provided by Azure Maps Role Based Access (RBAC) identity and access. */
|
|
201
229
|
export interface AccountSasParameters {
|
|
202
|
-
/** The Map account key to use for signing. */
|
|
230
|
+
/** The Map account key to use for signing. Picking `primaryKey` or `secondaryKey` will use the Map account Shared Keys, and using `managedIdentity` will use the auto-renewed private key to sign the SAS. */
|
|
203
231
|
signingKey: SigningKey;
|
|
204
232
|
/** The principal Id also known as the object Id of a User Assigned Managed Identity currently assigned to the Map Account. To assign a Managed Identity of the account, use operation Create or Update an assign a User Assigned Identity resource Id. */
|
|
205
233
|
principalId: string;
|
|
@@ -207,9 +235,9 @@ export interface AccountSasParameters {
|
|
|
207
235
|
regions?: string[];
|
|
208
236
|
/** Required parameter which represents the desired maximum request per second to allowed for the given SAS token. This does not guarantee perfect accuracy in measurements but provides application safe guards of abuse with eventual enforcement. */
|
|
209
237
|
maxRatePerSecond: number;
|
|
210
|
-
/** The date time offset of when the token validity begins. For example "2017-05-24T10:42:03.1567373Z". */
|
|
238
|
+
/** The date time offset of when the token validity begins. For example "2017-05-24T10:42:03.1567373Z". Maximum duration allowed is 24 hours between `start` and `expiry`. */
|
|
211
239
|
start: string;
|
|
212
|
-
/** The date time offset of when the token validity expires. For example "2017-05-24T10:42:03.1567373Z" */
|
|
240
|
+
/** The date time offset of when the token validity expires. For example "2017-05-24T10:42:03.1567373Z". Maximum duration allowed is 24 hours between `start` and `expiry`. */
|
|
213
241
|
expiry: string;
|
|
214
242
|
}
|
|
215
243
|
/** A new Sas token which can be used to access the Maps REST APIs and is controlled by the specified Managed identity permissions on Azure (IAM) Role Based Access Control. */
|
|
@@ -314,6 +342,12 @@ export interface MetricSpecification {
|
|
|
314
342
|
sourceMdmAccount?: string;
|
|
315
343
|
/** Internal metric name. */
|
|
316
344
|
internalMetricName?: string;
|
|
345
|
+
/** Lock aggregation type for metrics. */
|
|
346
|
+
lockAggregationType?: string;
|
|
347
|
+
/** Metrics namespace. */
|
|
348
|
+
sourceMdmNamespace?: string;
|
|
349
|
+
/** Allowed aggregation types for metrics. */
|
|
350
|
+
supportedAggregationTypes?: string;
|
|
317
351
|
}
|
|
318
352
|
/** Dimension of map account, for example API Category, Api Name, Result Type, and Response Code. */
|
|
319
353
|
export interface Dimension {
|
|
@@ -368,32 +402,32 @@ export interface CreatorUpdateParameters {
|
|
|
368
402
|
storageUnits?: number;
|
|
369
403
|
}
|
|
370
404
|
/** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */
|
|
371
|
-
export
|
|
405
|
+
export interface TrackedResource extends Resource {
|
|
372
406
|
/** Resource tags. */
|
|
373
407
|
tags?: {
|
|
374
408
|
[propertyName: string]: string;
|
|
375
409
|
};
|
|
376
410
|
/** The geo-location where the resource lives */
|
|
377
411
|
location: string;
|
|
378
|
-
}
|
|
412
|
+
}
|
|
379
413
|
/** An Azure resource which represents access to a suite of Maps REST APIs. */
|
|
380
|
-
export
|
|
414
|
+
export interface MapsAccount extends TrackedResource {
|
|
381
415
|
/** The SKU of this account. */
|
|
382
416
|
sku: Sku;
|
|
383
417
|
/** Get or Set Kind property. */
|
|
384
418
|
kind?: Kind;
|
|
385
419
|
/**
|
|
386
|
-
*
|
|
420
|
+
* Metadata pertaining to creation and last modification of the resource.
|
|
387
421
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
388
422
|
*/
|
|
389
423
|
readonly systemData?: SystemData;
|
|
390
|
-
/**
|
|
424
|
+
/** Managed service identity (system assigned and/or user assigned identities) */
|
|
391
425
|
identity?: ManagedServiceIdentity;
|
|
392
426
|
/** The map account properties. */
|
|
393
427
|
properties?: MapsAccountProperties;
|
|
394
|
-
}
|
|
428
|
+
}
|
|
395
429
|
/** An Azure resource which represents Maps Creator product and provides ability to manage private location data. */
|
|
396
|
-
export
|
|
430
|
+
export interface Creator extends TrackedResource {
|
|
397
431
|
/** The Creator resource properties. */
|
|
398
432
|
properties: CreatorProperties;
|
|
399
433
|
/**
|
|
@@ -401,11 +435,14 @@ export declare type Creator = TrackedResource & {
|
|
|
401
435
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
402
436
|
*/
|
|
403
437
|
readonly systemData?: SystemData;
|
|
404
|
-
}
|
|
438
|
+
}
|
|
405
439
|
/** Known values of {@link Name} that the service accepts. */
|
|
406
440
|
export declare enum KnownName {
|
|
441
|
+
/** S0 */
|
|
407
442
|
S0 = "S0",
|
|
443
|
+
/** S1 */
|
|
408
444
|
S1 = "S1",
|
|
445
|
+
/** G2 */
|
|
409
446
|
G2 = "G2"
|
|
410
447
|
}
|
|
411
448
|
/**
|
|
@@ -417,10 +454,12 @@ export declare enum KnownName {
|
|
|
417
454
|
* **S1** \
|
|
418
455
|
* **G2**
|
|
419
456
|
*/
|
|
420
|
-
export
|
|
457
|
+
export type Name = string;
|
|
421
458
|
/** Known values of {@link Kind} that the service accepts. */
|
|
422
459
|
export declare enum KnownKind {
|
|
460
|
+
/** Gen1 */
|
|
423
461
|
Gen1 = "Gen1",
|
|
462
|
+
/** Gen2 */
|
|
424
463
|
Gen2 = "Gen2"
|
|
425
464
|
}
|
|
426
465
|
/**
|
|
@@ -431,12 +470,16 @@ export declare enum KnownKind {
|
|
|
431
470
|
* **Gen1** \
|
|
432
471
|
* **Gen2**
|
|
433
472
|
*/
|
|
434
|
-
export
|
|
473
|
+
export type Kind = string;
|
|
435
474
|
/** Known values of {@link CreatedByType} that the service accepts. */
|
|
436
475
|
export declare enum KnownCreatedByType {
|
|
476
|
+
/** User */
|
|
437
477
|
User = "User",
|
|
478
|
+
/** Application */
|
|
438
479
|
Application = "Application",
|
|
480
|
+
/** ManagedIdentity */
|
|
439
481
|
ManagedIdentity = "ManagedIdentity",
|
|
482
|
+
/** Key */
|
|
440
483
|
Key = "Key"
|
|
441
484
|
}
|
|
442
485
|
/**
|
|
@@ -449,11 +492,72 @@ export declare enum KnownCreatedByType {
|
|
|
449
492
|
* **ManagedIdentity** \
|
|
450
493
|
* **Key**
|
|
451
494
|
*/
|
|
452
|
-
export
|
|
495
|
+
export type CreatedByType = string;
|
|
496
|
+
/** Known values of {@link ManagedServiceIdentityType} that the service accepts. */
|
|
497
|
+
export declare enum KnownManagedServiceIdentityType {
|
|
498
|
+
/** None */
|
|
499
|
+
None = "None",
|
|
500
|
+
/** SystemAssigned */
|
|
501
|
+
SystemAssigned = "SystemAssigned",
|
|
502
|
+
/** UserAssigned */
|
|
503
|
+
UserAssigned = "UserAssigned",
|
|
504
|
+
/** SystemAssignedUserAssigned */
|
|
505
|
+
SystemAssignedUserAssigned = "SystemAssigned, UserAssigned"
|
|
506
|
+
}
|
|
507
|
+
/**
|
|
508
|
+
* Defines values for ManagedServiceIdentityType. \
|
|
509
|
+
* {@link KnownManagedServiceIdentityType} can be used interchangeably with ManagedServiceIdentityType,
|
|
510
|
+
* this enum contains the known values that the service supports.
|
|
511
|
+
* ### Known values supported by the service
|
|
512
|
+
* **None** \
|
|
513
|
+
* **SystemAssigned** \
|
|
514
|
+
* **UserAssigned** \
|
|
515
|
+
* **SystemAssigned, UserAssigned**
|
|
516
|
+
*/
|
|
517
|
+
export type ManagedServiceIdentityType = string;
|
|
518
|
+
/** Known values of {@link InfrastructureEncryption} that the service accepts. */
|
|
519
|
+
export declare enum KnownInfrastructureEncryption {
|
|
520
|
+
/** Enabled */
|
|
521
|
+
Enabled = "enabled",
|
|
522
|
+
/** Disabled */
|
|
523
|
+
Disabled = "disabled"
|
|
524
|
+
}
|
|
525
|
+
/**
|
|
526
|
+
* Defines values for InfrastructureEncryption. \
|
|
527
|
+
* {@link KnownInfrastructureEncryption} can be used interchangeably with InfrastructureEncryption,
|
|
528
|
+
* this enum contains the known values that the service supports.
|
|
529
|
+
* ### Known values supported by the service
|
|
530
|
+
* **enabled** \
|
|
531
|
+
* **disabled**
|
|
532
|
+
*/
|
|
533
|
+
export type InfrastructureEncryption = string;
|
|
534
|
+
/** Known values of {@link IdentityType} that the service accepts. */
|
|
535
|
+
export declare enum KnownIdentityType {
|
|
536
|
+
/** SystemAssignedIdentity */
|
|
537
|
+
SystemAssignedIdentity = "systemAssignedIdentity",
|
|
538
|
+
/** UserAssignedIdentity */
|
|
539
|
+
UserAssignedIdentity = "userAssignedIdentity",
|
|
540
|
+
/** DelegatedResourceIdentity */
|
|
541
|
+
DelegatedResourceIdentity = "delegatedResourceIdentity"
|
|
542
|
+
}
|
|
543
|
+
/**
|
|
544
|
+
* Defines values for IdentityType. \
|
|
545
|
+
* {@link KnownIdentityType} can be used interchangeably with IdentityType,
|
|
546
|
+
* this enum contains the known values that the service supports.
|
|
547
|
+
* ### Known values supported by the service
|
|
548
|
+
* **systemAssignedIdentity** \
|
|
549
|
+
* **userAssignedIdentity** \
|
|
550
|
+
* **delegatedResourceIdentity**
|
|
551
|
+
*/
|
|
552
|
+
export type IdentityType = string;
|
|
453
553
|
/** Known values of {@link SigningKey} that the service accepts. */
|
|
454
554
|
export declare enum KnownSigningKey {
|
|
555
|
+
/** PrimaryKey */
|
|
455
556
|
PrimaryKey = "primaryKey",
|
|
456
|
-
SecondaryKey
|
|
557
|
+
/** SecondaryKey */
|
|
558
|
+
SecondaryKey = "secondaryKey",
|
|
559
|
+
/** ManagedIdentity */
|
|
560
|
+
ManagedIdentity = "managedIdentity"
|
|
457
561
|
}
|
|
458
562
|
/**
|
|
459
563
|
* Defines values for SigningKey. \
|
|
@@ -461,12 +565,15 @@ export declare enum KnownSigningKey {
|
|
|
461
565
|
* this enum contains the known values that the service supports.
|
|
462
566
|
* ### Known values supported by the service
|
|
463
567
|
* **primaryKey** \
|
|
464
|
-
* **secondaryKey**
|
|
568
|
+
* **secondaryKey** \
|
|
569
|
+
* **managedIdentity**
|
|
465
570
|
*/
|
|
466
|
-
export
|
|
571
|
+
export type SigningKey = string;
|
|
467
572
|
/** Known values of {@link KeyType} that the service accepts. */
|
|
468
573
|
export declare enum KnownKeyType {
|
|
574
|
+
/** Primary */
|
|
469
575
|
Primary = "primary",
|
|
576
|
+
/** Secondary */
|
|
470
577
|
Secondary = "secondary"
|
|
471
578
|
}
|
|
472
579
|
/**
|
|
@@ -477,19 +584,17 @@ export declare enum KnownKeyType {
|
|
|
477
584
|
* **primary** \
|
|
478
585
|
* **secondary**
|
|
479
586
|
*/
|
|
480
|
-
export
|
|
481
|
-
/** Defines values for ResourceIdentityType. */
|
|
482
|
-
export declare type ResourceIdentityType = "SystemAssigned" | "UserAssigned" | "SystemAssigned, UserAssigned" | "None";
|
|
587
|
+
export type KeyType = string;
|
|
483
588
|
/** Optional parameters. */
|
|
484
589
|
export interface AccountsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
485
590
|
}
|
|
486
591
|
/** Contains response data for the createOrUpdate operation. */
|
|
487
|
-
export
|
|
592
|
+
export type AccountsCreateOrUpdateResponse = MapsAccount;
|
|
488
593
|
/** Optional parameters. */
|
|
489
594
|
export interface AccountsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
490
595
|
}
|
|
491
596
|
/** Contains response data for the update operation. */
|
|
492
|
-
export
|
|
597
|
+
export type AccountsUpdateResponse = MapsAccount;
|
|
493
598
|
/** Optional parameters. */
|
|
494
599
|
export interface AccountsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
495
600
|
}
|
|
@@ -497,77 +602,77 @@ export interface AccountsDeleteOptionalParams extends coreClient.OperationOption
|
|
|
497
602
|
export interface AccountsGetOptionalParams extends coreClient.OperationOptions {
|
|
498
603
|
}
|
|
499
604
|
/** Contains response data for the get operation. */
|
|
500
|
-
export
|
|
605
|
+
export type AccountsGetResponse = MapsAccount;
|
|
501
606
|
/** Optional parameters. */
|
|
502
607
|
export interface AccountsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
503
608
|
}
|
|
504
609
|
/** Contains response data for the listByResourceGroup operation. */
|
|
505
|
-
export
|
|
610
|
+
export type AccountsListByResourceGroupResponse = MapsAccounts;
|
|
506
611
|
/** Optional parameters. */
|
|
507
612
|
export interface AccountsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
508
613
|
}
|
|
509
614
|
/** Contains response data for the listBySubscription operation. */
|
|
510
|
-
export
|
|
615
|
+
export type AccountsListBySubscriptionResponse = MapsAccounts;
|
|
511
616
|
/** Optional parameters. */
|
|
512
617
|
export interface AccountsListSasOptionalParams extends coreClient.OperationOptions {
|
|
513
618
|
}
|
|
514
619
|
/** Contains response data for the listSas operation. */
|
|
515
|
-
export
|
|
620
|
+
export type AccountsListSasResponse = MapsAccountSasToken;
|
|
516
621
|
/** Optional parameters. */
|
|
517
622
|
export interface AccountsListKeysOptionalParams extends coreClient.OperationOptions {
|
|
518
623
|
}
|
|
519
624
|
/** Contains response data for the listKeys operation. */
|
|
520
|
-
export
|
|
625
|
+
export type AccountsListKeysResponse = MapsAccountKeys;
|
|
521
626
|
/** Optional parameters. */
|
|
522
627
|
export interface AccountsRegenerateKeysOptionalParams extends coreClient.OperationOptions {
|
|
523
628
|
}
|
|
524
629
|
/** Contains response data for the regenerateKeys operation. */
|
|
525
|
-
export
|
|
630
|
+
export type AccountsRegenerateKeysResponse = MapsAccountKeys;
|
|
526
631
|
/** Optional parameters. */
|
|
527
632
|
export interface AccountsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
528
633
|
}
|
|
529
634
|
/** Contains response data for the listByResourceGroupNext operation. */
|
|
530
|
-
export
|
|
635
|
+
export type AccountsListByResourceGroupNextResponse = MapsAccounts;
|
|
531
636
|
/** Optional parameters. */
|
|
532
637
|
export interface AccountsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
533
638
|
}
|
|
534
639
|
/** Contains response data for the listBySubscriptionNext operation. */
|
|
535
|
-
export
|
|
640
|
+
export type AccountsListBySubscriptionNextResponse = MapsAccounts;
|
|
536
641
|
/** Optional parameters. */
|
|
537
642
|
export interface MapsListOperationsOptionalParams extends coreClient.OperationOptions {
|
|
538
643
|
}
|
|
539
644
|
/** Contains response data for the listOperations operation. */
|
|
540
|
-
export
|
|
645
|
+
export type MapsListOperationsResponse = MapsOperations;
|
|
541
646
|
/** Optional parameters. */
|
|
542
647
|
export interface MapsListSubscriptionOperationsOptionalParams extends coreClient.OperationOptions {
|
|
543
648
|
}
|
|
544
649
|
/** Contains response data for the listSubscriptionOperations operation. */
|
|
545
|
-
export
|
|
650
|
+
export type MapsListSubscriptionOperationsResponse = MapsOperations;
|
|
546
651
|
/** Optional parameters. */
|
|
547
652
|
export interface MapsListOperationsNextOptionalParams extends coreClient.OperationOptions {
|
|
548
653
|
}
|
|
549
654
|
/** Contains response data for the listOperationsNext operation. */
|
|
550
|
-
export
|
|
655
|
+
export type MapsListOperationsNextResponse = MapsOperations;
|
|
551
656
|
/** Optional parameters. */
|
|
552
657
|
export interface MapsListSubscriptionOperationsNextOptionalParams extends coreClient.OperationOptions {
|
|
553
658
|
}
|
|
554
659
|
/** Contains response data for the listSubscriptionOperationsNext operation. */
|
|
555
|
-
export
|
|
660
|
+
export type MapsListSubscriptionOperationsNextResponse = MapsOperations;
|
|
556
661
|
/** Optional parameters. */
|
|
557
662
|
export interface CreatorsListByAccountOptionalParams extends coreClient.OperationOptions {
|
|
558
663
|
}
|
|
559
664
|
/** Contains response data for the listByAccount operation. */
|
|
560
|
-
export
|
|
665
|
+
export type CreatorsListByAccountResponse = CreatorList;
|
|
561
666
|
/** Optional parameters. */
|
|
562
667
|
export interface CreatorsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
563
668
|
}
|
|
564
669
|
/** Contains response data for the createOrUpdate operation. */
|
|
565
|
-
export
|
|
670
|
+
export type CreatorsCreateOrUpdateResponse = Creator;
|
|
566
671
|
/** Optional parameters. */
|
|
567
672
|
export interface CreatorsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
568
673
|
}
|
|
569
674
|
/** Contains response data for the update operation. */
|
|
570
|
-
export
|
|
675
|
+
export type CreatorsUpdateResponse = Creator;
|
|
571
676
|
/** Optional parameters. */
|
|
572
677
|
export interface CreatorsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
573
678
|
}
|
|
@@ -575,12 +680,12 @@ export interface CreatorsDeleteOptionalParams extends coreClient.OperationOption
|
|
|
575
680
|
export interface CreatorsGetOptionalParams extends coreClient.OperationOptions {
|
|
576
681
|
}
|
|
577
682
|
/** Contains response data for the get operation. */
|
|
578
|
-
export
|
|
683
|
+
export type CreatorsGetResponse = Creator;
|
|
579
684
|
/** Optional parameters. */
|
|
580
685
|
export interface CreatorsListByAccountNextOptionalParams extends coreClient.OperationOptions {
|
|
581
686
|
}
|
|
582
687
|
/** Contains response data for the listByAccountNext operation. */
|
|
583
|
-
export
|
|
688
|
+
export type CreatorsListByAccountNextResponse = CreatorList;
|
|
584
689
|
/** Optional parameters. */
|
|
585
690
|
export interface AzureMapsManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
586
691
|
/** server parameter */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AAEjD,mCAAmC;AACnC,MAAM,WAAW,GAAG;IAClB,4DAA4D;IAC5D,IAAI,EAAE,IAAI,CAAC;IACX;;;OAGG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,6EAA6E;AAC7E,MAAM,WAAW,UAAU;IACzB,8CAA8C;IAC9C,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,sDAAsD;IACtD,aAAa,CAAC,EAAE,aAAa,CAAC;IAC9B,gDAAgD;IAChD,SAAS,CAAC,EAAE,IAAI,CAAC;IACjB,oDAAoD;IACpD,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,4DAA4D;IAC5D,kBAAkB,CAAC,EAAE,aAAa,CAAC;IACnC,wDAAwD;IACxD,cAAc,CAAC,EAAE,IAAI,CAAC;CACvB;AAED,iFAAiF;AACjF,MAAM,WAAW,sBAAsB;IACrC;;;OAGG;IACH,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAC;IAC9B;;;OAGG;IACH,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAC3B,uGAAuG;IACvG,IAAI,EAAE,0BAA0B,CAAC;IACjC,qWAAqW;IACrW,sBAAsB,CAAC,EAAE;QAAE,CAAC,YAAY,EAAE,MAAM,GAAG,oBAAoB,CAAA;KAAE,CAAC;CAC3E;AAED,wCAAwC;AACxC,MAAM,WAAW,oBAAoB;IACnC;;;OAGG;IACH,QAAQ,CAAC,WAAW,CAAC,EAAE,MAAM,CAAC;IAC9B;;;OAGG;IACH,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED,wCAAwC;AACxC,MAAM,WAAW,qBAAqB;IACpC;;;OAGG;IACH,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAC3B,qMAAqM;IACrM,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B;;;OAGG;IACH,QAAQ,CAAC,iBAAiB,CAAC,EAAE,MAAM,CAAC;IACpC,qVAAqV;IACrV,eAAe,CAAC,EAAE,cAAc,EAAE,CAAC;IACnC,wPAAwP;IACxP,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,4NAA4N;IAC5N,UAAU,CAAC,EAAE,UAAU,CAAC;CACzB;AAED,2MAA2M;AAC3M,MAAM,WAAW,cAAc;IAC7B,qEAAqE;IACrE,UAAU,EAAE,MAAM,CAAC;IACnB,4JAA4J;IAC5J,EAAE,EAAE,MAAM,CAAC;CACZ;AAED,wFAAwF;AACxF,MAAM,WAAW,SAAS;IACxB,2FAA2F;IAC3F,SAAS,CAAC,EAAE,QAAQ,EAAE,CAAC;CACxB;AAED,iDAAiD;AACjD,MAAM,WAAW,QAAQ;IACvB,mIAAmI;IACnI,cAAc,EAAE,MAAM,EAAE,CAAC;CAC1B;AAED,4NAA4N;AAC5N,MAAM,WAAW,UAAU;IACzB,uCAAuC;IACvC,wBAAwB,CAAC,EAAE,wBAAwB,CAAC;IACpD,uEAAuE;IACvE,4BAA4B,CAAC,EAAE,4BAA4B,CAAC;CAC7D;AAED,uEAAuE;AACvE,MAAM,WAAW,4BAA4B;IAC3C,gIAAgI;IAChI,wBAAwB,CAAC,EAAE,uCAAuC,CAAC;IACnE,6MAA6M;IAC7M,mBAAmB,CAAC,EAAE,MAAM,CAAC;CAC9B;AAED,gIAAgI;AAChI,MAAM,WAAW,uCAAuC;IACtD,mEAAmE;IACnE,YAAY,CAAC,EAAE,YAAY,CAAC;IAC5B,8TAA8T;IAC9T,8BAA8B,CAAC,EAAE,MAAM,CAAC;IACxC,yUAAyU;IACzU,yBAAyB,CAAC,EAAE,MAAM,CAAC;CACpC;AAED,+FAA+F;AAC/F,MAAM,WAAW,QAAQ;IACvB;;;OAGG;IACH,QAAQ,CAAC,EAAE,CAAC,EAAE,MAAM,CAAC;IACrB;;;OAGG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IACvB;;;OAGG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,qKAAqK;AACrK,MAAM,WAAW,aAAa;IAC5B,wBAAwB;IACxB,KAAK,CAAC,EAAE,WAAW,CAAC;CACrB;AAED,wBAAwB;AACxB,MAAM,WAAW,WAAW;IAC1B;;;OAGG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IACvB;;;OAGG;IACH,QAAQ,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC;IAC1B;;;OAGG;IACH,QAAQ,CAAC,MAAM,CAAC,EAAE,MAAM,CAAC;IACzB;;;OAGG;IACH,QAAQ,CAAC,OAAO,CAAC,EAAE,WAAW,EAAE,CAAC;IACjC;;;OAGG;IACH,QAAQ,CAAC,cAAc,CAAC,EAAE,mBAAmB,EAAE,CAAC;CACjD;AAED,qDAAqD;AACrD,MAAM,WAAW,mBAAmB;IAClC;;;OAGG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IACvB;;;OAGG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACzC;AAED,0DAA0D;AAC1D,MAAM,WAAW,2BAA2B;IAC1C,uTAAuT;IACvT,IAAI,CAAC,EAAE;QAAE,CAAC,YAAY,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IAC1C,gCAAgC;IAChC,IAAI,CAAC,EAAE,IAAI,CAAC;IACZ,+BAA+B;IAC/B,GAAG,CAAC,EAAE,GAAG,CAAC;IACV,iFAAiF;IACjF,QAAQ,CAAC,EAAE,sBAAsB,CAAC;IAClC;;;OAGG;IACH,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAC3B,qMAAqM;IACrM,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B;;;OAGG;IACH,QAAQ,CAAC,iBAAiB,CAAC,EAAE,MAAM,CAAC;IACpC,qVAAqV;IACrV,eAAe,CAAC,EAAE,cAAc,EAAE,CAAC;IACnC,wPAAwP;IACxP,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,4NAA4N;IAC5N,UAAU,CAAC,EAAE,UAAU,CAAC;CACzB;AAED,+BAA+B;AAC/B,MAAM,WAAW,YAAY;IAC3B;;;OAGG;IACH,QAAQ,CAAC,KAAK,CAAC,EAAE,WAAW,EAAE,CAAC;IAC/B;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,oLAAoL;AACpL,MAAM,WAAW,oBAAoB;IACnC,8MAA8M;IAC9M,UAAU,EAAE,UAAU,CAAC;IACvB,0PAA0P;IAC1P,WAAW,EAAE,MAAM,CAAC;IACpB,kOAAkO;IAClO,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB,uPAAuP;IACvP,gBAAgB,EAAE,MAAM,CAAC;IACzB,6KAA6K;IAC7K,KAAK,EAAE,MAAM,CAAC;IACd,8KAA8K;IAC9K,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,+KAA+K;AAC/K,MAAM,WAAW,mBAAmB;IAClC;;;OAGG;IACH,QAAQ,CAAC,eAAe,CAAC,EAAE,MAAM,CAAC;CACnC;AAED,mIAAmI;AACnI,MAAM,WAAW,eAAe;IAC9B;;;OAGG;IACH,QAAQ,CAAC,qBAAqB,CAAC,EAAE,MAAM,CAAC;IACxC;;;OAGG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,MAAM,CAAC;IAC7B;;;OAGG;IACH,QAAQ,CAAC,YAAY,CAAC,EAAE,MAAM,CAAC;IAC/B;;;OAGG;IACH,QAAQ,CAAC,uBAAuB,CAAC,EAAE,MAAM,CAAC;CAC3C;AAED,oEAAoE;AACpE,MAAM,WAAW,oBAAoB;IACnC,oEAAoE;IACpE,OAAO,EAAE,OAAO,CAAC;CAClB;AAED,gDAAgD;AAChD,MAAM,WAAW,cAAc;IAC7B;;;OAGG;IACH,QAAQ,CAAC,KAAK,CAAC,EAAE,eAAe,EAAE,CAAC;IACnC;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,+BAA+B;AAC/B,MAAM,WAAW,eAAe;IAC9B,4BAA4B;IAC5B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,uDAAuD;IACvD,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,+BAA+B;IAC/B,OAAO,CAAC,EAAE,gBAAgB,CAAC;IAC3B,8BAA8B;IAC9B,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,gEAAgE;IAChE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC;CAC7C;AAED,gCAAgC;AAChC,MAAM,WAAW,gBAAgB;IAC/B,yCAAyC;IACzC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,gCAAgC;IAChC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,gDAAgD;IAChD,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,uDAAuD;IACvD,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,gEAAgE;AAChE,MAAM,WAAW,oBAAoB;IACnC,0CAA0C;IAC1C,oBAAoB,CAAC,EAAE,mBAAmB,EAAE,CAAC;CAC9C;AAED,yCAAyC;AACzC,MAAM,WAAW,mBAAmB;IAClC,oCAAoC;IACpC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,4CAA4C;IAC5C,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,mDAAmD;IACnD,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,2BAA2B;IAC3B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,iCAAiC;IACjC,UAAU,CAAC,EAAE,SAAS,EAAE,CAAC;IACzB,yCAAyC;IACzC,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,wDAAwD;IACxD,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,2EAA2E;IAC3E,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,2BAA2B;IAC3B,+BAA+B,CAAC,EAAE,MAAM,CAAC;IACzC,8BAA8B;IAC9B,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,4BAA4B;IAC5B,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,yCAAyC;IACzC,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B,yBAAyB;IACzB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,6CAA6C;IAC7C,yBAAyB,CAAC,EAAE,MAAM,CAAC;CACpC;AAED,oGAAoG;AACpG,MAAM,WAAW,SAAS;IACxB,iCAAiC;IACjC,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,iCAAiC;IACjC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,sCAAsC;IACtC,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,6CAA6C;IAC7C,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,6CAA6C;IAC7C,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,mDAAmD;IACnD,qBAAqB,CAAC,EAAE,OAAO,CAAC;CACjC;AAED,mCAAmC;AACnC,MAAM,WAAW,WAAW;IAC1B;;;OAGG;IACH,QAAQ,CAAC,KAAK,CAAC,EAAE,OAAO,EAAE,CAAC;IAC3B;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,kCAAkC;AAClC,MAAM,WAAW,iBAAiB;IAChC;;;OAGG;IACH,QAAQ,CAAC,iBAAiB,CAAC,EAAE,MAAM,CAAC;IACpC,kFAAkF;IAClF,YAAY,EAAE,MAAM,CAAC;CACtB;AAED,8DAA8D;AAC9D,MAAM,WAAW,uBAAuB;IACtC,uTAAuT;IACvT,IAAI,CAAC,EAAE;QAAE,CAAC,YAAY,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IAC1C;;;OAGG;IACH,QAAQ,CAAC,iBAAiB,CAAC,EAAE,MAAM,CAAC;IACpC,kFAAkF;IAClF,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED,+HAA+H;AAC/H,MAAM,WAAW,eAAgB,SAAQ,QAAQ;IAC/C,qBAAqB;IACrB,IAAI,CAAC,EAAE;QAAE,CAAC,YAAY,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,CAAC;IAC1C,gDAAgD;IAChD,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,8EAA8E;AAC9E,MAAM,WAAW,WAAY,SAAQ,eAAe;IAClD,+BAA+B;IAC/B,GAAG,EAAE,GAAG,CAAC;IACT,gCAAgC;IAChC,IAAI,CAAC,EAAE,IAAI,CAAC;IACZ;;;OAGG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,UAAU,CAAC;IACjC,iFAAiF;IACjF,QAAQ,CAAC,EAAE,sBAAsB,CAAC;IAClC,kCAAkC;IAClC,UAAU,CAAC,EAAE,qBAAqB,CAAC;CACpC;AAED,oHAAoH;AACpH,MAAM,WAAW,OAAQ,SAAQ,eAAe;IAC9C,uCAAuC;IACvC,UAAU,EAAE,iBAAiB,CAAC;IAC9B;;;OAGG;IACH,QAAQ,CAAC,UAAU,CAAC,EAAE,UAAU,CAAC;CAClC;AAED,6DAA6D;AAC7D,oBAAY,SAAS;IACnB,SAAS;IACT,EAAE,OAAO;IACT,SAAS;IACT,EAAE,OAAO;IACT,SAAS;IACT,EAAE,OAAO;CACV;AAED;;;;;;;;GAQG;AACH,MAAM,MAAM,IAAI,GAAG,MAAM,CAAC;AAE1B,6DAA6D;AAC7D,oBAAY,SAAS;IACnB,WAAW;IACX,IAAI,SAAS;IACb,WAAW;IACX,IAAI,SAAS;CACd;AAED;;;;;;;GAOG;AACH,MAAM,MAAM,IAAI,GAAG,MAAM,CAAC;AAE1B,sEAAsE;AACtE,oBAAY,kBAAkB;IAC5B,WAAW;IACX,IAAI,SAAS;IACb,kBAAkB;IAClB,WAAW,gBAAgB;IAC3B,sBAAsB;IACtB,eAAe,oBAAoB;IACnC,UAAU;IACV,GAAG,QAAQ;CACZ;AAED;;;;;;;;;GASG;AACH,MAAM,MAAM,aAAa,GAAG,MAAM,CAAC;AAEnC,mFAAmF;AACnF,oBAAY,+BAA+B;IACzC,WAAW;IACX,IAAI,SAAS;IACb,qBAAqB;IACrB,cAAc,mBAAmB;IACjC,mBAAmB;IACnB,YAAY,iBAAiB;IAC7B,iCAAiC;IACjC,0BAA0B,iCAAiC;CAC5D;AAED;;;;;;;;;GASG;AACH,MAAM,MAAM,0BAA0B,GAAG,MAAM,CAAC;AAEhD,iFAAiF;AACjF,oBAAY,6BAA6B;IACvC,cAAc;IACd,OAAO,YAAY;IACnB,eAAe;IACf,QAAQ,aAAa;CACtB;AAED;;;;;;;GAOG;AACH,MAAM,MAAM,wBAAwB,GAAG,MAAM,CAAC;AAE9C,qEAAqE;AACrE,oBAAY,iBAAiB;IAC3B,6BAA6B;IAC7B,sBAAsB,2BAA2B;IACjD,2BAA2B;IAC3B,oBAAoB,yBAAyB;IAC7C,gCAAgC;IAChC,yBAAyB,8BAA8B;CACxD;AAED;;;;;;;;GAQG;AACH,MAAM,MAAM,YAAY,GAAG,MAAM,CAAC;AAElC,mEAAmE;AACnE,oBAAY,eAAe;IACzB,iBAAiB;IACjB,UAAU,eAAe;IACzB,mBAAmB;IACnB,YAAY,iBAAiB;IAC7B,sBAAsB;IACtB,eAAe,oBAAoB;CACpC;AAED;;;;;;;;GAQG;AACH,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC;AAEhC,gEAAgE;AAChE,oBAAY,YAAY;IACtB,cAAc;IACd,OAAO,YAAY;IACnB,gBAAgB;IAChB,SAAS,cAAc;CACxB;AAED;;;;;;;GAOG;AACH,MAAM,MAAM,OAAO,GAAG,MAAM,CAAC;AAE7B,2BAA2B;AAC3B,MAAM,WAAW,oCACf,SAAQ,UAAU,CAAC,gBAAgB;CAAG;AAExC,+DAA+D;AAC/D,MAAM,MAAM,8BAA8B,GAAG,WAAW,CAAC;AAEzD,2BAA2B;AAC3B,MAAM,WAAW,4BACf,SAAQ,UAAU,CAAC,gBAAgB;CAAG;AAExC,uDAAuD;AACvD,MAAM,MAAM,sBAAsB,GAAG,WAAW,CAAC;AAEjD,2BAA2B;AAC3B,MAAM,WAAW,4BACf,SAAQ,UAAU,CAAC,gBAAgB;CAAG;AAExC,2BAA2B;AAC3B,MAAM,WAAW,yBACf,SAAQ,UAAU,CAAC,gBAAgB;CAAG;AAExC,oDAAoD;AACpD,MAAM,MAAM,mBAAmB,GAAG,WAAW,CAAC;AAE9C,2BAA2B;AAC3B,MAAM,WAAW,yCACf,SAAQ,UAAU,CAAC,gBAAgB;CAAG;AAExC,oEAAoE;AACpE,MAAM,MAAM,mCAAmC,GAAG,YAAY,CAAC;AAE/D,2BAA2B;AAC3B,MAAM,WAAW,wCACf,SAAQ,UAAU,CAAC,gBAAgB;CAAG;AAExC,mEAAmE;AACnE,MAAM,MAAM,kCAAkC,GAAG,YAAY,CAAC;AAE9D,2BAA2B;AAC3B,MAAM,WAAW,6BACf,SAAQ,UAAU,CAAC,gBAAgB;CAAG;AAExC,wDAAwD;AACxD,MAAM,MAAM,uBAAuB,GAAG,mBAAmB,CAAC;AAE1D,2BAA2B;AAC3B,MAAM,WAAW,8BACf,SAAQ,UAAU,CAAC,gBAAgB;CAAG;AAExC,yDAAyD;AACzD,MAAM,MAAM,wBAAwB,GAAG,eAAe,CAAC;AAEvD,2BAA2B;AAC3B,MAAM,WAAW,oCACf,SAAQ,UAAU,CAAC,gBAAgB;CAAG;AAExC,+DAA+D;AAC/D,MAAM,MAAM,8BAA8B,GAAG,eAAe,CAAC;AAE7D,2BAA2B;AAC3B,MAAM,WAAW,6CACf,SAAQ,UAAU,CAAC,gBAAgB;CAAG;AAExC,wEAAwE;AACxE,MAAM,MAAM,uCAAuC,GAAG,YAAY,CAAC;AAEnE,2BAA2B;AAC3B,MAAM,WAAW,4CACf,SAAQ,UAAU,CAAC,gBAAgB;CAAG;AAExC,uEAAuE;AACvE,MAAM,MAAM,sCAAsC,GAAG,YAAY,CAAC;AAElE,2BAA2B;AAC3B,MAAM,WAAW,gCACf,SAAQ,UAAU,CAAC,gBAAgB;CAAG;AAExC,+DAA+D;AAC/D,MAAM,MAAM,0BAA0B,GAAG,cAAc,CAAC;AAExD,2BAA2B;AAC3B,MAAM,WAAW,4CACf,SAAQ,UAAU,CAAC,gBAAgB;CAAG;AAExC,2EAA2E;AAC3E,MAAM,MAAM,sCAAsC,GAAG,cAAc,CAAC;AAEpE,2BAA2B;AAC3B,MAAM,WAAW,oCACf,SAAQ,UAAU,CAAC,gBAAgB;CAAG;AAExC,mEAAmE;AACnE,MAAM,MAAM,8BAA8B,GAAG,cAAc,CAAC;AAE5D,2BAA2B;AAC3B,MAAM,WAAW,gDACf,SAAQ,UAAU,CAAC,gBAAgB;CAAG;AAExC,+EAA+E;AAC/E,MAAM,MAAM,0CAA0C,GAAG,cAAc,CAAC;AAExE,2BAA2B;AAC3B,MAAM,WAAW,mCACf,SAAQ,UAAU,CAAC,gBAAgB;CAAG;AAExC,8DAA8D;AAC9D,MAAM,MAAM,6BAA6B,GAAG,WAAW,CAAC;AAExD,2BAA2B;AAC3B,MAAM,WAAW,oCACf,SAAQ,UAAU,CAAC,gBAAgB;CAAG;AAExC,+DAA+D;AAC/D,MAAM,MAAM,8BAA8B,GAAG,OAAO,CAAC;AAErD,2BAA2B;AAC3B,MAAM,WAAW,4BACf,SAAQ,UAAU,CAAC,gBAAgB;CAAG;AAExC,uDAAuD;AACvD,MAAM,MAAM,sBAAsB,GAAG,OAAO,CAAC;AAE7C,2BAA2B;AAC3B,MAAM,WAAW,4BACf,SAAQ,UAAU,CAAC,gBAAgB;CAAG;AAExC,2BAA2B;AAC3B,MAAM,WAAW,yBACf,SAAQ,UAAU,CAAC,gBAAgB;CAAG;AAExC,oDAAoD;AACpD,MAAM,MAAM,mBAAmB,GAAG,OAAO,CAAC;AAE1C,2BAA2B;AAC3B,MAAM,WAAW,uCACf,SAAQ,UAAU,CAAC,gBAAgB;CAAG;AAExC,kEAAkE;AAClE,MAAM,MAAM,iCAAiC,GAAG,WAAW,CAAC;AAE5D,2BAA2B;AAC3B,MAAM,WAAW,uCACf,SAAQ,UAAU,CAAC,oBAAoB;IACvC,uBAAuB;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,kBAAkB;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,iCAAiC;IACjC,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB"}
|
|
@@ -8,34 +8,79 @@
|
|
|
8
8
|
/** Known values of {@link Name} that the service accepts. */
|
|
9
9
|
export var KnownName;
|
|
10
10
|
(function (KnownName) {
|
|
11
|
+
/** S0 */
|
|
11
12
|
KnownName["S0"] = "S0";
|
|
13
|
+
/** S1 */
|
|
12
14
|
KnownName["S1"] = "S1";
|
|
15
|
+
/** G2 */
|
|
13
16
|
KnownName["G2"] = "G2";
|
|
14
17
|
})(KnownName || (KnownName = {}));
|
|
15
18
|
/** Known values of {@link Kind} that the service accepts. */
|
|
16
19
|
export var KnownKind;
|
|
17
20
|
(function (KnownKind) {
|
|
21
|
+
/** Gen1 */
|
|
18
22
|
KnownKind["Gen1"] = "Gen1";
|
|
23
|
+
/** Gen2 */
|
|
19
24
|
KnownKind["Gen2"] = "Gen2";
|
|
20
25
|
})(KnownKind || (KnownKind = {}));
|
|
21
26
|
/** Known values of {@link CreatedByType} that the service accepts. */
|
|
22
27
|
export var KnownCreatedByType;
|
|
23
28
|
(function (KnownCreatedByType) {
|
|
29
|
+
/** User */
|
|
24
30
|
KnownCreatedByType["User"] = "User";
|
|
31
|
+
/** Application */
|
|
25
32
|
KnownCreatedByType["Application"] = "Application";
|
|
33
|
+
/** ManagedIdentity */
|
|
26
34
|
KnownCreatedByType["ManagedIdentity"] = "ManagedIdentity";
|
|
35
|
+
/** Key */
|
|
27
36
|
KnownCreatedByType["Key"] = "Key";
|
|
28
37
|
})(KnownCreatedByType || (KnownCreatedByType = {}));
|
|
38
|
+
/** Known values of {@link ManagedServiceIdentityType} that the service accepts. */
|
|
39
|
+
export var KnownManagedServiceIdentityType;
|
|
40
|
+
(function (KnownManagedServiceIdentityType) {
|
|
41
|
+
/** None */
|
|
42
|
+
KnownManagedServiceIdentityType["None"] = "None";
|
|
43
|
+
/** SystemAssigned */
|
|
44
|
+
KnownManagedServiceIdentityType["SystemAssigned"] = "SystemAssigned";
|
|
45
|
+
/** UserAssigned */
|
|
46
|
+
KnownManagedServiceIdentityType["UserAssigned"] = "UserAssigned";
|
|
47
|
+
/** SystemAssignedUserAssigned */
|
|
48
|
+
KnownManagedServiceIdentityType["SystemAssignedUserAssigned"] = "SystemAssigned, UserAssigned";
|
|
49
|
+
})(KnownManagedServiceIdentityType || (KnownManagedServiceIdentityType = {}));
|
|
50
|
+
/** Known values of {@link InfrastructureEncryption} that the service accepts. */
|
|
51
|
+
export var KnownInfrastructureEncryption;
|
|
52
|
+
(function (KnownInfrastructureEncryption) {
|
|
53
|
+
/** Enabled */
|
|
54
|
+
KnownInfrastructureEncryption["Enabled"] = "enabled";
|
|
55
|
+
/** Disabled */
|
|
56
|
+
KnownInfrastructureEncryption["Disabled"] = "disabled";
|
|
57
|
+
})(KnownInfrastructureEncryption || (KnownInfrastructureEncryption = {}));
|
|
58
|
+
/** Known values of {@link IdentityType} that the service accepts. */
|
|
59
|
+
export var KnownIdentityType;
|
|
60
|
+
(function (KnownIdentityType) {
|
|
61
|
+
/** SystemAssignedIdentity */
|
|
62
|
+
KnownIdentityType["SystemAssignedIdentity"] = "systemAssignedIdentity";
|
|
63
|
+
/** UserAssignedIdentity */
|
|
64
|
+
KnownIdentityType["UserAssignedIdentity"] = "userAssignedIdentity";
|
|
65
|
+
/** DelegatedResourceIdentity */
|
|
66
|
+
KnownIdentityType["DelegatedResourceIdentity"] = "delegatedResourceIdentity";
|
|
67
|
+
})(KnownIdentityType || (KnownIdentityType = {}));
|
|
29
68
|
/** Known values of {@link SigningKey} that the service accepts. */
|
|
30
69
|
export var KnownSigningKey;
|
|
31
70
|
(function (KnownSigningKey) {
|
|
71
|
+
/** PrimaryKey */
|
|
32
72
|
KnownSigningKey["PrimaryKey"] = "primaryKey";
|
|
73
|
+
/** SecondaryKey */
|
|
33
74
|
KnownSigningKey["SecondaryKey"] = "secondaryKey";
|
|
75
|
+
/** ManagedIdentity */
|
|
76
|
+
KnownSigningKey["ManagedIdentity"] = "managedIdentity";
|
|
34
77
|
})(KnownSigningKey || (KnownSigningKey = {}));
|
|
35
78
|
/** Known values of {@link KeyType} that the service accepts. */
|
|
36
79
|
export var KnownKeyType;
|
|
37
80
|
(function (KnownKeyType) {
|
|
81
|
+
/** Primary */
|
|
38
82
|
KnownKeyType["Primary"] = "primary";
|
|
83
|
+
/** Secondary */
|
|
39
84
|
KnownKeyType["Secondary"] = "secondary";
|
|
40
85
|
})(KnownKeyType || (KnownKeyType = {}));
|
|
41
86
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAkdH,6DAA6D;AAC7D,MAAM,CAAN,IAAY,SAOX;AAPD,WAAY,SAAS;IACnB,SAAS;IACT,sBAAS,CAAA;IACT,SAAS;IACT,sBAAS,CAAA;IACT,SAAS;IACT,sBAAS,CAAA;AACX,CAAC,EAPW,SAAS,KAAT,SAAS,QAOpB;AAaD,6DAA6D;AAC7D,MAAM,CAAN,IAAY,SAKX;AALD,WAAY,SAAS;IACnB,WAAW;IACX,0BAAa,CAAA;IACb,WAAW;IACX,0BAAa,CAAA;AACf,CAAC,EALW,SAAS,KAAT,SAAS,QAKpB;AAYD,sEAAsE;AACtE,MAAM,CAAN,IAAY,kBASX;AATD,WAAY,kBAAkB;IAC5B,WAAW;IACX,mCAAa,CAAA;IACb,kBAAkB;IAClB,iDAA2B,CAAA;IAC3B,sBAAsB;IACtB,yDAAmC,CAAA;IACnC,UAAU;IACV,iCAAW,CAAA;AACb,CAAC,EATW,kBAAkB,KAAlB,kBAAkB,QAS7B;AAcD,mFAAmF;AACnF,MAAM,CAAN,IAAY,+BASX;AATD,WAAY,+BAA+B;IACzC,WAAW;IACX,gDAAa,CAAA;IACb,qBAAqB;IACrB,oEAAiC,CAAA;IACjC,mBAAmB;IACnB,gEAA6B,CAAA;IAC7B,iCAAiC;IACjC,8FAA2D,CAAA;AAC7D,CAAC,EATW,+BAA+B,KAA/B,+BAA+B,QAS1C;AAcD,iFAAiF;AACjF,MAAM,CAAN,IAAY,6BAKX;AALD,WAAY,6BAA6B;IACvC,cAAc;IACd,oDAAmB,CAAA;IACnB,eAAe;IACf,sDAAqB,CAAA;AACvB,CAAC,EALW,6BAA6B,KAA7B,6BAA6B,QAKxC;AAYD,qEAAqE;AACrE,MAAM,CAAN,IAAY,iBAOX;AAPD,WAAY,iBAAiB;IAC3B,6BAA6B;IAC7B,sEAAiD,CAAA;IACjD,2BAA2B;IAC3B,kEAA6C,CAAA;IAC7C,gCAAgC;IAChC,4EAAuD,CAAA;AACzD,CAAC,EAPW,iBAAiB,KAAjB,iBAAiB,QAO5B;AAaD,mEAAmE;AACnE,MAAM,CAAN,IAAY,eAOX;AAPD,WAAY,eAAe;IACzB,iBAAiB;IACjB,4CAAyB,CAAA;IACzB,mBAAmB;IACnB,gDAA6B,CAAA;IAC7B,sBAAsB;IACtB,sDAAmC,CAAA;AACrC,CAAC,EAPW,eAAe,KAAf,eAAe,QAO1B;AAaD,gEAAgE;AAChE,MAAM,CAAN,IAAY,YAKX;AALD,WAAY,YAAY;IACtB,cAAc;IACd,mCAAmB,CAAA;IACnB,gBAAgB;IAChB,uCAAuB,CAAA;AACzB,CAAC,EALW,YAAY,KAAZ,YAAY,QAKvB"}
|
|
@@ -2,11 +2,14 @@ import * as coreClient from "@azure/core-client";
|
|
|
2
2
|
export declare const Sku: coreClient.CompositeMapper;
|
|
3
3
|
export declare const SystemData: coreClient.CompositeMapper;
|
|
4
4
|
export declare const ManagedServiceIdentity: coreClient.CompositeMapper;
|
|
5
|
-
export declare const
|
|
5
|
+
export declare const UserAssignedIdentity: coreClient.CompositeMapper;
|
|
6
6
|
export declare const MapsAccountProperties: coreClient.CompositeMapper;
|
|
7
7
|
export declare const LinkedResource: coreClient.CompositeMapper;
|
|
8
8
|
export declare const CorsRules: coreClient.CompositeMapper;
|
|
9
9
|
export declare const CorsRule: coreClient.CompositeMapper;
|
|
10
|
+
export declare const Encryption: coreClient.CompositeMapper;
|
|
11
|
+
export declare const CustomerManagedKeyEncryption: coreClient.CompositeMapper;
|
|
12
|
+
export declare const CustomerManagedKeyEncryptionKeyIdentity: coreClient.CompositeMapper;
|
|
10
13
|
export declare const Resource: coreClient.CompositeMapper;
|
|
11
14
|
export declare const ErrorResponse: coreClient.CompositeMapper;
|
|
12
15
|
export declare const ErrorDetail: coreClient.CompositeMapper;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mappers.d.ts","sourceRoot":"","sources":["../../../src/models/mappers.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AAEjD,eAAO,MAAM,GAAG,EAAE,UAAU,CAAC,eAqB5B,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,UAAU,CAAC,eA2CnC,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,UAAU,CAAC,
|
|
1
|
+
{"version":3,"file":"mappers.d.ts","sourceRoot":"","sources":["../../../src/models/mappers.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AAEjD,eAAO,MAAM,GAAG,EAAE,UAAU,CAAC,eAqB5B,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,UAAU,CAAC,eA2CnC,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,UAAU,CAAC,eAqC/C,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,UAAU,CAAC,eAqB7C,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,UAAU,CAAC,eAyD9C,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,UAAU,CAAC,eAqBvC,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,UAAU,CAAC,eAsBlC,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,UAAU,CAAC,eAmBjC,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,UAAU,CAAC,eAoBnC,CAAC;AAEF,eAAO,MAAM,4BAA4B,EAAE,UAAU,CAAC,eAoBrD,CAAC;AAEF,eAAO,MAAM,uCAAuC,EAAE,UAAU,CAAC,eAyBhE,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,UAAU,CAAC,eA4BjC,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,eActC,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,UAAU,CAAC,eAsDpC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,UAAU,CAAC,eAsB5C,CAAC;AAEF,eAAO,MAAM,2BAA2B,EAAE,UAAU,CAAC,eAqFpD,CAAC;AAEF,eAAO,MAAM,YAAY,EAAE,UAAU,CAAC,eA0BrC,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,UAAU,CAAC,eA0D7C,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,UAAU,CAAC,eAc5C,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,UAAU,CAAC,eAmCxC,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,UAAU,CAAC,eAc7C,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,UAAU,CAAC,eA0BvC,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,UAAU,CAAC,eAuCxC,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,UAAU,CAAC,eA+BzC,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,UAAU,CAAC,eAmB7C,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,UAAU,CAAC,eAiG5C,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,UAAU,CAAC,eA2ClC,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,UAAU,CAAC,eA0BpC,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,UAAU,CAAC,eAyB1C,CAAC;AAEF,eAAO,MAAM,uBAAuB,EAAE,UAAU,CAAC,eA+BhD,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,UAAU,CAAC,eAsBxC,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,UAAU,CAAC,eA2CpC,CAAC;AAEF,eAAO,MAAM,OAAO,EAAE,UAAU,CAAC,eAsBhC,CAAC"}
|