@aws-sdk/client-application-insights 3.169.0 → 3.171.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 +469 -140
  3. package/dist-types/ts3.4/ApplicationInsightsClient.d.ts +267 -100
  4. package/dist-types/ts3.4/commands/CreateApplicationCommand.d.ts +36 -17
  5. package/dist-types/ts3.4/commands/CreateComponentCommand.d.ts +35 -17
  6. package/dist-types/ts3.4/commands/CreateLogPatternCommand.d.ts +35 -17
  7. package/dist-types/ts3.4/commands/DeleteApplicationCommand.d.ts +36 -17
  8. package/dist-types/ts3.4/commands/DeleteComponentCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DeleteLogPatternCommand.d.ts +35 -17
  10. package/dist-types/ts3.4/commands/DescribeApplicationCommand.d.ts +36 -17
  11. package/dist-types/ts3.4/commands/DescribeComponentCommand.d.ts +36 -17
  12. package/dist-types/ts3.4/commands/DescribeComponentConfigurationCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/DescribeComponentConfigurationRecommendationCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/DescribeLogPatternCommand.d.ts +36 -17
  15. package/dist-types/ts3.4/commands/DescribeObservationCommand.d.ts +36 -17
  16. package/dist-types/ts3.4/commands/DescribeProblemCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/DescribeProblemObservationsCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/ListApplicationsCommand.d.ts +35 -17
  19. package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +35 -17
  20. package/dist-types/ts3.4/commands/ListConfigurationHistoryCommand.d.ts +39 -17
  21. package/dist-types/ts3.4/commands/ListLogPatternSetsCommand.d.ts +36 -17
  22. package/dist-types/ts3.4/commands/ListLogPatternsCommand.d.ts +35 -17
  23. package/dist-types/ts3.4/commands/ListProblemsCommand.d.ts +32 -17
  24. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  25. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  26. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  27. package/dist-types/ts3.4/commands/UpdateApplicationCommand.d.ts +36 -17
  28. package/dist-types/ts3.4/commands/UpdateComponentCommand.d.ts +35 -17
  29. package/dist-types/ts3.4/commands/UpdateComponentConfigurationCommand.d.ts +39 -17
  30. package/dist-types/ts3.4/commands/UpdateLogPatternCommand.d.ts +35 -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 +7 -6
  35. package/dist-types/ts3.4/models/index.d.ts +1 -1
  36. package/dist-types/ts3.4/models/models_0.d.ts +609 -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 +67 -38
  47. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  48. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  49. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  50. package/package.json +34 -34
