@aws-sdk/client-application-insights 3.300.0 → 3.301.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.
Files changed (28) hide show
  1. package/dist-types/commands/CreateApplicationCommand.d.ts +3 -3
  2. package/dist-types/commands/CreateComponentCommand.d.ts +2 -2
  3. package/dist-types/commands/CreateLogPatternCommand.d.ts +1 -1
  4. package/dist-types/commands/DeleteApplicationCommand.d.ts +1 -1
  5. package/dist-types/commands/DeleteComponentCommand.d.ts +1 -1
  6. package/dist-types/commands/DeleteLogPatternCommand.d.ts +1 -1
  7. package/dist-types/commands/DescribeApplicationCommand.d.ts +1 -1
  8. package/dist-types/commands/DescribeComponentCommand.d.ts +1 -1
  9. package/dist-types/commands/DescribeComponentConfigurationCommand.d.ts +1 -1
  10. package/dist-types/commands/DescribeComponentConfigurationRecommendationCommand.d.ts +1 -1
  11. package/dist-types/commands/DescribeLogPatternCommand.d.ts +1 -1
  12. package/dist-types/commands/DescribeObservationCommand.d.ts +1 -1
  13. package/dist-types/commands/DescribeProblemCommand.d.ts +1 -1
  14. package/dist-types/commands/DescribeProblemObservationsCommand.d.ts +1 -1
  15. package/dist-types/commands/ListApplicationsCommand.d.ts +1 -1
  16. package/dist-types/commands/ListComponentsCommand.d.ts +1 -1
  17. package/dist-types/commands/ListConfigurationHistoryCommand.d.ts +1 -1
  18. package/dist-types/commands/ListLogPatternSetsCommand.d.ts +1 -1
  19. package/dist-types/commands/ListLogPatternsCommand.d.ts +1 -1
  20. package/dist-types/commands/ListProblemsCommand.d.ts +1 -1
  21. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  22. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  23. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  24. package/dist-types/commands/UpdateApplicationCommand.d.ts +1 -1
  25. package/dist-types/commands/UpdateComponentCommand.d.ts +2 -2
  26. package/dist-types/commands/UpdateComponentConfigurationCommand.d.ts +1 -1
  27. package/dist-types/commands/UpdateLogPatternCommand.d.ts +1 -1
  28. package/package.json +3 -3
