@aws-sdk/client-notifications 3.879.0 → 3.880.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 +33 -8
- package/dist-cjs/Notifications.js +8 -0
- package/dist-cjs/commands/AssociateOrganizationalUnitCommand.js +26 -0
- package/dist-cjs/commands/DisassociateOrganizationalUnitCommand.js +26 -0
- package/dist-cjs/commands/ListMemberAccountsCommand.js +26 -0
- package/dist-cjs/commands/ListOrganizationalUnitsCommand.js +26 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +13 -1
- package/dist-cjs/pagination/ListMemberAccountsPaginator.js +7 -0
- package/dist-cjs/pagination/ListOrganizationalUnitsPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +125 -2
- package/dist-es/Notifications.js +8 -0
- package/dist-es/commands/AssociateOrganizationalUnitCommand.js +22 -0
- package/dist-es/commands/DisassociateOrganizationalUnitCommand.js +22 -0
- package/dist-es/commands/ListMemberAccountsCommand.js +22 -0
- package/dist-es/commands/ListOrganizationalUnitsCommand.js +22 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +12 -0
- package/dist-es/pagination/ListMemberAccountsPaginator.js +4 -0
- package/dist-es/pagination/ListOrganizationalUnitsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +115 -0
- package/dist-types/Notifications.d.ts +29 -8
- package/dist-types/NotificationsClient.d.ts +7 -10
- package/dist-types/commands/AssociateChannelCommand.d.ts +1 -2
- package/dist-types/commands/AssociateManagedNotificationAdditionalChannelCommand.d.ts +1 -2
- package/dist-types/commands/AssociateOrganizationalUnitCommand.d.ts +92 -0
- package/dist-types/commands/CreateEventRuleCommand.d.ts +1 -4
- package/dist-types/commands/DeregisterNotificationHubCommand.d.ts +1 -7
- package/dist-types/commands/DisassociateChannelCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateManagedNotificationAdditionalChannelCommand.d.ts +1 -2
- package/dist-types/commands/DisassociateOrganizationalUnitCommand.d.ts +86 -0
- package/dist-types/commands/GetNotificationConfigurationCommand.d.ts +1 -0
- package/dist-types/commands/GetNotificationEventCommand.d.ts +2 -6
- package/dist-types/commands/GetNotificationsAccessForOrganizationCommand.d.ts +1 -1
- package/dist-types/commands/ListMemberAccountsCommand.d.ts +101 -0
- package/dist-types/commands/ListNotificationConfigurationsCommand.d.ts +3 -2
- package/dist-types/commands/ListNotificationEventsCommand.d.ts +3 -6
- package/dist-types/commands/ListOrganizationalUnitsCommand.d.ts +92 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -5
- package/dist-types/commands/RegisterNotificationHubCommand.d.ts +1 -3
- package/dist-types/commands/TagResourceCommand.d.ts +1 -5
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/index.d.ts +1 -8
- package/dist-types/models/models_0.d.ts +303 -1054
- package/dist-types/pagination/ListMemberAccountsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListOrganizationalUnitsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/Notifications.d.ts +68 -0
- package/dist-types/ts3.4/NotificationsClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/AssociateOrganizationalUnitCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisassociateOrganizationalUnitCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListMemberAccountsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListOrganizationalUnitsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +60 -0
- package/dist-types/ts3.4/pagination/ListMemberAccountsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListOrganizationalUnitsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListMemberAccountsCommandInput, ListMemberAccountsCommandOutput } from "../commands/ListMemberAccountsCommand";
|
|
3
|
+
import { NotificationsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListMemberAccounts: (config: NotificationsPaginationConfiguration, input: ListMemberAccountsCommandInput, ...rest: any[]) => Paginator<ListMemberAccountsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListOrganizationalUnitsCommandInput, ListOrganizationalUnitsCommandOutput } from "../commands/ListOrganizationalUnitsCommand";
|
|
3
|
+
import { NotificationsPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListOrganizationalUnits: (config: NotificationsPaginationConfiguration, input: ListOrganizationalUnitsCommandInput, ...rest: any[]) => Paginator<ListOrganizationalUnitsCommandOutput>;
|
|
@@ -5,6 +5,8 @@ export * from "./ListManagedNotificationChannelAssociationsPaginator";
|
|
|
5
5
|
export * from "./ListManagedNotificationChildEventsPaginator";
|
|
6
6
|
export * from "./ListManagedNotificationConfigurationsPaginator";
|
|
7
7
|
export * from "./ListManagedNotificationEventsPaginator";
|
|
8
|
+
export * from "./ListMemberAccountsPaginator";
|
|
8
9
|
export * from "./ListNotificationConfigurationsPaginator";
|
|
9
10
|
export * from "./ListNotificationEventsPaginator";
|
|
10
11
|
export * from "./ListNotificationHubsPaginator";
|
|
12
|
+
export * from "./ListOrganizationalUnitsPaginator";
|
|
@@ -3,6 +3,7 @@ import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
|
3
3
|
import { AssociateChannelCommandInput, AssociateChannelCommandOutput } from "../commands/AssociateChannelCommand";
|
|
4
4
|
import { AssociateManagedNotificationAccountContactCommandInput, AssociateManagedNotificationAccountContactCommandOutput } from "../commands/AssociateManagedNotificationAccountContactCommand";
|
|
5
5
|
import { AssociateManagedNotificationAdditionalChannelCommandInput, AssociateManagedNotificationAdditionalChannelCommandOutput } from "../commands/AssociateManagedNotificationAdditionalChannelCommand";
|
|
6
|
+
import { AssociateOrganizationalUnitCommandInput, AssociateOrganizationalUnitCommandOutput } from "../commands/AssociateOrganizationalUnitCommand";
|
|
6
7
|
import { CreateEventRuleCommandInput, CreateEventRuleCommandOutput } from "../commands/CreateEventRuleCommand";
|
|
7
8
|
import { CreateNotificationConfigurationCommandInput, CreateNotificationConfigurationCommandOutput } from "../commands/CreateNotificationConfigurationCommand";
|
|
8
9
|
import { DeleteEventRuleCommandInput, DeleteEventRuleCommandOutput } from "../commands/DeleteEventRuleCommand";
|
|
@@ -12,6 +13,7 @@ import { DisableNotificationsAccessForOrganizationCommandInput, DisableNotificat
|
|
|
12
13
|
import { DisassociateChannelCommandInput, DisassociateChannelCommandOutput } from "../commands/DisassociateChannelCommand";
|
|
13
14
|
import { DisassociateManagedNotificationAccountContactCommandInput, DisassociateManagedNotificationAccountContactCommandOutput } from "../commands/DisassociateManagedNotificationAccountContactCommand";
|
|
14
15
|
import { DisassociateManagedNotificationAdditionalChannelCommandInput, DisassociateManagedNotificationAdditionalChannelCommandOutput } from "../commands/DisassociateManagedNotificationAdditionalChannelCommand";
|
|
16
|
+
import { DisassociateOrganizationalUnitCommandInput, DisassociateOrganizationalUnitCommandOutput } from "../commands/DisassociateOrganizationalUnitCommand";
|
|
15
17
|
import { EnableNotificationsAccessForOrganizationCommandInput, EnableNotificationsAccessForOrganizationCommandOutput } from "../commands/EnableNotificationsAccessForOrganizationCommand";
|
|
16
18
|
import { GetEventRuleCommandInput, GetEventRuleCommandOutput } from "../commands/GetEventRuleCommand";
|
|
17
19
|
import { GetManagedNotificationChildEventCommandInput, GetManagedNotificationChildEventCommandOutput } from "../commands/GetManagedNotificationChildEventCommand";
|
|
@@ -26,9 +28,11 @@ import { ListManagedNotificationChannelAssociationsCommandInput, ListManagedNoti
|
|
|
26
28
|
import { ListManagedNotificationChildEventsCommandInput, ListManagedNotificationChildEventsCommandOutput } from "../commands/ListManagedNotificationChildEventsCommand";
|
|
27
29
|
import { ListManagedNotificationConfigurationsCommandInput, ListManagedNotificationConfigurationsCommandOutput } from "../commands/ListManagedNotificationConfigurationsCommand";
|
|
28
30
|
import { ListManagedNotificationEventsCommandInput, ListManagedNotificationEventsCommandOutput } from "../commands/ListManagedNotificationEventsCommand";
|
|
31
|
+
import { ListMemberAccountsCommandInput, ListMemberAccountsCommandOutput } from "../commands/ListMemberAccountsCommand";
|
|
29
32
|
import { ListNotificationConfigurationsCommandInput, ListNotificationConfigurationsCommandOutput } from "../commands/ListNotificationConfigurationsCommand";
|
|
30
33
|
import { ListNotificationEventsCommandInput, ListNotificationEventsCommandOutput } from "../commands/ListNotificationEventsCommand";
|
|
31
34
|
import { ListNotificationHubsCommandInput, ListNotificationHubsCommandOutput } from "../commands/ListNotificationHubsCommand";
|
|
35
|
+
import { ListOrganizationalUnitsCommandInput, ListOrganizationalUnitsCommandOutput } from "../commands/ListOrganizationalUnitsCommand";
|
|
32
36
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
33
37
|
import { RegisterNotificationHubCommandInput, RegisterNotificationHubCommandOutput } from "../commands/RegisterNotificationHubCommand";
|
|
34
38
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
@@ -47,6 +51,10 @@ export declare const se_AssociateManagedNotificationAccountContactCommand: (inpu
|
|
|
47
51
|
* serializeAws_restJson1AssociateManagedNotificationAdditionalChannelCommand
|
|
48
52
|
*/
|
|
49
53
|
export declare const se_AssociateManagedNotificationAdditionalChannelCommand: (input: AssociateManagedNotificationAdditionalChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
|
+
/**
|
|
55
|
+
* serializeAws_restJson1AssociateOrganizationalUnitCommand
|
|
56
|
+
*/
|
|
57
|
+
export declare const se_AssociateOrganizationalUnitCommand: (input: AssociateOrganizationalUnitCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
58
|
/**
|
|
51
59
|
* serializeAws_restJson1CreateEventRuleCommand
|
|
52
60
|
*/
|
|
@@ -83,6 +91,10 @@ export declare const se_DisassociateManagedNotificationAccountContactCommand: (i
|
|
|
83
91
|
* serializeAws_restJson1DisassociateManagedNotificationAdditionalChannelCommand
|
|
84
92
|
*/
|
|
85
93
|
export declare const se_DisassociateManagedNotificationAdditionalChannelCommand: (input: DisassociateManagedNotificationAdditionalChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
|
+
/**
|
|
95
|
+
* serializeAws_restJson1DisassociateOrganizationalUnitCommand
|
|
96
|
+
*/
|
|
97
|
+
export declare const se_DisassociateOrganizationalUnitCommand: (input: DisassociateOrganizationalUnitCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
86
98
|
/**
|
|
87
99
|
* serializeAws_restJson1EnableNotificationsAccessForOrganizationCommand
|
|
88
100
|
*/
|
|
@@ -139,6 +151,10 @@ export declare const se_ListManagedNotificationConfigurationsCommand: (input: Li
|
|
|
139
151
|
* serializeAws_restJson1ListManagedNotificationEventsCommand
|
|
140
152
|
*/
|
|
141
153
|
export declare const se_ListManagedNotificationEventsCommand: (input: ListManagedNotificationEventsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
154
|
+
/**
|
|
155
|
+
* serializeAws_restJson1ListMemberAccountsCommand
|
|
156
|
+
*/
|
|
157
|
+
export declare const se_ListMemberAccountsCommand: (input: ListMemberAccountsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
142
158
|
/**
|
|
143
159
|
* serializeAws_restJson1ListNotificationConfigurationsCommand
|
|
144
160
|
*/
|
|
@@ -151,6 +167,10 @@ export declare const se_ListNotificationEventsCommand: (input: ListNotificationE
|
|
|
151
167
|
* serializeAws_restJson1ListNotificationHubsCommand
|
|
152
168
|
*/
|
|
153
169
|
export declare const se_ListNotificationHubsCommand: (input: ListNotificationHubsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
170
|
+
/**
|
|
171
|
+
* serializeAws_restJson1ListOrganizationalUnitsCommand
|
|
172
|
+
*/
|
|
173
|
+
export declare const se_ListOrganizationalUnitsCommand: (input: ListOrganizationalUnitsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
154
174
|
/**
|
|
155
175
|
* serializeAws_restJson1ListTagsForResourceCommand
|
|
156
176
|
*/
|
|
@@ -187,6 +207,10 @@ export declare const de_AssociateManagedNotificationAccountContactCommand: (outp
|
|
|
187
207
|
* deserializeAws_restJson1AssociateManagedNotificationAdditionalChannelCommand
|
|
188
208
|
*/
|
|
189
209
|
export declare const de_AssociateManagedNotificationAdditionalChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateManagedNotificationAdditionalChannelCommandOutput>;
|
|
210
|
+
/**
|
|
211
|
+
* deserializeAws_restJson1AssociateOrganizationalUnitCommand
|
|
212
|
+
*/
|
|
213
|
+
export declare const de_AssociateOrganizationalUnitCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateOrganizationalUnitCommandOutput>;
|
|
190
214
|
/**
|
|
191
215
|
* deserializeAws_restJson1CreateEventRuleCommand
|
|
192
216
|
*/
|
|
@@ -223,6 +247,10 @@ export declare const de_DisassociateManagedNotificationAccountContactCommand: (o
|
|
|
223
247
|
* deserializeAws_restJson1DisassociateManagedNotificationAdditionalChannelCommand
|
|
224
248
|
*/
|
|
225
249
|
export declare const de_DisassociateManagedNotificationAdditionalChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateManagedNotificationAdditionalChannelCommandOutput>;
|
|
250
|
+
/**
|
|
251
|
+
* deserializeAws_restJson1DisassociateOrganizationalUnitCommand
|
|
252
|
+
*/
|
|
253
|
+
export declare const de_DisassociateOrganizationalUnitCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateOrganizationalUnitCommandOutput>;
|
|
226
254
|
/**
|
|
227
255
|
* deserializeAws_restJson1EnableNotificationsAccessForOrganizationCommand
|
|
228
256
|
*/
|
|
@@ -279,6 +307,10 @@ export declare const de_ListManagedNotificationConfigurationsCommand: (output: _
|
|
|
279
307
|
* deserializeAws_restJson1ListManagedNotificationEventsCommand
|
|
280
308
|
*/
|
|
281
309
|
export declare const de_ListManagedNotificationEventsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListManagedNotificationEventsCommandOutput>;
|
|
310
|
+
/**
|
|
311
|
+
* deserializeAws_restJson1ListMemberAccountsCommand
|
|
312
|
+
*/
|
|
313
|
+
export declare const de_ListMemberAccountsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListMemberAccountsCommandOutput>;
|
|
282
314
|
/**
|
|
283
315
|
* deserializeAws_restJson1ListNotificationConfigurationsCommand
|
|
284
316
|
*/
|
|
@@ -291,6 +323,10 @@ export declare const de_ListNotificationEventsCommand: (output: __HttpResponse,
|
|
|
291
323
|
* deserializeAws_restJson1ListNotificationHubsCommand
|
|
292
324
|
*/
|
|
293
325
|
export declare const de_ListNotificationHubsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListNotificationHubsCommandOutput>;
|
|
326
|
+
/**
|
|
327
|
+
* deserializeAws_restJson1ListOrganizationalUnitsCommand
|
|
328
|
+
*/
|
|
329
|
+
export declare const de_ListOrganizationalUnitsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOrganizationalUnitsCommandOutput>;
|
|
294
330
|
/**
|
|
295
331
|
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
296
332
|
*/
|
|
@@ -11,6 +11,10 @@ import {
|
|
|
11
11
|
AssociateManagedNotificationAdditionalChannelCommandInput,
|
|
12
12
|
AssociateManagedNotificationAdditionalChannelCommandOutput,
|
|
13
13
|
} from "./commands/AssociateManagedNotificationAdditionalChannelCommand";
|
|
14
|
+
import {
|
|
15
|
+
AssociateOrganizationalUnitCommandInput,
|
|
16
|
+
AssociateOrganizationalUnitCommandOutput,
|
|
17
|
+
} from "./commands/AssociateOrganizationalUnitCommand";
|
|
14
18
|
import {
|
|
15
19
|
CreateEventRuleCommandInput,
|
|
16
20
|
CreateEventRuleCommandOutput,
|
|
@@ -47,6 +51,10 @@ import {
|
|
|
47
51
|
DisassociateManagedNotificationAdditionalChannelCommandInput,
|
|
48
52
|
DisassociateManagedNotificationAdditionalChannelCommandOutput,
|
|
49
53
|
} from "./commands/DisassociateManagedNotificationAdditionalChannelCommand";
|
|
54
|
+
import {
|
|
55
|
+
DisassociateOrganizationalUnitCommandInput,
|
|
56
|
+
DisassociateOrganizationalUnitCommandOutput,
|
|
57
|
+
} from "./commands/DisassociateOrganizationalUnitCommand";
|
|
50
58
|
import {
|
|
51
59
|
EnableNotificationsAccessForOrganizationCommandInput,
|
|
52
60
|
EnableNotificationsAccessForOrganizationCommandOutput,
|
|
@@ -103,6 +111,10 @@ import {
|
|
|
103
111
|
ListManagedNotificationEventsCommandInput,
|
|
104
112
|
ListManagedNotificationEventsCommandOutput,
|
|
105
113
|
} from "./commands/ListManagedNotificationEventsCommand";
|
|
114
|
+
import {
|
|
115
|
+
ListMemberAccountsCommandInput,
|
|
116
|
+
ListMemberAccountsCommandOutput,
|
|
117
|
+
} from "./commands/ListMemberAccountsCommand";
|
|
106
118
|
import {
|
|
107
119
|
ListNotificationConfigurationsCommandInput,
|
|
108
120
|
ListNotificationConfigurationsCommandOutput,
|
|
@@ -115,6 +127,10 @@ import {
|
|
|
115
127
|
ListNotificationHubsCommandInput,
|
|
116
128
|
ListNotificationHubsCommandOutput,
|
|
117
129
|
} from "./commands/ListNotificationHubsCommand";
|
|
130
|
+
import {
|
|
131
|
+
ListOrganizationalUnitsCommandInput,
|
|
132
|
+
ListOrganizationalUnitsCommandOutput,
|
|
133
|
+
} from "./commands/ListOrganizationalUnitsCommand";
|
|
118
134
|
import {
|
|
119
135
|
ListTagsForResourceCommandInput,
|
|
120
136
|
ListTagsForResourceCommandOutput,
|
|
@@ -192,6 +208,19 @@ export interface Notifications {
|
|
|
192
208
|
data?: AssociateManagedNotificationAdditionalChannelCommandOutput
|
|
193
209
|
) => void
|
|
194
210
|
): void;
|
|
211
|
+
associateOrganizationalUnit(
|
|
212
|
+
args: AssociateOrganizationalUnitCommandInput,
|
|
213
|
+
options?: __HttpHandlerOptions
|
|
214
|
+
): Promise<AssociateOrganizationalUnitCommandOutput>;
|
|
215
|
+
associateOrganizationalUnit(
|
|
216
|
+
args: AssociateOrganizationalUnitCommandInput,
|
|
217
|
+
cb: (err: any, data?: AssociateOrganizationalUnitCommandOutput) => void
|
|
218
|
+
): void;
|
|
219
|
+
associateOrganizationalUnit(
|
|
220
|
+
args: AssociateOrganizationalUnitCommandInput,
|
|
221
|
+
options: __HttpHandlerOptions,
|
|
222
|
+
cb: (err: any, data?: AssociateOrganizationalUnitCommandOutput) => void
|
|
223
|
+
): void;
|
|
195
224
|
createEventRule(
|
|
196
225
|
args: CreateEventRuleCommandInput,
|
|
197
226
|
options?: __HttpHandlerOptions
|
|
@@ -328,6 +357,19 @@ export interface Notifications {
|
|
|
328
357
|
data?: DisassociateManagedNotificationAdditionalChannelCommandOutput
|
|
329
358
|
) => void
|
|
330
359
|
): void;
|
|
360
|
+
disassociateOrganizationalUnit(
|
|
361
|
+
args: DisassociateOrganizationalUnitCommandInput,
|
|
362
|
+
options?: __HttpHandlerOptions
|
|
363
|
+
): Promise<DisassociateOrganizationalUnitCommandOutput>;
|
|
364
|
+
disassociateOrganizationalUnit(
|
|
365
|
+
args: DisassociateOrganizationalUnitCommandInput,
|
|
366
|
+
cb: (err: any, data?: DisassociateOrganizationalUnitCommandOutput) => void
|
|
367
|
+
): void;
|
|
368
|
+
disassociateOrganizationalUnit(
|
|
369
|
+
args: DisassociateOrganizationalUnitCommandInput,
|
|
370
|
+
options: __HttpHandlerOptions,
|
|
371
|
+
cb: (err: any, data?: DisassociateOrganizationalUnitCommandOutput) => void
|
|
372
|
+
): void;
|
|
331
373
|
enableNotificationsAccessForOrganization(): Promise<EnableNotificationsAccessForOrganizationCommandOutput>;
|
|
332
374
|
enableNotificationsAccessForOrganization(
|
|
333
375
|
args: EnableNotificationsAccessForOrganizationCommandInput,
|
|
@@ -550,6 +592,19 @@ export interface Notifications {
|
|
|
550
592
|
options: __HttpHandlerOptions,
|
|
551
593
|
cb: (err: any, data?: ListManagedNotificationEventsCommandOutput) => void
|
|
552
594
|
): void;
|
|
595
|
+
listMemberAccounts(
|
|
596
|
+
args: ListMemberAccountsCommandInput,
|
|
597
|
+
options?: __HttpHandlerOptions
|
|
598
|
+
): Promise<ListMemberAccountsCommandOutput>;
|
|
599
|
+
listMemberAccounts(
|
|
600
|
+
args: ListMemberAccountsCommandInput,
|
|
601
|
+
cb: (err: any, data?: ListMemberAccountsCommandOutput) => void
|
|
602
|
+
): void;
|
|
603
|
+
listMemberAccounts(
|
|
604
|
+
args: ListMemberAccountsCommandInput,
|
|
605
|
+
options: __HttpHandlerOptions,
|
|
606
|
+
cb: (err: any, data?: ListMemberAccountsCommandOutput) => void
|
|
607
|
+
): void;
|
|
553
608
|
listNotificationConfigurations(): Promise<ListNotificationConfigurationsCommandOutput>;
|
|
554
609
|
listNotificationConfigurations(
|
|
555
610
|
args: ListNotificationConfigurationsCommandInput,
|
|
@@ -592,6 +647,19 @@ export interface Notifications {
|
|
|
592
647
|
options: __HttpHandlerOptions,
|
|
593
648
|
cb: (err: any, data?: ListNotificationHubsCommandOutput) => void
|
|
594
649
|
): void;
|
|
650
|
+
listOrganizationalUnits(
|
|
651
|
+
args: ListOrganizationalUnitsCommandInput,
|
|
652
|
+
options?: __HttpHandlerOptions
|
|
653
|
+
): Promise<ListOrganizationalUnitsCommandOutput>;
|
|
654
|
+
listOrganizationalUnits(
|
|
655
|
+
args: ListOrganizationalUnitsCommandInput,
|
|
656
|
+
cb: (err: any, data?: ListOrganizationalUnitsCommandOutput) => void
|
|
657
|
+
): void;
|
|
658
|
+
listOrganizationalUnits(
|
|
659
|
+
args: ListOrganizationalUnitsCommandInput,
|
|
660
|
+
options: __HttpHandlerOptions,
|
|
661
|
+
cb: (err: any, data?: ListOrganizationalUnitsCommandOutput) => void
|
|
662
|
+
): void;
|
|
595
663
|
listTagsForResource(
|
|
596
664
|
args: ListTagsForResourceCommandInput,
|
|
597
665
|
options?: __HttpHandlerOptions
|
|
@@ -57,6 +57,10 @@ import {
|
|
|
57
57
|
AssociateManagedNotificationAdditionalChannelCommandInput,
|
|
58
58
|
AssociateManagedNotificationAdditionalChannelCommandOutput,
|
|
59
59
|
} from "./commands/AssociateManagedNotificationAdditionalChannelCommand";
|
|
60
|
+
import {
|
|
61
|
+
AssociateOrganizationalUnitCommandInput,
|
|
62
|
+
AssociateOrganizationalUnitCommandOutput,
|
|
63
|
+
} from "./commands/AssociateOrganizationalUnitCommand";
|
|
60
64
|
import {
|
|
61
65
|
CreateEventRuleCommandInput,
|
|
62
66
|
CreateEventRuleCommandOutput,
|
|
@@ -93,6 +97,10 @@ import {
|
|
|
93
97
|
DisassociateManagedNotificationAdditionalChannelCommandInput,
|
|
94
98
|
DisassociateManagedNotificationAdditionalChannelCommandOutput,
|
|
95
99
|
} from "./commands/DisassociateManagedNotificationAdditionalChannelCommand";
|
|
100
|
+
import {
|
|
101
|
+
DisassociateOrganizationalUnitCommandInput,
|
|
102
|
+
DisassociateOrganizationalUnitCommandOutput,
|
|
103
|
+
} from "./commands/DisassociateOrganizationalUnitCommand";
|
|
96
104
|
import {
|
|
97
105
|
EnableNotificationsAccessForOrganizationCommandInput,
|
|
98
106
|
EnableNotificationsAccessForOrganizationCommandOutput,
|
|
@@ -149,6 +157,10 @@ import {
|
|
|
149
157
|
ListManagedNotificationEventsCommandInput,
|
|
150
158
|
ListManagedNotificationEventsCommandOutput,
|
|
151
159
|
} from "./commands/ListManagedNotificationEventsCommand";
|
|
160
|
+
import {
|
|
161
|
+
ListMemberAccountsCommandInput,
|
|
162
|
+
ListMemberAccountsCommandOutput,
|
|
163
|
+
} from "./commands/ListMemberAccountsCommand";
|
|
152
164
|
import {
|
|
153
165
|
ListNotificationConfigurationsCommandInput,
|
|
154
166
|
ListNotificationConfigurationsCommandOutput,
|
|
@@ -161,6 +173,10 @@ import {
|
|
|
161
173
|
ListNotificationHubsCommandInput,
|
|
162
174
|
ListNotificationHubsCommandOutput,
|
|
163
175
|
} from "./commands/ListNotificationHubsCommand";
|
|
176
|
+
import {
|
|
177
|
+
ListOrganizationalUnitsCommandInput,
|
|
178
|
+
ListOrganizationalUnitsCommandOutput,
|
|
179
|
+
} from "./commands/ListOrganizationalUnitsCommand";
|
|
164
180
|
import {
|
|
165
181
|
ListTagsForResourceCommandInput,
|
|
166
182
|
ListTagsForResourceCommandOutput,
|
|
@@ -196,6 +212,7 @@ export type ServiceInputTypes =
|
|
|
196
212
|
| AssociateChannelCommandInput
|
|
197
213
|
| AssociateManagedNotificationAccountContactCommandInput
|
|
198
214
|
| AssociateManagedNotificationAdditionalChannelCommandInput
|
|
215
|
+
| AssociateOrganizationalUnitCommandInput
|
|
199
216
|
| CreateEventRuleCommandInput
|
|
200
217
|
| CreateNotificationConfigurationCommandInput
|
|
201
218
|
| DeleteEventRuleCommandInput
|
|
@@ -205,6 +222,7 @@ export type ServiceInputTypes =
|
|
|
205
222
|
| DisassociateChannelCommandInput
|
|
206
223
|
| DisassociateManagedNotificationAccountContactCommandInput
|
|
207
224
|
| DisassociateManagedNotificationAdditionalChannelCommandInput
|
|
225
|
+
| DisassociateOrganizationalUnitCommandInput
|
|
208
226
|
| EnableNotificationsAccessForOrganizationCommandInput
|
|
209
227
|
| GetEventRuleCommandInput
|
|
210
228
|
| GetManagedNotificationChildEventCommandInput
|
|
@@ -219,9 +237,11 @@ export type ServiceInputTypes =
|
|
|
219
237
|
| ListManagedNotificationChildEventsCommandInput
|
|
220
238
|
| ListManagedNotificationConfigurationsCommandInput
|
|
221
239
|
| ListManagedNotificationEventsCommandInput
|
|
240
|
+
| ListMemberAccountsCommandInput
|
|
222
241
|
| ListNotificationConfigurationsCommandInput
|
|
223
242
|
| ListNotificationEventsCommandInput
|
|
224
243
|
| ListNotificationHubsCommandInput
|
|
244
|
+
| ListOrganizationalUnitsCommandInput
|
|
225
245
|
| ListTagsForResourceCommandInput
|
|
226
246
|
| RegisterNotificationHubCommandInput
|
|
227
247
|
| TagResourceCommandInput
|
|
@@ -232,6 +252,7 @@ export type ServiceOutputTypes =
|
|
|
232
252
|
| AssociateChannelCommandOutput
|
|
233
253
|
| AssociateManagedNotificationAccountContactCommandOutput
|
|
234
254
|
| AssociateManagedNotificationAdditionalChannelCommandOutput
|
|
255
|
+
| AssociateOrganizationalUnitCommandOutput
|
|
235
256
|
| CreateEventRuleCommandOutput
|
|
236
257
|
| CreateNotificationConfigurationCommandOutput
|
|
237
258
|
| DeleteEventRuleCommandOutput
|
|
@@ -241,6 +262,7 @@ export type ServiceOutputTypes =
|
|
|
241
262
|
| DisassociateChannelCommandOutput
|
|
242
263
|
| DisassociateManagedNotificationAccountContactCommandOutput
|
|
243
264
|
| DisassociateManagedNotificationAdditionalChannelCommandOutput
|
|
265
|
+
| DisassociateOrganizationalUnitCommandOutput
|
|
244
266
|
| EnableNotificationsAccessForOrganizationCommandOutput
|
|
245
267
|
| GetEventRuleCommandOutput
|
|
246
268
|
| GetManagedNotificationChildEventCommandOutput
|
|
@@ -255,9 +277,11 @@ export type ServiceOutputTypes =
|
|
|
255
277
|
| ListManagedNotificationChildEventsCommandOutput
|
|
256
278
|
| ListManagedNotificationConfigurationsCommandOutput
|
|
257
279
|
| ListManagedNotificationEventsCommandOutput
|
|
280
|
+
| ListMemberAccountsCommandOutput
|
|
258
281
|
| ListNotificationConfigurationsCommandOutput
|
|
259
282
|
| ListNotificationEventsCommandOutput
|
|
260
283
|
| ListNotificationHubsCommandOutput
|
|
284
|
+
| ListOrganizationalUnitsCommandOutput
|
|
261
285
|
| ListTagsForResourceCommandOutput
|
|
262
286
|
| RegisterNotificationHubCommandOutput
|
|
263
287
|
| TagResourceCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AssociateOrganizationalUnitRequest,
|
|
5
|
+
AssociateOrganizationalUnitResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
NotificationsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../NotificationsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface AssociateOrganizationalUnitCommandInput
|
|
15
|
+
extends AssociateOrganizationalUnitRequest {}
|
|
16
|
+
export interface AssociateOrganizationalUnitCommandOutput
|
|
17
|
+
extends AssociateOrganizationalUnitResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const AssociateOrganizationalUnitCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: AssociateOrganizationalUnitCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
AssociateOrganizationalUnitCommandInput,
|
|
24
|
+
AssociateOrganizationalUnitCommandOutput,
|
|
25
|
+
NotificationsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: AssociateOrganizationalUnitCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
AssociateOrganizationalUnitCommandInput,
|
|
33
|
+
AssociateOrganizationalUnitCommandOutput,
|
|
34
|
+
NotificationsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class AssociateOrganizationalUnitCommand extends AssociateOrganizationalUnitCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: AssociateOrganizationalUnitRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: AssociateOrganizationalUnitCommandInput;
|
|
48
|
+
output: AssociateOrganizationalUnitCommandOutput;
|
|
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
|
+
DisassociateOrganizationalUnitRequest,
|
|
5
|
+
DisassociateOrganizationalUnitResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
NotificationsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../NotificationsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DisassociateOrganizationalUnitCommandInput
|
|
15
|
+
extends DisassociateOrganizationalUnitRequest {}
|
|
16
|
+
export interface DisassociateOrganizationalUnitCommandOutput
|
|
17
|
+
extends DisassociateOrganizationalUnitResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DisassociateOrganizationalUnitCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DisassociateOrganizationalUnitCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DisassociateOrganizationalUnitCommandInput,
|
|
24
|
+
DisassociateOrganizationalUnitCommandOutput,
|
|
25
|
+
NotificationsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DisassociateOrganizationalUnitCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DisassociateOrganizationalUnitCommandInput,
|
|
33
|
+
DisassociateOrganizationalUnitCommandOutput,
|
|
34
|
+
NotificationsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DisassociateOrganizationalUnitCommand extends DisassociateOrganizationalUnitCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DisassociateOrganizationalUnitRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DisassociateOrganizationalUnitCommandInput;
|
|
48
|
+
output: DisassociateOrganizationalUnitCommandOutput;
|
|
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
|
+
ListMemberAccountsRequest,
|
|
5
|
+
ListMemberAccountsResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
NotificationsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../NotificationsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListMemberAccountsCommandInput
|
|
15
|
+
extends ListMemberAccountsRequest {}
|
|
16
|
+
export interface ListMemberAccountsCommandOutput
|
|
17
|
+
extends ListMemberAccountsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListMemberAccountsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListMemberAccountsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListMemberAccountsCommandInput,
|
|
24
|
+
ListMemberAccountsCommandOutput,
|
|
25
|
+
NotificationsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListMemberAccountsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListMemberAccountsCommandInput,
|
|
33
|
+
ListMemberAccountsCommandOutput,
|
|
34
|
+
NotificationsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListMemberAccountsCommand extends ListMemberAccountsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListMemberAccountsRequest;
|
|
44
|
+
output: ListMemberAccountsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListMemberAccountsCommandInput;
|
|
48
|
+
output: ListMemberAccountsCommandOutput;
|
|
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
|
+
ListOrganizationalUnitsRequest,
|
|
5
|
+
ListOrganizationalUnitsResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
NotificationsClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../NotificationsClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListOrganizationalUnitsCommandInput
|
|
15
|
+
extends ListOrganizationalUnitsRequest {}
|
|
16
|
+
export interface ListOrganizationalUnitsCommandOutput
|
|
17
|
+
extends ListOrganizationalUnitsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListOrganizationalUnitsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListOrganizationalUnitsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListOrganizationalUnitsCommandInput,
|
|
24
|
+
ListOrganizationalUnitsCommandOutput,
|
|
25
|
+
NotificationsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListOrganizationalUnitsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListOrganizationalUnitsCommandInput,
|
|
33
|
+
ListOrganizationalUnitsCommandOutput,
|
|
34
|
+
NotificationsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListOrganizationalUnitsCommand extends ListOrganizationalUnitsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListOrganizationalUnitsRequest;
|
|
44
|
+
output: ListOrganizationalUnitsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListOrganizationalUnitsCommandInput;
|
|
48
|
+
output: ListOrganizationalUnitsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./AssociateChannelCommand";
|
|
2
2
|
export * from "./AssociateManagedNotificationAccountContactCommand";
|
|
3
3
|
export * from "./AssociateManagedNotificationAdditionalChannelCommand";
|
|
4
|
+
export * from "./AssociateOrganizationalUnitCommand";
|
|
4
5
|
export * from "./CreateEventRuleCommand";
|
|
5
6
|
export * from "./CreateNotificationConfigurationCommand";
|
|
6
7
|
export * from "./DeleteEventRuleCommand";
|
|
@@ -10,6 +11,7 @@ export * from "./DisableNotificationsAccessForOrganizationCommand";
|
|
|
10
11
|
export * from "./DisassociateChannelCommand";
|
|
11
12
|
export * from "./DisassociateManagedNotificationAccountContactCommand";
|
|
12
13
|
export * from "./DisassociateManagedNotificationAdditionalChannelCommand";
|
|
14
|
+
export * from "./DisassociateOrganizationalUnitCommand";
|
|
13
15
|
export * from "./EnableNotificationsAccessForOrganizationCommand";
|
|
14
16
|
export * from "./GetEventRuleCommand";
|
|
15
17
|
export * from "./GetManagedNotificationChildEventCommand";
|
|
@@ -24,9 +26,11 @@ export * from "./ListManagedNotificationChannelAssociationsCommand";
|
|
|
24
26
|
export * from "./ListManagedNotificationChildEventsCommand";
|
|
25
27
|
export * from "./ListManagedNotificationConfigurationsCommand";
|
|
26
28
|
export * from "./ListManagedNotificationEventsCommand";
|
|
29
|
+
export * from "./ListMemberAccountsCommand";
|
|
27
30
|
export * from "./ListNotificationConfigurationsCommand";
|
|
28
31
|
export * from "./ListNotificationEventsCommand";
|
|
29
32
|
export * from "./ListNotificationHubsCommand";
|
|
33
|
+
export * from "./ListOrganizationalUnitsCommand";
|
|
30
34
|
export * from "./ListTagsForResourceCommand";
|
|
31
35
|
export * from "./RegisterNotificationHubCommand";
|
|
32
36
|
export * from "./TagResourceCommand";
|