@aws-sdk/client-health 3.888.0 → 3.891.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/dist-types/commands/DescribeAffectedAccountsForOrganizationCommand.d.ts +2 -0
- package/dist-types/commands/DescribeAffectedEntitiesCommand.d.ts +2 -0
- package/dist-types/commands/DescribeAffectedEntitiesForOrganizationCommand.d.ts +2 -0
- package/dist-types/commands/DescribeEntityAggregatesCommand.d.ts +2 -0
- package/dist-types/commands/DescribeEntityAggregatesForOrganizationCommand.d.ts +2 -0
- package/dist-types/commands/DescribeEventAggregatesCommand.d.ts +2 -0
- package/dist-types/commands/DescribeEventDetailsCommand.d.ts +2 -0
- package/dist-types/commands/DescribeEventDetailsForOrganizationCommand.d.ts +2 -0
- package/dist-types/commands/DescribeEventTypesCommand.d.ts +2 -0
- package/dist-types/commands/DescribeEventsCommand.d.ts +2 -0
- package/dist-types/commands/DescribeEventsForOrganizationCommand.d.ts +2 -0
- package/dist-types/commands/DescribeHealthServiceStatusForOrganizationCommand.d.ts +2 -0
- package/dist-types/commands/DisableHealthServiceAccessForOrganizationCommand.d.ts +2 -0
- package/dist-types/commands/EnableHealthServiceAccessForOrganizationCommand.d.ts +2 -0
- package/package.json +19 -19
|
@@ -41,6 +41,8 @@ declare const DescribeAffectedAccountsForOrganizationCommand_base: {
|
|
|
41
41
|
* ```javascript
|
|
42
42
|
* import { HealthClient, DescribeAffectedAccountsForOrganizationCommand } from "@aws-sdk/client-health"; // ES Modules import
|
|
43
43
|
* // const { HealthClient, DescribeAffectedAccountsForOrganizationCommand } = require("@aws-sdk/client-health"); // CommonJS import
|
|
44
|
+
* // import type { HealthClientConfig } from "@aws-sdk/client-health";
|
|
45
|
+
* const config = {}; // type is HealthClientConfig
|
|
44
46
|
* const client = new HealthClient(config);
|
|
45
47
|
* const input = { // DescribeAffectedAccountsForOrganizationRequest
|
|
46
48
|
* eventArn: "STRING_VALUE", // required
|
|
@@ -49,6 +49,8 @@ declare const DescribeAffectedEntitiesCommand_base: {
|
|
|
49
49
|
* ```javascript
|
|
50
50
|
* import { HealthClient, DescribeAffectedEntitiesCommand } from "@aws-sdk/client-health"; // ES Modules import
|
|
51
51
|
* // const { HealthClient, DescribeAffectedEntitiesCommand } = require("@aws-sdk/client-health"); // CommonJS import
|
|
52
|
+
* // import type { HealthClientConfig } from "@aws-sdk/client-health";
|
|
53
|
+
* const config = {}; // type is HealthClientConfig
|
|
52
54
|
* const client = new HealthClient(config);
|
|
53
55
|
* const input = { // DescribeAffectedEntitiesRequest
|
|
54
56
|
* filter: { // EntityFilter
|
|
@@ -51,6 +51,8 @@ declare const DescribeAffectedEntitiesForOrganizationCommand_base: {
|
|
|
51
51
|
* ```javascript
|
|
52
52
|
* import { HealthClient, DescribeAffectedEntitiesForOrganizationCommand } from "@aws-sdk/client-health"; // ES Modules import
|
|
53
53
|
* // const { HealthClient, DescribeAffectedEntitiesForOrganizationCommand } = require("@aws-sdk/client-health"); // CommonJS import
|
|
54
|
+
* // import type { HealthClientConfig } from "@aws-sdk/client-health";
|
|
55
|
+
* const config = {}; // type is HealthClientConfig
|
|
54
56
|
* const client = new HealthClient(config);
|
|
55
57
|
* const input = { // DescribeAffectedEntitiesForOrganizationRequest
|
|
56
58
|
* organizationEntityFilters: [ // OrganizationEntityFiltersList
|
|
@@ -33,6 +33,8 @@ declare const DescribeEntityAggregatesCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { HealthClient, DescribeEntityAggregatesCommand } from "@aws-sdk/client-health"; // ES Modules import
|
|
35
35
|
* // const { HealthClient, DescribeEntityAggregatesCommand } = require("@aws-sdk/client-health"); // CommonJS import
|
|
36
|
+
* // import type { HealthClientConfig } from "@aws-sdk/client-health";
|
|
37
|
+
* const config = {}; // type is HealthClientConfig
|
|
36
38
|
* const client = new HealthClient(config);
|
|
37
39
|
* const input = { // DescribeEntityAggregatesRequest
|
|
38
40
|
* eventArns: [ // EventArnsList
|
|
@@ -33,6 +33,8 @@ declare const DescribeEntityAggregatesForOrganizationCommand_base: {
|
|
|
33
33
|
* ```javascript
|
|
34
34
|
* import { HealthClient, DescribeEntityAggregatesForOrganizationCommand } from "@aws-sdk/client-health"; // ES Modules import
|
|
35
35
|
* // const { HealthClient, DescribeEntityAggregatesForOrganizationCommand } = require("@aws-sdk/client-health"); // CommonJS import
|
|
36
|
+
* // import type { HealthClientConfig } from "@aws-sdk/client-health";
|
|
37
|
+
* const config = {}; // type is HealthClientConfig
|
|
36
38
|
* const client = new HealthClient(config);
|
|
37
39
|
* const input = { // DescribeEntityAggregatesForOrganizationRequest
|
|
38
40
|
* eventArns: [ // OrganizationEventArnsList // required
|
|
@@ -38,6 +38,8 @@ declare const DescribeEventAggregatesCommand_base: {
|
|
|
38
38
|
* ```javascript
|
|
39
39
|
* import { HealthClient, DescribeEventAggregatesCommand } from "@aws-sdk/client-health"; // ES Modules import
|
|
40
40
|
* // const { HealthClient, DescribeEventAggregatesCommand } = require("@aws-sdk/client-health"); // CommonJS import
|
|
41
|
+
* // import type { HealthClientConfig } from "@aws-sdk/client-health";
|
|
42
|
+
* const config = {}; // type is HealthClientConfig
|
|
41
43
|
* const client = new HealthClient(config);
|
|
42
44
|
* const input = { // DescribeEventAggregatesRequest
|
|
43
45
|
* filter: { // EventFilter
|
|
@@ -42,6 +42,8 @@ declare const DescribeEventDetailsCommand_base: {
|
|
|
42
42
|
* ```javascript
|
|
43
43
|
* import { HealthClient, DescribeEventDetailsCommand } from "@aws-sdk/client-health"; // ES Modules import
|
|
44
44
|
* // const { HealthClient, DescribeEventDetailsCommand } = require("@aws-sdk/client-health"); // CommonJS import
|
|
45
|
+
* // import type { HealthClientConfig } from "@aws-sdk/client-health";
|
|
46
|
+
* const config = {}; // type is HealthClientConfig
|
|
45
47
|
* const client = new HealthClient(config);
|
|
46
48
|
* const input = { // DescribeEventDetailsRequest
|
|
47
49
|
* eventArns: [ // eventArnList // required
|
|
@@ -64,6 +64,8 @@ declare const DescribeEventDetailsForOrganizationCommand_base: {
|
|
|
64
64
|
* ```javascript
|
|
65
65
|
* import { HealthClient, DescribeEventDetailsForOrganizationCommand } from "@aws-sdk/client-health"; // ES Modules import
|
|
66
66
|
* // const { HealthClient, DescribeEventDetailsForOrganizationCommand } = require("@aws-sdk/client-health"); // CommonJS import
|
|
67
|
+
* // import type { HealthClientConfig } from "@aws-sdk/client-health";
|
|
68
|
+
* const config = {}; // type is HealthClientConfig
|
|
67
69
|
* const client = new HealthClient(config);
|
|
68
70
|
* const input = { // DescribeEventDetailsForOrganizationRequest
|
|
69
71
|
* organizationEventDetailFilters: [ // OrganizationEventDetailFiltersList // required
|
|
@@ -39,6 +39,8 @@ declare const DescribeEventTypesCommand_base: {
|
|
|
39
39
|
* ```javascript
|
|
40
40
|
* import { HealthClient, DescribeEventTypesCommand } from "@aws-sdk/client-health"; // ES Modules import
|
|
41
41
|
* // const { HealthClient, DescribeEventTypesCommand } = require("@aws-sdk/client-health"); // CommonJS import
|
|
42
|
+
* // import type { HealthClientConfig } from "@aws-sdk/client-health";
|
|
43
|
+
* const config = {}; // type is HealthClientConfig
|
|
42
44
|
* const client = new HealthClient(config);
|
|
43
45
|
* const input = { // DescribeEventTypesRequest
|
|
44
46
|
* filter: { // EventTypeFilter
|
|
@@ -55,6 +55,8 @@ declare const DescribeEventsCommand_base: {
|
|
|
55
55
|
* ```javascript
|
|
56
56
|
* import { HealthClient, DescribeEventsCommand } from "@aws-sdk/client-health"; // ES Modules import
|
|
57
57
|
* // const { HealthClient, DescribeEventsCommand } = require("@aws-sdk/client-health"); // CommonJS import
|
|
58
|
+
* // import type { HealthClientConfig } from "@aws-sdk/client-health";
|
|
59
|
+
* const config = {}; // type is HealthClientConfig
|
|
58
60
|
* const client = new HealthClient(config);
|
|
59
61
|
* const input = { // DescribeEventsRequest
|
|
60
62
|
* filter: { // EventFilter
|
|
@@ -64,6 +64,8 @@ declare const DescribeEventsForOrganizationCommand_base: {
|
|
|
64
64
|
* ```javascript
|
|
65
65
|
* import { HealthClient, DescribeEventsForOrganizationCommand } from "@aws-sdk/client-health"; // ES Modules import
|
|
66
66
|
* // const { HealthClient, DescribeEventsForOrganizationCommand } = require("@aws-sdk/client-health"); // CommonJS import
|
|
67
|
+
* // import type { HealthClientConfig } from "@aws-sdk/client-health";
|
|
68
|
+
* const config = {}; // type is HealthClientConfig
|
|
67
69
|
* const client = new HealthClient(config);
|
|
68
70
|
* const input = { // DescribeEventsForOrganizationRequest
|
|
69
71
|
* filter: { // OrganizationEventFilter
|
|
@@ -35,6 +35,8 @@ declare const DescribeHealthServiceStatusForOrganizationCommand_base: {
|
|
|
35
35
|
* ```javascript
|
|
36
36
|
* import { HealthClient, DescribeHealthServiceStatusForOrganizationCommand } from "@aws-sdk/client-health"; // ES Modules import
|
|
37
37
|
* // const { HealthClient, DescribeHealthServiceStatusForOrganizationCommand } = require("@aws-sdk/client-health"); // CommonJS import
|
|
38
|
+
* // import type { HealthClientConfig } from "@aws-sdk/client-health";
|
|
39
|
+
* const config = {}; // type is HealthClientConfig
|
|
38
40
|
* const client = new HealthClient(config);
|
|
39
41
|
* const input = {};
|
|
40
42
|
* const command = new DescribeHealthServiceStatusForOrganizationCommand(input);
|
|
@@ -45,6 +45,8 @@ declare const DisableHealthServiceAccessForOrganizationCommand_base: {
|
|
|
45
45
|
* ```javascript
|
|
46
46
|
* import { HealthClient, DisableHealthServiceAccessForOrganizationCommand } from "@aws-sdk/client-health"; // ES Modules import
|
|
47
47
|
* // const { HealthClient, DisableHealthServiceAccessForOrganizationCommand } = require("@aws-sdk/client-health"); // CommonJS import
|
|
48
|
+
* // import type { HealthClientConfig } from "@aws-sdk/client-health";
|
|
49
|
+
* const config = {}; // type is HealthClientConfig
|
|
48
50
|
* const client = new HealthClient(config);
|
|
49
51
|
* const input = {};
|
|
50
52
|
* const command = new DisableHealthServiceAccessForOrganizationCommand(input);
|
|
@@ -54,6 +54,8 @@ declare const EnableHealthServiceAccessForOrganizationCommand_base: {
|
|
|
54
54
|
* ```javascript
|
|
55
55
|
* import { HealthClient, EnableHealthServiceAccessForOrganizationCommand } from "@aws-sdk/client-health"; // ES Modules import
|
|
56
56
|
* // const { HealthClient, EnableHealthServiceAccessForOrganizationCommand } = require("@aws-sdk/client-health"); // CommonJS import
|
|
57
|
+
* // import type { HealthClientConfig } from "@aws-sdk/client-health";
|
|
58
|
+
* const config = {}; // type is HealthClientConfig
|
|
57
59
|
* const client = new HealthClient(config);
|
|
58
60
|
* const input = {};
|
|
59
61
|
* const command = new EnableHealthServiceAccessForOrganizationCommand(input);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-health",
|
|
3
3
|
"description": "AWS SDK for JavaScript Health Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.891.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-health",
|
|
@@ -20,41 +20,41 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
23
|
+
"@aws-sdk/core": "3.890.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.891.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.891.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.891.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.891.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.891.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.890.0",
|
|
30
30
|
"@aws-sdk/types": "3.887.0",
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.891.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.887.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.2.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.891.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.2.2",
|
|
35
35
|
"@smithy/core": "^3.11.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
37
37
|
"@smithy/hash-node": "^4.1.1",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
41
|
-
"@smithy/middleware-retry": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.2.2",
|
|
41
|
+
"@smithy/middleware-retry": "^4.2.3",
|
|
42
42
|
"@smithy/middleware-serde": "^4.1.1",
|
|
43
43
|
"@smithy/middleware-stack": "^4.1.1",
|
|
44
|
-
"@smithy/node-config-provider": "^4.2.
|
|
44
|
+
"@smithy/node-config-provider": "^4.2.2",
|
|
45
45
|
"@smithy/node-http-handler": "^4.2.1",
|
|
46
46
|
"@smithy/protocol-http": "^5.2.1",
|
|
47
|
-
"@smithy/smithy-client": "^4.6.
|
|
47
|
+
"@smithy/smithy-client": "^4.6.2",
|
|
48
48
|
"@smithy/types": "^4.5.0",
|
|
49
49
|
"@smithy/url-parser": "^4.1.1",
|
|
50
50
|
"@smithy/util-base64": "^4.1.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
55
|
-
"@smithy/util-endpoints": "^3.1.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.1.2",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.1.2",
|
|
55
|
+
"@smithy/util-endpoints": "^3.1.2",
|
|
56
56
|
"@smithy/util-middleware": "^4.1.1",
|
|
57
|
-
"@smithy/util-retry": "^4.1.
|
|
57
|
+
"@smithy/util-retry": "^4.1.2",
|
|
58
58
|
"@smithy/util-utf8": "^4.1.0",
|
|
59
59
|
"tslib": "^2.6.2"
|
|
60
60
|
},
|