@aws-sdk/client-application-insights 3.168.0 → 3.170.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 (50) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/ApplicationInsights.d.ts +496 -140
  3. package/dist-types/ts3.4/ApplicationInsightsClient.d.ts +292 -100
  4. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +38 -17
  5. package/dist-types/ts3.4/commands/CreateComponentCommand.d.ts +37 -17
  6. package/dist-types/ts3.4/commands/CreateLogPatternCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +38 -17
  8. package/dist-types/ts3.4/commands/DeleteComponentCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/DeleteLogPatternCommand.d.ts +37 -17
  10. package/dist-types/ts3.4/commands/DescribeApplicationCommand.d.ts +38 -17
  11. package/dist-types/ts3.4/commands/DescribeComponentCommand.d.ts +38 -17
  12. package/dist-types/ts3.4/commands/DescribeComponentConfigurationCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/DescribeComponentConfigurationRecommendationCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/DescribeLogPatternCommand.d.ts +38 -17
  15. package/dist-types/ts3.4/commands/DescribeObservationCommand.d.ts +38 -17
  16. package/dist-types/ts3.4/commands/DescribeProblemCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/DescribeProblemObservationsCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +37 -17
  19. package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +37 -17
  20. package/dist-types/ts3.4/commands/ListConfigurationHistoryCommand.d.ts +41 -17
  21. package/dist-types/ts3.4/commands/ListLogPatternSetsCommand.d.ts +38 -17
  22. package/dist-types/ts3.4/commands/ListLogPatternsCommand.d.ts +37 -17
  23. package/dist-types/ts3.4/commands/ListProblemsCommand.d.ts +34 -17
  24. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  25. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  27. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +38 -17
  28. package/dist-types/ts3.4/commands/UpdateComponentCommand.d.ts +37 -17
  29. package/dist-types/ts3.4/commands/UpdateComponentConfigurationCommand.d.ts +41 -17
  30. package/dist-types/ts3.4/commands/UpdateLogPatternCommand.d.ts +37 -17
  31. package/dist-types/ts3.4/commands/index.d.ts +27 -27
  32. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  33. package/dist-types/ts3.4/index.d.ts +6 -6
  34. package/dist-types/ts3.4/models/ApplicationInsightsServiceException.d.ts +8 -6
  35. package/dist-types/ts3.4/models/index.d.ts +1 -1
  36. package/dist-types/ts3.4/models/models_0.d.ts +847 -751
  37. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  38. package/dist-types/ts3.4/pagination/ListApplicationsPaginator.d.ts +11 -4
  39. package/dist-types/ts3.4/pagination/ListComponentsPaginator.d.ts +11 -4
  40. package/dist-types/ts3.4/pagination/ListConfigurationHistoryPaginator.d.ts +11 -4
  41. package/dist-types/ts3.4/pagination/ListLogPatternSetsPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/ListLogPatternsPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListProblemsPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/index.d.ts +7 -7
  45. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +329 -83
  46. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  47. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  48. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  49. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  50. package/package.json +34 -34
