@aws-sdk/client-application-insights 3.299.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 +15 -0
  2. package/dist-types/commands/CreateComponentCommand.d.ts +7 -0
  3. package/dist-types/commands/CreateLogPatternCommand.d.ts +7 -0
  4. package/dist-types/commands/DeleteApplicationCommand.d.ts +3 -0
  5. package/dist-types/commands/DeleteComponentCommand.d.ts +4 -0
  6. package/dist-types/commands/DeleteLogPatternCommand.d.ts +5 -0
  7. package/dist-types/commands/DescribeApplicationCommand.d.ts +3 -0
  8. package/dist-types/commands/DescribeComponentCommand.d.ts +4 -0
  9. package/dist-types/commands/DescribeComponentConfigurationCommand.d.ts +4 -0
  10. package/dist-types/commands/DescribeComponentConfigurationRecommendationCommand.d.ts +5 -0
  11. package/dist-types/commands/DescribeLogPatternCommand.d.ts +5 -0
  12. package/dist-types/commands/DescribeObservationCommand.d.ts +3 -0
  13. package/dist-types/commands/DescribeProblemCommand.d.ts +3 -0
  14. package/dist-types/commands/DescribeProblemObservationsCommand.d.ts +3 -0
  15. package/dist-types/commands/ListApplicationsCommand.d.ts +4 -0
  16. package/dist-types/commands/ListComponentsCommand.d.ts +5 -0
  17. package/dist-types/commands/ListConfigurationHistoryCommand.d.ts +8 -0
  18. package/dist-types/commands/ListLogPatternSetsCommand.d.ts +5 -0
  19. package/dist-types/commands/ListLogPatternsCommand.d.ts +6 -0
  20. package/dist-types/commands/ListProblemsCommand.d.ts +8 -0
  21. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  22. package/dist-types/commands/TagResourceCommand.d.ts +9 -0
  23. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  24. package/dist-types/commands/UpdateApplicationCommand.d.ts +8 -0
  25. package/dist-types/commands/UpdateComponentCommand.d.ts +8 -0
  26. package/dist-types/commands/UpdateComponentConfigurationCommand.d.ts +8 -0
  27. package/dist-types/commands/UpdateLogPatternCommand.d.ts +7 -0
  28. package/package.json +8 -8
@@ -26,6 +26,21 @@ 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 = { // CreateApplicationRequest
30
+ * ResourceGroupName: "STRING_VALUE",
31
+ * OpsCenterEnabled: true || false,
32
+ * CWEMonitorEnabled: true || false,
33
+ * OpsItemSNSTopicArn: "STRING_VALUE",
34
+ * Tags: [ // TagList
35
+ * { // Tag
36
+ * Key: "STRING_VALUE", // required
37
+ * Value: "STRING_VALUE", // required
38
+ * },
39
+ * ],
40
+ * AutoConfigEnabled: true || false,
41
+ * AutoCreate: true || false,
42
+ * GroupingType: "STRING_VALUE",
43
+ * };
29
44
  * const command = new CreateApplicationCommand(input);
30
45
  * const response = await client.send(command);
31
46
  * ```
@@ -26,6 +26,13 @@ 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 = { // CreateComponentRequest
30
+ * ResourceGroupName: "STRING_VALUE", // required
31
+ * ComponentName: "STRING_VALUE", // required
32
+ * ResourceList: [ // ResourceList // required
33
+ * "STRING_VALUE",
34
+ * ],
35
+ * };
29
36
  * const command = new CreateComponentCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
@@ -26,6 +26,13 @@ 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 = { // CreateLogPatternRequest
30
+ * ResourceGroupName: "STRING_VALUE", // required
31
+ * PatternSetName: "STRING_VALUE", // required
32
+ * PatternName: "STRING_VALUE", // required
33
+ * Pattern: "STRING_VALUE", // required
34
+ * Rank: Number("int"), // required
35
+ * };
29
36
  * const command = new CreateLogPatternCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
@@ -27,6 +27,9 @@ 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 = { // DeleteApplicationRequest
31
+ * ResourceGroupName: "STRING_VALUE", // required
32
+ * };
30
33
  * const command = new DeleteApplicationCommand(input);
31
34
  * const response = await client.send(command);
32
35
  * ```
@@ -28,6 +28,10 @@ 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 = { // DeleteComponentRequest
32
+ * ResourceGroupName: "STRING_VALUE", // required
33
+ * ComponentName: "STRING_VALUE", // required
34
+ * };
31
35
  * const command = new DeleteComponentCommand(input);
32
36
  * const response = await client.send(command);
33
37
  * ```
@@ -26,6 +26,11 @@ 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 = { // DeleteLogPatternRequest
30
+ * ResourceGroupName: "STRING_VALUE", // required
31
+ * PatternSetName: "STRING_VALUE", // required
32
+ * PatternName: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new DeleteLogPatternCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,9 @@ 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 = { // DescribeApplicationRequest
30
+ * ResourceGroupName: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeApplicationCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -27,6 +27,10 @@ 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 = { // DescribeComponentRequest
31
+ * ResourceGroupName: "STRING_VALUE", // required
32
+ * ComponentName: "STRING_VALUE", // required
33
+ * };
30
34
  * const command = new DescribeComponentCommand(input);
31
35
  * const response = await client.send(command);
32
36
  * ```
