@aws-sdk/client-application-insights 3.379.1 → 3.380.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +55 -7
- package/dist-cjs/ApplicationInsights.js +12 -0
- package/dist-cjs/commands/AddWorkloadCommand.js +46 -0
- package/dist-cjs/commands/DescribeWorkloadCommand.js +46 -0
- package/dist-cjs/commands/ListWorkloadsCommand.js +46 -0
- package/dist-cjs/commands/RemoveWorkloadCommand.js +46 -0
- package/dist-cjs/commands/UpdateProblemCommand.js +46 -0
- package/dist-cjs/commands/UpdateWorkloadCommand.js +46 -0
- package/dist-cjs/commands/index.js +6 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +118 -31
- package/dist-cjs/pagination/ListWorkloadsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_1.js +290 -2
- package/dist-es/ApplicationInsights.js +12 -0
- package/dist-es/commands/AddWorkloadCommand.js +42 -0
- package/dist-es/commands/DescribeWorkloadCommand.js +42 -0
- package/dist-es/commands/ListWorkloadsCommand.js +42 -0
- package/dist-es/commands/RemoveWorkloadCommand.js +42 -0
- package/dist-es/commands/UpdateProblemCommand.js +42 -0
- package/dist-es/commands/UpdateWorkloadCommand.js +42 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +114 -27
- package/dist-es/pagination/ListWorkloadsPaginator.js +25 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +276 -0
- package/dist-types/ApplicationInsights.d.ts +42 -0
- package/dist-types/ApplicationInsightsClient.d.ts +8 -2
- package/dist-types/commands/AddWorkloadCommand.d.ts +96 -0
- package/dist-types/commands/CreateApplicationCommand.d.ts +3 -2
- package/dist-types/commands/DescribeApplicationCommand.d.ts +3 -1
- package/dist-types/commands/DescribeComponentCommand.d.ts +3 -2
- package/dist-types/commands/DescribeComponentConfigurationCommand.d.ts +2 -1
- package/dist-types/commands/DescribeComponentConfigurationRecommendationCommand.d.ts +2 -1
- package/dist-types/commands/DescribeLogPatternCommand.d.ts +2 -0
- package/dist-types/commands/DescribeObservationCommand.d.ts +3 -2
- package/dist-types/commands/DescribeProblemCommand.d.ts +7 -3
- package/dist-types/commands/DescribeProblemObservationsCommand.d.ts +3 -2
- package/dist-types/commands/DescribeWorkloadCommand.d.ts +91 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +3 -1
- package/dist-types/commands/ListComponentsCommand.d.ts +3 -2
- package/dist-types/commands/ListConfigurationHistoryCommand.d.ts +6 -3
- package/dist-types/commands/ListLogPatternSetsCommand.d.ts +2 -0
- package/dist-types/commands/ListLogPatternsCommand.d.ts +2 -0
- package/dist-types/commands/ListProblemsCommand.d.ts +9 -3
- package/dist-types/commands/ListWorkloadsCommand.d.ts +95 -0
- package/dist-types/commands/RemoveWorkloadCommand.d.ts +82 -0
- package/dist-types/commands/UpdateApplicationCommand.d.ts +2 -1
- package/dist-types/commands/UpdateComponentConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateProblemCommand.d.ts +83 -0
- package/dist-types/commands/UpdateWorkloadCommand.d.ts +94 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +560 -67
- package/dist-types/pagination/ListWorkloadsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +54 -0
- package/dist-types/ts3.4/ApplicationInsights.d.ts +102 -0
- package/dist-types/ts3.4/ApplicationInsightsClient.d.ts +38 -2
- package/dist-types/ts3.4/commands/AddWorkloadCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/DescribeWorkloadCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListWorkloadsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/RemoveWorkloadCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateProblemCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateWorkloadCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +227 -63
- package/dist-types/ts3.4/pagination/ListWorkloadsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +72 -0
- package/package.json +1 -1
|
@@ -34,6 +34,7 @@ export interface DescribeComponentCommandOutput extends DescribeComponentRespons
|
|
|
34
34
|
* const input = { // DescribeComponentRequest
|
|
35
35
|
* ResourceGroupName: "STRING_VALUE", // required
|
|
36
36
|
* ComponentName: "STRING_VALUE", // required
|
|
37
|
+
* AccountId: "STRING_VALUE",
|
|
37
38
|
* };
|
|
38
39
|
* const command = new DescribeComponentCommand(input);
|
|
39
40
|
* const response = await client.send(command);
|
|
@@ -42,8 +43,8 @@ export interface DescribeComponentCommandOutput extends DescribeComponentRespons
|
|
|
42
43
|
* // ComponentName: "STRING_VALUE",
|
|
43
44
|
* // ComponentRemarks: "STRING_VALUE",
|
|
44
45
|
* // ResourceType: "STRING_VALUE",
|
|
45
|
-
* // OsType: "
|
|
46
|
-
* // Tier: "
|
|
46
|
+
* // OsType: "WINDOWS" || "LINUX",
|
|
47
|
+
* // Tier: "CUSTOM" || "DEFAULT" || "DOT_NET_CORE" || "DOT_NET_WORKER" || "DOT_NET_WEB_TIER" || "DOT_NET_WEB" || "SQL_SERVER" || "SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP" || "MYSQL" || "POSTGRESQL" || "JAVA_JMX" || "ORACLE" || "SAP_HANA_MULTI_NODE" || "SAP_HANA_SINGLE_NODE" || "SAP_HANA_HIGH_AVAILABILITY" || "SQL_SERVER_FAILOVER_CLUSTER_INSTANCE" || "SHAREPOINT" || "ACTIVE_DIRECTORY" || "SAP_NETWEAVER_STANDARD" || "SAP_NETWEAVER_DISTRIBUTED" || "SAP_NETWEAVER_HIGH_AVAILABILITY",
|
|
47
48
|
* // Monitor: true || false,
|
|
48
49
|
* // DetectedWorkload: { // DetectedWorkload
|
|
49
50
|
* // "<keys>": { // WorkloadMetaData
|
|
@@ -33,12 +33,13 @@ export interface DescribeComponentConfigurationCommandOutput extends DescribeCom
|
|
|
33
33
|
* const input = { // DescribeComponentConfigurationRequest
|
|
34
34
|
* ResourceGroupName: "STRING_VALUE", // required
|
|
35
35
|
* ComponentName: "STRING_VALUE", // required
|
|
36
|
+
* AccountId: "STRING_VALUE",
|
|
36
37
|
* };
|
|
37
38
|
* const command = new DescribeComponentConfigurationCommand(input);
|
|
38
39
|
* const response = await client.send(command);
|
|
39
40
|
* // { // DescribeComponentConfigurationResponse
|
|
40
41
|
* // Monitor: true || false,
|
|
41
|
-
* // Tier: "
|
|
42
|
+
* // Tier: "CUSTOM" || "DEFAULT" || "DOT_NET_CORE" || "DOT_NET_WORKER" || "DOT_NET_WEB_TIER" || "DOT_NET_WEB" || "SQL_SERVER" || "SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP" || "MYSQL" || "POSTGRESQL" || "JAVA_JMX" || "ORACLE" || "SAP_HANA_MULTI_NODE" || "SAP_HANA_SINGLE_NODE" || "SAP_HANA_HIGH_AVAILABILITY" || "SQL_SERVER_FAILOVER_CLUSTER_INSTANCE" || "SHAREPOINT" || "ACTIVE_DIRECTORY" || "SAP_NETWEAVER_STANDARD" || "SAP_NETWEAVER_DISTRIBUTED" || "SAP_NETWEAVER_HIGH_AVAILABILITY",
|
|
42
43
|
* // ComponentConfiguration: "STRING_VALUE",
|
|
43
44
|
* // };
|
|
44
45
|
*
|
|
@@ -33,7 +33,8 @@ export interface DescribeComponentConfigurationRecommendationCommandOutput exten
|
|
|
33
33
|
* const input = { // DescribeComponentConfigurationRecommendationRequest
|
|
34
34
|
* ResourceGroupName: "STRING_VALUE", // required
|
|
35
35
|
* ComponentName: "STRING_VALUE", // required
|
|
36
|
-
* Tier: "
|
|
36
|
+
* Tier: "CUSTOM" || "DEFAULT" || "DOT_NET_CORE" || "DOT_NET_WORKER" || "DOT_NET_WEB_TIER" || "DOT_NET_WEB" || "SQL_SERVER" || "SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP" || "MYSQL" || "POSTGRESQL" || "JAVA_JMX" || "ORACLE" || "SAP_HANA_MULTI_NODE" || "SAP_HANA_SINGLE_NODE" || "SAP_HANA_HIGH_AVAILABILITY" || "SQL_SERVER_FAILOVER_CLUSTER_INSTANCE" || "SHAREPOINT" || "ACTIVE_DIRECTORY" || "SAP_NETWEAVER_STANDARD" || "SAP_NETWEAVER_DISTRIBUTED" || "SAP_NETWEAVER_HIGH_AVAILABILITY", // required
|
|
37
|
+
* RecommendationType: "INFRA_ONLY" || "WORKLOAD_ONLY" || "ALL",
|
|
37
38
|
* };
|
|
38
39
|
* const command = new DescribeComponentConfigurationRecommendationCommand(input);
|
|
39
40
|
* const response = await client.send(command);
|
|
@@ -34,11 +34,13 @@ export interface DescribeLogPatternCommandOutput extends DescribeLogPatternRespo
|
|
|
34
34
|
* ResourceGroupName: "STRING_VALUE", // required
|
|
35
35
|
* PatternSetName: "STRING_VALUE", // required
|
|
36
36
|
* PatternName: "STRING_VALUE", // required
|
|
37
|
+
* AccountId: "STRING_VALUE",
|
|
37
38
|
* };
|
|
38
39
|
* const command = new DescribeLogPatternCommand(input);
|
|
39
40
|
* const response = await client.send(command);
|
|
40
41
|
* // { // DescribeLogPatternResponse
|
|
41
42
|
* // ResourceGroupName: "STRING_VALUE",
|
|
43
|
+
* // AccountId: "STRING_VALUE",
|
|
42
44
|
* // LogPattern: { // LogPattern
|
|
43
45
|
* // PatternSetName: "STRING_VALUE",
|
|
44
46
|
* // PatternName: "STRING_VALUE",
|
|
@@ -32,6 +32,7 @@ export interface DescribeObservationCommandOutput extends DescribeObservationRes
|
|
|
32
32
|
* const client = new ApplicationInsightsClient(config);
|
|
33
33
|
* const input = { // DescribeObservationRequest
|
|
34
34
|
* ObservationId: "STRING_VALUE", // required
|
|
35
|
+
* AccountId: "STRING_VALUE",
|
|
35
36
|
* };
|
|
36
37
|
* const command = new DescribeObservationCommand(input);
|
|
37
38
|
* const response = await client.send(command);
|
|
@@ -45,13 +46,13 @@ export interface DescribeObservationCommandOutput extends DescribeObservationRes
|
|
|
45
46
|
* // LogGroup: "STRING_VALUE",
|
|
46
47
|
* // LineTime: new Date("TIMESTAMP"),
|
|
47
48
|
* // LogText: "STRING_VALUE",
|
|
48
|
-
* // LogFilter: "
|
|
49
|
+
* // LogFilter: "ERROR" || "WARN" || "INFO",
|
|
49
50
|
* // MetricNamespace: "STRING_VALUE",
|
|
50
51
|
* // MetricName: "STRING_VALUE",
|
|
51
52
|
* // Unit: "STRING_VALUE",
|
|
52
53
|
* // Value: Number("double"),
|
|
53
54
|
* // CloudWatchEventId: "STRING_VALUE",
|
|
54
|
-
* // CloudWatchEventSource: "
|
|
55
|
+
* // CloudWatchEventSource: "EC2" || "CODE_DEPLOY" || "HEALTH" || "RDS",
|
|
55
56
|
* // CloudWatchEventDetailType: "STRING_VALUE",
|
|
56
57
|
* // HealthEventArn: "STRING_VALUE",
|
|
57
58
|
* // HealthService: "STRING_VALUE",
|
|
@@ -32,6 +32,7 @@ export interface DescribeProblemCommandOutput extends DescribeProblemResponse, _
|
|
|
32
32
|
* const client = new ApplicationInsightsClient(config);
|
|
33
33
|
* const input = { // DescribeProblemRequest
|
|
34
34
|
* ProblemId: "STRING_VALUE", // required
|
|
35
|
+
* AccountId: "STRING_VALUE",
|
|
35
36
|
* };
|
|
36
37
|
* const command = new DescribeProblemCommand(input);
|
|
37
38
|
* const response = await client.send(command);
|
|
@@ -40,17 +41,20 @@ export interface DescribeProblemCommandOutput extends DescribeProblemResponse, _
|
|
|
40
41
|
* // Id: "STRING_VALUE",
|
|
41
42
|
* // Title: "STRING_VALUE",
|
|
42
43
|
* // Insights: "STRING_VALUE",
|
|
43
|
-
* // Status: "
|
|
44
|
+
* // Status: "IGNORE" || "RESOLVED" || "PENDING" || "RECURRING" || "RECOVERING",
|
|
44
45
|
* // AffectedResource: "STRING_VALUE",
|
|
45
46
|
* // StartTime: new Date("TIMESTAMP"),
|
|
46
47
|
* // EndTime: new Date("TIMESTAMP"),
|
|
47
|
-
* // SeverityLevel: "
|
|
48
|
+
* // SeverityLevel: "Informative" || "Low" || "Medium" || "High",
|
|
49
|
+
* // AccountId: "STRING_VALUE",
|
|
48
50
|
* // ResourceGroupName: "STRING_VALUE",
|
|
49
51
|
* // Feedback: { // Feedback
|
|
50
|
-
* // "<keys>": "
|
|
52
|
+
* // "<keys>": "NOT_SPECIFIED" || "USEFUL" || "NOT_USEFUL",
|
|
51
53
|
* // },
|
|
52
54
|
* // RecurringCount: Number("long"),
|
|
53
55
|
* // LastRecurrenceTime: new Date("TIMESTAMP"),
|
|
56
|
+
* // Visibility: "IGNORED" || "VISIBLE",
|
|
57
|
+
* // ResolutionMethod: "MANUAL" || "AUTOMATIC" || "UNRESOLVED",
|
|
54
58
|
* // },
|
|
55
59
|
* // };
|
|
56
60
|
*
|
|
@@ -32,6 +32,7 @@ export interface DescribeProblemObservationsCommandOutput extends DescribeProble
|
|
|
32
32
|
* const client = new ApplicationInsightsClient(config);
|
|
33
33
|
* const input = { // DescribeProblemObservationsRequest
|
|
34
34
|
* ProblemId: "STRING_VALUE", // required
|
|
35
|
+
* AccountId: "STRING_VALUE",
|
|
35
36
|
* };
|
|
36
37
|
* const command = new DescribeProblemObservationsCommand(input);
|
|
37
38
|
* const response = await client.send(command);
|
|
@@ -47,13 +48,13 @@ export interface DescribeProblemObservationsCommandOutput extends DescribeProble
|
|
|
47
48
|
* // LogGroup: "STRING_VALUE",
|
|
48
49
|
* // LineTime: new Date("TIMESTAMP"),
|
|
49
50
|
* // LogText: "STRING_VALUE",
|
|
50
|
-
* // LogFilter: "
|
|
51
|
+
* // LogFilter: "ERROR" || "WARN" || "INFO",
|
|
51
52
|
* // MetricNamespace: "STRING_VALUE",
|
|
52
53
|
* // MetricName: "STRING_VALUE",
|
|
53
54
|
* // Unit: "STRING_VALUE",
|
|
54
55
|
* // Value: Number("double"),
|
|
55
56
|
* // CloudWatchEventId: "STRING_VALUE",
|
|
56
|
-
* // CloudWatchEventSource: "
|
|
57
|
+
* // CloudWatchEventSource: "EC2" || "CODE_DEPLOY" || "HEALTH" || "RDS",
|
|
57
58
|
* // CloudWatchEventDetailType: "STRING_VALUE",
|
|
58
59
|
* // HealthEventArn: "STRING_VALUE",
|
|
59
60
|
* // HealthService: "STRING_VALUE",
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
|
|
5
|
+
import { DescribeWorkloadRequest, DescribeWorkloadResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DescribeWorkloadCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DescribeWorkloadCommandInput extends DescribeWorkloadRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DescribeWorkloadCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DescribeWorkloadCommandOutput extends DescribeWorkloadResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Describes a workload and its configuration.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { ApplicationInsightsClient, DescribeWorkloadCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
|
|
31
|
+
* // const { ApplicationInsightsClient, DescribeWorkloadCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
|
|
32
|
+
* const client = new ApplicationInsightsClient(config);
|
|
33
|
+
* const input = { // DescribeWorkloadRequest
|
|
34
|
+
* ResourceGroupName: "STRING_VALUE", // required
|
|
35
|
+
* ComponentName: "STRING_VALUE", // required
|
|
36
|
+
* WorkloadId: "STRING_VALUE", // required
|
|
37
|
+
* AccountId: "STRING_VALUE",
|
|
38
|
+
* };
|
|
39
|
+
* const command = new DescribeWorkloadCommand(input);
|
|
40
|
+
* const response = await client.send(command);
|
|
41
|
+
* // { // DescribeWorkloadResponse
|
|
42
|
+
* // WorkloadId: "STRING_VALUE",
|
|
43
|
+
* // WorkloadRemarks: "STRING_VALUE",
|
|
44
|
+
* // WorkloadConfiguration: { // WorkloadConfiguration
|
|
45
|
+
* // WorkloadName: "STRING_VALUE",
|
|
46
|
+
* // Tier: "CUSTOM" || "DEFAULT" || "DOT_NET_CORE" || "DOT_NET_WORKER" || "DOT_NET_WEB_TIER" || "DOT_NET_WEB" || "SQL_SERVER" || "SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP" || "MYSQL" || "POSTGRESQL" || "JAVA_JMX" || "ORACLE" || "SAP_HANA_MULTI_NODE" || "SAP_HANA_SINGLE_NODE" || "SAP_HANA_HIGH_AVAILABILITY" || "SQL_SERVER_FAILOVER_CLUSTER_INSTANCE" || "SHAREPOINT" || "ACTIVE_DIRECTORY" || "SAP_NETWEAVER_STANDARD" || "SAP_NETWEAVER_DISTRIBUTED" || "SAP_NETWEAVER_HIGH_AVAILABILITY",
|
|
47
|
+
* // Configuration: "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
51
|
+
* ```
|
|
52
|
+
*
|
|
53
|
+
* @param DescribeWorkloadCommandInput - {@link DescribeWorkloadCommandInput}
|
|
54
|
+
* @returns {@link DescribeWorkloadCommandOutput}
|
|
55
|
+
* @see {@link DescribeWorkloadCommandInput} for command's `input` shape.
|
|
56
|
+
* @see {@link DescribeWorkloadCommandOutput} for command's `response` shape.
|
|
57
|
+
* @see {@link ApplicationInsightsClientResolvedConfig | config} for ApplicationInsightsClient's `config` shape.
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link InternalServerException} (server fault)
|
|
60
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
63
|
+
* <p>The resource does not exist in the customer account.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ValidationException} (client fault)
|
|
66
|
+
* <p>The parameter is not valid.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
69
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
70
|
+
*
|
|
71
|
+
*/
|
|
72
|
+
export declare class DescribeWorkloadCommand extends $Command<DescribeWorkloadCommandInput, DescribeWorkloadCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
73
|
+
readonly input: DescribeWorkloadCommandInput;
|
|
74
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
constructor(input: DescribeWorkloadCommandInput);
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
82
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeWorkloadCommandInput, DescribeWorkloadCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
86
|
+
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
90
|
+
private deserialize;
|
|
91
|
+
}
|
|
@@ -33,12 +33,14 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
33
33
|
* const input = { // ListApplicationsRequest
|
|
34
34
|
* MaxResults: Number("int"),
|
|
35
35
|
* NextToken: "STRING_VALUE",
|
|
36
|
+
* AccountId: "STRING_VALUE",
|
|
36
37
|
* };
|
|
37
38
|
* const command = new ListApplicationsCommand(input);
|
|
38
39
|
* const response = await client.send(command);
|
|
39
40
|
* // { // ListApplicationsResponse
|
|
40
41
|
* // ApplicationInfoList: [ // ApplicationInfoList
|
|
41
42
|
* // { // ApplicationInfo
|
|
43
|
+
* // AccountId: "STRING_VALUE",
|
|
42
44
|
* // ResourceGroupName: "STRING_VALUE",
|
|
43
45
|
* // LifeCycle: "STRING_VALUE",
|
|
44
46
|
* // OpsItemSNSTopicArn: "STRING_VALUE",
|
|
@@ -46,7 +48,7 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
|
|
|
46
48
|
* // CWEMonitorEnabled: true || false,
|
|
47
49
|
* // Remarks: "STRING_VALUE",
|
|
48
50
|
* // AutoConfigEnabled: true || false,
|
|
49
|
-
* // DiscoveryType: "
|
|
51
|
+
* // DiscoveryType: "RESOURCE_GROUP_BASED" || "ACCOUNT_BASED",
|
|
50
52
|
* // },
|
|
51
53
|
* // ],
|
|
52
54
|
* // NextToken: "STRING_VALUE",
|
|
@@ -34,6 +34,7 @@ export interface ListComponentsCommandOutput extends ListComponentsResponse, __M
|
|
|
34
34
|
* ResourceGroupName: "STRING_VALUE", // required
|
|
35
35
|
* MaxResults: Number("int"),
|
|
36
36
|
* NextToken: "STRING_VALUE",
|
|
37
|
+
* AccountId: "STRING_VALUE",
|
|
37
38
|
* };
|
|
38
39
|
* const command = new ListComponentsCommand(input);
|
|
39
40
|
* const response = await client.send(command);
|
|
@@ -43,8 +44,8 @@ export interface ListComponentsCommandOutput extends ListComponentsResponse, __M
|
|
|
43
44
|
* // ComponentName: "STRING_VALUE",
|
|
44
45
|
* // ComponentRemarks: "STRING_VALUE",
|
|
45
46
|
* // ResourceType: "STRING_VALUE",
|
|
46
|
-
* // OsType: "
|
|
47
|
-
* // Tier: "
|
|
47
|
+
* // OsType: "WINDOWS" || "LINUX",
|
|
48
|
+
* // Tier: "CUSTOM" || "DEFAULT" || "DOT_NET_CORE" || "DOT_NET_WORKER" || "DOT_NET_WEB_TIER" || "DOT_NET_WEB" || "SQL_SERVER" || "SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP" || "MYSQL" || "POSTGRESQL" || "JAVA_JMX" || "ORACLE" || "SAP_HANA_MULTI_NODE" || "SAP_HANA_SINGLE_NODE" || "SAP_HANA_HIGH_AVAILABILITY" || "SQL_SERVER_FAILOVER_CLUSTER_INSTANCE" || "SHAREPOINT" || "ACTIVE_DIRECTORY" || "SAP_NETWEAVER_STANDARD" || "SAP_NETWEAVER_DISTRIBUTED" || "SAP_NETWEAVER_HIGH_AVAILABILITY",
|
|
48
49
|
* // Monitor: true || false,
|
|
49
50
|
* // DetectedWorkload: { // DetectedWorkload
|
|
50
51
|
* // "<keys>": { // WorkloadMetaData
|
|
@@ -47,18 +47,21 @@ export interface ListConfigurationHistoryCommandOutput extends ListConfiguration
|
|
|
47
47
|
* ResourceGroupName: "STRING_VALUE",
|
|
48
48
|
* StartTime: new Date("TIMESTAMP"),
|
|
49
49
|
* EndTime: new Date("TIMESTAMP"),
|
|
50
|
-
* EventStatus: "
|
|
50
|
+
* EventStatus: "INFO" || "WARN" || "ERROR",
|
|
51
51
|
* MaxResults: Number("int"),
|
|
52
52
|
* NextToken: "STRING_VALUE",
|
|
53
|
+
* AccountId: "STRING_VALUE",
|
|
53
54
|
* };
|
|
54
55
|
* const command = new ListConfigurationHistoryCommand(input);
|
|
55
56
|
* const response = await client.send(command);
|
|
56
57
|
* // { // ListConfigurationHistoryResponse
|
|
57
58
|
* // EventList: [ // ConfigurationEventList
|
|
58
59
|
* // { // ConfigurationEvent
|
|
60
|
+
* // ResourceGroupName: "STRING_VALUE",
|
|
61
|
+
* // AccountId: "STRING_VALUE",
|
|
59
62
|
* // MonitoredResourceARN: "STRING_VALUE",
|
|
60
|
-
* // EventStatus: "
|
|
61
|
-
* // EventResourceType: "
|
|
63
|
+
* // EventStatus: "INFO" || "WARN" || "ERROR",
|
|
64
|
+
* // EventResourceType: "CLOUDWATCH_ALARM" || "CLOUDWATCH_LOG" || "CLOUDFORMATION" || "SSM_ASSOCIATION",
|
|
62
65
|
* // EventTime: new Date("TIMESTAMP"),
|
|
63
66
|
* // EventDetail: "STRING_VALUE",
|
|
64
67
|
* // EventResourceName: "STRING_VALUE",
|
|
@@ -34,11 +34,13 @@ export interface ListLogPatternSetsCommandOutput extends ListLogPatternSetsRespo
|
|
|
34
34
|
* ResourceGroupName: "STRING_VALUE", // required
|
|
35
35
|
* MaxResults: Number("int"),
|
|
36
36
|
* NextToken: "STRING_VALUE",
|
|
37
|
+
* AccountId: "STRING_VALUE",
|
|
37
38
|
* };
|
|
38
39
|
* const command = new ListLogPatternSetsCommand(input);
|
|
39
40
|
* const response = await client.send(command);
|
|
40
41
|
* // { // ListLogPatternSetsResponse
|
|
41
42
|
* // ResourceGroupName: "STRING_VALUE",
|
|
43
|
+
* // AccountId: "STRING_VALUE",
|
|
42
44
|
* // LogPatternSets: [ // LogPatternSetList
|
|
43
45
|
* // "STRING_VALUE",
|
|
44
46
|
* // ],
|
|
@@ -35,11 +35,13 @@ export interface ListLogPatternsCommandOutput extends ListLogPatternsResponse, _
|
|
|
35
35
|
* PatternSetName: "STRING_VALUE",
|
|
36
36
|
* MaxResults: Number("int"),
|
|
37
37
|
* NextToken: "STRING_VALUE",
|
|
38
|
+
* AccountId: "STRING_VALUE",
|
|
38
39
|
* };
|
|
39
40
|
* const command = new ListLogPatternsCommand(input);
|
|
40
41
|
* const response = await client.send(command);
|
|
41
42
|
* // { // ListLogPatternsResponse
|
|
42
43
|
* // ResourceGroupName: "STRING_VALUE",
|
|
44
|
+
* // AccountId: "STRING_VALUE",
|
|
43
45
|
* // LogPatterns: [ // LogPatternList
|
|
44
46
|
* // { // LogPattern
|
|
45
47
|
* // PatternSetName: "STRING_VALUE",
|
|
@@ -31,12 +31,14 @@ export interface ListProblemsCommandOutput extends ListProblemsResponse, __Metad
|
|
|
31
31
|
* // const { ApplicationInsightsClient, ListProblemsCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
|
|
32
32
|
* const client = new ApplicationInsightsClient(config);
|
|
33
33
|
* const input = { // ListProblemsRequest
|
|
34
|
+
* AccountId: "STRING_VALUE",
|
|
34
35
|
* ResourceGroupName: "STRING_VALUE",
|
|
35
36
|
* StartTime: new Date("TIMESTAMP"),
|
|
36
37
|
* EndTime: new Date("TIMESTAMP"),
|
|
37
38
|
* MaxResults: Number("int"),
|
|
38
39
|
* NextToken: "STRING_VALUE",
|
|
39
40
|
* ComponentName: "STRING_VALUE",
|
|
41
|
+
* Visibility: "IGNORED" || "VISIBLE",
|
|
40
42
|
* };
|
|
41
43
|
* const command = new ListProblemsCommand(input);
|
|
42
44
|
* const response = await client.send(command);
|
|
@@ -46,21 +48,25 @@ export interface ListProblemsCommandOutput extends ListProblemsResponse, __Metad
|
|
|
46
48
|
* // Id: "STRING_VALUE",
|
|
47
49
|
* // Title: "STRING_VALUE",
|
|
48
50
|
* // Insights: "STRING_VALUE",
|
|
49
|
-
* // Status: "
|
|
51
|
+
* // Status: "IGNORE" || "RESOLVED" || "PENDING" || "RECURRING" || "RECOVERING",
|
|
50
52
|
* // AffectedResource: "STRING_VALUE",
|
|
51
53
|
* // StartTime: new Date("TIMESTAMP"),
|
|
52
54
|
* // EndTime: new Date("TIMESTAMP"),
|
|
53
|
-
* // SeverityLevel: "
|
|
55
|
+
* // SeverityLevel: "Informative" || "Low" || "Medium" || "High",
|
|
56
|
+
* // AccountId: "STRING_VALUE",
|
|
54
57
|
* // ResourceGroupName: "STRING_VALUE",
|
|
55
58
|
* // Feedback: { // Feedback
|
|
56
|
-
* // "<keys>": "
|
|
59
|
+
* // "<keys>": "NOT_SPECIFIED" || "USEFUL" || "NOT_USEFUL",
|
|
57
60
|
* // },
|
|
58
61
|
* // RecurringCount: Number("long"),
|
|
59
62
|
* // LastRecurrenceTime: new Date("TIMESTAMP"),
|
|
63
|
+
* // Visibility: "IGNORED" || "VISIBLE",
|
|
64
|
+
* // ResolutionMethod: "MANUAL" || "AUTOMATIC" || "UNRESOLVED",
|
|
60
65
|
* // },
|
|
61
66
|
* // ],
|
|
62
67
|
* // NextToken: "STRING_VALUE",
|
|
63
68
|
* // ResourceGroupName: "STRING_VALUE",
|
|
69
|
+
* // AccountId: "STRING_VALUE",
|
|
64
70
|
* // };
|
|
65
71
|
*
|
|
66
72
|
* ```
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
|
|
5
|
+
import { ListWorkloadsRequest, ListWorkloadsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link ListWorkloadsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface ListWorkloadsCommandInput extends ListWorkloadsRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link ListWorkloadsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface ListWorkloadsCommandOutput extends ListWorkloadsResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Lists the workloads that are configured on a given component.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { ApplicationInsightsClient, ListWorkloadsCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
|
|
31
|
+
* // const { ApplicationInsightsClient, ListWorkloadsCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
|
|
32
|
+
* const client = new ApplicationInsightsClient(config);
|
|
33
|
+
* const input = { // ListWorkloadsRequest
|
|
34
|
+
* ResourceGroupName: "STRING_VALUE", // required
|
|
35
|
+
* ComponentName: "STRING_VALUE", // required
|
|
36
|
+
* MaxResults: Number("int"),
|
|
37
|
+
* NextToken: "STRING_VALUE",
|
|
38
|
+
* AccountId: "STRING_VALUE",
|
|
39
|
+
* };
|
|
40
|
+
* const command = new ListWorkloadsCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // { // ListWorkloadsResponse
|
|
43
|
+
* // WorkloadList: [ // WorkloadList
|
|
44
|
+
* // { // Workload
|
|
45
|
+
* // WorkloadId: "STRING_VALUE",
|
|
46
|
+
* // ComponentName: "STRING_VALUE",
|
|
47
|
+
* // WorkloadName: "STRING_VALUE",
|
|
48
|
+
* // Tier: "CUSTOM" || "DEFAULT" || "DOT_NET_CORE" || "DOT_NET_WORKER" || "DOT_NET_WEB_TIER" || "DOT_NET_WEB" || "SQL_SERVER" || "SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP" || "MYSQL" || "POSTGRESQL" || "JAVA_JMX" || "ORACLE" || "SAP_HANA_MULTI_NODE" || "SAP_HANA_SINGLE_NODE" || "SAP_HANA_HIGH_AVAILABILITY" || "SQL_SERVER_FAILOVER_CLUSTER_INSTANCE" || "SHAREPOINT" || "ACTIVE_DIRECTORY" || "SAP_NETWEAVER_STANDARD" || "SAP_NETWEAVER_DISTRIBUTED" || "SAP_NETWEAVER_HIGH_AVAILABILITY",
|
|
49
|
+
* // WorkloadRemarks: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // ],
|
|
52
|
+
* // NextToken: "STRING_VALUE",
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
55
|
+
* ```
|
|
56
|
+
*
|
|
57
|
+
* @param ListWorkloadsCommandInput - {@link ListWorkloadsCommandInput}
|
|
58
|
+
* @returns {@link ListWorkloadsCommandOutput}
|
|
59
|
+
* @see {@link ListWorkloadsCommandInput} for command's `input` shape.
|
|
60
|
+
* @see {@link ListWorkloadsCommandOutput} for command's `response` shape.
|
|
61
|
+
* @see {@link ApplicationInsightsClientResolvedConfig | config} for ApplicationInsightsClient's `config` shape.
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link InternalServerException} (server fault)
|
|
64
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
67
|
+
* <p>The resource does not exist in the customer account.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ValidationException} (client fault)
|
|
70
|
+
* <p>The parameter is not valid.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
73
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
74
|
+
*
|
|
75
|
+
*/
|
|
76
|
+
export declare class ListWorkloadsCommand extends $Command<ListWorkloadsCommandInput, ListWorkloadsCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
77
|
+
readonly input: ListWorkloadsCommandInput;
|
|
78
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
constructor(input: ListWorkloadsCommandInput);
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
86
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListWorkloadsCommandInput, ListWorkloadsCommandOutput>;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
90
|
+
private serialize;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
94
|
+
private deserialize;
|
|
95
|
+
}
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
|
|
4
|
+
import { ApplicationInsightsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../ApplicationInsightsClient";
|
|
5
|
+
import { RemoveWorkloadRequest, RemoveWorkloadResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export { __MetadataBearer, $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link RemoveWorkloadCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface RemoveWorkloadCommandInput extends RemoveWorkloadRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link RemoveWorkloadCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface RemoveWorkloadCommandOutput extends RemoveWorkloadResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
* <p>Remove workload from a component.</p>
|
|
27
|
+
* @example
|
|
28
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
29
|
+
* ```javascript
|
|
30
|
+
* import { ApplicationInsightsClient, RemoveWorkloadCommand } from "@aws-sdk/client-application-insights"; // ES Modules import
|
|
31
|
+
* // const { ApplicationInsightsClient, RemoveWorkloadCommand } = require("@aws-sdk/client-application-insights"); // CommonJS import
|
|
32
|
+
* const client = new ApplicationInsightsClient(config);
|
|
33
|
+
* const input = { // RemoveWorkloadRequest
|
|
34
|
+
* ResourceGroupName: "STRING_VALUE", // required
|
|
35
|
+
* ComponentName: "STRING_VALUE", // required
|
|
36
|
+
* WorkloadId: "STRING_VALUE", // required
|
|
37
|
+
* };
|
|
38
|
+
* const command = new RemoveWorkloadCommand(input);
|
|
39
|
+
* const response = await client.send(command);
|
|
40
|
+
* // {};
|
|
41
|
+
*
|
|
42
|
+
* ```
|
|
43
|
+
*
|
|
44
|
+
* @param RemoveWorkloadCommandInput - {@link RemoveWorkloadCommandInput}
|
|
45
|
+
* @returns {@link RemoveWorkloadCommandOutput}
|
|
46
|
+
* @see {@link RemoveWorkloadCommandInput} for command's `input` shape.
|
|
47
|
+
* @see {@link RemoveWorkloadCommandOutput} for command's `response` shape.
|
|
48
|
+
* @see {@link ApplicationInsightsClientResolvedConfig | config} for ApplicationInsightsClient's `config` shape.
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link InternalServerException} (server fault)
|
|
51
|
+
* <p>The server encountered an internal error and is unable to complete the request.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
54
|
+
* <p>The resource does not exist in the customer account.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link ValidationException} (client fault)
|
|
57
|
+
* <p>The parameter is not valid.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ApplicationInsightsServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from ApplicationInsights service.</p>
|
|
61
|
+
*
|
|
62
|
+
*/
|
|
63
|
+
export declare class RemoveWorkloadCommand extends $Command<RemoveWorkloadCommandInput, RemoveWorkloadCommandOutput, ApplicationInsightsClientResolvedConfig> {
|
|
64
|
+
readonly input: RemoveWorkloadCommandInput;
|
|
65
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
69
|
+
constructor(input: RemoveWorkloadCommandInput);
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
73
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: ApplicationInsightsClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveWorkloadCommandInput, RemoveWorkloadCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
77
|
+
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
81
|
+
private deserialize;
|
|
82
|
+
}
|
|
@@ -42,6 +42,7 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
42
42
|
* const response = await client.send(command);
|
|
43
43
|
* // { // UpdateApplicationResponse
|
|
44
44
|
* // ApplicationInfo: { // ApplicationInfo
|
|
45
|
+
* // AccountId: "STRING_VALUE",
|
|
45
46
|
* // ResourceGroupName: "STRING_VALUE",
|
|
46
47
|
* // LifeCycle: "STRING_VALUE",
|
|
47
48
|
* // OpsItemSNSTopicArn: "STRING_VALUE",
|
|
@@ -49,7 +50,7 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
|
|
|
49
50
|
* // CWEMonitorEnabled: true || false,
|
|
50
51
|
* // Remarks: "STRING_VALUE",
|
|
51
52
|
* // AutoConfigEnabled: true || false,
|
|
52
|
-
* // DiscoveryType: "
|
|
53
|
+
* // DiscoveryType: "RESOURCE_GROUP_BASED" || "ACCOUNT_BASED",
|
|
53
54
|
* // },
|
|
54
55
|
* // };
|
|
55
56
|
*
|
|
@@ -36,7 +36,7 @@ export interface UpdateComponentConfigurationCommandOutput extends UpdateCompone
|
|
|
36
36
|
* ResourceGroupName: "STRING_VALUE", // required
|
|
37
37
|
* ComponentName: "STRING_VALUE", // required
|
|
38
38
|
* Monitor: true || false,
|
|
39
|
-
* Tier: "
|
|
39
|
+
* Tier: "CUSTOM" || "DEFAULT" || "DOT_NET_CORE" || "DOT_NET_WORKER" || "DOT_NET_WEB_TIER" || "DOT_NET_WEB" || "SQL_SERVER" || "SQL_SERVER_ALWAYSON_AVAILABILITY_GROUP" || "MYSQL" || "POSTGRESQL" || "JAVA_JMX" || "ORACLE" || "SAP_HANA_MULTI_NODE" || "SAP_HANA_SINGLE_NODE" || "SAP_HANA_HIGH_AVAILABILITY" || "SQL_SERVER_FAILOVER_CLUSTER_INSTANCE" || "SHAREPOINT" || "ACTIVE_DIRECTORY" || "SAP_NETWEAVER_STANDARD" || "SAP_NETWEAVER_DISTRIBUTED" || "SAP_NETWEAVER_HIGH_AVAILABILITY",
|
|
40
40
|
* ComponentConfiguration: "STRING_VALUE",
|
|
41
41
|
* AutoConfigEnabled: true || false,
|
|
42
42
|
* };
|