@azure/arm-maps 3.1.0-beta.2 → 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.
Files changed (81) hide show
  1. package/CHANGELOG.md +42 -28
  2. package/LICENSE +1 -1
  3. package/README.md +1 -1
  4. package/dist/index.js +219 -64
  5. package/dist/index.js.map +1 -1
  6. package/dist/index.min.js +1 -1
  7. package/dist/index.min.js.map +1 -1
  8. package/dist-esm/samples-dev/accountsCreateOrUpdateSample.js +63 -12
  9. package/dist-esm/samples-dev/accountsCreateOrUpdateSample.js.map +1 -1
  10. package/dist-esm/samples-dev/accountsDeleteSample.js +12 -4
  11. package/dist-esm/samples-dev/accountsDeleteSample.js.map +1 -1
  12. package/dist-esm/samples-dev/accountsGetSample.js +12 -4
  13. package/dist-esm/samples-dev/accountsGetSample.js.map +1 -1
  14. package/dist-esm/samples-dev/accountsListByResourceGroupSample.js +24 -9
  15. package/dist-esm/samples-dev/accountsListByResourceGroupSample.js.map +1 -1
  16. package/dist-esm/samples-dev/accountsListBySubscriptionSample.js +23 -8
  17. package/dist-esm/samples-dev/accountsListBySubscriptionSample.js.map +1 -1
  18. package/dist-esm/samples-dev/accountsListKeysSample.js +12 -4
  19. package/dist-esm/samples-dev/accountsListKeysSample.js.map +1 -1
  20. package/dist-esm/samples-dev/accountsListSasSample.js +12 -4
  21. package/dist-esm/samples-dev/accountsListSasSample.js.map +1 -1
  22. package/dist-esm/samples-dev/accountsRegenerateKeysSample.js +12 -4
  23. package/dist-esm/samples-dev/accountsRegenerateKeysSample.js.map +1 -1
  24. package/dist-esm/samples-dev/accountsUpdateSample.js +63 -16
  25. package/dist-esm/samples-dev/accountsUpdateSample.js.map +1 -1
  26. package/dist-esm/samples-dev/creatorsCreateOrUpdateSample.js +12 -4
  27. package/dist-esm/samples-dev/creatorsCreateOrUpdateSample.js.map +1 -1
  28. package/dist-esm/samples-dev/creatorsDeleteSample.js +12 -4
  29. package/dist-esm/samples-dev/creatorsDeleteSample.js.map +1 -1
  30. package/dist-esm/samples-dev/creatorsGetSample.js +12 -4
  31. package/dist-esm/samples-dev/creatorsGetSample.js.map +1 -1
  32. package/dist-esm/samples-dev/creatorsListByAccountSample.js +24 -9
  33. package/dist-esm/samples-dev/creatorsListByAccountSample.js.map +1 -1
  34. package/dist-esm/samples-dev/creatorsUpdateSample.js +12 -4
  35. package/dist-esm/samples-dev/creatorsUpdateSample.js.map +1 -1
  36. package/dist-esm/samples-dev/mapsListOperationsSample.js +22 -9
  37. package/dist-esm/samples-dev/mapsListOperationsSample.js.map +1 -1
  38. package/dist-esm/samples-dev/mapsListSubscriptionOperationsSample.js +23 -8
  39. package/dist-esm/samples-dev/mapsListSubscriptionOperationsSample.js.map +1 -1
  40. package/dist-esm/src/azureMapsManagementClient.d.ts +2 -1
  41. package/dist-esm/src/azureMapsManagementClient.d.ts.map +1 -1
  42. package/dist-esm/src/azureMapsManagementClient.js +9 -11
  43. package/dist-esm/src/azureMapsManagementClient.js.map +1 -1
  44. package/dist-esm/src/models/index.d.ts +142 -50
  45. package/dist-esm/src/models/index.d.ts.map +1 -1
  46. package/dist-esm/src/models/index.js +32 -0
  47. package/dist-esm/src/models/index.js.map +1 -1
  48. package/dist-esm/src/models/mappers.d.ts +4 -1
  49. package/dist-esm/src/models/mappers.d.ts.map +1 -1
  50. package/dist-esm/src/models/mappers.js +109 -17
  51. package/dist-esm/src/models/mappers.js.map +1 -1
  52. package/dist-esm/src/models/parameters.js +1 -1
  53. package/dist-esm/src/models/parameters.js.map +1 -1
  54. package/dist-esm/src/operations/accounts.js +24 -12
  55. package/dist-esm/src/operations/accounts.js.map +1 -1
  56. package/dist-esm/src/operations/creators.js +12 -6
  57. package/dist-esm/src/operations/creators.js.map +1 -1
  58. package/dist-esm/src/operations/maps.js +24 -12
  59. package/dist-esm/src/operations/maps.js.map +1 -1
  60. package/dist-esm/src/pagingHelper.d.ts +4 -4
  61. package/dist-esm/src/pagingHelper.js +4 -4
  62. package/dist-esm/test/maps_operations_test.spec.d.ts +4 -0
  63. package/dist-esm/test/maps_operations_test.spec.d.ts.map +1 -0
  64. package/dist-esm/test/maps_operations_test.spec.js +140 -0
  65. package/dist-esm/test/maps_operations_test.spec.js.map +1 -0
  66. package/package.json +11 -10
  67. package/review/arm-maps.api.md +65 -12
  68. package/src/azureMapsManagementClient.ts +19 -5
  69. package/src/models/index.ts +127 -32
  70. package/src/models/mappers.ts +112 -19
  71. package/src/models/parameters.ts +1 -1
  72. package/src/operations/accounts.ts +0 -2
  73. package/src/operations/creators.ts +0 -1
  74. package/src/operations/maps.ts +0 -2
  75. package/src/pagingHelper.ts +4 -4
  76. package/types/arm-maps.d.ts +143 -42
  77. package/types/tsdoc-metadata.json +1 -1
  78. package/dist-esm/test/sampleTest.d.ts +0 -2
  79. package/dist-esm/test/sampleTest.d.ts.map +0 -1
  80. package/dist-esm/test/sampleTest.js +0 -38
  81. 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
