@aws-sdk/client-arc-zonal-shift 3.614.0 → 3.616.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 +39 -16
- package/dist-cjs/index.js +100 -5
- package/dist-es/ARCZonalShift.js +4 -0
- package/dist-es/ARCZonalShiftClient.js +5 -5
- package/dist-es/commands/GetAutoshiftObserverNotificationStatusCommand.js +24 -0
- package/dist-es/commands/UpdateAutoshiftObserverNotificationStatusCommand.js +24 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +49 -0
- package/dist-types/ARCZonalShift.d.ts +38 -16
- package/dist-types/ARCZonalShiftClient.d.ts +29 -20
- package/dist-types/commands/CreatePracticeRunConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/GetAutoshiftObserverNotificationStatusCommand.d.ts +77 -0
- package/dist-types/commands/ListAutoshiftsCommand.d.ts +4 -1
- package/dist-types/commands/ListZonalShiftsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAutoshiftObserverNotificationStatusCommand.d.ts +82 -0
- package/dist-types/commands/UpdateZonalAutoshiftConfigurationCommand.d.ts +8 -4
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/index.d.ts +23 -16
- package/dist-types/models/models_0.d.ts +100 -39
- package/dist-types/protocols/Aws_restJson1.d.ts +18 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/ARCZonalShift.d.ts +47 -0
- package/dist-types/ts3.4/ARCZonalShiftClient.d.ts +14 -2
- package/dist-types/ts3.4/commands/GetAutoshiftObserverNotificationStatusCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/UpdateAutoshiftObserverNotificationStatusCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +16 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +17 -17
|
@@ -80,6 +80,22 @@ export interface AutoshiftInResource {
|
|
|
80
80
|
awayFrom: string | undefined;
|
|
81
81
|
startTime: Date | undefined;
|
|
82
82
|
}
|
|
83
|
+
export interface GetAutoshiftObserverNotificationStatusRequest {}
|
|
84
|
+
export declare const AutoshiftObserverNotificationStatus: {
|
|
85
|
+
readonly DISABLED: "DISABLED";
|
|
86
|
+
readonly ENABLED: "ENABLED";
|
|
87
|
+
};
|
|
88
|
+
export type AutoshiftObserverNotificationStatus =
|
|
89
|
+
(typeof AutoshiftObserverNotificationStatus)[keyof typeof AutoshiftObserverNotificationStatus];
|
|
90
|
+
export interface GetAutoshiftObserverNotificationStatusResponse {
|
|
91
|
+
status: AutoshiftObserverNotificationStatus | undefined;
|
|
92
|
+
}
|
|
93
|
+
export interface UpdateAutoshiftObserverNotificationStatusRequest {
|
|
94
|
+
status: AutoshiftObserverNotificationStatus | undefined;
|
|
95
|
+
}
|
|
96
|
+
export interface UpdateAutoshiftObserverNotificationStatusResponse {
|
|
97
|
+
status: AutoshiftObserverNotificationStatus | undefined;
|
|
98
|
+
}
|
|
83
99
|
export interface CancelZonalShiftRequest {
|
|
84
100
|
zonalShiftId: string | undefined;
|
|
85
101
|
}
|
|
@@ -15,6 +15,10 @@ import {
|
|
|
15
15
|
DeletePracticeRunConfigurationCommandInput,
|
|
16
16
|
DeletePracticeRunConfigurationCommandOutput,
|
|
17
17
|
} from "../commands/DeletePracticeRunConfigurationCommand";
|
|
18
|
+
import {
|
|
19
|
+
GetAutoshiftObserverNotificationStatusCommandInput,
|
|
20
|
+
GetAutoshiftObserverNotificationStatusCommandOutput,
|
|
21
|
+
} from "../commands/GetAutoshiftObserverNotificationStatusCommand";
|
|
18
22
|
import {
|
|
19
23
|
GetManagedResourceCommandInput,
|
|
20
24
|
GetManagedResourceCommandOutput,
|
|
@@ -35,6 +39,10 @@ import {
|
|
|
35
39
|
StartZonalShiftCommandInput,
|
|
36
40
|
StartZonalShiftCommandOutput,
|
|
37
41
|
} from "../commands/StartZonalShiftCommand";
|
|
42
|
+
import {
|
|
43
|
+
UpdateAutoshiftObserverNotificationStatusCommandInput,
|
|
44
|
+
UpdateAutoshiftObserverNotificationStatusCommandOutput,
|
|
45
|
+
} from "../commands/UpdateAutoshiftObserverNotificationStatusCommand";
|
|
38
46
|
import {
|
|
39
47
|
UpdatePracticeRunConfigurationCommandInput,
|
|
40
48
|
UpdatePracticeRunConfigurationCommandOutput,
|
|
@@ -59,6 +67,10 @@ export declare const se_DeletePracticeRunConfigurationCommand: (
|
|
|
59
67
|
input: DeletePracticeRunConfigurationCommandInput,
|
|
60
68
|
context: __SerdeContext
|
|
61
69
|
) => Promise<__HttpRequest>;
|
|
70
|
+
export declare const se_GetAutoshiftObserverNotificationStatusCommand: (
|
|
71
|
+
input: GetAutoshiftObserverNotificationStatusCommandInput,
|
|
72
|
+
context: __SerdeContext
|
|
73
|
+
) => Promise<__HttpRequest>;
|
|
62
74
|
export declare const se_GetManagedResourceCommand: (
|
|
63
75
|
input: GetManagedResourceCommandInput,
|
|
64
76
|
context: __SerdeContext
|
|
@@ -79,6 +91,10 @@ export declare const se_StartZonalShiftCommand: (
|
|
|
79
91
|
input: StartZonalShiftCommandInput,
|
|
80
92
|
context: __SerdeContext
|
|
81
93
|
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const se_UpdateAutoshiftObserverNotificationStatusCommand: (
|
|
95
|
+
input: UpdateAutoshiftObserverNotificationStatusCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
82
98
|
export declare const se_UpdatePracticeRunConfigurationCommand: (
|
|
83
99
|
input: UpdatePracticeRunConfigurationCommandInput,
|
|
84
100
|
context: __SerdeContext
|
|
@@ -103,6 +119,10 @@ export declare const de_DeletePracticeRunConfigurationCommand: (
|
|
|
103
119
|
output: __HttpResponse,
|
|
104
120
|
context: __SerdeContext
|
|
105
121
|
) => Promise<DeletePracticeRunConfigurationCommandOutput>;
|
|
122
|
+
export declare const de_GetAutoshiftObserverNotificationStatusCommand: (
|
|
123
|
+
output: __HttpResponse,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<GetAutoshiftObserverNotificationStatusCommandOutput>;
|
|
106
126
|
export declare const de_GetManagedResourceCommand: (
|
|
107
127
|
output: __HttpResponse,
|
|
108
128
|
context: __SerdeContext
|
|
@@ -123,6 +143,10 @@ export declare const de_StartZonalShiftCommand: (
|
|
|
123
143
|
output: __HttpResponse,
|
|
124
144
|
context: __SerdeContext
|
|
125
145
|
) => Promise<StartZonalShiftCommandOutput>;
|
|
146
|
+
export declare const de_UpdateAutoshiftObserverNotificationStatusCommand: (
|
|
147
|
+
output: __HttpResponse,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<UpdateAutoshiftObserverNotificationStatusCommandOutput>;
|
|
126
150
|
export declare const de_UpdatePracticeRunConfigurationCommand: (
|
|
127
151
|
output: __HttpResponse,
|
|
128
152
|
context: __SerdeContext
|
|
@@ -56,11 +56,11 @@ export declare const getRuntimeConfig: (config: ARCZonalShiftClientConfig) => {
|
|
|
56
56
|
}
|
|
57
57
|
) => import("@smithy/types").EndpointV2;
|
|
58
58
|
tls?: boolean | undefined;
|
|
59
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
59
60
|
retryStrategy?:
|
|
60
61
|
| import("@smithy/types").RetryStrategy
|
|
61
62
|
| import("@smithy/types").RetryStrategyV2
|
|
62
63
|
| undefined;
|
|
63
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
64
64
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
65
65
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ARCZonalShiftHttpAuthSchemeProvider;
|
|
66
66
|
credentials?:
|
|
@@ -60,11 +60,11 @@ export declare const getRuntimeConfig: (config: ARCZonalShiftClientConfig) => {
|
|
|
60
60
|
}
|
|
61
61
|
) => import("@smithy/types").EndpointV2;
|
|
62
62
|
tls?: boolean | undefined;
|
|
63
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
63
64
|
retryStrategy?:
|
|
64
65
|
| import("@smithy/types").RetryStrategy
|
|
65
66
|
| import("@smithy/types").RetryStrategyV2
|
|
66
67
|
| undefined;
|
|
67
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
68
68
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
69
69
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ARCZonalShiftHttpAuthSchemeProvider;
|
|
70
70
|
credentials?:
|
|
@@ -50,11 +50,11 @@ export declare const getRuntimeConfig: (config: ARCZonalShiftClientConfig) => {
|
|
|
50
50
|
}
|
|
51
51
|
) => import("@smithy/types").EndpointV2;
|
|
52
52
|
tls?: boolean | undefined;
|
|
53
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
53
54
|
retryStrategy?:
|
|
54
55
|
| import("@smithy/types").RetryStrategy
|
|
55
56
|
| import("@smithy/types").RetryStrategyV2
|
|
56
57
|
| undefined;
|
|
57
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
58
58
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
59
59
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ARCZonalShiftHttpAuthSchemeProvider;
|
|
60
60
|
credentials?:
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-arc-zonal-shift",
|
|
3
3
|
"description": "AWS SDK for JavaScript Arc Zonal Shift Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.616.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-arc-zonal-shift",
|
|
@@ -20,40 +20,40 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.616.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.616.0",
|
|
25
|
+
"@aws-sdk/core": "3.616.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.616.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.616.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.609.0",
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.616.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.616.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.614.0",
|
|
32
32
|
"@aws-sdk/types": "3.609.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.614.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.609.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.614.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.5",
|
|
37
|
-
"@smithy/core": "^2.2.
|
|
38
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
37
|
+
"@smithy/core": "^2.2.7",
|
|
38
|
+
"@smithy/fetch-http-handler": "^3.2.2",
|
|
39
39
|
"@smithy/hash-node": "^3.0.3",
|
|
40
40
|
"@smithy/invalid-dependency": "^3.0.3",
|
|
41
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
41
|
+
"@smithy/middleware-content-length": "^3.0.4",
|
|
42
42
|
"@smithy/middleware-endpoint": "^3.0.5",
|
|
43
|
-
"@smithy/middleware-retry": "^3.0.
|
|
43
|
+
"@smithy/middleware-retry": "^3.0.10",
|
|
44
44
|
"@smithy/middleware-serde": "^3.0.3",
|
|
45
45
|
"@smithy/middleware-stack": "^3.0.3",
|
|
46
46
|
"@smithy/node-config-provider": "^3.1.4",
|
|
47
|
-
"@smithy/node-http-handler": "^3.1.
|
|
48
|
-
"@smithy/protocol-http": "^4.0.
|
|
49
|
-
"@smithy/smithy-client": "^3.1.
|
|
47
|
+
"@smithy/node-http-handler": "^3.1.3",
|
|
48
|
+
"@smithy/protocol-http": "^4.0.4",
|
|
49
|
+
"@smithy/smithy-client": "^3.1.8",
|
|
50
50
|
"@smithy/types": "^3.3.0",
|
|
51
51
|
"@smithy/url-parser": "^3.0.3",
|
|
52
52
|
"@smithy/util-base64": "^3.0.0",
|
|
53
53
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
54
54
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^3.0.10",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^3.0.10",
|
|
57
57
|
"@smithy/util-endpoints": "^2.0.5",
|
|
58
58
|
"@smithy/util-middleware": "^3.0.3",
|
|
59
59
|
"@smithy/util-retry": "^3.0.3",
|