@@ -1,17 +1,35 @@
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 { DeleteLogPatternRequest, DeleteLogPatternResponse } from "../models/models_0";
5
- export interface DeleteLogPatternCommandInput extends DeleteLogPatternRequest {
6
- }
7
- export interface DeleteLogPatternCommandOutput extends DeleteLogPatternResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteLogPatternCommand extends $Command<DeleteLogPatternCommandInput, DeleteLogPatternCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: DeleteLogPatternCommandInput;
12
- constructor(input: DeleteLogPatternCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteLogPatternCommandInput, DeleteLogPatternCommandOutput>;
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
+ DeleteLogPatternRequest,
15
+ DeleteLogPatternResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteLogPatternCommandInput extends DeleteLogPatternRequest {}
18
+ export interface DeleteLogPatternCommandOutput
19
+ extends DeleteLogPatternResponse,
20
+ __MetadataBearer {}
21
+ export declare class DeleteLogPatternCommand extends $Command<
22
+ DeleteLogPatternCommandInput,
23
+ DeleteLogPatternCommandOutput,
24
+ ApplicationInsightsClientResolvedConfig
25
+ > {
26
+ readonly input: DeleteLogPatternCommandInput;
27
+ constructor(input: DeleteLogPatternCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: ApplicationInsightsClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DeleteLogPatternCommandInput, DeleteLogPatternCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,36 @@
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 { DescribeApplicationRequest, DescribeApplicationResponse } from "../models/models_0";
5
- export interface DescribeApplicationCommandInput extends DescribeApplicationRequest {
6
- }
7
- export interface DescribeApplicationCommandOutput extends DescribeApplicationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeApplicationCommand extends $Command<DescribeApplicationCommandInput, DescribeApplicationCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: DescribeApplicationCommandInput;
12
- constructor(input: DescribeApplicationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeApplicationCommandInput, DescribeApplicationCommandOutput>;
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
+ DescribeApplicationRequest,
15
+ DescribeApplicationResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeApplicationCommandInput
18
+ extends DescribeApplicationRequest {}
19
+ export interface DescribeApplicationCommandOutput
20
+ extends DescribeApplicationResponse,
21
+ __MetadataBearer {}
22
+ export declare class DescribeApplicationCommand extends $Command<
23
+ DescribeApplicationCommandInput,
24
+ DescribeApplicationCommandOutput,
25
+ ApplicationInsightsClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeApplicationCommandInput;
28
+ constructor(input: DescribeApplicationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ApplicationInsightsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<DescribeApplicationCommandInput, DescribeApplicationCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,36 @@
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 { DescribeComponentRequest, DescribeComponentResponse } from "../models/models_0";
5
- export interface DescribeComponentCommandInput extends DescribeComponentRequest {
6
- }
7
- export interface DescribeComponentCommandOutput extends DescribeComponentResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeComponentCommand extends $Command<DescribeComponentCommandInput, DescribeComponentCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: DescribeComponentCommandInput;
12
- constructor(input: DescribeComponentCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeComponentCommandInput, DescribeComponentCommandOutput>;
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
+ DescribeComponentRequest,
15
+ DescribeComponentResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeComponentCommandInput
18
+ extends DescribeComponentRequest {}
19
+ export interface DescribeComponentCommandOutput
20
+ extends DescribeComponentResponse,
21
+ __MetadataBearer {}
22
+ export declare class DescribeComponentCommand extends $Command<
23
+ DescribeComponentCommandInput,
24
+ DescribeComponentCommandOutput,
25
+ ApplicationInsightsClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeComponentCommandInput;
28
+ constructor(input: DescribeComponentCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ApplicationInsightsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<DescribeComponentCommandInput, DescribeComponentCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,39 @@
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 { DescribeComponentConfigurationRequest, DescribeComponentConfigurationResponse } from "../models/models_0";
5
- export interface DescribeComponentConfigurationCommandInput extends DescribeComponentConfigurationRequest {
6
- }
7
- export interface DescribeComponentConfigurationCommandOutput extends DescribeComponentConfigurationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeComponentConfigurationCommand extends $Command<DescribeComponentConfigurationCommandInput, DescribeComponentConfigurationCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: DescribeComponentConfigurationCommandInput;
12
- constructor(input: DescribeComponentConfigurationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeComponentConfigurationCommandInput, DescribeComponentConfigurationCommandOutput>;
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
+ DescribeComponentConfigurationRequest,
15
+ DescribeComponentConfigurationResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeComponentConfigurationCommandInput
18
+ extends DescribeComponentConfigurationRequest {}
19
+ export interface DescribeComponentConfigurationCommandOutput
20
+ extends DescribeComponentConfigurationResponse,
21
+ __MetadataBearer {}
22
+ export declare class DescribeComponentConfigurationCommand extends $Command<
23
+ DescribeComponentConfigurationCommandInput,
24
+ DescribeComponentConfigurationCommandOutput,
25
+ ApplicationInsightsClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeComponentConfigurationCommandInput;
28
+ constructor(input: DescribeComponentConfigurationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ApplicationInsightsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeComponentConfigurationCommandInput,
35
+ DescribeComponentConfigurationCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,39 @@
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 { DescribeComponentConfigurationRecommendationRequest, DescribeComponentConfigurationRecommendationResponse } from "../models/models_0";
5
- export interface DescribeComponentConfigurationRecommendationCommandInput extends DescribeComponentConfigurationRecommendationRequest {
6
- }
7
- export interface DescribeComponentConfigurationRecommendationCommandOutput extends DescribeComponentConfigurationRecommendationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeComponentConfigurationRecommendationCommand extends $Command<DescribeComponentConfigurationRecommendationCommandInput, DescribeComponentConfigurationRecommendationCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: DescribeComponentConfigurationRecommendationCommandInput;
12
- constructor(input: DescribeComponentConfigurationRecommendationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeComponentConfigurationRecommendationCommandInput, DescribeComponentConfigurationRecommendationCommandOutput>;
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
+ DescribeComponentConfigurationRecommendationRequest,
15
+ DescribeComponentConfigurationRecommendationResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeComponentConfigurationRecommendationCommandInput
18
+ extends DescribeComponentConfigurationRecommendationRequest {}
19
+ export interface DescribeComponentConfigurationRecommendationCommandOutput
20
+ extends DescribeComponentConfigurationRecommendationResponse,
21
+ __MetadataBearer {}
22
+ export declare class DescribeComponentConfigurationRecommendationCommand extends $Command<
23
+ DescribeComponentConfigurationRecommendationCommandInput,
24
+ DescribeComponentConfigurationRecommendationCommandOutput,
25
+ ApplicationInsightsClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeComponentConfigurationRecommendationCommandInput;
28
+ constructor(input: DescribeComponentConfigurationRecommendationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ApplicationInsightsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeComponentConfigurationRecommendationCommandInput,
35
+ DescribeComponentConfigurationRecommendationCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,36 @@
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 { DescribeLogPatternRequest, DescribeLogPatternResponse } from "../models/models_0";
5
- export interface DescribeLogPatternCommandInput extends DescribeLogPatternRequest {
6
- }
7
- export interface DescribeLogPatternCommandOutput extends DescribeLogPatternResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeLogPatternCommand extends $Command<DescribeLogPatternCommandInput, DescribeLogPatternCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: DescribeLogPatternCommandInput;
12
- constructor(input: DescribeLogPatternCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeLogPatternCommandInput, DescribeLogPatternCommandOutput>;
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
+ DescribeLogPatternRequest,
15
+ DescribeLogPatternResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeLogPatternCommandInput
18
+ extends DescribeLogPatternRequest {}
19
+ export interface DescribeLogPatternCommandOutput
20
+ extends DescribeLogPatternResponse,
21
+ __MetadataBearer {}
22
+ export declare class DescribeLogPatternCommand extends $Command<
23
+ DescribeLogPatternCommandInput,
24
+ DescribeLogPatternCommandOutput,
25
+ ApplicationInsightsClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeLogPatternCommandInput;
28
+ constructor(input: DescribeLogPatternCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ApplicationInsightsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<DescribeLogPatternCommandInput, DescribeLogPatternCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,36 @@
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 { DescribeObservationRequest, DescribeObservationResponse } from "../models/models_0";
5
- export interface DescribeObservationCommandInput extends DescribeObservationRequest {
6
- }
7
- export interface DescribeObservationCommandOutput extends DescribeObservationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeObservationCommand extends $Command<DescribeObservationCommandInput, DescribeObservationCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: DescribeObservationCommandInput;
12
- constructor(input: DescribeObservationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeObservationCommandInput, DescribeObservationCommandOutput>;
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
+ DescribeObservationRequest,
15
+ DescribeObservationResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeObservationCommandInput
18
+ extends DescribeObservationRequest {}
19
+ export interface DescribeObservationCommandOutput
20
+ extends DescribeObservationResponse,
21
+ __MetadataBearer {}
22
+ export declare class DescribeObservationCommand extends $Command<
23
+ DescribeObservationCommandInput,
24
+ DescribeObservationCommandOutput,
25
+ ApplicationInsightsClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeObservationCommandInput;
28
+ constructor(input: DescribeObservationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ApplicationInsightsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<DescribeObservationCommandInput, DescribeObservationCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,35 @@
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 { DescribeProblemRequest, DescribeProblemResponse } from "../models/models_0";
5
- export interface DescribeProblemCommandInput extends DescribeProblemRequest {
6
- }
7
- export interface DescribeProblemCommandOutput extends DescribeProblemResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeProblemCommand extends $Command<DescribeProblemCommandInput, DescribeProblemCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: DescribeProblemCommandInput;
12
- constructor(input: DescribeProblemCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeProblemCommandInput, DescribeProblemCommandOutput>;
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
+ DescribeProblemRequest,
15
+ DescribeProblemResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeProblemCommandInput extends DescribeProblemRequest {}
18
+ export interface DescribeProblemCommandOutput
19
+ extends DescribeProblemResponse,
20
+ __MetadataBearer {}
21
+ export declare class DescribeProblemCommand extends $Command<
22
+ DescribeProblemCommandInput,
23
+ DescribeProblemCommandOutput,
24
+ ApplicationInsightsClientResolvedConfig
25
+ > {
26
+ readonly input: DescribeProblemCommandInput;
27
+ constructor(input: DescribeProblemCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: ApplicationInsightsClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DescribeProblemCommandInput, DescribeProblemCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,39 @@
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 { DescribeProblemObservationsRequest, DescribeProblemObservationsResponse } from "../models/models_0";
5
- export interface DescribeProblemObservationsCommandInput extends DescribeProblemObservationsRequest {
6
- }
7
- export interface DescribeProblemObservationsCommandOutput extends DescribeProblemObservationsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeProblemObservationsCommand extends $Command<DescribeProblemObservationsCommandInput, DescribeProblemObservationsCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: DescribeProblemObservationsCommandInput;
12
- constructor(input: DescribeProblemObservationsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeProblemObservationsCommandInput, DescribeProblemObservationsCommandOutput>;
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
+ DescribeProblemObservationsRequest,
15
+ DescribeProblemObservationsResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeProblemObservationsCommandInput
18
+ extends DescribeProblemObservationsRequest {}
19
+ export interface DescribeProblemObservationsCommandOutput
20
+ extends DescribeProblemObservationsResponse,
21
+ __MetadataBearer {}
22
+ export declare class DescribeProblemObservationsCommand extends $Command<
23
+ DescribeProblemObservationsCommandInput,
24
+ DescribeProblemObservationsCommandOutput,
25
+ ApplicationInsightsClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeProblemObservationsCommandInput;
28
+ constructor(input: DescribeProblemObservationsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: ApplicationInsightsClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ DescribeProblemObservationsCommandInput,
35
+ DescribeProblemObservationsCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,35 @@
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 { ListApplicationsRequest, ListApplicationsResponse } from "../models/models_0";
5
- export interface ListApplicationsCommandInput extends ListApplicationsRequest {
6
- }
7
- export interface ListApplicationsCommandOutput extends ListApplicationsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListApplicationsCommand extends $Command<ListApplicationsCommandInput, ListApplicationsCommandOutput, ApplicationInsightsClientResolvedConfig> {
11
- readonly input: ListApplicationsCommandInput;
12
- constructor(input: ListApplicationsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
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
+ ListApplicationsRequest,
15
+ ListApplicationsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListApplicationsCommandInput extends ListApplicationsRequest {}
18
+ export interface ListApplicationsCommandOutput
19
+ extends ListApplicationsResponse,
20
+ __MetadataBearer {}
21
+ export declare class ListApplicationsCommand extends $Command<
22
+ ListApplicationsCommandInput,
23
+ ListApplicationsCommandOutput,
24
+ ApplicationInsightsClientResolvedConfig
25
+ > {
26
+ readonly input: ListApplicationsCommandInput;
27
+ constructor(input: ListApplicationsCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: ApplicationInsightsClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ListApplicationsCommandInput, ListApplicationsCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,35 @@
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
+ export declare class ListComponentsCommand extends $Command<
22
+ ListComponentsCommandInput,
23
+ ListComponentsCommandOutput,
24
+ ApplicationInsightsClientResolvedConfig
25
+ > {
26
+ readonly input: ListComponentsCommandInput;
27
+ constructor(input: ListComponentsCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: ApplicationInsightsClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ListComponentsCommandInput, ListComponentsCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }