@aws-sdk/client-health 3.169.0 → 3.171.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/Health.d.ts +261 -70
- package/dist-types/ts3.4/HealthClient.d.ts +182 -86
- package/dist-types/ts3.4/commands/DescribeAffectedAccountsForOrganizationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeAffectedEntitiesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeAffectedEntitiesForOrganizationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeEntityAggregatesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeEventAggregatesCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeEventDetailsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeEventDetailsForOrganizationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeEventTypesCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeEventsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeEventsForOrganizationCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeHealthServiceStatusForOrganizationCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DisableHealthServiceAccessForOrganizationCommand.d.ts +33 -16
- package/dist-types/ts3.4/commands/EnableHealthServiceAccessForOrganizationCommand.d.ts +33 -16
- package/dist-types/ts3.4/commands/index.d.ts +13 -13
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/HealthServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +379 -513
- package/dist-types/ts3.4/pagination/DescribeAffectedAccountsForOrganizationPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeAffectedEntitiesForOrganizationPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeAffectedEntitiesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeEventAggregatesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeEventTypesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeEventsForOrganizationPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/DescribeEventsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -6
- package/dist-types/ts3.4/pagination/index.d.ts +8 -8
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +161 -41
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
HealthClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../HealthClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeAffectedAccountsForOrganizationRequest,
|
|
15
|
+
DescribeAffectedAccountsForOrganizationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeAffectedAccountsForOrganizationCommandInput
|
|
18
|
+
extends DescribeAffectedAccountsForOrganizationRequest {}
|
|
19
|
+
export interface DescribeAffectedAccountsForOrganizationCommandOutput
|
|
20
|
+
extends DescribeAffectedAccountsForOrganizationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeAffectedAccountsForOrganizationCommand extends $Command<
|
|
23
|
+
DescribeAffectedAccountsForOrganizationCommandInput,
|
|
24
|
+
DescribeAffectedAccountsForOrganizationCommandOutput,
|
|
25
|
+
HealthClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeAffectedAccountsForOrganizationCommandInput;
|
|
28
|
+
constructor(input: DescribeAffectedAccountsForOrganizationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: HealthClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeAffectedAccountsForOrganizationCommandInput,
|
|
35
|
+
DescribeAffectedAccountsForOrganizationCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
HealthClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../HealthClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeAffectedEntitiesRequest,
|
|
15
|
+
DescribeAffectedEntitiesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeAffectedEntitiesCommandInput
|
|
18
|
+
extends DescribeAffectedEntitiesRequest {}
|
|
19
|
+
export interface DescribeAffectedEntitiesCommandOutput
|
|
20
|
+
extends DescribeAffectedEntitiesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeAffectedEntitiesCommand extends $Command<
|
|
23
|
+
DescribeAffectedEntitiesCommandInput,
|
|
24
|
+
DescribeAffectedEntitiesCommandOutput,
|
|
25
|
+
HealthClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeAffectedEntitiesCommandInput;
|
|
28
|
+
constructor(input: DescribeAffectedEntitiesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: HealthClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeAffectedEntitiesCommandInput,
|
|
35
|
+
DescribeAffectedEntitiesCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
HealthClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../HealthClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeAffectedEntitiesForOrganizationRequest,
|
|
15
|
+
DescribeAffectedEntitiesForOrganizationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeAffectedEntitiesForOrganizationCommandInput
|
|
18
|
+
extends DescribeAffectedEntitiesForOrganizationRequest {}
|
|
19
|
+
export interface DescribeAffectedEntitiesForOrganizationCommandOutput
|
|
20
|
+
extends DescribeAffectedEntitiesForOrganizationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeAffectedEntitiesForOrganizationCommand extends $Command<
|
|
23
|
+
DescribeAffectedEntitiesForOrganizationCommandInput,
|
|
24
|
+
DescribeAffectedEntitiesForOrganizationCommandOutput,
|
|
25
|
+
HealthClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeAffectedEntitiesForOrganizationCommandInput;
|
|
28
|
+
constructor(input: DescribeAffectedEntitiesForOrganizationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: HealthClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeAffectedEntitiesForOrganizationCommandInput,
|
|
35
|
+
DescribeAffectedEntitiesForOrganizationCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
HealthClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../HealthClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeEntityAggregatesRequest,
|
|
15
|
+
DescribeEntityAggregatesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeEntityAggregatesCommandInput
|
|
18
|
+
extends DescribeEntityAggregatesRequest {}
|
|
19
|
+
export interface DescribeEntityAggregatesCommandOutput
|
|
20
|
+
extends DescribeEntityAggregatesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeEntityAggregatesCommand extends $Command<
|
|
23
|
+
DescribeEntityAggregatesCommandInput,
|
|
24
|
+
DescribeEntityAggregatesCommandOutput,
|
|
25
|
+
HealthClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeEntityAggregatesCommandInput;
|
|
28
|
+
constructor(input: DescribeEntityAggregatesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: HealthClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeEntityAggregatesCommandInput,
|
|
35
|
+
DescribeEntityAggregatesCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
HealthClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../HealthClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeEventAggregatesRequest,
|
|
15
|
+
DescribeEventAggregatesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeEventAggregatesCommandInput
|
|
18
|
+
extends DescribeEventAggregatesRequest {}
|
|
19
|
+
export interface DescribeEventAggregatesCommandOutput
|
|
20
|
+
extends DescribeEventAggregatesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeEventAggregatesCommand extends $Command<
|
|
23
|
+
DescribeEventAggregatesCommandInput,
|
|
24
|
+
DescribeEventAggregatesCommandOutput,
|
|
25
|
+
HealthClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeEventAggregatesCommandInput;
|
|
28
|
+
constructor(input: DescribeEventAggregatesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: HealthClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeEventAggregatesCommandInput,
|
|
35
|
+
DescribeEventAggregatesCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
HealthClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../HealthClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeEventDetailsRequest,
|
|
15
|
+
DescribeEventDetailsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeEventDetailsCommandInput
|
|
18
|
+
extends DescribeEventDetailsRequest {}
|
|
19
|
+
export interface DescribeEventDetailsCommandOutput
|
|
20
|
+
extends DescribeEventDetailsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeEventDetailsCommand extends $Command<
|
|
23
|
+
DescribeEventDetailsCommandInput,
|
|
24
|
+
DescribeEventDetailsCommandOutput,
|
|
25
|
+
HealthClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeEventDetailsCommandInput;
|
|
28
|
+
constructor(input: DescribeEventDetailsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: HealthClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeEventDetailsCommandInput,
|
|
35
|
+
DescribeEventDetailsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
HealthClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../HealthClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeEventDetailsForOrganizationRequest,
|
|
15
|
+
DescribeEventDetailsForOrganizationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeEventDetailsForOrganizationCommandInput
|
|
18
|
+
extends DescribeEventDetailsForOrganizationRequest {}
|
|
19
|
+
export interface DescribeEventDetailsForOrganizationCommandOutput
|
|
20
|
+
extends DescribeEventDetailsForOrganizationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeEventDetailsForOrganizationCommand extends $Command<
|
|
23
|
+
DescribeEventDetailsForOrganizationCommandInput,
|
|
24
|
+
DescribeEventDetailsForOrganizationCommandOutput,
|
|
25
|
+
HealthClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeEventDetailsForOrganizationCommandInput;
|
|
28
|
+
constructor(input: DescribeEventDetailsForOrganizationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: HealthClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeEventDetailsForOrganizationCommandInput,
|
|
35
|
+
DescribeEventDetailsForOrganizationCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
HealthClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../HealthClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeEventTypesRequest,
|
|
15
|
+
DescribeEventTypesResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeEventTypesCommandInput
|
|
18
|
+
extends DescribeEventTypesRequest {}
|
|
19
|
+
export interface DescribeEventTypesCommandOutput
|
|
20
|
+
extends DescribeEventTypesResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeEventTypesCommand extends $Command<
|
|
23
|
+
DescribeEventTypesCommandInput,
|
|
24
|
+
DescribeEventTypesCommandOutput,
|
|
25
|
+
HealthClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeEventTypesCommandInput;
|
|
28
|
+
constructor(input: DescribeEventTypesCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: HealthClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DescribeEventTypesCommandInput, DescribeEventTypesCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
HealthClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../HealthClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeEventsRequest,
|
|
15
|
+
DescribeEventsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeEventsCommandInput extends DescribeEventsRequest {}
|
|
18
|
+
export interface DescribeEventsCommandOutput
|
|
19
|
+
extends DescribeEventsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class DescribeEventsCommand extends $Command<
|
|
22
|
+
DescribeEventsCommandInput,
|
|
23
|
+
DescribeEventsCommandOutput,
|
|
24
|
+
HealthClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: DescribeEventsCommandInput;
|
|
27
|
+
constructor(input: DescribeEventsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: HealthClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DescribeEventsCommandInput, DescribeEventsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
HealthClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../HealthClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeEventsForOrganizationRequest,
|
|
15
|
+
DescribeEventsForOrganizationResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeEventsForOrganizationCommandInput
|
|
18
|
+
extends DescribeEventsForOrganizationRequest {}
|
|
19
|
+
export interface DescribeEventsForOrganizationCommandOutput
|
|
20
|
+
extends DescribeEventsForOrganizationResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeEventsForOrganizationCommand extends $Command<
|
|
23
|
+
DescribeEventsForOrganizationCommandInput,
|
|
24
|
+
DescribeEventsForOrganizationCommandOutput,
|
|
25
|
+
HealthClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeEventsForOrganizationCommandInput;
|
|
28
|
+
constructor(input: DescribeEventsForOrganizationCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: HealthClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeEventsForOrganizationCommandInput,
|
|
35
|
+
DescribeEventsForOrganizationCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
HealthClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../HealthClient";
|
|
13
|
+
import { DescribeHealthServiceStatusForOrganizationResponse } from "../models/models_0";
|
|
14
|
+
export interface DescribeHealthServiceStatusForOrganizationCommandInput {}
|
|
15
|
+
export interface DescribeHealthServiceStatusForOrganizationCommandOutput
|
|
16
|
+
extends DescribeHealthServiceStatusForOrganizationResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class DescribeHealthServiceStatusForOrganizationCommand extends $Command<
|
|
19
|
+
DescribeHealthServiceStatusForOrganizationCommandInput,
|
|
20
|
+
DescribeHealthServiceStatusForOrganizationCommandOutput,
|
|
21
|
+
HealthClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DescribeHealthServiceStatusForOrganizationCommandInput;
|
|
24
|
+
constructor(input: DescribeHealthServiceStatusForOrganizationCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: HealthClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<
|
|
30
|
+
DescribeHealthServiceStatusForOrganizationCommandInput,
|
|
31
|
+
DescribeHealthServiceStatusForOrganizationCommandOutput
|
|
32
|
+
>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|