@aws-sdk/client-vpc-lattice 3.975.0 → 3.980.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +48 -31
- package/dist-es/VPCLattice.js +33 -1
- package/dist-types/VPCLattice.d.ts +106 -1
- package/dist-types/ts3.4/VPCLattice.d.ts +110 -1
- package/package.json +18 -18
package/dist-cjs/index.js
CHANGED
|
@@ -2820,6 +2820,36 @@ class UpdateTargetGroupCommand extends smithyClient.Command
|
|
|
2820
2820
|
.build() {
|
|
2821
2821
|
}
|
|
2822
2822
|
|
|
2823
|
+
const paginateListAccessLogSubscriptions = core.createPaginator(VPCLatticeClient, ListAccessLogSubscriptionsCommand, "nextToken", "nextToken", "maxResults");
|
|
2824
|
+
|
|
2825
|
+
const paginateListDomainVerifications = core.createPaginator(VPCLatticeClient, ListDomainVerificationsCommand, "nextToken", "nextToken", "maxResults");
|
|
2826
|
+
|
|
2827
|
+
const paginateListListeners = core.createPaginator(VPCLatticeClient, ListListenersCommand, "nextToken", "nextToken", "maxResults");
|
|
2828
|
+
|
|
2829
|
+
const paginateListResourceConfigurations = core.createPaginator(VPCLatticeClient, ListResourceConfigurationsCommand, "nextToken", "nextToken", "maxResults");
|
|
2830
|
+
|
|
2831
|
+
const paginateListResourceEndpointAssociations = core.createPaginator(VPCLatticeClient, ListResourceEndpointAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
2832
|
+
|
|
2833
|
+
const paginateListResourceGateways = core.createPaginator(VPCLatticeClient, ListResourceGatewaysCommand, "nextToken", "nextToken", "maxResults");
|
|
2834
|
+
|
|
2835
|
+
const paginateListRules = core.createPaginator(VPCLatticeClient, ListRulesCommand, "nextToken", "nextToken", "maxResults");
|
|
2836
|
+
|
|
2837
|
+
const paginateListServiceNetworkResourceAssociations = core.createPaginator(VPCLatticeClient, ListServiceNetworkResourceAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
2838
|
+
|
|
2839
|
+
const paginateListServiceNetworkServiceAssociations = core.createPaginator(VPCLatticeClient, ListServiceNetworkServiceAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
2840
|
+
|
|
2841
|
+
const paginateListServiceNetworks = core.createPaginator(VPCLatticeClient, ListServiceNetworksCommand, "nextToken", "nextToken", "maxResults");
|
|
2842
|
+
|
|
2843
|
+
const paginateListServiceNetworkVpcAssociations = core.createPaginator(VPCLatticeClient, ListServiceNetworkVpcAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
2844
|
+
|
|
2845
|
+
const paginateListServiceNetworkVpcEndpointAssociations = core.createPaginator(VPCLatticeClient, ListServiceNetworkVpcEndpointAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
2846
|
+
|
|
2847
|
+
const paginateListServices = core.createPaginator(VPCLatticeClient, ListServicesCommand, "nextToken", "nextToken", "maxResults");
|
|
2848
|
+
|
|
2849
|
+
const paginateListTargetGroups = core.createPaginator(VPCLatticeClient, ListTargetGroupsCommand, "nextToken", "nextToken", "maxResults");
|
|
2850
|
+
|
|
2851
|
+
const paginateListTargets = core.createPaginator(VPCLatticeClient, ListTargetsCommand, "nextToken", "nextToken", "maxResults");
|
|
2852
|
+
|
|
2823
2853
|
const commands = {
|
|
2824
2854
|
BatchUpdateRuleCommand,
|
|
2825
2855
|
CreateAccessLogSubscriptionCommand,
|
|
@@ -2895,39 +2925,26 @@ const commands = {
|
|
|
2895
2925
|
UpdateServiceNetworkVpcAssociationCommand,
|
|
2896
2926
|
UpdateTargetGroupCommand,
|
|
2897
2927
|
};
|
|
2928
|
+
const paginators = {
|
|
2929
|
+
paginateListAccessLogSubscriptions,
|
|
2930
|
+
paginateListDomainVerifications,
|
|
2931
|
+
paginateListListeners,
|
|
2932
|
+
paginateListResourceConfigurations,
|
|
2933
|
+
paginateListResourceEndpointAssociations,
|
|
2934
|
+
paginateListResourceGateways,
|
|
2935
|
+
paginateListRules,
|
|
2936
|
+
paginateListServiceNetworkResourceAssociations,
|
|
2937
|
+
paginateListServiceNetworks,
|
|
2938
|
+
paginateListServiceNetworkServiceAssociations,
|
|
2939
|
+
paginateListServiceNetworkVpcAssociations,
|
|
2940
|
+
paginateListServiceNetworkVpcEndpointAssociations,
|
|
2941
|
+
paginateListServices,
|
|
2942
|
+
paginateListTargetGroups,
|
|
2943
|
+
paginateListTargets,
|
|
2944
|
+
};
|
|
2898
2945
|
class VPCLattice extends VPCLatticeClient {
|
|
2899
2946
|
}
|
|
2900
|
-
smithyClient.createAggregatedClient(commands, VPCLattice);
|
|
2901
|
-
|
|
2902
|
-
const paginateListAccessLogSubscriptions = core.createPaginator(VPCLatticeClient, ListAccessLogSubscriptionsCommand, "nextToken", "nextToken", "maxResults");
|
|
2903
|
-
|
|
2904
|
-
const paginateListDomainVerifications = core.createPaginator(VPCLatticeClient, ListDomainVerificationsCommand, "nextToken", "nextToken", "maxResults");
|
|
2905
|
-
|
|
2906
|
-
const paginateListListeners = core.createPaginator(VPCLatticeClient, ListListenersCommand, "nextToken", "nextToken", "maxResults");
|
|
2907
|
-
|
|
2908
|
-
const paginateListResourceConfigurations = core.createPaginator(VPCLatticeClient, ListResourceConfigurationsCommand, "nextToken", "nextToken", "maxResults");
|
|
2909
|
-
|
|
2910
|
-
const paginateListResourceEndpointAssociations = core.createPaginator(VPCLatticeClient, ListResourceEndpointAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
2911
|
-
|
|
2912
|
-
const paginateListResourceGateways = core.createPaginator(VPCLatticeClient, ListResourceGatewaysCommand, "nextToken", "nextToken", "maxResults");
|
|
2913
|
-
|
|
2914
|
-
const paginateListRules = core.createPaginator(VPCLatticeClient, ListRulesCommand, "nextToken", "nextToken", "maxResults");
|
|
2915
|
-
|
|
2916
|
-
const paginateListServiceNetworkResourceAssociations = core.createPaginator(VPCLatticeClient, ListServiceNetworkResourceAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
2917
|
-
|
|
2918
|
-
const paginateListServiceNetworks = core.createPaginator(VPCLatticeClient, ListServiceNetworksCommand, "nextToken", "nextToken", "maxResults");
|
|
2919
|
-
|
|
2920
|
-
const paginateListServiceNetworkServiceAssociations = core.createPaginator(VPCLatticeClient, ListServiceNetworkServiceAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
2921
|
-
|
|
2922
|
-
const paginateListServiceNetworkVpcAssociations = core.createPaginator(VPCLatticeClient, ListServiceNetworkVpcAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
2923
|
-
|
|
2924
|
-
const paginateListServiceNetworkVpcEndpointAssociations = core.createPaginator(VPCLatticeClient, ListServiceNetworkVpcEndpointAssociationsCommand, "nextToken", "nextToken", "maxResults");
|
|
2925
|
-
|
|
2926
|
-
const paginateListServices = core.createPaginator(VPCLatticeClient, ListServicesCommand, "nextToken", "nextToken", "maxResults");
|
|
2927
|
-
|
|
2928
|
-
const paginateListTargetGroups = core.createPaginator(VPCLatticeClient, ListTargetGroupsCommand, "nextToken", "nextToken", "maxResults");
|
|
2929
|
-
|
|
2930
|
-
const paginateListTargets = core.createPaginator(VPCLatticeClient, ListTargetsCommand, "nextToken", "nextToken", "maxResults");
|
|
2947
|
+
smithyClient.createAggregatedClient(commands, VPCLattice, { paginators });
|
|
2931
2948
|
|
|
2932
2949
|
const ServiceNetworkLogType = {
|
|
2933
2950
|
RESOURCE: "RESOURCE",
|
package/dist-es/VPCLattice.js
CHANGED
|
@@ -72,6 +72,21 @@ import { UpdateServiceCommand, } from "./commands/UpdateServiceCommand";
|
|
|
72
72
|
import { UpdateServiceNetworkCommand, } from "./commands/UpdateServiceNetworkCommand";
|
|
73
73
|
import { UpdateServiceNetworkVpcAssociationCommand, } from "./commands/UpdateServiceNetworkVpcAssociationCommand";
|
|
74
74
|
import { UpdateTargetGroupCommand, } from "./commands/UpdateTargetGroupCommand";
|
|
75
|
+
import { paginateListAccessLogSubscriptions } from "./pagination/ListAccessLogSubscriptionsPaginator";
|
|
76
|
+
import { paginateListDomainVerifications } from "./pagination/ListDomainVerificationsPaginator";
|
|
77
|
+
import { paginateListListeners } from "./pagination/ListListenersPaginator";
|
|
78
|
+
import { paginateListResourceConfigurations } from "./pagination/ListResourceConfigurationsPaginator";
|
|
79
|
+
import { paginateListResourceEndpointAssociations } from "./pagination/ListResourceEndpointAssociationsPaginator";
|
|
80
|
+
import { paginateListResourceGateways } from "./pagination/ListResourceGatewaysPaginator";
|
|
81
|
+
import { paginateListRules } from "./pagination/ListRulesPaginator";
|
|
82
|
+
import { paginateListServiceNetworkResourceAssociations, } from "./pagination/ListServiceNetworkResourceAssociationsPaginator";
|
|
83
|
+
import { paginateListServiceNetworkServiceAssociations, } from "./pagination/ListServiceNetworkServiceAssociationsPaginator";
|
|
84
|
+
import { paginateListServiceNetworks } from "./pagination/ListServiceNetworksPaginator";
|
|
85
|
+
import { paginateListServiceNetworkVpcAssociations } from "./pagination/ListServiceNetworkVpcAssociationsPaginator";
|
|
86
|
+
import { paginateListServiceNetworkVpcEndpointAssociations, } from "./pagination/ListServiceNetworkVpcEndpointAssociationsPaginator";
|
|
87
|
+
import { paginateListServices } from "./pagination/ListServicesPaginator";
|
|
88
|
+
import { paginateListTargetGroups } from "./pagination/ListTargetGroupsPaginator";
|
|
89
|
+
import { paginateListTargets } from "./pagination/ListTargetsPaginator";
|
|
75
90
|
import { VPCLatticeClient } from "./VPCLatticeClient";
|
|
76
91
|
const commands = {
|
|
77
92
|
BatchUpdateRuleCommand,
|
|
@@ -148,6 +163,23 @@ const commands = {
|
|
|
148
163
|
UpdateServiceNetworkVpcAssociationCommand,
|
|
149
164
|
UpdateTargetGroupCommand,
|
|
150
165
|
};
|
|
166
|
+
const paginators = {
|
|
167
|
+
paginateListAccessLogSubscriptions,
|
|
168
|
+
paginateListDomainVerifications,
|
|
169
|
+
paginateListListeners,
|
|
170
|
+
paginateListResourceConfigurations,
|
|
171
|
+
paginateListResourceEndpointAssociations,
|
|
172
|
+
paginateListResourceGateways,
|
|
173
|
+
paginateListRules,
|
|
174
|
+
paginateListServiceNetworkResourceAssociations,
|
|
175
|
+
paginateListServiceNetworks,
|
|
176
|
+
paginateListServiceNetworkServiceAssociations,
|
|
177
|
+
paginateListServiceNetworkVpcAssociations,
|
|
178
|
+
paginateListServiceNetworkVpcEndpointAssociations,
|
|
179
|
+
paginateListServices,
|
|
180
|
+
paginateListTargetGroups,
|
|
181
|
+
paginateListTargets,
|
|
182
|
+
};
|
|
151
183
|
export class VPCLattice extends VPCLatticeClient {
|
|
152
184
|
}
|
|
153
|
-
createAggregatedClient(commands, VPCLattice);
|
|
185
|
+
createAggregatedClient(commands, VPCLattice, { paginators });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { BatchUpdateRuleCommandInput, BatchUpdateRuleCommandOutput } from "./commands/BatchUpdateRuleCommand";
|
|
3
3
|
import { CreateAccessLogSubscriptionCommandInput, CreateAccessLogSubscriptionCommandOutput } from "./commands/CreateAccessLogSubscriptionCommand";
|
|
4
4
|
import { CreateListenerCommandInput, CreateListenerCommandOutput } from "./commands/CreateListenerCommand";
|
|
@@ -521,6 +521,111 @@ export interface VPCLattice {
|
|
|
521
521
|
updateTargetGroup(args: UpdateTargetGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTargetGroupCommandOutput>;
|
|
522
522
|
updateTargetGroup(args: UpdateTargetGroupCommandInput, cb: (err: any, data?: UpdateTargetGroupCommandOutput) => void): void;
|
|
523
523
|
updateTargetGroup(args: UpdateTargetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTargetGroupCommandOutput) => void): void;
|
|
524
|
+
/**
|
|
525
|
+
* @see {@link ListAccessLogSubscriptionsCommand}
|
|
526
|
+
* @param args - command input.
|
|
527
|
+
* @param paginationConfig - optional pagination config.
|
|
528
|
+
* @returns AsyncIterable of {@link ListAccessLogSubscriptionsCommandOutput}.
|
|
529
|
+
*/
|
|
530
|
+
paginateListAccessLogSubscriptions(args: ListAccessLogSubscriptionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAccessLogSubscriptionsCommandOutput>;
|
|
531
|
+
/**
|
|
532
|
+
* @see {@link ListDomainVerificationsCommand}
|
|
533
|
+
* @param args - command input.
|
|
534
|
+
* @param paginationConfig - optional pagination config.
|
|
535
|
+
* @returns AsyncIterable of {@link ListDomainVerificationsCommandOutput}.
|
|
536
|
+
*/
|
|
537
|
+
paginateListDomainVerifications(args?: ListDomainVerificationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDomainVerificationsCommandOutput>;
|
|
538
|
+
/**
|
|
539
|
+
* @see {@link ListListenersCommand}
|
|
540
|
+
* @param args - command input.
|
|
541
|
+
* @param paginationConfig - optional pagination config.
|
|
542
|
+
* @returns AsyncIterable of {@link ListListenersCommandOutput}.
|
|
543
|
+
*/
|
|
544
|
+
paginateListListeners(args: ListListenersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListListenersCommandOutput>;
|
|
545
|
+
/**
|
|
546
|
+
* @see {@link ListResourceConfigurationsCommand}
|
|
547
|
+
* @param args - command input.
|
|
548
|
+
* @param paginationConfig - optional pagination config.
|
|
549
|
+
* @returns AsyncIterable of {@link ListResourceConfigurationsCommandOutput}.
|
|
550
|
+
*/
|
|
551
|
+
paginateListResourceConfigurations(args?: ListResourceConfigurationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResourceConfigurationsCommandOutput>;
|
|
552
|
+
/**
|
|
553
|
+
* @see {@link ListResourceEndpointAssociationsCommand}
|
|
554
|
+
* @param args - command input.
|
|
555
|
+
* @param paginationConfig - optional pagination config.
|
|
556
|
+
* @returns AsyncIterable of {@link ListResourceEndpointAssociationsCommandOutput}.
|
|
557
|
+
*/
|
|
558
|
+
paginateListResourceEndpointAssociations(args: ListResourceEndpointAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResourceEndpointAssociationsCommandOutput>;
|
|
559
|
+
/**
|
|
560
|
+
* @see {@link ListResourceGatewaysCommand}
|
|
561
|
+
* @param args - command input.
|
|
562
|
+
* @param paginationConfig - optional pagination config.
|
|
563
|
+
* @returns AsyncIterable of {@link ListResourceGatewaysCommandOutput}.
|
|
564
|
+
*/
|
|
565
|
+
paginateListResourceGateways(args?: ListResourceGatewaysCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResourceGatewaysCommandOutput>;
|
|
566
|
+
/**
|
|
567
|
+
* @see {@link ListRulesCommand}
|
|
568
|
+
* @param args - command input.
|
|
569
|
+
* @param paginationConfig - optional pagination config.
|
|
570
|
+
* @returns AsyncIterable of {@link ListRulesCommandOutput}.
|
|
571
|
+
*/
|
|
572
|
+
paginateListRules(args: ListRulesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListRulesCommandOutput>;
|
|
573
|
+
/**
|
|
574
|
+
* @see {@link ListServiceNetworkResourceAssociationsCommand}
|
|
575
|
+
* @param args - command input.
|
|
576
|
+
* @param paginationConfig - optional pagination config.
|
|
577
|
+
* @returns AsyncIterable of {@link ListServiceNetworkResourceAssociationsCommandOutput}.
|
|
578
|
+
*/
|
|
579
|
+
paginateListServiceNetworkResourceAssociations(args?: ListServiceNetworkResourceAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListServiceNetworkResourceAssociationsCommandOutput>;
|
|
580
|
+
/**
|
|
581
|
+
* @see {@link ListServiceNetworksCommand}
|
|
582
|
+
* @param args - command input.
|
|
583
|
+
* @param paginationConfig - optional pagination config.
|
|
584
|
+
* @returns AsyncIterable of {@link ListServiceNetworksCommandOutput}.
|
|
585
|
+
*/
|
|
586
|
+
paginateListServiceNetworks(args?: ListServiceNetworksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListServiceNetworksCommandOutput>;
|
|
587
|
+
/**
|
|
588
|
+
* @see {@link ListServiceNetworkServiceAssociationsCommand}
|
|
589
|
+
* @param args - command input.
|
|
590
|
+
* @param paginationConfig - optional pagination config.
|
|
591
|
+
* @returns AsyncIterable of {@link ListServiceNetworkServiceAssociationsCommandOutput}.
|
|
592
|
+
*/
|
|
593
|
+
paginateListServiceNetworkServiceAssociations(args?: ListServiceNetworkServiceAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListServiceNetworkServiceAssociationsCommandOutput>;
|
|
594
|
+
/**
|
|
595
|
+
* @see {@link ListServiceNetworkVpcAssociationsCommand}
|
|
596
|
+
* @param args - command input.
|
|
597
|
+
* @param paginationConfig - optional pagination config.
|
|
598
|
+
* @returns AsyncIterable of {@link ListServiceNetworkVpcAssociationsCommandOutput}.
|
|
599
|
+
*/
|
|
600
|
+
paginateListServiceNetworkVpcAssociations(args?: ListServiceNetworkVpcAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListServiceNetworkVpcAssociationsCommandOutput>;
|
|
601
|
+
/**
|
|
602
|
+
* @see {@link ListServiceNetworkVpcEndpointAssociationsCommand}
|
|
603
|
+
* @param args - command input.
|
|
604
|
+
* @param paginationConfig - optional pagination config.
|
|
605
|
+
* @returns AsyncIterable of {@link ListServiceNetworkVpcEndpointAssociationsCommandOutput}.
|
|
606
|
+
*/
|
|
607
|
+
paginateListServiceNetworkVpcEndpointAssociations(args: ListServiceNetworkVpcEndpointAssociationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListServiceNetworkVpcEndpointAssociationsCommandOutput>;
|
|
608
|
+
/**
|
|
609
|
+
* @see {@link ListServicesCommand}
|
|
610
|
+
* @param args - command input.
|
|
611
|
+
* @param paginationConfig - optional pagination config.
|
|
612
|
+
* @returns AsyncIterable of {@link ListServicesCommandOutput}.
|
|
613
|
+
*/
|
|
614
|
+
paginateListServices(args?: ListServicesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListServicesCommandOutput>;
|
|
615
|
+
/**
|
|
616
|
+
* @see {@link ListTargetGroupsCommand}
|
|
617
|
+
* @param args - command input.
|
|
618
|
+
* @param paginationConfig - optional pagination config.
|
|
619
|
+
* @returns AsyncIterable of {@link ListTargetGroupsCommandOutput}.
|
|
620
|
+
*/
|
|
621
|
+
paginateListTargetGroups(args?: ListTargetGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTargetGroupsCommandOutput>;
|
|
622
|
+
/**
|
|
623
|
+
* @see {@link ListTargetsCommand}
|
|
624
|
+
* @param args - command input.
|
|
625
|
+
* @param paginationConfig - optional pagination config.
|
|
626
|
+
* @returns AsyncIterable of {@link ListTargetsCommandOutput}.
|
|
627
|
+
*/
|
|
628
|
+
paginateListTargets(args: ListTargetsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTargetsCommandOutput>;
|
|
524
629
|
}
|
|
525
630
|
/**
|
|
526
631
|
* <p>Amazon VPC Lattice is a fully managed application networking service that you use to connect, secure, and monitor all of your services across multiple accounts and virtual private clouds (VPCs). Amazon VPC Lattice interconnects your microservices and legacy services within a logical boundary, so that you can discover and manage them more efficiently. For more information, see the <a href="https://docs.aws.amazon.com/vpc-lattice/latest/ug/">Amazon VPC Lattice User Guide</a> </p>
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
BatchUpdateRuleCommandInput,
|
|
4
8
|
BatchUpdateRuleCommandOutput,
|
|
@@ -1335,6 +1339,111 @@ export interface VPCLattice {
|
|
|
1335
1339
|
options: __HttpHandlerOptions,
|
|
1336
1340
|
cb: (err: any, data?: UpdateTargetGroupCommandOutput) => void
|
|
1337
1341
|
): void;
|
|
1342
|
+
paginateListAccessLogSubscriptions(
|
|
1343
|
+
args: ListAccessLogSubscriptionsCommandInput,
|
|
1344
|
+
paginationConfig?: Pick<
|
|
1345
|
+
PaginationConfiguration,
|
|
1346
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1347
|
+
>
|
|
1348
|
+
): Paginator<ListAccessLogSubscriptionsCommandOutput>;
|
|
1349
|
+
paginateListDomainVerifications(
|
|
1350
|
+
args?: ListDomainVerificationsCommandInput,
|
|
1351
|
+
paginationConfig?: Pick<
|
|
1352
|
+
PaginationConfiguration,
|
|
1353
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1354
|
+
>
|
|
1355
|
+
): Paginator<ListDomainVerificationsCommandOutput>;
|
|
1356
|
+
paginateListListeners(
|
|
1357
|
+
args: ListListenersCommandInput,
|
|
1358
|
+
paginationConfig?: Pick<
|
|
1359
|
+
PaginationConfiguration,
|
|
1360
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1361
|
+
>
|
|
1362
|
+
): Paginator<ListListenersCommandOutput>;
|
|
1363
|
+
paginateListResourceConfigurations(
|
|
1364
|
+
args?: ListResourceConfigurationsCommandInput,
|
|
1365
|
+
paginationConfig?: Pick<
|
|
1366
|
+
PaginationConfiguration,
|
|
1367
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1368
|
+
>
|
|
1369
|
+
): Paginator<ListResourceConfigurationsCommandOutput>;
|
|
1370
|
+
paginateListResourceEndpointAssociations(
|
|
1371
|
+
args: ListResourceEndpointAssociationsCommandInput,
|
|
1372
|
+
paginationConfig?: Pick<
|
|
1373
|
+
PaginationConfiguration,
|
|
1374
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1375
|
+
>
|
|
1376
|
+
): Paginator<ListResourceEndpointAssociationsCommandOutput>;
|
|
1377
|
+
paginateListResourceGateways(
|
|
1378
|
+
args?: ListResourceGatewaysCommandInput,
|
|
1379
|
+
paginationConfig?: Pick<
|
|
1380
|
+
PaginationConfiguration,
|
|
1381
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1382
|
+
>
|
|
1383
|
+
): Paginator<ListResourceGatewaysCommandOutput>;
|
|
1384
|
+
paginateListRules(
|
|
1385
|
+
args: ListRulesCommandInput,
|
|
1386
|
+
paginationConfig?: Pick<
|
|
1387
|
+
PaginationConfiguration,
|
|
1388
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1389
|
+
>
|
|
1390
|
+
): Paginator<ListRulesCommandOutput>;
|
|
1391
|
+
paginateListServiceNetworkResourceAssociations(
|
|
1392
|
+
args?: ListServiceNetworkResourceAssociationsCommandInput,
|
|
1393
|
+
paginationConfig?: Pick<
|
|
1394
|
+
PaginationConfiguration,
|
|
1395
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1396
|
+
>
|
|
1397
|
+
): Paginator<ListServiceNetworkResourceAssociationsCommandOutput>;
|
|
1398
|
+
paginateListServiceNetworks(
|
|
1399
|
+
args?: ListServiceNetworksCommandInput,
|
|
1400
|
+
paginationConfig?: Pick<
|
|
1401
|
+
PaginationConfiguration,
|
|
1402
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1403
|
+
>
|
|
1404
|
+
): Paginator<ListServiceNetworksCommandOutput>;
|
|
1405
|
+
paginateListServiceNetworkServiceAssociations(
|
|
1406
|
+
args?: ListServiceNetworkServiceAssociationsCommandInput,
|
|
1407
|
+
paginationConfig?: Pick<
|
|
1408
|
+
PaginationConfiguration,
|
|
1409
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1410
|
+
>
|
|
1411
|
+
): Paginator<ListServiceNetworkServiceAssociationsCommandOutput>;
|
|
1412
|
+
paginateListServiceNetworkVpcAssociations(
|
|
1413
|
+
args?: ListServiceNetworkVpcAssociationsCommandInput,
|
|
1414
|
+
paginationConfig?: Pick<
|
|
1415
|
+
PaginationConfiguration,
|
|
1416
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1417
|
+
>
|
|
1418
|
+
): Paginator<ListServiceNetworkVpcAssociationsCommandOutput>;
|
|
1419
|
+
paginateListServiceNetworkVpcEndpointAssociations(
|
|
1420
|
+
args: ListServiceNetworkVpcEndpointAssociationsCommandInput,
|
|
1421
|
+
paginationConfig?: Pick<
|
|
1422
|
+
PaginationConfiguration,
|
|
1423
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1424
|
+
>
|
|
1425
|
+
): Paginator<ListServiceNetworkVpcEndpointAssociationsCommandOutput>;
|
|
1426
|
+
paginateListServices(
|
|
1427
|
+
args?: ListServicesCommandInput,
|
|
1428
|
+
paginationConfig?: Pick<
|
|
1429
|
+
PaginationConfiguration,
|
|
1430
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1431
|
+
>
|
|
1432
|
+
): Paginator<ListServicesCommandOutput>;
|
|
1433
|
+
paginateListTargetGroups(
|
|
1434
|
+
args?: ListTargetGroupsCommandInput,
|
|
1435
|
+
paginationConfig?: Pick<
|
|
1436
|
+
PaginationConfiguration,
|
|
1437
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1438
|
+
>
|
|
1439
|
+
): Paginator<ListTargetGroupsCommandOutput>;
|
|
1440
|
+
paginateListTargets(
|
|
1441
|
+
args: ListTargetsCommandInput,
|
|
1442
|
+
paginationConfig?: Pick<
|
|
1443
|
+
PaginationConfiguration,
|
|
1444
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1445
|
+
>
|
|
1446
|
+
): Paginator<ListTargetsCommandOutput>;
|
|
1338
1447
|
}
|
|
1339
1448
|
export declare class VPCLattice
|
|
1340
1449
|
extends VPCLatticeClient
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-vpc-lattice",
|
|
3
3
|
"description": "AWS SDK for JavaScript Vpc Lattice Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.980.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-vpc-lattice",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.5",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.4",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.5",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.980.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.3",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|