- /** Identity for the resource. */
27
+ /** Managed service identity (system assigned and/or user assigned identities) */
28
28
  export interface ManagedServiceIdentity {
29
29
  /**
30
- * The principal ID of resource identity.
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 resource.
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
- /** The identity type. */
40
- type?: ResourceIdentityType;
41
- /** The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. */
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]: Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties;
43
+ [propertyName: string]: UserAssignedIdentity;
44
44
  };
45
45
  }
46
- export interface Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties {
46
+ /** User assigned identity properties */
47
+ export interface UserAssignedIdentity {
47
48
  /**
48
- * The principal id of user assigned identity.
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 id of user assigned identity.
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
- /** Sets the resources to be used for Managed Identities based operations for the Map account resource. */
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
- /** Sets the identity property for maps account. */
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
- /** Sets the resources to be used for Managed Identities based operations for the Map account resource. */
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 {
@@ -383,11 +417,11 @@ export interface MapsAccount extends TrackedResource {
383
417
  /** Get or Set Kind property. */
384
418
  kind?: Kind;
385
419
  /**
386
- * The system meta data relating to this resource.
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
- /** Sets the identity property for maps account. */
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;
@@ -420,7 +454,7 @@ export declare enum KnownName {
420
454
  * **S1** \
421
455
  * **G2**
422
456
  */
423
- export declare type Name = string;
457
+ export type Name = string;
424
458
  /** Known values of {@link Kind} that the service accepts. */
425
459
  export declare enum KnownKind {
426
460
  /** Gen1 */
@@ -436,7 +470,7 @@ export declare enum KnownKind {
436
470
  * **Gen1** \
437
471
  * **Gen2**
438
472
  */
439
- export declare type Kind = string;
473
+ export type Kind = string;
440
474
  /** Known values of {@link CreatedByType} that the service accepts. */
441
475
  export declare enum KnownCreatedByType {
442
476
  /** User */
@@ -458,13 +492,72 @@ export declare enum KnownCreatedByType {
458
492
  * **ManagedIdentity** \
459
493
  * **Key**
460
494
  */
461
- export declare type CreatedByType = string;
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;
462
553
  /** Known values of {@link SigningKey} that the service accepts. */
463
554
  export declare enum KnownSigningKey {
464
555
  /** PrimaryKey */
465
556
  PrimaryKey = "primaryKey",
466
557
  /** SecondaryKey */
467
- SecondaryKey = "secondaryKey"
558
+ SecondaryKey = "secondaryKey",
559
+ /** ManagedIdentity */
560
+ ManagedIdentity = "managedIdentity"
468
561
  }
469
562
  /**
470
563
  * Defines values for SigningKey. \
@@ -472,9 +565,10 @@ export declare enum KnownSigningKey {
472
565
  * this enum contains the known values that the service supports.
473
566
  * ### Known values supported by the service
474
567
  * **primaryKey** \
475
- * **secondaryKey**
568
+ * **secondaryKey** \
569
+ * **managedIdentity**
476
570
  */
477
- export declare type SigningKey = string;
571
+ export type SigningKey = string;
478
572
  /** Known values of {@link KeyType} that the service accepts. */
479
573
  export declare enum KnownKeyType {
480
574
  /** Primary */
@@ -490,19 +584,17 @@ export declare enum KnownKeyType {
490
584
  * **primary** \
491
585
  * **secondary**
492
586
  */
493
- export declare type KeyType = string;
494
- /** Defines values for ResourceIdentityType. */
495
- export declare type ResourceIdentityType = "SystemAssigned" | "UserAssigned" | "SystemAssigned, UserAssigned" | "None";
587
+ export type KeyType = string;
496
588
  /** Optional parameters. */
497
589
  export interface AccountsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
498
590
  }
499
591
  /** Contains response data for the createOrUpdate operation. */
500
- export declare type AccountsCreateOrUpdateResponse = MapsAccount;
592
+ export type AccountsCreateOrUpdateResponse = MapsAccount;
501
593
  /** Optional parameters. */
502
594
  export interface AccountsUpdateOptionalParams extends coreClient.OperationOptions {
503
595
  }
504
596
  /** Contains response data for the update operation. */
505
- export declare type AccountsUpdateResponse = MapsAccount;
597
+ export type AccountsUpdateResponse = MapsAccount;
506
598
  /** Optional parameters. */
507
599
  export interface AccountsDeleteOptionalParams extends coreClient.OperationOptions {
508
600
  }
@@ -510,77 +602,77 @@ export interface AccountsDeleteOptionalParams extends coreClient.OperationOption
510
602
  export interface AccountsGetOptionalParams extends coreClient.OperationOptions {
511
603
  }
512
604
  /** Contains response data for the get operation. */
513
- export declare type AccountsGetResponse = MapsAccount;
605
+ export type AccountsGetResponse = MapsAccount;
514
606
  /** Optional parameters. */
515
607
  export interface AccountsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
516
608
  }
517
609
  /** Contains response data for the listByResourceGroup operation. */
518
- export declare type AccountsListByResourceGroupResponse = MapsAccounts;
610
+ export type AccountsListByResourceGroupResponse = MapsAccounts;
519
611
  /** Optional parameters. */
520
612
  export interface AccountsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
521
613
  }
522
614
  /** Contains response data for the listBySubscription operation. */
523
- export declare type AccountsListBySubscriptionResponse = MapsAccounts;
615
+ export type AccountsListBySubscriptionResponse = MapsAccounts;
524
616
  /** Optional parameters. */
525
617
  export interface AccountsListSasOptionalParams extends coreClient.OperationOptions {
526
618
  }
527
619
  /** Contains response data for the listSas operation. */
528
- export declare type AccountsListSasResponse = MapsAccountSasToken;
620
+ export type AccountsListSasResponse = MapsAccountSasToken;
529
621
  /** Optional parameters. */
530
622
  export interface AccountsListKeysOptionalParams extends coreClient.OperationOptions {
531
623
  }
532
624
  /** Contains response data for the listKeys operation. */
533
- export declare type AccountsListKeysResponse = MapsAccountKeys;
625
+ export type AccountsListKeysResponse = MapsAccountKeys;
534
626
  /** Optional parameters. */
535
627
  export interface AccountsRegenerateKeysOptionalParams extends coreClient.OperationOptions {
536
628
  }
537
629
  /** Contains response data for the regenerateKeys operation. */
538
- export declare type AccountsRegenerateKeysResponse = MapsAccountKeys;
630
+ export type AccountsRegenerateKeysResponse = MapsAccountKeys;
539
631
  /** Optional parameters. */
540
632
  export interface AccountsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
541
633
  }
542
634
  /** Contains response data for the listByResourceGroupNext operation. */
543
- export declare type AccountsListByResourceGroupNextResponse = MapsAccounts;
635
+ export type AccountsListByResourceGroupNextResponse = MapsAccounts;
544
636
  /** Optional parameters. */
545
637
  export interface AccountsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
546
638
  }
547
639
  /** Contains response data for the listBySubscriptionNext operation. */
548
- export declare type AccountsListBySubscriptionNextResponse = MapsAccounts;
640
+ export type AccountsListBySubscriptionNextResponse = MapsAccounts;
549
641
  /** Optional parameters. */
550
642
  export interface MapsListOperationsOptionalParams extends coreClient.OperationOptions {
551
643
  }
552
644
  /** Contains response data for the listOperations operation. */
553
- export declare type MapsListOperationsResponse = MapsOperations;
645
+ export type MapsListOperationsResponse = MapsOperations;
554
646
  /** Optional parameters. */
555
647
  export interface MapsListSubscriptionOperationsOptionalParams extends coreClient.OperationOptions {
556
648
  }
557
649
  /** Contains response data for the listSubscriptionOperations operation. */
558
- export declare type MapsListSubscriptionOperationsResponse = MapsOperations;
650
+ export type MapsListSubscriptionOperationsResponse = MapsOperations;
559
651
  /** Optional parameters. */
560
652
  export interface MapsListOperationsNextOptionalParams extends coreClient.OperationOptions {
561
653
  }
562
654
  /** Contains response data for the listOperationsNext operation. */
563
- export declare type MapsListOperationsNextResponse = MapsOperations;
655
+ export type MapsListOperationsNextResponse = MapsOperations;
564
656
  /** Optional parameters. */
565
657
  export interface MapsListSubscriptionOperationsNextOptionalParams extends coreClient.OperationOptions {
566
658
  }
567
659
  /** Contains response data for the listSubscriptionOperationsNext operation. */
568
- export declare type MapsListSubscriptionOperationsNextResponse = MapsOperations;
660
+ export type MapsListSubscriptionOperationsNextResponse = MapsOperations;
569
661
  /** Optional parameters. */
570
662
  export interface CreatorsListByAccountOptionalParams extends coreClient.OperationOptions {
571
663
  }
572
664
  /** Contains response data for the listByAccount operation. */
573
- export declare type CreatorsListByAccountResponse = CreatorList;
665
+ export type CreatorsListByAccountResponse = CreatorList;
574
666
  /** Optional parameters. */
575
667
  export interface CreatorsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
576
668
  }
577
669
  /** Contains response data for the createOrUpdate operation. */
578
- export declare type CreatorsCreateOrUpdateResponse = Creator;
670
+ export type CreatorsCreateOrUpdateResponse = Creator;
579
671
  /** Optional parameters. */
580
672
  export interface CreatorsUpdateOptionalParams extends coreClient.OperationOptions {
581
673
  }
582
674
  /** Contains response data for the update operation. */
583
- export declare type CreatorsUpdateResponse = Creator;
675
+ export type CreatorsUpdateResponse = Creator;
584
676
  /** Optional parameters. */
585
677
  export interface CreatorsDeleteOptionalParams extends coreClient.OperationOptions {
586
678
  }
@@ -588,12 +680,12 @@ export interface CreatorsDeleteOptionalParams extends coreClient.OperationOption
588
680
  export interface CreatorsGetOptionalParams extends coreClient.OperationOptions {
589
681
  }
590
682
  /** Contains response data for the get operation. */
591
- export declare type CreatorsGetResponse = Creator;
683
+ export type CreatorsGetResponse = Creator;
592
684
  /** Optional parameters. */
593
685
  export interface CreatorsListByAccountNextOptionalParams extends coreClient.OperationOptions {
594
686
  }
595
687
  /** Contains response data for the listByAccountNext operation. */
596
- export declare type CreatorsListByAccountNextResponse = CreatorList;
688
+ export type CreatorsListByAccountNextResponse = CreatorList;
597
689
  /** Optional parameters. */
598
690
  export interface AzureMapsManagementClientOptionalParams extends coreClient.ServiceClientOptions {
599
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":"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"}
@@ -35,6 +35,36 @@ export var KnownCreatedByType;
35
35
  /** Key */
36
36
  KnownCreatedByType["Key"] = "Key";
37
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 = {}));
38
68
  /** Known values of {@link SigningKey} that the service accepts. */
39
69
  export var KnownSigningKey;
40
70
  (function (KnownSigningKey) {
@@ -42,6 +72,8 @@ export var KnownSigningKey;
42
72
  KnownSigningKey["PrimaryKey"] = "primaryKey";
43
73
  /** SecondaryKey */
44
74
  KnownSigningKey["SecondaryKey"] = "secondaryKey";
75
+ /** ManagedIdentity */
76
+ KnownSigningKey["ManagedIdentity"] = "managedIdentity";
45
77
  })(KnownSigningKey || (KnownSigningKey = {}));
46
78
  /** Known values of {@link KeyType} that the service accepts. */
47
79
  export var KnownKeyType;
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AA+aH,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,mEAAmE;AACnE,MAAM,CAAN,IAAY,eAKX;AALD,WAAY,eAAe;IACzB,iBAAiB;IACjB,4CAAyB,CAAA;IACzB,mBAAmB;IACnB,gDAA6B,CAAA;AAC/B,CAAC,EALW,eAAe,KAAf,eAAe,QAK1B;AAYD,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"}
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 Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties: coreClient.CompositeMapper;
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,eA8C/C,CAAC;AAEF,eAAO,MAAM,kGAAkG,EAAE,UAAU,CAAC,eAsB3H,CAAC;AAEF,eAAO,MAAM,qBAAqB,EAAE,UAAU,CAAC,eAkD9C,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,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,eA8EpD,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,eA+E5C,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"}
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"}