-
Notifications
You must be signed in to change notification settings - Fork 585
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(client-elastic-load-balancing-v2): Add paginators for the ELBv2 …
…DescribeListenerCertificates and DescribeRules APIs. Fix broken waiter for the ELBv2 DescribeLoadBalancers API.
- Loading branch information
awstools
committed
Sep 9, 2024
1 parent
f8773ce
commit 292ce40
Showing
7 changed files
with
70 additions
and
9 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
.../client-elastic-load-balancing-v2/src/pagination/DescribeListenerCertificatesPaginator.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// smithy-typescript generated code | ||
import { createPaginator } from "@smithy/core"; | ||
import { Paginator } from "@smithy/types"; | ||
|
||
import { | ||
DescribeListenerCertificatesCommand, | ||
DescribeListenerCertificatesCommandInput, | ||
DescribeListenerCertificatesCommandOutput, | ||
} from "../commands/DescribeListenerCertificatesCommand"; | ||
import { ElasticLoadBalancingV2Client } from "../ElasticLoadBalancingV2Client"; | ||
import { ElasticLoadBalancingV2PaginationConfiguration } from "./Interfaces"; | ||
|
||
/** | ||
* @public | ||
*/ | ||
export const paginateDescribeListenerCertificates: ( | ||
config: ElasticLoadBalancingV2PaginationConfiguration, | ||
input: DescribeListenerCertificatesCommandInput, | ||
...rest: any[] | ||
) => Paginator<DescribeListenerCertificatesCommandOutput> = createPaginator< | ||
ElasticLoadBalancingV2PaginationConfiguration, | ||
DescribeListenerCertificatesCommandInput, | ||
DescribeListenerCertificatesCommandOutput | ||
>(ElasticLoadBalancingV2Client, DescribeListenerCertificatesCommand, "Marker", "NextMarker", ""); |
24 changes: 24 additions & 0 deletions
24
clients/client-elastic-load-balancing-v2/src/pagination/DescribeRulesPaginator.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// smithy-typescript generated code | ||
import { createPaginator } from "@smithy/core"; | ||
import { Paginator } from "@smithy/types"; | ||
|
||
import { | ||
DescribeRulesCommand, | ||
DescribeRulesCommandInput, | ||
DescribeRulesCommandOutput, | ||
} from "../commands/DescribeRulesCommand"; | ||
import { ElasticLoadBalancingV2Client } from "../ElasticLoadBalancingV2Client"; | ||
import { ElasticLoadBalancingV2PaginationConfiguration } from "./Interfaces"; | ||
|
||
/** | ||
* @public | ||
*/ | ||
export const paginateDescribeRules: ( | ||
config: ElasticLoadBalancingV2PaginationConfiguration, | ||
input: DescribeRulesCommandInput, | ||
...rest: any[] | ||
) => Paginator<DescribeRulesCommandOutput> = createPaginator< | ||
ElasticLoadBalancingV2PaginationConfiguration, | ||
DescribeRulesCommandInput, | ||
DescribeRulesCommandOutput | ||
>(ElasticLoadBalancingV2Client, DescribeRulesCommand, "Marker", "NextMarker", ""); |
4 changes: 4 additions & 0 deletions
4
clients/client-elastic-load-balancing-v2/src/pagination/index.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters