@aws-sdk/client-redshift-serverless 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 (53) hide show
  1. package/dist-types/RedshiftServerless.d.ts +41 -0
  2. package/dist-types/RedshiftServerlessClient.d.ts +24 -4
  3. package/dist-types/commands/ConvertRecoveryPointToSnapshotCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateEndpointAccessCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateNamespaceCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateSnapshotCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateUsageLimitCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateWorkgroupCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteEndpointAccessCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteNamespaceCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteSnapshotCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteUsageLimitCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteWorkgroupCommand.d.ts +16 -0
  15. package/dist-types/commands/GetCredentialsCommand.d.ts +16 -0
  16. package/dist-types/commands/GetEndpointAccessCommand.d.ts +16 -0
  17. package/dist-types/commands/GetNamespaceCommand.d.ts +16 -0
  18. package/dist-types/commands/GetRecoveryPointCommand.d.ts +16 -0
  19. package/dist-types/commands/GetResourcePolicyCommand.d.ts +16 -0
  20. package/dist-types/commands/GetSnapshotCommand.d.ts +16 -0
  21. package/dist-types/commands/GetTableRestoreStatusCommand.d.ts +16 -0
  22. package/dist-types/commands/GetUsageLimitCommand.d.ts +16 -0
  23. package/dist-types/commands/GetWorkgroupCommand.d.ts +16 -0
  24. package/dist-types/commands/ListEndpointAccessCommand.d.ts +16 -0
  25. package/dist-types/commands/ListNamespacesCommand.d.ts +16 -0
  26. package/dist-types/commands/ListRecoveryPointsCommand.d.ts +16 -0
  27. package/dist-types/commands/ListSnapshotsCommand.d.ts +16 -0
  28. package/dist-types/commands/ListTableRestoreStatusCommand.d.ts +16 -0
  29. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  30. package/dist-types/commands/ListUsageLimitsCommand.d.ts +16 -0
  31. package/dist-types/commands/ListWorkgroupsCommand.d.ts +16 -0
  32. package/dist-types/commands/PutResourcePolicyCommand.d.ts +16 -0
  33. package/dist-types/commands/RestoreFromRecoveryPointCommand.d.ts +16 -0
  34. package/dist-types/commands/RestoreFromSnapshotCommand.d.ts +16 -0
  35. package/dist-types/commands/RestoreTableFromSnapshotCommand.d.ts +16 -0
  36. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  37. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  38. package/dist-types/commands/UpdateEndpointAccessCommand.d.ts +16 -0
  39. package/dist-types/commands/UpdateNamespaceCommand.d.ts +16 -0
  40. package/dist-types/commands/UpdateSnapshotCommand.d.ts +16 -0
  41. package/dist-types/commands/UpdateUsageLimitCommand.d.ts +16 -0
  42. package/dist-types/commands/UpdateWorkgroupCommand.d.ts +16 -0
  43. package/dist-types/models/RedshiftServerlessServiceException.d.ts +2 -0
  44. package/dist-types/models/models_0.d.ts +289 -4
  45. package/dist-types/pagination/Interfaces.d.ts +3 -0
  46. package/dist-types/pagination/ListEndpointAccessPaginator.d.ts +3 -0
  47. package/dist-types/pagination/ListNamespacesPaginator.d.ts +3 -0
  48. package/dist-types/pagination/ListRecoveryPointsPaginator.d.ts +3 -0
  49. package/dist-types/pagination/ListSnapshotsPaginator.d.ts +3 -0
  50. package/dist-types/pagination/ListTableRestoreStatusPaginator.d.ts +3 -0
  51. package/dist-types/pagination/ListUsageLimitsPaginator.d.ts +3 -0
  52. package/dist-types/pagination/ListWorkgroupsPaginator.d.ts +3 -0
  53. package/package.json +29 -29
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GetTableRestoreStatusRequest, GetTableRestoreStatusResponse } from "../models/models_0";
5
5
  import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetTableRestoreStatusCommand}.
8
10
  */
9
11
  export interface GetTableRestoreStatusCommandInput extends GetTableRestoreStatusRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetTableRestoreStatusCommand}.
13
17
  */
14
18
  export interface GetTableRestoreStatusCommandOutput extends GetTableRestoreStatusResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns information about a <code>TableRestoreStatus</code> object.</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 GetTableRestoreStatusCommandOutput extends GetTableRestoreStatu
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetTableRestoreStatusCommandInput - {@link GetTableRestoreStatusCommandInput}
34
+ * @returns {@link GetTableRestoreStatusCommandOutput}
28
35
  * @see {@link GetTableRestoreStatusCommandInput} for command's `input` shape.
29
36
  * @see {@link GetTableRestoreStatusCommandOutput} for command's `response` shape.
30
37
  * @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
@@ -40,11 +47,20 @@ export interface GetTableRestoreStatusCommandOutput extends GetTableRestoreStatu
40
47
  export declare class GetTableRestoreStatusCommand extends $Command<GetTableRestoreStatusCommandInput, GetTableRestoreStatusCommandOutput, RedshiftServerlessClientResolvedConfig> {
41
48
  readonly input: GetTableRestoreStatusCommandInput;
42
49
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
50
+ /**
51
+ * @public
52
+ */
43
53
  constructor(input: GetTableRestoreStatusCommandInput);
44
54
  /**
45
55
  * @internal
46
56
  */
47
57
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetTableRestoreStatusCommandInput, GetTableRestoreStatusCommandOutput>;
58
+ /**
59
+ * @internal
60
+ */
48
61
  private serialize;
62
+ /**
63
+ * @internal
64
+ */
49
65
  private deserialize;
50
66
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GetUsageLimitRequest, GetUsageLimitResponse } from "../models/models_0";
5
5
  import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetUsageLimitCommand}.
8
10
  */
9
11
  export interface GetUsageLimitCommandInput extends GetUsageLimitRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetUsageLimitCommand}.
13
17
  */
14
18
  export interface GetUsageLimitCommandOutput extends GetUsageLimitResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns information about a usage limit.</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 GetUsageLimitCommandOutput extends GetUsageLimitResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetUsageLimitCommandInput - {@link GetUsageLimitCommandInput}
34
+ * @returns {@link GetUsageLimitCommandOutput}
28
35
  * @see {@link GetUsageLimitCommandInput} for command's `input` shape.
29
36
  * @see {@link GetUsageLimitCommandOutput} for command's `response` shape.
30
37
  * @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
@@ -46,11 +53,20 @@ export interface GetUsageLimitCommandOutput extends GetUsageLimitResponse, __Met
46
53
  export declare class GetUsageLimitCommand extends $Command<GetUsageLimitCommandInput, GetUsageLimitCommandOutput, RedshiftServerlessClientResolvedConfig> {
47
54
  readonly input: GetUsageLimitCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: GetUsageLimitCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetUsageLimitCommandInput, GetUsageLimitCommandOutput>;
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 { GetWorkgroupRequest, GetWorkgroupResponse } from "../models/models_0";
5
5
  import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link GetWorkgroupCommand}.
8
10
  */
9
11
  export interface GetWorkgroupCommandInput extends GetWorkgroupRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link GetWorkgroupCommand}.
13
17
  */
14
18
  export interface GetWorkgroupCommandOutput extends GetWorkgroupResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns information about a specific workgroup.</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 GetWorkgroupCommandOutput extends GetWorkgroupResponse, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param GetWorkgroupCommandInput - {@link GetWorkgroupCommandInput}
34
+ * @returns {@link GetWorkgroupCommandOutput}
28
35
  * @see {@link GetWorkgroupCommandInput} for command's `input` shape.
29
36
  * @see {@link GetWorkgroupCommandOutput} for command's `response` shape.
30
37
  * @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
@@ -43,11 +50,20 @@ export interface GetWorkgroupCommandOutput extends GetWorkgroupResponse, __Metad
43
50
  export declare class GetWorkgroupCommand extends $Command<GetWorkgroupCommandInput, GetWorkgroupCommandOutput, RedshiftServerlessClientResolvedConfig> {
44
51
  readonly input: GetWorkgroupCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: GetWorkgroupCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetWorkgroupCommandInput, GetWorkgroupCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListEndpointAccessRequest, ListEndpointAccessResponse } from "../models/models_0";
5
5
  import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListEndpointAccessCommand}.
8
10
  */
9
11
  export interface ListEndpointAccessCommandInput extends ListEndpointAccessRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListEndpointAccessCommand}.
13
17
  */
