@aws-sdk/client-devops-guru 3.53.0 → 3.54.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/CHANGELOG.md +11 -0
- package/dist-cjs/DevOpsGuru.js +30 -0
- package/dist-cjs/commands/DescribeEventSourcesConfigCommand.js +36 -0
- package/dist-cjs/commands/UpdateEventSourcesConfigCommand.js +36 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +51 -4
- package/dist-cjs/protocols/Aws_restJson1.js +180 -2
- package/dist-es/DevOpsGuru.js +30 -0
- package/dist-es/commands/DescribeEventSourcesConfigCommand.js +39 -0
- package/dist-es/commands/UpdateEventSourcesConfigCommand.js +39 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +33 -0
- package/dist-es/protocols/Aws_restJson1.js +224 -0
- package/dist-types/DevOpsGuru.d.ts +19 -4
- package/dist-types/DevOpsGuruClient.d.ts +6 -4
- package/dist-types/commands/DescribeEventSourcesConfigCommand.d.ts +36 -0
- package/dist-types/commands/SearchOrganizationInsightsCommand.d.ts +4 -4
- package/dist-types/commands/UpdateEventSourcesConfigCommand.d.ts +35 -0
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +343 -198
- package/dist-types/protocols/Aws_restJson1.d.ts +6 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/DevOpsGuru.d.ts +10 -0
- package/dist-types/ts3.4/DevOpsGuruClient.d.ts +6 -4
- package/dist-types/ts3.4/commands/DescribeEventSourcesConfigCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateEventSourcesConfigCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +77 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +6 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
|
@@ -4,6 +4,7 @@ import { AddNotificationChannelCommandInput, AddNotificationChannelCommandOutput
|
|
|
4
4
|
import { DescribeAccountHealthCommandInput, DescribeAccountHealthCommandOutput } from "../commands/DescribeAccountHealthCommand";
|
|
5
5
|
import { DescribeAccountOverviewCommandInput, DescribeAccountOverviewCommandOutput } from "../commands/DescribeAccountOverviewCommand";
|
|
6
6
|
import { DescribeAnomalyCommandInput, DescribeAnomalyCommandOutput } from "../commands/DescribeAnomalyCommand";
|
|
7
|
+
import { DescribeEventSourcesConfigCommandInput, DescribeEventSourcesConfigCommandOutput } from "../commands/DescribeEventSourcesConfigCommand";
|
|
7
8
|
import { DescribeFeedbackCommandInput, DescribeFeedbackCommandOutput } from "../commands/DescribeFeedbackCommand";
|
|
8
9
|
import { DescribeInsightCommandInput, DescribeInsightCommandOutput } from "../commands/DescribeInsightCommand";
|
|
9
10
|
import { DescribeOrganizationHealthCommandInput, DescribeOrganizationHealthCommandOutput } from "../commands/DescribeOrganizationHealthCommand";
|
|
@@ -24,12 +25,14 @@ import { RemoveNotificationChannelCommandInput, RemoveNotificationChannelCommand
|
|
|
24
25
|
import { SearchInsightsCommandInput, SearchInsightsCommandOutput } from "../commands/SearchInsightsCommand";
|
|
25
26
|
import { SearchOrganizationInsightsCommandInput, SearchOrganizationInsightsCommandOutput } from "../commands/SearchOrganizationInsightsCommand";
|
|
26
27
|
import { StartCostEstimationCommandInput, StartCostEstimationCommandOutput } from "../commands/StartCostEstimationCommand";
|
|
28
|
+
import { UpdateEventSourcesConfigCommandInput, UpdateEventSourcesConfigCommandOutput } from "../commands/UpdateEventSourcesConfigCommand";
|
|
27
29
|
import { UpdateResourceCollectionCommandInput, UpdateResourceCollectionCommandOutput } from "../commands/UpdateResourceCollectionCommand";
|
|
28
30
|
import { UpdateServiceIntegrationCommandInput, UpdateServiceIntegrationCommandOutput } from "../commands/UpdateServiceIntegrationCommand";
|
|
29
31
|
export declare const serializeAws_restJson1AddNotificationChannelCommand: (input: AddNotificationChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
32
|
export declare const serializeAws_restJson1DescribeAccountHealthCommand: (input: DescribeAccountHealthCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
33
|
export declare const serializeAws_restJson1DescribeAccountOverviewCommand: (input: DescribeAccountOverviewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
34
|
export declare const serializeAws_restJson1DescribeAnomalyCommand: (input: DescribeAnomalyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
|
+
export declare const serializeAws_restJson1DescribeEventSourcesConfigCommand: (input: DescribeEventSourcesConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
36
|
export declare const serializeAws_restJson1DescribeFeedbackCommand: (input: DescribeFeedbackCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
37
|
export declare const serializeAws_restJson1DescribeInsightCommand: (input: DescribeInsightCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
38
|
export declare const serializeAws_restJson1DescribeOrganizationHealthCommand: (input: DescribeOrganizationHealthCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -50,12 +53,14 @@ export declare const serializeAws_restJson1RemoveNotificationChannelCommand: (in
|
|
|
50
53
|
export declare const serializeAws_restJson1SearchInsightsCommand: (input: SearchInsightsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
54
|
export declare const serializeAws_restJson1SearchOrganizationInsightsCommand: (input: SearchOrganizationInsightsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
55
|
export declare const serializeAws_restJson1StartCostEstimationCommand: (input: StartCostEstimationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
|
+
export declare const serializeAws_restJson1UpdateEventSourcesConfigCommand: (input: UpdateEventSourcesConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
57
|
export declare const serializeAws_restJson1UpdateResourceCollectionCommand: (input: UpdateResourceCollectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
58
|
export declare const serializeAws_restJson1UpdateServiceIntegrationCommand: (input: UpdateServiceIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
59
|
export declare const deserializeAws_restJson1AddNotificationChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddNotificationChannelCommandOutput>;
|
|
56
60
|
export declare const deserializeAws_restJson1DescribeAccountHealthCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAccountHealthCommandOutput>;
|
|
57
61
|
export declare const deserializeAws_restJson1DescribeAccountOverviewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAccountOverviewCommandOutput>;
|
|
58
62
|
export declare const deserializeAws_restJson1DescribeAnomalyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAnomalyCommandOutput>;
|
|
63
|
+
export declare const deserializeAws_restJson1DescribeEventSourcesConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEventSourcesConfigCommandOutput>;
|
|
59
64
|
export declare const deserializeAws_restJson1DescribeFeedbackCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFeedbackCommandOutput>;
|
|
60
65
|
export declare const deserializeAws_restJson1DescribeInsightCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeInsightCommandOutput>;
|
|
61
66
|
export declare const deserializeAws_restJson1DescribeOrganizationHealthCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeOrganizationHealthCommandOutput>;
|
|
@@ -76,5 +81,6 @@ export declare const deserializeAws_restJson1RemoveNotificationChannelCommand: (
|
|
|
76
81
|
export declare const deserializeAws_restJson1SearchInsightsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchInsightsCommandOutput>;
|
|
77
82
|
export declare const deserializeAws_restJson1SearchOrganizationInsightsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchOrganizationInsightsCommandOutput>;
|
|
78
83
|
export declare const deserializeAws_restJson1StartCostEstimationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartCostEstimationCommandOutput>;
|
|
84
|
+
export declare const deserializeAws_restJson1UpdateEventSourcesConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEventSourcesConfigCommandOutput>;
|
|
79
85
|
export declare const deserializeAws_restJson1UpdateResourceCollectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateResourceCollectionCommandOutput>;
|
|
80
86
|
export declare const deserializeAws_restJson1UpdateServiceIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateServiceIntegrationCommandOutput>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: DevOpsGuruClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: DevOpsGuruClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: DevOpsGuruClientConfig) => {
|
|
|
8
8
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
14
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
@@ -3,6 +3,7 @@ import { AddNotificationChannelCommandInput, AddNotificationChannelCommandOutput
|
|
|
3
3
|
import { DescribeAccountHealthCommandInput, DescribeAccountHealthCommandOutput } from "./commands/DescribeAccountHealthCommand";
|
|
4
4
|
import { DescribeAccountOverviewCommandInput, DescribeAccountOverviewCommandOutput } from "./commands/DescribeAccountOverviewCommand";
|
|
5
5
|
import { DescribeAnomalyCommandInput, DescribeAnomalyCommandOutput } from "./commands/DescribeAnomalyCommand";
|
|
6
|
+
import { DescribeEventSourcesConfigCommandInput, DescribeEventSourcesConfigCommandOutput } from "./commands/DescribeEventSourcesConfigCommand";
|
|
6
7
|
import { DescribeFeedbackCommandInput, DescribeFeedbackCommandOutput } from "./commands/DescribeFeedbackCommand";
|
|
7
8
|
import { DescribeInsightCommandInput, DescribeInsightCommandOutput } from "./commands/DescribeInsightCommand";
|
|
8
9
|
import { DescribeOrganizationHealthCommandInput, DescribeOrganizationHealthCommandOutput } from "./commands/DescribeOrganizationHealthCommand";
|
|
@@ -23,6 +24,7 @@ import { RemoveNotificationChannelCommandInput, RemoveNotificationChannelCommand
|
|
|
23
24
|
import { SearchInsightsCommandInput, SearchInsightsCommandOutput } from "./commands/SearchInsightsCommand";
|
|
24
25
|
import { SearchOrganizationInsightsCommandInput, SearchOrganizationInsightsCommandOutput } from "./commands/SearchOrganizationInsightsCommand";
|
|
25
26
|
import { StartCostEstimationCommandInput, StartCostEstimationCommandOutput } from "./commands/StartCostEstimationCommand";
|
|
27
|
+
import { UpdateEventSourcesConfigCommandInput, UpdateEventSourcesConfigCommandOutput } from "./commands/UpdateEventSourcesConfigCommand";
|
|
26
28
|
import { UpdateResourceCollectionCommandInput, UpdateResourceCollectionCommandOutput } from "./commands/UpdateResourceCollectionCommand";
|
|
27
29
|
import { UpdateServiceIntegrationCommandInput, UpdateServiceIntegrationCommandOutput } from "./commands/UpdateServiceIntegrationCommand";
|
|
28
30
|
import { DevOpsGuruClient } from "./DevOpsGuruClient";
|
|
@@ -45,6 +47,10 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
|
|
|
45
47
|
describeAnomaly(args: DescribeAnomalyCommandInput, cb: (err: any, data?: DescribeAnomalyCommandOutput) => void): void;
|
|
46
48
|
describeAnomaly(args: DescribeAnomalyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeAnomalyCommandOutput) => void): void;
|
|
47
49
|
|
|
50
|
+
describeEventSourcesConfig(args: DescribeEventSourcesConfigCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEventSourcesConfigCommandOutput>;
|
|
51
|
+
describeEventSourcesConfig(args: DescribeEventSourcesConfigCommandInput, cb: (err: any, data?: DescribeEventSourcesConfigCommandOutput) => void): void;
|
|
52
|
+
describeEventSourcesConfig(args: DescribeEventSourcesConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEventSourcesConfigCommandOutput) => void): void;
|
|
53
|
+
|
|
48
54
|
describeFeedback(args: DescribeFeedbackCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFeedbackCommandOutput>;
|
|
49
55
|
describeFeedback(args: DescribeFeedbackCommandInput, cb: (err: any, data?: DescribeFeedbackCommandOutput) => void): void;
|
|
50
56
|
describeFeedback(args: DescribeFeedbackCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFeedbackCommandOutput) => void): void;
|
|
@@ -125,6 +131,10 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
|
|
|
125
131
|
startCostEstimation(args: StartCostEstimationCommandInput, cb: (err: any, data?: StartCostEstimationCommandOutput) => void): void;
|
|
126
132
|
startCostEstimation(args: StartCostEstimationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartCostEstimationCommandOutput) => void): void;
|
|
127
133
|
|
|
134
|
+
updateEventSourcesConfig(args: UpdateEventSourcesConfigCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEventSourcesConfigCommandOutput>;
|
|
135
|
+
updateEventSourcesConfig(args: UpdateEventSourcesConfigCommandInput, cb: (err: any, data?: UpdateEventSourcesConfigCommandOutput) => void): void;
|
|
136
|
+
updateEventSourcesConfig(args: UpdateEventSourcesConfigCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEventSourcesConfigCommandOutput) => void): void;
|
|
137
|
+
|
|
128
138
|
updateResourceCollection(args: UpdateResourceCollectionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResourceCollectionCommandOutput>;
|
|
129
139
|
updateResourceCollection(args: UpdateResourceCollectionCommandInput, cb: (err: any, data?: UpdateResourceCollectionCommandOutput) => void): void;
|
|
130
140
|
updateResourceCollection(args: UpdateResourceCollectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateResourceCollectionCommandOutput) => void): void;
|
|
@@ -5,11 +5,12 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AddNotificationChannelCommandInput, AddNotificationChannelCommandOutput } from "./commands/AddNotificationChannelCommand";
|
|
10
10
|
import { DescribeAccountHealthCommandInput, DescribeAccountHealthCommandOutput } from "./commands/DescribeAccountHealthCommand";
|
|
11
11
|
import { DescribeAccountOverviewCommandInput, DescribeAccountOverviewCommandOutput } from "./commands/DescribeAccountOverviewCommand";
|
|
12
12
|
import { DescribeAnomalyCommandInput, DescribeAnomalyCommandOutput } from "./commands/DescribeAnomalyCommand";
|
|
13
|
+
import { DescribeEventSourcesConfigCommandInput, DescribeEventSourcesConfigCommandOutput } from "./commands/DescribeEventSourcesConfigCommand";
|
|
13
14
|
import { DescribeFeedbackCommandInput, DescribeFeedbackCommandOutput } from "./commands/DescribeFeedbackCommand";
|
|
14
15
|
import { DescribeInsightCommandInput, DescribeInsightCommandOutput } from "./commands/DescribeInsightCommand";
|
|
15
16
|
import { DescribeOrganizationHealthCommandInput, DescribeOrganizationHealthCommandOutput } from "./commands/DescribeOrganizationHealthCommand";
|
|
@@ -30,10 +31,11 @@ import { RemoveNotificationChannelCommandInput, RemoveNotificationChannelCommand
|
|
|
30
31
|
import { SearchInsightsCommandInput, SearchInsightsCommandOutput } from "./commands/SearchInsightsCommand";
|
|
31
32
|
import { SearchOrganizationInsightsCommandInput, SearchOrganizationInsightsCommandOutput } from "./commands/SearchOrganizationInsightsCommand";
|
|
32
33
|
import { StartCostEstimationCommandInput, StartCostEstimationCommandOutput } from "./commands/StartCostEstimationCommand";
|
|
34
|
+
import { UpdateEventSourcesConfigCommandInput, UpdateEventSourcesConfigCommandOutput } from "./commands/UpdateEventSourcesConfigCommand";
|
|
33
35
|
import { UpdateResourceCollectionCommandInput, UpdateResourceCollectionCommandOutput } from "./commands/UpdateResourceCollectionCommand";
|
|
34
36
|
import { UpdateServiceIntegrationCommandInput, UpdateServiceIntegrationCommandOutput } from "./commands/UpdateServiceIntegrationCommand";
|
|
35
|
-
export declare type ServiceInputTypes = AddNotificationChannelCommandInput | DescribeAccountHealthCommandInput | DescribeAccountOverviewCommandInput | DescribeAnomalyCommandInput | DescribeFeedbackCommandInput | DescribeInsightCommandInput | DescribeOrganizationHealthCommandInput | DescribeOrganizationOverviewCommandInput | DescribeOrganizationResourceCollectionHealthCommandInput | DescribeResourceCollectionHealthCommandInput | DescribeServiceIntegrationCommandInput | GetCostEstimationCommandInput | GetResourceCollectionCommandInput | ListAnomaliesForInsightCommandInput | ListEventsCommandInput | ListInsightsCommandInput | ListNotificationChannelsCommandInput | ListOrganizationInsightsCommandInput | ListRecommendationsCommandInput | PutFeedbackCommandInput | RemoveNotificationChannelCommandInput | SearchInsightsCommandInput | SearchOrganizationInsightsCommandInput | StartCostEstimationCommandInput | UpdateResourceCollectionCommandInput | UpdateServiceIntegrationCommandInput;
|
|
36
|
-
export declare type ServiceOutputTypes = AddNotificationChannelCommandOutput | DescribeAccountHealthCommandOutput | DescribeAccountOverviewCommandOutput | DescribeAnomalyCommandOutput | DescribeFeedbackCommandOutput | DescribeInsightCommandOutput | DescribeOrganizationHealthCommandOutput | DescribeOrganizationOverviewCommandOutput | DescribeOrganizationResourceCollectionHealthCommandOutput | DescribeResourceCollectionHealthCommandOutput | DescribeServiceIntegrationCommandOutput | GetCostEstimationCommandOutput | GetResourceCollectionCommandOutput | ListAnomaliesForInsightCommandOutput | ListEventsCommandOutput | ListInsightsCommandOutput | ListNotificationChannelsCommandOutput | ListOrganizationInsightsCommandOutput | ListRecommendationsCommandOutput | PutFeedbackCommandOutput | RemoveNotificationChannelCommandOutput | SearchInsightsCommandOutput | SearchOrganizationInsightsCommandOutput | StartCostEstimationCommandOutput | UpdateResourceCollectionCommandOutput | UpdateServiceIntegrationCommandOutput;
|
|
37
|
+
export declare type ServiceInputTypes = AddNotificationChannelCommandInput | DescribeAccountHealthCommandInput | DescribeAccountOverviewCommandInput | DescribeAnomalyCommandInput | DescribeEventSourcesConfigCommandInput | DescribeFeedbackCommandInput | DescribeInsightCommandInput | DescribeOrganizationHealthCommandInput | DescribeOrganizationOverviewCommandInput | DescribeOrganizationResourceCollectionHealthCommandInput | DescribeResourceCollectionHealthCommandInput | DescribeServiceIntegrationCommandInput | GetCostEstimationCommandInput | GetResourceCollectionCommandInput | ListAnomaliesForInsightCommandInput | ListEventsCommandInput | ListInsightsCommandInput | ListNotificationChannelsCommandInput | ListOrganizationInsightsCommandInput | ListRecommendationsCommandInput | PutFeedbackCommandInput | RemoveNotificationChannelCommandInput | SearchInsightsCommandInput | SearchOrganizationInsightsCommandInput | StartCostEstimationCommandInput | UpdateEventSourcesConfigCommandInput | UpdateResourceCollectionCommandInput | UpdateServiceIntegrationCommandInput;
|
|
38
|
+
export declare type ServiceOutputTypes = AddNotificationChannelCommandOutput | DescribeAccountHealthCommandOutput | DescribeAccountOverviewCommandOutput | DescribeAnomalyCommandOutput | DescribeEventSourcesConfigCommandOutput | DescribeFeedbackCommandOutput | DescribeInsightCommandOutput | DescribeOrganizationHealthCommandOutput | DescribeOrganizationOverviewCommandOutput | DescribeOrganizationResourceCollectionHealthCommandOutput | DescribeResourceCollectionHealthCommandOutput | DescribeServiceIntegrationCommandOutput | GetCostEstimationCommandOutput | GetResourceCollectionCommandOutput | ListAnomaliesForInsightCommandOutput | ListEventsCommandOutput | ListInsightsCommandOutput | ListNotificationChannelsCommandOutput | ListOrganizationInsightsCommandOutput | ListRecommendationsCommandOutput | PutFeedbackCommandOutput | RemoveNotificationChannelCommandOutput | SearchInsightsCommandOutput | SearchOrganizationInsightsCommandOutput | StartCostEstimationCommandOutput | UpdateEventSourcesConfigCommandOutput | UpdateResourceCollectionCommandOutput | UpdateServiceIntegrationCommandOutput;
|
|
37
39
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
38
40
|
|
|
39
41
|
requestHandler?: __HttpHandler;
|
|
@@ -42,7 +44,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
42
44
|
|
|
43
45
|
urlParser?: __UrlParser;
|
|
44
46
|
|
|
45
|
-
bodyLengthChecker?:
|
|
47
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
46
48
|
|
|
47
49
|
streamCollector?: __StreamCollector;
|
|
48
50
|
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
4
|
+
import { DescribeEventSourcesConfigRequest, DescribeEventSourcesConfigResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeEventSourcesConfigCommandInput extends DescribeEventSourcesConfigRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeEventSourcesConfigCommandOutput extends DescribeEventSourcesConfigResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeEventSourcesConfigCommand extends $Command<DescribeEventSourcesConfigCommandInput, DescribeEventSourcesConfigCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeEventSourcesConfigCommandInput;
|
|
12
|
+
constructor(input: DescribeEventSourcesConfigCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeEventSourcesConfigCommandInput, DescribeEventSourcesConfigCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { DevOpsGuruClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DevOpsGuruClient";
|
|
4
|
+
import { UpdateEventSourcesConfigRequest, UpdateEventSourcesConfigResponse } from "../models/models_0";
|
|
5
|
+
export interface UpdateEventSourcesConfigCommandInput extends UpdateEventSourcesConfigRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UpdateEventSourcesConfigCommandOutput extends UpdateEventSourcesConfigResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class UpdateEventSourcesConfigCommand extends $Command<UpdateEventSourcesConfigCommandInput, UpdateEventSourcesConfigCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
11
|
+
readonly input: UpdateEventSourcesConfigCommandInput;
|
|
12
|
+
constructor(input: UpdateEventSourcesConfigCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateEventSourcesConfigCommandInput, UpdateEventSourcesConfigCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -2,6 +2,7 @@ export * from "./AddNotificationChannelCommand";
|
|
|
2
2
|
export * from "./DescribeAccountHealthCommand";
|
|
3
3
|
export * from "./DescribeAccountOverviewCommand";
|
|
4
4
|
export * from "./DescribeAnomalyCommand";
|
|
5
|
+
export * from "./DescribeEventSourcesConfigCommand";
|
|
5
6
|
export * from "./DescribeFeedbackCommand";
|
|
6
7
|
export * from "./DescribeInsightCommand";
|
|
7
8
|
export * from "./DescribeOrganizationHealthCommand";
|
|
@@ -22,5 +23,6 @@ export * from "./RemoveNotificationChannelCommand";
|
|
|
22
23
|
export * from "./SearchInsightsCommand";
|
|
23
24
|
export * from "./SearchOrganizationInsightsCommand";
|
|
24
25
|
export * from "./StartCostEstimationCommand";
|
|
26
|
+
export * from "./UpdateEventSourcesConfigCommand";
|
|
25
27
|
export * from "./UpdateResourceCollectionCommand";
|
|
26
28
|
export * from "./UpdateServiceIntegrationCommand";
|
|
@@ -152,6 +152,19 @@ export declare class ValidationException extends __BaseException {
|
|
|
152
152
|
|
|
153
153
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
154
154
|
}
|
|
155
|
+
export declare enum EventSourceOptInStatus {
|
|
156
|
+
DISABLED = "DISABLED",
|
|
157
|
+
ENABLED = "ENABLED"
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
export interface AmazonCodeGuruProfilerIntegration {
|
|
161
|
+
|
|
162
|
+
Status?: EventSourceOptInStatus | string;
|
|
163
|
+
}
|
|
164
|
+
export declare namespace AmazonCodeGuruProfilerIntegration {
|
|
165
|
+
|
|
166
|
+
const filterSensitiveLog: (obj: AmazonCodeGuruProfilerIntegration) => any;
|
|
167
|
+
}
|
|
155
168
|
|
|
156
169
|
export interface AnomalyReportedTimeRange {
|
|
157
170
|
|
|
@@ -357,6 +370,19 @@ export declare namespace AnomalySourceDetails {
|
|
|
357
370
|
|
|
358
371
|
const filterSensitiveLog: (obj: AnomalySourceDetails) => any;
|
|
359
372
|
}
|
|
373
|
+
|
|
374
|
+
export interface AnomalySourceMetadata {
|
|
375
|
+
|
|
376
|
+
Source?: string;
|
|
377
|
+
|
|
378
|
+
SourceResourceName?: string;
|
|
379
|
+
|
|
380
|
+
SourceResourceType?: string;
|
|
381
|
+
}
|
|
382
|
+
export declare namespace AnomalySourceMetadata {
|
|
383
|
+
|
|
384
|
+
const filterSensitiveLog: (obj: AnomalySourceMetadata) => any;
|
|
385
|
+
}
|
|
360
386
|
export declare enum AnomalyStatus {
|
|
361
387
|
CLOSED = "CLOSED",
|
|
362
388
|
ONGOING = "ONGOING"
|
|
@@ -494,6 +520,10 @@ export interface ProactiveAnomaly {
|
|
|
494
520
|
ResourceCollection?: ResourceCollection;
|
|
495
521
|
|
|
496
522
|
Limit?: number;
|
|
523
|
+
|
|
524
|
+
SourceMetadata?: AnomalySourceMetadata;
|
|
525
|
+
|
|
526
|
+
AnomalyResources?: AnomalyResource[];
|
|
497
527
|
}
|
|
498
528
|
export declare namespace ProactiveAnomaly {
|
|
499
529
|
|
|
@@ -542,6 +572,29 @@ export declare namespace DescribeAnomalyResponse {
|
|
|
542
572
|
|
|
543
573
|
const filterSensitiveLog: (obj: DescribeAnomalyResponse) => any;
|
|
544
574
|
}
|
|
575
|
+
export interface DescribeEventSourcesConfigRequest {
|
|
576
|
+
}
|
|
577
|
+
export declare namespace DescribeEventSourcesConfigRequest {
|
|
578
|
+
|
|
579
|
+
const filterSensitiveLog: (obj: DescribeEventSourcesConfigRequest) => any;
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
export interface EventSourcesConfig {
|
|
583
|
+
|
|
584
|
+
AmazonCodeGuruProfiler?: AmazonCodeGuruProfilerIntegration;
|
|
585
|
+
}
|
|
586
|
+
export declare namespace EventSourcesConfig {
|
|
587
|
+
|
|
588
|
+
const filterSensitiveLog: (obj: EventSourcesConfig) => any;
|
|
589
|
+
}
|
|
590
|
+
export interface DescribeEventSourcesConfigResponse {
|
|
591
|
+
|
|
592
|
+
EventSources?: EventSourcesConfig;
|
|
593
|
+
}
|
|
594
|
+
export declare namespace DescribeEventSourcesConfigResponse {
|
|
595
|
+
|
|
596
|
+
const filterSensitiveLog: (obj: DescribeEventSourcesConfigResponse) => any;
|
|
597
|
+
}
|
|
545
598
|
export interface DescribeFeedbackRequest {
|
|
546
599
|
|
|
547
600
|
InsightId?: string;
|
|
@@ -624,6 +677,8 @@ export interface ProactiveInsight {
|
|
|
624
677
|
ResourceCollection?: ResourceCollection;
|
|
625
678
|
|
|
626
679
|
SsmOpsItemId?: string;
|
|
680
|
+
|
|
681
|
+
Description?: string;
|
|
627
682
|
}
|
|
628
683
|
export declare namespace ProactiveInsight {
|
|
629
684
|
|
|
@@ -645,6 +700,8 @@ export interface ReactiveInsight {
|
|
|
645
700
|
ResourceCollection?: ResourceCollection;
|
|
646
701
|
|
|
647
702
|
SsmOpsItemId?: string;
|
|
703
|
+
|
|
704
|
+
Description?: string;
|
|
648
705
|
}
|
|
649
706
|
export declare namespace ReactiveInsight {
|
|
650
707
|
|
|
@@ -1092,6 +1149,10 @@ export interface ProactiveAnomalySummary {
|
|
|
1092
1149
|
ResourceCollection?: ResourceCollection;
|
|
1093
1150
|
|
|
1094
1151
|
Limit?: number;
|
|
1152
|
+
|
|
1153
|
+
SourceMetadata?: AnomalySourceMetadata;
|
|
1154
|
+
|
|
1155
|
+
AnomalyResources?: AnomalyResource[];
|
|
1095
1156
|
}
|
|
1096
1157
|
export declare namespace ProactiveAnomalySummary {
|
|
1097
1158
|
|
|
@@ -1599,6 +1660,8 @@ export interface Recommendation {
|
|
|
1599
1660
|
RelatedEvents?: RecommendationRelatedEvent[];
|
|
1600
1661
|
|
|
1601
1662
|
RelatedAnomalies?: RecommendationRelatedAnomaly[];
|
|
1663
|
+
|
|
1664
|
+
Category?: string;
|
|
1602
1665
|
}
|
|
1603
1666
|
export declare namespace Recommendation {
|
|
1604
1667
|
|
|
@@ -1746,6 +1809,20 @@ export declare namespace StartCostEstimationResponse {
|
|
|
1746
1809
|
|
|
1747
1810
|
const filterSensitiveLog: (obj: StartCostEstimationResponse) => any;
|
|
1748
1811
|
}
|
|
1812
|
+
export interface UpdateEventSourcesConfigRequest {
|
|
1813
|
+
|
|
1814
|
+
EventSources?: EventSourcesConfig;
|
|
1815
|
+
}
|
|
1816
|
+
export declare namespace UpdateEventSourcesConfigRequest {
|
|
1817
|
+
|
|
1818
|
+
const filterSensitiveLog: (obj: UpdateEventSourcesConfigRequest) => any;
|
|
1819
|
+
}
|
|
1820
|
+
export interface UpdateEventSourcesConfigResponse {
|
|
1821
|
+
}
|
|
1822
|
+
export declare namespace UpdateEventSourcesConfigResponse {
|
|
1823
|
+
|
|
1824
|
+
const filterSensitiveLog: (obj: UpdateEventSourcesConfigResponse) => any;
|
|
1825
|
+
}
|
|
1749
1826
|
export declare enum UpdateResourceCollectionAction {
|
|
1750
1827
|
ADD = "ADD",
|
|
1751
1828
|
REMOVE = "REMOVE"
|
|
@@ -4,6 +4,7 @@ import { AddNotificationChannelCommandInput, AddNotificationChannelCommandOutput
|
|
|
4
4
|
import { DescribeAccountHealthCommandInput, DescribeAccountHealthCommandOutput } from "../commands/DescribeAccountHealthCommand";
|
|
5
5
|
import { DescribeAccountOverviewCommandInput, DescribeAccountOverviewCommandOutput } from "../commands/DescribeAccountOverviewCommand";
|
|
6
6
|
import { DescribeAnomalyCommandInput, DescribeAnomalyCommandOutput } from "../commands/DescribeAnomalyCommand";
|
|
7
|
+
import { DescribeEventSourcesConfigCommandInput, DescribeEventSourcesConfigCommandOutput } from "../commands/DescribeEventSourcesConfigCommand";
|
|
7
8
|
import { DescribeFeedbackCommandInput, DescribeFeedbackCommandOutput } from "../commands/DescribeFeedbackCommand";
|
|
8
9
|
import { DescribeInsightCommandInput, DescribeInsightCommandOutput } from "../commands/DescribeInsightCommand";
|
|
9
10
|
import { DescribeOrganizationHealthCommandInput, DescribeOrganizationHealthCommandOutput } from "../commands/DescribeOrganizationHealthCommand";
|
|
@@ -24,12 +25,14 @@ import { RemoveNotificationChannelCommandInput, RemoveNotificationChannelCommand
|
|
|
24
25
|
import { SearchInsightsCommandInput, SearchInsightsCommandOutput } from "../commands/SearchInsightsCommand";
|
|
25
26
|
import { SearchOrganizationInsightsCommandInput, SearchOrganizationInsightsCommandOutput } from "../commands/SearchOrganizationInsightsCommand";
|
|
26
27
|
import { StartCostEstimationCommandInput, StartCostEstimationCommandOutput } from "../commands/StartCostEstimationCommand";
|
|
28
|
+
import { UpdateEventSourcesConfigCommandInput, UpdateEventSourcesConfigCommandOutput } from "../commands/UpdateEventSourcesConfigCommand";
|
|
27
29
|
import { UpdateResourceCollectionCommandInput, UpdateResourceCollectionCommandOutput } from "../commands/UpdateResourceCollectionCommand";
|
|
28
30
|
import { UpdateServiceIntegrationCommandInput, UpdateServiceIntegrationCommandOutput } from "../commands/UpdateServiceIntegrationCommand";
|
|
29
31
|
export declare const serializeAws_restJson1AddNotificationChannelCommand: (input: AddNotificationChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
32
|
export declare const serializeAws_restJson1DescribeAccountHealthCommand: (input: DescribeAccountHealthCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
33
|
export declare const serializeAws_restJson1DescribeAccountOverviewCommand: (input: DescribeAccountOverviewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
34
|
export declare const serializeAws_restJson1DescribeAnomalyCommand: (input: DescribeAnomalyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
|
+
export declare const serializeAws_restJson1DescribeEventSourcesConfigCommand: (input: DescribeEventSourcesConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
36
|
export declare const serializeAws_restJson1DescribeFeedbackCommand: (input: DescribeFeedbackCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
37
|
export declare const serializeAws_restJson1DescribeInsightCommand: (input: DescribeInsightCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
38
|
export declare const serializeAws_restJson1DescribeOrganizationHealthCommand: (input: DescribeOrganizationHealthCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -50,12 +53,14 @@ export declare const serializeAws_restJson1RemoveNotificationChannelCommand: (in
|
|
|
50
53
|
export declare const serializeAws_restJson1SearchInsightsCommand: (input: SearchInsightsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
51
54
|
export declare const serializeAws_restJson1SearchOrganizationInsightsCommand: (input: SearchOrganizationInsightsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
55
|
export declare const serializeAws_restJson1StartCostEstimationCommand: (input: StartCostEstimationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
|
+
export declare const serializeAws_restJson1UpdateEventSourcesConfigCommand: (input: UpdateEventSourcesConfigCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
57
|
export declare const serializeAws_restJson1UpdateResourceCollectionCommand: (input: UpdateResourceCollectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
58
|
export declare const serializeAws_restJson1UpdateServiceIntegrationCommand: (input: UpdateServiceIntegrationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
55
59
|
export declare const deserializeAws_restJson1AddNotificationChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddNotificationChannelCommandOutput>;
|
|
56
60
|
export declare const deserializeAws_restJson1DescribeAccountHealthCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAccountHealthCommandOutput>;
|
|
57
61
|
export declare const deserializeAws_restJson1DescribeAccountOverviewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAccountOverviewCommandOutput>;
|
|
58
62
|
export declare const deserializeAws_restJson1DescribeAnomalyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAnomalyCommandOutput>;
|
|
63
|
+
export declare const deserializeAws_restJson1DescribeEventSourcesConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEventSourcesConfigCommandOutput>;
|
|
59
64
|
export declare const deserializeAws_restJson1DescribeFeedbackCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFeedbackCommandOutput>;
|
|
60
65
|
export declare const deserializeAws_restJson1DescribeInsightCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeInsightCommandOutput>;
|
|
61
66
|
export declare const deserializeAws_restJson1DescribeOrganizationHealthCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeOrganizationHealthCommandOutput>;
|
|
@@ -76,5 +81,6 @@ export declare const deserializeAws_restJson1RemoveNotificationChannelCommand: (
|
|
|
76
81
|
export declare const deserializeAws_restJson1SearchInsightsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchInsightsCommandOutput>;
|
|
77
82
|
export declare const deserializeAws_restJson1SearchOrganizationInsightsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchOrganizationInsightsCommandOutput>;
|
|
78
83
|
export declare const deserializeAws_restJson1StartCostEstimationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartCostEstimationCommandOutput>;
|
|
84
|
+
export declare const deserializeAws_restJson1UpdateEventSourcesConfigCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateEventSourcesConfigCommandOutput>;
|
|
79
85
|
export declare const deserializeAws_restJson1UpdateResourceCollectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateResourceCollectionCommandOutput>;
|
|
80
86
|
export declare const deserializeAws_restJson1UpdateServiceIntegrationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateServiceIntegrationCommandOutput>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: DevOpsGuruClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: DevOpsGuruClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: DevOpsGuruClientConfig) => {
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
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.54.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,34 +18,34 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.0",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.0",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.0",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.0",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.0",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.0",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.0",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.0",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.0",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.0",
|
|
39
|
+
"@aws-sdk/types": "3.54.0",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.0",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.0",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0",
|