@aws-sdk/client-devops-guru 3.974.0 → 3.978.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 +45 -29
- package/dist-es/DevOpsGuru.js +31 -1
- package/dist-types/DevOpsGuru.d.ts +99 -1
- package/dist-types/ts3.4/DevOpsGuru.d.ts +103 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -2005,6 +2005,34 @@ class UpdateServiceIntegrationCommand extends smithyClient.Command
|
|
|
2005
2005
|
.build() {
|
|
2006
2006
|
}
|
|
2007
2007
|
|
|
2008
|
+
const paginateDescribeOrganizationResourceCollectionHealth = core.createPaginator(DevOpsGuruClient, DescribeOrganizationResourceCollectionHealthCommand, "NextToken", "NextToken", "");
|
|
2009
|
+
|
|
2010
|
+
const paginateDescribeResourceCollectionHealth = core.createPaginator(DevOpsGuruClient, DescribeResourceCollectionHealthCommand, "NextToken", "NextToken", "");
|
|
2011
|
+
|
|
2012
|
+
const paginateGetCostEstimation = core.createPaginator(DevOpsGuruClient, GetCostEstimationCommand, "NextToken", "NextToken", "");
|
|
2013
|
+
|
|
2014
|
+
const paginateGetResourceCollection = core.createPaginator(DevOpsGuruClient, GetResourceCollectionCommand, "NextToken", "NextToken", "");
|
|
2015
|
+
|
|
2016
|
+
const paginateListAnomaliesForInsight = core.createPaginator(DevOpsGuruClient, ListAnomaliesForInsightCommand, "NextToken", "NextToken", "MaxResults");
|
|
2017
|
+
|
|
2018
|
+
const paginateListAnomalousLogGroups = core.createPaginator(DevOpsGuruClient, ListAnomalousLogGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2019
|
+
|
|
2020
|
+
const paginateListEvents = core.createPaginator(DevOpsGuruClient, ListEventsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2021
|
+
|
|
2022
|
+
const paginateListInsights = core.createPaginator(DevOpsGuruClient, ListInsightsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2023
|
+
|
|
2024
|
+
const paginateListMonitoredResources = core.createPaginator(DevOpsGuruClient, ListMonitoredResourcesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2025
|
+
|
|
2026
|
+
const paginateListNotificationChannels = core.createPaginator(DevOpsGuruClient, ListNotificationChannelsCommand, "NextToken", "NextToken", "");
|
|
2027
|
+
|
|
2028
|
+
const paginateListOrganizationInsights = core.createPaginator(DevOpsGuruClient, ListOrganizationInsightsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2029
|
+
|
|
2030
|
+
const paginateListRecommendations = core.createPaginator(DevOpsGuruClient, ListRecommendationsCommand, "NextToken", "NextToken", "");
|
|
2031
|
+
|
|
2032
|
+
const paginateSearchInsights = core.createPaginator(DevOpsGuruClient, SearchInsightsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2033
|
+
|
|
2034
|
+
const paginateSearchOrganizationInsights = core.createPaginator(DevOpsGuruClient, SearchOrganizationInsightsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2035
|
+
|
|
2008
2036
|
const commands = {
|
|
2009
2037
|
AddNotificationChannelCommand,
|
|
2010
2038
|
DeleteInsightCommand,
|
|
@@ -2038,37 +2066,25 @@ const commands = {
|
|
|
2038
2066
|
UpdateResourceCollectionCommand,
|
|
2039
2067
|
UpdateServiceIntegrationCommand,
|
|
2040
2068
|
};
|
|
2069
|
+
const paginators = {
|
|
2070
|
+
paginateDescribeOrganizationResourceCollectionHealth,
|
|
2071
|
+
paginateDescribeResourceCollectionHealth,
|
|
2072
|
+
paginateGetCostEstimation,
|
|
2073
|
+
paginateGetResourceCollection,
|
|
2074
|
+
paginateListAnomaliesForInsight,
|
|
2075
|
+
paginateListAnomalousLogGroups,
|
|
2076
|
+
paginateListEvents,
|
|
2077
|
+
paginateListInsights,
|
|
2078
|
+
paginateListMonitoredResources,
|
|
2079
|
+
paginateListNotificationChannels,
|
|
2080
|
+
paginateListOrganizationInsights,
|
|
2081
|
+
paginateListRecommendations,
|
|
2082
|
+
paginateSearchInsights,
|
|
2083
|
+
paginateSearchOrganizationInsights,
|
|
2084
|
+
};
|
|
2041
2085
|
class DevOpsGuru extends DevOpsGuruClient {
|
|
2042
2086
|
}
|
|
2043
|
-
smithyClient.createAggregatedClient(commands, DevOpsGuru);
|
|
2044
|
-
|
|
2045
|
-
const paginateDescribeOrganizationResourceCollectionHealth = core.createPaginator(DevOpsGuruClient, DescribeOrganizationResourceCollectionHealthCommand, "NextToken", "NextToken", "");
|
|
2046
|
-
|
|
2047
|
-
const paginateDescribeResourceCollectionHealth = core.createPaginator(DevOpsGuruClient, DescribeResourceCollectionHealthCommand, "NextToken", "NextToken", "");
|
|
2048
|
-
|
|
2049
|
-
const paginateGetCostEstimation = core.createPaginator(DevOpsGuruClient, GetCostEstimationCommand, "NextToken", "NextToken", "");
|
|
2050
|
-
|
|
2051
|
-
const paginateGetResourceCollection = core.createPaginator(DevOpsGuruClient, GetResourceCollectionCommand, "NextToken", "NextToken", "");
|
|
2052
|
-
|
|
2053
|
-
const paginateListAnomaliesForInsight = core.createPaginator(DevOpsGuruClient, ListAnomaliesForInsightCommand, "NextToken", "NextToken", "MaxResults");
|
|
2054
|
-
|
|
2055
|
-
const paginateListAnomalousLogGroups = core.createPaginator(DevOpsGuruClient, ListAnomalousLogGroupsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2056
|
-
|
|
2057
|
-
const paginateListEvents = core.createPaginator(DevOpsGuruClient, ListEventsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2058
|
-
|
|
2059
|
-
const paginateListInsights = core.createPaginator(DevOpsGuruClient, ListInsightsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2060
|
-
|
|
2061
|
-
const paginateListMonitoredResources = core.createPaginator(DevOpsGuruClient, ListMonitoredResourcesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2062
|
-
|
|
2063
|
-
const paginateListNotificationChannels = core.createPaginator(DevOpsGuruClient, ListNotificationChannelsCommand, "NextToken", "NextToken", "");
|
|
2064
|
-
|
|
2065
|
-
const paginateListOrganizationInsights = core.createPaginator(DevOpsGuruClient, ListOrganizationInsightsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2066
|
-
|
|
2067
|
-
const paginateListRecommendations = core.createPaginator(DevOpsGuruClient, ListRecommendationsCommand, "NextToken", "NextToken", "");
|
|
2068
|
-
|
|
2069
|
-
const paginateSearchInsights = core.createPaginator(DevOpsGuruClient, SearchInsightsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2070
|
-
|
|
2071
|
-
const paginateSearchOrganizationInsights = core.createPaginator(DevOpsGuruClient, SearchOrganizationInsightsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2087
|
+
smithyClient.createAggregatedClient(commands, DevOpsGuru, { paginators });
|
|
2072
2088
|
|
|
2073
2089
|
const NotificationMessageType = {
|
|
2074
2090
|
CLOSED_INSIGHT: "CLOSED_INSIGHT",
|
package/dist-es/DevOpsGuru.js
CHANGED
|
@@ -31,6 +31,20 @@ import { UpdateEventSourcesConfigCommand, } from "./commands/UpdateEventSourcesC
|
|
|
31
31
|
import { UpdateResourceCollectionCommand, } from "./commands/UpdateResourceCollectionCommand";
|
|
32
32
|
import { UpdateServiceIntegrationCommand, } from "./commands/UpdateServiceIntegrationCommand";
|
|
33
33
|
import { DevOpsGuruClient } from "./DevOpsGuruClient";
|
|
34
|
+
import { paginateDescribeOrganizationResourceCollectionHealth, } from "./pagination/DescribeOrganizationResourceCollectionHealthPaginator";
|
|
35
|
+
import { paginateDescribeResourceCollectionHealth } from "./pagination/DescribeResourceCollectionHealthPaginator";
|
|
36
|
+
import { paginateGetCostEstimation } from "./pagination/GetCostEstimationPaginator";
|
|
37
|
+
import { paginateGetResourceCollection } from "./pagination/GetResourceCollectionPaginator";
|
|
38
|
+
import { paginateListAnomaliesForInsight } from "./pagination/ListAnomaliesForInsightPaginator";
|
|
39
|
+
import { paginateListAnomalousLogGroups } from "./pagination/ListAnomalousLogGroupsPaginator";
|
|
40
|
+
import { paginateListEvents } from "./pagination/ListEventsPaginator";
|
|
41
|
+
import { paginateListInsights } from "./pagination/ListInsightsPaginator";
|
|
42
|
+
import { paginateListMonitoredResources } from "./pagination/ListMonitoredResourcesPaginator";
|
|
43
|
+
import { paginateListNotificationChannels } from "./pagination/ListNotificationChannelsPaginator";
|
|
44
|
+
import { paginateListOrganizationInsights } from "./pagination/ListOrganizationInsightsPaginator";
|
|
45
|
+
import { paginateListRecommendations } from "./pagination/ListRecommendationsPaginator";
|
|
46
|
+
import { paginateSearchInsights } from "./pagination/SearchInsightsPaginator";
|
|
47
|
+
import { paginateSearchOrganizationInsights } from "./pagination/SearchOrganizationInsightsPaginator";
|
|
34
48
|
const commands = {
|
|
35
49
|
AddNotificationChannelCommand,
|
|
36
50
|
DeleteInsightCommand,
|
|
@@ -64,6 +78,22 @@ const commands = {
|
|
|
64
78
|
UpdateResourceCollectionCommand,
|
|
65
79
|
UpdateServiceIntegrationCommand,
|
|
66
80
|
};
|
|
81
|
+
const paginators = {
|
|
82
|
+
paginateDescribeOrganizationResourceCollectionHealth,
|
|
83
|
+
paginateDescribeResourceCollectionHealth,
|
|
84
|
+
paginateGetCostEstimation,
|
|
85
|
+
paginateGetResourceCollection,
|
|
86
|
+
paginateListAnomaliesForInsight,
|
|
87
|
+
paginateListAnomalousLogGroups,
|
|
88
|
+
paginateListEvents,
|
|
89
|
+
paginateListInsights,
|
|
90
|
+
paginateListMonitoredResources,
|
|
91
|
+
paginateListNotificationChannels,
|
|
92
|
+
paginateListOrganizationInsights,
|
|
93
|
+
paginateListRecommendations,
|
|
94
|
+
paginateSearchInsights,
|
|
95
|
+
paginateSearchOrganizationInsights,
|
|
96
|
+
};
|
|
67
97
|
export class DevOpsGuru extends DevOpsGuruClient {
|
|
68
98
|
}
|
|
69
|
-
createAggregatedClient(commands, DevOpsGuru);
|
|
99
|
+
createAggregatedClient(commands, DevOpsGuru, { 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 { AddNotificationChannelCommandInput, AddNotificationChannelCommandOutput } from "./commands/AddNotificationChannelCommand";
|
|
3
3
|
import { DeleteInsightCommandInput, DeleteInsightCommandOutput } from "./commands/DeleteInsightCommand";
|
|
4
4
|
import { DescribeAccountHealthCommandInput, DescribeAccountHealthCommandOutput } from "./commands/DescribeAccountHealthCommand";
|
|
@@ -228,6 +228,104 @@ export interface DevOpsGuru {
|
|
|
228
228
|
updateServiceIntegration(args: UpdateServiceIntegrationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateServiceIntegrationCommandOutput>;
|
|
229
229
|
updateServiceIntegration(args: UpdateServiceIntegrationCommandInput, cb: (err: any, data?: UpdateServiceIntegrationCommandOutput) => void): void;
|
|
230
230
|
updateServiceIntegration(args: UpdateServiceIntegrationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateServiceIntegrationCommandOutput) => void): void;
|
|
231
|
+
/**
|
|
232
|
+
* @see {@link DescribeOrganizationResourceCollectionHealthCommand}
|
|
233
|
+
* @param args - command input.
|
|
234
|
+
* @param paginationConfig - optional pagination config.
|
|
235
|
+
* @returns AsyncIterable of {@link DescribeOrganizationResourceCollectionHealthCommandOutput}.
|
|
236
|
+
*/
|
|
237
|
+
paginateDescribeOrganizationResourceCollectionHealth(args: DescribeOrganizationResourceCollectionHealthCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeOrganizationResourceCollectionHealthCommandOutput>;
|
|
238
|
+
/**
|
|
239
|
+
* @see {@link DescribeResourceCollectionHealthCommand}
|
|
240
|
+
* @param args - command input.
|
|
241
|
+
* @param paginationConfig - optional pagination config.
|
|
242
|
+
* @returns AsyncIterable of {@link DescribeResourceCollectionHealthCommandOutput}.
|
|
243
|
+
*/
|
|
244
|
+
paginateDescribeResourceCollectionHealth(args: DescribeResourceCollectionHealthCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<DescribeResourceCollectionHealthCommandOutput>;
|
|
245
|
+
/**
|
|
246
|
+
* @see {@link GetCostEstimationCommand}
|
|
247
|
+
* @param args - command input.
|
|
248
|
+
* @param paginationConfig - optional pagination config.
|
|
249
|
+
* @returns AsyncIterable of {@link GetCostEstimationCommandOutput}.
|
|
250
|
+
*/
|
|
251
|
+
paginateGetCostEstimation(args?: GetCostEstimationCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetCostEstimationCommandOutput>;
|
|
252
|
+
/**
|
|
253
|
+
* @see {@link GetResourceCollectionCommand}
|
|
254
|
+
* @param args - command input.
|
|
255
|
+
* @param paginationConfig - optional pagination config.
|
|
256
|
+
* @returns AsyncIterable of {@link GetResourceCollectionCommandOutput}.
|
|
257
|
+
*/
|
|
258
|
+
paginateGetResourceCollection(args: GetResourceCollectionCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetResourceCollectionCommandOutput>;
|
|
259
|
+
/**
|
|
260
|
+
* @see {@link ListAnomaliesForInsightCommand}
|
|
261
|
+
* @param args - command input.
|
|
262
|
+
* @param paginationConfig - optional pagination config.
|
|
263
|
+
* @returns AsyncIterable of {@link ListAnomaliesForInsightCommandOutput}.
|
|
264
|
+
*/
|
|
265
|
+
paginateListAnomaliesForInsight(args: ListAnomaliesForInsightCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAnomaliesForInsightCommandOutput>;
|
|
266
|
+
/**
|
|
267
|
+
* @see {@link ListAnomalousLogGroupsCommand}
|
|
268
|
+
* @param args - command input.
|
|
269
|
+
* @param paginationConfig - optional pagination config.
|
|
270
|
+
* @returns AsyncIterable of {@link ListAnomalousLogGroupsCommandOutput}.
|
|
271
|
+
*/
|
|
272
|
+
paginateListAnomalousLogGroups(args: ListAnomalousLogGroupsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAnomalousLogGroupsCommandOutput>;
|
|
273
|
+
/**
|
|
274
|
+
* @see {@link ListEventsCommand}
|
|
275
|
+
* @param args - command input.
|
|
276
|
+
* @param paginationConfig - optional pagination config.
|
|
277
|
+
* @returns AsyncIterable of {@link ListEventsCommandOutput}.
|
|
278
|
+
*/
|
|
279
|
+
paginateListEvents(args: ListEventsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEventsCommandOutput>;
|
|
280
|
+
/**
|
|
281
|
+
* @see {@link ListInsightsCommand}
|
|
282
|
+
* @param args - command input.
|
|
283
|
+
* @param paginationConfig - optional pagination config.
|
|
284
|
+
* @returns AsyncIterable of {@link ListInsightsCommandOutput}.
|
|
285
|
+
*/
|
|
286
|
+
paginateListInsights(args: ListInsightsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListInsightsCommandOutput>;
|
|
287
|
+
/**
|
|
288
|
+
* @see {@link ListMonitoredResourcesCommand}
|
|
289
|
+
* @param args - command input.
|
|
290
|
+
* @param paginationConfig - optional pagination config.
|
|
291
|
+
* @returns AsyncIterable of {@link ListMonitoredResourcesCommandOutput}.
|
|
292
|
+
*/
|
|
293
|
+
paginateListMonitoredResources(args?: ListMonitoredResourcesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListMonitoredResourcesCommandOutput>;
|
|
294
|
+
/**
|
|
295
|
+
* @see {@link ListNotificationChannelsCommand}
|
|
296
|
+
* @param args - command input.
|
|
297
|
+
* @param paginationConfig - optional pagination config.
|
|
298
|
+
* @returns AsyncIterable of {@link ListNotificationChannelsCommandOutput}.
|
|
299
|
+
*/
|
|
300
|
+
paginateListNotificationChannels(args?: ListNotificationChannelsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListNotificationChannelsCommandOutput>;
|
|
301
|
+
/**
|
|
302
|
+
* @see {@link ListOrganizationInsightsCommand}
|
|
303
|
+
* @param args - command input.
|
|
304
|
+
* @param paginationConfig - optional pagination config.
|
|
305
|
+
* @returns AsyncIterable of {@link ListOrganizationInsightsCommandOutput}.
|
|
306
|
+
*/
|
|
307
|
+
paginateListOrganizationInsights(args: ListOrganizationInsightsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListOrganizationInsightsCommandOutput>;
|
|
308
|
+
/**
|
|
309
|
+
* @see {@link ListRecommendationsCommand}
|
|
310
|
+
* @param args - command input.
|
|
311
|
+
* @param paginationConfig - optional pagination config.
|
|
312
|
+
* @returns AsyncIterable of {@link ListRecommendationsCommandOutput}.
|
|
313
|
+
*/
|
|
314
|
+
paginateListRecommendations(args: ListRecommendationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListRecommendationsCommandOutput>;
|
|
315
|
+
/**
|
|
316
|
+
* @see {@link SearchInsightsCommand}
|
|
317
|
+
* @param args - command input.
|
|
318
|
+
* @param paginationConfig - optional pagination config.
|
|
319
|
+
* @returns AsyncIterable of {@link SearchInsightsCommandOutput}.
|
|
320
|
+
*/
|
|
321
|
+
paginateSearchInsights(args: SearchInsightsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchInsightsCommandOutput>;
|
|
322
|
+
/**
|
|
323
|
+
* @see {@link SearchOrganizationInsightsCommand}
|
|
324
|
+
* @param args - command input.
|
|
325
|
+
* @param paginationConfig - optional pagination config.
|
|
326
|
+
* @returns AsyncIterable of {@link SearchOrganizationInsightsCommandOutput}.
|
|
327
|
+
*/
|
|
328
|
+
paginateSearchOrganizationInsights(args: SearchOrganizationInsightsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<SearchOrganizationInsightsCommandOutput>;
|
|
231
329
|
}
|
|
232
330
|
/**
|
|
233
331
|
* <p> Amazon DevOps Guru is a fully managed service that helps you identify anomalous behavior in
|
|
@@ -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
|
AddNotificationChannelCommandInput,
|
|
4
8
|
AddNotificationChannelCommandOutput,
|
|
@@ -544,6 +548,104 @@ export interface DevOpsGuru {
|
|
|
544
548
|
options: __HttpHandlerOptions,
|
|
545
549
|
cb: (err: any, data?: UpdateServiceIntegrationCommandOutput) => void
|
|
546
550
|
): void;
|
|
551
|
+
paginateDescribeOrganizationResourceCollectionHealth(
|
|
552
|
+
args: DescribeOrganizationResourceCollectionHealthCommandInput,
|
|
553
|
+
paginationConfig?: Pick<
|
|
554
|
+
PaginationConfiguration,
|
|
555
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
556
|
+
>
|
|
557
|
+
): Paginator<DescribeOrganizationResourceCollectionHealthCommandOutput>;
|
|
558
|
+
paginateDescribeResourceCollectionHealth(
|
|
559
|
+
args: DescribeResourceCollectionHealthCommandInput,
|
|
560
|
+
paginationConfig?: Pick<
|
|
561
|
+
PaginationConfiguration,
|
|
562
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
563
|
+
>
|
|
564
|
+
): Paginator<DescribeResourceCollectionHealthCommandOutput>;
|
|
565
|
+
paginateGetCostEstimation(
|
|
566
|
+
args?: GetCostEstimationCommandInput,
|
|
567
|
+
paginationConfig?: Pick<
|
|
568
|
+
PaginationConfiguration,
|
|
569
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
570
|
+
>
|
|
571
|
+
): Paginator<GetCostEstimationCommandOutput>;
|
|
572
|
+
paginateGetResourceCollection(
|
|
573
|
+
args: GetResourceCollectionCommandInput,
|
|
574
|
+
paginationConfig?: Pick<
|
|
575
|
+
PaginationConfiguration,
|
|
576
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
577
|
+
>
|
|
578
|
+
): Paginator<GetResourceCollectionCommandOutput>;
|
|
579
|
+
paginateListAnomaliesForInsight(
|
|
580
|
+
args: ListAnomaliesForInsightCommandInput,
|
|
581
|
+
paginationConfig?: Pick<
|
|
582
|
+
PaginationConfiguration,
|
|
583
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
584
|
+
>
|
|
585
|
+
): Paginator<ListAnomaliesForInsightCommandOutput>;
|
|
586
|
+
paginateListAnomalousLogGroups(
|
|
587
|
+
args: ListAnomalousLogGroupsCommandInput,
|
|
588
|
+
paginationConfig?: Pick<
|
|
589
|
+
PaginationConfiguration,
|
|
590
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
591
|
+
>
|
|
592
|
+
): Paginator<ListAnomalousLogGroupsCommandOutput>;
|
|
593
|
+
paginateListEvents(
|
|
594
|
+
args: ListEventsCommandInput,
|
|
595
|
+
paginationConfig?: Pick<
|
|
596
|
+
PaginationConfiguration,
|
|
597
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
598
|
+
>
|
|
599
|
+
): Paginator<ListEventsCommandOutput>;
|
|
600
|
+
paginateListInsights(
|
|
601
|
+
args: ListInsightsCommandInput,
|
|
602
|
+
paginationConfig?: Pick<
|
|
603
|
+
PaginationConfiguration,
|
|
604
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
605
|
+
>
|
|
606
|
+
): Paginator<ListInsightsCommandOutput>;
|
|
607
|
+
paginateListMonitoredResources(
|
|
608
|
+
args?: ListMonitoredResourcesCommandInput,
|
|
609
|
+
paginationConfig?: Pick<
|
|
610
|
+
PaginationConfiguration,
|
|
611
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
612
|
+
>
|
|
613
|
+
): Paginator<ListMonitoredResourcesCommandOutput>;
|
|
614
|
+
paginateListNotificationChannels(
|
|
615
|
+
args?: ListNotificationChannelsCommandInput,
|
|
616
|
+
paginationConfig?: Pick<
|
|
617
|
+
PaginationConfiguration,
|
|
618
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
619
|
+
>
|
|
620
|
+
): Paginator<ListNotificationChannelsCommandOutput>;
|
|
621
|
+
paginateListOrganizationInsights(
|
|
622
|
+
args: ListOrganizationInsightsCommandInput,
|
|
623
|
+
paginationConfig?: Pick<
|
|
624
|
+
PaginationConfiguration,
|
|
625
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
626
|
+
>
|
|
627
|
+
): Paginator<ListOrganizationInsightsCommandOutput>;
|
|
628
|
+
paginateListRecommendations(
|
|
629
|
+
args: ListRecommendationsCommandInput,
|
|
630
|
+
paginationConfig?: Pick<
|
|
631
|
+
PaginationConfiguration,
|
|
632
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
633
|
+
>
|
|
634
|
+
): Paginator<ListRecommendationsCommandOutput>;
|
|
635
|
+
paginateSearchInsights(
|
|
636
|
+
args: SearchInsightsCommandInput,
|
|
637
|
+
paginationConfig?: Pick<
|
|
638
|
+
PaginationConfiguration,
|
|
639
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
640
|
+
>
|
|
641
|
+
): Paginator<SearchInsightsCommandOutput>;
|
|
642
|
+
paginateSearchOrganizationInsights(
|
|
643
|
+
args: SearchOrganizationInsightsCommandInput,
|
|
644
|
+
paginationConfig?: Pick<
|
|
645
|
+
PaginationConfiguration,
|
|
646
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
647
|
+
>
|
|
648
|
+
): Paginator<SearchOrganizationInsightsCommandOutput>;
|
|
547
649
|
}
|
|
548
650
|
export declare class DevOpsGuru
|
|
549
651
|
extends DevOpsGuruClient
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-devops-guru",
|
|
3
3
|
"description": "AWS SDK for JavaScript Devops Guru Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.978.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-devops-guru",
|
|
@@ -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.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
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",
|