@@ -26,6 +26,10 @@ 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 = { // DescribeComponentConfigurationRequest
30
+ * ResourceGroupName: "STRING_VALUE", // required
31
+ * ComponentName: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DescribeComponentConfigurationCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ 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 = { // DescribeComponentConfigurationRecommendationRequest
30
+ * ResourceGroupName: "STRING_VALUE", // required
31
+ * ComponentName: "STRING_VALUE", // required
32
+ * Tier: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new DescribeComponentConfigurationRecommendationCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,11 @@ 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 = { // DescribeLogPatternRequest
30
+ * ResourceGroupName: "STRING_VALUE", // required
31
+ * PatternSetName: "STRING_VALUE", // required
32
+ * PatternName: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new DescribeLogPatternCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,9 @@ 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 = { // DescribeObservationRequest
30
+ * ObservationId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeObservationCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = { // DescribeProblemRequest
30
+ * ProblemId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeProblemCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,9 @@ 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 = { // DescribeProblemObservationsRequest
30
+ * ProblemId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new DescribeProblemObservationsCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,10 @@ 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 = { // ListApplicationsRequest
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * };
29
33
  * const command = new ListApplicationsCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ 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 = { // ListComponentsRequest
30
+ * ResourceGroupName: "STRING_VALUE", // required
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListComponentsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -39,6 +39,14 @@ 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 = { // ListConfigurationHistoryRequest
43
+ * ResourceGroupName: "STRING_VALUE",
44
+ * StartTime: new Date("TIMESTAMP"),
45
+ * EndTime: new Date("TIMESTAMP"),
46
+ * EventStatus: "STRING_VALUE",
47
+ * MaxResults: Number("int"),
48
+ * NextToken: "STRING_VALUE",
49
+ * };
42
50
  * const command = new ListConfigurationHistoryCommand(input);
43
51
  * const response = await client.send(command);
44
52
  * ```
@@ -26,6 +26,11 @@ 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 = { // ListLogPatternSetsRequest
30
+ * ResourceGroupName: "STRING_VALUE", // required
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * };
29
34
  * const command = new ListLogPatternSetsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,12 @@ 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 = { // ListLogPatternsRequest
30
+ * ResourceGroupName: "STRING_VALUE", // required
31
+ * PatternSetName: "STRING_VALUE",
32
+ * MaxResults: Number("int"),
33
+ * NextToken: "STRING_VALUE",
34
+ * };
29
35
  * const command = new ListLogPatternsCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,14 @@ 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 = { // ListProblemsRequest
30
+ * ResourceGroupName: "STRING_VALUE",
31
+ * StartTime: new Date("TIMESTAMP"),
32
+ * EndTime: new Date("TIMESTAMP"),
33
+ * MaxResults: Number("int"),
34
+ * NextToken: "STRING_VALUE",
35
+ * ComponentName: "STRING_VALUE",
36
+ * };
29
37
  * const command = new ListProblemsCommand(input);
30
38
  * const response = await client.send(command);
31
39
  * ```
@@ -31,6 +31,9 @@ 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 = { // ListTagsForResourceRequest
35
+ * ResourceARN: "STRING_VALUE", // required
36
+ * };
34
37
  * const command = new ListTagsForResourceCommand(input);
35
38
  * const response = await client.send(command);
36
39
  * ```
@@ -33,6 +33,15 @@ 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 = { // TagResourceRequest
37
+ * ResourceARN: "STRING_VALUE", // required
38
+ * Tags: [ // TagList // required
39
+ * { // Tag
40
+ * Key: "STRING_VALUE", // required
41
+ * Value: "STRING_VALUE", // required
42
+ * },
43
+ * ],
44
+ * };
36
45
  * const command = new TagResourceCommand(input);
37
46
  * const response = await client.send(command);
38
47
  * ```
@@ -26,6 +26,12 @@ 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 = { // UntagResourceRequest
30
+ * ResourceARN: "STRING_VALUE", // required
31
+ * TagKeys: [ // TagKeyList // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new UntagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,14 @@ 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 = { // UpdateApplicationRequest
30
+ * ResourceGroupName: "STRING_VALUE", // required
31
+ * OpsCenterEnabled: true || false,
32
+ * CWEMonitorEnabled: true || false,
33
+ * OpsItemSNSTopicArn: "STRING_VALUE",
34
+ * RemoveSNSTopic: true || false,
35
+ * AutoConfigEnabled: true || false,
36
+ * };
29
37
  * const command = new UpdateApplicationCommand(input);
30
38
  * const response = await client.send(command);
31
39
  * ```
@@ -27,6 +27,14 @@ 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 = { // UpdateComponentRequest
31
+ * ResourceGroupName: "STRING_VALUE", // required
32
+ * ComponentName: "STRING_VALUE", // required
33
+ * NewComponentName: "STRING_VALUE",
34
+ * ResourceList: [ // ResourceList
35
+ * "STRING_VALUE",
36
+ * ],
37
+ * };
30
38
  * const command = new UpdateComponentCommand(input);
31
39
  * const response = await client.send(command);
32
40
  * ```
@@ -28,6 +28,14 @@ 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 = { // UpdateComponentConfigurationRequest
32
+ * ResourceGroupName: "STRING_VALUE", // required
33
+ * ComponentName: "STRING_VALUE", // required
34
+ * Monitor: true || false,
35
+ * Tier: "STRING_VALUE",
36
+ * ComponentConfiguration: "STRING_VALUE",
37
+ * AutoConfigEnabled: true || false,
38
+ * };
31
39
  * const command = new UpdateComponentConfigurationCommand(input);
32
40
  * const response = await client.send(command);
33
41
  * ```
@@ -26,6 +26,13 @@ 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 = { // UpdateLogPatternRequest
30
+ * ResourceGroupName: "STRING_VALUE", // required
31
+ * PatternSetName: "STRING_VALUE", // required
32
+ * PatternName: "STRING_VALUE", // required
33
+ * Pattern: "STRING_VALUE",
34
+ * Rank: Number("int"),
35
+ * };
29
36
  * const command = new UpdateLogPatternCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
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.299.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.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
+ "@aws-sdk/config-resolver": "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",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0"
57
57
  },