@aws-sdk/client-cloudfront 3.213.0 → 3.215.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 (75) hide show
  1. package/dist-cjs/CloudFront.js +105 -0
  2. package/dist-cjs/commands/CopyDistributionCommand.js +46 -0
  3. package/dist-cjs/commands/CreateContinuousDeploymentPolicyCommand.js +46 -0
  4. package/dist-cjs/commands/CreateStreamingDistributionCommand.js +3 -3
  5. package/dist-cjs/commands/CreateStreamingDistributionWithTagsCommand.js +3 -3
  6. package/dist-cjs/commands/DeleteCachePolicyCommand.js +2 -2
  7. package/dist-cjs/commands/DeleteContinuousDeploymentPolicyCommand.js +46 -0
  8. package/dist-cjs/commands/GetContinuousDeploymentPolicyCommand.js +46 -0
  9. package/dist-cjs/commands/GetContinuousDeploymentPolicyConfigCommand.js +46 -0
  10. package/dist-cjs/commands/ListContinuousDeploymentPoliciesCommand.js +46 -0
  11. package/dist-cjs/commands/UpdateContinuousDeploymentPolicyCommand.js +46 -0
  12. package/dist-cjs/commands/index.js +7 -0
  13. package/dist-cjs/endpoint/ruleset.js +11 -11
  14. package/dist-cjs/models/models_0.js +405 -297
  15. package/dist-cjs/models/models_1.js +146 -4
  16. package/dist-cjs/protocols/Aws_restXml.js +895 -16
  17. package/dist-es/CloudFront.js +105 -0
  18. package/dist-es/commands/CopyDistributionCommand.js +42 -0
  19. package/dist-es/commands/CreateContinuousDeploymentPolicyCommand.js +42 -0
  20. package/dist-es/commands/CreateStreamingDistributionCommand.js +1 -1
  21. package/dist-es/commands/CreateStreamingDistributionWithTagsCommand.js +1 -1
  22. package/dist-es/commands/DeleteCachePolicyCommand.js +1 -1
  23. package/dist-es/commands/DeleteContinuousDeploymentPolicyCommand.js +42 -0
  24. package/dist-es/commands/GetContinuousDeploymentPolicyCommand.js +42 -0
  25. package/dist-es/commands/GetContinuousDeploymentPolicyConfigCommand.js +42 -0
  26. package/dist-es/commands/ListContinuousDeploymentPoliciesCommand.js +42 -0
  27. package/dist-es/commands/UpdateContinuousDeploymentPolicyCommand.js +42 -0
  28. package/dist-es/commands/index.js +7 -0
  29. package/dist-es/endpoint/ruleset.js +11 -11
  30. package/dist-es/models/models_0.js +366 -257
  31. package/dist-es/models/models_1.js +117 -0
  32. package/dist-es/protocols/Aws_restXml.js +876 -12
  33. package/dist-types/CloudFront.d.ts +114 -76
  34. package/dist-types/CloudFrontClient.d.ts +9 -2
  35. package/dist-types/commands/CopyDistributionCommand.d.ts +43 -0
  36. package/dist-types/commands/CreateContinuousDeploymentPolicyCommand.d.ts +46 -0
  37. package/dist-types/commands/CreateDistributionCommand.d.ts +1 -13
  38. package/dist-types/commands/CreateStreamingDistributionCommand.d.ts +1 -1
  39. package/dist-types/commands/CreateStreamingDistributionWithTagsCommand.d.ts +1 -1
  40. package/dist-types/commands/DeleteCachePolicyCommand.d.ts +1 -1
  41. package/dist-types/commands/DeleteContinuousDeploymentPolicyCommand.d.ts +40 -0
  42. package/dist-types/commands/GetContinuousDeploymentPolicyCommand.d.ts +38 -0
  43. package/dist-types/commands/GetContinuousDeploymentPolicyConfigCommand.d.ts +37 -0
  44. package/dist-types/commands/ListContinuousDeploymentPoliciesCommand.d.ts +42 -0
  45. package/dist-types/commands/UpdateContinuousDeploymentPolicyCommand.d.ts +57 -0
  46. package/dist-types/commands/UpdateDistributionCommand.d.ts +20 -63
  47. package/dist-types/commands/index.d.ts +7 -0
  48. package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
  49. package/dist-types/models/models_0.d.ts +824 -784
  50. package/dist-types/models/models_1.d.ts +458 -2
  51. package/dist-types/protocols/Aws_restXml.d.ts +21 -0
  52. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  53. package/dist-types/runtimeConfig.d.ts +1 -1
  54. package/dist-types/runtimeConfig.native.d.ts +1 -1
  55. package/dist-types/ts3.4/CloudFront.d.ts +125 -0
  56. package/dist-types/ts3.4/CloudFrontClient.d.ts +42 -0
  57. package/dist-types/ts3.4/commands/CopyDistributionCommand.d.ts +37 -0
  58. package/dist-types/ts3.4/commands/CreateContinuousDeploymentPolicyCommand.d.ts +41 -0
  59. package/dist-types/ts3.4/commands/CreateStreamingDistributionCommand.d.ts +1 -1
  60. package/dist-types/ts3.4/commands/CreateStreamingDistributionWithTagsCommand.d.ts +1 -1
  61. package/dist-types/ts3.4/commands/DeleteCachePolicyCommand.d.ts +1 -1
  62. package/dist-types/ts3.4/commands/DeleteContinuousDeploymentPolicyCommand.d.ts +37 -0
  63. package/dist-types/ts3.4/commands/GetContinuousDeploymentPolicyCommand.d.ts +41 -0
  64. package/dist-types/ts3.4/commands/GetContinuousDeploymentPolicyConfigCommand.d.ts +41 -0
  65. package/dist-types/ts3.4/commands/ListContinuousDeploymentPoliciesCommand.d.ts +41 -0
  66. package/dist-types/ts3.4/commands/UpdateContinuousDeploymentPolicyCommand.d.ts +41 -0
  67. package/dist-types/ts3.4/commands/index.d.ts +7 -0
  68. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
  69. package/dist-types/ts3.4/models/models_0.d.ts +376 -338
  70. package/dist-types/ts3.4/models/models_1.d.ts +196 -4
  71. package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +84 -0
  72. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -2
  73. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -2
  74. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -2
  75. package/package.json +29 -29
