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