Skip to content

Commit 13f3347

Browse files
authored
fix: codegen for paginator send commands (#1667)
1 parent 07ac6be commit 13f3347

File tree

1,250 files changed

+1250
-1250
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,250 files changed

+1250
-1250
lines changed

clients/client-accessanalyzer/pagination/ListAnalyzedResourcesPaginator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const makePagedClientRequest = async (
1414
...args: any
1515
): Promise<ListAnalyzedResourcesCommandOutput> => {
1616
// @ts-ignore
17-
return await client.send(new ListAnalyzedResourcesCommand(input, ...args));
17+
return await client.send(new ListAnalyzedResourcesCommand(input), ...args);
1818
};
1919
const makePagedRequest = async (
2020
client: AccessAnalyzer,

clients/client-accessanalyzer/pagination/ListAnalyzersPaginator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const makePagedClientRequest = async (
1414
...args: any
1515
): Promise<ListAnalyzersCommandOutput> => {
1616
// @ts-ignore
17-
return await client.send(new ListAnalyzersCommand(input, ...args));
17+
return await client.send(new ListAnalyzersCommand(input), ...args);
1818
};
1919
const makePagedRequest = async (
2020
client: AccessAnalyzer,

clients/client-accessanalyzer/pagination/ListArchiveRulesPaginator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const makePagedClientRequest = async (
1414
...args: any
1515
): Promise<ListArchiveRulesCommandOutput> => {
1616
// @ts-ignore
17-
return await client.send(new ListArchiveRulesCommand(input, ...args));
17+
return await client.send(new ListArchiveRulesCommand(input), ...args);
1818
};
1919
const makePagedRequest = async (
2020
client: AccessAnalyzer,

clients/client-accessanalyzer/pagination/ListFindingsPaginator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const makePagedClientRequest = async (
1414
...args: any
1515
): Promise<ListFindingsCommandOutput> => {
1616
// @ts-ignore
17-
return await client.send(new ListFindingsCommand(input, ...args));
17+
return await client.send(new ListFindingsCommand(input), ...args);
1818
};
1919
const makePagedRequest = async (
2020
client: AccessAnalyzer,

clients/client-acm-pca/pagination/ListCertificateAuthoritiesPaginator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const makePagedClientRequest = async (
1414
...args: any
1515
): Promise<ListCertificateAuthoritiesCommandOutput> => {
1616
// @ts-ignore
17-
return await client.send(new ListCertificateAuthoritiesCommand(input, ...args));
17+
return await client.send(new ListCertificateAuthoritiesCommand(input), ...args);
1818
};
1919
const makePagedRequest = async (
2020
client: ACMPCA,

clients/client-acm-pca/pagination/ListPermissionsPaginator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const makePagedClientRequest = async (
1414
...args: any
1515
): Promise<ListPermissionsCommandOutput> => {
1616
// @ts-ignore
17-
return await client.send(new ListPermissionsCommand(input, ...args));
17+
return await client.send(new ListPermissionsCommand(input), ...args);
1818
};
1919
const makePagedRequest = async (
2020
client: ACMPCA,

clients/client-acm-pca/pagination/ListTagsPaginator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const makePagedClientRequest = async (
1010
...args: any
1111
): Promise<ListTagsCommandOutput> => {
1212
// @ts-ignore
13-
return await client.send(new ListTagsCommand(input, ...args));
13+
return await client.send(new ListTagsCommand(input), ...args);
1414
};
1515
const makePagedRequest = async (
1616
client: ACMPCA,

clients/client-acm/pagination/ListCertificatesPaginator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const makePagedClientRequest = async (
1414
...args: any
1515
): Promise<ListCertificatesCommandOutput> => {
1616
// @ts-ignore
17-
return await client.send(new ListCertificatesCommand(input, ...args));
17+
return await client.send(new ListCertificatesCommand(input), ...args);
1818
};
1919
const makePagedRequest = async (
2020
client: ACM,

clients/client-alexa-for-business/pagination/ListBusinessReportSchedulesPaginator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const makePagedClientRequest = async (
1414
...args: any
1515
): Promise<ListBusinessReportSchedulesCommandOutput> => {
1616
// @ts-ignore
17-
return await client.send(new ListBusinessReportSchedulesCommand(input, ...args));
17+
return await client.send(new ListBusinessReportSchedulesCommand(input), ...args);
1818
};
1919
const makePagedRequest = async (
2020
client: AlexaForBusiness,

clients/client-alexa-for-business/pagination/ListConferenceProvidersPaginator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const makePagedClientRequest = async (
1414
...args: any
1515
): Promise<ListConferenceProvidersCommandOutput> => {
1616
// @ts-ignore
17-
return await client.send(new ListConferenceProvidersCommand(input, ...args));
17+
return await client.send(new ListConferenceProvidersCommand(input), ...args);
1818
};
1919
const makePagedRequest = async (
2020
client: AlexaForBusiness,

0 commit comments

Comments
 (0)