@aws-sdk/client-cloudtrail 3.169.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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/CloudTrail.d.ts +562 -160
- package/dist-types/ts3.4/CloudTrailClient.d.ts +315 -104
- package/dist-types/ts3.4/commands/AddTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CancelQueryCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateEventDataStoreCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateTrailCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DeleteEventDataStoreCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteTrailCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeQueryCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeTrailsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetChannelCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetEventDataStoreCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetEventSelectorsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetInsightSelectorsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetQueryResultsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetTrailCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetTrailStatusCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListEventDataStoresCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListPublicKeysCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListQueriesCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTrailsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/LookupEventsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PutEventSelectorsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutInsightSelectorsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/RemoveTagsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/RestoreEventDataStoreCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartLoggingCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StartQueryCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/StopLoggingCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateEventDataStoreCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateTrailCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +31 -31
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/CloudTrailServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1798 -1555
- package/dist-types/ts3.4/pagination/GetQueryResultsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListChannelsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListEventDataStoresPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListPublicKeysPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListQueriesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTagsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTrailsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/LookupEventsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +9 -9
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +377 -95
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
CloudTrailClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudTrailClient";
|
|
13
|
+
import { StartLoggingRequest, StartLoggingResponse } from "../models/models_0";
|
|
14
|
+
export interface StartLoggingCommandInput extends StartLoggingRequest {}
|
|
15
|
+
export interface StartLoggingCommandOutput
|
|
16
|
+
extends StartLoggingResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class StartLoggingCommand extends $Command<
|
|
20
|
+
StartLoggingCommandInput,
|
|
21
|
+
StartLoggingCommandOutput,
|
|
22
|
+
CloudTrailClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: StartLoggingCommandInput;
|
|
25
|
+
constructor(input: StartLoggingCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: CloudTrailClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<StartLoggingCommandInput, StartLoggingCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
CloudTrailClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudTrailClient";
|
|
13
|
+
import { StartQueryRequest, StartQueryResponse } from "../models/models_0";
|
|
14
|
+
export interface StartQueryCommandInput extends StartQueryRequest {}
|
|
15
|
+
export interface StartQueryCommandOutput
|
|
16
|
+
extends StartQueryResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class StartQueryCommand extends $Command<
|
|
20
|
+
StartQueryCommandInput,
|
|
21
|
+
StartQueryCommandOutput,
|
|
22
|
+
CloudTrailClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: StartQueryCommandInput;
|
|
25
|
+
constructor(input: StartQueryCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: CloudTrailClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<StartQueryCommandInput, StartQueryCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
CloudTrailClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudTrailClient";
|
|
13
|
+
import { StopLoggingRequest, StopLoggingResponse } from "../models/models_0";
|
|
14
|
+
export interface StopLoggingCommandInput extends StopLoggingRequest {}
|
|
15
|
+
export interface StopLoggingCommandOutput
|
|
16
|
+
extends StopLoggingResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class StopLoggingCommand extends $Command<
|
|
20
|
+
StopLoggingCommandInput,
|
|
21
|
+
StopLoggingCommandOutput,
|
|
22
|
+
CloudTrailClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: StopLoggingCommandInput;
|
|
25
|
+
constructor(input: StopLoggingCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: CloudTrailClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<StopLoggingCommandInput, StopLoggingCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
CloudTrailClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudTrailClient";
|
|
13
|
+
import {
|
|
14
|
+
UpdateEventDataStoreRequest,
|
|
15
|
+
UpdateEventDataStoreResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface UpdateEventDataStoreCommandInput
|
|
18
|
+
extends UpdateEventDataStoreRequest {}
|
|
19
|
+
export interface UpdateEventDataStoreCommandOutput
|
|
20
|
+
extends UpdateEventDataStoreResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class UpdateEventDataStoreCommand extends $Command<
|
|
24
|
+
UpdateEventDataStoreCommandInput,
|
|
25
|
+
UpdateEventDataStoreCommandOutput,
|
|
26
|
+
CloudTrailClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateEventDataStoreCommandInput;
|
|
29
|
+
constructor(input: UpdateEventDataStoreCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: CloudTrailClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
UpdateEventDataStoreCommandInput,
|
|
37
|
+
UpdateEventDataStoreCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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
|
+
CloudTrailClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../CloudTrailClient";
|
|
13
|
+
import { UpdateTrailRequest, UpdateTrailResponse } from "../models/models_0";
|
|
14
|
+
export interface UpdateTrailCommandInput extends UpdateTrailRequest {}
|
|
15
|
+
export interface UpdateTrailCommandOutput
|
|
16
|
+
extends UpdateTrailResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class UpdateTrailCommand extends $Command<
|
|
20
|
+
UpdateTrailCommandInput,
|
|
21
|
+
UpdateTrailCommandOutput,
|
|
22
|
+
CloudTrailClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: UpdateTrailCommandInput;
|
|
25
|
+
constructor(input: UpdateTrailCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: CloudTrailClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<UpdateTrailCommandInput, UpdateTrailCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
export * from "./AddTagsCommand";
|
|
2
|
-
export * from "./CancelQueryCommand";
|
|
3
|
-
export * from "./CreateEventDataStoreCommand";
|
|
4
|
-
export * from "./CreateTrailCommand";
|
|
5
|
-
export * from "./DeleteEventDataStoreCommand";
|
|
6
|
-
export * from "./DeleteTrailCommand";
|
|
7
|
-
export * from "./DescribeQueryCommand";
|
|
8
|
-
export * from "./DescribeTrailsCommand";
|
|
9
|
-
export * from "./GetChannelCommand";
|
|
10
|
-
export * from "./GetEventDataStoreCommand";
|
|
11
|
-
export * from "./GetEventSelectorsCommand";
|
|
12
|
-
export * from "./GetInsightSelectorsCommand";
|
|
13
|
-
export * from "./GetQueryResultsCommand";
|
|
14
|
-
export * from "./GetTrailCommand";
|
|
15
|
-
export * from "./GetTrailStatusCommand";
|
|
16
|
-
export * from "./ListChannelsCommand";
|
|
17
|
-
export * from "./ListEventDataStoresCommand";
|
|
18
|
-
export * from "./ListPublicKeysCommand";
|
|
19
|
-
export * from "./ListQueriesCommand";
|
|
20
|
-
export * from "./ListTagsCommand";
|
|
21
|
-
export * from "./ListTrailsCommand";
|
|
22
|
-
export * from "./LookupEventsCommand";
|
|
23
|
-
export * from "./PutEventSelectorsCommand";
|
|
24
|
-
export * from "./PutInsightSelectorsCommand";
|
|
25
|
-
export * from "./RemoveTagsCommand";
|
|
26
|
-
export * from "./RestoreEventDataStoreCommand";
|
|
27
|
-
export * from "./StartLoggingCommand";
|
|
28
|
-
export * from "./StartQueryCommand";
|
|
29
|
-
export * from "./StopLoggingCommand";
|
|
30
|
-
export * from "./UpdateEventDataStoreCommand";
|
|
31
|
-
export * from "./UpdateTrailCommand";
|
|
1
|
+
export * from "./AddTagsCommand";
|
|
2
|
+
export * from "./CancelQueryCommand";
|
|
3
|
+
export * from "./CreateEventDataStoreCommand";
|
|
4
|
+
export * from "./CreateTrailCommand";
|
|
5
|
+
export * from "./DeleteEventDataStoreCommand";
|
|
6
|
+
export * from "./DeleteTrailCommand";
|
|
7
|
+
export * from "./DescribeQueryCommand";
|
|
8
|
+
export * from "./DescribeTrailsCommand";
|
|
9
|
+
export * from "./GetChannelCommand";
|
|
10
|
+
export * from "./GetEventDataStoreCommand";
|
|
11
|
+
export * from "./GetEventSelectorsCommand";
|
|
12
|
+
export * from "./GetInsightSelectorsCommand";
|
|
13
|
+
export * from "./GetQueryResultsCommand";
|
|
14
|
+
export * from "./GetTrailCommand";
|
|
15
|
+
export * from "./GetTrailStatusCommand";
|
|
16
|
+
export * from "./ListChannelsCommand";
|
|
17
|
+
export * from "./ListEventDataStoresCommand";
|
|
18
|
+
export * from "./ListPublicKeysCommand";
|
|
19
|
+
export * from "./ListQueriesCommand";
|
|
20
|
+
export * from "./ListTagsCommand";
|
|
21
|
+
export * from "./ListTrailsCommand";
|
|
22
|
+
export * from "./LookupEventsCommand";
|
|
23
|
+
export * from "./PutEventSelectorsCommand";
|
|
24
|
+
export * from "./PutInsightSelectorsCommand";
|
|
25
|
+
export * from "./RemoveTagsCommand";
|
|
26
|
+
export * from "./RestoreEventDataStoreCommand";
|
|
27
|
+
export * from "./StartLoggingCommand";
|
|
28
|
+
export * from "./StartQueryCommand";
|
|
29
|
+
export * from "./StopLoggingCommand";
|
|
30
|
+
export * from "./UpdateEventDataStoreCommand";
|
|
31
|
+
export * from "./UpdateTrailCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./CloudTrail";
|
|
2
|
-
export * from "./CloudTrailClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { CloudTrailServiceException } from "./models/CloudTrailServiceException";
|
|
1
|
+
export * from "./CloudTrail";
|
|
2
|
+
export * from "./CloudTrailClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { CloudTrailServiceException } from "./models/CloudTrailServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class CloudTrailServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|