@aws-sdk/client-devops-guru 3.42.0 → 3.46.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 +47 -0
- package/dist-cjs/endpoints.js +1 -0
- package/dist-cjs/models/models_0.js +97 -3
- package/dist-cjs/protocols/Aws_restJson1.js +379 -0
- package/dist-cjs/runtimeConfig.js +0 -2
- package/dist-es/endpoints.js +1 -0
- package/dist-es/models/models_0.js +65 -0
- package/dist-es/protocols/Aws_restJson1.js +372 -6
- package/dist-es/runtimeConfig.js +0 -2
- package/dist-types/DevOpsGuru.d.ts +13 -10
- 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 -69
- package/dist-types/ts3.4/models/models_0.d.ts +217 -3
- package/package.json +36 -43
|
@@ -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.
|