@aws-sdk/client-dataexchange 3.295.0 → 3.297.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 (40) hide show
  1. package/dist-types/DataExchange.d.ts +30 -0
  2. package/dist-types/DataExchangeClient.d.ts +24 -4
  3. package/dist-types/commands/CancelJobCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateDataSetCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateEventActionCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateJobCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateRevisionCommand.d.ts +16 -0
  8. package/dist-types/commands/DeleteAssetCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteDataSetCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteEventActionCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteRevisionCommand.d.ts +16 -0
  12. package/dist-types/commands/GetAssetCommand.d.ts +16 -0
  13. package/dist-types/commands/GetDataSetCommand.d.ts +16 -0
  14. package/dist-types/commands/GetEventActionCommand.d.ts +16 -0
  15. package/dist-types/commands/GetJobCommand.d.ts +16 -0
  16. package/dist-types/commands/GetRevisionCommand.d.ts +16 -0
  17. package/dist-types/commands/ListDataSetRevisionsCommand.d.ts +16 -0
  18. package/dist-types/commands/ListDataSetsCommand.d.ts +16 -0
  19. package/dist-types/commands/ListEventActionsCommand.d.ts +16 -0
  20. package/dist-types/commands/ListJobsCommand.d.ts +16 -0
  21. package/dist-types/commands/ListRevisionAssetsCommand.d.ts +16 -0
  22. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  23. package/dist-types/commands/RevokeRevisionCommand.d.ts +16 -0
  24. package/dist-types/commands/SendApiAssetCommand.d.ts +16 -0
  25. package/dist-types/commands/StartJobCommand.d.ts +16 -0
  26. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  27. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  28. package/dist-types/commands/UpdateAssetCommand.d.ts +16 -0
  29. package/dist-types/commands/UpdateDataSetCommand.d.ts +16 -0
  30. package/dist-types/commands/UpdateEventActionCommand.d.ts +16 -0
  31. package/dist-types/commands/UpdateRevisionCommand.d.ts +16 -0
  32. package/dist-types/models/DataExchangeServiceException.d.ts +2 -0
  33. package/dist-types/models/models_0.d.ts +267 -1
  34. package/dist-types/pagination/Interfaces.d.ts +3 -0
  35. package/dist-types/pagination/ListDataSetRevisionsPaginator.d.ts +3 -0
  36. package/dist-types/pagination/ListDataSetsPaginator.d.ts +3 -0
  37. package/dist-types/pagination/ListEventActionsPaginator.d.ts +3 -0
  38. package/dist-types/pagination/ListJobsPaginator.d.ts +3 -0
  39. package/dist-types/pagination/ListRevisionAssetsPaginator.d.ts +3 -0
  40. package/package.json +29 -29
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { DeleteEventActionRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteEventActionCommand}.
8
10
  */
9
11
  export interface DeleteEventActionCommandInput extends DeleteEventActionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteEventActionCommand}.
13
17
  */
14
18
  export interface DeleteEventActionCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation deletes the event action.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DeleteEventActionCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteEventActionCommandInput - {@link DeleteEventActionCommandInput}
