@aws-sdk/client-codecommit 3.478.0 → 3.479.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 (36) hide show
  1. package/README.md +13 -0
  2. package/dist-cjs/CodeCommit.js +2 -0
  3. package/dist-cjs/commands/UpdateRepositoryEncryptionKeyCommand.js +51 -0
  4. package/dist-cjs/commands/index.js +1 -0
  5. package/dist-cjs/models/models_0.js +38 -30
  6. package/dist-cjs/models/models_1.js +40 -1
  7. package/dist-cjs/protocols/Aws_json1_1.js +110 -5
  8. package/dist-es/CodeCommit.js +2 -0
  9. package/dist-es/commands/UpdateRepositoryEncryptionKeyCommand.js +47 -0
  10. package/dist-es/commands/index.js +1 -0
  11. package/dist-es/models/models_0.js +32 -24
  12. package/dist-es/models/models_1.js +36 -0
  13. package/dist-es/protocols/Aws_json1_1.js +105 -2
  14. package/dist-types/CodeCommit.d.ts +12 -0
  15. package/dist-types/CodeCommitClient.d.ts +8 -2
  16. package/dist-types/commands/BatchGetRepositoriesCommand.d.ts +9 -0
  17. package/dist-types/commands/CreateRepositoryCommand.d.ts +9 -0
  18. package/dist-types/commands/GetRepositoryCommand.d.ts +1 -0
  19. package/dist-types/commands/ListFileCommitHistoryCommand.d.ts +2 -1
  20. package/dist-types/commands/ListPullRequestsCommand.d.ts +1 -2
  21. package/dist-types/commands/UpdateRepositoryEncryptionKeyCommand.d.ts +115 -0
  22. package/dist-types/commands/index.d.ts +1 -0
  23. package/dist-types/index.d.ts +5 -0
  24. package/dist-types/models/models_0.d.ts +86 -71
  25. package/dist-types/models/models_1.d.ts +122 -1
  26. package/dist-types/protocols/Aws_json1_1.d.ts +9 -0
  27. package/dist-types/ts3.4/CodeCommit.d.ts +17 -0
  28. package/dist-types/ts3.4/CodeCommitClient.d.ts +6 -0
  29. package/dist-types/ts3.4/commands/ListFileCommitHistoryCommand.d.ts +2 -4
  30. package/dist-types/ts3.4/commands/ListPullRequestsCommand.d.ts +4 -2
  31. package/dist-types/ts3.4/commands/UpdateRepositoryEncryptionKeyCommand.d.ts +42 -0
  32. package/dist-types/ts3.4/commands/index.d.ts +1 -0
  33. package/dist-types/ts3.4/models/models_0.d.ts +39 -28
  34. package/dist-types/ts3.4/models/models_1.d.ts +45 -0
  35. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +12 -0
  36. package/package.json +1 -1
@@ -311,6 +311,10 @@ import {
311
311
  UpdateRepositoryDescriptionCommandInput,
312
312
  UpdateRepositoryDescriptionCommandOutput,
313
313
  } from "../commands/UpdateRepositoryDescriptionCommand";
314
+ import {
315
+ UpdateRepositoryEncryptionKeyCommandInput,
316
+ UpdateRepositoryEncryptionKeyCommandOutput,
317
+ } from "../commands/UpdateRepositoryEncryptionKeyCommand";
314
318
  import {
315
319
  UpdateRepositoryNameCommandInput,
316
320
  UpdateRepositoryNameCommandOutput,
@@ -623,6 +627,10 @@ export declare const se_UpdateRepositoryDescriptionCommand: (
623
627
  input: UpdateRepositoryDescriptionCommandInput,
624
628
  context: __SerdeContext
625
629
  ) => Promise<__HttpRequest>;
630
+ export declare const se_UpdateRepositoryEncryptionKeyCommand: (
631
+ input: UpdateRepositoryEncryptionKeyCommandInput,
632
+ context: __SerdeContext
633
+ ) => Promise<__HttpRequest>;
626
634
  export declare const se_UpdateRepositoryNameCommand: (
627
635
  input: UpdateRepositoryNameCommandInput,
628
636
  context: __SerdeContext
@@ -935,6 +943,10 @@ export declare const de_UpdateRepositoryDescriptionCommand: (
935
943
  output: __HttpResponse,
936
944
  context: __SerdeContext
937
945
  ) => Promise<UpdateRepositoryDescriptionCommandOutput>;
946
+ export declare const de_UpdateRepositoryEncryptionKeyCommand: (
947
+ output: __HttpResponse,
948
+ context: __SerdeContext
949
+ ) => Promise<UpdateRepositoryEncryptionKeyCommandOutput>;
938
950
  export declare const de_UpdateRepositoryNameCommand: (
939
951
  output: __HttpResponse,
940
952
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-codecommit",
3
3
  "description": "AWS SDK for JavaScript Codecommit Client for Node.js, Browser and React Native",
4
- "version": "3.478.0",
4
+ "version": "3.479.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",