@aws-sdk/client-kms 3.193.0 → 3.195.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 (232) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/dist-cjs/KMSClient.js +11 -8
  3. package/dist-cjs/commands/CancelKeyDeletionCommand.js +10 -0
  4. package/dist-cjs/commands/ConnectCustomKeyStoreCommand.js +10 -0
  5. package/dist-cjs/commands/CreateAliasCommand.js +10 -0
  6. package/dist-cjs/commands/CreateCustomKeyStoreCommand.js +10 -0
  7. package/dist-cjs/commands/CreateGrantCommand.js +10 -0
  8. package/dist-cjs/commands/CreateKeyCommand.js +10 -0
  9. package/dist-cjs/commands/DecryptCommand.js +10 -0
  10. package/dist-cjs/commands/DeleteAliasCommand.js +10 -0
  11. package/dist-cjs/commands/DeleteCustomKeyStoreCommand.js +10 -0
  12. package/dist-cjs/commands/DeleteImportedKeyMaterialCommand.js +10 -0
  13. package/dist-cjs/commands/DescribeCustomKeyStoresCommand.js +10 -0
  14. package/dist-cjs/commands/DescribeKeyCommand.js +10 -0
  15. package/dist-cjs/commands/DisableKeyCommand.js +10 -0
  16. package/dist-cjs/commands/DisableKeyRotationCommand.js +10 -0
  17. package/dist-cjs/commands/DisconnectCustomKeyStoreCommand.js +10 -0
  18. package/dist-cjs/commands/EnableKeyCommand.js +10 -0
  19. package/dist-cjs/commands/EnableKeyRotationCommand.js +10 -0
  20. package/dist-cjs/commands/EncryptCommand.js +10 -0
  21. package/dist-cjs/commands/GenerateDataKeyCommand.js +10 -0
  22. package/dist-cjs/commands/GenerateDataKeyPairCommand.js +10 -0
  23. package/dist-cjs/commands/GenerateDataKeyPairWithoutPlaintextCommand.js +10 -0
  24. package/dist-cjs/commands/GenerateDataKeyWithoutPlaintextCommand.js +10 -0
  25. package/dist-cjs/commands/GenerateMacCommand.js +10 -0
  26. package/dist-cjs/commands/GenerateRandomCommand.js +10 -0
  27. package/dist-cjs/commands/GetKeyPolicyCommand.js +10 -0
  28. package/dist-cjs/commands/GetKeyRotationStatusCommand.js +10 -0
  29. package/dist-cjs/commands/GetParametersForImportCommand.js +10 -0
  30. package/dist-cjs/commands/GetPublicKeyCommand.js +10 -0
  31. package/dist-cjs/commands/ImportKeyMaterialCommand.js +10 -0
  32. package/dist-cjs/commands/ListAliasesCommand.js +10 -0
  33. package/dist-cjs/commands/ListGrantsCommand.js +10 -0
  34. package/dist-cjs/commands/ListKeyPoliciesCommand.js +10 -0
  35. package/dist-cjs/commands/ListKeysCommand.js +10 -0
  36. package/dist-cjs/commands/ListResourceTagsCommand.js +10 -0
  37. package/dist-cjs/commands/ListRetirableGrantsCommand.js +10 -0
  38. package/dist-cjs/commands/PutKeyPolicyCommand.js +10 -0
  39. package/dist-cjs/commands/ReEncryptCommand.js +10 -0
  40. package/dist-cjs/commands/ReplicateKeyCommand.js +10 -0
  41. package/dist-cjs/commands/RetireGrantCommand.js +10 -0
  42. package/dist-cjs/commands/RevokeGrantCommand.js +10 -0
  43. package/dist-cjs/commands/ScheduleKeyDeletionCommand.js +10 -0
  44. package/dist-cjs/commands/SignCommand.js +10 -0
  45. package/dist-cjs/commands/TagResourceCommand.js +10 -0
  46. package/dist-cjs/commands/UntagResourceCommand.js +10 -0
  47. package/dist-cjs/commands/UpdateAliasCommand.js +10 -0
  48. package/dist-cjs/commands/UpdateCustomKeyStoreCommand.js +10 -0
  49. package/dist-cjs/commands/UpdateKeyDescriptionCommand.js +10 -0
  50. package/dist-cjs/commands/UpdatePrimaryRegionCommand.js +10 -0
  51. package/dist-cjs/commands/VerifyCommand.js +10 -0
  52. package/dist-cjs/commands/VerifyMacCommand.js +10 -0
  53. package/dist-cjs/endpoint/EndpointParameters.js +13 -0
  54. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  55. package/dist-cjs/endpoint/ruleset.js +318 -0
  56. package/dist-cjs/runtimeConfig.shared.js +3 -3
  57. package/dist-es/KMSClient.js +12 -9
  58. package/dist-es/commands/CancelKeyDeletionCommand.js +10 -0
  59. package/dist-es/commands/ConnectCustomKeyStoreCommand.js +10 -0
  60. package/dist-es/commands/CreateAliasCommand.js +10 -0
  61. package/dist-es/commands/CreateCustomKeyStoreCommand.js +10 -0
  62. package/dist-es/commands/CreateGrantCommand.js +10 -0
  63. package/dist-es/commands/CreateKeyCommand.js +10 -0
  64. package/dist-es/commands/DecryptCommand.js +10 -0
  65. package/dist-es/commands/DeleteAliasCommand.js +10 -0
  66. package/dist-es/commands/DeleteCustomKeyStoreCommand.js +10 -0
  67. package/dist-es/commands/DeleteImportedKeyMaterialCommand.js +10 -0
  68. package/dist-es/commands/DescribeCustomKeyStoresCommand.js +10 -0
  69. package/dist-es/commands/DescribeKeyCommand.js +10 -0
  70. package/dist-es/commands/DisableKeyCommand.js +10 -0
  71. package/dist-es/commands/DisableKeyRotationCommand.js +10 -0
  72. package/dist-es/commands/DisconnectCustomKeyStoreCommand.js +10 -0
  73. package/dist-es/commands/EnableKeyCommand.js +10 -0
  74. package/dist-es/commands/EnableKeyRotationCommand.js +10 -0
  75. package/dist-es/commands/EncryptCommand.js +10 -0
  76. package/dist-es/commands/GenerateDataKeyCommand.js +10 -0
  77. package/dist-es/commands/GenerateDataKeyPairCommand.js +10 -0
  78. package/dist-es/commands/GenerateDataKeyPairWithoutPlaintextCommand.js +10 -0
  79. package/dist-es/commands/GenerateDataKeyWithoutPlaintextCommand.js +10 -0
  80. package/dist-es/commands/GenerateMacCommand.js +10 -0
  81. package/dist-es/commands/GenerateRandomCommand.js +10 -0
  82. package/dist-es/commands/GetKeyPolicyCommand.js +10 -0
  83. package/dist-es/commands/GetKeyRotationStatusCommand.js +10 -0
  84. package/dist-es/commands/GetParametersForImportCommand.js +10 -0
  85. package/dist-es/commands/GetPublicKeyCommand.js +10 -0
  86. package/dist-es/commands/ImportKeyMaterialCommand.js +10 -0
  87. package/dist-es/commands/ListAliasesCommand.js +10 -0
  88. package/dist-es/commands/ListGrantsCommand.js +10 -0
  89. package/dist-es/commands/ListKeyPoliciesCommand.js +10 -0
  90. package/dist-es/commands/ListKeysCommand.js +10 -0
  91. package/dist-es/commands/ListResourceTagsCommand.js +10 -0
  92. package/dist-es/commands/ListRetirableGrantsCommand.js +10 -0
  93. package/dist-es/commands/PutKeyPolicyCommand.js +10 -0
  94. package/dist-es/commands/ReEncryptCommand.js +10 -0
  95. package/dist-es/commands/ReplicateKeyCommand.js +10 -0
  96. package/dist-es/commands/RetireGrantCommand.js +10 -0
  97. package/dist-es/commands/RevokeGrantCommand.js +10 -0
  98. package/dist-es/commands/ScheduleKeyDeletionCommand.js +10 -0
  99. package/dist-es/commands/SignCommand.js +10 -0
  100. package/dist-es/commands/TagResourceCommand.js +10 -0
  101. package/dist-es/commands/UntagResourceCommand.js +10 -0
  102. package/dist-es/commands/UpdateAliasCommand.js +10 -0
  103. package/dist-es/commands/UpdateCustomKeyStoreCommand.js +10 -0
  104. package/dist-es/commands/UpdateKeyDescriptionCommand.js +10 -0
  105. package/dist-es/commands/UpdatePrimaryRegionCommand.js +10 -0
  106. package/dist-es/commands/VerifyCommand.js +10 -0
  107. package/dist-es/commands/VerifyMacCommand.js +10 -0
  108. package/dist-es/endpoint/EndpointParameters.js +8 -0
  109. package/dist-es/endpoint/endpointResolver.js +8 -0
  110. package/dist-es/endpoint/ruleset.js +315 -0
  111. package/dist-es/runtimeConfig.shared.js +2 -2
  112. package/dist-types/KMSClient.d.ts +6 -9
  113. package/dist-types/commands/CancelKeyDeletionCommand.d.ts +2 -0
  114. package/dist-types/commands/ConnectCustomKeyStoreCommand.d.ts +2 -0
  115. package/dist-types/commands/CreateAliasCommand.d.ts +2 -0
  116. package/dist-types/commands/CreateCustomKeyStoreCommand.d.ts +2 -0
  117. package/dist-types/commands/CreateGrantCommand.d.ts +2 -0
  118. package/dist-types/commands/CreateKeyCommand.d.ts +2 -0
  119. package/dist-types/commands/DecryptCommand.d.ts +2 -0
  120. package/dist-types/commands/DeleteAliasCommand.d.ts +2 -0
  121. package/dist-types/commands/DeleteCustomKeyStoreCommand.d.ts +2 -0
  122. package/dist-types/commands/DeleteImportedKeyMaterialCommand.d.ts +2 -0
  123. package/dist-types/commands/DescribeCustomKeyStoresCommand.d.ts +2 -0
  124. package/dist-types/commands/DescribeKeyCommand.d.ts +2 -0
  125. package/dist-types/commands/DisableKeyCommand.d.ts +2 -0
  126. package/dist-types/commands/DisableKeyRotationCommand.d.ts +2 -0
  127. package/dist-types/commands/DisconnectCustomKeyStoreCommand.d.ts +2 -0
  128. package/dist-types/commands/EnableKeyCommand.d.ts +2 -0
  129. package/dist-types/commands/EnableKeyRotationCommand.d.ts +2 -0
  130. package/dist-types/commands/EncryptCommand.d.ts +2 -0
  131. package/dist-types/commands/GenerateDataKeyCommand.d.ts +2 -0
  132. package/dist-types/commands/GenerateDataKeyPairCommand.d.ts +2 -0
  133. package/dist-types/commands/GenerateDataKeyPairWithoutPlaintextCommand.d.ts +2 -0
  134. package/dist-types/commands/GenerateDataKeyWithoutPlaintextCommand.d.ts +2 -0
  135. package/dist-types/commands/GenerateMacCommand.d.ts +2 -0
  136. package/dist-types/commands/GenerateRandomCommand.d.ts +2 -0
  137. package/dist-types/commands/GetKeyPolicyCommand.d.ts +2 -0
  138. package/dist-types/commands/GetKeyRotationStatusCommand.d.ts +2 -0
  139. package/dist-types/commands/GetParametersForImportCommand.d.ts +2 -0
  140. package/dist-types/commands/GetPublicKeyCommand.d.ts +2 -0
  141. package/dist-types/commands/ImportKeyMaterialCommand.d.ts +2 -0
  142. package/dist-types/commands/ListAliasesCommand.d.ts +2 -0
  143. package/dist-types/commands/ListGrantsCommand.d.ts +2 -0
  144. package/dist-types/commands/ListKeyPoliciesCommand.d.ts +2 -0
  145. package/dist-types/commands/ListKeysCommand.d.ts +2 -0
  146. package/dist-types/commands/ListResourceTagsCommand.d.ts +2 -0
  147. package/dist-types/commands/ListRetirableGrantsCommand.d.ts +2 -0
  148. package/dist-types/commands/PutKeyPolicyCommand.d.ts +2 -0
  149. package/dist-types/commands/ReEncryptCommand.d.ts +2 -0
  150. package/dist-types/commands/ReplicateKeyCommand.d.ts +2 -0
  151. package/dist-types/commands/RetireGrantCommand.d.ts +2 -0
  152. package/dist-types/commands/RevokeGrantCommand.d.ts +2 -0
  153. package/dist-types/commands/ScheduleKeyDeletionCommand.d.ts +2 -0
  154. package/dist-types/commands/SignCommand.d.ts +2 -0
  155. package/dist-types/commands/TagResourceCommand.d.ts +2 -0
  156. package/dist-types/commands/UntagResourceCommand.d.ts +2 -0
  157. package/dist-types/commands/UpdateAliasCommand.d.ts +2 -0
  158. package/dist-types/commands/UpdateCustomKeyStoreCommand.d.ts +2 -0
  159. package/dist-types/commands/UpdateKeyDescriptionCommand.d.ts +2 -0
  160. package/dist-types/commands/UpdatePrimaryRegionCommand.d.ts +2 -0
  161. package/dist-types/commands/VerifyCommand.d.ts +2 -0
  162. package/dist-types/commands/VerifyMacCommand.d.ts +2 -0
  163. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  164. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  165. package/dist-types/endpoint/ruleset.d.ts +2 -0
  166. package/dist-types/runtimeConfig.browser.d.ts +4 -2
  167. package/dist-types/runtimeConfig.d.ts +4 -2
  168. package/dist-types/runtimeConfig.native.d.ts +4 -2
  169. package/dist-types/runtimeConfig.shared.d.ts +3 -1
  170. package/dist-types/ts3.4/KMSClient.d.ts +15 -8
  171. package/dist-types/ts3.4/commands/CancelKeyDeletionCommand.d.ts +2 -0
  172. package/dist-types/ts3.4/commands/ConnectCustomKeyStoreCommand.d.ts +2 -0
  173. package/dist-types/ts3.4/commands/CreateAliasCommand.d.ts +2 -0
  174. package/dist-types/ts3.4/commands/CreateCustomKeyStoreCommand.d.ts +2 -0
  175. package/dist-types/ts3.4/commands/CreateGrantCommand.d.ts +2 -0
  176. package/dist-types/ts3.4/commands/CreateKeyCommand.d.ts +2 -0
  177. package/dist-types/ts3.4/commands/DecryptCommand.d.ts +2 -0
  178. package/dist-types/ts3.4/commands/DeleteAliasCommand.d.ts +2 -0
  179. package/dist-types/ts3.4/commands/DeleteCustomKeyStoreCommand.d.ts +2 -0
  180. package/dist-types/ts3.4/commands/DeleteImportedKeyMaterialCommand.d.ts +2 -0
  181. package/dist-types/ts3.4/commands/DescribeCustomKeyStoresCommand.d.ts +2 -0
  182. package/dist-types/ts3.4/commands/DescribeKeyCommand.d.ts +2 -0
  183. package/dist-types/ts3.4/commands/DisableKeyCommand.d.ts +2 -0
  184. package/dist-types/ts3.4/commands/DisableKeyRotationCommand.d.ts +2 -0
  185. package/dist-types/ts3.4/commands/DisconnectCustomKeyStoreCommand.d.ts +2 -0
  186. package/dist-types/ts3.4/commands/EnableKeyCommand.d.ts +2 -0
  187. package/dist-types/ts3.4/commands/EnableKeyRotationCommand.d.ts +2 -0
  188. package/dist-types/ts3.4/commands/EncryptCommand.d.ts +2 -0
  189. package/dist-types/ts3.4/commands/GenerateDataKeyCommand.d.ts +2 -0
  190. package/dist-types/ts3.4/commands/GenerateDataKeyPairCommand.d.ts +2 -0
  191. package/dist-types/ts3.4/commands/GenerateDataKeyPairWithoutPlaintextCommand.d.ts +2 -0
  192. package/dist-types/ts3.4/commands/GenerateDataKeyWithoutPlaintextCommand.d.ts +2 -0
  193. package/dist-types/ts3.4/commands/GenerateMacCommand.d.ts +2 -0
  194. package/dist-types/ts3.4/commands/GenerateRandomCommand.d.ts +2 -0
  195. package/dist-types/ts3.4/commands/GetKeyPolicyCommand.d.ts +2 -0
  196. package/dist-types/ts3.4/commands/GetKeyRotationStatusCommand.d.ts +2 -0
  197. package/dist-types/ts3.4/commands/GetParametersForImportCommand.d.ts +2 -0
  198. package/dist-types/ts3.4/commands/GetPublicKeyCommand.d.ts +2 -0
  199. package/dist-types/ts3.4/commands/ImportKeyMaterialCommand.d.ts +2 -0
  200. package/dist-types/ts3.4/commands/ListAliasesCommand.d.ts +2 -0
  201. package/dist-types/ts3.4/commands/ListGrantsCommand.d.ts +2 -0
  202. package/dist-types/ts3.4/commands/ListKeyPoliciesCommand.d.ts +2 -0
  203. package/dist-types/ts3.4/commands/ListKeysCommand.d.ts +2 -0
  204. package/dist-types/ts3.4/commands/ListResourceTagsCommand.d.ts +2 -0
  205. package/dist-types/ts3.4/commands/ListRetirableGrantsCommand.d.ts +2 -0
  206. package/dist-types/ts3.4/commands/PutKeyPolicyCommand.d.ts +2 -0
  207. package/dist-types/ts3.4/commands/ReEncryptCommand.d.ts +2 -0
  208. package/dist-types/ts3.4/commands/ReplicateKeyCommand.d.ts +2 -0
  209. package/dist-types/ts3.4/commands/RetireGrantCommand.d.ts +2 -0
  210. package/dist-types/ts3.4/commands/RevokeGrantCommand.d.ts +2 -0
  211. package/dist-types/ts3.4/commands/ScheduleKeyDeletionCommand.d.ts +2 -0
  212. package/dist-types/ts3.4/commands/SignCommand.d.ts +2 -0
  213. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -0
  214. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -0
  215. package/dist-types/ts3.4/commands/UpdateAliasCommand.d.ts +2 -0
  216. package/dist-types/ts3.4/commands/UpdateCustomKeyStoreCommand.d.ts +2 -0
  217. package/dist-types/ts3.4/commands/UpdateKeyDescriptionCommand.d.ts +2 -0
  218. package/dist-types/ts3.4/commands/UpdatePrimaryRegionCommand.d.ts +2 -0
  219. package/dist-types/ts3.4/commands/VerifyCommand.d.ts +2 -0
  220. package/dist-types/ts3.4/commands/VerifyMacCommand.d.ts +2 -0
  221. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +26 -0
  222. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  223. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  224. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +14 -4
  225. package/dist-types/ts3.4/runtimeConfig.d.ts +14 -4
  226. package/dist-types/ts3.4/runtimeConfig.native.d.ts +14 -3
  227. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +6 -1
  228. package/package.json +4 -2
  229. package/dist-cjs/endpoints.js +0 -383
  230. package/dist-es/endpoints.js +0 -379
  231. package/dist-types/endpoints.d.ts +0 -2
  232. package/dist-types/ts3.4/endpoints.d.ts +0 -2
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -103,6 +104,7 @@ export interface GenerateDataKeyPairCommandOutput extends GenerateDataKeyPairRes
103
104
  */