14
18
  export interface ListEndpointAccessCommandOutput extends ListEndpointAccessResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns an array of <code>EndpointAccess</code> objects and relevant information.</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 ListEndpointAccessCommandOutput extends ListEndpointAccessRespo
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListEndpointAccessCommandInput - {@link ListEndpointAccessCommandInput}
34
+ * @returns {@link ListEndpointAccessCommandOutput}
28
35
  * @see {@link ListEndpointAccessCommandInput} for command's `input` shape.
29
36
  * @see {@link ListEndpointAccessCommandOutput} for command's `response` shape.
30
37
  * @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
@@ -46,11 +53,20 @@ export interface ListEndpointAccessCommandOutput extends ListEndpointAccessRespo
46
53
  export declare class ListEndpointAccessCommand extends $Command<ListEndpointAccessCommandInput, ListEndpointAccessCommandOutput, RedshiftServerlessClientResolvedConfig> {
47
54
  readonly input: ListEndpointAccessCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: ListEndpointAccessCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEndpointAccessCommandInput, ListEndpointAccessCommandOutput>;
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 { ListNamespacesRequest, ListNamespacesResponse } from "../models/models_0";
5
5
  import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListNamespacesCommand}.
8
10
  */
9
11
  export interface ListNamespacesCommandInput extends ListNamespacesRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListNamespacesCommand}.
13
17
  */
14
18
  export interface ListNamespacesCommandOutput extends ListNamespacesResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns information about a list of specified namespaces.</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 ListNamespacesCommandOutput extends ListNamespacesResponse, __M
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListNamespacesCommandInput - {@link ListNamespacesCommandInput}
34
+ * @returns {@link ListNamespacesCommandOutput}
28
35
  * @see {@link ListNamespacesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListNamespacesCommandOutput} for command's `response` shape.
30
37
  * @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
@@ -40,11 +47,20 @@ export interface ListNamespacesCommandOutput extends ListNamespacesResponse, __M
40
47
  export declare class ListNamespacesCommand extends $Command<ListNamespacesCommandInput, ListNamespacesCommandOutput, RedshiftServerlessClientResolvedConfig> {
41
48
  readonly input: ListNamespacesCommandInput;
42
49
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
50
+ /**
51
+ * @public
52
+ */
43
53
  constructor(input: ListNamespacesCommandInput);
44
54
  /**
45
55
  * @internal
46
56
  */
47
57
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListNamespacesCommandInput, ListNamespacesCommandOutput>;
58
+ /**
59
+ * @internal
60
+ */
48
61
  private serialize;
62
+ /**
63
+ * @internal
64
+ */
49
65
  private deserialize;
50
66
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListRecoveryPointsRequest, ListRecoveryPointsResponse } from "../models/models_0";
5
5
  import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListRecoveryPointsCommand}.
8
10
  */
9
11
  export interface ListRecoveryPointsCommandInput extends ListRecoveryPointsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListRecoveryPointsCommand}.
13
17
  */
14
18
  export interface ListRecoveryPointsCommandOutput extends ListRecoveryPointsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns an array of recovery points.</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 ListRecoveryPointsCommandOutput extends ListRecoveryPointsRespo
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListRecoveryPointsCommandInput - {@link ListRecoveryPointsCommandInput}
34
+ * @returns {@link ListRecoveryPointsCommandOutput}
28
35
  * @see {@link ListRecoveryPointsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListRecoveryPointsCommandOutput} for command's `response` shape.
30
37
  * @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
@@ -40,11 +47,20 @@ export interface ListRecoveryPointsCommandOutput extends ListRecoveryPointsRespo
40
47
  export declare class ListRecoveryPointsCommand extends $Command<ListRecoveryPointsCommandInput, ListRecoveryPointsCommandOutput, RedshiftServerlessClientResolvedConfig> {
41
48
  readonly input: ListRecoveryPointsCommandInput;
42
49
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
50
+ /**
51
+ * @public
52
+ */
43
53
  constructor(input: ListRecoveryPointsCommandInput);
44
54
  /**
45
55
  * @internal
46
56
  */
47
57
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRecoveryPointsCommandInput, ListRecoveryPointsCommandOutput>;
58
+ /**
59
+ * @internal
60
+ */
48
61
  private serialize;
62
+ /**
63
+ * @internal
64
+ */
49
65
  private deserialize;
50
66
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListSnapshotsRequest, ListSnapshotsResponse } from "../models/models_0";
5
5
  import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListSnapshotsCommand}.
