@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,16 +1,33 @@
|
|
|
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
|
+
export declare class DisableHealthServiceAccessForOrganizationCommand extends $Command<
|
|
17
|
+
DisableHealthServiceAccessForOrganizationCommandInput,
|
|
18
|
+
DisableHealthServiceAccessForOrganizationCommandOutput,
|
|
19
|
+
HealthClientResolvedConfig
|
|
20
|
+
> {
|
|
21
|
+
readonly input: DisableHealthServiceAccessForOrganizationCommandInput;
|
|
22
|
+
constructor(input: DisableHealthServiceAccessForOrganizationCommandInput);
|
|
23
|
+
resolveMiddleware(
|
|
24
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
25
|
+
configuration: HealthClientResolvedConfig,
|
|
26
|
+
options?: __HttpHandlerOptions
|
|
27
|
+
): Handler<
|
|
28
|
+
DisableHealthServiceAccessForOrganizationCommandInput,
|
|
29
|
+
DisableHealthServiceAccessForOrganizationCommandOutput
|
|
30
|
+
>;
|
|
31
|
+
private serialize;
|
|
32
|
+
private deserialize;
|
|
33
|
+
}
|
|
@@ -1,16 +1,33 @@
|
|
|
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
|
+
export declare class EnableHealthServiceAccessForOrganizationCommand extends $Command<
|
|
17
|
+
EnableHealthServiceAccessForOrganizationCommandInput,
|
|
18
|
+
EnableHealthServiceAccessForOrganizationCommandOutput,
|
|
19
|
+
HealthClientResolvedConfig
|
|
20
|
+
> {
|
|
21
|
+
readonly input: EnableHealthServiceAccessForOrganizationCommandInput;
|
|
22
|
+
constructor(input: EnableHealthServiceAccessForOrganizationCommandInput);
|
|
23
|
+
resolveMiddleware(
|
|
24
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
25
|
+
configuration: HealthClientResolvedConfig,
|
|
26
|
+
options?: __HttpHandlerOptions
|
|
27
|
+
): Handler<
|
|
28
|
+
EnableHealthServiceAccessForOrganizationCommandInput,
|
|
29
|
+
EnableHealthServiceAccessForOrganizationCommandOutput
|
|
30
|
+
>;
|
|
31
|
+
private serialize;
|
|
32
|
+
private deserialize;
|
|
33
|
+
}
|
|
@@ -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,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class HealthServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|