@aws-sdk/client-redshift-serverless 3.296.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.
- package/dist-types/RedshiftServerless.d.ts +41 -0
- package/dist-types/RedshiftServerlessClient.d.ts +24 -4
- package/dist-types/commands/ConvertRecoveryPointToSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/CreateEndpointAccessCommand.d.ts +16 -0
- package/dist-types/commands/CreateNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/CreateSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/CreateUsageLimitCommand.d.ts +16 -0
- package/dist-types/commands/CreateWorkgroupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteEndpointAccessCommand.d.ts +16 -0
- package/dist-types/commands/DeleteNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/DeleteUsageLimitCommand.d.ts +16 -0
- package/dist-types/commands/DeleteWorkgroupCommand.d.ts +16 -0
- package/dist-types/commands/GetCredentialsCommand.d.ts +16 -0
- package/dist-types/commands/GetEndpointAccessCommand.d.ts +16 -0
- package/dist-types/commands/GetNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/GetRecoveryPointCommand.d.ts +16 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/GetTableRestoreStatusCommand.d.ts +16 -0
- package/dist-types/commands/GetUsageLimitCommand.d.ts +16 -0
- package/dist-types/commands/GetWorkgroupCommand.d.ts +16 -0
- package/dist-types/commands/ListEndpointAccessCommand.d.ts +16 -0
- package/dist-types/commands/ListNamespacesCommand.d.ts +16 -0
- package/dist-types/commands/ListRecoveryPointsCommand.d.ts +16 -0
- package/dist-types/commands/ListSnapshotsCommand.d.ts +16 -0
- package/dist-types/commands/ListTableRestoreStatusCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListUsageLimitsCommand.d.ts +16 -0
- package/dist-types/commands/ListWorkgroupsCommand.d.ts +16 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +16 -0
- package/dist-types/commands/RestoreFromRecoveryPointCommand.d.ts +16 -0
- package/dist-types/commands/RestoreFromSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/RestoreTableFromSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateEndpointAccessCommand.d.ts +16 -0
- package/dist-types/commands/UpdateNamespaceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/UpdateUsageLimitCommand.d.ts +16 -0
- package/dist-types/commands/UpdateWorkgroupCommand.d.ts +16 -0
- package/dist-types/models/RedshiftServerlessServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +289 -4
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListEndpointAccessPaginator.d.ts +3 -0
- package/dist-types/pagination/ListNamespacesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListRecoveryPointsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListSnapshotsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTableRestoreStatusPaginator.d.ts +3 -0
- package/dist-types/pagination/ListUsageLimitsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListWorkgroupsPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { RestoreFromSnapshotRequest, RestoreFromSnapshotResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RestoreFromSnapshotCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RestoreFromSnapshotCommandInput extends RestoreFromSnapshotRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RestoreFromSnapshotCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RestoreFromSnapshotCommandOutput extends RestoreFromSnapshotResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Restores a namespace from a snapshot.</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 RestoreFromSnapshotCommandOutput extends RestoreFromSnapshotRes
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param RestoreFromSnapshotCommandInput - {@link RestoreFromSnapshotCommandInput}
|
|
34
|
+
* @returns {@link RestoreFromSnapshotCommandOutput}
|
|
28
35
|
* @see {@link RestoreFromSnapshotCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link RestoreFromSnapshotCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface RestoreFromSnapshotCommandOutput extends RestoreFromSnapshotRes
|
|
|
49
56
|
export declare class RestoreFromSnapshotCommand extends $Command<RestoreFromSnapshotCommandInput, RestoreFromSnapshotCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
50
57
|
readonly input: RestoreFromSnapshotCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: RestoreFromSnapshotCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RestoreFromSnapshotCommandInput, RestoreFromSnapshotCommandOutput>;
|
|
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 { RestoreTableFromSnapshotRequest, RestoreTableFromSnapshotResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RestoreTableFromSnapshotCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RestoreTableFromSnapshotCommandInput extends RestoreTableFromSnapshotRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RestoreTableFromSnapshotCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RestoreTableFromSnapshotCommandOutput extends RestoreTableFromSnapshotResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Restores a table from a snapshot to your Amazon Redshift Serverless instance. You can't use this operation to
|
|
18
23
|
* restore tables with <a href="https://docs.aws.amazon.com/redshift/latest/dg/t_Sorting_data.html#t_Sorting_data-interleaved">interleaved sort keys</a>.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface RestoreTableFromSnapshotCommandOutput extends RestoreTableFromS
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param RestoreTableFromSnapshotCommandInput - {@link RestoreTableFromSnapshotCommandInput}
|
|
35
|
+
* @returns {@link RestoreTableFromSnapshotCommandOutput}
|
|
29
36
|
* @see {@link RestoreTableFromSnapshotCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link RestoreTableFromSnapshotCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface RestoreTableFromSnapshotCommandOutput extends RestoreTableFromS
|
|
|
47
54
|
export declare class RestoreTableFromSnapshotCommand extends $Command<RestoreTableFromSnapshotCommandInput, RestoreTableFromSnapshotCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
48
55
|
readonly input: RestoreTableFromSnapshotCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: RestoreTableFromSnapshotCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RestoreTableFromSnapshotCommandInput, RestoreTableFromSnapshotCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Assigns one or more tags 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 TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
34
|
+
* @returns {@link TagResourceCommandOutput}
|
|
28
35
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
49
56
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
50
57
|
readonly input: TagResourceCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: TagResourceCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
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 { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes a tag or set of tags from 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 UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
34
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
28
35
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
46
53
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
47
54
|
readonly input: UntagResourceCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: UntagResourceCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
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 { UpdateEndpointAccessRequest, UpdateEndpointAccessResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateEndpointAccessCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateEndpointAccessCommandInput extends UpdateEndpointAccessRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateEndpointAccessCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateEndpointAccessCommandOutput extends UpdateEndpointAccessResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates an Amazon Redshift Serverless managed endpoint.</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 UpdateEndpointAccessCommandOutput extends UpdateEndpointAccessR
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateEndpointAccessCommandInput - {@link UpdateEndpointAccessCommandInput}
|
|
34
|
+
* @returns {@link UpdateEndpointAccessCommandOutput}
|
|
28
35
|
* @see {@link UpdateEndpointAccessCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateEndpointAccessCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface UpdateEndpointAccessCommandOutput extends UpdateEndpointAccessR
|
|
|
49
56
|
export declare class UpdateEndpointAccessCommand extends $Command<UpdateEndpointAccessCommandInput, UpdateEndpointAccessCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
50
57
|
readonly input: UpdateEndpointAccessCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: UpdateEndpointAccessCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateEndpointAccessCommandInput, UpdateEndpointAccessCommandOutput>;
|
|
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 { UpdateNamespaceRequest, UpdateNamespaceResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateNamespaceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateNamespaceCommandInput extends UpdateNamespaceRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateNamespaceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateNamespaceCommandOutput extends UpdateNamespaceResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates a namespace with the specified settings. Unless required, you can't update multiple parameters in one request. For example,
|
|
18
23
|
* you must specify both <code>adminUsername</code> and <code>adminUserPassword</code> to update either field, but you can't update both <code>kmsKeyId</code>
|
|
19
24
|
* and <code>logExports</code> in a single request.</p>
|
|
@@ -27,6 +32,8 @@ export interface UpdateNamespaceCommandOutput extends UpdateNamespaceResponse, _
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param UpdateNamespaceCommandInput - {@link UpdateNamespaceCommandInput}
|
|
36
|
+
* @returns {@link UpdateNamespaceCommandOutput}
|
|
30
37
|
* @see {@link UpdateNamespaceCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link UpdateNamespaceCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface UpdateNamespaceCommandOutput extends UpdateNamespaceResponse, _
|
|
|
48
55
|
export declare class UpdateNamespaceCommand extends $Command<UpdateNamespaceCommandInput, UpdateNamespaceCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
49
56
|
readonly input: UpdateNamespaceCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: UpdateNamespaceCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateNamespaceCommandInput, UpdateNamespaceCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { UpdateSnapshotRequest, UpdateSnapshotResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateSnapshotCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateSnapshotCommandInput extends UpdateSnapshotRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateSnapshotCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateSnapshotCommandOutput extends UpdateSnapshotResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates a snapshot.</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 UpdateSnapshotCommandOutput extends UpdateSnapshotResponse, __M
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateSnapshotCommandInput - {@link UpdateSnapshotCommandInput}
|
|
34
|
+
* @returns {@link UpdateSnapshotCommandOutput}
|
|
28
35
|
* @see {@link UpdateSnapshotCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateSnapshotCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface UpdateSnapshotCommandOutput extends UpdateSnapshotResponse, __M
|
|
|
46
53
|
export declare class UpdateSnapshotCommand extends $Command<UpdateSnapshotCommandInput, UpdateSnapshotCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
47
54
|
readonly input: UpdateSnapshotCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: UpdateSnapshotCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSnapshotCommandInput, UpdateSnapshotCommandOutput>;
|
|
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 { UpdateUsageLimitRequest, UpdateUsageLimitResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateUsageLimitCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateUsageLimitCommandInput extends UpdateUsageLimitRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateUsageLimitCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateUsageLimitCommandOutput extends UpdateUsageLimitResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Update a usage limit in Amazon Redshift Serverless. You can't update the usage type or period of 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 UpdateUsageLimitCommandOutput extends UpdateUsageLimitResponse,
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UpdateUsageLimitCommandInput - {@link UpdateUsageLimitCommandInput}
|
|
34
|
+
* @returns {@link UpdateUsageLimitCommandOutput}
|
|
28
35
|
* @see {@link UpdateUsageLimitCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UpdateUsageLimitCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface UpdateUsageLimitCommandOutput extends UpdateUsageLimitResponse,
|
|
|
46
53
|
export declare class UpdateUsageLimitCommand extends $Command<UpdateUsageLimitCommandInput, UpdateUsageLimitCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
47
54
|
readonly input: UpdateUsageLimitCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: UpdateUsageLimitCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateUsageLimitCommandInput, UpdateUsageLimitCommandOutput>;
|
|
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 { UpdateWorkgroupRequest, UpdateWorkgroupResponse } from "../models/models_0";
|
|
5
5
|
import { RedshiftServerlessClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftServerlessClient";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateWorkgroupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateWorkgroupCommandInput extends UpdateWorkgroupRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateWorkgroupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateWorkgroupCommandOutput extends UpdateWorkgroupResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates a workgroup with the specified configuration settings. You can't update multiple parameters in one request. For example,
|
|
18
23
|
* you can update <code>baseCapacity</code> or <code>port</code> in a single request, but you can't update both in the same request.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface UpdateWorkgroupCommandOutput extends UpdateWorkgroupResponse, _
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param UpdateWorkgroupCommandInput - {@link UpdateWorkgroupCommandInput}
|
|
35
|
+
* @returns {@link UpdateWorkgroupCommandOutput}
|
|
29
36
|
* @see {@link UpdateWorkgroupCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link UpdateWorkgroupCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link RedshiftServerlessClientResolvedConfig | config} for RedshiftServerlessClient's `config` shape.
|
|
@@ -50,11 +57,20 @@ export interface UpdateWorkgroupCommandOutput extends UpdateWorkgroupResponse, _
|
|
|
50
57
|
export declare class UpdateWorkgroupCommand extends $Command<UpdateWorkgroupCommandInput, UpdateWorkgroupCommandOutput, RedshiftServerlessClientResolvedConfig> {
|
|
51
58
|
readonly input: UpdateWorkgroupCommandInput;
|
|
52
59
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
53
63
|
constructor(input: UpdateWorkgroupCommandInput);
|
|
54
64
|
/**
|
|
55
65
|
* @internal
|
|
56
66
|
*/
|
|
57
67
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: RedshiftServerlessClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateWorkgroupCommandInput, UpdateWorkgroupCommandOutput>;
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
*/
|
|
58
71
|
private serialize;
|
|
72
|
+
/**
|
|
73
|
+
* @internal
|
|
74
|
+
*/
|
|
59
75
|
private deserialize;
|
|
60
76
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from RedshiftServerless service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class RedshiftServerlessServiceException extends __ServiceException {
|