@@ -3,7 +3,7 @@ export const ruleSet = {
3
3
  parameters: {
4
4
  Region: {
5
5
  builtIn: "AWS::Region",
6
- required: false,
6
+ required: true,
7
7
  documentation: "The AWS region used to dispatch the request.",
8
8
  type: "String",
9
9
  },
@@ -200,8 +200,8 @@ export const ruleSet = {
200
200
  authSchemes: [
201
201
  {
202
202
  name: "sigv4",
203
- signingName: "cloudfront",
204
203
  signingRegion: "us-east-1",
204
+ signingName: "cloudfront",
205
205
  },
206
206
  ],
207
207
  },
@@ -260,8 +260,8 @@ export const ruleSet = {
260
260
  authSchemes: [
261
261
  {
262
262
  name: "sigv4",
263
- signingName: "cloudfront",
264
263
  signingRegion: "us-east-1",
264
+ signingName: "cloudfront",
265
265
  },
266
266
  ],
267
267
  },
@@ -320,8 +320,8 @@ export const ruleSet = {
320
320
  authSchemes: [
321
321
  {
322
322
  name: "sigv4",
323
- signingName: "cloudfront",
324
323
  signingRegion: "us-east-1",
324
+ signingName: "cloudfront",
325
325
  },
326
326
  ],
327
327
  },
@@ -346,8 +346,8 @@ export const ruleSet = {
346
346
  authSchemes: [
347
347
  {
348
348
  name: "sigv4",
349
- signingName: "cloudfront",
350
349
  signingRegion: "us-east-1",
350
+ signingName: "cloudfront",
351
351
  },
352
352
  ],
353
353
  },
@@ -443,8 +443,8 @@ export const ruleSet = {
443
443
  authSchemes: [
444
444
  {
445
445
  name: "sigv4",
446
- signingName: "cloudfront",
447
446
  signingRegion: "cn-northwest-1",
447
+ signingName: "cloudfront",
448
448
  },
449
449
  ],
450
450
  },
@@ -503,8 +503,8 @@ export const ruleSet = {
503
503
  authSchemes: [
504
504
  {
505
505
  name: "sigv4",
506
- signingName: "cloudfront",
507
506
  signingRegion: "cn-northwest-1",
507
+ signingName: "cloudfront",
508
508
  },
509
509
  ],
510
510
  },
@@ -563,8 +563,8 @@ export const ruleSet = {
563
563
  authSchemes: [
564
564
  {
565
565
  name: "sigv4",
566
- signingName: "cloudfront",
567
566
  signingRegion: "cn-northwest-1",
567
+ signingName: "cloudfront",
568
568
  },
569
569
  ],
570
570
  },
@@ -589,8 +589,8 @@ export const ruleSet = {
589
589
  authSchemes: [
590
590
  {
591
591
  name: "sigv4",
592
- signingName: "cloudfront",
593
592
  signingRegion: "cn-northwest-1",
593
+ signingName: "cloudfront",
594
594
  },
595
595
  ],
596
596
  },
@@ -808,8 +808,8 @@ export const ruleSet = {
808
808
  authSchemes: [
809
809
  {
810
810
  name: "sigv4",
811
- signingName: "cloudfront",
812
811
  signingRegion: "us-east-1",
812
+ signingName: "cloudfront",
813
813
  },
814
814
  ],
815
815
  },
@@ -835,8 +835,8 @@ export const ruleSet = {
835
835
  authSchemes: [
836
836
  {
837
837
  name: "sigv4",
838
- signingName: "cloudfront",
839
838
  signingRegion: "cn-northwest-1",
839
+ signingName: "cloudfront",
840
840
  },
841
841
  ],
842
842
  },