@azure/arm-keyvault 2.1.0-alpha.20230302.1 → 2.1.0-alpha.20230419.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +156 -65
- 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/keysListSample.js +12 -5
- package/dist-esm/samples-dev/keysListSample.js.map +1 -1
- package/dist-esm/samples-dev/keysListVersionsSample.js +12 -5
- package/dist-esm/samples-dev/keysListVersionsSample.js.map +1 -1
- package/dist-esm/samples-dev/managedHsmsListByResourceGroupSample.js +12 -5
- package/dist-esm/samples-dev/managedHsmsListByResourceGroupSample.js.map +1 -1
- package/dist-esm/samples-dev/managedHsmsListBySubscriptionSample.js +12 -5
- package/dist-esm/samples-dev/managedHsmsListBySubscriptionSample.js.map +1 -1
- package/dist-esm/samples-dev/managedHsmsListDeletedSample.js +12 -5
- package/dist-esm/samples-dev/managedHsmsListDeletedSample.js.map +1 -1
- package/dist-esm/samples-dev/mhsmPrivateEndpointConnectionsListByResourceSample.js +12 -5
- package/dist-esm/samples-dev/mhsmPrivateEndpointConnectionsListByResourceSample.js.map +1 -1
- package/dist-esm/samples-dev/operationsListSample.js +12 -5
- package/dist-esm/samples-dev/operationsListSample.js.map +1 -1
- package/dist-esm/samples-dev/privateEndpointConnectionsListByResourceSample.js +12 -5
- package/dist-esm/samples-dev/privateEndpointConnectionsListByResourceSample.js.map +1 -1
- package/dist-esm/samples-dev/secretsListSample.js +12 -5
- package/dist-esm/samples-dev/secretsListSample.js.map +1 -1
- package/dist-esm/samples-dev/vaultsListByResourceGroupSample.js +12 -5
- package/dist-esm/samples-dev/vaultsListByResourceGroupSample.js.map +1 -1
- package/dist-esm/samples-dev/vaultsListBySubscriptionSample.js +12 -5
- package/dist-esm/samples-dev/vaultsListBySubscriptionSample.js.map +1 -1
- package/dist-esm/samples-dev/vaultsListDeletedSample.js +12 -5
- package/dist-esm/samples-dev/vaultsListDeletedSample.js.map +1 -1
- package/dist-esm/samples-dev/vaultsListSample.js +12 -5
- package/dist-esm/samples-dev/vaultsListSample.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +75 -75
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/operations/keys.js +24 -10
- package/dist-esm/src/operations/keys.js.map +1 -1
- package/dist-esm/src/operations/managedHsms.js +36 -15
- package/dist-esm/src/operations/managedHsms.js.map +1 -1
- package/dist-esm/src/operations/mhsmPrivateEndpointConnections.js +12 -5
- package/dist-esm/src/operations/mhsmPrivateEndpointConnections.js.map +1 -1
- package/dist-esm/src/operations/operations.js +12 -5
- package/dist-esm/src/operations/operations.js.map +1 -1
- package/dist-esm/src/operations/privateEndpointConnections.js +12 -5
- package/dist-esm/src/operations/privateEndpointConnections.js.map +1 -1
- package/dist-esm/src/operations/secrets.js +12 -5
- package/dist-esm/src/operations/secrets.js.map +1 -1
- package/dist-esm/src/operations/vaults.js +48 -20
- package/dist-esm/src/operations/vaults.js.map +1 -1
- package/dist-esm/test/keyvault_examples.js +24 -10
- package/dist-esm/test/keyvault_examples.js.map +1 -1
- package/package.json +3 -3
|
@@ -1051,7 +1051,7 @@ export declare enum KnownDeletionRecoveryLevel {
|
|
|
1051
1051
|
* **Recoverable** \
|
|
1052
1052
|
* **Recoverable+ProtectedSubscription**
|
|
1053
1053
|
*/
|
|
1054
|
-
export
|
|
1054
|
+
export type DeletionRecoveryLevel = string;
|
|
1055
1055
|
/** Known values of {@link JsonWebKeyType} that the service accepts. */
|
|
1056
1056
|
export declare enum KnownJsonWebKeyType {
|
|
1057
1057
|
/** EC */
|
|
@@ -1073,7 +1073,7 @@ export declare enum KnownJsonWebKeyType {
|
|
|
1073
1073
|
* **RSA** \
|
|
1074
1074
|
* **RSA-HSM**
|
|
1075
1075
|
*/
|
|
1076
|
-
export
|
|
1076
|
+
export type JsonWebKeyType = string;
|
|
1077
1077
|
/** Known values of {@link JsonWebKeyOperation} that the service accepts. */
|
|
1078
1078
|
export declare enum KnownJsonWebKeyOperation {
|
|
1079
1079
|
/** Encrypt */
|
|
@@ -1107,7 +1107,7 @@ export declare enum KnownJsonWebKeyOperation {
|
|
|
1107
1107
|
* **import** \
|
|
1108
1108
|
* **release**
|
|
1109
1109
|
*/
|
|
1110
|
-
export
|
|
1110
|
+
export type JsonWebKeyOperation = string;
|
|
1111
1111
|
/** Known values of {@link JsonWebKeyCurveName} that the service accepts. */
|
|
1112
1112
|
export declare enum KnownJsonWebKeyCurveName {
|
|
1113
1113
|
/** P256 */
|
|
@@ -1129,7 +1129,7 @@ export declare enum KnownJsonWebKeyCurveName {
|
|
|
1129
1129
|
* **P-521** \
|
|
1130
1130
|
* **P-256K**
|
|
1131
1131
|
*/
|
|
1132
|
-
export
|
|
1132
|
+
export type JsonWebKeyCurveName = string;
|
|
1133
1133
|
/** Known values of {@link SkuFamily} that the service accepts. */
|
|
1134
1134
|
export declare enum KnownSkuFamily {
|
|
1135
1135
|
/** A */
|
|
@@ -1142,7 +1142,7 @@ export declare enum KnownSkuFamily {
|
|
|
1142
1142
|
* ### Known values supported by the service
|
|
1143
1143
|
* **A**
|
|
1144
1144
|
*/
|
|
1145
|
-
export
|
|
1145
|
+
export type SkuFamily = string;
|
|
1146
1146
|
/** Known values of {@link KeyPermissions} that the service accepts. */
|
|
1147
1147
|
export declare enum KnownKeyPermissions {
|
|
1148
1148
|
/** All */
|
|
@@ -1215,7 +1215,7 @@ export declare enum KnownKeyPermissions {
|
|
|
1215
1215
|
* **getrotationpolicy** \
|
|
1216
1216
|
* **setrotationpolicy**
|
|
1217
1217
|
*/
|
|
1218
|
-
export
|
|
1218
|
+
export type KeyPermissions = string;
|
|
1219
1219
|
/** Known values of {@link SecretPermissions} that the service accepts. */
|
|
1220
1220
|
export declare enum KnownSecretPermissions {
|
|
1221
1221
|
/** All */
|
|
@@ -1252,7 +1252,7 @@ export declare enum KnownSecretPermissions {
|
|
|
1252
1252
|
* **recover** \
|
|
1253
1253
|
* **purge**
|
|
1254
1254
|
*/
|
|
1255
|
-
export
|
|
1255
|
+
export type SecretPermissions = string;
|
|
1256
1256
|
/** Known values of {@link CertificatePermissions} that the service accepts. */
|
|
1257
1257
|
export declare enum KnownCertificatePermissions {
|
|
1258
1258
|
/** All */
|
|
@@ -1313,7 +1313,7 @@ export declare enum KnownCertificatePermissions {
|
|
|
1313
1313
|
* **backup** \
|
|
1314
1314
|
* **restore**
|
|
1315
1315
|
*/
|
|
1316
|
-
export
|
|
1316
|
+
export type CertificatePermissions = string;
|
|
1317
1317
|
/** Known values of {@link StoragePermissions} that the service accepts. */
|
|
1318
1318
|
export declare enum KnownStoragePermissions {
|
|
1319
1319
|
/** All */
|
|
@@ -1368,7 +1368,7 @@ export declare enum KnownStoragePermissions {
|
|
|
1368
1368
|
* **getsas** \
|
|
1369
1369
|
* **deletesas**
|
|
1370
1370
|
*/
|
|
1371
|
-
export
|
|
1371
|
+
export type StoragePermissions = string;
|
|
1372
1372
|
/** Known values of {@link NetworkRuleBypassOptions} that the service accepts. */
|
|
1373
1373
|
export declare enum KnownNetworkRuleBypassOptions {
|
|
1374
1374
|
/** AzureServices */
|
|
@@ -1384,7 +1384,7 @@ export declare enum KnownNetworkRuleBypassOptions {
|
|
|
1384
1384
|
* **AzureServices** \
|
|
1385
1385
|
* **None**
|
|
1386
1386
|
*/
|
|
1387
|
-
export
|
|
1387
|
+
export type NetworkRuleBypassOptions = string;
|
|
1388
1388
|
/** Known values of {@link NetworkRuleAction} that the service accepts. */
|
|
1389
1389
|
export declare enum KnownNetworkRuleAction {
|
|
1390
1390
|
/** Allow */
|
|
@@ -1400,7 +1400,7 @@ export declare enum KnownNetworkRuleAction {
|
|
|
1400
1400
|
* **Allow** \
|
|
1401
1401
|
* **Deny**
|
|
1402
1402
|
*/
|
|
1403
|
-
export
|
|
1403
|
+
export type NetworkRuleAction = string;
|
|
1404
1404
|
/** Known values of {@link VaultProvisioningState} that the service accepts. */
|
|
1405
1405
|
export declare enum KnownVaultProvisioningState {
|
|
1406
1406
|
/** Succeeded */
|
|
@@ -1416,7 +1416,7 @@ export declare enum KnownVaultProvisioningState {
|
|
|
1416
1416
|
* **Succeeded** \
|
|
1417
1417
|
* **RegisteringDns**
|
|
1418
1418
|
*/
|
|
1419
|
-
export
|
|
1419
|
+
export type VaultProvisioningState = string;
|
|
1420
1420
|
/** Known values of {@link PrivateEndpointServiceConnectionStatus} that the service accepts. */
|
|
1421
1421
|
export declare enum KnownPrivateEndpointServiceConnectionStatus {
|
|
1422
1422
|
/** Pending */
|
|
@@ -1438,7 +1438,7 @@ export declare enum KnownPrivateEndpointServiceConnectionStatus {
|
|
|
1438
1438
|
* **Rejected** \
|
|
1439
1439
|
* **Disconnected**
|
|
1440
1440
|
*/
|
|
1441
|
-
export
|
|
1441
|
+
export type PrivateEndpointServiceConnectionStatus = string;
|
|
1442
1442
|
/** Known values of {@link ActionsRequired} that the service accepts. */
|
|
1443
1443
|
export declare enum KnownActionsRequired {
|
|
1444
1444
|
/** None */
|
|
@@ -1451,7 +1451,7 @@ export declare enum KnownActionsRequired {
|
|
|
1451
1451
|
* ### Known values supported by the service
|
|
1452
1452
|
* **None**
|
|
1453
1453
|
*/
|
|
1454
|
-
export
|
|
1454
|
+
export type ActionsRequired = string;
|
|
1455
1455
|
/** Known values of {@link PrivateEndpointConnectionProvisioningState} that the service accepts. */
|
|
1456
1456
|
export declare enum KnownPrivateEndpointConnectionProvisioningState {
|
|
1457
1457
|
/** Succeeded */
|
|
@@ -1479,7 +1479,7 @@ export declare enum KnownPrivateEndpointConnectionProvisioningState {
|
|
|
1479
1479
|
* **Failed** \
|
|
1480
1480
|
* **Disconnected**
|
|
1481
1481
|
*/
|
|
1482
|
-
export
|
|
1482
|
+
export type PrivateEndpointConnectionProvisioningState = string;
|
|
1483
1483
|
/** Known values of {@link IdentityType} that the service accepts. */
|
|
1484
1484
|
export declare enum KnownIdentityType {
|
|
1485
1485
|
/** User */
|
|
@@ -1501,7 +1501,7 @@ export declare enum KnownIdentityType {
|
|
|
1501
1501
|
* **ManagedIdentity** \
|
|
1502
1502
|
* **Key**
|
|
1503
1503
|
*/
|
|
1504
|
-
export
|
|
1504
|
+
export type IdentityType = string;
|
|
1505
1505
|
/** Known values of {@link ProvisioningState} that the service accepts. */
|
|
1506
1506
|
export declare enum KnownProvisioningState {
|
|
1507
1507
|
/** The managed HSM Pool has been full provisioned. */
|
|
@@ -1535,7 +1535,7 @@ export declare enum KnownProvisioningState {
|
|
|
1535
1535
|
* **SecurityDomainRestore**: The managed HSM pool is waiting for a security domain restore action. \
|
|
1536
1536
|
* **Restoring**: The managed HSM pool is being restored from full HSM backup.
|
|
1537
1537
|
*/
|
|
1538
|
-
export
|
|
1538
|
+
export type ProvisioningState = string;
|
|
1539
1539
|
/** Known values of {@link PublicNetworkAccess} that the service accepts. */
|
|
1540
1540
|
export declare enum KnownPublicNetworkAccess {
|
|
1541
1541
|
/** Enabled */
|
|
@@ -1551,7 +1551,7 @@ export declare enum KnownPublicNetworkAccess {
|
|
|
1551
1551
|
* **Enabled** \
|
|
1552
1552
|
* **Disabled**
|
|
1553
1553
|
*/
|
|
1554
|
-
export
|
|
1554
|
+
export type PublicNetworkAccess = string;
|
|
1555
1555
|
/** Known values of {@link ManagedHsmSkuFamily} that the service accepts. */
|
|
1556
1556
|
export declare enum KnownManagedHsmSkuFamily {
|
|
1557
1557
|
/** B */
|
|
@@ -1564,54 +1564,54 @@ export declare enum KnownManagedHsmSkuFamily {
|
|
|
1564
1564
|
* ### Known values supported by the service
|
|
1565
1565
|
* **B**
|
|
1566
1566
|
*/
|
|
1567
|
-
export
|
|
1567
|
+
export type ManagedHsmSkuFamily = string;
|
|
1568
1568
|
/** Defines values for KeyRotationPolicyActionType. */
|
|
1569
|
-
export
|
|
1569
|
+
export type KeyRotationPolicyActionType = "rotate" | "notify";
|
|
1570
1570
|
/** Defines values for SkuName. */
|
|
1571
|
-
export
|
|
1571
|
+
export type SkuName = "standard" | "premium";
|
|
1572
1572
|
/** Defines values for CreateMode. */
|
|
1573
|
-
export
|
|
1573
|
+
export type CreateMode = "recover" | "default";
|
|
1574
1574
|
/** Defines values for AccessPolicyUpdateKind. */
|
|
1575
|
-
export
|
|
1575
|
+
export type AccessPolicyUpdateKind = "add" | "replace" | "remove";
|
|
1576
1576
|
/** Defines values for Reason. */
|
|
1577
|
-
export
|
|
1577
|
+
export type Reason = "AccountNameInvalid" | "AlreadyExists";
|
|
1578
1578
|
/** Defines values for ManagedHsmSkuName. */
|
|
1579
|
-
export
|
|
1579
|
+
export type ManagedHsmSkuName = "Standard_B1" | "Custom_B32";
|
|
1580
1580
|
/** Optional parameters. */
|
|
1581
1581
|
export interface KeysCreateIfNotExistOptionalParams extends coreClient.OperationOptions {
|
|
1582
1582
|
}
|
|
1583
1583
|
/** Contains response data for the createIfNotExist operation. */
|
|
1584
|
-
export
|
|
1584
|
+
export type KeysCreateIfNotExistResponse = Key;
|
|
1585
1585
|
/** Optional parameters. */
|
|
1586
1586
|
export interface KeysGetOptionalParams extends coreClient.OperationOptions {
|
|
1587
1587
|
}
|
|
1588
1588
|
/** Contains response data for the get operation. */
|
|
1589
|
-
export
|
|
1589
|
+
export type KeysGetResponse = Key;
|
|
1590
1590
|
/** Optional parameters. */
|
|
1591
1591
|
export interface KeysListOptionalParams extends coreClient.OperationOptions {
|
|
1592
1592
|
}
|
|
1593
1593
|
/** Contains response data for the list operation. */
|
|
1594
|
-
export
|
|
1594
|
+
export type KeysListResponse = KeyListResult;
|
|
1595
1595
|
/** Optional parameters. */
|
|
1596
1596
|
export interface KeysGetVersionOptionalParams extends coreClient.OperationOptions {
|
|
1597
1597
|
}
|
|
1598
1598
|
/** Contains response data for the getVersion operation. */
|
|
1599
|
-
export
|
|
1599
|
+
export type KeysGetVersionResponse = Key;
|
|
1600
1600
|
/** Optional parameters. */
|
|
1601
1601
|
export interface KeysListVersionsOptionalParams extends coreClient.OperationOptions {
|
|
1602
1602
|
}
|
|
1603
1603
|
/** Contains response data for the listVersions operation. */
|
|
1604
|
-
export
|
|
1604
|
+
export type KeysListVersionsResponse = KeyListResult;
|
|
1605
1605
|
/** Optional parameters. */
|
|
1606
1606
|
export interface KeysListNextOptionalParams extends coreClient.OperationOptions {
|
|
1607
1607
|
}
|
|
1608
1608
|
/** Contains response data for the listNext operation. */
|
|
1609
|
-
export
|
|
1609
|
+
export type KeysListNextResponse = KeyListResult;
|
|
1610
1610
|
/** Optional parameters. */
|
|
1611
1611
|
export interface KeysListVersionsNextOptionalParams extends coreClient.OperationOptions {
|
|
1612
1612
|
}
|
|
1613
1613
|
/** Contains response data for the listVersionsNext operation. */
|
|
1614
|
-
export
|
|
1614
|
+
export type KeysListVersionsNextResponse = KeyListResult;
|
|
1615
1615
|
/** Optional parameters. */
|
|
1616
1616
|
export interface VaultsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1617
1617
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -1620,12 +1620,12 @@ export interface VaultsCreateOrUpdateOptionalParams extends coreClient.Operation
|
|
|
1620
1620
|
resumeFrom?: string;
|
|
1621
1621
|
}
|
|
1622
1622
|
/** Contains response data for the createOrUpdate operation. */
|
|
1623
|
-
export
|
|
1623
|
+
export type VaultsCreateOrUpdateResponse = Vault;
|
|
1624
1624
|
/** Optional parameters. */
|
|
1625
1625
|
export interface VaultsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1626
1626
|
}
|
|
1627
1627
|
/** Contains response data for the update operation. */
|
|
1628
|
-
export
|
|
1628
|
+
export type VaultsUpdateResponse = Vault;
|
|
1629
1629
|
/** Optional parameters. */
|
|
1630
1630
|
export interface VaultsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1631
1631
|
}
|
|
@@ -1633,36 +1633,36 @@ export interface VaultsDeleteOptionalParams extends coreClient.OperationOptions
|
|
|
1633
1633
|
export interface VaultsGetOptionalParams extends coreClient.OperationOptions {
|
|
1634
1634
|
}
|
|
1635
1635
|
/** Contains response data for the get operation. */
|
|
1636
|
-
export
|
|
1636
|
+
export type VaultsGetResponse = Vault;
|
|
1637
1637
|
/** Optional parameters. */
|
|
1638
1638
|
export interface VaultsUpdateAccessPolicyOptionalParams extends coreClient.OperationOptions {
|
|
1639
1639
|
}
|
|
1640
1640
|
/** Contains response data for the updateAccessPolicy operation. */
|
|
1641
|
-
export
|
|
1641
|
+
export type VaultsUpdateAccessPolicyResponse = VaultAccessPolicyParameters;
|
|
1642
1642
|
/** Optional parameters. */
|
|
1643
1643
|
export interface VaultsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
1644
1644
|
/** Maximum number of results to return. */
|
|
1645
1645
|
top?: number;
|
|
1646
1646
|
}
|
|
1647
1647
|
/** Contains response data for the listByResourceGroup operation. */
|
|
1648
|
-
export
|
|
1648
|
+
export type VaultsListByResourceGroupResponse = VaultListResult;
|
|
1649
1649
|
/** Optional parameters. */
|
|
1650
1650
|
export interface VaultsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
1651
1651
|
/** Maximum number of results to return. */
|
|
1652
1652
|
top?: number;
|
|
1653
1653
|
}
|
|
1654
1654
|
/** Contains response data for the listBySubscription operation. */
|
|
1655
|
-
export
|
|
1655
|
+
export type VaultsListBySubscriptionResponse = VaultListResult;
|
|
1656
1656
|
/** Optional parameters. */
|
|
1657
1657
|
export interface VaultsListDeletedOptionalParams extends coreClient.OperationOptions {
|
|
1658
1658
|
}
|
|
1659
1659
|
/** Contains response data for the listDeleted operation. */
|
|
1660
|
-
export
|
|
1660
|
+
export type VaultsListDeletedResponse = DeletedVaultListResult;
|
|
1661
1661
|
/** Optional parameters. */
|
|
1662
1662
|
export interface VaultsGetDeletedOptionalParams extends coreClient.OperationOptions {
|
|
1663
1663
|
}
|
|
1664
1664
|
/** Contains response data for the getDeleted operation. */
|
|
1665
|
-
export
|
|
1665
|
+
export type VaultsGetDeletedResponse = DeletedVault;
|
|
1666
1666
|
/** Optional parameters. */
|
|
1667
1667
|
export interface VaultsPurgeDeletedOptionalParams extends coreClient.OperationOptions {
|
|
1668
1668
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -1676,48 +1676,48 @@ export interface VaultsListOptionalParams extends coreClient.OperationOptions {
|
|
|
1676
1676
|
top?: number;
|
|
1677
1677
|
}
|
|
1678
1678
|
/** Contains response data for the list operation. */
|
|
1679
|
-
export
|
|
1679
|
+
export type VaultsListResponse = ResourceListResult;
|
|
1680
1680
|
/** Optional parameters. */
|
|
1681
1681
|
export interface VaultsCheckNameAvailabilityOptionalParams extends coreClient.OperationOptions {
|
|
1682
1682
|
}
|
|
1683
1683
|
/** Contains response data for the checkNameAvailability operation. */
|
|
1684
|
-
export
|
|
1684
|
+
export type VaultsCheckNameAvailabilityResponse = CheckNameAvailabilityResult;
|
|
1685
1685
|
/** Optional parameters. */
|
|
1686
1686
|
export interface VaultsListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
1687
1687
|
/** Maximum number of results to return. */
|
|
1688
1688
|
top?: number;
|
|
1689
1689
|
}
|
|
1690
1690
|
/** Contains response data for the listByResourceGroupNext operation. */
|
|
1691
|
-
export
|
|
1691
|
+
export type VaultsListByResourceGroupNextResponse = VaultListResult;
|
|
1692
1692
|
/** Optional parameters. */
|
|
1693
1693
|
export interface VaultsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
1694
1694
|
/** Maximum number of results to return. */
|
|
1695
1695
|
top?: number;
|
|
1696
1696
|
}
|
|
1697
1697
|
/** Contains response data for the listBySubscriptionNext operation. */
|
|
1698
|
-
export
|
|
1698
|
+
export type VaultsListBySubscriptionNextResponse = VaultListResult;
|
|
1699
1699
|
/** Optional parameters. */
|
|
1700
1700
|
export interface VaultsListDeletedNextOptionalParams extends coreClient.OperationOptions {
|
|
1701
1701
|
}
|
|
1702
1702
|
/** Contains response data for the listDeletedNext operation. */
|
|
1703
|
-
export
|
|
1703
|
+
export type VaultsListDeletedNextResponse = DeletedVaultListResult;
|
|
1704
1704
|
/** Optional parameters. */
|
|
1705
1705
|
export interface VaultsListNextOptionalParams extends coreClient.OperationOptions {
|
|
1706
1706
|
/** Maximum number of results to return. */
|
|
1707
1707
|
top?: number;
|
|
1708
1708
|
}
|
|
1709
1709
|
/** Contains response data for the listNext operation. */
|
|
1710
|
-
export
|
|
1710
|
+
export type VaultsListNextResponse = ResourceListResult;
|
|
1711
1711
|
/** Optional parameters. */
|
|
1712
1712
|
export interface PrivateEndpointConnectionsGetOptionalParams extends coreClient.OperationOptions {
|
|
1713
1713
|
}
|
|
1714
1714
|
/** Contains response data for the get operation. */
|
|
1715
|
-
export
|
|
1715
|
+
export type PrivateEndpointConnectionsGetResponse = PrivateEndpointConnection;
|
|
1716
1716
|
/** Optional parameters. */
|
|
1717
1717
|
export interface PrivateEndpointConnectionsPutOptionalParams extends coreClient.OperationOptions {
|
|
1718
1718
|
}
|
|
1719
1719
|
/** Contains response data for the put operation. */
|
|
1720
|
-
export
|
|
1720
|
+
export type PrivateEndpointConnectionsPutResponse = PrivateEndpointConnectionsPutHeaders & PrivateEndpointConnection;
|
|
1721
1721
|
/** Optional parameters. */
|
|
1722
1722
|
export interface PrivateEndpointConnectionsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1723
1723
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -1726,22 +1726,22 @@ export interface PrivateEndpointConnectionsDeleteOptionalParams extends coreClie
|
|
|
1726
1726
|
resumeFrom?: string;
|
|
1727
1727
|
}
|
|
1728
1728
|
/** Contains response data for the delete operation. */
|
|
1729
|
-
export
|
|
1729
|
+
export type PrivateEndpointConnectionsDeleteResponse = PrivateEndpointConnection;
|
|
1730
1730
|
/** Optional parameters. */
|
|
1731
1731
|
export interface PrivateEndpointConnectionsListByResourceOptionalParams extends coreClient.OperationOptions {
|
|
1732
1732
|
}
|
|
1733
1733
|
/** Contains response data for the listByResource operation. */
|
|
1734
|
-
export
|
|
1734
|
+
export type PrivateEndpointConnectionsListByResourceResponse = PrivateEndpointConnectionListResult;
|
|
1735
1735
|
/** Optional parameters. */
|
|
1736
1736
|
export interface PrivateEndpointConnectionsListByResourceNextOptionalParams extends coreClient.OperationOptions {
|
|
1737
1737
|
}
|
|
1738
1738
|
/** Contains response data for the listByResourceNext operation. */
|
|
1739
|
-
export
|
|
1739
|
+
export type PrivateEndpointConnectionsListByResourceNextResponse = PrivateEndpointConnectionListResult;
|
|
1740
1740
|
/** Optional parameters. */
|
|
1741
1741
|
export interface PrivateLinkResourcesListByVaultOptionalParams extends coreClient.OperationOptions {
|
|
1742
1742
|
}
|
|
1743
1743
|
/** Contains response data for the listByVault operation. */
|
|
1744
|
-
export
|
|
1744
|
+
export type PrivateLinkResourcesListByVaultResponse = PrivateLinkResourceListResult;
|
|
1745
1745
|
/** Optional parameters. */
|
|
1746
1746
|
export interface ManagedHsmsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1747
1747
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -1750,7 +1750,7 @@ export interface ManagedHsmsCreateOrUpdateOptionalParams extends coreClient.Oper
|
|
|
1750
1750
|
resumeFrom?: string;
|
|
1751
1751
|
}
|
|
1752
1752
|
/** Contains response data for the createOrUpdate operation. */
|
|
1753
|
-
export
|
|
1753
|
+
export type ManagedHsmsCreateOrUpdateResponse = ManagedHsm;
|
|
1754
1754
|
/** Optional parameters. */
|
|
1755
1755
|
export interface ManagedHsmsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1756
1756
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -1759,7 +1759,7 @@ export interface ManagedHsmsUpdateOptionalParams extends coreClient.OperationOpt
|
|
|
1759
1759
|
resumeFrom?: string;
|
|
1760
1760
|
}
|
|
1761
1761
|
/** Contains response data for the update operation. */
|
|
1762
|
-
export
|
|
1762
|
+
export type ManagedHsmsUpdateResponse = ManagedHsm;
|
|
1763
1763
|
/** Optional parameters. */
|
|
1764
1764
|
export interface ManagedHsmsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1765
1765
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -1771,31 +1771,31 @@ export interface ManagedHsmsDeleteOptionalParams extends coreClient.OperationOpt
|
|
|
1771
1771
|
export interface ManagedHsmsGetOptionalParams extends coreClient.OperationOptions {
|
|
1772
1772
|
}
|
|
1773
1773
|
/** Contains response data for the get operation. */
|
|
1774
|
-
export
|
|
1774
|
+
export type ManagedHsmsGetResponse = ManagedHsm;
|
|
1775
1775
|
/** Optional parameters. */
|
|
1776
1776
|
export interface ManagedHsmsListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
1777
1777
|
/** Maximum number of results to return. */
|
|
1778
1778
|
top?: number;
|
|
1779
1779
|
}
|
|
1780
1780
|
/** Contains response data for the listByResourceGroup operation. */
|
|
1781
|
-
export
|
|
1781
|
+
export type ManagedHsmsListByResourceGroupResponse = ManagedHsmListResult;
|
|
1782
1782
|
/** Optional parameters. */
|
|
1783
1783
|
export interface ManagedHsmsListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
1784
1784
|
/** Maximum number of results to return. */
|
|
1785
1785
|
top?: number;
|
|
1786
1786
|
}
|
|
1787
1787
|
/** Contains response data for the listBySubscription operation. */
|
|
1788
|
-
export
|
|
1788
|
+
export type ManagedHsmsListBySubscriptionResponse = ManagedHsmListResult;
|
|
1789
1789
|
/** Optional parameters. */
|
|
1790
1790
|
export interface ManagedHsmsListDeletedOptionalParams extends coreClient.OperationOptions {
|
|
1791
1791
|
}
|
|
1792
1792
|
/** Contains response data for the listDeleted operation. */
|
|
1793
|
-
export
|
|
1793
|
+
export type ManagedHsmsListDeletedResponse = DeletedManagedHsmListResult;
|
|
1794
1794
|
/** Optional parameters. */
|
|
1795
1795
|
export interface ManagedHsmsGetDeletedOptionalParams extends coreClient.OperationOptions {
|
|
1796
1796
|
}
|
|
1797
1797
|
/** Contains response data for the getDeleted operation. */
|
|
1798
|
-
export
|
|
1798
|
+
export type ManagedHsmsGetDeletedResponse = DeletedManagedHsm;
|
|
1799
1799
|
/** Optional parameters. */
|
|
1800
1800
|
export interface ManagedHsmsPurgeDeletedOptionalParams extends coreClient.OperationOptions {
|
|
1801
1801
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -1809,34 +1809,34 @@ export interface ManagedHsmsListByResourceGroupNextOptionalParams extends coreCl
|
|
|
1809
1809
|
top?: number;
|
|
1810
1810
|
}
|
|
1811
1811
|
/** Contains response data for the listByResourceGroupNext operation. */
|
|
1812
|
-
export
|
|
1812
|
+
export type ManagedHsmsListByResourceGroupNextResponse = ManagedHsmListResult;
|
|
1813
1813
|
/** Optional parameters. */
|
|
1814
1814
|
export interface ManagedHsmsListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
1815
1815
|
/** Maximum number of results to return. */
|
|
1816
1816
|
top?: number;
|
|
1817
1817
|
}
|
|
1818
1818
|
/** Contains response data for the listBySubscriptionNext operation. */
|
|
1819
|
-
export
|
|
1819
|
+
export type ManagedHsmsListBySubscriptionNextResponse = ManagedHsmListResult;
|
|
1820
1820
|
/** Optional parameters. */
|
|
1821
1821
|
export interface ManagedHsmsListDeletedNextOptionalParams extends coreClient.OperationOptions {
|
|
1822
1822
|
}
|
|
1823
1823
|
/** Contains response data for the listDeletedNext operation. */
|
|
1824
|
-
export
|
|
1824
|
+
export type ManagedHsmsListDeletedNextResponse = DeletedManagedHsmListResult;
|
|
1825
1825
|
/** Optional parameters. */
|
|
1826
1826
|
export interface MhsmPrivateEndpointConnectionsListByResourceOptionalParams extends coreClient.OperationOptions {
|
|
1827
1827
|
}
|
|
1828
1828
|
/** Contains response data for the listByResource operation. */
|
|
1829
|
-
export
|
|
1829
|
+
export type MhsmPrivateEndpointConnectionsListByResourceResponse = MhsmPrivateEndpointConnectionsListResult;
|
|
1830
1830
|
/** Optional parameters. */
|
|
1831
1831
|
export interface MhsmPrivateEndpointConnectionsGetOptionalParams extends coreClient.OperationOptions {
|
|
1832
1832
|
}
|
|
1833
1833
|
/** Contains response data for the get operation. */
|
|
1834
|
-
export
|
|
1834
|
+
export type MhsmPrivateEndpointConnectionsGetResponse = MhsmPrivateEndpointConnection;
|
|
1835
1835
|
/** Optional parameters. */
|
|
1836
1836
|
export interface MhsmPrivateEndpointConnectionsPutOptionalParams extends coreClient.OperationOptions {
|
|
1837
1837
|
}
|
|
1838
1838
|
/** Contains response data for the put operation. */
|
|
1839
|
-
export
|
|
1839
|
+
export type MhsmPrivateEndpointConnectionsPutResponse = MhsmPrivateEndpointConnectionsPutHeaders & MhsmPrivateEndpointConnection;
|
|
1840
1840
|
/** Optional parameters. */
|
|
1841
1841
|
export interface MhsmPrivateEndpointConnectionsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
1842
1842
|
/** Delay to wait until next poll, in milliseconds. */
|
|
@@ -1845,56 +1845,56 @@ export interface MhsmPrivateEndpointConnectionsDeleteOptionalParams extends core
|
|
|
1845
1845
|
resumeFrom?: string;
|
|
1846
1846
|
}
|
|
1847
1847
|
/** Contains response data for the delete operation. */
|
|
1848
|
-
export
|
|
1848
|
+
export type MhsmPrivateEndpointConnectionsDeleteResponse = MhsmPrivateEndpointConnection;
|
|
1849
1849
|
/** Optional parameters. */
|
|
1850
1850
|
export interface MhsmPrivateEndpointConnectionsListByResourceNextOptionalParams extends coreClient.OperationOptions {
|
|
1851
1851
|
}
|
|
1852
1852
|
/** Contains response data for the listByResourceNext operation. */
|
|
1853
|
-
export
|
|
1853
|
+
export type MhsmPrivateEndpointConnectionsListByResourceNextResponse = MhsmPrivateEndpointConnectionsListResult;
|
|
1854
1854
|
/** Optional parameters. */
|
|
1855
1855
|
export interface MhsmPrivateLinkResourcesListByMhsmResourceOptionalParams extends coreClient.OperationOptions {
|
|
1856
1856
|
}
|
|
1857
1857
|
/** Contains response data for the listByMhsmResource operation. */
|
|
1858
|
-
export
|
|
1858
|
+
export type MhsmPrivateLinkResourcesListByMhsmResourceResponse = MhsmPrivateLinkResourceListResult;
|
|
1859
1859
|
/** Optional parameters. */
|
|
1860
1860
|
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
1861
1861
|
}
|
|
1862
1862
|
/** Contains response data for the list operation. */
|
|
1863
|
-
export
|
|
1863
|
+
export type OperationsListResponse = OperationListResult;
|
|
1864
1864
|
/** Optional parameters. */
|
|
1865
1865
|
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
1866
1866
|
}
|
|
1867
1867
|
/** Contains response data for the listNext operation. */
|
|
1868
|
-
export
|
|
1868
|
+
export type OperationsListNextResponse = OperationListResult;
|
|
1869
1869
|
/** Optional parameters. */
|
|
1870
1870
|
export interface SecretsCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1871
1871
|
}
|
|
1872
1872
|
/** Contains response data for the createOrUpdate operation. */
|
|
1873
|
-
export
|
|
1873
|
+
export type SecretsCreateOrUpdateResponse = Secret;
|
|
1874
1874
|
/** Optional parameters. */
|
|
1875
1875
|
export interface SecretsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
1876
1876
|
}
|
|
1877
1877
|
/** Contains response data for the update operation. */
|
|
1878
|
-
export
|
|
1878
|
+
export type SecretsUpdateResponse = Secret;
|
|
1879
1879
|
/** Optional parameters. */
|
|
1880
1880
|
export interface SecretsGetOptionalParams extends coreClient.OperationOptions {
|
|
1881
1881
|
}
|
|
1882
1882
|
/** Contains response data for the get operation. */
|
|
1883
|
-
export
|
|
1883
|
+
export type SecretsGetResponse = Secret;
|
|
1884
1884
|
/** Optional parameters. */
|
|
1885
1885
|
export interface SecretsListOptionalParams extends coreClient.OperationOptions {
|
|
1886
1886
|
/** Maximum number of results to return. */
|
|
1887
1887
|
top?: number;
|
|
1888
1888
|
}
|
|
1889
1889
|
/** Contains response data for the list operation. */
|
|
1890
|
-
export
|
|
1890
|
+
export type SecretsListResponse = SecretListResult;
|
|
1891
1891
|
/** Optional parameters. */
|
|
1892
1892
|
export interface SecretsListNextOptionalParams extends coreClient.OperationOptions {
|
|
1893
1893
|
/** Maximum number of results to return. */
|
|
1894
1894
|
top?: number;
|
|
1895
1895
|
}
|
|
1896
1896
|
/** Contains response data for the listNext operation. */
|
|
1897
|
-
export
|
|
1897
|
+
export type SecretsListNextResponse = SecretListResult;
|
|
1898
1898
|
/** Optional parameters. */
|
|
1899
1899
|
export interface KeyVaultManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
1900
1900
|
/** server parameter */
|