@aws-sdk/client-application-signals 3.936.0 → 3.937.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 +8 -0
- package/dist-cjs/index.js +95 -4
- package/dist-es/ApplicationSignals.js +2 -0
- package/dist-es/commands/ListEntityEventsCommand.js +16 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/enums.js +5 -0
- package/dist-es/pagination/ListEntityEventsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +73 -4
- package/dist-types/ApplicationSignals.d.ts +7 -0
- package/dist-types/ApplicationSignalsClient.d.ts +3 -2
- package/dist-types/commands/DeleteGroupingConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/ListAuditFindingsCommand.d.ts +7 -1
- package/dist-types/commands/ListEntityEventsCommand.d.ts +102 -0
- package/dist-types/commands/ListGroupingAttributeDefinitionsCommand.d.ts +3 -1
- package/dist-types/commands/ListServiceStatesCommand.d.ts +2 -2
- package/dist-types/commands/PutGroupingConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/StartDiscoveryCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +13 -0
- package/dist-types/models/models_0.d.ts +228 -143
- package/dist-types/pagination/ListEntityEventsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +5 -0
- package/dist-types/ts3.4/ApplicationSignals.d.ts +17 -0
- package/dist-types/ts3.4/ApplicationSignalsClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListEntityEventsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +30 -10
- package/dist-types/ts3.4/pagination/ListEntityEventsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +5 -0
- package/package.json +1 -1
|
@@ -27,7 +27,7 @@ declare const ListGroupingAttributeDefinitionsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
30
|
+
* <p>Returns the current grouping configuration for this account, including all custom grouping attribute definitions that have been configured. These definitions determine how services are logically grouped based on telemetry attributes, Amazon Web Services tags, or predefined mappings.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -38,6 +38,8 @@ declare const ListGroupingAttributeDefinitionsCommand_base: {
|
|
|
38
38
|
* const client = new ApplicationSignalsClient(config);
|
|
39
39
|
* const input = { // ListGroupingAttributeDefinitionsInput
|
|
40
40
|
* NextToken: "STRING_VALUE",
|
|
41
|
+
* AwsAccountId: "STRING_VALUE",
|
|
42
|
+
* IncludeLinkedAccounts: true || false,
|
|
41
43
|
* };
|
|
42
44
|
* const command = new ListGroupingAttributeDefinitionsCommand(input);
|
|
43
45
|
* const response = await client.send(command);
|
|
@@ -27,7 +27,7 @@ declare const ListServiceStatesCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
30
|
+
* <p>Returns information about the last deployment and other change states of services. This API provides visibility into recent changes that may have affected service performance, helping with troubleshooting and change correlation.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -78,7 +78,7 @@ declare const ListServiceStatesCommand_base: {
|
|
|
78
78
|
* // Entity: { // required
|
|
79
79
|
* // "<keys>": "STRING_VALUE",
|
|
80
80
|
* // },
|
|
81
|
-
* // ChangeEventType: "DEPLOYMENT", // required
|
|
81
|
+
* // ChangeEventType: "DEPLOYMENT" || "CONFIGURATION", // required
|
|
82
82
|
* // EventId: "STRING_VALUE", // required
|
|
83
83
|
* // UserName: "STRING_VALUE",
|
|
84
84
|
* // EventName: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ declare const PutGroupingConfigurationCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Creates or updates
|
|
30
|
+
* <p>Creates or updates the grouping configuration for this account. This operation allows you to define custom grouping attributes that determine how services are logically grouped based on telemetry attributes, Amazon Web Services tags, or predefined mappings. These grouping attributes can then be used to organize and filter services in the Application Signals console and APIs.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -27,7 +27,7 @@ declare const StartDiscoveryCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Enables this Amazon Web Services account to be able to use CloudWatch Application Signals by creating the <i>AWSServiceRoleForCloudWatchApplicationSignals</i> service-linked role. This service- linked role has the following permissions:</p> <ul> <li> <p> <code>xray:GetServiceGraph</code> </p> </li> <li> <p> <code>logs:StartQuery</code> </p> </li> <li> <p> <code>logs:GetQueryResults</code> </p> </li> <li> <p> <code>cloudwatch:GetMetricData</code> </p> </li> <li> <p> <code>cloudwatch:ListMetrics</code> </p> </li> <li> <p> <code>tag:GetResources</code> </p> </li> <li> <p> <code>autoscaling:DescribeAutoScalingGroups</code> </p> </li> </ul> <p>After completing this step, you still need to instrument your Java and Python applications to send data to Application Signals. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Application-Signals-Enable.html"> Enabling Application Signals</a>.</p>
|
|
30
|
+
* <p>Enables this Amazon Web Services account to be able to use CloudWatch Application Signals by creating the <i>AWSServiceRoleForCloudWatchApplicationSignals</i> service-linked role. This service- linked role has the following permissions:</p> <ul> <li> <p> <code>xray:GetServiceGraph</code> </p> </li> <li> <p> <code>logs:StartQuery</code> </p> </li> <li> <p> <code>logs:GetQueryResults</code> </p> </li> <li> <p> <code>cloudwatch:GetMetricData</code> </p> </li> <li> <p> <code>cloudwatch:ListMetrics</code> </p> </li> <li> <p> <code>tag:GetResources</code> </p> </li> <li> <p> <code>autoscaling:DescribeAutoScalingGroups</code> </p> </li> </ul> <p>A service-linked CloudTrail event channel is created to process CloudTrail events and return change event information. This includes last deployment time, userName, eventName, and other event metadata.</p> <p>After completing this step, you still need to instrument your Java and Python applications to send data to Application Signals. For more information, see <a href="https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-Application-Signals-Enable.html"> Enabling Application Signals</a>.</p>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -6,6 +6,7 @@ export * from "./DeleteServiceLevelObjectiveCommand";
|
|
|
6
6
|
export * from "./GetServiceCommand";
|
|
7
7
|
export * from "./GetServiceLevelObjectiveCommand";
|
|
8
8
|
export * from "./ListAuditFindingsCommand";
|
|
9
|
+
export * from "./ListEntityEventsCommand";
|
|
9
10
|
export * from "./ListGroupingAttributeDefinitionsCommand";
|
|
10
11
|
export * from "./ListServiceDependenciesCommand";
|
|
11
12
|
export * from "./ListServiceDependentsCommand";
|
|
@@ -101,6 +101,18 @@ export declare const StandardUnit: {
|
|
|
101
101
|
* @public
|
|
102
102
|
*/
|
|
103
103
|
export type StandardUnit = (typeof StandardUnit)[keyof typeof StandardUnit];
|
|
104
|
+
/**
|
|
105
|
+
* @public
|
|
106
|
+
* @enum
|
|
107
|
+
*/
|
|
108
|
+
export declare const DetailLevel: {
|
|
109
|
+
readonly BRIEF: "BRIEF";
|
|
110
|
+
readonly DETAILED: "DETAILED";
|
|
111
|
+
};
|
|
112
|
+
/**
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
export type DetailLevel = (typeof DetailLevel)[keyof typeof DetailLevel];
|
|
104
116
|
/**
|
|
105
117
|
* @public
|
|
106
118
|
* @enum
|
|
@@ -133,6 +145,7 @@ export type ConnectionType = (typeof ConnectionType)[keyof typeof ConnectionType
|
|
|
133
145
|
* @enum
|
|
134
146
|
*/
|
|
135
147
|
export declare const ChangeEventType: {
|
|
148
|
+
readonly CONFIGURATION: "CONFIGURATION";
|
|
136
149
|
readonly DEPLOYMENT: "DEPLOYMENT";
|
|
137
150
|
};
|
|
138
151
|
/**
|