@@ -26,13 +26,13 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
26
26
  * import { ApplicationInsightsClient, CreateApplicationCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
27
27
  * // const { ApplicationInsightsClient, CreateApplicationCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
28
28
  * const client = new ApplicationInsightsClient(config);
29
- * const input = {
29
+ * const input = { // CreateApplicationRequest
30
30
  * ResourceGroupName: "STRING_VALUE",
31
31
  * OpsCenterEnabled: true || false,
32
32
  * CWEMonitorEnabled: true || false,
33
33
  * OpsItemSNSTopicArn: "STRING_VALUE",
34
- * Tags: [
35
- * {
34
+ * Tags: [ // TagList
35
+ * { // Tag
36
36
  * Key: "STRING_VALUE", // required
37
37
  * Value: "STRING_VALUE", // required
38
38
  * },
@@ -26,10 +26,10 @@ export interface CreateComponentCommandOutput extends CreateComponentResponse, _
26
26
  * import { ApplicationInsightsClient, CreateComponentCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
27
27
  * // const { ApplicationInsightsClient, CreateComponentCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
28
28
  * const client = new ApplicationInsightsClient(config);
29
- * const input = {
29
+ * const input = { // CreateComponentRequest
30
30
  * ResourceGroupName: "STRING_VALUE", // required
31
31
  * ComponentName: "STRING_VALUE", // required
32
- * ResourceList: [ // required
32
+ * ResourceList: [ // ResourceList // required
33
33
  * "STRING_VALUE",
34
34
  * ],
35
35
  * };
@@ -26,7 +26,7 @@ export interface CreateLogPatternCommandOutput extends CreateLogPatternResponse,
26
26
  * import { ApplicationInsightsClient, CreateLogPatternCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
27
27
  * // const { ApplicationInsightsClient, CreateLogPatternCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
28
28
  * const client = new ApplicationInsightsClient(config);
29
- * const input = {
29
+ * const input = { // CreateLogPatternRequest
30
30
  * ResourceGroupName: "STRING_VALUE", // required
31
31
  * PatternSetName: "STRING_VALUE", // required
32
32
  * PatternName: "STRING_VALUE", // required
@@ -27,7 +27,7 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
27
27
  * import { ApplicationInsightsClient, DeleteApplicationCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
28
28
  * // const { ApplicationInsightsClient, DeleteApplicationCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
29
29
  * const client = new ApplicationInsightsClient(config);
30
- * const input = {
30
+ * const input = { // DeleteApplicationRequest
31
31
  * ResourceGroupName: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new DeleteApplicationCommand(input);
@@ -28,7 +28,7 @@ export interface DeleteComponentCommandOutput extends DeleteComponentResponse, _
28
28
  * import { ApplicationInsightsClient, DeleteComponentCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
29
29
  * // const { ApplicationInsightsClient, DeleteComponentCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
30
30
  * const client = new ApplicationInsightsClient(config);
31
- * const input = {
31
+ * const input = { // DeleteComponentRequest
32
32
  * ResourceGroupName: "STRING_VALUE", // required
33
33
  * ComponentName: "STRING_VALUE", // required
34
34
  * };
@@ -26,7 +26,7 @@ export interface DeleteLogPatternCommandOutput extends DeleteLogPatternResponse,
26
26
  * import { ApplicationInsightsClient, DeleteLogPatternCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
27
27
  * // const { ApplicationInsightsClient, DeleteLogPatternCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
28
28
  * const client = new ApplicationInsightsClient(config);
29
- * const input = {
29
+ * const input = { // DeleteLogPatternRequest
30
30
  * ResourceGroupName: "STRING_VALUE", // required
31
31
  * PatternSetName: "STRING_VALUE", // required
32
32
  * PatternName: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface DescribeApplicationCommandOutput extends DescribeApplicationRes
26
26
  * import { ApplicationInsightsClient, DescribeApplicationCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
27
27
  * // const { ApplicationInsightsClient, DescribeApplicationCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
28
28
  * const client = new ApplicationInsightsClient(config);
29
- * const input = {
29
+ * const input = { // DescribeApplicationRequest
30
30
  * ResourceGroupName: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeApplicationCommand(input);
@@ -27,7 +27,7 @@ export interface DescribeComponentCommandOutput extends DescribeComponentRespons
27
27
  * import { ApplicationInsightsClient, DescribeComponentCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
28
28
  * // const { ApplicationInsightsClient, DescribeComponentCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
29
29
  * const client = new ApplicationInsightsClient(config);
30
- * const input = {
30
+ * const input = { // DescribeComponentRequest
31
31
  * ResourceGroupName: "STRING_VALUE", // required
32
32
  * ComponentName: "STRING_VALUE", // required
33
33
  * };
@@ -26,7 +26,7 @@ export interface DescribeComponentConfigurationCommandOutput extends DescribeCom
26
26
  * import { ApplicationInsightsClient, DescribeComponentConfigurationCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
27
27
  * // const { ApplicationInsightsClient, DescribeComponentConfigurationCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
28
28
  * const client = new ApplicationInsightsClient(config);
29
- * const input = {
29
+ * const input = { // DescribeComponentConfigurationRequest
30
30
  * ResourceGroupName: "STRING_VALUE", // required
31
31
  * ComponentName: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface DescribeComponentConfigurationRecommendationCommandOutput exten
26
26
  * import { ApplicationInsightsClient, DescribeComponentConfigurationRecommendationCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
27
27
  * // const { ApplicationInsightsClient, DescribeComponentConfigurationRecommendationCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
28
28
  * const client = new ApplicationInsightsClient(config);
29
- * const input = {
29
+ * const input = { // DescribeComponentConfigurationRecommendationRequest
30
30
  * ResourceGroupName: "STRING_VALUE", // required
31
31
  * ComponentName: "STRING_VALUE", // required
32
32
  * Tier: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface DescribeLogPatternCommandOutput extends DescribeLogPatternRespo
26
26
  * import { ApplicationInsightsClient, DescribeLogPatternCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
27
27
  * // const { ApplicationInsightsClient, DescribeLogPatternCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
28
28
  * const client = new ApplicationInsightsClient(config);
29
- * const input = {
29
+ * const input = { // DescribeLogPatternRequest
30
30
  * ResourceGroupName: "STRING_VALUE", // required
31
31
  * PatternSetName: "STRING_VALUE", // required
32
32
  * PatternName: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface DescribeObservationCommandOutput extends DescribeObservationRes
26
26
  * import { ApplicationInsightsClient, DescribeObservationCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
27
27
  * // const { ApplicationInsightsClient, DescribeObservationCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
28
28
  * const client = new ApplicationInsightsClient(config);
29
- * const input = {
29
+ * const input = { // DescribeObservationRequest
30
30
  * ObservationId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeObservationCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeProblemCommandOutput extends DescribeProblemResponse, _
26
26
  * import { ApplicationInsightsClient, DescribeProblemCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
27
27
  * // const { ApplicationInsightsClient, DescribeProblemCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
28
28
  * const client = new ApplicationInsightsClient(config);
29
- * const input = {
29
+ * const input = { // DescribeProblemRequest
30
30
  * ProblemId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeProblemCommand(input);
@@ -26,7 +26,7 @@ export interface DescribeProblemObservationsCommandOutput extends DescribeProble
26
26
  * import { ApplicationInsightsClient, DescribeProblemObservationsCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
27
27
  * // const { ApplicationInsightsClient, DescribeProblemObservationsCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
28
28
  * const client = new ApplicationInsightsClient(config);
29
- * const input = {
29
+ * const input = { // DescribeProblemObservationsRequest
30
30
  * ProblemId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DescribeProblemObservationsCommand(input);
@@ -26,7 +26,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
26
26
  * import { ApplicationInsightsClient, ListApplicationsCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
27
27
  * // const { ApplicationInsightsClient, ListApplicationsCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
28
28
  * const client = new ApplicationInsightsClient(config);
29
- * const input = {
29
+ * const input = { // ListApplicationsRequest
30
30
  * MaxResults: Number("int"),
31
31
  * NextToken: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ export interface ListComponentsCommandOutput extends ListComponentsResponse, __M
26
26
  * import { ApplicationInsightsClient, ListComponentsCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
27
27
  * // const { ApplicationInsightsClient, ListComponentsCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
28
28
  * const client = new ApplicationInsightsClient(config);
29
- * const input = {
29
+ * const input = { // ListComponentsRequest
30
30
  * ResourceGroupName: "STRING_VALUE", // required
31
31
  * MaxResults: Number("int"),
32
32
  * NextToken: "STRING_VALUE",
@@ -39,7 +39,7 @@ export interface ListConfigurationHistoryCommandOutput extends ListConfiguration
39
39
  * import { ApplicationInsightsClient, ListConfigurationHistoryCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
40
40
  * // const { ApplicationInsightsClient, ListConfigurationHistoryCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
41
41
  * const client = new ApplicationInsightsClient(config);
42
- * const input = {
42
+ * const input = { // ListConfigurationHistoryRequest
43
43
  * ResourceGroupName: "STRING_VALUE",
44
44
  * StartTime: new Date("TIMESTAMP"),
45
45
  * EndTime: new Date("TIMESTAMP"),
@@ -26,7 +26,7 @@ export interface ListLogPatternSetsCommandOutput extends ListLogPatternSetsRespo
26
26
  * import { ApplicationInsightsClient, ListLogPatternSetsCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
27
27
  * // const { ApplicationInsightsClient, ListLogPatternSetsCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
28
28
  * const client = new ApplicationInsightsClient(config);
29
- * const input = {
29
+ * const input = { // ListLogPatternSetsRequest
30
30
  * ResourceGroupName: "STRING_VALUE", // required
31
31
  * MaxResults: Number("int"),
32
32
  * NextToken: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListLogPatternsCommandOutput extends ListLogPatternsResponse, _
26
26
  * import { ApplicationInsightsClient, ListLogPatternsCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
27
27
  * // const { ApplicationInsightsClient, ListLogPatternsCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
28
28
  * const client = new ApplicationInsightsClient(config);
29
- * const input = {
29
+ * const input = { // ListLogPatternsRequest
30
30
  * ResourceGroupName: "STRING_VALUE", // required
31
31
  * PatternSetName: "STRING_VALUE",
32
32
  * MaxResults: Number("int"),
@@ -26,7 +26,7 @@ export interface ListProblemsCommandOutput extends ListProblemsResponse, __Metad
26
26
  * import { ApplicationInsightsClient, ListProblemsCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
27
27
  * // const { ApplicationInsightsClient, ListProblemsCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
28
28
  * const client = new ApplicationInsightsClient(config);
29
- * const input = {
29
+ * const input = { // ListProblemsRequest
30
30
  * ResourceGroupName: "STRING_VALUE",
31
31
  * StartTime: new Date("TIMESTAMP"),
32
32
  * EndTime: new Date("TIMESTAMP"),
@@ -31,7 +31,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
31
31
  * import { ApplicationInsightsClient, ListTagsForResourceCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
32
32
  * // const { ApplicationInsightsClient, ListTagsForResourceCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
33
33
  * const client = new ApplicationInsightsClient(config);
34
- * const input = {
34
+ * const input = { // ListTagsForResourceRequest
35
35
  * ResourceARN: "STRING_VALUE", // required
36
36
  * };
37
37
  * const command = new ListTagsForResourceCommand(input);
@@ -33,10 +33,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
33
33
  * import { ApplicationInsightsClient, TagResourceCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
34
34
  * // const { ApplicationInsightsClient, TagResourceCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
35
35
  * const client = new ApplicationInsightsClient(config);
36
- * const input = {
36
+ * const input = { // TagResourceRequest
37
37
  * ResourceARN: "STRING_VALUE", // required
38
- * Tags: [ // required
39
- * {
38
+ * Tags: [ // TagList // required
39
+ * { // Tag
40
40
  * Key: "STRING_VALUE", // required
41
41
  * Value: "STRING_VALUE", // required
42
42
  * },
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { ApplicationInsightsClient, UntagResourceCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
27
27
  * // const { ApplicationInsightsClient, UntagResourceCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
28
28
  * const client = new ApplicationInsightsClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceRequest
30
30
  * ResourceARN: "STRING_VALUE", // required
31
- * TagKeys: [ // required
31
+ * TagKeys: [ // TagKeyList // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -26,7 +26,7 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
26
26
  * import { ApplicationInsightsClient, UpdateApplicationCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
27
27
  * // const { ApplicationInsightsClient, UpdateApplicationCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
28
28
  * const client = new ApplicationInsightsClient(config);
29
- * const input = {
29
+ * const input = { // UpdateApplicationRequest
30
30
  * ResourceGroupName: "STRING_VALUE", // required
31
31
  * OpsCenterEnabled: true || false,
32
32
  * CWEMonitorEnabled: true || false,
@@ -27,11 +27,11 @@ export interface UpdateComponentCommandOutput extends UpdateComponentResponse, _
27
27
  * import { ApplicationInsightsClient, UpdateComponentCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
28
28
  * // const { ApplicationInsightsClient, UpdateComponentCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
29
29
  * const client = new ApplicationInsightsClient(config);
30
- * const input = {
30
+ * const input = { // UpdateComponentRequest
31
31
  * ResourceGroupName: "STRING_VALUE", // required
32
32
  * ComponentName: "STRING_VALUE", // required
33
33
  * NewComponentName: "STRING_VALUE",
34
- * ResourceList: [
34
+ * ResourceList: [ // ResourceList
35
35
  * "STRING_VALUE",
36
36
  * ],
37
37
  * };
@@ -28,7 +28,7 @@ export interface UpdateComponentConfigurationCommandOutput extends UpdateCompone
28
28
  * import { ApplicationInsightsClient, UpdateComponentConfigurationCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
29
29
  * // const { ApplicationInsightsClient, UpdateComponentConfigurationCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
30
30
  * const client = new ApplicationInsightsClient(config);
31
- * const input = {
31
+ * const input = { // UpdateComponentConfigurationRequest
32
32
  * ResourceGroupName: "STRING_VALUE", // required
33
33
  * ComponentName: "STRING_VALUE", // required
34
34
  * Monitor: true || false,
@@ -26,7 +26,7 @@ export interface UpdateLogPatternCommandOutput extends UpdateLogPatternResponse,
26
26
  * import { ApplicationInsightsClient, UpdateLogPatternCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
27
27
  * // const { ApplicationInsightsClient, UpdateLogPatternCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
28
28
  * const client = new ApplicationInsightsClient(config);
29
- * const input = {
29
+ * const input = { // UpdateLogPatternRequest
30
30
  * ResourceGroupName: "STRING_VALUE", // required
31
31
  * PatternSetName: "STRING_VALUE", // required
32
32
  * PatternName: "STRING_VALUE", // required
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-application-insights",
3
3
  "description": "AWS SDK for JavaScript Application Insights Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.301.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",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",