@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
|
@@ -3,7 +3,7 @@ export const ruleSet = {
|
|
|
3
3
|
parameters: {
|
|
4
4
|
Region: {
|
|
5
5
|
builtIn: "AWS::Region",
|
|
6
|
-
required:
|
|
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
|
},
|