@@ -1,17 +1,37 @@
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 { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
4
- import { ListComponentsRequest, ListComponentsResponse } from "../models/models_0";
5
- export interface ListComponentsCommandInput extends ListComponentsRequest {
6
- }
7
- export interface ListComponentsCommandOutput extends ListComponentsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListComponentsCommand extends $Command<ListComponentsCommandInput, ListComponentsCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: ListComponentsCommandInput;
12
- constructor(input: ListComponentsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListComponentsCommandInput, ListComponentsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ApplicationInsightsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ApplicationInsightsClient";
13
+ import {
14
+ ListComponentsRequest,
15
+ ListComponentsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListComponentsCommandInput extends ListComponentsRequest {}
18
+ export interface ListComponentsCommandOutput
19
+ extends ListComponentsResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListComponentsCommand extends $Command<
23
+ ListComponentsCommandInput,
24
+ ListComponentsCommandOutput,
25
+ ApplicationInsightsClientResolvedConfig
26
+ > {
27
+ readonly input: ListComponentsCommandInput;
28
+ constructor(input: ListComponentsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ApplicationInsightsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListComponentsCommandInput, ListComponentsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
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 { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
4
- import { ListConfigurationHistoryRequest, ListConfigurationHistoryResponse } from "../models/models_0";
5
- export interface ListConfigurationHistoryCommandInput extends ListConfigurationHistoryRequest {
6
- }
7
- export interface ListConfigurationHistoryCommandOutput extends ListConfigurationHistoryResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListConfigurationHistoryCommand extends $Command<ListConfigurationHistoryCommandInput, ListConfigurationHistoryCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: ListConfigurationHistoryCommandInput;
12
- constructor(input: ListConfigurationHistoryCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListConfigurationHistoryCommandInput, ListConfigurationHistoryCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ApplicationInsightsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ApplicationInsightsClient";
13
+ import {
14
+ ListConfigurationHistoryRequest,
15
+ ListConfigurationHistoryResponse,
16
+ } from "../models/models_0";
17
+ export interface ListConfigurationHistoryCommandInput
18
+ extends ListConfigurationHistoryRequest {}
19
+ export interface ListConfigurationHistoryCommandOutput
20
+ extends ListConfigurationHistoryResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListConfigurationHistoryCommand extends $Command<
24
+ ListConfigurationHistoryCommandInput,
25
+ ListConfigurationHistoryCommandOutput,
26
+ ApplicationInsightsClientResolvedConfig
27
+ > {
28
+ readonly input: ListConfigurationHistoryCommandInput;
29
+ constructor(input: ListConfigurationHistoryCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ApplicationInsightsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListConfigurationHistoryCommandInput,
37
+ ListConfigurationHistoryCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,38 @@
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 { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
4
- import { ListLogPatternSetsRequest, ListLogPatternSetsResponse } from "../models/models_0";
5
- export interface ListLogPatternSetsCommandInput extends ListLogPatternSetsRequest {
6
- }
7
- export interface ListLogPatternSetsCommandOutput extends ListLogPatternSetsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListLogPatternSetsCommand extends $Command<ListLogPatternSetsCommandInput, ListLogPatternSetsCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: ListLogPatternSetsCommandInput;
12
- constructor(input: ListLogPatternSetsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListLogPatternSetsCommandInput, ListLogPatternSetsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ApplicationInsightsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ApplicationInsightsClient";
13
+ import {
14
+ ListLogPatternSetsRequest,
15
+ ListLogPatternSetsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListLogPatternSetsCommandInput
18
+ extends ListLogPatternSetsRequest {}
19
+ export interface ListLogPatternSetsCommandOutput
20
+ extends ListLogPatternSetsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListLogPatternSetsCommand extends $Command<
24
+ ListLogPatternSetsCommandInput,
25
+ ListLogPatternSetsCommandOutput,
26
+ ApplicationInsightsClientResolvedConfig
27
+ > {
28
+ readonly input: ListLogPatternSetsCommandInput;
29
+ constructor(input: ListLogPatternSetsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ApplicationInsightsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListLogPatternSetsCommandInput, ListLogPatternSetsCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
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 { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
4
- import { ListLogPatternsRequest, ListLogPatternsResponse } from "../models/models_0";
5
- export interface ListLogPatternsCommandInput extends ListLogPatternsRequest {
6
- }
7
- export interface ListLogPatternsCommandOutput extends ListLogPatternsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListLogPatternsCommand extends $Command<ListLogPatternsCommandInput, ListLogPatternsCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: ListLogPatternsCommandInput;
12
- constructor(input: ListLogPatternsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListLogPatternsCommandInput, ListLogPatternsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ApplicationInsightsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ApplicationInsightsClient";
13
+ import {
14
+ ListLogPatternsRequest,
15
+ ListLogPatternsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListLogPatternsCommandInput extends ListLogPatternsRequest {}
18
+ export interface ListLogPatternsCommandOutput
19
+ extends ListLogPatternsResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListLogPatternsCommand extends $Command<
23
+ ListLogPatternsCommandInput,
24
+ ListLogPatternsCommandOutput,
25
+ ApplicationInsightsClientResolvedConfig
26
+ > {
27
+ readonly input: ListLogPatternsCommandInput;
28
+ constructor(input: ListLogPatternsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ApplicationInsightsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListLogPatternsCommandInput, ListLogPatternsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,34 @@
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 { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
4
- import { ListProblemsRequest, ListProblemsResponse } from "../models/models_0";
5
- export interface ListProblemsCommandInput extends ListProblemsRequest {
6
- }
7
- export interface ListProblemsCommandOutput extends ListProblemsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListProblemsCommand extends $Command<ListProblemsCommandInput, ListProblemsCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: ListProblemsCommandInput;
12
- constructor(input: ListProblemsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListProblemsCommandInput, ListProblemsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ApplicationInsightsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ApplicationInsightsClient";
13
+ import { ListProblemsRequest, ListProblemsResponse } from "../models/models_0";
14
+ export interface ListProblemsCommandInput extends ListProblemsRequest {}
15
+ export interface ListProblemsCommandOutput
16
+ extends ListProblemsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListProblemsCommand extends $Command<
20
+ ListProblemsCommandInput,
21
+ ListProblemsCommandOutput,
22
+ ApplicationInsightsClientResolvedConfig
23
+ > {
24
+ readonly input: ListProblemsCommandInput;
25
+ constructor(input: ListProblemsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ApplicationInsightsClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListProblemsCommandInput, ListProblemsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,38 @@
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 { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
4
- import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
- export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
- }
7
- export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ApplicationInsightsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ApplicationInsightsClient";
13
+ import {
14
+ ListTagsForResourceRequest,
15
+ ListTagsForResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceRequest {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListTagsForResourceCommand extends $Command<
24
+ ListTagsForResourceCommandInput,
25
+ ListTagsForResourceCommandOutput,
26
+ ApplicationInsightsClientResolvedConfig
27
+ > {
28
+ readonly input: ListTagsForResourceCommandInput;
29
+ constructor(input: ListTagsForResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ApplicationInsightsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,34 @@
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 { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
4
- import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
- export interface TagResourceCommandInput extends TagResourceRequest {
6
- }
7
- export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: TagResourceCommandInput;
12
- constructor(input: TagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ApplicationInsightsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ApplicationInsightsClient";
13
+ import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
14
+ export interface TagResourceCommandInput extends TagResourceRequest {}
15
+ export interface TagResourceCommandOutput
16
+ extends TagResourceResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class TagResourceCommand extends $Command<
20
+ TagResourceCommandInput,
21
+ TagResourceCommandOutput,
22
+ ApplicationInsightsClientResolvedConfig
23
+ > {
24
+ readonly input: TagResourceCommandInput;
25
+ constructor(input: TagResourceCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: ApplicationInsightsClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
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 { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
4
- import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
- export interface UntagResourceCommandInput extends UntagResourceRequest {
6
- }
7
- export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: UntagResourceCommandInput;
12
- constructor(input: UntagResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ApplicationInsightsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ApplicationInsightsClient";
13
+ import {
14
+ UntagResourceRequest,
15
+ UntagResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
18
+ export interface UntagResourceCommandOutput
19
+ extends UntagResourceResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UntagResourceCommand extends $Command<
23
+ UntagResourceCommandInput,
24
+ UntagResourceCommandOutput,
25
+ ApplicationInsightsClientResolvedConfig
26
+ > {
27
+ readonly input: UntagResourceCommandInput;
28
+ constructor(input: UntagResourceCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ApplicationInsightsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
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 { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
4
- import { UpdateApplicationRequest, UpdateApplicationResponse } from "../models/models_0";
5
- export interface UpdateApplicationCommandInput extends UpdateApplicationRequest {
6
- }
7
- export interface UpdateApplicationCommandOutput extends UpdateApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateApplicationCommand extends $Command<UpdateApplicationCommandInput, UpdateApplicationCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: UpdateApplicationCommandInput;
12
- constructor(input: UpdateApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateApplicationCommandInput, UpdateApplicationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ApplicationInsightsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ApplicationInsightsClient";
13
+ import {
14
+ UpdateApplicationRequest,
15
+ UpdateApplicationResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateApplicationCommandInput
18
+ extends UpdateApplicationRequest {}
19
+ export interface UpdateApplicationCommandOutput
20
+ extends UpdateApplicationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class UpdateApplicationCommand extends $Command<
24
+ UpdateApplicationCommandInput,
25
+ UpdateApplicationCommandOutput,
26
+ ApplicationInsightsClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateApplicationCommandInput;
29
+ constructor(input: UpdateApplicationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ApplicationInsightsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<UpdateApplicationCommandInput, UpdateApplicationCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,37 @@
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 { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
4
- import { UpdateComponentRequest, UpdateComponentResponse } from "../models/models_0";
5
- export interface UpdateComponentCommandInput extends UpdateComponentRequest {
6
- }
7
- export interface UpdateComponentCommandOutput extends UpdateComponentResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateComponentCommand extends $Command<UpdateComponentCommandInput, UpdateComponentCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: UpdateComponentCommandInput;
12
- constructor(input: UpdateComponentCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateComponentCommandInput, UpdateComponentCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ApplicationInsightsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ApplicationInsightsClient";
13
+ import {
14
+ UpdateComponentRequest,
15
+ UpdateComponentResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateComponentCommandInput extends UpdateComponentRequest {}
18
+ export interface UpdateComponentCommandOutput
19
+ extends UpdateComponentResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class UpdateComponentCommand extends $Command<
23
+ UpdateComponentCommandInput,
24
+ UpdateComponentCommandOutput,
25
+ ApplicationInsightsClientResolvedConfig
26
+ > {
27
+ readonly input: UpdateComponentCommandInput;
28
+ constructor(input: UpdateComponentCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: ApplicationInsightsClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<UpdateComponentCommandInput, UpdateComponentCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
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 { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
4
- import { UpdateComponentConfigurationRequest, UpdateComponentConfigurationResponse } from "../models/models_0";
5
- export interface UpdateComponentConfigurationCommandInput extends UpdateComponentConfigurationRequest {
6
- }
7
- export interface UpdateComponentConfigurationCommandOutput extends UpdateComponentConfigurationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class UpdateComponentConfigurationCommand extends $Command<UpdateComponentConfigurationCommandInput, UpdateComponentConfigurationCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: UpdateComponentConfigurationCommandInput;
12
- constructor(input: UpdateComponentConfigurationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateComponentConfigurationCommandInput, UpdateComponentConfigurationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ ApplicationInsightsClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../ApplicationInsightsClient";
13
+ import {
14
+ UpdateComponentConfigurationRequest,
15
+ UpdateComponentConfigurationResponse,
16
+ } from "../models/models_0";
17
+ export interface UpdateComponentConfigurationCommandInput
18
+ extends UpdateComponentConfigurationRequest {}
19
+ export interface UpdateComponentConfigurationCommandOutput
20
+ extends UpdateComponentConfigurationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class UpdateComponentConfigurationCommand extends $Command<
24
+ UpdateComponentConfigurationCommandInput,
25
+ UpdateComponentConfigurationCommandOutput,
26
+ ApplicationInsightsClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateComponentConfigurationCommandInput;
29
+ constructor(input: UpdateComponentConfigurationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: ApplicationInsightsClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ UpdateComponentConfigurationCommandInput,
37
+ UpdateComponentConfigurationCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }