@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
|
@@ -9,12 +9,12 @@ export interface SearchOrganizationInsightsCommandOutput extends SearchOrganizat
|
|
|
9
9
|
/**
|
|
10
10
|
* <p> Returns a list of insights in your organization. You can specify which insights are
|
|
11
11
|
* returned by their start time, one or more statuses (<code>ONGOING</code>,
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
12
|
+
* <code>CLOSED</code>, and <code>CLOSED</code>), one or more severities
|
|
13
|
+
* (<code>LOW</code>, <code>MEDIUM</code>, and <code>HIGH</code>), and type
|
|
14
|
+
* (<code>REACTIVE</code> or <code>PROACTIVE</code>). </p>
|
|
15
15
|
* <p> Use the <code>Filters</code> parameter to specify status and severity search
|
|
16
16
|
* parameters. Use the <code>Type</code> parameter to specify <code>REACTIVE</code> or
|
|
17
|
-
*
|
|
17
|
+
* <code>PROACTIVE</code> in your search. </p>
|
|
18
18
|
* @example
|
|
19
19
|
* Use a bare-bones client and the command you need to make an API call.
|
|
20
20
|
* ```javascript
|
|
@@ -0,0 +1,35 @@
|
|
|
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
|
+
* <p>Updates the event source configuration.</p>
|
|
11
|
+
* @example
|
|
12
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
13
|
+
* ```javascript
|
|
14
|
+
* import { DevOpsGuruClient, UpdateEventSourcesConfigCommand } from "@aws-sdk/client-devops-guru"; // ES Modules import
|
|
15
|
+
* // const { DevOpsGuruClient, UpdateEventSourcesConfigCommand } = require("@aws-sdk/client-devops-guru"); // CommonJS import
|
|
16
|
+
* const client = new DevOpsGuruClient(config);
|
|
17
|
+
* const command = new UpdateEventSourcesConfigCommand(input);
|
|
18
|
+
* const response = await client.send(command);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* @see {@link UpdateEventSourcesConfigCommandInput} for command's `input` shape.
|
|
22
|
+
* @see {@link UpdateEventSourcesConfigCommandOutput} for command's `response` shape.
|
|
23
|
+
* @see {@link DevOpsGuruClientResolvedConfig | config} for DevOpsGuruClient's `config` shape.
|
|
24
|
+
*
|
|
25
|
+
*/
|
|
26
|
+
export declare class UpdateEventSourcesConfigCommand extends $Command<UpdateEventSourcesConfigCommandInput, UpdateEventSourcesConfigCommandOutput, DevOpsGuruClientResolvedConfig> {
|
|
27
|
+
readonly input: UpdateEventSourcesConfigCommandInput;
|
|
28
|
+
constructor(input: UpdateEventSourcesConfigCommandInput);
|
|
29
|
+
/**
|
|
30
|
+
* @internal
|
|
31
|
+
*/
|
|
32
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DevOpsGuruClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateEventSourcesConfigCommandInput, UpdateEventSourcesConfigCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -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";
|