104
105
  export declare class GenerateDataKeyPairCommand extends $Command<GenerateDataKeyPairCommandInput, GenerateDataKeyPairCommandOutput, KMSClientResolvedConfig> {
105
106
  readonly input: GenerateDataKeyPairCommandInput;
107
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
106
108
  constructor(input: GenerateDataKeyPairCommandInput);
107
109
  /**
108
110
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -91,6 +92,7 @@ export interface GenerateDataKeyPairWithoutPlaintextCommandOutput extends Genera
91
92
  */
92
93
  export declare class GenerateDataKeyPairWithoutPlaintextCommand extends $Command<GenerateDataKeyPairWithoutPlaintextCommandInput, GenerateDataKeyPairWithoutPlaintextCommandOutput, KMSClientResolvedConfig> {
93
94
  readonly input: GenerateDataKeyPairWithoutPlaintextCommandInput;
95
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
94
96
  constructor(input: GenerateDataKeyPairWithoutPlaintextCommandInput);
95
97
  /**
96
98
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -95,6 +96,7 @@ export interface GenerateDataKeyWithoutPlaintextCommandOutput extends GenerateDa
95
96
  */
96
97
  export declare class GenerateDataKeyWithoutPlaintextCommand extends $Command<GenerateDataKeyWithoutPlaintextCommandInput, GenerateDataKeyWithoutPlaintextCommandOutput, KMSClientResolvedConfig> {
97
98
  readonly input: GenerateDataKeyWithoutPlaintextCommandInput;
99
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
98
100
  constructor(input: GenerateDataKeyWithoutPlaintextCommandInput);
99
101
  /**
100
102
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -52,6 +53,7 @@ export interface GenerateMacCommandOutput extends GenerateMacResponse, __Metadat
52
53
  */
53
54
  export declare class GenerateMacCommand extends $Command<GenerateMacCommandInput, GenerateMacCommandOutput, KMSClientResolvedConfig> {
54
55
  readonly input: GenerateMacCommandInput;
56
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
57
  constructor(input: GenerateMacCommandInput);
56
58
  /**
57
59
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -37,6 +38,7 @@ export interface GenerateRandomCommandOutput extends GenerateRandomResponse, __M
37
38
  */
38
39
  export declare class GenerateRandomCommand extends $Command<GenerateRandomCommandInput, GenerateRandomCommandOutput, KMSClientResolvedConfig> {
39
40
  readonly input: GenerateRandomCommandInput;
41
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
40
42
  constructor(input: GenerateRandomCommandInput);
41
43
  /**
42
44
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -33,6 +34,7 @@ export interface GetKeyPolicyCommandOutput extends GetKeyPolicyResponse, __Metad
33
34
  */
34
35
  export declare class GetKeyPolicyCommand extends $Command<GetKeyPolicyCommandInput, GetKeyPolicyCommandOutput, KMSClientResolvedConfig> {
35
36
  readonly input: GetKeyPolicyCommandInput;
37
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
36
38
  constructor(input: GetKeyPolicyCommandInput);
37
39
  /**
38
40
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -78,6 +79,7 @@ export interface GetKeyRotationStatusCommandOutput extends GetKeyRotationStatusR
78
79
  */
79
80
  export declare class GetKeyRotationStatusCommand extends $Command<GetKeyRotationStatusCommandInput, GetKeyRotationStatusCommandOutput, KMSClientResolvedConfig> {
80
81
  readonly input: GetKeyRotationStatusCommandInput;
82
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
81
83
  constructor(input: GetKeyRotationStatusCommandInput);
82
84
  /**
83
85
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -59,6 +60,7 @@ export interface GetParametersForImportCommandOutput extends GetParametersForImp
59
60
  */
60
61
  export declare class GetParametersForImportCommand extends $Command<GetParametersForImportCommandInput, GetParametersForImportCommandOutput, KMSClientResolvedConfig> {
61
62
  readonly input: GetParametersForImportCommandInput;
63
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
64
  constructor(input: GetParametersForImportCommandInput);
63
65
  /**
64
66
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -74,6 +75,7 @@ export interface GetPublicKeyCommandOutput extends GetPublicKeyResponse, __Metad
74
75
  */
75
76
  export declare class GetPublicKeyCommand extends $Command<GetPublicKeyCommandInput, GetPublicKeyCommandOutput, KMSClientResolvedConfig> {
76
77
  readonly input: GetPublicKeyCommandInput;
78
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
77
79
  constructor(input: GetPublicKeyCommandInput);
78
80
  /**
79
81
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -89,6 +90,7 @@ export interface ImportKeyMaterialCommandOutput extends ImportKeyMaterialRespons
89
90
  */
90
91
  export declare class ImportKeyMaterialCommand extends $Command<ImportKeyMaterialCommandInput, ImportKeyMaterialCommandOutput, KMSClientResolvedConfig> {
91
92
  readonly input: ImportKeyMaterialCommandInput;
93
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
92
94
  constructor(input: ImportKeyMaterialCommandInput);
93
95
  /**
94
96
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -67,6 +68,7 @@ export interface ListAliasesCommandOutput extends ListAliasesResponse, __Metadat
67
68
  */
68
69
  export declare class ListAliasesCommand extends $Command<ListAliasesCommandInput, ListAliasesCommandOutput, KMSClientResolvedConfig> {
69
70
  readonly input: ListAliasesCommandInput;
71
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
70
72
  constructor(input: ListAliasesCommandInput);
71
73
  /**
72
74
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -70,6 +71,7 @@ export interface ListGrantsCommandOutput extends ListGrantsResponse, __MetadataB
70
71
  */
71
72
  export declare class ListGrantsCommand extends $Command<ListGrantsCommandInput, ListGrantsCommandOutput, KMSClientResolvedConfig> {
72
73
  readonly input: ListGrantsCommandInput;
74
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
73
75
  constructor(input: ListGrantsCommandInput);
74
76
  /**
75
77
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -47,6 +48,7 @@ export interface ListKeyPoliciesCommandOutput extends ListKeyPoliciesResponse, _
47
48
  */
48
49
  export declare class ListKeyPoliciesCommand extends $Command<ListKeyPoliciesCommandInput, ListKeyPoliciesCommandOutput, KMSClientResolvedConfig> {
49
50
  readonly input: ListKeyPoliciesCommandInput;
51
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
50
52
  constructor(input: ListKeyPoliciesCommandInput);
51
53
  /**
52
54
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -55,6 +56,7 @@ export interface ListKeysCommandOutput extends ListKeysResponse, __MetadataBeare
55
56
  */
56
57
  export declare class ListKeysCommand extends $Command<ListKeysCommandInput, ListKeysCommandOutput, KMSClientResolvedConfig> {
57
58
  readonly input: ListKeysCommandInput;
59
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
58
60
  constructor(input: ListKeysCommandInput);
59
61
  /**
60
62
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -59,6 +60,7 @@ export interface ListResourceTagsCommandOutput extends ListResourceTagsResponse,
59
60
  */
60
61
  export declare class ListResourceTagsCommand extends $Command<ListResourceTagsCommandInput, ListResourceTagsCommandOutput, KMSClientResolvedConfig> {
61
62
  readonly input: ListResourceTagsCommandInput;
63
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
64
  constructor(input: ListResourceTagsCommandInput);
63
65
  /**
64
66
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -68,6 +69,7 @@ export interface ListRetirableGrantsCommandOutput extends ListGrantsResponse, __
68
69
  */
69
70
  export declare class ListRetirableGrantsCommand extends $Command<ListRetirableGrantsCommandInput, ListRetirableGrantsCommandOutput, KMSClientResolvedConfig> {
70
71
  readonly input: ListRetirableGrantsCommandInput;
72
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
73
  constructor(input: ListRetirableGrantsCommandInput);
72
74
  /**
73
75
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -38,6 +39,7 @@ export interface PutKeyPolicyCommandOutput extends __MetadataBearer {
38
39
  */
39
40
  export declare class PutKeyPolicyCommand extends $Command<PutKeyPolicyCommandInput, PutKeyPolicyCommandOutput, KMSClientResolvedConfig> {
40
41
  readonly input: PutKeyPolicyCommandInput;
42
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
41
43
  constructor(input: PutKeyPolicyCommandInput);
42
44
  /**
43
45
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -122,6 +123,7 @@ export interface ReEncryptCommandOutput extends ReEncryptResponse, __MetadataBea
122
123
  */
123
124
  export declare class ReEncryptCommand extends $Command<ReEncryptCommandInput, ReEncryptCommandOutput, KMSClientResolvedConfig> {
124
125
  readonly input: ReEncryptCommandInput;
126
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
125
127
  constructor(input: ReEncryptCommandInput);
126
128
  /**
127
129
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -106,6 +107,7 @@ export interface ReplicateKeyCommandOutput extends ReplicateKeyResponse, __Metad
106
107
  */
107
108
  export declare class ReplicateKeyCommand extends $Command<ReplicateKeyCommandInput, ReplicateKeyCommandOutput, KMSClientResolvedConfig> {
108
109
  readonly input: ReplicateKeyCommandInput;
110
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
109
111
  constructor(input: ReplicateKeyCommandInput);
110
112
  /**
111
113
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -70,6 +71,7 @@ export interface RetireGrantCommandOutput extends __MetadataBearer {
70
71
  */
71
72
  export declare class RetireGrantCommand extends $Command<RetireGrantCommandInput, RetireGrantCommandOutput, KMSClientResolvedConfig> {
72
73
  readonly input: RetireGrantCommandInput;
74
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
73
75
  constructor(input: RetireGrantCommandInput);
74
76
  /**
75
77
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -68,6 +69,7 @@ export interface RevokeGrantCommandOutput extends __MetadataBearer {
68
69
  */
69
70
  export declare class RevokeGrantCommand extends $Command<RevokeGrantCommandInput, RevokeGrantCommandOutput, KMSClientResolvedConfig> {
70
71
  readonly input: RevokeGrantCommandInput;
72
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
73
  constructor(input: RevokeGrantCommandInput);
72
74
  /**
73
75
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -79,6 +80,7 @@ export interface ScheduleKeyDeletionCommandOutput extends ScheduleKeyDeletionRes
79
80
  */
80
81
  export declare class ScheduleKeyDeletionCommand extends $Command<ScheduleKeyDeletionCommandInput, ScheduleKeyDeletionCommandOutput, KMSClientResolvedConfig> {
81
82
  readonly input: ScheduleKeyDeletionCommandInput;
83
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
82
84
  constructor(input: ScheduleKeyDeletionCommandInput);
83
85
  /**
84
86
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -75,6 +76,7 @@ export interface SignCommandOutput extends SignResponse, __MetadataBearer {
75
76
  */
76
77
  export declare class SignCommand extends $Command<SignCommandInput, SignCommandOutput, KMSClientResolvedConfig> {
77
78
  readonly input: SignCommandInput;
79
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
78
80
  constructor(input: SignCommandInput);
79
81
  /**
80
82
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -72,6 +73,7 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
72
73
  */
73
74
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, KMSClientResolvedConfig> {
74
75
  readonly input: TagResourceCommandInput;
76
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
75
77
  constructor(input: TagResourceCommandInput);
76
78
  /**
77
79
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -68,6 +69,7 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
68
69
  */
69
70
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, KMSClientResolvedConfig> {
70
71
  readonly input: UntagResourceCommandInput;
72
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
73
  constructor(input: UntagResourceCommandInput);
72
74
  /**
73
75
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -87,6 +88,7 @@ export interface UpdateAliasCommandOutput extends __MetadataBearer {
87
88
  */
88
89
  export declare class UpdateAliasCommand extends $Command<UpdateAliasCommandInput, UpdateAliasCommandOutput, KMSClientResolvedConfig> {
89
90
  readonly input: UpdateAliasCommandInput;
91
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
90
92
  constructor(input: UpdateAliasCommandInput);
91
93
  /**
92
94
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -97,6 +98,7 @@ export interface UpdateCustomKeyStoreCommandOutput extends UpdateCustomKeyStoreR
97
98
  */
98
99
  export declare class UpdateCustomKeyStoreCommand extends $Command<UpdateCustomKeyStoreCommandInput, UpdateCustomKeyStoreCommandOutput, KMSClientResolvedConfig> {
99
100
  readonly input: UpdateCustomKeyStoreCommandInput;
101
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
100
102
  constructor(input: UpdateCustomKeyStoreCommandInput);
101
103
  /**
102
104
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -48,6 +49,7 @@ export interface UpdateKeyDescriptionCommandOutput extends __MetadataBearer {
48
49
  */
49
50
  export declare class UpdateKeyDescriptionCommand extends $Command<UpdateKeyDescriptionCommandInput, UpdateKeyDescriptionCommandOutput, KMSClientResolvedConfig> {
50
51
  readonly input: UpdateKeyDescriptionCommandInput;
52
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
51
53
  constructor(input: UpdateKeyDescriptionCommandInput);
52
54
  /**
53
55
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -89,6 +90,7 @@ export interface UpdatePrimaryRegionCommandOutput extends __MetadataBearer {
89
90
  */
90
91
  export declare class UpdatePrimaryRegionCommand extends $Command<UpdatePrimaryRegionCommandInput, UpdatePrimaryRegionCommandOutput, KMSClientResolvedConfig> {
91
92
  readonly input: UpdatePrimaryRegionCommandInput;
93
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
92
94
  constructor(input: UpdatePrimaryRegionCommandInput);
93
95
  /**
94
96
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -59,6 +60,7 @@ export interface VerifyCommandOutput extends VerifyResponse, __MetadataBearer {
59
60
  */
60
61
  export declare class VerifyCommand extends $Command<VerifyCommandInput, VerifyCommandOutput, KMSClientResolvedConfig> {
61
62
  readonly input: VerifyCommandInput;
63
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
64
  constructor(input: VerifyCommandInput);
63
65
  /**
64
66
  * @internal
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
4
  import { KMSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../KMSClient";
@@ -46,6 +47,7 @@ export interface VerifyMacCommandOutput extends VerifyMacResponse, __MetadataBea
46
47
  */
47
48
  export declare class VerifyMacCommand extends $Command<VerifyMacCommandInput, VerifyMacCommandOutput, KMSClientResolvedConfig> {
48
49
  readonly input: VerifyMacCommandInput;
50
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
49
51
  constructor(input: VerifyMacCommandInput);
50
52
  /**
51
53
  * @internal
@@ -0,0 +1,19 @@
1
+ import { EndpointParameters as __EndpointParameters, Provider } from "@aws-sdk/types";
2
+ export interface ClientInputEndpointParameters {
3
+ region?: string | Provider<string>;
4
+ useDualstackEndpoint?: boolean | Provider<boolean>;
5
+ useFipsEndpoint?: boolean | Provider<boolean>;
6
+ endpoint?: string | Provider<string>;
7
+ }
8
+ export declare type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
9
+ defaultSigningName: string;
10
+ };
11
+ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
12
+ defaultSigningName: string;
13
+ };
14
+ export interface EndpointParameters extends __EndpointParameters {
15
+ Region?: string;
16
+ UseDualStack?: boolean;
17
+ UseFIPS?: boolean;
18
+ Endpoint?: string;
19
+ }
@@ -0,0 +1,5 @@
1
+ import { EndpointV2, Logger } from "@aws-sdk/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (endpointParams: EndpointParameters, context?: {
4
+ logger?: Logger;
5
+ }) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@aws-sdk/util-endpoints";
2
+ export declare const ruleSet: RuleSetObject;
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: KMSClientConfig) => {
26
26
  disableHostPrefix: boolean;
27
27
  logger: import("@aws-sdk/types").Logger;
28
28
  serviceId: string;
29
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
30
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
30
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
+ logger?: import("@aws-sdk/types").Logger | undefined;
32
+ }) => import("@aws-sdk/types").EndpointV2;
31
33
  tls?: boolean | undefined;
32
34
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
35
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
@@ -26,8 +26,10 @@ export declare const getRuntimeConfig: (config: KMSClientConfig) => {
26
26
  disableHostPrefix: boolean;
27
27
  logger: import("@aws-sdk/types").Logger;
28
28
  serviceId: string;
29
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
30
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
+ endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string>)) | undefined;
30
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
+ logger?: import("@aws-sdk/types").Logger | undefined;
32
+ }) => import("@aws-sdk/types").EndpointV2;
31
33
  tls?: boolean | undefined;
32
34
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
35
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
@@ -23,10 +23,12 @@ export declare const getRuntimeConfig: (config: KMSClientConfig) => {
23
23
  serviceId: string;
24
24
  region: string | import("@aws-sdk/types").Provider<any>;
25
25
  credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
26
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
27
26
  defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
28
27
  defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
29
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
+ endpoint?: string | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Endpoint & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").EndpointV2 & import("@aws-sdk/types").Provider<string>) | (import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> & import("@aws-sdk/types").Provider<string>) | undefined;
29
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
30
+ logger?: import("@aws-sdk/types").Logger | undefined;
31
+ }) => import("@aws-sdk/types").EndpointV2;
30
32
  tls?: boolean | undefined;
31
33
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
32
34
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
@@ -6,8 +6,10 @@ import { KMSClientConfig } from "./KMSClient";
6
6
  export declare const getRuntimeConfig: (config: KMSClientConfig) => {
7
7
  apiVersion: string;
8
8
  disableHostPrefix: boolean;
9
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
10
+ logger?: __Logger | undefined;
11
+ }) => import("@aws-sdk/types").EndpointV2;
9
12
  logger: __Logger;
10
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
11
13
  serviceId: string;
12
14
  urlParser: import("@aws-sdk/types").UrlParser;
13
15
  };
@@ -1,9 +1,11 @@
1
1
  import {
2
- EndpointsInputConfig,
3
- EndpointsResolvedConfig,
4
2
  RegionInputConfig,
5
3
  RegionResolvedConfig,
6
4
  } from "@aws-sdk/config-resolver";
5
+ import {
6
+ EndpointInputConfig,
7
+ EndpointResolvedConfig,
8
+ } from "@aws-sdk/middleware-endpoint";
7
9
  import {
8
10
  HostHeaderInputConfig,
9
11
  HostHeaderResolvedConfig,
@@ -37,7 +39,6 @@ import {
37
39
  Logger as __Logger,
38
40
  Provider as __Provider,
39
41
  Provider,
40
- RegionInfoProvider,
41
42
  StreamCollector as __StreamCollector,
42
43
  UrlParser as __UrlParser,
43
44
  UserAgent as __UserAgent,
@@ -239,6 +240,11 @@ import {
239
240
  VerifyMacCommandInput,
240
241
  VerifyMacCommandOutput,
241
242
  } from "./commands/VerifyMacCommand";
243
+ import {
244
+ ClientInputEndpointParameters,
245
+ ClientResolvedEndpointParameters,
246
+ EndpointParameters,
247
+ } from "./endpoint/EndpointParameters";
242
248
  export declare type ServiceInputTypes =
243
249
  | CancelKeyDeletionCommandInput
244
250
  | ConnectCustomKeyStoreCommandInput
@@ -362,7 +368,6 @@ export interface ClientDefaults
362
368
  serviceId?: string;
363
369
  region?: string | __Provider<string>;
364
370
  credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
365
- regionInfoProvider?: RegionInfoProvider;
366
371
  defaultUserAgentProvider?: Provider<__UserAgent>;
367
372
  defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
368
373
  }
@@ -371,21 +376,23 @@ declare type KMSClientConfigType = Partial<
371
376
  > &
372
377
  ClientDefaults &
373
378
  RegionInputConfig &
374
- EndpointsInputConfig &
379
+ EndpointInputConfig<EndpointParameters> &
375
380
  RetryInputConfig &
376
381
  HostHeaderInputConfig &
377
382
  AwsAuthInputConfig &
378
- UserAgentInputConfig;
383
+ UserAgentInputConfig &
384
+ ClientInputEndpointParameters;
379
385
  export interface KMSClientConfig extends KMSClientConfigType {}
380
386
  declare type KMSClientResolvedConfigType =
381
387
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
382
388
  Required<ClientDefaults> &
383
389
  RegionResolvedConfig &
384
- EndpointsResolvedConfig &
390
+ EndpointResolvedConfig<EndpointParameters> &
385
391
  RetryResolvedConfig &
386
392
  HostHeaderResolvedConfig &
387
393
  AwsAuthResolvedConfig &
388
- UserAgentResolvedConfig;
394
+ UserAgentResolvedConfig &
395
+ ClientResolvedEndpointParameters;
389
396
  export interface KMSClientResolvedConfig extends KMSClientResolvedConfigType {}
390
397
  export declare class KMSClient extends __Client<
391
398
  __HttpHandlerOptions,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -25,6 +26,7 @@ export declare class CancelKeyDeletionCommand extends $Command<
25
26
  KMSClientResolvedConfig
26
27
  > {
27
28
  readonly input: CancelKeyDeletionCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: CancelKeyDeletionCommandInput);
29
31
  resolveMiddleware(
30
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
@@ -1,3 +1,4 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
1
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
3
  import {
3
4
  Handler,
@@ -25,6 +26,7 @@ export declare class ConnectCustomKeyStoreCommand extends $Command<
25
26
  KMSClientResolvedConfig
26
27
  > {
27
28
  readonly input: ConnectCustomKeyStoreCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
30
  constructor(input: ConnectCustomKeyStoreCommandInput);
29
31
  resolveMiddleware(
30
32
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,