@aws-sdk/client-devops-guru 3.43.0 → 3.47.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 +50 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +96 -45
- package/dist-cjs/protocols/Aws_restJson1.js +379 -0
- package/dist-cjs/runtimeConfig.browser.js +7 -2
- package/dist-cjs/runtimeConfig.js +9 -3
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +65 -28
- package/dist-es/protocols/Aws_restJson1.js +372 -6
- package/dist-es/runtimeConfig.browser.js +12 -3
- package/dist-es/runtimeConfig.js +13 -6
- package/dist-types/DevOpsGuru.d.ts +13 -10
- package/dist-types/DevOpsGuruClient.d.ts +5 -1
- package/dist-types/commands/DescribeResourceCollectionHealthCommand.d.ts +3 -2
- package/dist-types/commands/GetResourceCollectionCommand.d.ts +3 -2
- package/dist-types/commands/SearchOrganizationInsightsCommand.d.ts +4 -4
- package/dist-types/commands/UpdateResourceCollectionCommand.d.ts +3 -2
- package/dist-types/models/models_0.d.ts +1093 -111
- package/dist-types/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/runtimeConfig.d.ts +4 -3
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/DevOpsGuruClient.d.ts +3 -1
- package/dist-types/ts3.4/models/models_0.d.ts +217 -31
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +38 -45
|
@@ -117,8 +117,9 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
|
|
|
117
117
|
/**
|
|
118
118
|
* <p> Returns the number of open proactive insights, open reactive insights, and the Mean Time to Recover (MTTR)
|
|
119
119
|
* for all closed insights in resource collections in your account. You specify the type of
|
|
120
|
-
* Amazon Web Services resources collection. The
|
|
121
|
-
*
|
|
120
|
+
* Amazon Web Services resources collection. The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
121
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
122
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
122
123
|
*/
|
|
123
124
|
describeResourceCollectionHealth(args: DescribeResourceCollectionHealthCommandInput, options?: __HttpHandlerOptions): Promise<DescribeResourceCollectionHealthCommandOutput>;
|
|
124
125
|
describeResourceCollectionHealth(args: DescribeResourceCollectionHealthCommandInput, cb: (err: any, data?: DescribeResourceCollectionHealthCommandOutput) => void): void;
|
|
@@ -143,8 +144,9 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
|
|
|
143
144
|
getCostEstimation(args: GetCostEstimationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCostEstimationCommandOutput) => void): void;
|
|
144
145
|
/**
|
|
145
146
|
* <p> Returns lists Amazon Web Services resources that are of the specified resource collection type.
|
|
146
|
-
* The
|
|
147
|
-
*
|
|
147
|
+
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
148
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
149
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
148
150
|
*/
|
|
149
151
|
getResourceCollection(args: GetResourceCollectionCommandInput, options?: __HttpHandlerOptions): Promise<GetResourceCollectionCommandOutput>;
|
|
150
152
|
getResourceCollection(args: GetResourceCollectionCommandInput, cb: (err: any, data?: GetResourceCollectionCommandOutput) => void): void;
|
|
@@ -223,12 +225,12 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
|
|
|
223
225
|
/**
|
|
224
226
|
* <p> Returns a list of insights in your organization. You can specify which insights are
|
|
225
227
|
* returned by their start time, one or more statuses (<code>ONGOING</code>,
|
|
226
|
-
*
|
|
227
|
-
*
|
|
228
|
-
*
|
|
228
|
+
* <code>CLOSED</code>, and <code>CLOSED</code>), one or more severities
|
|
229
|
+
* (<code>LOW</code>, <code>MEDIUM</code>, and <code>HIGH</code>), and type
|
|
230
|
+
* (<code>REACTIVE</code> or <code>PROACTIVE</code>). </p>
|
|
229
231
|
* <p> Use the <code>Filters</code> parameter to specify status and severity search
|
|
230
232
|
* parameters. Use the <code>Type</code> parameter to specify <code>REACTIVE</code> or
|
|
231
|
-
*
|
|
233
|
+
* <code>PROACTIVE</code> in your search. </p>
|
|
232
234
|
*/
|
|
233
235
|
searchOrganizationInsights(args: SearchOrganizationInsightsCommandInput, options?: __HttpHandlerOptions): Promise<SearchOrganizationInsightsCommandOutput>;
|
|
234
236
|
searchOrganizationInsights(args: SearchOrganizationInsightsCommandInput, cb: (err: any, data?: SearchOrganizationInsightsCommandOutput) => void): void;
|
|
@@ -242,8 +244,9 @@ export declare class DevOpsGuru extends DevOpsGuruClient {
|
|
|
242
244
|
startCostEstimation(args: StartCostEstimationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartCostEstimationCommandOutput) => void): void;
|
|
243
245
|
/**
|
|
244
246
|
* <p> Updates the collection of resources that DevOps Guru analyzes.
|
|
245
|
-
* The
|
|
246
|
-
*
|
|
247
|
+
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
248
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
249
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. This method also creates the IAM role required for
|
|
247
250
|
* you to use DevOps Guru. </p>
|
|
248
251
|
*/
|
|
249
252
|
updateResourceCollection(args: UpdateResourceCollectionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResourceCollectionCommandOutput>;
|
|
@@ -4,7 +4,7 @@ import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry
|
|
|
4
4
|
import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
|
-
import { Client as __Client, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
7
|
+
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
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";
|
|
9
9
|
import { AddNotificationChannelCommandInput, AddNotificationChannelCommandOutput } from "./commands/AddNotificationChannelCommand";
|
|
10
10
|
import { DescribeAccountHealthCommandInput, DescribeAccountHealthCommandOutput } from "./commands/DescribeAccountHealthCommand";
|
|
@@ -134,6 +134,10 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
134
134
|
* @internal
|
|
135
135
|
*/
|
|
136
136
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
137
|
+
/**
|
|
138
|
+
* The {@link DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
139
|
+
*/
|
|
140
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
137
141
|
}
|
|
138
142
|
declare type DevOpsGuruClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
|
|
139
143
|
/**
|
|
@@ -9,8 +9,9 @@ export interface DescribeResourceCollectionHealthCommandOutput extends DescribeR
|
|
|
9
9
|
/**
|
|
10
10
|
* <p> Returns the number of open proactive insights, open reactive insights, and the Mean Time to Recover (MTTR)
|
|
11
11
|
* for all closed insights in resource collections in your account. You specify the type of
|
|
12
|
-
* Amazon Web Services resources collection. The
|
|
13
|
-
*
|
|
12
|
+
* Amazon Web Services resources collection. The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
13
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
14
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
14
15
|
* @example
|
|
15
16
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
17
|
* ```javascript
|
|
@@ -8,8 +8,9 @@ export interface GetResourceCollectionCommandOutput extends GetResourceCollectio
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p> Returns lists Amazon Web Services resources that are of the specified resource collection type.
|
|
11
|
-
* The
|
|
12
|
-
*
|
|
11
|
+
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
12
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
13
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. </p>
|
|
13
14
|
* @example
|
|
14
15
|
* Use a bare-bones client and the command you need to make an API call.
|
|
15
16
|
* ```javascript
|
|
@@ -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
|
|
@@ -8,8 +8,9 @@ export interface UpdateResourceCollectionCommandOutput extends UpdateResourceCol
|
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* <p> Updates the collection of resources that DevOps Guru analyzes.
|
|
11
|
-
* The
|
|
12
|
-
*
|
|
11
|
+
* The two types of Amazon Web Services resource collections supported are Amazon Web Services CloudFormation stacks and
|
|
12
|
+
* Amazon Web Services resources that contain the same Amazon Web Services tag. DevOps Guru can be configured to analyze
|
|
13
|
+
* the Amazon Web Services resources that are defined in the stacks or that are tagged using the same tag <i>key</i>. You can specify up to 500 Amazon Web Services CloudFormation stacks. This method also creates the IAM role required for
|
|
13
14
|
* you to use DevOps Guru. </p>
|
|
14
15
|
* @example
|
|
15
16
|
* Use a bare-bones client and the command you need to make an API call.
|