@aws-sdk/client-cloudfront 3.693.0 → 3.697.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/README.md +88 -0
- package/dist-cjs/index.js +976 -199
- package/dist-es/CloudFront.js +22 -0
- package/dist-es/commands/CreateAnycastIpListCommand.js +22 -0
- package/dist-es/commands/CreateVpcOriginCommand.js +22 -0
- package/dist-es/commands/DeleteAnycastIpListCommand.js +22 -0
- package/dist-es/commands/DeleteVpcOriginCommand.js +22 -0
- package/dist-es/commands/GetAnycastIpListCommand.js +22 -0
- package/dist-es/commands/GetVpcOriginCommand.js +22 -0
- package/dist-es/commands/ListAnycastIpListsCommand.js +22 -0
- package/dist-es/commands/ListDistributionsByAnycastIpListIdCommand.js +23 -0
- package/dist-es/commands/ListDistributionsByVpcOriginIdCommand.js +22 -0
- package/dist-es/commands/ListVpcOriginsCommand.js +22 -0
- package/dist-es/commands/UpdateVpcOriginCommand.js +22 -0
- package/dist-es/commands/index.js +11 -0
- package/dist-es/models/models_0.js +78 -52
- package/dist-es/models/models_1.js +3 -13
- package/dist-es/protocols/Aws_restXml.js +630 -56
- package/dist-types/CloudFront.d.ts +79 -0
- package/dist-types/CloudFrontClient.d.ts +13 -2
- package/dist-types/commands/CopyDistributionCommand.d.ts +14 -4
- package/dist-types/commands/CreateAnycastIpListCommand.d.ts +110 -0
- package/dist-types/commands/CreateDistributionCommand.d.ts +31 -8
- package/dist-types/commands/CreateDistributionWithTagsCommand.d.ts +31 -8
- package/dist-types/commands/CreateKeyValueStoreCommand.d.ts +3 -3
- package/dist-types/commands/CreateVpcOriginCommand.d.ts +135 -0
- package/dist-types/commands/DeleteAnycastIpListCommand.d.ts +95 -0
- package/dist-types/commands/DeleteCachePolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteKeyValueStoreCommand.d.ts +2 -2
- package/dist-types/commands/DeleteOriginRequestPolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteResponseHeadersPolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteVpcOriginCommand.d.ts +117 -0
- package/dist-types/commands/DescribeKeyValueStoreCommand.d.ts +1 -1
- package/dist-types/commands/GetAnycastIpListCommand.d.ts +94 -0
- package/dist-types/commands/GetDistributionCommand.d.ts +14 -4
- package/dist-types/commands/GetDistributionConfigCommand.d.ts +14 -4
- package/dist-types/commands/GetVpcOriginCommand.d.ts +103 -0
- package/dist-types/commands/ListAnycastIpListsCommand.d.ts +100 -0
- package/dist-types/commands/ListDistributionsByAnycastIpListIdCommand.d.ts +392 -0
- package/dist-types/commands/ListDistributionsByRealtimeLogConfigCommand.d.ts +10 -0
- package/dist-types/commands/ListDistributionsByVpcOriginIdCommand.d.ts +94 -0
- package/dist-types/commands/ListDistributionsByWebACLIdCommand.d.ts +10 -0
- package/dist-types/commands/ListDistributionsCommand.d.ts +10 -0
- package/dist-types/commands/ListVpcOriginsCommand.d.ts +101 -0
- package/dist-types/commands/UpdateDistributionCommand.d.ts +31 -8
- package/dist-types/commands/UpdateDistributionWithStagingConfigCommand.d.ts +17 -4
- package/dist-types/commands/UpdateKeyValueStoreCommand.d.ts +1 -1
- package/dist-types/commands/UpdateVpcOriginCommand.d.ts +141 -0
- package/dist-types/commands/index.d.ts +11 -0
- package/dist-types/models/models_0.d.ts +337 -314
- package/dist-types/models/models_1.d.ts +668 -24
- package/dist-types/protocols/Aws_restXml.d.ts +99 -0
- package/dist-types/ts3.4/CloudFront.d.ts +195 -0
- package/dist-types/ts3.4/CloudFrontClient.d.ts +68 -2
- package/dist-types/ts3.4/commands/CreateAnycastIpListCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateVpcOriginCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteAnycastIpListCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/DeleteVpcOriginCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetAnycastIpListCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetVpcOriginCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListAnycastIpListsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDistributionsByAnycastIpListIdCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListDistributionsByVpcOriginIdCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListVpcOriginsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateVpcOriginCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +11 -0
- package/dist-types/ts3.4/models/models_0.d.ts +99 -89
- package/dist-types/ts3.4/models/models_1.d.ts +167 -13
- package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +132 -0
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -33,6 +33,7 @@ __export(src_exports, {
|
|
|
33
33
|
CachePolicyType: () => CachePolicyType,
|
|
34
34
|
CannotChangeImmutablePublicKeyFields: () => CannotChangeImmutablePublicKeyFields,
|
|
35
35
|
CannotDeleteEntityWhileInUse: () => CannotDeleteEntityWhileInUse,
|
|
36
|
+
CannotUpdateEntityWhileInUse: () => CannotUpdateEntityWhileInUse,
|
|
36
37
|
CertificateSource: () => CertificateSource,
|
|
37
38
|
CloudFront: () => CloudFront,
|
|
38
39
|
CloudFrontClient: () => CloudFrontClient,
|
|
@@ -44,6 +45,7 @@ __export(src_exports, {
|
|
|
44
45
|
ContinuousDeploymentPolicyType: () => ContinuousDeploymentPolicyType,
|
|
45
46
|
CopyDistributionCommand: () => CopyDistributionCommand,
|
|
46
47
|
CopyDistributionResultFilterSensitiveLog: () => CopyDistributionResultFilterSensitiveLog,
|
|
48
|
+
CreateAnycastIpListCommand: () => CreateAnycastIpListCommand,
|
|
47
49
|
CreateCachePolicyCommand: () => CreateCachePolicyCommand,
|
|
48
50
|
CreateCloudFrontOriginAccessIdentityCommand: () => CreateCloudFrontOriginAccessIdentityCommand,
|
|
49
51
|
CreateContinuousDeploymentPolicyCommand: () => CreateContinuousDeploymentPolicyCommand,
|
|
@@ -68,7 +70,9 @@ __export(src_exports, {
|
|
|
68
70
|
CreateResponseHeadersPolicyCommand: () => CreateResponseHeadersPolicyCommand,
|
|
69
71
|
CreateStreamingDistributionCommand: () => CreateStreamingDistributionCommand,
|
|
70
72
|
CreateStreamingDistributionWithTagsCommand: () => CreateStreamingDistributionWithTagsCommand,
|
|
73
|
+
CreateVpcOriginCommand: () => CreateVpcOriginCommand,
|
|
71
74
|
CustomHeadersFilterSensitiveLog: () => CustomHeadersFilterSensitiveLog,
|
|
75
|
+
DeleteAnycastIpListCommand: () => DeleteAnycastIpListCommand,
|
|
72
76
|
DeleteCachePolicyCommand: () => DeleteCachePolicyCommand,
|
|
73
77
|
DeleteCloudFrontOriginAccessIdentityCommand: () => DeleteCloudFrontOriginAccessIdentityCommand,
|
|
74
78
|
DeleteContinuousDeploymentPolicyCommand: () => DeleteContinuousDeploymentPolicyCommand,
|
|
@@ -85,6 +89,7 @@ __export(src_exports, {
|
|
|
85
89
|
DeleteRealtimeLogConfigCommand: () => DeleteRealtimeLogConfigCommand,
|
|
86
90
|
DeleteResponseHeadersPolicyCommand: () => DeleteResponseHeadersPolicyCommand,
|
|
87
91
|
DeleteStreamingDistributionCommand: () => DeleteStreamingDistributionCommand,
|
|
92
|
+
DeleteVpcOriginCommand: () => DeleteVpcOriginCommand,
|
|
88
93
|
DescribeFunctionCommand: () => DescribeFunctionCommand,
|
|
89
94
|
DescribeKeyValueStoreCommand: () => DescribeKeyValueStoreCommand,
|
|
90
95
|
DistributionAlreadyExists: () => DistributionAlreadyExists,
|
|
@@ -112,6 +117,7 @@ __export(src_exports, {
|
|
|
112
117
|
FunctionSizeLimitExceeded: () => FunctionSizeLimitExceeded,
|
|
113
118
|
FunctionStage: () => FunctionStage,
|
|
114
119
|
GeoRestrictionType: () => GeoRestrictionType,
|
|
120
|
+
GetAnycastIpListCommand: () => GetAnycastIpListCommand,
|
|
115
121
|
GetCachePolicyCommand: () => GetCachePolicyCommand,
|
|
116
122
|
GetCachePolicyConfigCommand: () => GetCachePolicyConfigCommand,
|
|
117
123
|
GetCloudFrontOriginAccessIdentityCommand: () => GetCloudFrontOriginAccessIdentityCommand,
|
|
@@ -143,6 +149,7 @@ __export(src_exports, {
|
|
|
143
149
|
GetResponseHeadersPolicyConfigCommand: () => GetResponseHeadersPolicyConfigCommand,
|
|
144
150
|
GetStreamingDistributionCommand: () => GetStreamingDistributionCommand,
|
|
145
151
|
GetStreamingDistributionConfigCommand: () => GetStreamingDistributionConfigCommand,
|
|
152
|
+
GetVpcOriginCommand: () => GetVpcOriginCommand,
|
|
146
153
|
HttpVersion: () => HttpVersion,
|
|
147
154
|
ICPRecordalStatus: () => ICPRecordalStatus,
|
|
148
155
|
IllegalDelete: () => IllegalDelete,
|
|
@@ -179,16 +186,20 @@ __export(src_exports, {
|
|
|
179
186
|
InvalidWebACLId: () => InvalidWebACLId,
|
|
180
187
|
ItemSelection: () => ItemSelection,
|
|
181
188
|
KeyGroupAlreadyExists: () => KeyGroupAlreadyExists,
|
|
189
|
+
ListAnycastIpListsCommand: () => ListAnycastIpListsCommand,
|
|
182
190
|
ListCachePoliciesCommand: () => ListCachePoliciesCommand,
|
|
183
191
|
ListCloudFrontOriginAccessIdentitiesCommand: () => ListCloudFrontOriginAccessIdentitiesCommand,
|
|
184
192
|
ListConflictingAliasesCommand: () => ListConflictingAliasesCommand,
|
|
185
193
|
ListContinuousDeploymentPoliciesCommand: () => ListContinuousDeploymentPoliciesCommand,
|
|
194
|
+
ListDistributionsByAnycastIpListIdCommand: () => ListDistributionsByAnycastIpListIdCommand,
|
|
195
|
+
ListDistributionsByAnycastIpListIdResultFilterSensitiveLog: () => ListDistributionsByAnycastIpListIdResultFilterSensitiveLog,
|
|
186
196
|
ListDistributionsByCachePolicyIdCommand: () => ListDistributionsByCachePolicyIdCommand,
|
|
187
197
|
ListDistributionsByKeyGroupCommand: () => ListDistributionsByKeyGroupCommand,
|
|
188
198
|
ListDistributionsByOriginRequestPolicyIdCommand: () => ListDistributionsByOriginRequestPolicyIdCommand,
|
|
189
199
|
ListDistributionsByRealtimeLogConfigCommand: () => ListDistributionsByRealtimeLogConfigCommand,
|
|
190
200
|
ListDistributionsByRealtimeLogConfigResultFilterSensitiveLog: () => ListDistributionsByRealtimeLogConfigResultFilterSensitiveLog,
|
|
191
201
|
ListDistributionsByResponseHeadersPolicyIdCommand: () => ListDistributionsByResponseHeadersPolicyIdCommand,
|
|
202
|
+
ListDistributionsByVpcOriginIdCommand: () => ListDistributionsByVpcOriginIdCommand,
|
|
192
203
|
ListDistributionsByWebACLIdCommand: () => ListDistributionsByWebACLIdCommand,
|
|
193
204
|
ListDistributionsByWebACLIdResultFilterSensitiveLog: () => ListDistributionsByWebACLIdResultFilterSensitiveLog,
|
|
194
205
|
ListDistributionsCommand: () => ListDistributionsCommand,
|
|
@@ -206,6 +217,7 @@ __export(src_exports, {
|
|
|
206
217
|
ListResponseHeadersPoliciesCommand: () => ListResponseHeadersPoliciesCommand,
|
|
207
218
|
ListStreamingDistributionsCommand: () => ListStreamingDistributionsCommand,
|
|
208
219
|
ListTagsForResourceCommand: () => ListTagsForResourceCommand,
|
|
220
|
+
ListVpcOriginsCommand: () => ListVpcOriginsCommand,
|
|
209
221
|
Method: () => Method,
|
|
210
222
|
MinimumProtocolVersion: () => MinimumProtocolVersion,
|
|
211
223
|
MissingBody: () => MissingBody,
|
|
@@ -345,6 +357,7 @@ __export(src_exports, {
|
|
|
345
357
|
UpdateRealtimeLogConfigCommand: () => UpdateRealtimeLogConfigCommand,
|
|
346
358
|
UpdateResponseHeadersPolicyCommand: () => UpdateResponseHeadersPolicyCommand,
|
|
347
359
|
UpdateStreamingDistributionCommand: () => UpdateStreamingDistributionCommand,
|
|
360
|
+
UpdateVpcOriginCommand: () => UpdateVpcOriginCommand,
|
|
348
361
|
ViewerProtocolPolicy: () => ViewerProtocolPolicy,
|
|
349
362
|
__Client: () => import_smithy_client.Client,
|
|
350
363
|
paginateListCloudFrontOriginAccessIdentities: () => paginateListCloudFrontOriginAccessIdentities,
|
|
@@ -769,6 +782,24 @@ var _CannotDeleteEntityWhileInUse = class _CannotDeleteEntityWhileInUse extends
|
|
|
769
782
|
};
|
|
770
783
|
__name(_CannotDeleteEntityWhileInUse, "CannotDeleteEntityWhileInUse");
|
|
771
784
|
var CannotDeleteEntityWhileInUse = _CannotDeleteEntityWhileInUse;
|
|
785
|
+
var _CannotUpdateEntityWhileInUse = class _CannotUpdateEntityWhileInUse extends CloudFrontServiceException {
|
|
786
|
+
/**
|
|
787
|
+
* @internal
|
|
788
|
+
*/
|
|
789
|
+
constructor(opts) {
|
|
790
|
+
super({
|
|
791
|
+
name: "CannotUpdateEntityWhileInUse",
|
|
792
|
+
$fault: "client",
|
|
793
|
+
...opts
|
|
794
|
+
});
|
|
795
|
+
this.name = "CannotUpdateEntityWhileInUse";
|
|
796
|
+
this.$fault = "client";
|
|
797
|
+
Object.setPrototypeOf(this, _CannotUpdateEntityWhileInUse.prototype);
|
|
798
|
+
this.Message = opts.Message;
|
|
799
|
+
}
|
|
800
|
+
};
|
|
801
|
+
__name(_CannotUpdateEntityWhileInUse, "CannotUpdateEntityWhileInUse");
|
|
802
|
+
var CannotUpdateEntityWhileInUse = _CannotUpdateEntityWhileInUse;
|
|
772
803
|
var CertificateSource = {
|
|
773
804
|
acm: "acm",
|
|
774
805
|
cloudfront: "cloudfront",
|
|
@@ -1895,6 +1926,78 @@ var _TrustedSignerDoesNotExist = class _TrustedSignerDoesNotExist extends CloudF
|
|
|
1895
1926
|
};
|
|
1896
1927
|
__name(_TrustedSignerDoesNotExist, "TrustedSignerDoesNotExist");
|
|
1897
1928
|
var TrustedSignerDoesNotExist = _TrustedSignerDoesNotExist;
|
|
1929
|
+
var _EntityAlreadyExists = class _EntityAlreadyExists extends CloudFrontServiceException {
|
|
1930
|
+
/**
|
|
1931
|
+
* @internal
|
|
1932
|
+
*/
|
|
1933
|
+
constructor(opts) {
|
|
1934
|
+
super({
|
|
1935
|
+
name: "EntityAlreadyExists",
|
|
1936
|
+
$fault: "client",
|
|
1937
|
+
...opts
|
|
1938
|
+
});
|
|
1939
|
+
this.name = "EntityAlreadyExists";
|
|
1940
|
+
this.$fault = "client";
|
|
1941
|
+
Object.setPrototypeOf(this, _EntityAlreadyExists.prototype);
|
|
1942
|
+
this.Message = opts.Message;
|
|
1943
|
+
}
|
|
1944
|
+
};
|
|
1945
|
+
__name(_EntityAlreadyExists, "EntityAlreadyExists");
|
|
1946
|
+
var EntityAlreadyExists = _EntityAlreadyExists;
|
|
1947
|
+
var _EntityLimitExceeded = class _EntityLimitExceeded extends CloudFrontServiceException {
|
|
1948
|
+
/**
|
|
1949
|
+
* @internal
|
|
1950
|
+
*/
|
|
1951
|
+
constructor(opts) {
|
|
1952
|
+
super({
|
|
1953
|
+
name: "EntityLimitExceeded",
|
|
1954
|
+
$fault: "client",
|
|
1955
|
+
...opts
|
|
1956
|
+
});
|
|
1957
|
+
this.name = "EntityLimitExceeded";
|
|
1958
|
+
this.$fault = "client";
|
|
1959
|
+
Object.setPrototypeOf(this, _EntityLimitExceeded.prototype);
|
|
1960
|
+
this.Message = opts.Message;
|
|
1961
|
+
}
|
|
1962
|
+
};
|
|
1963
|
+
__name(_EntityLimitExceeded, "EntityLimitExceeded");
|
|
1964
|
+
var EntityLimitExceeded = _EntityLimitExceeded;
|
|
1965
|
+
var _InvalidTagging = class _InvalidTagging extends CloudFrontServiceException {
|
|
1966
|
+
/**
|
|
1967
|
+
* @internal
|
|
1968
|
+
*/
|
|
1969
|
+
constructor(opts) {
|
|
1970
|
+
super({
|
|
1971
|
+
name: "InvalidTagging",
|
|
1972
|
+
$fault: "client",
|
|
1973
|
+
...opts
|
|
1974
|
+
});
|
|
1975
|
+
this.name = "InvalidTagging";
|
|
1976
|
+
this.$fault = "client";
|
|
1977
|
+
Object.setPrototypeOf(this, _InvalidTagging.prototype);
|
|
1978
|
+
this.Message = opts.Message;
|
|
1979
|
+
}
|
|
1980
|
+
};
|
|
1981
|
+
__name(_InvalidTagging, "InvalidTagging");
|
|
1982
|
+
var InvalidTagging = _InvalidTagging;
|
|
1983
|
+
var _UnsupportedOperation = class _UnsupportedOperation extends CloudFrontServiceException {
|
|
1984
|
+
/**
|
|
1985
|
+
* @internal
|
|
1986
|
+
*/
|
|
1987
|
+
constructor(opts) {
|
|
1988
|
+
super({
|
|
1989
|
+
name: "UnsupportedOperation",
|
|
1990
|
+
$fault: "client",
|
|
1991
|
+
...opts
|
|
1992
|
+
});
|
|
1993
|
+
this.name = "UnsupportedOperation";
|
|
1994
|
+
this.$fault = "client";
|
|
1995
|
+
Object.setPrototypeOf(this, _UnsupportedOperation.prototype);
|
|
1996
|
+
this.Message = opts.Message;
|
|
1997
|
+
}
|
|
1998
|
+
};
|
|
1999
|
+
__name(_UnsupportedOperation, "UnsupportedOperation");
|
|
2000
|
+
var UnsupportedOperation = _UnsupportedOperation;
|
|
1898
2001
|
var _TooManyCachePolicies = class _TooManyCachePolicies extends CloudFrontServiceException {
|
|
1899
2002
|
/**
|
|
1900
2003
|
* @internal
|
|
@@ -2079,6 +2182,24 @@ var _ContinuousDeploymentPolicyInUse = class _ContinuousDeploymentPolicyInUse ex
|
|
|
2079
2182
|
};
|
|
2080
2183
|
__name(_ContinuousDeploymentPolicyInUse, "ContinuousDeploymentPolicyInUse");
|
|
2081
2184
|
var ContinuousDeploymentPolicyInUse = _ContinuousDeploymentPolicyInUse;
|
|
2185
|
+
var _EntityNotFound = class _EntityNotFound extends CloudFrontServiceException {
|
|
2186
|
+
/**
|
|
2187
|
+
* @internal
|
|
2188
|
+
*/
|
|
2189
|
+
constructor(opts) {
|
|
2190
|
+
super({
|
|
2191
|
+
name: "EntityNotFound",
|
|
2192
|
+
$fault: "client",
|
|
2193
|
+
...opts
|
|
2194
|
+
});
|
|
2195
|
+
this.name = "EntityNotFound";
|
|
2196
|
+
this.$fault = "client";
|
|
2197
|
+
Object.setPrototypeOf(this, _EntityNotFound.prototype);
|
|
2198
|
+
this.Message = opts.Message;
|
|
2199
|
+
}
|
|
2200
|
+
};
|
|
2201
|
+
__name(_EntityNotFound, "EntityNotFound");
|
|
2202
|
+
var EntityNotFound = _EntityNotFound;
|
|
2082
2203
|
var _IllegalOriginAccessConfiguration = class _IllegalOriginAccessConfiguration extends CloudFrontServiceException {
|
|
2083
2204
|
/**
|
|
2084
2205
|
* @internal
|
|
@@ -2133,24 +2254,6 @@ var _NoSuchContinuousDeploymentPolicy = class _NoSuchContinuousDeploymentPolicy
|
|
|
2133
2254
|
};
|
|
2134
2255
|
__name(_NoSuchContinuousDeploymentPolicy, "NoSuchContinuousDeploymentPolicy");
|
|
2135
2256
|
var NoSuchContinuousDeploymentPolicy = _NoSuchContinuousDeploymentPolicy;
|
|
2136
|
-
var _InvalidTagging = class _InvalidTagging extends CloudFrontServiceException {
|
|
2137
|
-
/**
|
|
2138
|
-
* @internal
|
|
2139
|
-
*/
|
|
2140
|
-
constructor(opts) {
|
|
2141
|
-
super({
|
|
2142
|
-
name: "InvalidTagging",
|
|
2143
|
-
$fault: "client",
|
|
2144
|
-
...opts
|
|
2145
|
-
});
|
|
2146
|
-
this.name = "InvalidTagging";
|
|
2147
|
-
this.$fault = "client";
|
|
2148
|
-
Object.setPrototypeOf(this, _InvalidTagging.prototype);
|
|
2149
|
-
this.Message = opts.Message;
|
|
2150
|
-
}
|
|
2151
|
-
};
|
|
2152
|
-
__name(_InvalidTagging, "InvalidTagging");
|
|
2153
|
-
var InvalidTagging = _InvalidTagging;
|
|
2154
2257
|
var Format = {
|
|
2155
2258
|
URLEncoded: "URLEncoded"
|
|
2156
2259
|
};
|
|
@@ -2432,24 +2535,6 @@ var _TooManyFunctions = class _TooManyFunctions extends CloudFrontServiceExcepti
|
|
|
2432
2535
|
};
|
|
2433
2536
|
__name(_TooManyFunctions, "TooManyFunctions");
|
|
2434
2537
|
var TooManyFunctions = _TooManyFunctions;
|
|
2435
|
-
var _UnsupportedOperation = class _UnsupportedOperation extends CloudFrontServiceException {
|
|
2436
|
-
/**
|
|
2437
|
-
* @internal
|
|
2438
|
-
*/
|
|
2439
|
-
constructor(opts) {
|
|
2440
|
-
super({
|
|
2441
|
-
name: "UnsupportedOperation",
|
|
2442
|
-
$fault: "client",
|
|
2443
|
-
...opts
|
|
2444
|
-
});
|
|
2445
|
-
this.name = "UnsupportedOperation";
|
|
2446
|
-
this.$fault = "client";
|
|
2447
|
-
Object.setPrototypeOf(this, _UnsupportedOperation.prototype);
|
|
2448
|
-
this.Message = opts.Message;
|
|
2449
|
-
}
|
|
2450
|
-
};
|
|
2451
|
-
__name(_UnsupportedOperation, "UnsupportedOperation");
|
|
2452
|
-
var UnsupportedOperation = _UnsupportedOperation;
|
|
2453
2538
|
var _TooManyInvalidationsInProgress = class _TooManyInvalidationsInProgress extends CloudFrontServiceException {
|
|
2454
2539
|
/**
|
|
2455
2540
|
* @internal
|
|
@@ -2525,42 +2610,6 @@ var TooManyPublicKeysInKeyGroup = _TooManyPublicKeysInKeyGroup;
|
|
|
2525
2610
|
var ImportSourceType = {
|
|
2526
2611
|
S3: "S3"
|
|
2527
2612
|
};
|
|
2528
|
-
var _EntityAlreadyExists = class _EntityAlreadyExists extends CloudFrontServiceException {
|
|
2529
|
-
/**
|
|
2530
|
-
* @internal
|
|
2531
|
-
*/
|
|
2532
|
-
constructor(opts) {
|
|
2533
|
-
super({
|
|
2534
|
-
name: "EntityAlreadyExists",
|
|
2535
|
-
$fault: "client",
|
|
2536
|
-
...opts
|
|
2537
|
-
});
|
|
2538
|
-
this.name = "EntityAlreadyExists";
|
|
2539
|
-
this.$fault = "client";
|
|
2540
|
-
Object.setPrototypeOf(this, _EntityAlreadyExists.prototype);
|
|
2541
|
-
this.Message = opts.Message;
|
|
2542
|
-
}
|
|
2543
|
-
};
|
|
2544
|
-
__name(_EntityAlreadyExists, "EntityAlreadyExists");
|
|
2545
|
-
var EntityAlreadyExists = _EntityAlreadyExists;
|
|
2546
|
-
var _EntityLimitExceeded = class _EntityLimitExceeded extends CloudFrontServiceException {
|
|
2547
|
-
/**
|
|
2548
|
-
* @internal
|
|
2549
|
-
*/
|
|
2550
|
-
constructor(opts) {
|
|
2551
|
-
super({
|
|
2552
|
-
name: "EntityLimitExceeded",
|
|
2553
|
-
$fault: "client",
|
|
2554
|
-
...opts
|
|
2555
|
-
});
|
|
2556
|
-
this.name = "EntityLimitExceeded";
|
|
2557
|
-
this.$fault = "client";
|
|
2558
|
-
Object.setPrototypeOf(this, _EntityLimitExceeded.prototype);
|
|
2559
|
-
this.Message = opts.Message;
|
|
2560
|
-
}
|
|
2561
|
-
};
|
|
2562
|
-
__name(_EntityLimitExceeded, "EntityLimitExceeded");
|
|
2563
|
-
var EntityLimitExceeded = _EntityLimitExceeded;
|
|
2564
2613
|
var _EntitySizeLimitExceeded = class _EntitySizeLimitExceeded extends CloudFrontServiceException {
|
|
2565
2614
|
/**
|
|
2566
2615
|
* @internal
|
|
@@ -3226,24 +3275,6 @@ var _ResourceInUse = class _ResourceInUse extends CloudFrontServiceException {
|
|
|
3226
3275
|
};
|
|
3227
3276
|
__name(_ResourceInUse, "ResourceInUse");
|
|
3228
3277
|
var ResourceInUse = _ResourceInUse;
|
|
3229
|
-
var _EntityNotFound = class _EntityNotFound extends CloudFrontServiceException {
|
|
3230
|
-
/**
|
|
3231
|
-
* @internal
|
|
3232
|
-
*/
|
|
3233
|
-
constructor(opts) {
|
|
3234
|
-
super({
|
|
3235
|
-
name: "EntityNotFound",
|
|
3236
|
-
$fault: "client",
|
|
3237
|
-
...opts
|
|
3238
|
-
});
|
|
3239
|
-
this.name = "EntityNotFound";
|
|
3240
|
-
this.$fault = "client";
|
|
3241
|
-
Object.setPrototypeOf(this, _EntityNotFound.prototype);
|
|
3242
|
-
this.Message = opts.Message;
|
|
3243
|
-
}
|
|
3244
|
-
};
|
|
3245
|
-
__name(_EntityNotFound, "EntityNotFound");
|
|
3246
|
-
var EntityNotFound = _EntityNotFound;
|
|
3247
3278
|
var _NoSuchMonitoringSubscription = class _NoSuchMonitoringSubscription extends CloudFrontServiceException {
|
|
3248
3279
|
/**
|
|
3249
3280
|
* @internal
|
|
@@ -3471,6 +3502,9 @@ var DistributionListFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
|
3471
3502
|
var ListDistributionsResultFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3472
3503
|
...obj
|
|
3473
3504
|
}), "ListDistributionsResultFilterSensitiveLog");
|
|
3505
|
+
var ListDistributionsByAnycastIpListIdResultFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3506
|
+
...obj
|
|
3507
|
+
}), "ListDistributionsByAnycastIpListIdResultFilterSensitiveLog");
|
|
3474
3508
|
var ListDistributionsByRealtimeLogConfigResultFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
3475
3509
|
...obj
|
|
3476
3510
|
}), "ListDistributionsByRealtimeLogConfigResultFilterSensitiveLog");
|
|
@@ -3544,6 +3578,29 @@ var se_CopyDistributionCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
3544
3578
|
b.m("POST").h(headers).b(body);
|
|
3545
3579
|
return b.build();
|
|
3546
3580
|
}, "se_CopyDistributionCommand");
|
|
3581
|
+
var se_CreateAnycastIpListCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3582
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3583
|
+
const headers = {
|
|
3584
|
+
"content-type": "application/xml"
|
|
3585
|
+
};
|
|
3586
|
+
b.bp("/2020-05-31/anycast-ip-list");
|
|
3587
|
+
let body;
|
|
3588
|
+
body = _ve;
|
|
3589
|
+
const bn = new import_xml_builder.XmlNode(_CAILR);
|
|
3590
|
+
bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
|
|
3591
|
+
if (input[_IC] != null) {
|
|
3592
|
+
bn.c(import_xml_builder.XmlNode.of(_i, String(input[_IC])).n(_IC));
|
|
3593
|
+
}
|
|
3594
|
+
if (input[_N] != null) {
|
|
3595
|
+
bn.c(import_xml_builder.XmlNode.of(_AILN, input[_N]).n(_N));
|
|
3596
|
+
}
|
|
3597
|
+
if (input[_T] != null) {
|
|
3598
|
+
bn.c(se_Tags(input[_T], context).n(_T));
|
|
3599
|
+
}
|
|
3600
|
+
body += bn.toString();
|
|
3601
|
+
b.m("POST").h(headers).b(body);
|
|
3602
|
+
return b.build();
|
|
3603
|
+
}, "se_CreateAnycastIpListCommand");
|
|
3547
3604
|
var se_CreateCachePolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3548
3605
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
3549
3606
|
const headers = {
|
|
@@ -3892,6 +3949,37 @@ var se_CreateStreamingDistributionWithTagsCommand = /* @__PURE__ */ __name(async
|
|
|
3892
3949
|
b.m("POST").h(headers).q(query).b(body);
|
|
3893
3950
|
return b.build();
|
|
3894
3951
|
}, "se_CreateStreamingDistributionWithTagsCommand");
|
|
3952
|
+
var se_CreateVpcOriginCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3953
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3954
|
+
const headers = {
|
|
3955
|
+
"content-type": "application/xml"
|
|
3956
|
+
};
|
|
3957
|
+
b.bp("/2020-05-31/vpc-origin");
|
|
3958
|
+
let body;
|
|
3959
|
+
body = _ve;
|
|
3960
|
+
const bn = new import_xml_builder.XmlNode(_CVOR);
|
|
3961
|
+
bn.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
|
|
3962
|
+
if (input[_T] != null) {
|
|
3963
|
+
bn.c(se_Tags(input[_T], context).n(_T));
|
|
3964
|
+
}
|
|
3965
|
+
if (input[_VOEC] != null) {
|
|
3966
|
+
bn.c(se_VpcOriginEndpointConfig(input[_VOEC], context).n(_VOEC));
|
|
3967
|
+
}
|
|
3968
|
+
body += bn.toString();
|
|
3969
|
+
b.m("POST").h(headers).b(body);
|
|
3970
|
+
return b.build();
|
|
3971
|
+
}, "se_CreateVpcOriginCommand");
|
|
3972
|
+
var se_DeleteAnycastIpListCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3973
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
3974
|
+
const headers = (0, import_smithy_client.map)({}, import_smithy_client.isSerializableHeaderValue, {
|
|
3975
|
+
[_im]: input[_IM]
|
|
3976
|
+
});
|
|
3977
|
+
b.bp("/2020-05-31/anycast-ip-list/{Id}");
|
|
3978
|
+
b.p("Id", () => input.Id, "{Id}", false);
|
|
3979
|
+
let body;
|
|
3980
|
+
b.m("DELETE").h(headers).b(body);
|
|
3981
|
+
return b.build();
|
|
3982
|
+
}, "se_DeleteAnycastIpListCommand");
|
|
3895
3983
|
var se_DeleteCachePolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
3896
3984
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
3897
3985
|
const headers = (0, import_smithy_client.map)({}, import_smithy_client.isSerializableHeaderValue, {
|
|
@@ -4075,6 +4163,17 @@ var se_DeleteStreamingDistributionCommand = /* @__PURE__ */ __name(async (input,
|
|
|
4075
4163
|
b.m("DELETE").h(headers).b(body);
|
|
4076
4164
|
return b.build();
|
|
4077
4165
|
}, "se_DeleteStreamingDistributionCommand");
|
|
4166
|
+
var se_DeleteVpcOriginCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4167
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4168
|
+
const headers = (0, import_smithy_client.map)({}, import_smithy_client.isSerializableHeaderValue, {
|
|
4169
|
+
[_im]: input[_IM]
|
|
4170
|
+
});
|
|
4171
|
+
b.bp("/2020-05-31/vpc-origin/{Id}");
|
|
4172
|
+
b.p("Id", () => input.Id, "{Id}", false);
|
|
4173
|
+
let body;
|
|
4174
|
+
b.m("DELETE").h(headers).b(body);
|
|
4175
|
+
return b.build();
|
|
4176
|
+
}, "se_DeleteVpcOriginCommand");
|
|
4078
4177
|
var se_DescribeFunctionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4079
4178
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
4080
4179
|
const headers = {};
|
|
@@ -4096,6 +4195,15 @@ var se_DescribeKeyValueStoreCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
4096
4195
|
b.m("GET").h(headers).b(body);
|
|
4097
4196
|
return b.build();
|
|
4098
4197
|
}, "se_DescribeKeyValueStoreCommand");
|
|
4198
|
+
var se_GetAnycastIpListCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4199
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4200
|
+
const headers = {};
|
|
4201
|
+
b.bp("/2020-05-31/anycast-ip-list/{Id}");
|
|
4202
|
+
b.p("Id", () => input.Id, "{Id}", false);
|
|
4203
|
+
let body;
|
|
4204
|
+
b.m("GET").h(headers).b(body);
|
|
4205
|
+
return b.build();
|
|
4206
|
+
}, "se_GetAnycastIpListCommand");
|
|
4099
4207
|
var se_GetCachePolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4100
4208
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
4101
4209
|
const headers = {};
|
|
@@ -4363,12 +4471,33 @@ var se_GetStreamingDistributionConfigCommand = /* @__PURE__ */ __name(async (inp
|
|
|
4363
4471
|
b.m("GET").h(headers).b(body);
|
|
4364
4472
|
return b.build();
|
|
4365
4473
|
}, "se_GetStreamingDistributionConfigCommand");
|
|
4474
|
+
var se_GetVpcOriginCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4475
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4476
|
+
const headers = {};
|
|
4477
|
+
b.bp("/2020-05-31/vpc-origin/{Id}");
|
|
4478
|
+
b.p("Id", () => input.Id, "{Id}", false);
|
|
4479
|
+
let body;
|
|
4480
|
+
b.m("GET").h(headers).b(body);
|
|
4481
|
+
return b.build();
|
|
4482
|
+
}, "se_GetVpcOriginCommand");
|
|
4483
|
+
var se_ListAnycastIpListsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4484
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4485
|
+
const headers = {};
|
|
4486
|
+
b.bp("/2020-05-31/anycast-ip-list");
|
|
4487
|
+
const query = (0, import_smithy_client.map)({
|
|
4488
|
+
[_M]: [, input[_M]],
|
|
4489
|
+
[_MI]: [() => input.MaxItems !== void 0, () => input[_MI].toString()]
|
|
4490
|
+
});
|
|
4491
|
+
let body;
|
|
4492
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
4493
|
+
return b.build();
|
|
4494
|
+
}, "se_ListAnycastIpListsCommand");
|
|
4366
4495
|
var se_ListCachePoliciesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4367
4496
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
4368
4497
|
const headers = {};
|
|
4369
4498
|
b.bp("/2020-05-31/cache-policy");
|
|
4370
4499
|
const query = (0, import_smithy_client.map)({
|
|
4371
|
-
[
|
|
4500
|
+
[_Ty]: [, input[_Ty]],
|
|
4372
4501
|
[_M]: [, input[_M]],
|
|
4373
4502
|
[_MI]: [() => input.MaxItems !== void 0, () => input[_MI].toString()]
|
|
4374
4503
|
});
|
|
@@ -4426,6 +4555,19 @@ var se_ListDistributionsCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
4426
4555
|
b.m("GET").h(headers).q(query).b(body);
|
|
4427
4556
|
return b.build();
|
|
4428
4557
|
}, "se_ListDistributionsCommand");
|
|
4558
|
+
var se_ListDistributionsByAnycastIpListIdCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4559
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4560
|
+
const headers = {};
|
|
4561
|
+
b.bp("/2020-05-31/distributionsByAnycastIpListId/{AnycastIpListId}");
|
|
4562
|
+
b.p("AnycastIpListId", () => input.AnycastIpListId, "{AnycastIpListId}", false);
|
|
4563
|
+
const query = (0, import_smithy_client.map)({
|
|
4564
|
+
[_M]: [, input[_M]],
|
|
4565
|
+
[_MI]: [() => input.MaxItems !== void 0, () => input[_MI].toString()]
|
|
4566
|
+
});
|
|
4567
|
+
let body;
|
|
4568
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
4569
|
+
return b.build();
|
|
4570
|
+
}, "se_ListDistributionsByAnycastIpListIdCommand");
|
|
4429
4571
|
var se_ListDistributionsByCachePolicyIdCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4430
4572
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
4431
4573
|
const headers = {};
|
|
@@ -4504,6 +4646,19 @@ var se_ListDistributionsByResponseHeadersPolicyIdCommand = /* @__PURE__ */ __nam
|
|
|
4504
4646
|
b.m("GET").h(headers).q(query).b(body);
|
|
4505
4647
|
return b.build();
|
|
4506
4648
|
}, "se_ListDistributionsByResponseHeadersPolicyIdCommand");
|
|
4649
|
+
var se_ListDistributionsByVpcOriginIdCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4650
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4651
|
+
const headers = {};
|
|
4652
|
+
b.bp("/2020-05-31/distributionsByVpcOriginId/{VpcOriginId}");
|
|
4653
|
+
b.p("VpcOriginId", () => input.VpcOriginId, "{VpcOriginId}", false);
|
|
4654
|
+
const query = (0, import_smithy_client.map)({
|
|
4655
|
+
[_M]: [, input[_M]],
|
|
4656
|
+
[_MI]: [() => input.MaxItems !== void 0, () => input[_MI].toString()]
|
|
4657
|
+
});
|
|
4658
|
+
let body;
|
|
4659
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
4660
|
+
return b.build();
|
|
4661
|
+
}, "se_ListDistributionsByVpcOriginIdCommand");
|
|
4507
4662
|
var se_ListDistributionsByWebACLIdCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4508
4663
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
4509
4664
|
const headers = {};
|
|
@@ -4609,7 +4764,7 @@ var se_ListOriginRequestPoliciesCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
4609
4764
|
const headers = {};
|
|
4610
4765
|
b.bp("/2020-05-31/origin-request-policy");
|
|
4611
4766
|
const query = (0, import_smithy_client.map)({
|
|
4612
|
-
[
|
|
4767
|
+
[_Ty]: [, input[_Ty]],
|
|
4613
4768
|
[_M]: [, input[_M]],
|
|
4614
4769
|
[_MI]: [() => input.MaxItems !== void 0, () => input[_MI].toString()]
|
|
4615
4770
|
});
|
|
@@ -4646,7 +4801,7 @@ var se_ListResponseHeadersPoliciesCommand = /* @__PURE__ */ __name(async (input,
|
|
|
4646
4801
|
const headers = {};
|
|
4647
4802
|
b.bp("/2020-05-31/response-headers-policy");
|
|
4648
4803
|
const query = (0, import_smithy_client.map)({
|
|
4649
|
-
[
|
|
4804
|
+
[_Ty]: [, input[_Ty]],
|
|
4650
4805
|
[_M]: [, input[_M]],
|
|
4651
4806
|
[_MI]: [() => input.MaxItems !== void 0, () => input[_MI].toString()]
|
|
4652
4807
|
});
|
|
@@ -4677,6 +4832,18 @@ var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
4677
4832
|
b.m("GET").h(headers).q(query).b(body);
|
|
4678
4833
|
return b.build();
|
|
4679
4834
|
}, "se_ListTagsForResourceCommand");
|
|
4835
|
+
var se_ListVpcOriginsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4836
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
4837
|
+
const headers = {};
|
|
4838
|
+
b.bp("/2020-05-31/vpc-origin");
|
|
4839
|
+
const query = (0, import_smithy_client.map)({
|
|
4840
|
+
[_M]: [, input[_M]],
|
|
4841
|
+
[_MI]: [() => input.MaxItems !== void 0, () => input[_MI].toString()]
|
|
4842
|
+
});
|
|
4843
|
+
let body;
|
|
4844
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
4845
|
+
return b.build();
|
|
4846
|
+
}, "se_ListVpcOriginsCommand");
|
|
4680
4847
|
var se_PublishFunctionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
4681
4848
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
4682
4849
|
const headers = (0, import_smithy_client.map)({}, import_smithy_client.isSerializableHeaderValue, {
|
|
@@ -5060,6 +5227,25 @@ var se_UpdateStreamingDistributionCommand = /* @__PURE__ */ __name(async (input,
|
|
|
5060
5227
|
b.m("PUT").h(headers).b(body);
|
|
5061
5228
|
return b.build();
|
|
5062
5229
|
}, "se_UpdateStreamingDistributionCommand");
|
|
5230
|
+
var se_UpdateVpcOriginCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
5231
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
5232
|
+
const headers = (0, import_smithy_client.map)({}, import_smithy_client.isSerializableHeaderValue, {
|
|
5233
|
+
"content-type": "application/xml",
|
|
5234
|
+
[_im]: input[_IM]
|
|
5235
|
+
});
|
|
5236
|
+
b.bp("/2020-05-31/vpc-origin/{Id}");
|
|
5237
|
+
b.p("Id", () => input.Id, "{Id}", false);
|
|
5238
|
+
let body;
|
|
5239
|
+
let contents;
|
|
5240
|
+
if (input.VpcOriginEndpointConfig !== void 0) {
|
|
5241
|
+
contents = se_VpcOriginEndpointConfig(input.VpcOriginEndpointConfig, context);
|
|
5242
|
+
body = _ve;
|
|
5243
|
+
contents.a("xmlns", "http://cloudfront.amazonaws.com/doc/2020-05-31/");
|
|
5244
|
+
body += contents.toString();
|
|
5245
|
+
}
|
|
5246
|
+
b.m("PUT").h(headers).b(body);
|
|
5247
|
+
return b.build();
|
|
5248
|
+
}, "se_UpdateVpcOriginCommand");
|
|
5063
5249
|
var de_AssociateAliasCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5064
5250
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5065
5251
|
return de_CommandError(output, context);
|
|
@@ -5083,6 +5269,18 @@ var de_CopyDistributionCommand = /* @__PURE__ */ __name(async (output, context)
|
|
|
5083
5269
|
contents.Distribution = de_Distribution(data, context);
|
|
5084
5270
|
return contents;
|
|
5085
5271
|
}, "de_CopyDistributionCommand");
|
|
5272
|
+
var de_CreateAnycastIpListCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5273
|
+
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
5274
|
+
return de_CommandError(output, context);
|
|
5275
|
+
}
|
|
5276
|
+
const contents = (0, import_smithy_client.map)({
|
|
5277
|
+
$metadata: deserializeMetadata(output),
|
|
5278
|
+
[_ET]: [, output.headers[_e]]
|
|
5279
|
+
});
|
|
5280
|
+
const data = (0, import_smithy_client.expectObject)(await (0, import_core2.parseXmlBody)(output.body, context));
|
|
5281
|
+
contents.AnycastIpList = de_AnycastIpList(data, context);
|
|
5282
|
+
return contents;
|
|
5283
|
+
}, "de_CreateAnycastIpListCommand");
|
|
5086
5284
|
var de_CreateCachePolicyCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5087
5285
|
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
5088
5286
|
return de_CommandError(output, context);
|
|
@@ -5313,9 +5511,22 @@ var de_CreateStreamingDistributionCommand = /* @__PURE__ */ __name(async (output
|
|
|
5313
5511
|
const data = (0, import_smithy_client.expectObject)(await (0, import_core2.parseXmlBody)(output.body, context));
|
|
5314
5512
|
contents.StreamingDistribution = de_StreamingDistribution(data, context);
|
|
5315
5513
|
return contents;
|
|
5316
|
-
}, "de_CreateStreamingDistributionCommand");
|
|
5317
|
-
var de_CreateStreamingDistributionWithTagsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5318
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
5514
|
+
}, "de_CreateStreamingDistributionCommand");
|
|
5515
|
+
var de_CreateStreamingDistributionWithTagsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5516
|
+
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
5517
|
+
return de_CommandError(output, context);
|
|
5518
|
+
}
|
|
5519
|
+
const contents = (0, import_smithy_client.map)({
|
|
5520
|
+
$metadata: deserializeMetadata(output),
|
|
5521
|
+
[_L]: [, output.headers[_lo]],
|
|
5522
|
+
[_ET]: [, output.headers[_e]]
|
|
5523
|
+
});
|
|
5524
|
+
const data = (0, import_smithy_client.expectObject)(await (0, import_core2.parseXmlBody)(output.body, context));
|
|
5525
|
+
contents.StreamingDistribution = de_StreamingDistribution(data, context);
|
|
5526
|
+
return contents;
|
|
5527
|
+
}, "de_CreateStreamingDistributionWithTagsCommand");
|
|
5528
|
+
var de_CreateVpcOriginCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5529
|
+
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
5319
5530
|
return de_CommandError(output, context);
|
|
5320
5531
|
}
|
|
5321
5532
|
const contents = (0, import_smithy_client.map)({
|
|
@@ -5324,9 +5535,19 @@ var de_CreateStreamingDistributionWithTagsCommand = /* @__PURE__ */ __name(async
|
|
|
5324
5535
|
[_ET]: [, output.headers[_e]]
|
|
5325
5536
|
});
|
|
5326
5537
|
const data = (0, import_smithy_client.expectObject)(await (0, import_core2.parseXmlBody)(output.body, context));
|
|
5327
|
-
contents.
|
|
5538
|
+
contents.VpcOrigin = de_VpcOrigin(data, context);
|
|
5328
5539
|
return contents;
|
|
5329
|
-
}, "
|
|
5540
|
+
}, "de_CreateVpcOriginCommand");
|
|
5541
|
+
var de_DeleteAnycastIpListCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5542
|
+
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
5543
|
+
return de_CommandError(output, context);
|
|
5544
|
+
}
|
|
5545
|
+
const contents = (0, import_smithy_client.map)({
|
|
5546
|
+
$metadata: deserializeMetadata(output)
|
|
5547
|
+
});
|
|
5548
|
+
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
5549
|
+
return contents;
|
|
5550
|
+
}, "de_DeleteAnycastIpListCommand");
|
|
5330
5551
|
var de_DeleteCachePolicyCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5331
5552
|
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
5332
5553
|
return de_CommandError(output, context);
|
|
@@ -5487,6 +5708,18 @@ var de_DeleteStreamingDistributionCommand = /* @__PURE__ */ __name(async (output
|
|
|
5487
5708
|
await (0, import_smithy_client.collectBody)(output.body, context);
|
|
5488
5709
|
return contents;
|
|
5489
5710
|
}, "de_DeleteStreamingDistributionCommand");
|
|
5711
|
+
var de_DeleteVpcOriginCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5712
|
+
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
5713
|
+
return de_CommandError(output, context);
|
|
5714
|
+
}
|
|
5715
|
+
const contents = (0, import_smithy_client.map)({
|
|
5716
|
+
$metadata: deserializeMetadata(output),
|
|
5717
|
+
[_ET]: [, output.headers[_e]]
|
|
5718
|
+
});
|
|
5719
|
+
const data = (0, import_smithy_client.expectObject)(await (0, import_core2.parseXmlBody)(output.body, context));
|
|
5720
|
+
contents.VpcOrigin = de_VpcOrigin(data, context);
|
|
5721
|
+
return contents;
|
|
5722
|
+
}, "de_DeleteVpcOriginCommand");
|
|
5490
5723
|
var de_DescribeFunctionCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5491
5724
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5492
5725
|
return de_CommandError(output, context);
|
|
@@ -5511,6 +5744,18 @@ var de_DescribeKeyValueStoreCommand = /* @__PURE__ */ __name(async (output, cont
|
|
|
5511
5744
|
contents.KeyValueStore = de_KeyValueStore(data, context);
|
|
5512
5745
|
return contents;
|
|
5513
5746
|
}, "de_DescribeKeyValueStoreCommand");
|
|
5747
|
+
var de_GetAnycastIpListCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5748
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5749
|
+
return de_CommandError(output, context);
|
|
5750
|
+
}
|
|
5751
|
+
const contents = (0, import_smithy_client.map)({
|
|
5752
|
+
$metadata: deserializeMetadata(output),
|
|
5753
|
+
[_ET]: [, output.headers[_e]]
|
|
5754
|
+
});
|
|
5755
|
+
const data = (0, import_smithy_client.expectObject)(await (0, import_core2.parseXmlBody)(output.body, context));
|
|
5756
|
+
contents.AnycastIpList = de_AnycastIpList(data, context);
|
|
5757
|
+
return contents;
|
|
5758
|
+
}, "de_GetAnycastIpListCommand");
|
|
5514
5759
|
var de_GetCachePolicyCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5515
5760
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5516
5761
|
return de_CommandError(output, context);
|
|
@@ -5847,6 +6092,29 @@ var de_GetStreamingDistributionConfigCommand = /* @__PURE__ */ __name(async (out
|
|
|
5847
6092
|
contents.StreamingDistributionConfig = de_StreamingDistributionConfig(data, context);
|
|
5848
6093
|
return contents;
|
|
5849
6094
|
}, "de_GetStreamingDistributionConfigCommand");
|
|
6095
|
+
var de_GetVpcOriginCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
6096
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6097
|
+
return de_CommandError(output, context);
|
|
6098
|
+
}
|
|
6099
|
+
const contents = (0, import_smithy_client.map)({
|
|
6100
|
+
$metadata: deserializeMetadata(output),
|
|
6101
|
+
[_ET]: [, output.headers[_e]]
|
|
6102
|
+
});
|
|
6103
|
+
const data = (0, import_smithy_client.expectObject)(await (0, import_core2.parseXmlBody)(output.body, context));
|
|
6104
|
+
contents.VpcOrigin = de_VpcOrigin(data, context);
|
|
6105
|
+
return contents;
|
|
6106
|
+
}, "de_GetVpcOriginCommand");
|
|
6107
|
+
var de_ListAnycastIpListsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
6108
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6109
|
+
return de_CommandError(output, context);
|
|
6110
|
+
}
|
|
6111
|
+
const contents = (0, import_smithy_client.map)({
|
|
6112
|
+
$metadata: deserializeMetadata(output)
|
|
6113
|
+
});
|
|
6114
|
+
const data = (0, import_smithy_client.expectObject)(await (0, import_core2.parseXmlBody)(output.body, context));
|
|
6115
|
+
contents.AnycastIpLists = de_AnycastIpListCollection(data, context);
|
|
6116
|
+
return contents;
|
|
6117
|
+
}, "de_ListAnycastIpListsCommand");
|
|
5850
6118
|
var de_ListCachePoliciesCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5851
6119
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5852
6120
|
return de_CommandError(output, context);
|
|
@@ -5902,6 +6170,17 @@ var de_ListDistributionsCommand = /* @__PURE__ */ __name(async (output, context)
|
|
|
5902
6170
|
contents.DistributionList = de_DistributionList(data, context);
|
|
5903
6171
|
return contents;
|
|
5904
6172
|
}, "de_ListDistributionsCommand");
|
|
6173
|
+
var de_ListDistributionsByAnycastIpListIdCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
6174
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6175
|
+
return de_CommandError(output, context);
|
|
6176
|
+
}
|
|
6177
|
+
const contents = (0, import_smithy_client.map)({
|
|
6178
|
+
$metadata: deserializeMetadata(output)
|
|
6179
|
+
});
|
|
6180
|
+
const data = (0, import_smithy_client.expectObject)(await (0, import_core2.parseXmlBody)(output.body, context));
|
|
6181
|
+
contents.DistributionList = de_DistributionList(data, context);
|
|
6182
|
+
return contents;
|
|
6183
|
+
}, "de_ListDistributionsByAnycastIpListIdCommand");
|
|
5905
6184
|
var de_ListDistributionsByCachePolicyIdCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5906
6185
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5907
6186
|
return de_CommandError(output, context);
|
|
@@ -5957,6 +6236,17 @@ var de_ListDistributionsByResponseHeadersPolicyIdCommand = /* @__PURE__ */ __nam
|
|
|
5957
6236
|
contents.DistributionIdList = de_DistributionIdList(data, context);
|
|
5958
6237
|
return contents;
|
|
5959
6238
|
}, "de_ListDistributionsByResponseHeadersPolicyIdCommand");
|
|
6239
|
+
var de_ListDistributionsByVpcOriginIdCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
6240
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6241
|
+
return de_CommandError(output, context);
|
|
6242
|
+
}
|
|
6243
|
+
const contents = (0, import_smithy_client.map)({
|
|
6244
|
+
$metadata: deserializeMetadata(output)
|
|
6245
|
+
});
|
|
6246
|
+
const data = (0, import_smithy_client.expectObject)(await (0, import_core2.parseXmlBody)(output.body, context));
|
|
6247
|
+
contents.DistributionIdList = de_DistributionIdList(data, context);
|
|
6248
|
+
return contents;
|
|
6249
|
+
}, "de_ListDistributionsByVpcOriginIdCommand");
|
|
5960
6250
|
var de_ListDistributionsByWebACLIdCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
5961
6251
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
5962
6252
|
return de_CommandError(output, context);
|
|
@@ -6111,6 +6401,17 @@ var de_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (output, contex
|
|
|
6111
6401
|
contents.Tags = de_Tags(data, context);
|
|
6112
6402
|
return contents;
|
|
6113
6403
|
}, "de_ListTagsForResourceCommand");
|
|
6404
|
+
var de_ListVpcOriginsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
6405
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6406
|
+
return de_CommandError(output, context);
|
|
6407
|
+
}
|
|
6408
|
+
const contents = (0, import_smithy_client.map)({
|
|
6409
|
+
$metadata: deserializeMetadata(output)
|
|
6410
|
+
});
|
|
6411
|
+
const data = (0, import_smithy_client.expectObject)(await (0, import_core2.parseXmlBody)(output.body, context));
|
|
6412
|
+
contents.VpcOriginList = de_VpcOriginList(data, context);
|
|
6413
|
+
return contents;
|
|
6414
|
+
}, "de_ListVpcOriginsCommand");
|
|
6114
6415
|
var de_PublishFunctionCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
6115
6416
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
6116
6417
|
return de_CommandError(output, context);
|
|
@@ -6346,6 +6647,18 @@ var de_UpdateStreamingDistributionCommand = /* @__PURE__ */ __name(async (output
|
|
|
6346
6647
|
contents.StreamingDistribution = de_StreamingDistribution(data, context);
|
|
6347
6648
|
return contents;
|
|
6348
6649
|
}, "de_UpdateStreamingDistributionCommand");
|
|
6650
|
+
var de_UpdateVpcOriginCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
6651
|
+
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
6652
|
+
return de_CommandError(output, context);
|
|
6653
|
+
}
|
|
6654
|
+
const contents = (0, import_smithy_client.map)({
|
|
6655
|
+
$metadata: deserializeMetadata(output),
|
|
6656
|
+
[_ET]: [, output.headers[_e]]
|
|
6657
|
+
});
|
|
6658
|
+
const data = (0, import_smithy_client.expectObject)(await (0, import_core2.parseXmlBody)(output.body, context));
|
|
6659
|
+
contents.VpcOrigin = de_VpcOrigin(data, context);
|
|
6660
|
+
return contents;
|
|
6661
|
+
}, "de_UpdateVpcOriginCommand");
|
|
6349
6662
|
var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
|
|
6350
6663
|
const parsedOutput = {
|
|
6351
6664
|
...output,
|
|
@@ -6548,6 +6861,18 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
6548
6861
|
case "TrustedSignerDoesNotExist":
|
|
6549
6862
|
case "com.amazonaws.cloudfront#TrustedSignerDoesNotExist":
|
|
6550
6863
|
throw await de_TrustedSignerDoesNotExistRes(parsedOutput, context);
|
|
6864
|
+
case "EntityAlreadyExists":
|
|
6865
|
+
case "com.amazonaws.cloudfront#EntityAlreadyExists":
|
|
6866
|
+
throw await de_EntityAlreadyExistsRes(parsedOutput, context);
|
|
6867
|
+
case "EntityLimitExceeded":
|
|
6868
|
+
case "com.amazonaws.cloudfront#EntityLimitExceeded":
|
|
6869
|
+
throw await de_EntityLimitExceededRes(parsedOutput, context);
|
|
6870
|
+
case "InvalidTagging":
|
|
6871
|
+
case "com.amazonaws.cloudfront#InvalidTagging":
|
|
6872
|
+
throw await de_InvalidTaggingRes(parsedOutput, context);
|
|
6873
|
+
case "UnsupportedOperation":
|
|
6874
|
+
case "com.amazonaws.cloudfront#UnsupportedOperation":
|
|
6875
|
+
throw await de_UnsupportedOperationRes(parsedOutput, context);
|
|
6551
6876
|
case "CachePolicyAlreadyExists":
|
|
6552
6877
|
case "com.amazonaws.cloudfront#CachePolicyAlreadyExists":
|
|
6553
6878
|
throw await de_CachePolicyAlreadyExistsRes(parsedOutput, context);
|
|
@@ -6581,6 +6906,9 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
6581
6906
|
case "ContinuousDeploymentPolicyInUse":
|
|
6582
6907
|
case "com.amazonaws.cloudfront#ContinuousDeploymentPolicyInUse":
|
|
6583
6908
|
throw await de_ContinuousDeploymentPolicyInUseRes(parsedOutput, context);
|
|
6909
|
+
case "EntityNotFound":
|
|
6910
|
+
case "com.amazonaws.cloudfront#EntityNotFound":
|
|
6911
|
+
throw await de_EntityNotFoundRes(parsedOutput, context);
|
|
6584
6912
|
case "IllegalOriginAccessConfiguration":
|
|
6585
6913
|
case "com.amazonaws.cloudfront#IllegalOriginAccessConfiguration":
|
|
6586
6914
|
throw await de_IllegalOriginAccessConfigurationRes(parsedOutput, context);
|
|
@@ -6590,9 +6918,6 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
6590
6918
|
case "NoSuchContinuousDeploymentPolicy":
|
|
6591
6919
|
case "com.amazonaws.cloudfront#NoSuchContinuousDeploymentPolicy":
|
|
6592
6920
|
throw await de_NoSuchContinuousDeploymentPolicyRes(parsedOutput, context);
|
|
6593
|
-
case "InvalidTagging":
|
|
6594
|
-
case "com.amazonaws.cloudfront#InvalidTagging":
|
|
6595
|
-
throw await de_InvalidTaggingRes(parsedOutput, context);
|
|
6596
6921
|
case "FieldLevelEncryptionConfigAlreadyExists":
|
|
6597
6922
|
case "com.amazonaws.cloudfront#FieldLevelEncryptionConfigAlreadyExists":
|
|
6598
6923
|
throw await de_FieldLevelEncryptionConfigAlreadyExistsRes(parsedOutput, context);
|
|
@@ -6638,9 +6963,6 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
6638
6963
|
case "TooManyFunctions":
|
|
6639
6964
|
case "com.amazonaws.cloudfront#TooManyFunctions":
|
|
6640
6965
|
throw await de_TooManyFunctionsRes(parsedOutput, context);
|
|
6641
|
-
case "UnsupportedOperation":
|
|
6642
|
-
case "com.amazonaws.cloudfront#UnsupportedOperation":
|
|
6643
|
-
throw await de_UnsupportedOperationRes(parsedOutput, context);
|
|
6644
6966
|
case "BatchTooLarge":
|
|
6645
6967
|
case "com.amazonaws.cloudfront#BatchTooLarge":
|
|
6646
6968
|
throw await de_BatchTooLargeRes(parsedOutput, context);
|
|
@@ -6656,12 +6978,6 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
6656
6978
|
case "TooManyPublicKeysInKeyGroup":
|
|
6657
6979
|
case "com.amazonaws.cloudfront#TooManyPublicKeysInKeyGroup":
|
|
6658
6980
|
throw await de_TooManyPublicKeysInKeyGroupRes(parsedOutput, context);
|
|
6659
|
-
case "EntityAlreadyExists":
|
|
6660
|
-
case "com.amazonaws.cloudfront#EntityAlreadyExists":
|
|
6661
|
-
throw await de_EntityAlreadyExistsRes(parsedOutput, context);
|
|
6662
|
-
case "EntityLimitExceeded":
|
|
6663
|
-
case "com.amazonaws.cloudfront#EntityLimitExceeded":
|
|
6664
|
-
throw await de_EntityLimitExceededRes(parsedOutput, context);
|
|
6665
6981
|
case "EntitySizeLimitExceeded":
|
|
6666
6982
|
case "com.amazonaws.cloudfront#EntitySizeLimitExceeded":
|
|
6667
6983
|
throw await de_EntitySizeLimitExceededRes(parsedOutput, context);
|
|
@@ -6725,12 +7041,15 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
6725
7041
|
case "TooManyStreamingDistributions":
|
|
6726
7042
|
case "com.amazonaws.cloudfront#TooManyStreamingDistributions":
|
|
6727
7043
|
throw await de_TooManyStreamingDistributionsRes(parsedOutput, context);
|
|
6728
|
-
case "
|
|
6729
|
-
case "com.amazonaws.cloudfront#
|
|
6730
|
-
throw await
|
|
7044
|
+
case "CannotDeleteEntityWhileInUse":
|
|
7045
|
+
case "com.amazonaws.cloudfront#CannotDeleteEntityWhileInUse":
|
|
7046
|
+
throw await de_CannotDeleteEntityWhileInUseRes(parsedOutput, context);
|
|
6731
7047
|
case "IllegalDelete":
|
|
6732
7048
|
case "com.amazonaws.cloudfront#IllegalDelete":
|
|
6733
7049
|
throw await de_IllegalDeleteRes(parsedOutput, context);
|
|
7050
|
+
case "CachePolicyInUse":
|
|
7051
|
+
case "com.amazonaws.cloudfront#CachePolicyInUse":
|
|
7052
|
+
throw await de_CachePolicyInUseRes(parsedOutput, context);
|
|
6734
7053
|
case "CloudFrontOriginAccessIdentityInUse":
|
|
6735
7054
|
case "com.amazonaws.cloudfront#CloudFrontOriginAccessIdentityInUse":
|
|
6736
7055
|
throw await de_CloudFrontOriginAccessIdentityInUseRes(parsedOutput, context);
|
|
@@ -6758,12 +7077,6 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
6758
7077
|
case "ResourceInUse":
|
|
6759
7078
|
case "com.amazonaws.cloudfront#ResourceInUse":
|
|
6760
7079
|
throw await de_ResourceInUseRes(parsedOutput, context);
|
|
6761
|
-
case "CannotDeleteEntityWhileInUse":
|
|
6762
|
-
case "com.amazonaws.cloudfront#CannotDeleteEntityWhileInUse":
|
|
6763
|
-
throw await de_CannotDeleteEntityWhileInUseRes(parsedOutput, context);
|
|
6764
|
-
case "EntityNotFound":
|
|
6765
|
-
case "com.amazonaws.cloudfront#EntityNotFound":
|
|
6766
|
-
throw await de_EntityNotFoundRes(parsedOutput, context);
|
|
6767
7080
|
case "NoSuchMonitoringSubscription":
|
|
6768
7081
|
case "com.amazonaws.cloudfront#NoSuchMonitoringSubscription":
|
|
6769
7082
|
throw await de_NoSuchMonitoringSubscriptionRes(parsedOutput, context);
|
|
@@ -6800,6 +7113,9 @@ var de_CommandError = /* @__PURE__ */ __name(async (output, context) => {
|
|
|
6800
7113
|
case "CannotChangeImmutablePublicKeyFields":
|
|
6801
7114
|
case "com.amazonaws.cloudfront#CannotChangeImmutablePublicKeyFields":
|
|
6802
7115
|
throw await de_CannotChangeImmutablePublicKeyFieldsRes(parsedOutput, context);
|
|
7116
|
+
case "CannotUpdateEntityWhileInUse":
|
|
7117
|
+
case "com.amazonaws.cloudfront#CannotUpdateEntityWhileInUse":
|
|
7118
|
+
throw await de_CannotUpdateEntityWhileInUseRes(parsedOutput, context);
|
|
6803
7119
|
default:
|
|
6804
7120
|
const parsedBody = parsedOutput.body;
|
|
6805
7121
|
return throwDefaultError({
|
|
@@ -6882,6 +7198,18 @@ var de_CannotDeleteEntityWhileInUseRes = /* @__PURE__ */ __name(async (parsedOut
|
|
|
6882
7198
|
});
|
|
6883
7199
|
return (0, import_smithy_client.decorateServiceException)(exception, parsedOutput.body.Error);
|
|
6884
7200
|
}, "de_CannotDeleteEntityWhileInUseRes");
|
|
7201
|
+
var de_CannotUpdateEntityWhileInUseRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
7202
|
+
const contents = (0, import_smithy_client.map)({});
|
|
7203
|
+
const data = parsedOutput.body.Error;
|
|
7204
|
+
if (data[_Me] != null) {
|
|
7205
|
+
contents[_Me] = (0, import_smithy_client.expectString)(data[_Me]);
|
|
7206
|
+
}
|
|
7207
|
+
const exception = new CannotUpdateEntityWhileInUse({
|
|
7208
|
+
$metadata: deserializeMetadata(parsedOutput),
|
|
7209
|
+
...contents
|
|
7210
|
+
});
|
|
7211
|
+
return (0, import_smithy_client.decorateServiceException)(exception, parsedOutput.body.Error);
|
|
7212
|
+
}, "de_CannotUpdateEntityWhileInUseRes");
|
|
6885
7213
|
var de_CloudFrontOriginAccessIdentityAlreadyExistsRes = /* @__PURE__ */ __name(async (parsedOutput, context) => {
|
|
6886
7214
|
const contents = (0, import_smithy_client.map)({});
|
|
6887
7215
|
const data = parsedOutput.body.Error;
|
|
@@ -8698,6 +9026,9 @@ var se_CacheBehavior = /* @__PURE__ */ __name((input, context) => {
|
|
|
8698
9026
|
if (input[_RHPI] != null) {
|
|
8699
9027
|
bn.c(import_xml_builder.XmlNode.of(_st, input[_RHPI]).n(_RHPI));
|
|
8700
9028
|
}
|
|
9029
|
+
if (input[_GC] != null) {
|
|
9030
|
+
bn.c(se_GrpcConfig(input[_GC], context).n(_GC));
|
|
9031
|
+
}
|
|
8701
9032
|
if (input[_FV] != null) {
|
|
8702
9033
|
bn.c(se_ForwardedValues(input[_FV], context).n(_FV));
|
|
8703
9034
|
}
|
|
@@ -8988,6 +9319,9 @@ var se_DefaultCacheBehavior = /* @__PURE__ */ __name((input, context) => {
|
|
|
8988
9319
|
if (input[_RHPI] != null) {
|
|
8989
9320
|
bn.c(import_xml_builder.XmlNode.of(_st, input[_RHPI]).n(_RHPI));
|
|
8990
9321
|
}
|
|
9322
|
+
if (input[_GC] != null) {
|
|
9323
|
+
bn.c(se_GrpcConfig(input[_GC], context).n(_GC));
|
|
9324
|
+
}
|
|
8991
9325
|
if (input[_FV] != null) {
|
|
8992
9326
|
bn.c(se_ForwardedValues(input[_FV], context).n(_FV));
|
|
8993
9327
|
}
|
|
@@ -9057,6 +9391,9 @@ var se_DistributionConfig = /* @__PURE__ */ __name((input, context) => {
|
|
|
9057
9391
|
if (input[_S] != null) {
|
|
9058
9392
|
bn.c(import_xml_builder.XmlNode.of(_b, String(input[_S])).n(_S));
|
|
9059
9393
|
}
|
|
9394
|
+
if (input[_AILI] != null) {
|
|
9395
|
+
bn.c(import_xml_builder.XmlNode.of(_st, input[_AILI]).n(_AILI));
|
|
9396
|
+
}
|
|
9060
9397
|
return bn;
|
|
9061
9398
|
}, "se_DistributionConfig");
|
|
9062
9399
|
var se_DistributionConfigWithTags = /* @__PURE__ */ __name((input, context) => {
|
|
@@ -9064,8 +9401,8 @@ var se_DistributionConfigWithTags = /* @__PURE__ */ __name((input, context) => {
|
|
|
9064
9401
|
if (input[_DC] != null) {
|
|
9065
9402
|
bn.c(se_DistributionConfig(input[_DC], context).n(_DC));
|
|
9066
9403
|
}
|
|
9067
|
-
if (input[
|
|
9068
|
-
bn.c(se_Tags(input[
|
|
9404
|
+
if (input[_T] != null) {
|
|
9405
|
+
bn.c(se_Tags(input[_T], context).n(_T));
|
|
9069
9406
|
}
|
|
9070
9407
|
return bn;
|
|
9071
9408
|
}, "se_DistributionConfigWithTags");
|
|
@@ -9224,6 +9561,13 @@ var se_GeoRestriction = /* @__PURE__ */ __name((input, context) => {
|
|
|
9224
9561
|
bn.lc(input, "Items", "Items", () => se_LocationList(input[_I], context));
|
|
9225
9562
|
return bn;
|
|
9226
9563
|
}, "se_GeoRestriction");
|
|
9564
|
+
var se_GrpcConfig = /* @__PURE__ */ __name((input, context) => {
|
|
9565
|
+
const bn = new import_xml_builder.XmlNode(_GC);
|
|
9566
|
+
if (input[_E] != null) {
|
|
9567
|
+
bn.c(import_xml_builder.XmlNode.of(_b, String(input[_E])).n(_E));
|
|
9568
|
+
}
|
|
9569
|
+
return bn;
|
|
9570
|
+
}, "se_GrpcConfig");
|
|
9227
9571
|
var se_HeaderList = /* @__PURE__ */ __name((input, context) => {
|
|
9228
9572
|
return input.filter((e) => e != null).map((entry) => {
|
|
9229
9573
|
const n = import_xml_builder.XmlNode.of(_st, entry);
|
|
@@ -9332,8 +9676,8 @@ var se_LoggingConfig = /* @__PURE__ */ __name((input, context) => {
|
|
|
9332
9676
|
if (input[_E] != null) {
|
|
9333
9677
|
bn.c(import_xml_builder.XmlNode.of(_b, String(input[_E])).n(_E));
|
|
9334
9678
|
}
|
|
9335
|
-
if (input[
|
|
9336
|
-
bn.c(import_xml_builder.XmlNode.of(_b, String(input[
|
|
9679
|
+
if (input[_ICn] != null) {
|
|
9680
|
+
bn.c(import_xml_builder.XmlNode.of(_b, String(input[_ICn])).n(_ICn));
|
|
9337
9681
|
}
|
|
9338
9682
|
if (input[_B] != null) {
|
|
9339
9683
|
bn.c(import_xml_builder.XmlNode.of(_st, input[_B]).n(_B));
|
|
@@ -9376,6 +9720,9 @@ var se_Origin = /* @__PURE__ */ __name((input, context) => {
|
|
|
9376
9720
|
if (input[_COC] != null) {
|
|
9377
9721
|
bn.c(se_CustomOriginConfig(input[_COC], context).n(_COC));
|
|
9378
9722
|
}
|
|
9723
|
+
if (input[_VOC] != null) {
|
|
9724
|
+
bn.c(se_VpcOriginConfig(input[_VOC], context).n(_VOC));
|
|
9725
|
+
}
|
|
9379
9726
|
if (input[_CA] != null) {
|
|
9380
9727
|
bn.c(import_xml_builder.XmlNode.of(_i, String(input[_CA])).n(_CA));
|
|
9381
9728
|
}
|
|
@@ -10011,8 +10358,8 @@ var se_StreamingDistributionConfigWithTags = /* @__PURE__ */ __name((input, cont
|
|
|
10011
10358
|
if (input[_SDC] != null) {
|
|
10012
10359
|
bn.c(se_StreamingDistributionConfig(input[_SDC], context).n(_SDC));
|
|
10013
10360
|
}
|
|
10014
|
-
if (input[
|
|
10015
|
-
bn.c(se_Tags(input[
|
|
10361
|
+
if (input[_T] != null) {
|
|
10362
|
+
bn.c(se_Tags(input[_T], context).n(_T));
|
|
10016
10363
|
}
|
|
10017
10364
|
return bn;
|
|
10018
10365
|
}, "se_StreamingDistributionConfigWithTags");
|
|
@@ -10030,7 +10377,7 @@ var se_StreamingLoggingConfig = /* @__PURE__ */ __name((input, context) => {
|
|
|
10030
10377
|
return bn;
|
|
10031
10378
|
}, "se_StreamingLoggingConfig");
|
|
10032
10379
|
var se_Tag = /* @__PURE__ */ __name((input, context) => {
|
|
10033
|
-
const bn = new import_xml_builder.XmlNode(
|
|
10380
|
+
const bn = new import_xml_builder.XmlNode(_Ta);
|
|
10034
10381
|
if (input[_K] != null) {
|
|
10035
10382
|
bn.c(import_xml_builder.XmlNode.of(_TK, input[_K]).n(_K));
|
|
10036
10383
|
}
|
|
@@ -10053,11 +10400,11 @@ var se_TagKeys = /* @__PURE__ */ __name((input, context) => {
|
|
|
10053
10400
|
var se_TagList = /* @__PURE__ */ __name((input, context) => {
|
|
10054
10401
|
return input.filter((e) => e != null).map((entry) => {
|
|
10055
10402
|
const n = se_Tag(entry, context);
|
|
10056
|
-
return n.n(
|
|
10403
|
+
return n.n(_Ta);
|
|
10057
10404
|
});
|
|
10058
10405
|
}, "se_TagList");
|
|
10059
10406
|
var se_Tags = /* @__PURE__ */ __name((input, context) => {
|
|
10060
|
-
const bn = new import_xml_builder.XmlNode(
|
|
10407
|
+
const bn = new import_xml_builder.XmlNode(_T);
|
|
10061
10408
|
bn.lc(input, "Items", "Items", () => se_TagList(input[_I], context));
|
|
10062
10409
|
return bn;
|
|
10063
10410
|
}, "se_Tags");
|
|
@@ -10069,8 +10416,8 @@ var se_TrafficConfig = /* @__PURE__ */ __name((input, context) => {
|
|
|
10069
10416
|
if (input[_SHCi] != null) {
|
|
10070
10417
|
bn.c(se_ContinuousDeploymentSingleHeaderConfig(input[_SHCi], context).n(_SHCi));
|
|
10071
10418
|
}
|
|
10072
|
-
if (input[
|
|
10073
|
-
bn.c(import_xml_builder.XmlNode.of(_CDPT, input[
|
|
10419
|
+
if (input[_Ty] != null) {
|
|
10420
|
+
bn.c(import_xml_builder.XmlNode.of(_CDPT, input[_Ty]).n(_Ty));
|
|
10074
10421
|
}
|
|
10075
10422
|
return bn;
|
|
10076
10423
|
}, "se_TrafficConfig");
|
|
@@ -10121,6 +10468,33 @@ var se_ViewerCertificate = /* @__PURE__ */ __name((input, context) => {
|
|
|
10121
10468
|
bn.cc(input, _CS);
|
|
10122
10469
|
return bn;
|
|
10123
10470
|
}, "se_ViewerCertificate");
|
|
10471
|
+
var se_VpcOriginConfig = /* @__PURE__ */ __name((input, context) => {
|
|
10472
|
+
const bn = new import_xml_builder.XmlNode(_VOC);
|
|
10473
|
+
if (input[_VOI] != null) {
|
|
10474
|
+
bn.c(import_xml_builder.XmlNode.of(_st, input[_VOI]).n(_VOI));
|
|
10475
|
+
}
|
|
10476
|
+
return bn;
|
|
10477
|
+
}, "se_VpcOriginConfig");
|
|
10478
|
+
var se_VpcOriginEndpointConfig = /* @__PURE__ */ __name((input, context) => {
|
|
10479
|
+
const bn = new import_xml_builder.XmlNode(_VOEC);
|
|
10480
|
+
if (input[_N] != null) {
|
|
10481
|
+
bn.c(import_xml_builder.XmlNode.of(_st, input[_N]).n(_N));
|
|
10482
|
+
}
|
|
10483
|
+
if (input[_Ar] != null) {
|
|
10484
|
+
bn.c(import_xml_builder.XmlNode.of(_st, input[_Ar]).n(_Ar));
|
|
10485
|
+
}
|
|
10486
|
+
if (input[_HTTPP] != null) {
|
|
10487
|
+
bn.c(import_xml_builder.XmlNode.of(_i, String(input[_HTTPP])).n(_HTTPP));
|
|
10488
|
+
}
|
|
10489
|
+
if (input[_HTTPSP] != null) {
|
|
10490
|
+
bn.c(import_xml_builder.XmlNode.of(_i, String(input[_HTTPSP])).n(_HTTPSP));
|
|
10491
|
+
}
|
|
10492
|
+
bn.cc(input, _OPP);
|
|
10493
|
+
if (input[_OSP] != null) {
|
|
10494
|
+
bn.c(se_OriginSslProtocols(input[_OSP], context).n(_OSP));
|
|
10495
|
+
}
|
|
10496
|
+
return bn;
|
|
10497
|
+
}, "se_VpcOriginEndpointConfig");
|
|
10124
10498
|
var de_AccessControlAllowHeadersList = /* @__PURE__ */ __name((output, context) => {
|
|
10125
10499
|
return (output || []).filter((e) => e != null).map((entry) => {
|
|
10126
10500
|
return (0, import_smithy_client.expectString)(entry);
|
|
@@ -10164,60 +10538,143 @@ var de_ActiveTrustedSigners = /* @__PURE__ */ __name((output, context) => {
|
|
|
10164
10538
|
if (output[_Q] != null) {
|
|
10165
10539
|
contents[_Q] = (0, import_smithy_client.strictParseInt32)(output[_Q]);
|
|
10166
10540
|
}
|
|
10167
|
-
if (output.Items === "") {
|
|
10168
|
-
contents[_I] = [];
|
|
10169
|
-
} else if (output[_I] != null && output[_I][_Si] != null) {
|
|
10170
|
-
contents[_I] = de_SignerList((0, import_smithy_client.getArrayIfSingleItem)(output[_I][_Si]), context);
|
|
10171
|
-
}
|
|
10541
|
+
if (output.Items === "") {
|
|
10542
|
+
contents[_I] = [];
|
|
10543
|
+
} else if (output[_I] != null && output[_I][_Si] != null) {
|
|
10544
|
+
contents[_I] = de_SignerList((0, import_smithy_client.getArrayIfSingleItem)(output[_I][_Si]), context);
|
|
10545
|
+
}
|
|
10546
|
+
return contents;
|
|
10547
|
+
}, "de_ActiveTrustedSigners");
|
|
10548
|
+
var de_Aliases = /* @__PURE__ */ __name((output, context) => {
|
|
10549
|
+
const contents = {};
|
|
10550
|
+
if (output[_Q] != null) {
|
|
10551
|
+
contents[_Q] = (0, import_smithy_client.strictParseInt32)(output[_Q]);
|
|
10552
|
+
}
|
|
10553
|
+
if (output.Items === "") {
|
|
10554
|
+
contents[_I] = [];
|
|
10555
|
+
} else if (output[_I] != null && output[_I][_CNAME] != null) {
|
|
10556
|
+
contents[_I] = de_AliasList((0, import_smithy_client.getArrayIfSingleItem)(output[_I][_CNAME]), context);
|
|
10557
|
+
}
|
|
10558
|
+
return contents;
|
|
10559
|
+
}, "de_Aliases");
|
|
10560
|
+
var de_AliasICPRecordal = /* @__PURE__ */ __name((output, context) => {
|
|
10561
|
+
const contents = {};
|
|
10562
|
+
if (output[_CNAME] != null) {
|
|
10563
|
+
contents[_CNAME] = (0, import_smithy_client.expectString)(output[_CNAME]);
|
|
10564
|
+
}
|
|
10565
|
+
if (output[_ICPRS] != null) {
|
|
10566
|
+
contents[_ICPRS] = (0, import_smithy_client.expectString)(output[_ICPRS]);
|
|
10567
|
+
}
|
|
10568
|
+
return contents;
|
|
10569
|
+
}, "de_AliasICPRecordal");
|
|
10570
|
+
var de_AliasICPRecordals = /* @__PURE__ */ __name((output, context) => {
|
|
10571
|
+
return (output || []).filter((e) => e != null).map((entry) => {
|
|
10572
|
+
return de_AliasICPRecordal(entry, context);
|
|
10573
|
+
});
|
|
10574
|
+
}, "de_AliasICPRecordals");
|
|
10575
|
+
var de_AliasList = /* @__PURE__ */ __name((output, context) => {
|
|
10576
|
+
return (output || []).filter((e) => e != null).map((entry) => {
|
|
10577
|
+
return (0, import_smithy_client.expectString)(entry);
|
|
10578
|
+
});
|
|
10579
|
+
}, "de_AliasList");
|
|
10580
|
+
var de_AllowedMethods = /* @__PURE__ */ __name((output, context) => {
|
|
10581
|
+
const contents = {};
|
|
10582
|
+
if (output[_Q] != null) {
|
|
10583
|
+
contents[_Q] = (0, import_smithy_client.strictParseInt32)(output[_Q]);
|
|
10584
|
+
}
|
|
10585
|
+
if (output.Items === "") {
|
|
10586
|
+
contents[_I] = [];
|
|
10587
|
+
} else if (output[_I] != null && output[_I][_Met] != null) {
|
|
10588
|
+
contents[_I] = de_MethodsList((0, import_smithy_client.getArrayIfSingleItem)(output[_I][_Met]), context);
|
|
10589
|
+
}
|
|
10590
|
+
if (output[_CM] != null) {
|
|
10591
|
+
contents[_CM] = de_CachedMethods(output[_CM], context);
|
|
10592
|
+
}
|
|
10593
|
+
return contents;
|
|
10594
|
+
}, "de_AllowedMethods");
|
|
10595
|
+
var de_AnycastIpList = /* @__PURE__ */ __name((output, context) => {
|
|
10596
|
+
const contents = {};
|
|
10597
|
+
if (output[_Id] != null) {
|
|
10598
|
+
contents[_Id] = (0, import_smithy_client.expectString)(output[_Id]);
|
|
10599
|
+
}
|
|
10600
|
+
if (output[_N] != null) {
|
|
10601
|
+
contents[_N] = (0, import_smithy_client.expectString)(output[_N]);
|
|
10602
|
+
}
|
|
10603
|
+
if (output[_Sta] != null) {
|
|
10604
|
+
contents[_Sta] = (0, import_smithy_client.expectString)(output[_Sta]);
|
|
10605
|
+
}
|
|
10606
|
+
if (output[_Ar] != null) {
|
|
10607
|
+
contents[_Ar] = (0, import_smithy_client.expectString)(output[_Ar]);
|
|
10608
|
+
}
|
|
10609
|
+
if (output.AnycastIps === "") {
|
|
10610
|
+
contents[_AI] = [];
|
|
10611
|
+
} else if (output[_AI] != null && output[_AI][_AIn] != null) {
|
|
10612
|
+
contents[_AI] = de_AnycastIps((0, import_smithy_client.getArrayIfSingleItem)(output[_AI][_AIn]), context);
|
|
10613
|
+
}
|
|
10614
|
+
if (output[_IC] != null) {
|
|
10615
|
+
contents[_IC] = (0, import_smithy_client.strictParseInt32)(output[_IC]);
|
|
10616
|
+
}
|
|
10617
|
+
if (output[_LMT] != null) {
|
|
10618
|
+
contents[_LMT] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_LMT]));
|
|
10619
|
+
}
|
|
10620
|
+
return contents;
|
|
10621
|
+
}, "de_AnycastIpList");
|
|
10622
|
+
var de_AnycastIpListCollection = /* @__PURE__ */ __name((output, context) => {
|
|
10623
|
+
const contents = {};
|
|
10624
|
+
if (output.Items === "") {
|
|
10625
|
+
contents[_I] = [];
|
|
10626
|
+
} else if (output[_I] != null && output[_I][_AILS] != null) {
|
|
10627
|
+
contents[_I] = de_AnycastIpListSummaries((0, import_smithy_client.getArrayIfSingleItem)(output[_I][_AILS]), context);
|
|
10628
|
+
}
|
|
10629
|
+
if (output[_M] != null) {
|
|
10630
|
+
contents[_M] = (0, import_smithy_client.expectString)(output[_M]);
|
|
10631
|
+
}
|
|
10632
|
+
if (output[_NM] != null) {
|
|
10633
|
+
contents[_NM] = (0, import_smithy_client.expectString)(output[_NM]);
|
|
10634
|
+
}
|
|
10635
|
+
if (output[_MI] != null) {
|
|
10636
|
+
contents[_MI] = (0, import_smithy_client.strictParseInt32)(output[_MI]);
|
|
10637
|
+
}
|
|
10638
|
+
if (output[_IT] != null) {
|
|
10639
|
+
contents[_IT] = (0, import_smithy_client.parseBoolean)(output[_IT]);
|
|
10640
|
+
}
|
|
10641
|
+
if (output[_Q] != null) {
|
|
10642
|
+
contents[_Q] = (0, import_smithy_client.strictParseInt32)(output[_Q]);
|
|
10643
|
+
}
|
|
10172
10644
|
return contents;
|
|
10173
|
-
}, "
|
|
10174
|
-
var
|
|
10645
|
+
}, "de_AnycastIpListCollection");
|
|
10646
|
+
var de_AnycastIpListSummaries = /* @__PURE__ */ __name((output, context) => {
|
|
10647
|
+
return (output || []).filter((e) => e != null).map((entry) => {
|
|
10648
|
+
return de_AnycastIpListSummary(entry, context);
|
|
10649
|
+
});
|
|
10650
|
+
}, "de_AnycastIpListSummaries");
|
|
10651
|
+
var de_AnycastIpListSummary = /* @__PURE__ */ __name((output, context) => {
|
|
10175
10652
|
const contents = {};
|
|
10176
|
-
if (output[
|
|
10177
|
-
contents[
|
|
10653
|
+
if (output[_Id] != null) {
|
|
10654
|
+
contents[_Id] = (0, import_smithy_client.expectString)(output[_Id]);
|
|
10178
10655
|
}
|
|
10179
|
-
if (output
|
|
10180
|
-
contents[
|
|
10181
|
-
} else if (output[_I] != null && output[_I][_CNAME] != null) {
|
|
10182
|
-
contents[_I] = de_AliasList((0, import_smithy_client.getArrayIfSingleItem)(output[_I][_CNAME]), context);
|
|
10656
|
+
if (output[_N] != null) {
|
|
10657
|
+
contents[_N] = (0, import_smithy_client.expectString)(output[_N]);
|
|
10183
10658
|
}
|
|
10184
|
-
|
|
10185
|
-
|
|
10186
|
-
var de_AliasICPRecordal = /* @__PURE__ */ __name((output, context) => {
|
|
10187
|
-
const contents = {};
|
|
10188
|
-
if (output[_CNAME] != null) {
|
|
10189
|
-
contents[_CNAME] = (0, import_smithy_client.expectString)(output[_CNAME]);
|
|
10659
|
+
if (output[_Sta] != null) {
|
|
10660
|
+
contents[_Sta] = (0, import_smithy_client.expectString)(output[_Sta]);
|
|
10190
10661
|
}
|
|
10191
|
-
if (output[
|
|
10192
|
-
contents[
|
|
10662
|
+
if (output[_Ar] != null) {
|
|
10663
|
+
contents[_Ar] = (0, import_smithy_client.expectString)(output[_Ar]);
|
|
10664
|
+
}
|
|
10665
|
+
if (output[_IC] != null) {
|
|
10666
|
+
contents[_IC] = (0, import_smithy_client.strictParseInt32)(output[_IC]);
|
|
10667
|
+
}
|
|
10668
|
+
if (output[_LMT] != null) {
|
|
10669
|
+
contents[_LMT] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_LMT]));
|
|
10193
10670
|
}
|
|
10194
10671
|
return contents;
|
|
10195
|
-
}, "
|
|
10196
|
-
var
|
|
10197
|
-
return (output || []).filter((e) => e != null).map((entry) => {
|
|
10198
|
-
return de_AliasICPRecordal(entry, context);
|
|
10199
|
-
});
|
|
10200
|
-
}, "de_AliasICPRecordals");
|
|
10201
|
-
var de_AliasList = /* @__PURE__ */ __name((output, context) => {
|
|
10672
|
+
}, "de_AnycastIpListSummary");
|
|
10673
|
+
var de_AnycastIps = /* @__PURE__ */ __name((output, context) => {
|
|
10202
10674
|
return (output || []).filter((e) => e != null).map((entry) => {
|
|
10203
10675
|
return (0, import_smithy_client.expectString)(entry);
|
|
10204
10676
|
});
|
|
10205
|
-
}, "
|
|
10206
|
-
var de_AllowedMethods = /* @__PURE__ */ __name((output, context) => {
|
|
10207
|
-
const contents = {};
|
|
10208
|
-
if (output[_Q] != null) {
|
|
10209
|
-
contents[_Q] = (0, import_smithy_client.strictParseInt32)(output[_Q]);
|
|
10210
|
-
}
|
|
10211
|
-
if (output.Items === "") {
|
|
10212
|
-
contents[_I] = [];
|
|
10213
|
-
} else if (output[_I] != null && output[_I][_Met] != null) {
|
|
10214
|
-
contents[_I] = de_MethodsList((0, import_smithy_client.getArrayIfSingleItem)(output[_I][_Met]), context);
|
|
10215
|
-
}
|
|
10216
|
-
if (output[_CM] != null) {
|
|
10217
|
-
contents[_CM] = de_CachedMethods(output[_CM], context);
|
|
10218
|
-
}
|
|
10219
|
-
return contents;
|
|
10220
|
-
}, "de_AllowedMethods");
|
|
10677
|
+
}, "de_AnycastIps");
|
|
10221
10678
|
var de_AwsAccountNumberList = /* @__PURE__ */ __name((output, context) => {
|
|
10222
10679
|
return (output || []).filter((e) => e != null).map((entry) => {
|
|
10223
10680
|
return (0, import_smithy_client.expectString)(entry);
|
|
@@ -10270,6 +10727,9 @@ var de_CacheBehavior = /* @__PURE__ */ __name((output, context) => {
|
|
|
10270
10727
|
if (output[_RHPI] != null) {
|
|
10271
10728
|
contents[_RHPI] = (0, import_smithy_client.expectString)(output[_RHPI]);
|
|
10272
10729
|
}
|
|
10730
|
+
if (output[_GC] != null) {
|
|
10731
|
+
contents[_GC] = de_GrpcConfig(output[_GC], context);
|
|
10732
|
+
}
|
|
10273
10733
|
if (output[_FV] != null) {
|
|
10274
10734
|
contents[_FV] = de_ForwardedValues(output[_FV], context);
|
|
10275
10735
|
}
|
|
@@ -10398,8 +10858,8 @@ var de_CachePolicyQueryStringsConfig = /* @__PURE__ */ __name((output, context)
|
|
|
10398
10858
|
}, "de_CachePolicyQueryStringsConfig");
|
|
10399
10859
|
var de_CachePolicySummary = /* @__PURE__ */ __name((output, context) => {
|
|
10400
10860
|
const contents = {};
|
|
10401
|
-
if (output[
|
|
10402
|
-
contents[
|
|
10861
|
+
if (output[_Ty] != null) {
|
|
10862
|
+
contents[_Ty] = (0, import_smithy_client.expectString)(output[_Ty]);
|
|
10403
10863
|
}
|
|
10404
10864
|
if (output[_CPa] != null) {
|
|
10405
10865
|
contents[_CPa] = de_CachePolicy(output[_CPa], context);
|
|
@@ -10484,8 +10944,8 @@ var de_ConflictingAlias = /* @__PURE__ */ __name((output, context) => {
|
|
|
10484
10944
|
if (output[_DI] != null) {
|
|
10485
10945
|
contents[_DI] = (0, import_smithy_client.expectString)(output[_DI]);
|
|
10486
10946
|
}
|
|
10487
|
-
if (output[
|
|
10488
|
-
contents[
|
|
10947
|
+
if (output[_AIc] != null) {
|
|
10948
|
+
contents[_AIc] = (0, import_smithy_client.expectString)(output[_AIc]);
|
|
10489
10949
|
}
|
|
10490
10950
|
return contents;
|
|
10491
10951
|
}, "de_ConflictingAlias");
|
|
@@ -10766,6 +11226,9 @@ var de_DefaultCacheBehavior = /* @__PURE__ */ __name((output, context) => {
|
|
|
10766
11226
|
if (output[_RHPI] != null) {
|
|
10767
11227
|
contents[_RHPI] = (0, import_smithy_client.expectString)(output[_RHPI]);
|
|
10768
11228
|
}
|
|
11229
|
+
if (output[_GC] != null) {
|
|
11230
|
+
contents[_GC] = de_GrpcConfig(output[_GC], context);
|
|
11231
|
+
}
|
|
10769
11232
|
if (output[_FV] != null) {
|
|
10770
11233
|
contents[_FV] = de_ForwardedValues(output[_FV], context);
|
|
10771
11234
|
}
|
|
@@ -10875,6 +11338,9 @@ var de_DistributionConfig = /* @__PURE__ */ __name((output, context) => {
|
|
|
10875
11338
|
if (output[_S] != null) {
|
|
10876
11339
|
contents[_S] = (0, import_smithy_client.parseBoolean)(output[_S]);
|
|
10877
11340
|
}
|
|
11341
|
+
if (output[_AILI] != null) {
|
|
11342
|
+
contents[_AILI] = (0, import_smithy_client.expectString)(output[_AILI]);
|
|
11343
|
+
}
|
|
10878
11344
|
return contents;
|
|
10879
11345
|
}, "de_DistributionConfig");
|
|
10880
11346
|
var de_DistributionIdList = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -10997,6 +11463,9 @@ var de_DistributionSummary = /* @__PURE__ */ __name((output, context) => {
|
|
|
10997
11463
|
if (output[_S] != null) {
|
|
10998
11464
|
contents[_S] = (0, import_smithy_client.parseBoolean)(output[_S]);
|
|
10999
11465
|
}
|
|
11466
|
+
if (output[_AILI] != null) {
|
|
11467
|
+
contents[_AILI] = (0, import_smithy_client.expectString)(output[_AILI]);
|
|
11468
|
+
}
|
|
11000
11469
|
return contents;
|
|
11001
11470
|
}, "de_DistributionSummary");
|
|
11002
11471
|
var de_DistributionSummaryList = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -11344,6 +11813,13 @@ var de_GeoRestriction = /* @__PURE__ */ __name((output, context) => {
|
|
|
11344
11813
|
}
|
|
11345
11814
|
return contents;
|
|
11346
11815
|
}, "de_GeoRestriction");
|
|
11816
|
+
var de_GrpcConfig = /* @__PURE__ */ __name((output, context) => {
|
|
11817
|
+
const contents = {};
|
|
11818
|
+
if (output[_E] != null) {
|
|
11819
|
+
contents[_E] = (0, import_smithy_client.parseBoolean)(output[_E]);
|
|
11820
|
+
}
|
|
11821
|
+
return contents;
|
|
11822
|
+
}, "de_GrpcConfig");
|
|
11347
11823
|
var de_HeaderList = /* @__PURE__ */ __name((output, context) => {
|
|
11348
11824
|
return (output || []).filter((e) => e != null).map((entry) => {
|
|
11349
11825
|
return (0, import_smithy_client.expectString)(entry);
|
|
@@ -11638,8 +12114,8 @@ var de_LoggingConfig = /* @__PURE__ */ __name((output, context) => {
|
|
|
11638
12114
|
if (output[_E] != null) {
|
|
11639
12115
|
contents[_E] = (0, import_smithy_client.parseBoolean)(output[_E]);
|
|
11640
12116
|
}
|
|
11641
|
-
if (output[
|
|
11642
|
-
contents[
|
|
12117
|
+
if (output[_ICn] != null) {
|
|
12118
|
+
contents[_ICn] = (0, import_smithy_client.parseBoolean)(output[_ICn]);
|
|
11643
12119
|
}
|
|
11644
12120
|
if (output[_B] != null) {
|
|
11645
12121
|
contents[_B] = (0, import_smithy_client.expectString)(output[_B]);
|
|
@@ -11681,6 +12157,9 @@ var de_Origin = /* @__PURE__ */ __name((output, context) => {
|
|
|
11681
12157
|
if (output[_COC] != null) {
|
|
11682
12158
|
contents[_COC] = de_CustomOriginConfig(output[_COC], context);
|
|
11683
12159
|
}
|
|
12160
|
+
if (output[_VOC] != null) {
|
|
12161
|
+
contents[_VOC] = de_VpcOriginConfig(output[_VOC], context);
|
|
12162
|
+
}
|
|
11684
12163
|
if (output[_CA] != null) {
|
|
11685
12164
|
contents[_CA] = (0, import_smithy_client.strictParseInt32)(output[_CA]);
|
|
11686
12165
|
}
|
|
@@ -11938,8 +12417,8 @@ var de_OriginRequestPolicyQueryStringsConfig = /* @__PURE__ */ __name((output, c
|
|
|
11938
12417
|
}, "de_OriginRequestPolicyQueryStringsConfig");
|
|
11939
12418
|
var de_OriginRequestPolicySummary = /* @__PURE__ */ __name((output, context) => {
|
|
11940
12419
|
const contents = {};
|
|
11941
|
-
if (output[
|
|
11942
|
-
contents[
|
|
12420
|
+
if (output[_Ty] != null) {
|
|
12421
|
+
contents[_Ty] = (0, import_smithy_client.expectString)(output[_Ty]);
|
|
11943
12422
|
}
|
|
11944
12423
|
if (output[_ORP] != null) {
|
|
11945
12424
|
contents[_ORP] = de_OriginRequestPolicy(output[_ORP], context);
|
|
@@ -12494,8 +12973,8 @@ var de_ResponseHeadersPolicyStrictTransportSecurity = /* @__PURE__ */ __name((ou
|
|
|
12494
12973
|
}, "de_ResponseHeadersPolicyStrictTransportSecurity");
|
|
12495
12974
|
var de_ResponseHeadersPolicySummary = /* @__PURE__ */ __name((output, context) => {
|
|
12496
12975
|
const contents = {};
|
|
12497
|
-
if (output[
|
|
12498
|
-
contents[
|
|
12976
|
+
if (output[_Ty] != null) {
|
|
12977
|
+
contents[_Ty] = (0, import_smithy_client.expectString)(output[_Ty]);
|
|
12499
12978
|
}
|
|
12500
12979
|
if (output[_RHP] != null) {
|
|
12501
12980
|
contents[_RHP] = de_ResponseHeadersPolicy(output[_RHP], context);
|
|
@@ -12762,8 +13241,8 @@ var de_Tags = /* @__PURE__ */ __name((output, context) => {
|
|
|
12762
13241
|
const contents = {};
|
|
12763
13242
|
if (output.Items === "") {
|
|
12764
13243
|
contents[_I] = [];
|
|
12765
|
-
} else if (output[_I] != null && output[_I][
|
|
12766
|
-
contents[_I] = de_TagList((0, import_smithy_client.getArrayIfSingleItem)(output[_I][
|
|
13244
|
+
} else if (output[_I] != null && output[_I][_Ta] != null) {
|
|
13245
|
+
contents[_I] = de_TagList((0, import_smithy_client.getArrayIfSingleItem)(output[_I][_Ta]), context);
|
|
12767
13246
|
}
|
|
12768
13247
|
return contents;
|
|
12769
13248
|
}, "de_Tags");
|
|
@@ -12796,8 +13275,8 @@ var de_TrafficConfig = /* @__PURE__ */ __name((output, context) => {
|
|
|
12796
13275
|
if (output[_SHCi] != null) {
|
|
12797
13276
|
contents[_SHCi] = de_ContinuousDeploymentSingleHeaderConfig(output[_SHCi], context);
|
|
12798
13277
|
}
|
|
12799
|
-
if (output[
|
|
12800
|
-
contents[
|
|
13278
|
+
if (output[_Ty] != null) {
|
|
13279
|
+
contents[_Ty] = (0, import_smithy_client.expectString)(output[_Ty]);
|
|
12801
13280
|
}
|
|
12802
13281
|
return contents;
|
|
12803
13282
|
}, "de_TrafficConfig");
|
|
@@ -12861,6 +13340,111 @@ var de_ViewerCertificate = /* @__PURE__ */ __name((output, context) => {
|
|
|
12861
13340
|
}
|
|
12862
13341
|
return contents;
|
|
12863
13342
|
}, "de_ViewerCertificate");
|
|
13343
|
+
var de_VpcOrigin = /* @__PURE__ */ __name((output, context) => {
|
|
13344
|
+
const contents = {};
|
|
13345
|
+
if (output[_Id] != null) {
|
|
13346
|
+
contents[_Id] = (0, import_smithy_client.expectString)(output[_Id]);
|
|
13347
|
+
}
|
|
13348
|
+
if (output[_Ar] != null) {
|
|
13349
|
+
contents[_Ar] = (0, import_smithy_client.expectString)(output[_Ar]);
|
|
13350
|
+
}
|
|
13351
|
+
if (output[_Sta] != null) {
|
|
13352
|
+
contents[_Sta] = (0, import_smithy_client.expectString)(output[_Sta]);
|
|
13353
|
+
}
|
|
13354
|
+
if (output[_CTr] != null) {
|
|
13355
|
+
contents[_CTr] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_CTr]));
|
|
13356
|
+
}
|
|
13357
|
+
if (output[_LMT] != null) {
|
|
13358
|
+
contents[_LMT] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_LMT]));
|
|
13359
|
+
}
|
|
13360
|
+
if (output[_VOEC] != null) {
|
|
13361
|
+
contents[_VOEC] = de_VpcOriginEndpointConfig(output[_VOEC], context);
|
|
13362
|
+
}
|
|
13363
|
+
return contents;
|
|
13364
|
+
}, "de_VpcOrigin");
|
|
13365
|
+
var de_VpcOriginConfig = /* @__PURE__ */ __name((output, context) => {
|
|
13366
|
+
const contents = {};
|
|
13367
|
+
if (output[_VOI] != null) {
|
|
13368
|
+
contents[_VOI] = (0, import_smithy_client.expectString)(output[_VOI]);
|
|
13369
|
+
}
|
|
13370
|
+
return contents;
|
|
13371
|
+
}, "de_VpcOriginConfig");
|
|
13372
|
+
var de_VpcOriginEndpointConfig = /* @__PURE__ */ __name((output, context) => {
|
|
13373
|
+
const contents = {};
|
|
13374
|
+
if (output[_N] != null) {
|
|
13375
|
+
contents[_N] = (0, import_smithy_client.expectString)(output[_N]);
|
|
13376
|
+
}
|
|
13377
|
+
if (output[_Ar] != null) {
|
|
13378
|
+
contents[_Ar] = (0, import_smithy_client.expectString)(output[_Ar]);
|
|
13379
|
+
}
|
|
13380
|
+
if (output[_HTTPP] != null) {
|
|
13381
|
+
contents[_HTTPP] = (0, import_smithy_client.strictParseInt32)(output[_HTTPP]);
|
|
13382
|
+
}
|
|
13383
|
+
if (output[_HTTPSP] != null) {
|
|
13384
|
+
contents[_HTTPSP] = (0, import_smithy_client.strictParseInt32)(output[_HTTPSP]);
|
|
13385
|
+
}
|
|
13386
|
+
if (output[_OPP] != null) {
|
|
13387
|
+
contents[_OPP] = (0, import_smithy_client.expectString)(output[_OPP]);
|
|
13388
|
+
}
|
|
13389
|
+
if (output[_OSP] != null) {
|
|
13390
|
+
contents[_OSP] = de_OriginSslProtocols(output[_OSP], context);
|
|
13391
|
+
}
|
|
13392
|
+
return contents;
|
|
13393
|
+
}, "de_VpcOriginEndpointConfig");
|
|
13394
|
+
var de_VpcOriginList = /* @__PURE__ */ __name((output, context) => {
|
|
13395
|
+
const contents = {};
|
|
13396
|
+
if (output[_M] != null) {
|
|
13397
|
+
contents[_M] = (0, import_smithy_client.expectString)(output[_M]);
|
|
13398
|
+
}
|
|
13399
|
+
if (output[_NM] != null) {
|
|
13400
|
+
contents[_NM] = (0, import_smithy_client.expectString)(output[_NM]);
|
|
13401
|
+
}
|
|
13402
|
+
if (output[_MI] != null) {
|
|
13403
|
+
contents[_MI] = (0, import_smithy_client.strictParseInt32)(output[_MI]);
|
|
13404
|
+
}
|
|
13405
|
+
if (output[_IT] != null) {
|
|
13406
|
+
contents[_IT] = (0, import_smithy_client.parseBoolean)(output[_IT]);
|
|
13407
|
+
}
|
|
13408
|
+
if (output[_Q] != null) {
|
|
13409
|
+
contents[_Q] = (0, import_smithy_client.strictParseInt32)(output[_Q]);
|
|
13410
|
+
}
|
|
13411
|
+
if (output.Items === "") {
|
|
13412
|
+
contents[_I] = [];
|
|
13413
|
+
} else if (output[_I] != null && output[_I][_VOS] != null) {
|
|
13414
|
+
contents[_I] = de_VpcOriginSummaryList((0, import_smithy_client.getArrayIfSingleItem)(output[_I][_VOS]), context);
|
|
13415
|
+
}
|
|
13416
|
+
return contents;
|
|
13417
|
+
}, "de_VpcOriginList");
|
|
13418
|
+
var de_VpcOriginSummary = /* @__PURE__ */ __name((output, context) => {
|
|
13419
|
+
const contents = {};
|
|
13420
|
+
if (output[_Id] != null) {
|
|
13421
|
+
contents[_Id] = (0, import_smithy_client.expectString)(output[_Id]);
|
|
13422
|
+
}
|
|
13423
|
+
if (output[_N] != null) {
|
|
13424
|
+
contents[_N] = (0, import_smithy_client.expectString)(output[_N]);
|
|
13425
|
+
}
|
|
13426
|
+
if (output[_Sta] != null) {
|
|
13427
|
+
contents[_Sta] = (0, import_smithy_client.expectString)(output[_Sta]);
|
|
13428
|
+
}
|
|
13429
|
+
if (output[_CTr] != null) {
|
|
13430
|
+
contents[_CTr] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_CTr]));
|
|
13431
|
+
}
|
|
13432
|
+
if (output[_LMT] != null) {
|
|
13433
|
+
contents[_LMT] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(output[_LMT]));
|
|
13434
|
+
}
|
|
13435
|
+
if (output[_Ar] != null) {
|
|
13436
|
+
contents[_Ar] = (0, import_smithy_client.expectString)(output[_Ar]);
|
|
13437
|
+
}
|
|
13438
|
+
if (output[_OEA] != null) {
|
|
13439
|
+
contents[_OEA] = (0, import_smithy_client.expectString)(output[_OEA]);
|
|
13440
|
+
}
|
|
13441
|
+
return contents;
|
|
13442
|
+
}, "de_VpcOriginSummary");
|
|
13443
|
+
var de_VpcOriginSummaryList = /* @__PURE__ */ __name((output, context) => {
|
|
13444
|
+
return (output || []).filter((e) => e != null).map((entry) => {
|
|
13445
|
+
return de_VpcOriginSummary(entry, context);
|
|
13446
|
+
});
|
|
13447
|
+
}, "de_VpcOriginSummaryList");
|
|
12864
13448
|
var deserializeMetadata = /* @__PURE__ */ __name((output) => ({
|
|
12865
13449
|
httpStatusCode: output.statusCode,
|
|
12866
13450
|
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
@@ -12876,17 +13460,24 @@ var _ACAO = "AccessControlAllowOrigins";
|
|
|
12876
13460
|
var _ACEH = "AccessControlExposeHeaders";
|
|
12877
13461
|
var _ACMAS = "AccessControlMaxAgeSec";
|
|
12878
13462
|
var _ACMCA = "ACMCertificateArn";
|
|
12879
|
-
var _AI = "
|
|
13463
|
+
var _AI = "AnycastIps";
|
|
12880
13464
|
var _AICPR = "AliasICPRecordals";
|
|
12881
13465
|
var _AICPRl = "AliasICPRecordal";
|
|
13466
|
+
var _AILI = "AnycastIpListId";
|
|
13467
|
+
var _AILN = "AnycastIpListName";
|
|
13468
|
+
var _AILS = "AnycastIpListSummary";
|
|
13469
|
+
var _AIc = "AccountId";
|
|
13470
|
+
var _AIn = "AnycastIp";
|
|
12882
13471
|
var _AM = "AllowedMethods";
|
|
12883
13472
|
var _ARN = "ARN";
|
|
12884
13473
|
var _ATKG = "ActiveTrustedKeyGroups";
|
|
12885
13474
|
var _ATS = "ActiveTrustedSigners";
|
|
12886
13475
|
var _Al = "Aliases";
|
|
13476
|
+
var _Ar = "Arn";
|
|
12887
13477
|
var _B = "Bucket";
|
|
12888
13478
|
var _C = "Comment";
|
|
12889
13479
|
var _CA = "ConnectionAttempts";
|
|
13480
|
+
var _CAILR = "CreateAnycastIpListRequest";
|
|
12890
13481
|
var _CAo = "ConflictingAlias";
|
|
12891
13482
|
var _CB = "CacheBehavior";
|
|
12892
13483
|
var _CBa = "CacheBehaviors";
|
|
@@ -12939,6 +13530,7 @@ var _CTon = "ConnectionTimeout";
|
|
|
12939
13530
|
var _CTr = "CreatedTime";
|
|
12940
13531
|
var _CTre = "CreateTime";
|
|
12941
13532
|
var _CU = "ComputeUtilization";
|
|
13533
|
+
var _CVOR = "CreateVpcOriginRequest";
|
|
12942
13534
|
var _Ce = "Certificate";
|
|
12943
13535
|
var _Co = "Compress";
|
|
12944
13536
|
var _Coo = "Cookies";
|
|
@@ -12999,6 +13591,7 @@ var _FWQAPIU = "ForwardWhenQueryArgProfileIsUnknown";
|
|
|
12999
13591
|
var _Fi = "Field";
|
|
13000
13592
|
var _Fo = "Format";
|
|
13001
13593
|
var _For = "Forward";
|
|
13594
|
+
var _GC = "GrpcConfig";
|
|
13002
13595
|
var _GR = "GeoRestriction";
|
|
13003
13596
|
var _GRLCR = "GetRealtimeLogConfigRequest";
|
|
13004
13597
|
var _GRT = "GeoRestrictionType";
|
|
@@ -13015,8 +13608,9 @@ var _I = "Items";
|
|
|
13015
13608
|
var _IAMCI = "IAMCertificateId";
|
|
13016
13609
|
var _IB = "InvalidationBatch";
|
|
13017
13610
|
var _IBn = "IncludeBody";
|
|
13018
|
-
var _IC = "
|
|
13611
|
+
var _IC = "IpCount";
|
|
13019
13612
|
var _ICPRS = "ICPRecordalStatus";
|
|
13613
|
+
var _ICn = "IncludeCookies";
|
|
13020
13614
|
var _IIPVE = "IsIPV6Enabled";
|
|
13021
13615
|
var _IM = "IfMatch";
|
|
13022
13616
|
var _IPIB = "InProgressInvalidationBatches";
|
|
@@ -13073,6 +13667,7 @@ var _OACSB = "OriginAccessControlSigningBehaviors";
|
|
|
13073
13667
|
var _OACSP = "OriginAccessControlSigningProtocols";
|
|
13074
13668
|
var _OAI = "OriginAccessIdentity";
|
|
13075
13669
|
var _OCH = "OriginCustomHeader";
|
|
13670
|
+
var _OEA = "OriginEndpointArn";
|
|
13076
13671
|
var _OG = "OriginGroups";
|
|
13077
13672
|
var _OGFC = "OriginGroupFailoverCriteria";
|
|
13078
13673
|
var _OGM = "OriginGroupMember";
|
|
@@ -13194,7 +13789,7 @@ var _SWC = "SingleWeightConfig";
|
|
|
13194
13789
|
var _Si = "Signer";
|
|
13195
13790
|
var _St = "Stage";
|
|
13196
13791
|
var _Sta = "Status";
|
|
13197
|
-
var _T = "
|
|
13792
|
+
var _T = "Tags";
|
|
13198
13793
|
var _TC = "TrafficConfig";
|
|
13199
13794
|
var _TFR = "TestFunctionRequest";
|
|
13200
13795
|
var _TK = "TagKey";
|
|
@@ -13203,13 +13798,17 @@ var _TKa = "TagKeys";
|
|
|
13203
13798
|
var _TOI = "TargetOriginId";
|
|
13204
13799
|
var _TS = "TrustedSigners";
|
|
13205
13800
|
var _TV = "TagValue";
|
|
13206
|
-
var _Ta = "
|
|
13207
|
-
var
|
|
13801
|
+
var _Ta = "Tag";
|
|
13802
|
+
var _Ty = "Type";
|
|
13208
13803
|
var _UFR = "UpdateFunctionRequest";
|
|
13209
13804
|
var _UKVSR = "UpdateKeyValueStoreRequest";
|
|
13210
13805
|
var _URLCR = "UpdateRealtimeLogConfigRequest";
|
|
13211
13806
|
var _V = "Value";
|
|
13212
13807
|
var _VC = "ViewerCertificate";
|
|
13808
|
+
var _VOC = "VpcOriginConfig";
|
|
13809
|
+
var _VOEC = "VpcOriginEndpointConfig";
|
|
13810
|
+
var _VOI = "VpcOriginId";
|
|
13811
|
+
var _VOS = "VpcOriginSummary";
|
|
13213
13812
|
var _VPP = "ViewerProtocolPolicy";
|
|
13214
13813
|
var _W = "Weight";
|
|
13215
13814
|
var _WACLI = "WebACLId";
|
|
@@ -13256,6 +13855,20 @@ var _CopyDistributionCommand = class _CopyDistributionCommand extends import_smi
|
|
|
13256
13855
|
__name(_CopyDistributionCommand, "CopyDistributionCommand");
|
|
13257
13856
|
var CopyDistributionCommand = _CopyDistributionCommand;
|
|
13258
13857
|
|
|
13858
|
+
// src/commands/CreateAnycastIpListCommand.ts
|
|
13859
|
+
|
|
13860
|
+
|
|
13861
|
+
|
|
13862
|
+
var _CreateAnycastIpListCommand = class _CreateAnycastIpListCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
13863
|
+
return [
|
|
13864
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
13865
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
13866
|
+
];
|
|
13867
|
+
}).s("Cloudfront2020_05_31", "CreateAnycastIpList", {}).n("CloudFrontClient", "CreateAnycastIpListCommand").f(void 0, void 0).ser(se_CreateAnycastIpListCommand).de(de_CreateAnycastIpListCommand).build() {
|
|
13868
|
+
};
|
|
13869
|
+
__name(_CreateAnycastIpListCommand, "CreateAnycastIpListCommand");
|
|
13870
|
+
var CreateAnycastIpListCommand = _CreateAnycastIpListCommand;
|
|
13871
|
+
|
|
13259
13872
|
// src/commands/CreateCachePolicyCommand.ts
|
|
13260
13873
|
|
|
13261
13874
|
|
|
@@ -13522,6 +14135,34 @@ var _CreateStreamingDistributionWithTagsCommand = class _CreateStreamingDistribu
|
|
|
13522
14135
|
__name(_CreateStreamingDistributionWithTagsCommand, "CreateStreamingDistributionWithTagsCommand");
|
|
13523
14136
|
var CreateStreamingDistributionWithTagsCommand = _CreateStreamingDistributionWithTagsCommand;
|
|
13524
14137
|
|
|
14138
|
+
// src/commands/CreateVpcOriginCommand.ts
|
|
14139
|
+
|
|
14140
|
+
|
|
14141
|
+
|
|
14142
|
+
var _CreateVpcOriginCommand = class _CreateVpcOriginCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
14143
|
+
return [
|
|
14144
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
14145
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
14146
|
+
];
|
|
14147
|
+
}).s("Cloudfront2020_05_31", "CreateVpcOrigin", {}).n("CloudFrontClient", "CreateVpcOriginCommand").f(void 0, void 0).ser(se_CreateVpcOriginCommand).de(de_CreateVpcOriginCommand).build() {
|
|
14148
|
+
};
|
|
14149
|
+
__name(_CreateVpcOriginCommand, "CreateVpcOriginCommand");
|
|
14150
|
+
var CreateVpcOriginCommand = _CreateVpcOriginCommand;
|
|
14151
|
+
|
|
14152
|
+
// src/commands/DeleteAnycastIpListCommand.ts
|
|
14153
|
+
|
|
14154
|
+
|
|
14155
|
+
|
|
14156
|
+
var _DeleteAnycastIpListCommand = class _DeleteAnycastIpListCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
14157
|
+
return [
|
|
14158
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
14159
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
14160
|
+
];
|
|
14161
|
+
}).s("Cloudfront2020_05_31", "DeleteAnycastIpList", {}).n("CloudFrontClient", "DeleteAnycastIpListCommand").f(void 0, void 0).ser(se_DeleteAnycastIpListCommand).de(de_DeleteAnycastIpListCommand).build() {
|
|
14162
|
+
};
|
|
14163
|
+
__name(_DeleteAnycastIpListCommand, "DeleteAnycastIpListCommand");
|
|
14164
|
+
var DeleteAnycastIpListCommand = _DeleteAnycastIpListCommand;
|
|
14165
|
+
|
|
13525
14166
|
// src/commands/DeleteCachePolicyCommand.ts
|
|
13526
14167
|
|
|
13527
14168
|
|
|
@@ -13746,6 +14387,20 @@ var _DeleteStreamingDistributionCommand = class _DeleteStreamingDistributionComm
|
|
|
13746
14387
|
__name(_DeleteStreamingDistributionCommand, "DeleteStreamingDistributionCommand");
|
|
13747
14388
|
var DeleteStreamingDistributionCommand = _DeleteStreamingDistributionCommand;
|
|
13748
14389
|
|
|
14390
|
+
// src/commands/DeleteVpcOriginCommand.ts
|
|
14391
|
+
|
|
14392
|
+
|
|
14393
|
+
|
|
14394
|
+
var _DeleteVpcOriginCommand = class _DeleteVpcOriginCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
14395
|
+
return [
|
|
14396
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
14397
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
14398
|
+
];
|
|
14399
|
+
}).s("Cloudfront2020_05_31", "DeleteVpcOrigin", {}).n("CloudFrontClient", "DeleteVpcOriginCommand").f(void 0, void 0).ser(se_DeleteVpcOriginCommand).de(de_DeleteVpcOriginCommand).build() {
|
|
14400
|
+
};
|
|
14401
|
+
__name(_DeleteVpcOriginCommand, "DeleteVpcOriginCommand");
|
|
14402
|
+
var DeleteVpcOriginCommand = _DeleteVpcOriginCommand;
|
|
14403
|
+
|
|
13749
14404
|
// src/commands/DescribeFunctionCommand.ts
|
|
13750
14405
|
|
|
13751
14406
|
|
|
@@ -13774,6 +14429,20 @@ var _DescribeKeyValueStoreCommand = class _DescribeKeyValueStoreCommand extends
|
|
|
13774
14429
|
__name(_DescribeKeyValueStoreCommand, "DescribeKeyValueStoreCommand");
|
|
13775
14430
|
var DescribeKeyValueStoreCommand = _DescribeKeyValueStoreCommand;
|
|
13776
14431
|
|
|
14432
|
+
// src/commands/GetAnycastIpListCommand.ts
|
|
14433
|
+
|
|
14434
|
+
|
|
14435
|
+
|
|
14436
|
+
var _GetAnycastIpListCommand = class _GetAnycastIpListCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
14437
|
+
return [
|
|
14438
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
14439
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
14440
|
+
];
|
|
14441
|
+
}).s("Cloudfront2020_05_31", "GetAnycastIpList", {}).n("CloudFrontClient", "GetAnycastIpListCommand").f(void 0, void 0).ser(se_GetAnycastIpListCommand).de(de_GetAnycastIpListCommand).build() {
|
|
14442
|
+
};
|
|
14443
|
+
__name(_GetAnycastIpListCommand, "GetAnycastIpListCommand");
|
|
14444
|
+
var GetAnycastIpListCommand = _GetAnycastIpListCommand;
|
|
14445
|
+
|
|
13777
14446
|
// src/commands/GetCachePolicyCommand.ts
|
|
13778
14447
|
|
|
13779
14448
|
|
|
@@ -14166,6 +14835,34 @@ var _GetStreamingDistributionConfigCommand = class _GetStreamingDistributionConf
|
|
|
14166
14835
|
__name(_GetStreamingDistributionConfigCommand, "GetStreamingDistributionConfigCommand");
|
|
14167
14836
|
var GetStreamingDistributionConfigCommand = _GetStreamingDistributionConfigCommand;
|
|
14168
14837
|
|
|
14838
|
+
// src/commands/GetVpcOriginCommand.ts
|
|
14839
|
+
|
|
14840
|
+
|
|
14841
|
+
|
|
14842
|
+
var _GetVpcOriginCommand = class _GetVpcOriginCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
14843
|
+
return [
|
|
14844
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
14845
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
14846
|
+
];
|
|
14847
|
+
}).s("Cloudfront2020_05_31", "GetVpcOrigin", {}).n("CloudFrontClient", "GetVpcOriginCommand").f(void 0, void 0).ser(se_GetVpcOriginCommand).de(de_GetVpcOriginCommand).build() {
|
|
14848
|
+
};
|
|
14849
|
+
__name(_GetVpcOriginCommand, "GetVpcOriginCommand");
|
|
14850
|
+
var GetVpcOriginCommand = _GetVpcOriginCommand;
|
|
14851
|
+
|
|
14852
|
+
// src/commands/ListAnycastIpListsCommand.ts
|
|
14853
|
+
|
|
14854
|
+
|
|
14855
|
+
|
|
14856
|
+
var _ListAnycastIpListsCommand = class _ListAnycastIpListsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
14857
|
+
return [
|
|
14858
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
14859
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
14860
|
+
];
|
|
14861
|
+
}).s("Cloudfront2020_05_31", "ListAnycastIpLists", {}).n("CloudFrontClient", "ListAnycastIpListsCommand").f(void 0, void 0).ser(se_ListAnycastIpListsCommand).de(de_ListAnycastIpListsCommand).build() {
|
|
14862
|
+
};
|
|
14863
|
+
__name(_ListAnycastIpListsCommand, "ListAnycastIpListsCommand");
|
|
14864
|
+
var ListAnycastIpListsCommand = _ListAnycastIpListsCommand;
|
|
14865
|
+
|
|
14169
14866
|
// src/commands/ListCachePoliciesCommand.ts
|
|
14170
14867
|
|
|
14171
14868
|
|
|
@@ -14222,6 +14919,20 @@ var _ListContinuousDeploymentPoliciesCommand = class _ListContinuousDeploymentPo
|
|
|
14222
14919
|
__name(_ListContinuousDeploymentPoliciesCommand, "ListContinuousDeploymentPoliciesCommand");
|
|
14223
14920
|
var ListContinuousDeploymentPoliciesCommand = _ListContinuousDeploymentPoliciesCommand;
|
|
14224
14921
|
|
|
14922
|
+
// src/commands/ListDistributionsByAnycastIpListIdCommand.ts
|
|
14923
|
+
|
|
14924
|
+
|
|
14925
|
+
|
|
14926
|
+
var _ListDistributionsByAnycastIpListIdCommand = class _ListDistributionsByAnycastIpListIdCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
14927
|
+
return [
|
|
14928
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
14929
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
14930
|
+
];
|
|
14931
|
+
}).s("Cloudfront2020_05_31", "ListDistributionsByAnycastIpListId", {}).n("CloudFrontClient", "ListDistributionsByAnycastIpListIdCommand").f(void 0, ListDistributionsByAnycastIpListIdResultFilterSensitiveLog).ser(se_ListDistributionsByAnycastIpListIdCommand).de(de_ListDistributionsByAnycastIpListIdCommand).build() {
|
|
14932
|
+
};
|
|
14933
|
+
__name(_ListDistributionsByAnycastIpListIdCommand, "ListDistributionsByAnycastIpListIdCommand");
|
|
14934
|
+
var ListDistributionsByAnycastIpListIdCommand = _ListDistributionsByAnycastIpListIdCommand;
|
|
14935
|
+
|
|
14225
14936
|
// src/commands/ListDistributionsByCachePolicyIdCommand.ts
|
|
14226
14937
|
|
|
14227
14938
|
|
|
@@ -14292,6 +15003,20 @@ var _ListDistributionsByResponseHeadersPolicyIdCommand = class _ListDistribution
|
|
|
14292
15003
|
__name(_ListDistributionsByResponseHeadersPolicyIdCommand, "ListDistributionsByResponseHeadersPolicyIdCommand");
|
|
14293
15004
|
var ListDistributionsByResponseHeadersPolicyIdCommand = _ListDistributionsByResponseHeadersPolicyIdCommand;
|
|
14294
15005
|
|
|
15006
|
+
// src/commands/ListDistributionsByVpcOriginIdCommand.ts
|
|
15007
|
+
|
|
15008
|
+
|
|
15009
|
+
|
|
15010
|
+
var _ListDistributionsByVpcOriginIdCommand = class _ListDistributionsByVpcOriginIdCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
15011
|
+
return [
|
|
15012
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
15013
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
15014
|
+
];
|
|
15015
|
+
}).s("Cloudfront2020_05_31", "ListDistributionsByVpcOriginId", {}).n("CloudFrontClient", "ListDistributionsByVpcOriginIdCommand").f(void 0, void 0).ser(se_ListDistributionsByVpcOriginIdCommand).de(de_ListDistributionsByVpcOriginIdCommand).build() {
|
|
15016
|
+
};
|
|
15017
|
+
__name(_ListDistributionsByVpcOriginIdCommand, "ListDistributionsByVpcOriginIdCommand");
|
|
15018
|
+
var ListDistributionsByVpcOriginIdCommand = _ListDistributionsByVpcOriginIdCommand;
|
|
15019
|
+
|
|
14295
15020
|
// src/commands/ListDistributionsByWebACLIdCommand.ts
|
|
14296
15021
|
|
|
14297
15022
|
|
|
@@ -14502,6 +15227,20 @@ var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends impo
|
|
|
14502
15227
|
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
14503
15228
|
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
14504
15229
|
|
|
15230
|
+
// src/commands/ListVpcOriginsCommand.ts
|
|
15231
|
+
|
|
15232
|
+
|
|
15233
|
+
|
|
15234
|
+
var _ListVpcOriginsCommand = class _ListVpcOriginsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
15235
|
+
return [
|
|
15236
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
15237
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
15238
|
+
];
|
|
15239
|
+
}).s("Cloudfront2020_05_31", "ListVpcOrigins", {}).n("CloudFrontClient", "ListVpcOriginsCommand").f(void 0, void 0).ser(se_ListVpcOriginsCommand).de(de_ListVpcOriginsCommand).build() {
|
|
15240
|
+
};
|
|
15241
|
+
__name(_ListVpcOriginsCommand, "ListVpcOriginsCommand");
|
|
15242
|
+
var ListVpcOriginsCommand = _ListVpcOriginsCommand;
|
|
15243
|
+
|
|
14505
15244
|
// src/commands/PublishFunctionCommand.ts
|
|
14506
15245
|
|
|
14507
15246
|
|
|
@@ -14782,10 +15521,25 @@ var _UpdateStreamingDistributionCommand = class _UpdateStreamingDistributionComm
|
|
|
14782
15521
|
__name(_UpdateStreamingDistributionCommand, "UpdateStreamingDistributionCommand");
|
|
14783
15522
|
var UpdateStreamingDistributionCommand = _UpdateStreamingDistributionCommand;
|
|
14784
15523
|
|
|
15524
|
+
// src/commands/UpdateVpcOriginCommand.ts
|
|
15525
|
+
|
|
15526
|
+
|
|
15527
|
+
|
|
15528
|
+
var _UpdateVpcOriginCommand = class _UpdateVpcOriginCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
15529
|
+
return [
|
|
15530
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
15531
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
15532
|
+
];
|
|
15533
|
+
}).s("Cloudfront2020_05_31", "UpdateVpcOrigin", {}).n("CloudFrontClient", "UpdateVpcOriginCommand").f(void 0, void 0).ser(se_UpdateVpcOriginCommand).de(de_UpdateVpcOriginCommand).build() {
|
|
15534
|
+
};
|
|
15535
|
+
__name(_UpdateVpcOriginCommand, "UpdateVpcOriginCommand");
|
|
15536
|
+
var UpdateVpcOriginCommand = _UpdateVpcOriginCommand;
|
|
15537
|
+
|
|
14785
15538
|
// src/CloudFront.ts
|
|
14786
15539
|
var commands = {
|
|
14787
15540
|
AssociateAliasCommand,
|
|
14788
15541
|
CopyDistributionCommand,
|
|
15542
|
+
CreateAnycastIpListCommand,
|
|
14789
15543
|
CreateCachePolicyCommand,
|
|
14790
15544
|
CreateCloudFrontOriginAccessIdentityCommand,
|
|
14791
15545
|
CreateContinuousDeploymentPolicyCommand,
|
|
@@ -14805,6 +15559,8 @@ var commands = {
|
|
|
14805
15559
|
CreateResponseHeadersPolicyCommand,
|
|
14806
15560
|
CreateStreamingDistributionCommand,
|
|
14807
15561
|
CreateStreamingDistributionWithTagsCommand,
|
|
15562
|
+
CreateVpcOriginCommand,
|
|
15563
|
+
DeleteAnycastIpListCommand,
|
|
14808
15564
|
DeleteCachePolicyCommand,
|
|
14809
15565
|
DeleteCloudFrontOriginAccessIdentityCommand,
|
|
14810
15566
|
DeleteContinuousDeploymentPolicyCommand,
|
|
@@ -14821,8 +15577,10 @@ var commands = {
|
|
|
14821
15577
|
DeleteRealtimeLogConfigCommand,
|
|
14822
15578
|
DeleteResponseHeadersPolicyCommand,
|
|
14823
15579
|
DeleteStreamingDistributionCommand,
|
|
15580
|
+
DeleteVpcOriginCommand,
|
|
14824
15581
|
DescribeFunctionCommand,
|
|
14825
15582
|
DescribeKeyValueStoreCommand,
|
|
15583
|
+
GetAnycastIpListCommand,
|
|
14826
15584
|
GetCachePolicyCommand,
|
|
14827
15585
|
GetCachePolicyConfigCommand,
|
|
14828
15586
|
GetCloudFrontOriginAccessIdentityCommand,
|
|
@@ -14851,16 +15609,20 @@ var commands = {
|
|
|
14851
15609
|
GetResponseHeadersPolicyConfigCommand,
|
|
14852
15610
|
GetStreamingDistributionCommand,
|
|
14853
15611
|
GetStreamingDistributionConfigCommand,
|
|
15612
|
+
GetVpcOriginCommand,
|
|
15613
|
+
ListAnycastIpListsCommand,
|
|
14854
15614
|
ListCachePoliciesCommand,
|
|
14855
15615
|
ListCloudFrontOriginAccessIdentitiesCommand,
|
|
14856
15616
|
ListConflictingAliasesCommand,
|
|
14857
15617
|
ListContinuousDeploymentPoliciesCommand,
|
|
14858
15618
|
ListDistributionsCommand,
|
|
15619
|
+
ListDistributionsByAnycastIpListIdCommand,
|
|
14859
15620
|
ListDistributionsByCachePolicyIdCommand,
|
|
14860
15621
|
ListDistributionsByKeyGroupCommand,
|
|
14861
15622
|
ListDistributionsByOriginRequestPolicyIdCommand,
|
|
14862
15623
|
ListDistributionsByRealtimeLogConfigCommand,
|
|
14863
15624
|
ListDistributionsByResponseHeadersPolicyIdCommand,
|
|
15625
|
+
ListDistributionsByVpcOriginIdCommand,
|
|
14864
15626
|
ListDistributionsByWebACLIdCommand,
|
|
14865
15627
|
ListFieldLevelEncryptionConfigsCommand,
|
|
14866
15628
|
ListFieldLevelEncryptionProfilesCommand,
|
|
@@ -14875,6 +15637,7 @@ var commands = {
|
|
|
14875
15637
|
ListResponseHeadersPoliciesCommand,
|
|
14876
15638
|
ListStreamingDistributionsCommand,
|
|
14877
15639
|
ListTagsForResourceCommand,
|
|
15640
|
+
ListVpcOriginsCommand,
|
|
14878
15641
|
PublishFunctionCommand,
|
|
14879
15642
|
TagResourceCommand,
|
|
14880
15643
|
TestFunctionCommand,
|
|
@@ -14894,7 +15657,8 @@ var commands = {
|
|
|
14894
15657
|
UpdatePublicKeyCommand,
|
|
14895
15658
|
UpdateRealtimeLogConfigCommand,
|
|
14896
15659
|
UpdateResponseHeadersPolicyCommand,
|
|
14897
|
-
UpdateStreamingDistributionCommand
|
|
15660
|
+
UpdateStreamingDistributionCommand,
|
|
15661
|
+
UpdateVpcOriginCommand
|
|
14898
15662
|
};
|
|
14899
15663
|
var _CloudFront = class _CloudFront extends CloudFrontClient {
|
|
14900
15664
|
};
|
|
@@ -15034,6 +15798,7 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
|
|
|
15034
15798
|
$Command,
|
|
15035
15799
|
AssociateAliasCommand,
|
|
15036
15800
|
CopyDistributionCommand,
|
|
15801
|
+
CreateAnycastIpListCommand,
|
|
15037
15802
|
CreateCachePolicyCommand,
|
|
15038
15803
|
CreateCloudFrontOriginAccessIdentityCommand,
|
|
15039
15804
|
CreateContinuousDeploymentPolicyCommand,
|
|
@@ -15053,6 +15818,8 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
|
|
|
15053
15818
|
CreateResponseHeadersPolicyCommand,
|
|
15054
15819
|
CreateStreamingDistributionCommand,
|
|
15055
15820
|
CreateStreamingDistributionWithTagsCommand,
|
|
15821
|
+
CreateVpcOriginCommand,
|
|
15822
|
+
DeleteAnycastIpListCommand,
|
|
15056
15823
|
DeleteCachePolicyCommand,
|
|
15057
15824
|
DeleteCloudFrontOriginAccessIdentityCommand,
|
|
15058
15825
|
DeleteContinuousDeploymentPolicyCommand,
|
|
@@ -15069,8 +15836,10 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
|
|
|
15069
15836
|
DeleteRealtimeLogConfigCommand,
|
|
15070
15837
|
DeleteResponseHeadersPolicyCommand,
|
|
15071
15838
|
DeleteStreamingDistributionCommand,
|
|
15839
|
+
DeleteVpcOriginCommand,
|
|
15072
15840
|
DescribeFunctionCommand,
|
|
15073
15841
|
DescribeKeyValueStoreCommand,
|
|
15842
|
+
GetAnycastIpListCommand,
|
|
15074
15843
|
GetCachePolicyCommand,
|
|
15075
15844
|
GetCachePolicyConfigCommand,
|
|
15076
15845
|
GetCloudFrontOriginAccessIdentityCommand,
|
|
@@ -15099,15 +15868,19 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
|
|
|
15099
15868
|
GetResponseHeadersPolicyConfigCommand,
|
|
15100
15869
|
GetStreamingDistributionCommand,
|
|
15101
15870
|
GetStreamingDistributionConfigCommand,
|
|
15871
|
+
GetVpcOriginCommand,
|
|
15872
|
+
ListAnycastIpListsCommand,
|
|
15102
15873
|
ListCachePoliciesCommand,
|
|
15103
15874
|
ListCloudFrontOriginAccessIdentitiesCommand,
|
|
15104
15875
|
ListConflictingAliasesCommand,
|
|
15105
15876
|
ListContinuousDeploymentPoliciesCommand,
|
|
15877
|
+
ListDistributionsByAnycastIpListIdCommand,
|
|
15106
15878
|
ListDistributionsByCachePolicyIdCommand,
|
|
15107
15879
|
ListDistributionsByKeyGroupCommand,
|
|
15108
15880
|
ListDistributionsByOriginRequestPolicyIdCommand,
|
|
15109
15881
|
ListDistributionsByRealtimeLogConfigCommand,
|
|
15110
15882
|
ListDistributionsByResponseHeadersPolicyIdCommand,
|
|
15883
|
+
ListDistributionsByVpcOriginIdCommand,
|
|
15111
15884
|
ListDistributionsByWebACLIdCommand,
|
|
15112
15885
|
ListDistributionsCommand,
|
|
15113
15886
|
ListFieldLevelEncryptionConfigsCommand,
|
|
@@ -15123,6 +15896,7 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
|
|
|
15123
15896
|
ListResponseHeadersPoliciesCommand,
|
|
15124
15897
|
ListStreamingDistributionsCommand,
|
|
15125
15898
|
ListTagsForResourceCommand,
|
|
15899
|
+
ListVpcOriginsCommand,
|
|
15126
15900
|
PublishFunctionCommand,
|
|
15127
15901
|
TagResourceCommand,
|
|
15128
15902
|
TestFunctionCommand,
|
|
@@ -15143,6 +15917,7 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
|
|
|
15143
15917
|
UpdateRealtimeLogConfigCommand,
|
|
15144
15918
|
UpdateResponseHeadersPolicyCommand,
|
|
15145
15919
|
UpdateStreamingDistributionCommand,
|
|
15920
|
+
UpdateVpcOriginCommand,
|
|
15146
15921
|
paginateListCloudFrontOriginAccessIdentities,
|
|
15147
15922
|
paginateListDistributions,
|
|
15148
15923
|
paginateListInvalidations,
|
|
@@ -15175,6 +15950,7 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
|
|
|
15175
15950
|
CachePolicyType,
|
|
15176
15951
|
CannotChangeImmutablePublicKeyFields,
|
|
15177
15952
|
CannotDeleteEntityWhileInUse,
|
|
15953
|
+
CannotUpdateEntityWhileInUse,
|
|
15178
15954
|
CertificateSource,
|
|
15179
15955
|
CNAMEAlreadyExists,
|
|
15180
15956
|
HttpVersion,
|
|
@@ -15243,6 +16019,10 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
|
|
|
15243
16019
|
TooManyTrustedSigners,
|
|
15244
16020
|
TrustedKeyGroupDoesNotExist,
|
|
15245
16021
|
TrustedSignerDoesNotExist,
|
|
16022
|
+
EntityAlreadyExists,
|
|
16023
|
+
EntityLimitExceeded,
|
|
16024
|
+
InvalidTagging,
|
|
16025
|
+
UnsupportedOperation,
|
|
15246
16026
|
TooManyCachePolicies,
|
|
15247
16027
|
TooManyCookiesInCachePolicy,
|
|
15248
16028
|
TooManyHeadersInCachePolicy,
|
|
@@ -15254,10 +16034,10 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
|
|
|
15254
16034
|
StagingDistributionInUse,
|
|
15255
16035
|
TooManyContinuousDeploymentPolicies,
|
|
15256
16036
|
ContinuousDeploymentPolicyInUse,
|
|
16037
|
+
EntityNotFound,
|
|
15257
16038
|
IllegalOriginAccessConfiguration,
|
|
15258
16039
|
InvalidDomainNameForOriginAccessControl,
|
|
15259
16040
|
NoSuchContinuousDeploymentPolicy,
|
|
15260
|
-
InvalidTagging,
|
|
15261
16041
|
Format,
|
|
15262
16042
|
FieldLevelEncryptionConfigAlreadyExists,
|
|
15263
16043
|
NoSuchFieldLevelEncryptionProfile,
|
|
@@ -15276,14 +16056,11 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
|
|
|
15276
16056
|
FunctionAlreadyExists,
|
|
15277
16057
|
FunctionSizeLimitExceeded,
|
|
15278
16058
|
TooManyFunctions,
|
|
15279
|
-
UnsupportedOperation,
|
|
15280
16059
|
TooManyInvalidationsInProgress,
|
|
15281
16060
|
KeyGroupAlreadyExists,
|
|
15282
16061
|
TooManyKeyGroups,
|
|
15283
16062
|
TooManyPublicKeysInKeyGroup,
|
|
15284
16063
|
ImportSourceType,
|
|
15285
|
-
EntityAlreadyExists,
|
|
15286
|
-
EntityLimitExceeded,
|
|
15287
16064
|
EntitySizeLimitExceeded,
|
|
15288
16065
|
RealtimeMetricsSubscriptionStatus,
|
|
15289
16066
|
MonitoringSubscriptionAlreadyExists,
|
|
@@ -15337,7 +16114,6 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
|
|
|
15337
16114
|
NoSuchFunctionExists,
|
|
15338
16115
|
NoSuchResource,
|
|
15339
16116
|
ResourceInUse,
|
|
15340
|
-
EntityNotFound,
|
|
15341
16117
|
NoSuchMonitoringSubscription,
|
|
15342
16118
|
NoSuchOriginAccessControl,
|
|
15343
16119
|
OriginAccessControlInUse,
|
|
@@ -15357,6 +16133,7 @@ var waitUntilStreamingDistributionDeployed = /* @__PURE__ */ __name(async (param
|
|
|
15357
16133
|
DistributionSummaryFilterSensitiveLog,
|
|
15358
16134
|
DistributionListFilterSensitiveLog,
|
|
15359
16135
|
ListDistributionsResultFilterSensitiveLog,
|
|
16136
|
+
ListDistributionsByAnycastIpListIdResultFilterSensitiveLog,
|
|
15360
16137
|
ListDistributionsByRealtimeLogConfigResultFilterSensitiveLog,
|
|
15361
16138
|
ListDistributionsByWebACLIdResultFilterSensitiveLog,
|
|
15362
16139
|
TestFunctionRequestFilterSensitiveLog,
|