8
10
  */
9
11
  export interface ListSnapshotsCommandInput extends ListSnapshotsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListSnapshotsCommand}.
13
17
  */
14
18
  export interface ListSnapshotsCommandOutput extends ListSnapshotsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of snapshots.</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 ListSnapshotsCommandOutput extends ListSnapshotsResponse, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListSnapshotsCommandInput - {@link ListSnapshotsCommandInput}
34
+ * @returns {@link ListSnapshotsCommandOutput}
28
35
  * @see {@link ListSnapshotsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListSnapshotsCommandOutput} for command's `response` shape.
30
37
  * @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
@@ -43,11 +50,20 @@ export interface ListSnapshotsCommandOutput extends ListSnapshotsResponse, __Met
43
50
  export declare class ListSnapshotsCommand extends $Command<ListSnapshotsCommandInput, ListSnapshotsCommandOutput, RedshiftServerlessClientResolvedConfig> {
44
51
  readonly input: ListSnapshotsCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: ListSnapshotsCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListSnapshotsCommandInput, ListSnapshotsCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListTableRestoreStatusRequest, ListTableRestoreStatusResponse } from "../models/models_0";
5
5
  import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTableRestoreStatusCommand}.
8
10
  */
9
11
  export interface ListTableRestoreStatusCommandInput extends ListTableRestoreStatusRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTableRestoreStatusCommand}.
13
17
  */
14
18
  export interface ListTableRestoreStatusCommandOutput extends ListTableRestoreStatusResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns information about an array of <code>TableRestoreStatus</code> objects.</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 ListTableRestoreStatusCommandOutput extends ListTableRestoreSta
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTableRestoreStatusCommandInput - {@link ListTableRestoreStatusCommandInput}
34
+ * @returns {@link ListTableRestoreStatusCommandOutput}
28
35
  * @see {@link ListTableRestoreStatusCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTableRestoreStatusCommandOutput} for command's `response` shape.
30
37
  * @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
@@ -43,11 +50,20 @@ export interface ListTableRestoreStatusCommandOutput extends ListTableRestoreSta
43
50
  export declare class ListTableRestoreStatusCommand extends $Command<ListTableRestoreStatusCommandInput, ListTableRestoreStatusCommandOutput, RedshiftServerlessClientResolvedConfig> {
44
51
  readonly input: ListTableRestoreStatusCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: ListTableRestoreStatusCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTableRestoreStatusCommandInput, ListTableRestoreStatusCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
5
  import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
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>Lists the tags assigned to a 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 RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
@@ -46,11 +53,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
46
53
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, RedshiftServerlessClientResolvedConfig> {
47
54
  readonly input: ListTagsForResourceCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: ListTagsForResourceCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
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 { ListUsageLimitsRequest, ListUsageLimitsResponse } from "../models/models_0";
5
5
  import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListUsageLimitsCommand}.
8
10
  */
9
11
  export interface ListUsageLimitsCommandInput extends ListUsageLimitsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListUsageLimitsCommand}.
13
17
  */
14
18
  export interface ListUsageLimitsCommandOutput extends ListUsageLimitsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists all usage limits within Amazon Redshift Serverless.</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 ListUsageLimitsCommandOutput extends ListUsageLimitsResponse, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListUsageLimitsCommandInput - {@link ListUsageLimitsCommandInput}
34
+ * @returns {@link ListUsageLimitsCommandOutput}
28
35
  * @see {@link ListUsageLimitsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListUsageLimitsCommandOutput} for command's `response` shape.
30
37
  * @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
@@ -49,11 +56,20 @@ export interface ListUsageLimitsCommandOutput extends ListUsageLimitsResponse, _
49
56
  export declare class ListUsageLimitsCommand extends $Command<ListUsageLimitsCommandInput, ListUsageLimitsCommandOutput, RedshiftServerlessClientResolvedConfig> {
50
57
  readonly input: ListUsageLimitsCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: ListUsageLimitsCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListUsageLimitsCommandInput, ListUsageLimitsCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListWorkgroupsRequest, ListWorkgroupsResponse } from "../models/models_0";
5
5
  import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListWorkgroupsCommand}.
8
10
  */
9
11
  export interface ListWorkgroupsCommandInput extends ListWorkgroupsRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListWorkgroupsCommand}.
