@aws-lite/cloudwatch-logs-types 0.0.7 → 0.0.9
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/index.d.ts +9 -9
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -16,37 +16,37 @@ declare interface AwsLiteCloudWatchLogs {
|
|
|
16
16
|
/**
|
|
17
17
|
* @description
|
|
18
18
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DeleteLogGroup.html CloudWatch Logs: DeleteLogGroup}
|
|
19
|
-
* - aws-lite docs: {@link https://github.com/
|
|
19
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/cloudwatch-logs/readme.md#DeleteLogGroup CloudWatch Logs: DeleteLogGroup}
|
|
20
20
|
*/
|
|
21
21
|
DeleteLogGroup: (input: { logGroupName: string }) => Promise<DeleteLogGroupResponse>
|
|
22
22
|
/**
|
|
23
23
|
* @description
|
|
24
24
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeLogGroups.html CloudWatch Logs: DescribeLogGroups}
|
|
25
|
-
* - aws-lite docs: {@link https://github.com/
|
|
25
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/cloudwatch-logs/readme.md#DescribeLogGroups CloudWatch Logs: DescribeLogGroups}
|
|
26
26
|
*/
|
|
27
|
-
DescribeLogGroups: (input: { accountIdentifiers?: any[], logGroupNamePrefix?: string, logGroupNamePattern?: string, nextToken?: string, limit?: number, includeLinkedAccounts?: boolean, logGroupClass?: string, paginate?: boolean }) => Promise<DescribeLogGroupsResponse>
|
|
27
|
+
DescribeLogGroups: (input: { accountIdentifiers?: any[], logGroupNamePrefix?: string, logGroupNamePattern?: string, nextToken?: string, limit?: number, includeLinkedAccounts?: boolean, logGroupClass?: string, paginate?: boolean | string }) => Promise<DescribeLogGroupsResponse>
|
|
28
28
|
/**
|
|
29
29
|
* @description
|
|
30
30
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeLogStreams.html CloudWatch Logs: DescribeLogStreams}
|
|
31
|
-
* - aws-lite docs: {@link https://github.com/
|
|
31
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/cloudwatch-logs/readme.md#DescribeLogStreams CloudWatch Logs: DescribeLogStreams}
|
|
32
32
|
*/
|
|
33
|
-
DescribeLogStreams: (input: { descending?: boolean, limit?: number, logGroupIdentifier?: string, logGroupName?: string, logStreamNamePrefix?: string, nextToken?: string, orderBy?: string, paginate?: boolean }) => Promise<DescribeLogStreamsResponse>
|
|
33
|
+
DescribeLogStreams: (input: { descending?: boolean, limit?: number, logGroupIdentifier?: string, logGroupName?: string, logStreamNamePrefix?: string, nextToken?: string, orderBy?: string, paginate?: boolean | string }) => Promise<DescribeLogStreamsResponse>
|
|
34
34
|
/**
|
|
35
35
|
* @description
|
|
36
36
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_GetLogEvents.html CloudWatch Logs: GetLogEvents}
|
|
37
|
-
* - aws-lite docs: {@link https://github.com/
|
|
37
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/cloudwatch-logs/readme.md#GetLogEvents CloudWatch Logs: GetLogEvents}
|
|
38
38
|
*/
|
|
39
|
-
GetLogEvents: (input: { endTime?: number, limit?: number, logGroupIdentifier?: string, logGroupName?: string, logStreamName: string, nextToken?: string, startFromHead?: boolean, startTime?: number, unmask?: boolean, paginate?: boolean }) => Promise<GetLogEventsResponse>
|
|
39
|
+
GetLogEvents: (input: { endTime?: number, limit?: number, logGroupIdentifier?: string, logGroupName?: string, logStreamName: string, nextToken?: string, startFromHead?: boolean, startTime?: number, unmask?: boolean, paginate?: boolean | string }) => Promise<GetLogEventsResponse>
|
|
40
40
|
/**
|
|
41
41
|
* @description
|
|
42
42
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_GetQueryResults.html CloudWatch Logs: GetQueryResults}
|
|
43
|
-
* - aws-lite docs: {@link https://github.com/
|
|
43
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/cloudwatch-logs/readme.md#GetQueryResults CloudWatch Logs: GetQueryResults}
|
|
44
44
|
*/
|
|
45
45
|
GetQueryResults: (input: { queryId?: string }) => Promise<GetQueryResultsResponse>
|
|
46
46
|
/**
|
|
47
47
|
* @description
|
|
48
48
|
* - AWS docs: {@link https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_StartQuery.html CloudWatch Logs: StartQuery}
|
|
49
|
-
* - aws-lite docs: {@link https://github.com/
|
|
49
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/cloudwatch-logs/readme.md#StartQuery CloudWatch Logs: StartQuery}
|
|
50
50
|
*/
|
|
51
51
|
StartQuery: (input: { endTime?: number, limit?: number, logGroupIdentifiers?: any[], logGroupName?: string, logGroupNames?: any[], query?: string, startTime?: number }) => Promise<StartQueryResponse>
|
|
52
52
|
// $METHODS_END
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-lite/cloudwatch-logs-types",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "Type definitions for the `@aws-lite/cloudwatch-logs` plugin",
|
|
5
5
|
"homepage": "https://aws-lite.org/services/cloudwatch-logs",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/
|
|
8
|
+
"url": "git+https://github.com/aws-lite/aws-lite.git",
|
|
9
9
|
"directory": "plugins/cloudwatch-logs/types"
|
|
10
10
|
},
|
|
11
|
-
"bugs": "https://github.com/
|
|
11
|
+
"bugs": "https://github.com/aws-lite/aws-lite/issues",
|
|
12
12
|
"main": "",
|
|
13
13
|
"engines": {
|
|
14
14
|
"node": ">=16"
|