@aws-sdk/client-health 3.169.0 → 3.170.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 +8 -0
- package/dist-types/ts3.4/Health.d.ts +274 -70
- package/dist-types/ts3.4/HealthClient.d.ts +207 -86
- package/dist-types/ts3.4/commands/DescribeAffectedAccountsForOrganizationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeAffectedEntitiesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeAffectedEntitiesForOrganizationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeEntityAggregatesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeEventAggregatesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeEventDetailsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeEventDetailsForOrganizationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeEventTypesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeEventsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeEventsForOrganizationCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeHealthServiceStatusForOrganizationCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DisableHealthServiceAccessForOrganizationCommand.d.ts +35 -16
- package/dist-types/ts3.4/commands/EnableHealthServiceAccessForOrganizationCommand.d.ts +35 -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 +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +549 -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 +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
|
|
23
|
+
export declare class DescribeEventDetailsCommand extends $Command<
|
|
24
|
+
DescribeEventDetailsCommandInput,
|
|
25
|
+
DescribeEventDetailsCommandOutput,
|
|
26
|
+
HealthClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeEventDetailsCommandInput;
|
|
29
|
+
constructor(input: DescribeEventDetailsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: HealthClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeEventDetailsCommandInput,
|
|
37
|
+
DescribeEventDetailsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
|
|
23
|
+
export declare class DescribeEventDetailsForOrganizationCommand extends $Command<
|
|
24
|
+
DescribeEventDetailsForOrganizationCommandInput,
|
|
25
|
+
DescribeEventDetailsForOrganizationCommandOutput,
|
|
26
|
+
HealthClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeEventDetailsForOrganizationCommandInput;
|
|
29
|
+
constructor(input: DescribeEventDetailsForOrganizationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: HealthClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeEventDetailsForOrganizationCommandInput,
|
|
37
|
+
DescribeEventDetailsForOrganizationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
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
|
+
|
|
23
|
+
export declare class DescribeEventTypesCommand extends $Command<
|
|
24
|
+
DescribeEventTypesCommandInput,
|
|
25
|
+
DescribeEventTypesCommandOutput,
|
|
26
|
+
HealthClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeEventTypesCommandInput;
|
|
29
|
+
constructor(input: DescribeEventTypesCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: HealthClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<DescribeEventTypesCommandInput, DescribeEventTypesCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
|
|
22
|
+
export declare class DescribeEventsCommand extends $Command<
|
|
23
|
+
DescribeEventsCommandInput,
|
|
24
|
+
DescribeEventsCommandOutput,
|
|
25
|
+
HealthClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeEventsCommandInput;
|
|
28
|
+
constructor(input: DescribeEventsCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: HealthClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DescribeEventsCommandInput, DescribeEventsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
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
|
+
|
|
23
|
+
export declare class DescribeEventsForOrganizationCommand extends $Command<
|
|
24
|
+
DescribeEventsForOrganizationCommandInput,
|
|
25
|
+
DescribeEventsForOrganizationCommandOutput,
|
|
26
|
+
HealthClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DescribeEventsForOrganizationCommandInput;
|
|
29
|
+
constructor(input: DescribeEventsForOrganizationCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: HealthClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DescribeEventsForOrganizationCommandInput,
|
|
37
|
+
DescribeEventsForOrganizationCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
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
|
+
|
|
19
|
+
export declare class DescribeHealthServiceStatusForOrganizationCommand extends $Command<
|
|
20
|
+
DescribeHealthServiceStatusForOrganizationCommandInput,
|
|
21
|
+
DescribeHealthServiceStatusForOrganizationCommandOutput,
|
|
22
|
+
HealthClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DescribeHealthServiceStatusForOrganizationCommandInput;
|
|
25
|
+
constructor(input: DescribeHealthServiceStatusForOrganizationCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: HealthClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<
|
|
32
|
+
DescribeHealthServiceStatusForOrganizationCommandInput,
|
|
33
|
+
DescribeHealthServiceStatusForOrganizationCommandOutput
|
|
34
|
+
>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,16 +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
|
-
|
|
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
|
+
export interface DisableHealthServiceAccessForOrganizationCommandInput {}
|
|
14
|
+
export interface DisableHealthServiceAccessForOrganizationCommandOutput
|
|
15
|
+
extends __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class DisableHealthServiceAccessForOrganizationCommand extends $Command<
|
|
18
|
+
DisableHealthServiceAccessForOrganizationCommandInput,
|
|
19
|
+
DisableHealthServiceAccessForOrganizationCommandOutput,
|
|
20
|
+
HealthClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: DisableHealthServiceAccessForOrganizationCommandInput;
|
|
23
|
+
constructor(input: DisableHealthServiceAccessForOrganizationCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: HealthClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<
|
|
30
|
+
DisableHealthServiceAccessForOrganizationCommandInput,
|
|
31
|
+
DisableHealthServiceAccessForOrganizationCommandOutput
|
|
32
|
+
>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,16 +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
|
-
|
|
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
|
+
export interface EnableHealthServiceAccessForOrganizationCommandInput {}
|
|
14
|
+
export interface EnableHealthServiceAccessForOrganizationCommandOutput
|
|
15
|
+
extends __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class EnableHealthServiceAccessForOrganizationCommand extends $Command<
|
|
18
|
+
EnableHealthServiceAccessForOrganizationCommandInput,
|
|
19
|
+
EnableHealthServiceAccessForOrganizationCommandOutput,
|
|
20
|
+
HealthClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: EnableHealthServiceAccessForOrganizationCommandInput;
|
|
23
|
+
constructor(input: EnableHealthServiceAccessForOrganizationCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: HealthClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<
|
|
30
|
+
EnableHealthServiceAccessForOrganizationCommandInput,
|
|
31
|
+
EnableHealthServiceAccessForOrganizationCommandOutput
|
|
32
|
+
>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
export * from "./DescribeAffectedAccountsForOrganizationCommand";
|
|
2
|
-
export * from "./DescribeAffectedEntitiesCommand";
|
|
3
|
-
export * from "./DescribeAffectedEntitiesForOrganizationCommand";
|
|
4
|
-
export * from "./DescribeEntityAggregatesCommand";
|
|
5
|
-
export * from "./DescribeEventAggregatesCommand";
|
|
6
|
-
export * from "./DescribeEventDetailsCommand";
|
|
7
|
-
export * from "./DescribeEventDetailsForOrganizationCommand";
|
|
8
|
-
export * from "./DescribeEventTypesCommand";
|
|
9
|
-
export * from "./DescribeEventsCommand";
|
|
10
|
-
export * from "./DescribeEventsForOrganizationCommand";
|
|
11
|
-
export * from "./DescribeHealthServiceStatusForOrganizationCommand";
|
|
12
|
-
export * from "./DisableHealthServiceAccessForOrganizationCommand";
|
|
13
|
-
export * from "./EnableHealthServiceAccessForOrganizationCommand";
|
|
1
|
+
export * from "./DescribeAffectedAccountsForOrganizationCommand";
|
|
2
|
+
export * from "./DescribeAffectedEntitiesCommand";
|
|
3
|
+
export * from "./DescribeAffectedEntitiesForOrganizationCommand";
|
|
4
|
+
export * from "./DescribeEntityAggregatesCommand";
|
|
5
|
+
export * from "./DescribeEventAggregatesCommand";
|
|
6
|
+
export * from "./DescribeEventDetailsCommand";
|
|
7
|
+
export * from "./DescribeEventDetailsForOrganizationCommand";
|
|
8
|
+
export * from "./DescribeEventTypesCommand";
|
|
9
|
+
export * from "./DescribeEventsCommand";
|
|
10
|
+
export * from "./DescribeEventsForOrganizationCommand";
|
|
11
|
+
export * from "./DescribeHealthServiceStatusForOrganizationCommand";
|
|
12
|
+
export * from "./DisableHealthServiceAccessForOrganizationCommand";
|
|
13
|
+
export * from "./EnableHealthServiceAccessForOrganizationCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./Health";
|
|
2
|
-
export * from "./HealthClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { HealthServiceException } from "./models/HealthServiceException";
|
|
1
|
+
export * from "./Health";
|
|
2
|
+
export * from "./HealthClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { HealthServiceException } from "./models/HealthServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class HealthServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|