13
17
  */
14
18
  export interface ListWorkgroupsCommandOutput extends ListWorkgroupsResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns information about a list of specified workgroups.</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 ListWorkgroupsCommandOutput extends ListWorkgroupsResponse, __M
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListWorkgroupsCommandInput - {@link ListWorkgroupsCommandInput}
34
+ * @returns {@link ListWorkgroupsCommandOutput}
28
35
  * @see {@link ListWorkgroupsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListWorkgroupsCommandOutput} for command's `response` shape.
30
37
  * @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
@@ -40,11 +47,20 @@ export interface ListWorkgroupsCommandOutput extends ListWorkgroupsResponse, __M
40
47
  export declare class ListWorkgroupsCommand extends $Command<ListWorkgroupsCommandInput, ListWorkgroupsCommandOutput, RedshiftServerlessClientResolvedConfig> {
41
48
  readonly input: ListWorkgroupsCommandInput;
42
49
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
50
+ /**
51
+ * @public
52
+ */
43
53
  constructor(input: ListWorkgroupsCommandInput);
44
54
  /**
45
55
  * @internal
46
56
  */
47
57
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListWorkgroupsCommandInput, ListWorkgroupsCommandOutput>;
58
+ /**
59
+ * @internal
60
+ */
48
61
  private serialize;
62
+ /**
63
+ * @internal
64
+ */
49
65
  private deserialize;
50
66
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { PutResourcePolicyRequest, PutResourcePolicyResponse } from "../models/models_0";
5
5
  import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutResourcePolicyCommand}.
8
10
  */
9
11
  export interface PutResourcePolicyCommandInput extends PutResourcePolicyRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutResourcePolicyCommand}.
13
17
  */
14
18
  export interface PutResourcePolicyCommandOutput extends PutResourcePolicyResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates or updates a resource policy. Currently, you can use policies to share snapshots across Amazon Web Services accounts.</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 PutResourcePolicyCommandOutput extends PutResourcePolicyRespons
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param PutResourcePolicyCommandInput - {@link PutResourcePolicyCommandInput}
34
+ * @returns {@link PutResourcePolicyCommandOutput}
28
35
  * @see {@link PutResourcePolicyCommandInput} for command's `input` shape.
29
36
  * @see {@link PutResourcePolicyCommandOutput} for command's `response` shape.
30
37
  * @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
@@ -49,11 +56,20 @@ export interface PutResourcePolicyCommandOutput extends PutResourcePolicyRespons
49
56
  export declare class PutResourcePolicyCommand extends $Command<PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput, RedshiftServerlessClientResolvedConfig> {
50
57
  readonly input: PutResourcePolicyCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: PutResourcePolicyCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutResourcePolicyCommandInput, PutResourcePolicyCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { RestoreFromRecoveryPointRequest, RestoreFromRecoveryPointResponse } from "../models/models_0";
5
5
  import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link RestoreFromRecoveryPointCommand}.
8
10
  */
9
11
  export interface RestoreFromRecoveryPointCommandInput extends RestoreFromRecoveryPointRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link RestoreFromRecoveryPointCommand}.
13
17
  */
14
18
  export interface RestoreFromRecoveryPointCommandOutput extends RestoreFromRecoveryPointResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Restore the data from a recovery point.</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 RestoreFromRecoveryPointCommandOutput extends RestoreFromRecove
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param RestoreFromRecoveryPointCommandInput - {@link RestoreFromRecoveryPointCommandInput}
34
+ * @returns {@link RestoreFromRecoveryPointCommandOutput}
28
35
  * @see {@link RestoreFromRecoveryPointCommandInput} for command's `input` shape.
29
36
  * @see {@link RestoreFromRecoveryPointCommandOutput} for command's `response` shape.
30
37
  * @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
@@ -46,11 +53,20 @@ export interface RestoreFromRecoveryPointCommandOutput extends RestoreFromRecove
46
53
  export declare class RestoreFromRecoveryPointCommand extends $Command<RestoreFromRecoveryPointCommandInput, RestoreFromRecoveryPointCommandOutput, RedshiftServerlessClientResolvedConfig> {
47
54
  readonly input: RestoreFromRecoveryPointCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: RestoreFromRecoveryPointCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RestoreFromRecoveryPointCommandInput, RestoreFromRecoveryPointCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }