@aws-sdk/client-bcm-dashboards 3.1027.0 → 3.1029.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/README.md +42 -0
- package/dist-cjs/index.js +108 -0
- package/dist-cjs/models/errors.js +14 -1
- package/dist-cjs/schemas/schemas_0.js +172 -3
- package/dist-es/BCMDashboards.js +14 -0
- package/dist-es/commands/CreateScheduledReportCommand.js +16 -0
- package/dist-es/commands/DeleteScheduledReportCommand.js +16 -0
- package/dist-es/commands/ExecuteScheduledReportCommand.js +16 -0
- package/dist-es/commands/GetScheduledReportCommand.js +16 -0
- package/dist-es/commands/ListScheduledReportsCommand.js +16 -0
- package/dist-es/commands/UpdateScheduledReportCommand.js +16 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/enums.js +17 -0
- package/dist-es/models/errors.js +12 -0
- package/dist-es/pagination/ListScheduledReportsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +171 -2
- package/dist-types/BCMDashboards.d.ts +50 -0
- package/dist-types/BCMDashboardsClient.d.ts +8 -2
- package/dist-types/commands/CreateDashboardCommand.d.ts +1 -1
- package/dist-types/commands/CreateScheduledReportCommand.d.ts +126 -0
- package/dist-types/commands/DeleteScheduledReportCommand.d.ts +89 -0
- package/dist-types/commands/ExecuteScheduledReportCommand.d.ts +101 -0
- package/dist-types/commands/GetScheduledReportCommand.d.ts +127 -0
- package/dist-types/commands/ListScheduledReportsCommand.d.ts +107 -0
- package/dist-types/commands/UpdateDashboardCommand.d.ts +1 -1
- package/dist-types/commands/UpdateScheduledReportCommand.d.ts +120 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/enums.d.ts +41 -0
- package/dist-types/models/errors.d.ts +13 -1
- package/dist-types/models/models_0.d.ts +422 -6
- package/dist-types/pagination/ListScheduledReportsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +25 -0
- package/dist-types/ts3.4/BCMDashboards.d.ts +110 -0
- package/dist-types/ts3.4/BCMDashboardsClient.d.ts +38 -2
- package/dist-types/ts3.4/commands/CreateScheduledReportCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteScheduledReportCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ExecuteScheduledReportCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetScheduledReportCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListScheduledReportsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateScheduledReportCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/enums.d.ts +21 -0
- package/dist-types/ts3.4/models/errors.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +104 -1
- package/dist-types/ts3.4/pagination/ListScheduledReportsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +25 -0
- package/package.json +1 -1
|
@@ -8,10 +8,22 @@ import {
|
|
|
8
8
|
CreateDashboardCommandInput,
|
|
9
9
|
CreateDashboardCommandOutput,
|
|
10
10
|
} from "./commands/CreateDashboardCommand";
|
|
11
|
+
import {
|
|
12
|
+
CreateScheduledReportCommandInput,
|
|
13
|
+
CreateScheduledReportCommandOutput,
|
|
14
|
+
} from "./commands/CreateScheduledReportCommand";
|
|
11
15
|
import {
|
|
12
16
|
DeleteDashboardCommandInput,
|
|
13
17
|
DeleteDashboardCommandOutput,
|
|
14
18
|
} from "./commands/DeleteDashboardCommand";
|
|
19
|
+
import {
|
|
20
|
+
DeleteScheduledReportCommandInput,
|
|
21
|
+
DeleteScheduledReportCommandOutput,
|
|
22
|
+
} from "./commands/DeleteScheduledReportCommand";
|
|
23
|
+
import {
|
|
24
|
+
ExecuteScheduledReportCommandInput,
|
|
25
|
+
ExecuteScheduledReportCommandOutput,
|
|
26
|
+
} from "./commands/ExecuteScheduledReportCommand";
|
|
15
27
|
import {
|
|
16
28
|
GetDashboardCommandInput,
|
|
17
29
|
GetDashboardCommandOutput,
|
|
@@ -20,10 +32,18 @@ import {
|
|
|
20
32
|
GetResourcePolicyCommandInput,
|
|
21
33
|
GetResourcePolicyCommandOutput,
|
|
22
34
|
} from "./commands/GetResourcePolicyCommand";
|
|
35
|
+
import {
|
|
36
|
+
GetScheduledReportCommandInput,
|
|
37
|
+
GetScheduledReportCommandOutput,
|
|
38
|
+
} from "./commands/GetScheduledReportCommand";
|
|
23
39
|
import {
|
|
24
40
|
ListDashboardsCommandInput,
|
|
25
41
|
ListDashboardsCommandOutput,
|
|
26
42
|
} from "./commands/ListDashboardsCommand";
|
|
43
|
+
import {
|
|
44
|
+
ListScheduledReportsCommandInput,
|
|
45
|
+
ListScheduledReportsCommandOutput,
|
|
46
|
+
} from "./commands/ListScheduledReportsCommand";
|
|
27
47
|
import {
|
|
28
48
|
ListTagsForResourceCommandInput,
|
|
29
49
|
ListTagsForResourceCommandOutput,
|
|
@@ -40,6 +60,10 @@ import {
|
|
|
40
60
|
UpdateDashboardCommandInput,
|
|
41
61
|
UpdateDashboardCommandOutput,
|
|
42
62
|
} from "./commands/UpdateDashboardCommand";
|
|
63
|
+
import {
|
|
64
|
+
UpdateScheduledReportCommandInput,
|
|
65
|
+
UpdateScheduledReportCommandOutput,
|
|
66
|
+
} from "./commands/UpdateScheduledReportCommand";
|
|
43
67
|
export interface BCMDashboards {
|
|
44
68
|
createDashboard(
|
|
45
69
|
args: CreateDashboardCommandInput,
|
|
@@ -54,6 +78,19 @@ export interface BCMDashboards {
|
|
|
54
78
|
options: __HttpHandlerOptions,
|
|
55
79
|
cb: (err: any, data?: CreateDashboardCommandOutput) => void
|
|
56
80
|
): void;
|
|
81
|
+
createScheduledReport(
|
|
82
|
+
args: CreateScheduledReportCommandInput,
|
|
83
|
+
options?: __HttpHandlerOptions
|
|
84
|
+
): Promise<CreateScheduledReportCommandOutput>;
|
|
85
|
+
createScheduledReport(
|
|
86
|
+
args: CreateScheduledReportCommandInput,
|
|
87
|
+
cb: (err: any, data?: CreateScheduledReportCommandOutput) => void
|
|
88
|
+
): void;
|
|
89
|
+
createScheduledReport(
|
|
90
|
+
args: CreateScheduledReportCommandInput,
|
|
91
|
+
options: __HttpHandlerOptions,
|
|
92
|
+
cb: (err: any, data?: CreateScheduledReportCommandOutput) => void
|
|
93
|
+
): void;
|
|
57
94
|
deleteDashboard(
|
|
58
95
|
args: DeleteDashboardCommandInput,
|
|
59
96
|
options?: __HttpHandlerOptions
|
|
@@ -67,6 +104,32 @@ export interface BCMDashboards {
|
|
|
67
104
|
options: __HttpHandlerOptions,
|
|
68
105
|
cb: (err: any, data?: DeleteDashboardCommandOutput) => void
|
|
69
106
|
): void;
|
|
107
|
+
deleteScheduledReport(
|
|
108
|
+
args: DeleteScheduledReportCommandInput,
|
|
109
|
+
options?: __HttpHandlerOptions
|
|
110
|
+
): Promise<DeleteScheduledReportCommandOutput>;
|
|
111
|
+
deleteScheduledReport(
|
|
112
|
+
args: DeleteScheduledReportCommandInput,
|
|
113
|
+
cb: (err: any, data?: DeleteScheduledReportCommandOutput) => void
|
|
114
|
+
): void;
|
|
115
|
+
deleteScheduledReport(
|
|
116
|
+
args: DeleteScheduledReportCommandInput,
|
|
117
|
+
options: __HttpHandlerOptions,
|
|
118
|
+
cb: (err: any, data?: DeleteScheduledReportCommandOutput) => void
|
|
119
|
+
): void;
|
|
120
|
+
executeScheduledReport(
|
|
121
|
+
args: ExecuteScheduledReportCommandInput,
|
|
122
|
+
options?: __HttpHandlerOptions
|
|
123
|
+
): Promise<ExecuteScheduledReportCommandOutput>;
|
|
124
|
+
executeScheduledReport(
|
|
125
|
+
args: ExecuteScheduledReportCommandInput,
|
|
126
|
+
cb: (err: any, data?: ExecuteScheduledReportCommandOutput) => void
|
|
127
|
+
): void;
|
|
128
|
+
executeScheduledReport(
|
|
129
|
+
args: ExecuteScheduledReportCommandInput,
|
|
130
|
+
options: __HttpHandlerOptions,
|
|
131
|
+
cb: (err: any, data?: ExecuteScheduledReportCommandOutput) => void
|
|
132
|
+
): void;
|
|
70
133
|
getDashboard(
|
|
71
134
|
args: GetDashboardCommandInput,
|
|
72
135
|
options?: __HttpHandlerOptions
|
|
@@ -93,6 +156,19 @@ export interface BCMDashboards {
|
|
|
93
156
|
options: __HttpHandlerOptions,
|
|
94
157
|
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
|
|
95
158
|
): void;
|
|
159
|
+
getScheduledReport(
|
|
160
|
+
args: GetScheduledReportCommandInput,
|
|
161
|
+
options?: __HttpHandlerOptions
|
|
162
|
+
): Promise<GetScheduledReportCommandOutput>;
|
|
163
|
+
getScheduledReport(
|
|
164
|
+
args: GetScheduledReportCommandInput,
|
|
165
|
+
cb: (err: any, data?: GetScheduledReportCommandOutput) => void
|
|
166
|
+
): void;
|
|
167
|
+
getScheduledReport(
|
|
168
|
+
args: GetScheduledReportCommandInput,
|
|
169
|
+
options: __HttpHandlerOptions,
|
|
170
|
+
cb: (err: any, data?: GetScheduledReportCommandOutput) => void
|
|
171
|
+
): void;
|
|
96
172
|
listDashboards(): Promise<ListDashboardsCommandOutput>;
|
|
97
173
|
listDashboards(
|
|
98
174
|
args: ListDashboardsCommandInput,
|
|
@@ -107,6 +183,20 @@ export interface BCMDashboards {
|
|
|
107
183
|
options: __HttpHandlerOptions,
|
|
108
184
|
cb: (err: any, data?: ListDashboardsCommandOutput) => void
|
|
109
185
|
): void;
|
|
186
|
+
listScheduledReports(): Promise<ListScheduledReportsCommandOutput>;
|
|
187
|
+
listScheduledReports(
|
|
188
|
+
args: ListScheduledReportsCommandInput,
|
|
189
|
+
options?: __HttpHandlerOptions
|
|
190
|
+
): Promise<ListScheduledReportsCommandOutput>;
|
|
191
|
+
listScheduledReports(
|
|
192
|
+
args: ListScheduledReportsCommandInput,
|
|
193
|
+
cb: (err: any, data?: ListScheduledReportsCommandOutput) => void
|
|
194
|
+
): void;
|
|
195
|
+
listScheduledReports(
|
|
196
|
+
args: ListScheduledReportsCommandInput,
|
|
197
|
+
options: __HttpHandlerOptions,
|
|
198
|
+
cb: (err: any, data?: ListScheduledReportsCommandOutput) => void
|
|
199
|
+
): void;
|
|
110
200
|
listTagsForResource(
|
|
111
201
|
args: ListTagsForResourceCommandInput,
|
|
112
202
|
options?: __HttpHandlerOptions
|
|
@@ -159,6 +249,19 @@ export interface BCMDashboards {
|
|
|
159
249
|
options: __HttpHandlerOptions,
|
|
160
250
|
cb: (err: any, data?: UpdateDashboardCommandOutput) => void
|
|
161
251
|
): void;
|
|
252
|
+
updateScheduledReport(
|
|
253
|
+
args: UpdateScheduledReportCommandInput,
|
|
254
|
+
options?: __HttpHandlerOptions
|
|
255
|
+
): Promise<UpdateScheduledReportCommandOutput>;
|
|
256
|
+
updateScheduledReport(
|
|
257
|
+
args: UpdateScheduledReportCommandInput,
|
|
258
|
+
cb: (err: any, data?: UpdateScheduledReportCommandOutput) => void
|
|
259
|
+
): void;
|
|
260
|
+
updateScheduledReport(
|
|
261
|
+
args: UpdateScheduledReportCommandInput,
|
|
262
|
+
options: __HttpHandlerOptions,
|
|
263
|
+
cb: (err: any, data?: UpdateScheduledReportCommandOutput) => void
|
|
264
|
+
): void;
|
|
162
265
|
paginateListDashboards(
|
|
163
266
|
args?: ListDashboardsCommandInput,
|
|
164
267
|
paginationConfig?: Pick<
|
|
@@ -166,6 +269,13 @@ export interface BCMDashboards {
|
|
|
166
269
|
Exclude<keyof PaginationConfiguration, "client">
|
|
167
270
|
>
|
|
168
271
|
): Paginator<ListDashboardsCommandOutput>;
|
|
272
|
+
paginateListScheduledReports(
|
|
273
|
+
args?: ListScheduledReportsCommandInput,
|
|
274
|
+
paginationConfig?: Pick<
|
|
275
|
+
PaginationConfiguration,
|
|
276
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
277
|
+
>
|
|
278
|
+
): Paginator<ListScheduledReportsCommandOutput>;
|
|
169
279
|
}
|
|
170
280
|
export declare class BCMDashboards
|
|
171
281
|
extends BCMDashboardsClient
|
|
@@ -48,10 +48,22 @@ import {
|
|
|
48
48
|
CreateDashboardCommandInput,
|
|
49
49
|
CreateDashboardCommandOutput,
|
|
50
50
|
} from "./commands/CreateDashboardCommand";
|
|
51
|
+
import {
|
|
52
|
+
CreateScheduledReportCommandInput,
|
|
53
|
+
CreateScheduledReportCommandOutput,
|
|
54
|
+
} from "./commands/CreateScheduledReportCommand";
|
|
51
55
|
import {
|
|
52
56
|
DeleteDashboardCommandInput,
|
|
53
57
|
DeleteDashboardCommandOutput,
|
|
54
58
|
} from "./commands/DeleteDashboardCommand";
|
|
59
|
+
import {
|
|
60
|
+
DeleteScheduledReportCommandInput,
|
|
61
|
+
DeleteScheduledReportCommandOutput,
|
|
62
|
+
} from "./commands/DeleteScheduledReportCommand";
|
|
63
|
+
import {
|
|
64
|
+
ExecuteScheduledReportCommandInput,
|
|
65
|
+
ExecuteScheduledReportCommandOutput,
|
|
66
|
+
} from "./commands/ExecuteScheduledReportCommand";
|
|
55
67
|
import {
|
|
56
68
|
GetDashboardCommandInput,
|
|
57
69
|
GetDashboardCommandOutput,
|
|
@@ -60,10 +72,18 @@ import {
|
|
|
60
72
|
GetResourcePolicyCommandInput,
|
|
61
73
|
GetResourcePolicyCommandOutput,
|
|
62
74
|
} from "./commands/GetResourcePolicyCommand";
|
|
75
|
+
import {
|
|
76
|
+
GetScheduledReportCommandInput,
|
|
77
|
+
GetScheduledReportCommandOutput,
|
|
78
|
+
} from "./commands/GetScheduledReportCommand";
|
|
63
79
|
import {
|
|
64
80
|
ListDashboardsCommandInput,
|
|
65
81
|
ListDashboardsCommandOutput,
|
|
66
82
|
} from "./commands/ListDashboardsCommand";
|
|
83
|
+
import {
|
|
84
|
+
ListScheduledReportsCommandInput,
|
|
85
|
+
ListScheduledReportsCommandOutput,
|
|
86
|
+
} from "./commands/ListScheduledReportsCommand";
|
|
67
87
|
import {
|
|
68
88
|
ListTagsForResourceCommandInput,
|
|
69
89
|
ListTagsForResourceCommandOutput,
|
|
@@ -80,6 +100,10 @@ import {
|
|
|
80
100
|
UpdateDashboardCommandInput,
|
|
81
101
|
UpdateDashboardCommandOutput,
|
|
82
102
|
} from "./commands/UpdateDashboardCommand";
|
|
103
|
+
import {
|
|
104
|
+
UpdateScheduledReportCommandInput,
|
|
105
|
+
UpdateScheduledReportCommandOutput,
|
|
106
|
+
} from "./commands/UpdateScheduledReportCommand";
|
|
83
107
|
import {
|
|
84
108
|
ClientInputEndpointParameters,
|
|
85
109
|
ClientResolvedEndpointParameters,
|
|
@@ -89,24 +113,36 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
|
89
113
|
export { __Client };
|
|
90
114
|
export type ServiceInputTypes =
|
|
91
115
|
| CreateDashboardCommandInput
|
|
116
|
+
| CreateScheduledReportCommandInput
|
|
92
117
|
| DeleteDashboardCommandInput
|
|
118
|
+
| DeleteScheduledReportCommandInput
|
|
119
|
+
| ExecuteScheduledReportCommandInput
|
|
93
120
|
| GetDashboardCommandInput
|
|
94
121
|
| GetResourcePolicyCommandInput
|
|
122
|
+
| GetScheduledReportCommandInput
|
|
95
123
|
| ListDashboardsCommandInput
|
|
124
|
+
| ListScheduledReportsCommandInput
|
|
96
125
|
| ListTagsForResourceCommandInput
|
|
97
126
|
| TagResourceCommandInput
|
|
98
127
|
| UntagResourceCommandInput
|
|
99
|
-
| UpdateDashboardCommandInput
|
|
128
|
+
| UpdateDashboardCommandInput
|
|
129
|
+
| UpdateScheduledReportCommandInput;
|
|
100
130
|
export type ServiceOutputTypes =
|
|
101
131
|
| CreateDashboardCommandOutput
|
|
132
|
+
| CreateScheduledReportCommandOutput
|
|
102
133
|
| DeleteDashboardCommandOutput
|
|
134
|
+
| DeleteScheduledReportCommandOutput
|
|
135
|
+
| ExecuteScheduledReportCommandOutput
|
|
103
136
|
| GetDashboardCommandOutput
|
|
104
137
|
| GetResourcePolicyCommandOutput
|
|
138
|
+
| GetScheduledReportCommandOutput
|
|
105
139
|
| ListDashboardsCommandOutput
|
|
140
|
+
| ListScheduledReportsCommandOutput
|
|
106
141
|
| ListTagsForResourceCommandOutput
|
|
107
142
|
| TagResourceCommandOutput
|
|
108
143
|
| UntagResourceCommandOutput
|
|
109
|
-
| UpdateDashboardCommandOutput
|
|
144
|
+
| UpdateDashboardCommandOutput
|
|
145
|
+
| UpdateScheduledReportCommandOutput;
|
|
110
146
|
export interface ClientDefaults
|
|
111
147
|
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
112
148
|
requestHandler?: __HttpHandlerUserInput;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BCMDashboardsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BCMDashboardsClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateScheduledReportRequest,
|
|
10
|
+
CreateScheduledReportResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateScheduledReportCommandInput
|
|
15
|
+
extends CreateScheduledReportRequest {}
|
|
16
|
+
export interface CreateScheduledReportCommandOutput
|
|
17
|
+
extends CreateScheduledReportResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateScheduledReportCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateScheduledReportCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateScheduledReportCommandInput,
|
|
24
|
+
CreateScheduledReportCommandOutput,
|
|
25
|
+
BCMDashboardsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateScheduledReportCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateScheduledReportCommandInput,
|
|
33
|
+
CreateScheduledReportCommandOutput,
|
|
34
|
+
BCMDashboardsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateScheduledReportCommand extends CreateScheduledReportCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateScheduledReportRequest;
|
|
44
|
+
output: CreateScheduledReportResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateScheduledReportCommandInput;
|
|
48
|
+
output: CreateScheduledReportCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BCMDashboardsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BCMDashboardsClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteScheduledReportRequest,
|
|
10
|
+
DeleteScheduledReportResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteScheduledReportCommandInput
|
|
15
|
+
extends DeleteScheduledReportRequest {}
|
|
16
|
+
export interface DeleteScheduledReportCommandOutput
|
|
17
|
+
extends DeleteScheduledReportResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteScheduledReportCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteScheduledReportCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteScheduledReportCommandInput,
|
|
24
|
+
DeleteScheduledReportCommandOutput,
|
|
25
|
+
BCMDashboardsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteScheduledReportCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteScheduledReportCommandInput,
|
|
33
|
+
DeleteScheduledReportCommandOutput,
|
|
34
|
+
BCMDashboardsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteScheduledReportCommand extends DeleteScheduledReportCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteScheduledReportRequest;
|
|
44
|
+
output: DeleteScheduledReportResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteScheduledReportCommandInput;
|
|
48
|
+
output: DeleteScheduledReportCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BCMDashboardsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BCMDashboardsClient";
|
|
8
|
+
import {
|
|
9
|
+
ExecuteScheduledReportRequest,
|
|
10
|
+
ExecuteScheduledReportResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ExecuteScheduledReportCommandInput
|
|
15
|
+
extends ExecuteScheduledReportRequest {}
|
|
16
|
+
export interface ExecuteScheduledReportCommandOutput
|
|
17
|
+
extends ExecuteScheduledReportResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ExecuteScheduledReportCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ExecuteScheduledReportCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ExecuteScheduledReportCommandInput,
|
|
24
|
+
ExecuteScheduledReportCommandOutput,
|
|
25
|
+
BCMDashboardsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ExecuteScheduledReportCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ExecuteScheduledReportCommandInput,
|
|
33
|
+
ExecuteScheduledReportCommandOutput,
|
|
34
|
+
BCMDashboardsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ExecuteScheduledReportCommand extends ExecuteScheduledReportCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ExecuteScheduledReportRequest;
|
|
44
|
+
output: ExecuteScheduledReportResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ExecuteScheduledReportCommandInput;
|
|
48
|
+
output: ExecuteScheduledReportCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BCMDashboardsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BCMDashboardsClient";
|
|
8
|
+
import {
|
|
9
|
+
GetScheduledReportRequest,
|
|
10
|
+
GetScheduledReportResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetScheduledReportCommandInput
|
|
15
|
+
extends GetScheduledReportRequest {}
|
|
16
|
+
export interface GetScheduledReportCommandOutput
|
|
17
|
+
extends GetScheduledReportResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetScheduledReportCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetScheduledReportCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetScheduledReportCommandInput,
|
|
24
|
+
GetScheduledReportCommandOutput,
|
|
25
|
+
BCMDashboardsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetScheduledReportCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetScheduledReportCommandInput,
|
|
33
|
+
GetScheduledReportCommandOutput,
|
|
34
|
+
BCMDashboardsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetScheduledReportCommand extends GetScheduledReportCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetScheduledReportRequest;
|
|
44
|
+
output: GetScheduledReportResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetScheduledReportCommandInput;
|
|
48
|
+
output: GetScheduledReportCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BCMDashboardsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BCMDashboardsClient";
|
|
8
|
+
import {
|
|
9
|
+
ListScheduledReportsRequest,
|
|
10
|
+
ListScheduledReportsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListScheduledReportsCommandInput
|
|
15
|
+
extends ListScheduledReportsRequest {}
|
|
16
|
+
export interface ListScheduledReportsCommandOutput
|
|
17
|
+
extends ListScheduledReportsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListScheduledReportsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListScheduledReportsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListScheduledReportsCommandInput,
|
|
24
|
+
ListScheduledReportsCommandOutput,
|
|
25
|
+
BCMDashboardsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListScheduledReportsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListScheduledReportsCommandInput,
|
|
33
|
+
ListScheduledReportsCommandOutput,
|
|
34
|
+
BCMDashboardsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListScheduledReportsCommand extends ListScheduledReportsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListScheduledReportsRequest;
|
|
44
|
+
output: ListScheduledReportsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListScheduledReportsCommandInput;
|
|
48
|
+
output: ListScheduledReportsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
BCMDashboardsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../BCMDashboardsClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateScheduledReportRequest,
|
|
10
|
+
UpdateScheduledReportResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateScheduledReportCommandInput
|
|
15
|
+
extends UpdateScheduledReportRequest {}
|
|
16
|
+
export interface UpdateScheduledReportCommandOutput
|
|
17
|
+
extends UpdateScheduledReportResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateScheduledReportCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateScheduledReportCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateScheduledReportCommandInput,
|
|
24
|
+
UpdateScheduledReportCommandOutput,
|
|
25
|
+
BCMDashboardsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdateScheduledReportCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateScheduledReportCommandInput,
|
|
33
|
+
UpdateScheduledReportCommandOutput,
|
|
34
|
+
BCMDashboardsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateScheduledReportCommand extends UpdateScheduledReportCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateScheduledReportRequest;
|
|
44
|
+
output: UpdateScheduledReportResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateScheduledReportCommandInput;
|
|
48
|
+
output: UpdateScheduledReportCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
export * from "./CreateDashboardCommand";
|
|
2
|
+
export * from "./CreateScheduledReportCommand";
|
|
2
3
|
export * from "./DeleteDashboardCommand";
|
|
4
|
+
export * from "./DeleteScheduledReportCommand";
|
|
5
|
+
export * from "./ExecuteScheduledReportCommand";
|
|
3
6
|
export * from "./GetDashboardCommand";
|
|
4
7
|
export * from "./GetResourcePolicyCommand";
|
|
8
|
+
export * from "./GetScheduledReportCommand";
|
|
5
9
|
export * from "./ListDashboardsCommand";
|
|
10
|
+
export * from "./ListScheduledReportsCommand";
|
|
6
11
|
export * from "./ListTagsForResourceCommand";
|
|
7
12
|
export * from "./TagResourceCommand";
|
|
8
13
|
export * from "./UntagResourceCommand";
|
|
9
14
|
export * from "./UpdateDashboardCommand";
|
|
15
|
+
export * from "./UpdateScheduledReportCommand";
|
|
@@ -76,6 +76,27 @@ export declare const DateTimeType: {
|
|
|
76
76
|
readonly RELATIVE: "RELATIVE";
|
|
77
77
|
};
|
|
78
78
|
export type DateTimeType = (typeof DateTimeType)[keyof typeof DateTimeType];
|
|
79
|
+
export declare const ScheduleState: {
|
|
80
|
+
readonly DISABLED: "DISABLED";
|
|
81
|
+
readonly ENABLED: "ENABLED";
|
|
82
|
+
};
|
|
83
|
+
export type ScheduleState = (typeof ScheduleState)[keyof typeof ScheduleState];
|
|
84
|
+
export declare const HealthStatusCode: {
|
|
85
|
+
readonly HEALTHY: "HEALTHY";
|
|
86
|
+
readonly UNHEALTHY: "UNHEALTHY";
|
|
87
|
+
};
|
|
88
|
+
export type HealthStatusCode =
|
|
89
|
+
(typeof HealthStatusCode)[keyof typeof HealthStatusCode];
|
|
90
|
+
export declare const StatusReason: {
|
|
91
|
+
readonly DASHBOARD_ACCESS_DENIED: "DASHBOARD_ACCESS_DENIED";
|
|
92
|
+
readonly DASHBOARD_NOT_FOUND: "DASHBOARD_NOT_FOUND";
|
|
93
|
+
readonly DATA_SOURCE_ACCESS_DENIED: "DATA_SOURCE_ACCESS_DENIED";
|
|
94
|
+
readonly EXECUTION_ROLE_ASSUME_FAILED: "EXECUTION_ROLE_ASSUME_FAILED";
|
|
95
|
+
readonly EXECUTION_ROLE_INSUFFICIENT_PERMISSIONS: "EXECUTION_ROLE_INSUFFICIENT_PERMISSIONS";
|
|
96
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
97
|
+
readonly WIDGET_ID_NOT_FOUND: "WIDGET_ID_NOT_FOUND";
|
|
98
|
+
};
|
|
99
|
+
export type StatusReason = (typeof StatusReason)[keyof typeof StatusReason];
|
|
79
100
|
export declare const DashboardType: {
|
|
80
101
|
readonly CUSTOM: "CUSTOM";
|
|
81
102
|
};
|
|
@@ -35,6 +35,11 @@ export declare class ValidationException extends __BaseException {
|
|
|
35
35
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
36
36
|
);
|
|
37
37
|
}
|
|
38
|
+
export declare class ConflictException extends __BaseException {
|
|
39
|
+
readonly name: "ConflictException";
|
|
40
|
+
readonly $fault: "client";
|
|
41
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
42
|
+
}
|
|
38
43
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
39
44
|
readonly name: "ResourceNotFoundException";
|
|
40
45
|
readonly $fault: "client";
|