@aws-sdk/client-cloudfront 3.957.0 → 3.962.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 +1 -172
- package/dist-cjs/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-cjs/index.js +3183 -4962
- package/dist-cjs/runtimeConfig.browser.js +1 -2
- package/dist-cjs/runtimeConfig.js +2 -4
- package/dist-es/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-es/commands/index.js +3 -3
- package/dist-es/pagination/index.js +4 -4
- package/dist-es/runtimeConfig.browser.js +1 -2
- package/dist-es/runtimeConfig.js +4 -6
- package/dist-es/schemas/schemas_0.js +2930 -4709
- package/dist-es/waiters/waitForDistributionDeployed.js +1 -1
- package/dist-es/waiters/waitForInvalidationCompleted.js +1 -1
- package/dist-es/waiters/waitForInvalidationForDistributionTenantCompleted.js +1 -1
- package/dist-es/waiters/waitForStreamingDistributionDeployed.js +1 -1
- package/dist-types/commands/index.d.ts +3 -3
- package/dist-types/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/commands/index.d.ts +3 -3
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/package.json +2 -2
|
@@ -3,7 +3,7 @@ import { GetDistributionCommand } from "../commands/GetDistributionCommand";
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new GetDistributionCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
9
|
const returnComparator = () => {
|
|
@@ -3,7 +3,7 @@ import { GetInvalidationCommand } from "../commands/GetInvalidationCommand";
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new GetInvalidationCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
9
|
const returnComparator = () => {
|
|
@@ -3,7 +3,7 @@ import { GetInvalidationForDistributionTenantCommand, } from "../commands/GetInv
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new GetInvalidationForDistributionTenantCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
9
|
const returnComparator = () => {
|
|
@@ -3,7 +3,7 @@ import { GetStreamingDistributionCommand, } from "../commands/GetStreamingDistri
|
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
|
6
|
-
|
|
6
|
+
let result = await client.send(new GetStreamingDistributionCommand(input));
|
|
7
7
|
reason = result;
|
|
8
8
|
try {
|
|
9
9
|
const returnComparator = () => {
|
|
@@ -102,21 +102,21 @@ export * from "./ListConflictingAliasesCommand";
|
|
|
102
102
|
export * from "./ListConnectionFunctionsCommand";
|
|
103
103
|
export * from "./ListConnectionGroupsCommand";
|
|
104
104
|
export * from "./ListContinuousDeploymentPoliciesCommand";
|
|
105
|
+
export * from "./ListDistributionTenantsByCustomizationCommand";
|
|
106
|
+
export * from "./ListDistributionTenantsCommand";
|
|
105
107
|
export * from "./ListDistributionsByAnycastIpListIdCommand";
|
|
106
108
|
export * from "./ListDistributionsByCachePolicyIdCommand";
|
|
107
109
|
export * from "./ListDistributionsByConnectionFunctionCommand";
|
|
108
|
-
export * from "./ListDistributionTenantsCommand";
|
|
109
110
|
export * from "./ListDistributionsByConnectionModeCommand";
|
|
110
|
-
export * from "./ListDistributionTenantsByCustomizationCommand";
|
|
111
111
|
export * from "./ListDistributionsByKeyGroupCommand";
|
|
112
112
|
export * from "./ListDistributionsByOriginRequestPolicyIdCommand";
|
|
113
113
|
export * from "./ListDistributionsByOwnedResourceCommand";
|
|
114
114
|
export * from "./ListDistributionsByRealtimeLogConfigCommand";
|
|
115
|
-
export * from "./ListDistributionsCommand";
|
|
116
115
|
export * from "./ListDistributionsByResponseHeadersPolicyIdCommand";
|
|
117
116
|
export * from "./ListDistributionsByTrustStoreCommand";
|
|
118
117
|
export * from "./ListDistributionsByVpcOriginIdCommand";
|
|
119
118
|
export * from "./ListDistributionsByWebACLIdCommand";
|
|
119
|
+
export * from "./ListDistributionsCommand";
|
|
120
120
|
export * from "./ListDomainConflictsCommand";
|
|
121
121
|
export * from "./ListFieldLevelEncryptionConfigsCommand";
|
|
122
122
|
export * from "./ListFieldLevelEncryptionProfilesCommand";
|
|
@@ -2,15 +2,15 @@ export * from "./Interfaces";
|
|
|
2
2
|
export * from "./ListCloudFrontOriginAccessIdentitiesPaginator";
|
|
3
3
|
export * from "./ListConnectionFunctionsPaginator";
|
|
4
4
|
export * from "./ListConnectionGroupsPaginator";
|
|
5
|
-
export * from "./
|
|
6
|
-
export * from "./ListDistributionTenantsPaginator";
|
|
5
|
+
export * from "./ListDistributionsPaginator";
|
|
7
6
|
export * from "./ListDistributionsByConnectionFunctionPaginator";
|
|
8
7
|
export * from "./ListDistributionsByConnectionModePaginator";
|
|
9
8
|
export * from "./ListDistributionsByTrustStorePaginator";
|
|
10
|
-
export * from "./
|
|
9
|
+
export * from "./ListDistributionTenantsPaginator";
|
|
10
|
+
export * from "./ListDistributionTenantsByCustomizationPaginator";
|
|
11
11
|
export * from "./ListDomainConflictsPaginator";
|
|
12
|
-
export * from "./ListInvalidationsForDistributionTenantPaginator";
|
|
13
12
|
export * from "./ListInvalidationsPaginator";
|
|
13
|
+
export * from "./ListInvalidationsForDistributionTenantPaginator";
|
|
14
14
|
export * from "./ListKeyValueStoresPaginator";
|
|
15
15
|
export * from "./ListOriginAccessControlsPaginator";
|
|
16
16
|
export * from "./ListPublicKeysPaginator";
|
|
@@ -102,21 +102,21 @@ export * from "./ListConflictingAliasesCommand";
|
|
|
102
102
|
export * from "./ListConnectionFunctionsCommand";
|
|
103
103
|
export * from "./ListConnectionGroupsCommand";
|
|
104
104
|
export * from "./ListContinuousDeploymentPoliciesCommand";
|
|
105
|
+
export * from "./ListDistributionTenantsByCustomizationCommand";
|
|
106
|
+
export * from "./ListDistributionTenantsCommand";
|
|
105
107
|
export * from "./ListDistributionsByAnycastIpListIdCommand";
|
|
106
108
|
export * from "./ListDistributionsByCachePolicyIdCommand";
|
|
107
109
|
export * from "./ListDistributionsByConnectionFunctionCommand";
|
|
108
|
-
export * from "./ListDistributionTenantsCommand";
|
|
109
110
|
export * from "./ListDistributionsByConnectionModeCommand";
|
|
110
|
-
export * from "./ListDistributionTenantsByCustomizationCommand";
|
|
111
111
|
export * from "./ListDistributionsByKeyGroupCommand";
|
|
112
112
|
export * from "./ListDistributionsByOriginRequestPolicyIdCommand";
|
|
113
113
|
export * from "./ListDistributionsByOwnedResourceCommand";
|
|
114
114
|
export * from "./ListDistributionsByRealtimeLogConfigCommand";
|
|
115
|
-
export * from "./ListDistributionsCommand";
|
|
116
115
|
export * from "./ListDistributionsByResponseHeadersPolicyIdCommand";
|
|
117
116
|
export * from "./ListDistributionsByTrustStoreCommand";
|
|
118
117
|
export * from "./ListDistributionsByVpcOriginIdCommand";
|
|
119
118
|
export * from "./ListDistributionsByWebACLIdCommand";
|
|
119
|
+
export * from "./ListDistributionsCommand";
|
|
120
120
|
export * from "./ListDomainConflictsCommand";
|
|
121
121
|
export * from "./ListFieldLevelEncryptionConfigsCommand";
|
|
122
122
|
export * from "./ListFieldLevelEncryptionProfilesCommand";
|
|
@@ -2,15 +2,15 @@ export * from "./Interfaces";
|
|
|
2
2
|
export * from "./ListCloudFrontOriginAccessIdentitiesPaginator";
|
|
3
3
|
export * from "./ListConnectionFunctionsPaginator";
|
|
4
4
|
export * from "./ListConnectionGroupsPaginator";
|
|
5
|
-
export * from "./
|
|
6
|
-
export * from "./ListDistributionTenantsPaginator";
|
|
5
|
+
export * from "./ListDistributionsPaginator";
|
|
7
6
|
export * from "./ListDistributionsByConnectionFunctionPaginator";
|
|
8
7
|
export * from "./ListDistributionsByConnectionModePaginator";
|
|
9
8
|
export * from "./ListDistributionsByTrustStorePaginator";
|
|
10
|
-
export * from "./
|
|
9
|
+
export * from "./ListDistributionTenantsPaginator";
|
|
10
|
+
export * from "./ListDistributionTenantsByCustomizationPaginator";
|
|
11
11
|
export * from "./ListDomainConflictsPaginator";
|
|
12
|
-
export * from "./ListInvalidationsForDistributionTenantPaginator";
|
|
13
12
|
export * from "./ListInvalidationsPaginator";
|
|
13
|
+
export * from "./ListInvalidationsForDistributionTenantPaginator";
|
|
14
14
|
export * from "./ListKeyValueStoresPaginator";
|
|
15
15
|
export * from "./ListOriginAccessControlsPaginator";
|
|
16
16
|
export * from "./ListPublicKeysPaginator";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudfront",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudfront Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.962.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-cloudfront",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
26
|
"@aws-sdk/core": "3.957.0",
|
|
27
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
+
"@aws-sdk/credential-provider-node": "3.962.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.957.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.957.0",
|
|
30
30
|
"@aws-sdk/middleware-recursion-detection": "3.957.0",
|