@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
|
@@ -53,6 +53,10 @@ import {
|
|
|
53
53
|
CopyDistributionCommandInput,
|
|
54
54
|
CopyDistributionCommandOutput,
|
|
55
55
|
} from "./commands/CopyDistributionCommand";
|
|
56
|
+
import {
|
|
57
|
+
CreateAnycastIpListCommandInput,
|
|
58
|
+
CreateAnycastIpListCommandOutput,
|
|
59
|
+
} from "./commands/CreateAnycastIpListCommand";
|
|
56
60
|
import {
|
|
57
61
|
CreateCachePolicyCommandInput,
|
|
58
62
|
CreateCachePolicyCommandOutput,
|
|
@@ -129,6 +133,14 @@ import {
|
|
|
129
133
|
CreateStreamingDistributionWithTagsCommandInput,
|
|
130
134
|
CreateStreamingDistributionWithTagsCommandOutput,
|
|
131
135
|
} from "./commands/CreateStreamingDistributionWithTagsCommand";
|
|
136
|
+
import {
|
|
137
|
+
CreateVpcOriginCommandInput,
|
|
138
|
+
CreateVpcOriginCommandOutput,
|
|
139
|
+
} from "./commands/CreateVpcOriginCommand";
|
|
140
|
+
import {
|
|
141
|
+
DeleteAnycastIpListCommandInput,
|
|
142
|
+
DeleteAnycastIpListCommandOutput,
|
|
143
|
+
} from "./commands/DeleteAnycastIpListCommand";
|
|
132
144
|
import {
|
|
133
145
|
DeleteCachePolicyCommandInput,
|
|
134
146
|
DeleteCachePolicyCommandOutput,
|
|
@@ -193,6 +205,10 @@ import {
|
|
|
193
205
|
DeleteStreamingDistributionCommandInput,
|
|
194
206
|
DeleteStreamingDistributionCommandOutput,
|
|
195
207
|
} from "./commands/DeleteStreamingDistributionCommand";
|
|
208
|
+
import {
|
|
209
|
+
DeleteVpcOriginCommandInput,
|
|
210
|
+
DeleteVpcOriginCommandOutput,
|
|
211
|
+
} from "./commands/DeleteVpcOriginCommand";
|
|
196
212
|
import {
|
|
197
213
|
DescribeFunctionCommandInput,
|
|
198
214
|
DescribeFunctionCommandOutput,
|
|
@@ -201,6 +217,10 @@ import {
|
|
|
201
217
|
DescribeKeyValueStoreCommandInput,
|
|
202
218
|
DescribeKeyValueStoreCommandOutput,
|
|
203
219
|
} from "./commands/DescribeKeyValueStoreCommand";
|
|
220
|
+
import {
|
|
221
|
+
GetAnycastIpListCommandInput,
|
|
222
|
+
GetAnycastIpListCommandOutput,
|
|
223
|
+
} from "./commands/GetAnycastIpListCommand";
|
|
204
224
|
import {
|
|
205
225
|
GetCachePolicyCommandInput,
|
|
206
226
|
GetCachePolicyCommandOutput,
|
|
@@ -313,6 +333,14 @@ import {
|
|
|
313
333
|
GetStreamingDistributionConfigCommandInput,
|
|
314
334
|
GetStreamingDistributionConfigCommandOutput,
|
|
315
335
|
} from "./commands/GetStreamingDistributionConfigCommand";
|
|
336
|
+
import {
|
|
337
|
+
GetVpcOriginCommandInput,
|
|
338
|
+
GetVpcOriginCommandOutput,
|
|
339
|
+
} from "./commands/GetVpcOriginCommand";
|
|
340
|
+
import {
|
|
341
|
+
ListAnycastIpListsCommandInput,
|
|
342
|
+
ListAnycastIpListsCommandOutput,
|
|
343
|
+
} from "./commands/ListAnycastIpListsCommand";
|
|
316
344
|
import {
|
|
317
345
|
ListCachePoliciesCommandInput,
|
|
318
346
|
ListCachePoliciesCommandOutput,
|
|
@@ -329,6 +357,10 @@ import {
|
|
|
329
357
|
ListContinuousDeploymentPoliciesCommandInput,
|
|
330
358
|
ListContinuousDeploymentPoliciesCommandOutput,
|
|
331
359
|
} from "./commands/ListContinuousDeploymentPoliciesCommand";
|
|
360
|
+
import {
|
|
361
|
+
ListDistributionsByAnycastIpListIdCommandInput,
|
|
362
|
+
ListDistributionsByAnycastIpListIdCommandOutput,
|
|
363
|
+
} from "./commands/ListDistributionsByAnycastIpListIdCommand";
|
|
332
364
|
import {
|
|
333
365
|
ListDistributionsByCachePolicyIdCommandInput,
|
|
334
366
|
ListDistributionsByCachePolicyIdCommandOutput,
|
|
@@ -349,6 +381,10 @@ import {
|
|
|
349
381
|
ListDistributionsByResponseHeadersPolicyIdCommandInput,
|
|
350
382
|
ListDistributionsByResponseHeadersPolicyIdCommandOutput,
|
|
351
383
|
} from "./commands/ListDistributionsByResponseHeadersPolicyIdCommand";
|
|
384
|
+
import {
|
|
385
|
+
ListDistributionsByVpcOriginIdCommandInput,
|
|
386
|
+
ListDistributionsByVpcOriginIdCommandOutput,
|
|
387
|
+
} from "./commands/ListDistributionsByVpcOriginIdCommand";
|
|
352
388
|
import {
|
|
353
389
|
ListDistributionsByWebACLIdCommandInput,
|
|
354
390
|
ListDistributionsByWebACLIdCommandOutput,
|
|
@@ -409,6 +445,10 @@ import {
|
|
|
409
445
|
ListTagsForResourceCommandInput,
|
|
410
446
|
ListTagsForResourceCommandOutput,
|
|
411
447
|
} from "./commands/ListTagsForResourceCommand";
|
|
448
|
+
import {
|
|
449
|
+
ListVpcOriginsCommandInput,
|
|
450
|
+
ListVpcOriginsCommandOutput,
|
|
451
|
+
} from "./commands/ListVpcOriginsCommand";
|
|
412
452
|
import {
|
|
413
453
|
PublishFunctionCommandInput,
|
|
414
454
|
PublishFunctionCommandOutput,
|
|
@@ -489,6 +529,10 @@ import {
|
|
|
489
529
|
UpdateStreamingDistributionCommandInput,
|
|
490
530
|
UpdateStreamingDistributionCommandOutput,
|
|
491
531
|
} from "./commands/UpdateStreamingDistributionCommand";
|
|
532
|
+
import {
|
|
533
|
+
UpdateVpcOriginCommandInput,
|
|
534
|
+
UpdateVpcOriginCommandOutput,
|
|
535
|
+
} from "./commands/UpdateVpcOriginCommand";
|
|
492
536
|
import {
|
|
493
537
|
ClientInputEndpointParameters,
|
|
494
538
|
ClientResolvedEndpointParameters,
|
|
@@ -499,6 +543,7 @@ export { __Client };
|
|
|
499
543
|
export type ServiceInputTypes =
|
|
500
544
|
| AssociateAliasCommandInput
|
|
501
545
|
| CopyDistributionCommandInput
|
|
546
|
+
| CreateAnycastIpListCommandInput
|
|
502
547
|
| CreateCachePolicyCommandInput
|
|
503
548
|
| CreateCloudFrontOriginAccessIdentityCommandInput
|
|
504
549
|
| CreateContinuousDeploymentPolicyCommandInput
|
|
@@ -518,6 +563,8 @@ export type ServiceInputTypes =
|
|
|
518
563
|
| CreateResponseHeadersPolicyCommandInput
|
|
519
564
|
| CreateStreamingDistributionCommandInput
|
|
520
565
|
| CreateStreamingDistributionWithTagsCommandInput
|
|
566
|
+
| CreateVpcOriginCommandInput
|
|
567
|
+
| DeleteAnycastIpListCommandInput
|
|
521
568
|
| DeleteCachePolicyCommandInput
|
|
522
569
|
| DeleteCloudFrontOriginAccessIdentityCommandInput
|
|
523
570
|
| DeleteContinuousDeploymentPolicyCommandInput
|
|
@@ -534,8 +581,10 @@ export type ServiceInputTypes =
|
|
|
534
581
|
| DeleteRealtimeLogConfigCommandInput
|
|
535
582
|
| DeleteResponseHeadersPolicyCommandInput
|
|
536
583
|
| DeleteStreamingDistributionCommandInput
|
|
584
|
+
| DeleteVpcOriginCommandInput
|
|
537
585
|
| DescribeFunctionCommandInput
|
|
538
586
|
| DescribeKeyValueStoreCommandInput
|
|
587
|
+
| GetAnycastIpListCommandInput
|
|
539
588
|
| GetCachePolicyCommandInput
|
|
540
589
|
| GetCachePolicyConfigCommandInput
|
|
541
590
|
| GetCloudFrontOriginAccessIdentityCommandInput
|
|
@@ -564,15 +613,19 @@ export type ServiceInputTypes =
|
|
|
564
613
|
| GetResponseHeadersPolicyConfigCommandInput
|
|
565
614
|
| GetStreamingDistributionCommandInput
|
|
566
615
|
| GetStreamingDistributionConfigCommandInput
|
|
616
|
+
| GetVpcOriginCommandInput
|
|
617
|
+
| ListAnycastIpListsCommandInput
|
|
567
618
|
| ListCachePoliciesCommandInput
|
|
568
619
|
| ListCloudFrontOriginAccessIdentitiesCommandInput
|
|
569
620
|
| ListConflictingAliasesCommandInput
|
|
570
621
|
| ListContinuousDeploymentPoliciesCommandInput
|
|
622
|
+
| ListDistributionsByAnycastIpListIdCommandInput
|
|
571
623
|
| ListDistributionsByCachePolicyIdCommandInput
|
|
572
624
|
| ListDistributionsByKeyGroupCommandInput
|
|
573
625
|
| ListDistributionsByOriginRequestPolicyIdCommandInput
|
|
574
626
|
| ListDistributionsByRealtimeLogConfigCommandInput
|
|
575
627
|
| ListDistributionsByResponseHeadersPolicyIdCommandInput
|
|
628
|
+
| ListDistributionsByVpcOriginIdCommandInput
|
|
576
629
|
| ListDistributionsByWebACLIdCommandInput
|
|
577
630
|
| ListDistributionsCommandInput
|
|
578
631
|
| ListFieldLevelEncryptionConfigsCommandInput
|
|
@@ -588,6 +641,7 @@ export type ServiceInputTypes =
|
|
|
588
641
|
| ListResponseHeadersPoliciesCommandInput
|
|
589
642
|
| ListStreamingDistributionsCommandInput
|
|
590
643
|
| ListTagsForResourceCommandInput
|
|
644
|
+
| ListVpcOriginsCommandInput
|
|
591
645
|
| PublishFunctionCommandInput
|
|
592
646
|
| TagResourceCommandInput
|
|
593
647
|
| TestFunctionCommandInput
|
|
@@ -607,10 +661,12 @@ export type ServiceInputTypes =
|
|
|
607
661
|
| UpdatePublicKeyCommandInput
|
|
608
662
|
| UpdateRealtimeLogConfigCommandInput
|
|
609
663
|
| UpdateResponseHeadersPolicyCommandInput
|
|
610
|
-
| UpdateStreamingDistributionCommandInput
|
|
664
|
+
| UpdateStreamingDistributionCommandInput
|
|
665
|
+
| UpdateVpcOriginCommandInput;
|
|
611
666
|
export type ServiceOutputTypes =
|
|
612
667
|
| AssociateAliasCommandOutput
|
|
613
668
|
| CopyDistributionCommandOutput
|
|
669
|
+
| CreateAnycastIpListCommandOutput
|
|
614
670
|
| CreateCachePolicyCommandOutput
|
|
615
671
|
| CreateCloudFrontOriginAccessIdentityCommandOutput
|
|
616
672
|
| CreateContinuousDeploymentPolicyCommandOutput
|
|
@@ -630,6 +686,8 @@ export type ServiceOutputTypes =
|
|
|
630
686
|
| CreateResponseHeadersPolicyCommandOutput
|
|
631
687
|
| CreateStreamingDistributionCommandOutput
|
|
632
688
|
| CreateStreamingDistributionWithTagsCommandOutput
|
|
689
|
+
| CreateVpcOriginCommandOutput
|
|
690
|
+
| DeleteAnycastIpListCommandOutput
|
|
633
691
|
| DeleteCachePolicyCommandOutput
|
|
634
692
|
| DeleteCloudFrontOriginAccessIdentityCommandOutput
|
|
635
693
|
| DeleteContinuousDeploymentPolicyCommandOutput
|
|
@@ -646,8 +704,10 @@ export type ServiceOutputTypes =
|
|
|
646
704
|
| DeleteRealtimeLogConfigCommandOutput
|
|
647
705
|
| DeleteResponseHeadersPolicyCommandOutput
|
|
648
706
|
| DeleteStreamingDistributionCommandOutput
|
|
707
|
+
| DeleteVpcOriginCommandOutput
|
|
649
708
|
| DescribeFunctionCommandOutput
|
|
650
709
|
| DescribeKeyValueStoreCommandOutput
|
|
710
|
+
| GetAnycastIpListCommandOutput
|
|
651
711
|
| GetCachePolicyCommandOutput
|
|
652
712
|
| GetCachePolicyConfigCommandOutput
|
|
653
713
|
| GetCloudFrontOriginAccessIdentityCommandOutput
|
|
@@ -676,15 +736,19 @@ export type ServiceOutputTypes =
|
|
|
676
736
|
| GetResponseHeadersPolicyConfigCommandOutput
|
|
677
737
|
| GetStreamingDistributionCommandOutput
|
|
678
738
|
| GetStreamingDistributionConfigCommandOutput
|
|
739
|
+
| GetVpcOriginCommandOutput
|
|
740
|
+
| ListAnycastIpListsCommandOutput
|
|
679
741
|
| ListCachePoliciesCommandOutput
|
|
680
742
|
| ListCloudFrontOriginAccessIdentitiesCommandOutput
|
|
681
743
|
| ListConflictingAliasesCommandOutput
|
|
682
744
|
| ListContinuousDeploymentPoliciesCommandOutput
|
|
745
|
+
| ListDistributionsByAnycastIpListIdCommandOutput
|
|
683
746
|
| ListDistributionsByCachePolicyIdCommandOutput
|
|
684
747
|
| ListDistributionsByKeyGroupCommandOutput
|
|
685
748
|
| ListDistributionsByOriginRequestPolicyIdCommandOutput
|
|
686
749
|
| ListDistributionsByRealtimeLogConfigCommandOutput
|
|
687
750
|
| ListDistributionsByResponseHeadersPolicyIdCommandOutput
|
|
751
|
+
| ListDistributionsByVpcOriginIdCommandOutput
|
|
688
752
|
| ListDistributionsByWebACLIdCommandOutput
|
|
689
753
|
| ListDistributionsCommandOutput
|
|
690
754
|
| ListFieldLevelEncryptionConfigsCommandOutput
|
|
@@ -700,6 +764,7 @@ export type ServiceOutputTypes =
|
|
|
700
764
|
| ListResponseHeadersPoliciesCommandOutput
|
|
701
765
|
| ListStreamingDistributionsCommandOutput
|
|
702
766
|
| ListTagsForResourceCommandOutput
|
|
767
|
+
| ListVpcOriginsCommandOutput
|
|
703
768
|
| PublishFunctionCommandOutput
|
|
704
769
|
| TagResourceCommandOutput
|
|
705
770
|
| TestFunctionCommandOutput
|
|
@@ -719,7 +784,8 @@ export type ServiceOutputTypes =
|
|
|
719
784
|
| UpdatePublicKeyCommandOutput
|
|
720
785
|
| UpdateRealtimeLogConfigCommandOutput
|
|
721
786
|
| UpdateResponseHeadersPolicyCommandOutput
|
|
722
|
-
| UpdateStreamingDistributionCommandOutput
|
|
787
|
+
| UpdateStreamingDistributionCommandOutput
|
|
788
|
+
| UpdateVpcOriginCommandOutput;
|
|
723
789
|
export interface ClientDefaults
|
|
724
790
|
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
725
791
|
requestHandler?: __HttpHandlerUserInput;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFrontClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFrontClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateAnycastIpListRequest,
|
|
10
|
+
CreateAnycastIpListResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateAnycastIpListCommandInput
|
|
15
|
+
extends CreateAnycastIpListRequest {}
|
|
16
|
+
export interface CreateAnycastIpListCommandOutput
|
|
17
|
+
extends CreateAnycastIpListResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateAnycastIpListCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateAnycastIpListCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateAnycastIpListCommandInput,
|
|
24
|
+
CreateAnycastIpListCommandOutput,
|
|
25
|
+
CloudFrontClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: CreateAnycastIpListCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateAnycastIpListCommandInput,
|
|
33
|
+
CreateAnycastIpListCommandOutput,
|
|
34
|
+
CloudFrontClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateAnycastIpListCommand extends CreateAnycastIpListCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateAnycastIpListRequest;
|
|
44
|
+
output: CreateAnycastIpListResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateAnycastIpListCommandInput;
|
|
48
|
+
output: CreateAnycastIpListCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFrontClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFrontClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateVpcOriginRequest,
|
|
10
|
+
CreateVpcOriginResult,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateVpcOriginCommandInput extends CreateVpcOriginRequest {}
|
|
15
|
+
export interface CreateVpcOriginCommandOutput
|
|
16
|
+
extends CreateVpcOriginResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CreateVpcOriginCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateVpcOriginCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CreateVpcOriginCommandInput,
|
|
23
|
+
CreateVpcOriginCommandOutput,
|
|
24
|
+
CloudFrontClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreateVpcOriginCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateVpcOriginCommandInput,
|
|
32
|
+
CreateVpcOriginCommandOutput,
|
|
33
|
+
CloudFrontClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class CreateVpcOriginCommand extends CreateVpcOriginCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: CreateVpcOriginRequest;
|
|
43
|
+
output: CreateVpcOriginResult;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: CreateVpcOriginCommandInput;
|
|
47
|
+
output: CreateVpcOriginCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFrontClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFrontClient";
|
|
8
|
+
import { DeleteAnycastIpListRequest } from "../models/models_1";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteAnycastIpListCommandInput
|
|
12
|
+
extends DeleteAnycastIpListRequest {}
|
|
13
|
+
export interface DeleteAnycastIpListCommandOutput extends __MetadataBearer {}
|
|
14
|
+
declare const DeleteAnycastIpListCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: DeleteAnycastIpListCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
DeleteAnycastIpListCommandInput,
|
|
19
|
+
DeleteAnycastIpListCommandOutput,
|
|
20
|
+
CloudFrontClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: DeleteAnycastIpListCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
DeleteAnycastIpListCommandInput,
|
|
28
|
+
DeleteAnycastIpListCommandOutput,
|
|
29
|
+
CloudFrontClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
33
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
34
|
+
};
|
|
35
|
+
export declare class DeleteAnycastIpListCommand extends DeleteAnycastIpListCommand_base {
|
|
36
|
+
protected static __types: {
|
|
37
|
+
api: {
|
|
38
|
+
input: DeleteAnycastIpListRequest;
|
|
39
|
+
output: {};
|
|
40
|
+
};
|
|
41
|
+
sdk: {
|
|
42
|
+
input: DeleteAnycastIpListCommandInput;
|
|
43
|
+
output: DeleteAnycastIpListCommandOutput;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFrontClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFrontClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteVpcOriginRequest,
|
|
10
|
+
DeleteVpcOriginResult,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteVpcOriginCommandInput extends DeleteVpcOriginRequest {}
|
|
15
|
+
export interface DeleteVpcOriginCommandOutput
|
|
16
|
+
extends DeleteVpcOriginResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const DeleteVpcOriginCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DeleteVpcOriginCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DeleteVpcOriginCommandInput,
|
|
23
|
+
DeleteVpcOriginCommandOutput,
|
|
24
|
+
CloudFrontClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DeleteVpcOriginCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DeleteVpcOriginCommandInput,
|
|
32
|
+
DeleteVpcOriginCommandOutput,
|
|
33
|
+
CloudFrontClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class DeleteVpcOriginCommand extends DeleteVpcOriginCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: DeleteVpcOriginRequest;
|
|
43
|
+
output: DeleteVpcOriginResult;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: DeleteVpcOriginCommandInput;
|
|
47
|
+
output: DeleteVpcOriginCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFrontClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFrontClient";
|
|
8
|
+
import {
|
|
9
|
+
GetAnycastIpListRequest,
|
|
10
|
+
GetAnycastIpListResult,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetAnycastIpListCommandInput extends GetAnycastIpListRequest {}
|
|
15
|
+
export interface GetAnycastIpListCommandOutput
|
|
16
|
+
extends GetAnycastIpListResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetAnycastIpListCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetAnycastIpListCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetAnycastIpListCommandInput,
|
|
23
|
+
GetAnycastIpListCommandOutput,
|
|
24
|
+
CloudFrontClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: GetAnycastIpListCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetAnycastIpListCommandInput,
|
|
32
|
+
GetAnycastIpListCommandOutput,
|
|
33
|
+
CloudFrontClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class GetAnycastIpListCommand extends GetAnycastIpListCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: GetAnycastIpListRequest;
|
|
43
|
+
output: GetAnycastIpListResult;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: GetAnycastIpListCommandInput;
|
|
47
|
+
output: GetAnycastIpListCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFrontClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFrontClient";
|
|
8
|
+
import { GetVpcOriginRequest, GetVpcOriginResult } from "../models/models_1";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface GetVpcOriginCommandInput extends GetVpcOriginRequest {}
|
|
12
|
+
export interface GetVpcOriginCommandOutput
|
|
13
|
+
extends GetVpcOriginResult,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const GetVpcOriginCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: GetVpcOriginCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
GetVpcOriginCommandInput,
|
|
20
|
+
GetVpcOriginCommandOutput,
|
|
21
|
+
CloudFrontClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: GetVpcOriginCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
GetVpcOriginCommandInput,
|
|
29
|
+
GetVpcOriginCommandOutput,
|
|
30
|
+
CloudFrontClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class GetVpcOriginCommand extends GetVpcOriginCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: GetVpcOriginRequest;
|
|
40
|
+
output: GetVpcOriginResult;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: GetVpcOriginCommandInput;
|
|
44
|
+
output: GetVpcOriginCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFrontClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFrontClient";
|
|
8
|
+
import {
|
|
9
|
+
ListAnycastIpListsRequest,
|
|
10
|
+
ListAnycastIpListsResult,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListAnycastIpListsCommandInput
|
|
15
|
+
extends ListAnycastIpListsRequest {}
|
|
16
|
+
export interface ListAnycastIpListsCommandOutput
|
|
17
|
+
extends ListAnycastIpListsResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListAnycastIpListsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListAnycastIpListsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListAnycastIpListsCommandInput,
|
|
24
|
+
ListAnycastIpListsCommandOutput,
|
|
25
|
+
CloudFrontClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListAnycastIpListsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListAnycastIpListsCommandInput,
|
|
33
|
+
ListAnycastIpListsCommandOutput,
|
|
34
|
+
CloudFrontClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListAnycastIpListsCommand extends ListAnycastIpListsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListAnycastIpListsRequest;
|
|
44
|
+
output: ListAnycastIpListsResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListAnycastIpListsCommandInput;
|
|
48
|
+
output: ListAnycastIpListsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFrontClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFrontClient";
|
|
8
|
+
import {
|
|
9
|
+
ListDistributionsByAnycastIpListIdRequest,
|
|
10
|
+
ListDistributionsByAnycastIpListIdResult,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListDistributionsByAnycastIpListIdCommandInput
|
|
15
|
+
extends ListDistributionsByAnycastIpListIdRequest {}
|
|
16
|
+
export interface ListDistributionsByAnycastIpListIdCommandOutput
|
|
17
|
+
extends ListDistributionsByAnycastIpListIdResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListDistributionsByAnycastIpListIdCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListDistributionsByAnycastIpListIdCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListDistributionsByAnycastIpListIdCommandInput,
|
|
24
|
+
ListDistributionsByAnycastIpListIdCommandOutput,
|
|
25
|
+
CloudFrontClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListDistributionsByAnycastIpListIdCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListDistributionsByAnycastIpListIdCommandInput,
|
|
33
|
+
ListDistributionsByAnycastIpListIdCommandOutput,
|
|
34
|
+
CloudFrontClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListDistributionsByAnycastIpListIdCommand extends ListDistributionsByAnycastIpListIdCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListDistributionsByAnycastIpListIdRequest;
|
|
44
|
+
output: ListDistributionsByAnycastIpListIdResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListDistributionsByAnycastIpListIdCommandInput;
|
|
48
|
+
output: ListDistributionsByAnycastIpListIdCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFrontClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFrontClient";
|
|
8
|
+
import {
|
|
9
|
+
ListDistributionsByVpcOriginIdRequest,
|
|
10
|
+
ListDistributionsByVpcOriginIdResult,
|
|
11
|
+
} from "../models/models_1";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListDistributionsByVpcOriginIdCommandInput
|
|
15
|
+
extends ListDistributionsByVpcOriginIdRequest {}
|
|
16
|
+
export interface ListDistributionsByVpcOriginIdCommandOutput
|
|
17
|
+
extends ListDistributionsByVpcOriginIdResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListDistributionsByVpcOriginIdCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListDistributionsByVpcOriginIdCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListDistributionsByVpcOriginIdCommandInput,
|
|
24
|
+
ListDistributionsByVpcOriginIdCommandOutput,
|
|
25
|
+
CloudFrontClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListDistributionsByVpcOriginIdCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListDistributionsByVpcOriginIdCommandInput,
|
|
33
|
+
ListDistributionsByVpcOriginIdCommandOutput,
|
|
34
|
+
CloudFrontClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListDistributionsByVpcOriginIdCommand extends ListDistributionsByVpcOriginIdCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListDistributionsByVpcOriginIdRequest;
|
|
44
|
+
output: ListDistributionsByVpcOriginIdResult;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListDistributionsByVpcOriginIdCommandInput;
|
|
48
|
+
output: ListDistributionsByVpcOriginIdCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|