34
+ * @returns {@link DeleteEventActionCommandOutput}
28
35
  * @see {@link DeleteEventActionCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteEventActionCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -46,11 +53,20 @@ export interface DeleteEventActionCommandOutput extends __MetadataBearer {
46
53
  export declare class DeleteEventActionCommand extends $Command<DeleteEventActionCommandInput, DeleteEventActionCommandOutput, DataExchangeClientResolvedConfig> {
47
54
  readonly input: DeleteEventActionCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: DeleteEventActionCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteEventActionCommandInput, DeleteEventActionCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { DeleteRevisionRequest } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteRevisionCommand}.
8
10
  */
9
11
  export interface DeleteRevisionCommandInput extends DeleteRevisionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteRevisionCommand}.
13
17
  */
14
18
  export interface DeleteRevisionCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation deletes a revision.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DeleteRevisionCommandOutput extends __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteRevisionCommandInput - {@link DeleteRevisionCommandInput}
34
+ * @returns {@link DeleteRevisionCommandOutput}
28
35
  * @see {@link DeleteRevisionCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteRevisionCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -52,11 +59,20 @@ export interface DeleteRevisionCommandOutput extends __MetadataBearer {
52
59
  export declare class DeleteRevisionCommand extends $Command<DeleteRevisionCommandInput, DeleteRevisionCommandOutput, DataExchangeClientResolvedConfig> {
53
60
  readonly input: DeleteRevisionCommandInput;
54
61
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
62
+ /**
63
+ * @public
64
+ */
55
65
  constructor(input: DeleteRevisionCommandInput);
56
66
  /**
57
67
  * @internal
58
68
  */
59
69
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRevisionCommandInput, DeleteRevisionCommandOutput>;
70
+ /**
71
+ * @internal
72
+ */
60
73
  private serialize;
74
+ /**
75
+ * @internal
76
+ */
61
77
  private deserialize;
62
78
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { GetAssetRequest, GetAssetResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetAssetCommand}.
8
10
  */
9
11
  export interface GetAssetCommandInput extends GetAssetRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetAssetCommand}.
13
17
  */
14
18
  export interface GetAssetCommandOutput extends GetAssetResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation returns information about an asset.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetAssetCommandOutput extends GetAssetResponse, __MetadataBeare
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetAssetCommandInput - {@link GetAssetCommandInput}
34
+ * @returns {@link GetAssetCommandOutput}
28
35
  * @see {@link GetAssetCommandInput} for command's `input` shape.
29
36
  * @see {@link GetAssetCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -46,11 +53,20 @@ export interface GetAssetCommandOutput extends GetAssetResponse, __MetadataBeare
46
53
  export declare class GetAssetCommand extends $Command<GetAssetCommandInput, GetAssetCommandOutput, DataExchangeClientResolvedConfig> {
47
54
  readonly input: GetAssetCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: GetAssetCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetAssetCommandInput, GetAssetCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { GetDataSetRequest, GetDataSetResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetDataSetCommand}.
8
10
  */
9
11
  export interface GetDataSetCommandInput extends GetDataSetRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetDataSetCommand}.
13
17
  */
14
18
  export interface GetDataSetCommandOutput extends GetDataSetResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation returns information about a data set.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetDataSetCommandOutput extends GetDataSetResponse, __MetadataB
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetDataSetCommandInput - {@link GetDataSetCommandInput}
34
+ * @returns {@link GetDataSetCommandOutput}
28
35
  * @see {@link GetDataSetCommandInput} for command's `input` shape.
29
36
  * @see {@link GetDataSetCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -46,11 +53,20 @@ export interface GetDataSetCommandOutput extends GetDataSetResponse, __MetadataB
46
53
  export declare class GetDataSetCommand extends $Command<GetDataSetCommandInput, GetDataSetCommandOutput, DataExchangeClientResolvedConfig> {
47
54
  readonly input: GetDataSetCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: GetDataSetCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDataSetCommandInput, GetDataSetCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { GetEventActionRequest, GetEventActionResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetEventActionCommand}.
8
10
  */
9
11
  export interface GetEventActionCommandInput extends GetEventActionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetEventActionCommand}.
13
17
  */
14
18
  export interface GetEventActionCommandOutput extends GetEventActionResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation retrieves information about an event action.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetEventActionCommandOutput extends GetEventActionResponse, __M
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetEventActionCommandInput - {@link GetEventActionCommandInput}
34
+ * @returns {@link GetEventActionCommandOutput}
28
35
  * @see {@link GetEventActionCommandInput} for command's `input` shape.
29
36
  * @see {@link GetEventActionCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -46,11 +53,20 @@ export interface GetEventActionCommandOutput extends GetEventActionResponse, __M
46
53
  export declare class GetEventActionCommand extends $Command<GetEventActionCommandInput, GetEventActionCommandOutput, DataExchangeClientResolvedConfig> {
47
54
  readonly input: GetEventActionCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: GetEventActionCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetEventActionCommandInput, GetEventActionCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { GetJobRequest, GetJobResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetJobCommand}.
8
10
  */
9
11
  export interface GetJobCommandInput extends GetJobRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetJobCommand}.
13
17
  */
14
18
  export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation returns information about a job.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetJobCommandInput - {@link GetJobCommandInput}
34
+ * @returns {@link GetJobCommandOutput}
28
35
  * @see {@link GetJobCommandInput} for command's `input` shape.
29
36
  * @see {@link GetJobCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -46,11 +53,20 @@ export interface GetJobCommandOutput extends GetJobResponse, __MetadataBearer {
46
53
  export declare class GetJobCommand extends $Command<GetJobCommandInput, GetJobCommandOutput, DataExchangeClientResolvedConfig> {
47
54
  readonly input: GetJobCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: GetJobCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetJobCommandInput, GetJobCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { GetRevisionRequest, GetRevisionResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetRevisionCommand}.
8
10
  */
9
11
  export interface GetRevisionCommandInput extends GetRevisionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetRevisionCommand}.
13
17
  */
14
18
  export interface GetRevisionCommandOutput extends GetRevisionResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation returns information about a revision.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface GetRevisionCommandOutput extends GetRevisionResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetRevisionCommandInput - {@link GetRevisionCommandInput}
34
+ * @returns {@link GetRevisionCommandOutput}
28
35
  * @see {@link GetRevisionCommandInput} for command's `input` shape.
29
36
  * @see {@link GetRevisionCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -46,11 +53,20 @@ export interface GetRevisionCommandOutput extends GetRevisionResponse, __Metadat
46
53
  export declare class GetRevisionCommand extends $Command<GetRevisionCommandInput, GetRevisionCommandOutput, DataExchangeClientResolvedConfig> {
47
54
  readonly input: GetRevisionCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: GetRevisionCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetRevisionCommandInput, GetRevisionCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { ListDataSetRevisionsRequest, ListDataSetRevisionsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListDataSetRevisionsCommand}.
8
10
  */
9
11
  export interface ListDataSetRevisionsCommandInput extends ListDataSetRevisionsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListDataSetRevisionsCommand}.
13
17
  */
14
18
  export interface ListDataSetRevisionsCommandOutput extends ListDataSetRevisionsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation lists a data set's revisions sorted by CreatedAt in descending order.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListDataSetRevisionsCommandOutput extends ListDataSetRevisionsR
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListDataSetRevisionsCommandInput - {@link ListDataSetRevisionsCommandInput}
34
+ * @returns {@link ListDataSetRevisionsCommandOutput}
28
35
  * @see {@link ListDataSetRevisionsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListDataSetRevisionsCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -46,11 +53,20 @@ export interface ListDataSetRevisionsCommandOutput extends ListDataSetRevisionsR
46
53
  export declare class ListDataSetRevisionsCommand extends $Command<ListDataSetRevisionsCommandInput, ListDataSetRevisionsCommandOutput, DataExchangeClientResolvedConfig> {
47
54
  readonly input: ListDataSetRevisionsCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: ListDataSetRevisionsCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDataSetRevisionsCommandInput, ListDataSetRevisionsCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { ListDataSetsRequest, ListDataSetsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListDataSetsCommand}.
8
10
  */
9
11
  export interface ListDataSetsCommandInput extends ListDataSetsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListDataSetsCommand}.
13
17
  */
14
18
  export interface ListDataSetsCommandOutput extends ListDataSetsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation lists your data sets. When listing by origin OWNED, results are sorted by CreatedAt in descending order. When listing by origin ENTITLED, there is no order and the maxResults parameter is ignored.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListDataSetsCommandOutput extends ListDataSetsResponse, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListDataSetsCommandInput - {@link ListDataSetsCommandInput}
34
+ * @returns {@link ListDataSetsCommandOutput}
28
35
  * @see {@link ListDataSetsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListDataSetsCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -46,11 +53,20 @@ export interface ListDataSetsCommandOutput extends ListDataSetsResponse, __Metad
46
53
  export declare class ListDataSetsCommand extends $Command<ListDataSetsCommandInput, ListDataSetsCommandOutput, DataExchangeClientResolvedConfig> {
47
54
  readonly input: ListDataSetsCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: ListDataSetsCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDataSetsCommandInput, ListDataSetsCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { ListEventActionsRequest, ListEventActionsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListEventActionsCommand}.
8
10
  */
9
11
  export interface ListEventActionsCommandInput extends ListEventActionsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListEventActionsCommand}.
13
17
  */
14
18
  export interface ListEventActionsCommandOutput extends ListEventActionsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation lists your event actions.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListEventActionsCommandOutput extends ListEventActionsResponse,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListEventActionsCommandInput - {@link ListEventActionsCommandInput}
34
+ * @returns {@link ListEventActionsCommandOutput}
28
35
  * @see {@link ListEventActionsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListEventActionsCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -46,11 +53,20 @@ export interface ListEventActionsCommandOutput extends ListEventActionsResponse,
46
53
  export declare class ListEventActionsCommand extends $Command<ListEventActionsCommandInput, ListEventActionsCommandOutput, DataExchangeClientResolvedConfig> {
47
54
  readonly input: ListEventActionsCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: ListEventActionsCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEventActionsCommandInput, ListEventActionsCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { ListJobsRequest, ListJobsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListJobsCommand}.
8
10
  */
9
11
  export interface ListJobsCommandInput extends ListJobsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListJobsCommand}.
13
17
  */
14
18
  export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation lists your jobs sorted by CreatedAt in descending order.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBeare
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListJobsCommandInput - {@link ListJobsCommandInput}
34
+ * @returns {@link ListJobsCommandOutput}
28
35
  * @see {@link ListJobsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListJobsCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -46,11 +53,20 @@ export interface ListJobsCommandOutput extends ListJobsResponse, __MetadataBeare
46
53
  export declare class ListJobsCommand extends $Command<ListJobsCommandInput, ListJobsCommandOutput, DataExchangeClientResolvedConfig> {
47
54
  readonly input: ListJobsCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: ListJobsCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListJobsCommandInput, ListJobsCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { ListRevisionAssetsRequest, ListRevisionAssetsResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListRevisionAssetsCommand}.
8
10
  */
9
11
  export interface ListRevisionAssetsCommandInput extends ListRevisionAssetsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListRevisionAssetsCommand}.
13
17
  */
14
18
  export interface ListRevisionAssetsCommandOutput extends ListRevisionAssetsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation lists a revision's assets sorted alphabetically in descending order.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListRevisionAssetsCommandOutput extends ListRevisionAssetsRespo
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListRevisionAssetsCommandInput - {@link ListRevisionAssetsCommandInput}
34
+ * @returns {@link ListRevisionAssetsCommandOutput}
28
35
  * @see {@link ListRevisionAssetsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListRevisionAssetsCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -46,11 +53,20 @@ export interface ListRevisionAssetsCommandOutput extends ListRevisionAssetsRespo
46
53
  export declare class ListRevisionAssetsCommand extends $Command<ListRevisionAssetsCommandInput, ListRevisionAssetsCommandOutput, DataExchangeClientResolvedConfig> {
47
54
  readonly input: ListRevisionAssetsCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: ListRevisionAssetsCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRevisionAssetsCommandInput, ListRevisionAssetsCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { DataExchangeClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DataExchangeClient";
5
5
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>This operation lists the tags on the resource.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
34
+ * @returns {@link ListTagsForResourceCommandOutput}
28
35
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link DataExchangeClientResolvedConfig | config} for DataExchangeClient's `config` shape.
@@ -34,11 +41,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
34
41
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, DataExchangeClientResolvedConfig> {
35
42
  readonly input: ListTagsForResourceCommandInput;
36
43
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
44
+ /**
45
+ * @public
46
+ */
37
47
  constructor(input: ListTagsForResourceCommandInput);
38
48
  /**
39
49
  * @internal
40
50
  */
41
51
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DataExchangeClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
52
+ /**
53
+ * @internal
54
+ */
42
55
  private serialize;
56
+ /**
57
+ * @internal
58
+ */
43
59
  private deserialize;
44
60
  }