@aws-sdk/client-cloudfront 3.212.0 → 3.214.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.
- package/dist-cjs/CloudFront.js +105 -0
- package/dist-cjs/commands/CopyDistributionCommand.js +46 -0
- package/dist-cjs/commands/CreateContinuousDeploymentPolicyCommand.js +46 -0
- package/dist-cjs/commands/CreateStreamingDistributionCommand.js +3 -3
- package/dist-cjs/commands/CreateStreamingDistributionWithTagsCommand.js +3 -3
- package/dist-cjs/commands/DeleteCachePolicyCommand.js +2 -2
- package/dist-cjs/commands/DeleteContinuousDeploymentPolicyCommand.js +46 -0
- package/dist-cjs/commands/GetContinuousDeploymentPolicyCommand.js +46 -0
- package/dist-cjs/commands/GetContinuousDeploymentPolicyConfigCommand.js +46 -0
- package/dist-cjs/commands/ListContinuousDeploymentPoliciesCommand.js +46 -0
- package/dist-cjs/commands/UpdateContinuousDeploymentPolicyCommand.js +46 -0
- package/dist-cjs/commands/index.js +7 -0
- package/dist-cjs/endpoint/ruleset.js +11 -11
- package/dist-cjs/models/models_0.js +405 -297
- package/dist-cjs/models/models_1.js +146 -4
- package/dist-cjs/protocols/Aws_restXml.js +895 -16
- package/dist-es/CloudFront.js +105 -0
- package/dist-es/commands/CopyDistributionCommand.js +42 -0
- package/dist-es/commands/CreateContinuousDeploymentPolicyCommand.js +42 -0
- package/dist-es/commands/CreateStreamingDistributionCommand.js +1 -1
- package/dist-es/commands/CreateStreamingDistributionWithTagsCommand.js +1 -1
- package/dist-es/commands/DeleteCachePolicyCommand.js +1 -1
- package/dist-es/commands/DeleteContinuousDeploymentPolicyCommand.js +42 -0
- package/dist-es/commands/GetContinuousDeploymentPolicyCommand.js +42 -0
- package/dist-es/commands/GetContinuousDeploymentPolicyConfigCommand.js +42 -0
- package/dist-es/commands/ListContinuousDeploymentPoliciesCommand.js +42 -0
- package/dist-es/commands/UpdateContinuousDeploymentPolicyCommand.js +42 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/endpoint/ruleset.js +11 -11
- package/dist-es/models/models_0.js +366 -257
- package/dist-es/models/models_1.js +117 -0
- package/dist-es/protocols/Aws_restXml.js +876 -12
- package/dist-types/CloudFront.d.ts +114 -76
- package/dist-types/CloudFrontClient.d.ts +9 -2
- package/dist-types/commands/CopyDistributionCommand.d.ts +43 -0
- package/dist-types/commands/CreateContinuousDeploymentPolicyCommand.d.ts +46 -0
- package/dist-types/commands/CreateDistributionCommand.d.ts +1 -13
- package/dist-types/commands/CreateStreamingDistributionCommand.d.ts +1 -1
- package/dist-types/commands/CreateStreamingDistributionWithTagsCommand.d.ts +1 -1
- package/dist-types/commands/DeleteCachePolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteContinuousDeploymentPolicyCommand.d.ts +40 -0
- package/dist-types/commands/GetContinuousDeploymentPolicyCommand.d.ts +38 -0
- package/dist-types/commands/GetContinuousDeploymentPolicyConfigCommand.d.ts +37 -0
- package/dist-types/commands/ListContinuousDeploymentPoliciesCommand.d.ts +42 -0
- package/dist-types/commands/UpdateContinuousDeploymentPolicyCommand.d.ts +57 -0
- package/dist-types/commands/UpdateDistributionCommand.d.ts +20 -63
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +824 -784
- package/dist-types/models/models_1.d.ts +458 -2
- package/dist-types/protocols/Aws_restXml.d.ts +21 -0
- package/dist-types/ts3.4/CloudFront.d.ts +125 -0
- package/dist-types/ts3.4/CloudFrontClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/CopyDistributionCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/CreateContinuousDeploymentPolicyCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/CreateStreamingDistributionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateStreamingDistributionWithTagsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteCachePolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DeleteContinuousDeploymentPolicyCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/GetContinuousDeploymentPolicyCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetContinuousDeploymentPolicyConfigCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListContinuousDeploymentPoliciesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/UpdateContinuousDeploymentPolicyCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +376 -338
- package/dist-types/ts3.4/models/models_1.d.ts +196 -4
- package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +84 -0
- package/package.json +2 -2
|
@@ -6,7 +6,7 @@ exports.ruleSet = {
|
|
|
6
6
|
parameters: {
|
|
7
7
|
Region: {
|
|
8
8
|
builtIn: "AWS::Region",
|
|
9
|
-
required:
|
|
9
|
+
required: true,
|
|
10
10
|
documentation: "The AWS region used to dispatch the request.",
|
|
11
11
|
type: "String",
|
|
12
12
|
},
|
|
@@ -203,8 +203,8 @@ exports.ruleSet = {
|
|
|
203
203
|
authSchemes: [
|
|
204
204
|
{
|
|
205
205
|
name: "sigv4",
|
|
206
|
-
signingName: "cloudfront",
|
|
207
206
|
signingRegion: "us-east-1",
|
|
207
|
+
signingName: "cloudfront",
|
|
208
208
|
},
|
|
209
209
|
],
|
|
210
210
|
},
|
|
@@ -263,8 +263,8 @@ exports.ruleSet = {
|
|
|
263
263
|
authSchemes: [
|
|
264
264
|
{
|
|
265
265
|
name: "sigv4",
|
|
266
|
-
signingName: "cloudfront",
|
|
267
266
|
signingRegion: "us-east-1",
|
|
267
|
+
signingName: "cloudfront",
|
|
268
268
|
},
|
|
269
269
|
],
|
|
270
270
|
},
|
|
@@ -323,8 +323,8 @@ exports.ruleSet = {
|
|
|
323
323
|
authSchemes: [
|
|
324
324
|
{
|
|
325
325
|
name: "sigv4",
|
|
326
|
-
signingName: "cloudfront",
|
|
327
326
|
signingRegion: "us-east-1",
|
|
327
|
+
signingName: "cloudfront",
|
|
328
328
|
},
|
|
329
329
|
],
|
|
330
330
|
},
|
|
@@ -349,8 +349,8 @@ exports.ruleSet = {
|
|
|
349
349
|
authSchemes: [
|
|
350
350
|
{
|
|
351
351
|
name: "sigv4",
|
|
352
|
-
signingName: "cloudfront",
|
|
353
352
|
signingRegion: "us-east-1",
|
|
353
|
+
signingName: "cloudfront",
|
|
354
354
|
},
|
|
355
355
|
],
|
|
356
356
|
},
|
|
@@ -446,8 +446,8 @@ exports.ruleSet = {
|
|
|
446
446
|
authSchemes: [
|
|
447
447
|
{
|
|
448
448
|
name: "sigv4",
|
|
449
|
-
signingName: "cloudfront",
|
|
450
449
|
signingRegion: "cn-northwest-1",
|
|
450
|
+
signingName: "cloudfront",
|
|
451
451
|
},
|
|
452
452
|
],
|
|
453
453
|
},
|
|
@@ -506,8 +506,8 @@ exports.ruleSet = {
|
|
|
506
506
|
authSchemes: [
|
|
507
507
|
{
|
|
508
508
|
name: "sigv4",
|
|
509
|
-
signingName: "cloudfront",
|
|
510
509
|
signingRegion: "cn-northwest-1",
|
|
510
|
+
signingName: "cloudfront",
|
|
511
511
|
},
|
|
512
512
|
],
|
|
513
513
|
},
|
|
@@ -566,8 +566,8 @@ exports.ruleSet = {
|
|
|
566
566
|
authSchemes: [
|
|
567
567
|
{
|
|
568
568
|
name: "sigv4",
|
|
569
|
-
signingName: "cloudfront",
|
|
570
569
|
signingRegion: "cn-northwest-1",
|
|
570
|
+
signingName: "cloudfront",
|
|
571
571
|
},
|
|
572
572
|
],
|
|
573
573
|
},
|
|
@@ -592,8 +592,8 @@ exports.ruleSet = {
|
|
|
592
592
|
authSchemes: [
|
|
593
593
|
{
|
|
594
594
|
name: "sigv4",
|
|
595
|
-
signingName: "cloudfront",
|
|
596
595
|
signingRegion: "cn-northwest-1",
|
|
596
|
+
signingName: "cloudfront",
|
|
597
597
|
},
|
|
598
598
|
],
|
|
599
599
|
},
|
|
@@ -811,8 +811,8 @@ exports.ruleSet = {
|
|
|
811
811
|
authSchemes: [
|
|
812
812
|
{
|
|
813
813
|
name: "sigv4",
|
|
814
|
-
signingName: "cloudfront",
|
|
815
814
|
signingRegion: "us-east-1",
|
|
815
|
+
signingName: "cloudfront",
|
|
816
816
|
},
|
|
817
817
|
],
|
|
818
818
|
},
|
|
@@ -838,8 +838,8 @@ exports.ruleSet = {
|
|
|
838
838
|
authSchemes: [
|
|
839
839
|
{
|
|
840
840
|
name: "sigv4",
|
|
841
|
-
signingName: "cloudfront",
|
|
842
841
|
signingRegion: "cn-northwest-1",
|
|
842
|
+
signingName: "cloudfront",
|
|
843
843
|
},
|
|
844
844
|
],
|
|
845
845
|
},
|