@aws-sdk/client-timestream-influxdb 3.927.0 → 3.929.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-cjs/index.js +1088 -852
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/TimestreamInfluxDBClient.js +2 -0
- package/dist-es/commands/CreateDbClusterCommand.js +3 -10
- package/dist-es/commands/CreateDbInstanceCommand.js +3 -10
- package/dist-es/commands/CreateDbParameterGroupCommand.js +3 -9
- package/dist-es/commands/DeleteDbClusterCommand.js +3 -9
- package/dist-es/commands/DeleteDbInstanceCommand.js +3 -9
- package/dist-es/commands/GetDbClusterCommand.js +3 -9
- package/dist-es/commands/GetDbInstanceCommand.js +3 -9
- package/dist-es/commands/GetDbParameterGroupCommand.js +3 -9
- package/dist-es/commands/ListDbClustersCommand.js +3 -9
- package/dist-es/commands/ListDbInstancesCommand.js +3 -9
- package/dist-es/commands/ListDbInstancesForClusterCommand.js +3 -9
- package/dist-es/commands/ListDbParameterGroupsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateDbClusterCommand.js +3 -9
- package/dist-es/commands/UpdateDbInstanceCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -11
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +1037 -0
- package/dist-types/TimestreamInfluxDBClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -8
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +83 -0
- package/dist-types/ts3.4/TimestreamInfluxDBClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -6
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +89 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_0.js +0 -704
- package/dist-types/protocols/Aws_json1_0.d.ts +0 -155
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -209
|
@@ -1,155 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { CreateDbClusterCommandInput, CreateDbClusterCommandOutput } from "../commands/CreateDbClusterCommand";
|
|
4
|
-
import { CreateDbInstanceCommandInput, CreateDbInstanceCommandOutput } from "../commands/CreateDbInstanceCommand";
|
|
5
|
-
import { CreateDbParameterGroupCommandInput, CreateDbParameterGroupCommandOutput } from "../commands/CreateDbParameterGroupCommand";
|
|
6
|
-
import { DeleteDbClusterCommandInput, DeleteDbClusterCommandOutput } from "../commands/DeleteDbClusterCommand";
|
|
7
|
-
import { DeleteDbInstanceCommandInput, DeleteDbInstanceCommandOutput } from "../commands/DeleteDbInstanceCommand";
|
|
8
|
-
import { GetDbClusterCommandInput, GetDbClusterCommandOutput } from "../commands/GetDbClusterCommand";
|
|
9
|
-
import { GetDbInstanceCommandInput, GetDbInstanceCommandOutput } from "../commands/GetDbInstanceCommand";
|
|
10
|
-
import { GetDbParameterGroupCommandInput, GetDbParameterGroupCommandOutput } from "../commands/GetDbParameterGroupCommand";
|
|
11
|
-
import { ListDbClustersCommandInput, ListDbClustersCommandOutput } from "../commands/ListDbClustersCommand";
|
|
12
|
-
import { ListDbInstancesCommandInput, ListDbInstancesCommandOutput } from "../commands/ListDbInstancesCommand";
|
|
13
|
-
import { ListDbInstancesForClusterCommandInput, ListDbInstancesForClusterCommandOutput } from "../commands/ListDbInstancesForClusterCommand";
|
|
14
|
-
import { ListDbParameterGroupsCommandInput, ListDbParameterGroupsCommandOutput } from "../commands/ListDbParameterGroupsCommand";
|
|
15
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
16
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
17
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
18
|
-
import { UpdateDbClusterCommandInput, UpdateDbClusterCommandOutput } from "../commands/UpdateDbClusterCommand";
|
|
19
|
-
import { UpdateDbInstanceCommandInput, UpdateDbInstanceCommandOutput } from "../commands/UpdateDbInstanceCommand";
|
|
20
|
-
/**
|
|
21
|
-
* serializeAws_json1_0CreateDbClusterCommand
|
|
22
|
-
*/
|
|
23
|
-
export declare const se_CreateDbClusterCommand: (input: CreateDbClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
|
-
/**
|
|
25
|
-
* serializeAws_json1_0CreateDbInstanceCommand
|
|
26
|
-
*/
|
|
27
|
-
export declare const se_CreateDbInstanceCommand: (input: CreateDbInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
|
-
/**
|
|
29
|
-
* serializeAws_json1_0CreateDbParameterGroupCommand
|
|
30
|
-
*/
|
|
31
|
-
export declare const se_CreateDbParameterGroupCommand: (input: CreateDbParameterGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
|
-
/**
|
|
33
|
-
* serializeAws_json1_0DeleteDbClusterCommand
|
|
34
|
-
*/
|
|
35
|
-
export declare const se_DeleteDbClusterCommand: (input: DeleteDbClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
|
-
/**
|
|
37
|
-
* serializeAws_json1_0DeleteDbInstanceCommand
|
|
38
|
-
*/
|
|
39
|
-
export declare const se_DeleteDbInstanceCommand: (input: DeleteDbInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
|
-
/**
|
|
41
|
-
* serializeAws_json1_0GetDbClusterCommand
|
|
42
|
-
*/
|
|
43
|
-
export declare const se_GetDbClusterCommand: (input: GetDbClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
|
-
/**
|
|
45
|
-
* serializeAws_json1_0GetDbInstanceCommand
|
|
46
|
-
*/
|
|
47
|
-
export declare const se_GetDbInstanceCommand: (input: GetDbInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
|
-
/**
|
|
49
|
-
* serializeAws_json1_0GetDbParameterGroupCommand
|
|
50
|
-
*/
|
|
51
|
-
export declare const se_GetDbParameterGroupCommand: (input: GetDbParameterGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
|
-
/**
|
|
53
|
-
* serializeAws_json1_0ListDbClustersCommand
|
|
54
|
-
*/
|
|
55
|
-
export declare const se_ListDbClustersCommand: (input: ListDbClustersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
|
-
/**
|
|
57
|
-
* serializeAws_json1_0ListDbInstancesCommand
|
|
58
|
-
*/
|
|
59
|
-
export declare const se_ListDbInstancesCommand: (input: ListDbInstancesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
60
|
-
/**
|
|
61
|
-
* serializeAws_json1_0ListDbInstancesForClusterCommand
|
|
62
|
-
*/
|
|
63
|
-
export declare const se_ListDbInstancesForClusterCommand: (input: ListDbInstancesForClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
|
-
/**
|
|
65
|
-
* serializeAws_json1_0ListDbParameterGroupsCommand
|
|
66
|
-
*/
|
|
67
|
-
export declare const se_ListDbParameterGroupsCommand: (input: ListDbParameterGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
|
-
/**
|
|
69
|
-
* serializeAws_json1_0ListTagsForResourceCommand
|
|
70
|
-
*/
|
|
71
|
-
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
|
-
/**
|
|
73
|
-
* serializeAws_json1_0TagResourceCommand
|
|
74
|
-
*/
|
|
75
|
-
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
|
-
/**
|
|
77
|
-
* serializeAws_json1_0UntagResourceCommand
|
|
78
|
-
*/
|
|
79
|
-
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
80
|
-
/**
|
|
81
|
-
* serializeAws_json1_0UpdateDbClusterCommand
|
|
82
|
-
*/
|
|
83
|
-
export declare const se_UpdateDbClusterCommand: (input: UpdateDbClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
|
-
/**
|
|
85
|
-
* serializeAws_json1_0UpdateDbInstanceCommand
|
|
86
|
-
*/
|
|
87
|
-
export declare const se_UpdateDbInstanceCommand: (input: UpdateDbInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
88
|
-
/**
|
|
89
|
-
* deserializeAws_json1_0CreateDbClusterCommand
|
|
90
|
-
*/
|
|
91
|
-
export declare const de_CreateDbClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDbClusterCommandOutput>;
|
|
92
|
-
/**
|
|
93
|
-
* deserializeAws_json1_0CreateDbInstanceCommand
|
|
94
|
-
*/
|
|
95
|
-
export declare const de_CreateDbInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDbInstanceCommandOutput>;
|
|
96
|
-
/**
|
|
97
|
-
* deserializeAws_json1_0CreateDbParameterGroupCommand
|
|
98
|
-
*/
|
|
99
|
-
export declare const de_CreateDbParameterGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDbParameterGroupCommandOutput>;
|
|
100
|
-
/**
|
|
101
|
-
* deserializeAws_json1_0DeleteDbClusterCommand
|
|
102
|
-
*/
|
|
103
|
-
export declare const de_DeleteDbClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDbClusterCommandOutput>;
|
|
104
|
-
/**
|
|
105
|
-
* deserializeAws_json1_0DeleteDbInstanceCommand
|
|
106
|
-
*/
|
|
107
|
-
export declare const de_DeleteDbInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDbInstanceCommandOutput>;
|
|
108
|
-
/**
|
|
109
|
-
* deserializeAws_json1_0GetDbClusterCommand
|
|
110
|
-
*/
|
|
111
|
-
export declare const de_GetDbClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDbClusterCommandOutput>;
|
|
112
|
-
/**
|
|
113
|
-
* deserializeAws_json1_0GetDbInstanceCommand
|
|
114
|
-
*/
|
|
115
|
-
export declare const de_GetDbInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDbInstanceCommandOutput>;
|
|
116
|
-
/**
|
|
117
|
-
* deserializeAws_json1_0GetDbParameterGroupCommand
|
|
118
|
-
*/
|
|
119
|
-
export declare const de_GetDbParameterGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDbParameterGroupCommandOutput>;
|
|
120
|
-
/**
|
|
121
|
-
* deserializeAws_json1_0ListDbClustersCommand
|
|
122
|
-
*/
|
|
123
|
-
export declare const de_ListDbClustersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDbClustersCommandOutput>;
|
|
124
|
-
/**
|
|
125
|
-
* deserializeAws_json1_0ListDbInstancesCommand
|
|
126
|
-
*/
|
|
127
|
-
export declare const de_ListDbInstancesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDbInstancesCommandOutput>;
|
|
128
|
-
/**
|
|
129
|
-
* deserializeAws_json1_0ListDbInstancesForClusterCommand
|
|
130
|
-
*/
|
|
131
|
-
export declare const de_ListDbInstancesForClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDbInstancesForClusterCommandOutput>;
|
|
132
|
-
/**
|
|
133
|
-
* deserializeAws_json1_0ListDbParameterGroupsCommand
|
|
134
|
-
*/
|
|
135
|
-
export declare const de_ListDbParameterGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDbParameterGroupsCommandOutput>;
|
|
136
|
-
/**
|
|
137
|
-
* deserializeAws_json1_0ListTagsForResourceCommand
|
|
138
|
-
*/
|
|
139
|
-
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
140
|
-
/**
|
|
141
|
-
* deserializeAws_json1_0TagResourceCommand
|
|
142
|
-
*/
|
|
143
|
-
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
144
|
-
/**
|
|
145
|
-
* deserializeAws_json1_0UntagResourceCommand
|
|
146
|
-
*/
|
|
147
|
-
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
148
|
-
/**
|
|
149
|
-
* deserializeAws_json1_0UpdateDbClusterCommand
|
|
150
|
-
*/
|
|
151
|
-
export declare const de_UpdateDbClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDbClusterCommandOutput>;
|
|
152
|
-
/**
|
|
153
|
-
* deserializeAws_json1_0UpdateDbInstanceCommand
|
|
154
|
-
*/
|
|
155
|
-
export declare const de_UpdateDbInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDbInstanceCommandOutput>;
|
|
@@ -1,209 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
CreateDbClusterCommandInput,
|
|
8
|
-
CreateDbClusterCommandOutput,
|
|
9
|
-
} from "../commands/CreateDbClusterCommand";
|
|
10
|
-
import {
|
|
11
|
-
CreateDbInstanceCommandInput,
|
|
12
|
-
CreateDbInstanceCommandOutput,
|
|
13
|
-
} from "../commands/CreateDbInstanceCommand";
|
|
14
|
-
import {
|
|
15
|
-
CreateDbParameterGroupCommandInput,
|
|
16
|
-
CreateDbParameterGroupCommandOutput,
|
|
17
|
-
} from "../commands/CreateDbParameterGroupCommand";
|
|
18
|
-
import {
|
|
19
|
-
DeleteDbClusterCommandInput,
|
|
20
|
-
DeleteDbClusterCommandOutput,
|
|
21
|
-
} from "../commands/DeleteDbClusterCommand";
|
|
22
|
-
import {
|
|
23
|
-
DeleteDbInstanceCommandInput,
|
|
24
|
-
DeleteDbInstanceCommandOutput,
|
|
25
|
-
} from "../commands/DeleteDbInstanceCommand";
|
|
26
|
-
import {
|
|
27
|
-
GetDbClusterCommandInput,
|
|
28
|
-
GetDbClusterCommandOutput,
|
|
29
|
-
} from "../commands/GetDbClusterCommand";
|
|
30
|
-
import {
|
|
31
|
-
GetDbInstanceCommandInput,
|
|
32
|
-
GetDbInstanceCommandOutput,
|
|
33
|
-
} from "../commands/GetDbInstanceCommand";
|
|
34
|
-
import {
|
|
35
|
-
GetDbParameterGroupCommandInput,
|
|
36
|
-
GetDbParameterGroupCommandOutput,
|
|
37
|
-
} from "../commands/GetDbParameterGroupCommand";
|
|
38
|
-
import {
|
|
39
|
-
ListDbClustersCommandInput,
|
|
40
|
-
ListDbClustersCommandOutput,
|
|
41
|
-
} from "../commands/ListDbClustersCommand";
|
|
42
|
-
import {
|
|
43
|
-
ListDbInstancesCommandInput,
|
|
44
|
-
ListDbInstancesCommandOutput,
|
|
45
|
-
} from "../commands/ListDbInstancesCommand";
|
|
46
|
-
import {
|
|
47
|
-
ListDbInstancesForClusterCommandInput,
|
|
48
|
-
ListDbInstancesForClusterCommandOutput,
|
|
49
|
-
} from "../commands/ListDbInstancesForClusterCommand";
|
|
50
|
-
import {
|
|
51
|
-
ListDbParameterGroupsCommandInput,
|
|
52
|
-
ListDbParameterGroupsCommandOutput,
|
|
53
|
-
} from "../commands/ListDbParameterGroupsCommand";
|
|
54
|
-
import {
|
|
55
|
-
ListTagsForResourceCommandInput,
|
|
56
|
-
ListTagsForResourceCommandOutput,
|
|
57
|
-
} from "../commands/ListTagsForResourceCommand";
|
|
58
|
-
import {
|
|
59
|
-
TagResourceCommandInput,
|
|
60
|
-
TagResourceCommandOutput,
|
|
61
|
-
} from "../commands/TagResourceCommand";
|
|
62
|
-
import {
|
|
63
|
-
UntagResourceCommandInput,
|
|
64
|
-
UntagResourceCommandOutput,
|
|
65
|
-
} from "../commands/UntagResourceCommand";
|
|
66
|
-
import {
|
|
67
|
-
UpdateDbClusterCommandInput,
|
|
68
|
-
UpdateDbClusterCommandOutput,
|
|
69
|
-
} from "../commands/UpdateDbClusterCommand";
|
|
70
|
-
import {
|
|
71
|
-
UpdateDbInstanceCommandInput,
|
|
72
|
-
UpdateDbInstanceCommandOutput,
|
|
73
|
-
} from "../commands/UpdateDbInstanceCommand";
|
|
74
|
-
export declare const se_CreateDbClusterCommand: (
|
|
75
|
-
input: CreateDbClusterCommandInput,
|
|
76
|
-
context: __SerdeContext
|
|
77
|
-
) => Promise<__HttpRequest>;
|
|
78
|
-
export declare const se_CreateDbInstanceCommand: (
|
|
79
|
-
input: CreateDbInstanceCommandInput,
|
|
80
|
-
context: __SerdeContext
|
|
81
|
-
) => Promise<__HttpRequest>;
|
|
82
|
-
export declare const se_CreateDbParameterGroupCommand: (
|
|
83
|
-
input: CreateDbParameterGroupCommandInput,
|
|
84
|
-
context: __SerdeContext
|
|
85
|
-
) => Promise<__HttpRequest>;
|
|
86
|
-
export declare const se_DeleteDbClusterCommand: (
|
|
87
|
-
input: DeleteDbClusterCommandInput,
|
|
88
|
-
context: __SerdeContext
|
|
89
|
-
) => Promise<__HttpRequest>;
|
|
90
|
-
export declare const se_DeleteDbInstanceCommand: (
|
|
91
|
-
input: DeleteDbInstanceCommandInput,
|
|
92
|
-
context: __SerdeContext
|
|
93
|
-
) => Promise<__HttpRequest>;
|
|
94
|
-
export declare const se_GetDbClusterCommand: (
|
|
95
|
-
input: GetDbClusterCommandInput,
|
|
96
|
-
context: __SerdeContext
|
|
97
|
-
) => Promise<__HttpRequest>;
|
|
98
|
-
export declare const se_GetDbInstanceCommand: (
|
|
99
|
-
input: GetDbInstanceCommandInput,
|
|
100
|
-
context: __SerdeContext
|
|
101
|
-
) => Promise<__HttpRequest>;
|
|
102
|
-
export declare const se_GetDbParameterGroupCommand: (
|
|
103
|
-
input: GetDbParameterGroupCommandInput,
|
|
104
|
-
context: __SerdeContext
|
|
105
|
-
) => Promise<__HttpRequest>;
|
|
106
|
-
export declare const se_ListDbClustersCommand: (
|
|
107
|
-
input: ListDbClustersCommandInput,
|
|
108
|
-
context: __SerdeContext
|
|
109
|
-
) => Promise<__HttpRequest>;
|
|
110
|
-
export declare const se_ListDbInstancesCommand: (
|
|
111
|
-
input: ListDbInstancesCommandInput,
|
|
112
|
-
context: __SerdeContext
|
|
113
|
-
) => Promise<__HttpRequest>;
|
|
114
|
-
export declare const se_ListDbInstancesForClusterCommand: (
|
|
115
|
-
input: ListDbInstancesForClusterCommandInput,
|
|
116
|
-
context: __SerdeContext
|
|
117
|
-
) => Promise<__HttpRequest>;
|
|
118
|
-
export declare const se_ListDbParameterGroupsCommand: (
|
|
119
|
-
input: ListDbParameterGroupsCommandInput,
|
|
120
|
-
context: __SerdeContext
|
|
121
|
-
) => Promise<__HttpRequest>;
|
|
122
|
-
export declare const se_ListTagsForResourceCommand: (
|
|
123
|
-
input: ListTagsForResourceCommandInput,
|
|
124
|
-
context: __SerdeContext
|
|
125
|
-
) => Promise<__HttpRequest>;
|
|
126
|
-
export declare const se_TagResourceCommand: (
|
|
127
|
-
input: TagResourceCommandInput,
|
|
128
|
-
context: __SerdeContext
|
|
129
|
-
) => Promise<__HttpRequest>;
|
|
130
|
-
export declare const se_UntagResourceCommand: (
|
|
131
|
-
input: UntagResourceCommandInput,
|
|
132
|
-
context: __SerdeContext
|
|
133
|
-
) => Promise<__HttpRequest>;
|
|
134
|
-
export declare const se_UpdateDbClusterCommand: (
|
|
135
|
-
input: UpdateDbClusterCommandInput,
|
|
136
|
-
context: __SerdeContext
|
|
137
|
-
) => Promise<__HttpRequest>;
|
|
138
|
-
export declare const se_UpdateDbInstanceCommand: (
|
|
139
|
-
input: UpdateDbInstanceCommandInput,
|
|
140
|
-
context: __SerdeContext
|
|
141
|
-
) => Promise<__HttpRequest>;
|
|
142
|
-
export declare const de_CreateDbClusterCommand: (
|
|
143
|
-
output: __HttpResponse,
|
|
144
|
-
context: __SerdeContext
|
|
145
|
-
) => Promise<CreateDbClusterCommandOutput>;
|
|
146
|
-
export declare const de_CreateDbInstanceCommand: (
|
|
147
|
-
output: __HttpResponse,
|
|
148
|
-
context: __SerdeContext
|
|
149
|
-
) => Promise<CreateDbInstanceCommandOutput>;
|
|
150
|
-
export declare const de_CreateDbParameterGroupCommand: (
|
|
151
|
-
output: __HttpResponse,
|
|
152
|
-
context: __SerdeContext
|
|
153
|
-
) => Promise<CreateDbParameterGroupCommandOutput>;
|
|
154
|
-
export declare const de_DeleteDbClusterCommand: (
|
|
155
|
-
output: __HttpResponse,
|
|
156
|
-
context: __SerdeContext
|
|
157
|
-
) => Promise<DeleteDbClusterCommandOutput>;
|
|
158
|
-
export declare const de_DeleteDbInstanceCommand: (
|
|
159
|
-
output: __HttpResponse,
|
|
160
|
-
context: __SerdeContext
|
|
161
|
-
) => Promise<DeleteDbInstanceCommandOutput>;
|
|
162
|
-
export declare const de_GetDbClusterCommand: (
|
|
163
|
-
output: __HttpResponse,
|
|
164
|
-
context: __SerdeContext
|
|
165
|
-
) => Promise<GetDbClusterCommandOutput>;
|
|
166
|
-
export declare const de_GetDbInstanceCommand: (
|
|
167
|
-
output: __HttpResponse,
|
|
168
|
-
context: __SerdeContext
|
|
169
|
-
) => Promise<GetDbInstanceCommandOutput>;
|
|
170
|
-
export declare const de_GetDbParameterGroupCommand: (
|
|
171
|
-
output: __HttpResponse,
|
|
172
|
-
context: __SerdeContext
|
|
173
|
-
) => Promise<GetDbParameterGroupCommandOutput>;
|
|
174
|
-
export declare const de_ListDbClustersCommand: (
|
|
175
|
-
output: __HttpResponse,
|
|
176
|
-
context: __SerdeContext
|
|
177
|
-
) => Promise<ListDbClustersCommandOutput>;
|
|
178
|
-
export declare const de_ListDbInstancesCommand: (
|
|
179
|
-
output: __HttpResponse,
|
|
180
|
-
context: __SerdeContext
|
|
181
|
-
) => Promise<ListDbInstancesCommandOutput>;
|
|
182
|
-
export declare const de_ListDbInstancesForClusterCommand: (
|
|
183
|
-
output: __HttpResponse,
|
|
184
|
-
context: __SerdeContext
|
|
185
|
-
) => Promise<ListDbInstancesForClusterCommandOutput>;
|
|
186
|
-
export declare const de_ListDbParameterGroupsCommand: (
|
|
187
|
-
output: __HttpResponse,
|
|
188
|
-
context: __SerdeContext
|
|
189
|
-
) => Promise<ListDbParameterGroupsCommandOutput>;
|
|
190
|
-
export declare const de_ListTagsForResourceCommand: (
|
|
191
|
-
output: __HttpResponse,
|
|
192
|
-
context: __SerdeContext
|
|
193
|
-
) => Promise<ListTagsForResourceCommandOutput>;
|
|
194
|
-
export declare const de_TagResourceCommand: (
|
|
195
|
-
output: __HttpResponse,
|
|
196
|
-
context: __SerdeContext
|
|
197
|
-
) => Promise<TagResourceCommandOutput>;
|
|
198
|
-
export declare const de_UntagResourceCommand: (
|
|
199
|
-
output: __HttpResponse,
|
|
200
|
-
context: __SerdeContext
|
|
201
|
-
) => Promise<UntagResourceCommandOutput>;
|
|
202
|
-
export declare const de_UpdateDbClusterCommand: (
|
|
203
|
-
output: __HttpResponse,
|
|
204
|
-
context: __SerdeContext
|
|
205
|
-
) => Promise<UpdateDbClusterCommandOutput>;
|
|
206
|
-
export declare const de_UpdateDbInstanceCommand: (
|
|
207
|
-
output: __HttpResponse,
|
|
208
|
-
context: __SerdeContext
|
|
209
|
-
) => Promise<UpdateDbInstanceCommandOutput>;
|