@aws-sdk/client-arc-zonal-shift 3.1086.0 → 3.1088.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-cjs/index.js +1 -1
- package/dist-types/ts3.4/ARCZonalShift.d.ts +49 -69
- package/dist-types/ts3.4/ARCZonalShiftClient.d.ts +6 -16
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CancelPracticeRunCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CancelZonalShiftCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreatePracticeRunConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeletePracticeRunConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetAutoshiftObserverNotificationStatusCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetManagedResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListAutoshiftsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListManagedResourcesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListZonalShiftsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/StartPracticeRunCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StartZonalShiftCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateAutoshiftObserverNotificationStatusCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdatePracticeRunConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateZonalAutoshiftConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateZonalShiftCommand.d.ts +3 -5
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +4 -8
- package/dist-types/ts3.4/models/errors.d.ts +5 -15
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +39 -39
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListAutoshiftsRequest,
|
|
4
|
-
ListAutoshiftsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListAutoshiftsRequest, ListAutoshiftsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListAutoshiftsCommandInput extends ListAutoshiftsRequest {}
|
|
8
|
-
export interface ListAutoshiftsCommandOutput
|
|
9
|
-
extends ListAutoshiftsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListAutoshiftsCommandOutput extends ListAutoshiftsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListAutoshiftsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListAutoshiftsCommandInput
|
|
8
|
+
input: ListAutoshiftsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListAutoshiftsCommandInput,
|
|
16
11
|
ListAutoshiftsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListManagedResourcesRequest,
|
|
4
|
-
ListManagedResourcesResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListManagedResourcesRequest, ListManagedResourcesResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListManagedResourcesCommandInput
|
|
8
|
-
extends ListManagedResourcesRequest {}
|
|
4
|
+
export interface ListManagedResourcesCommandInput extends ListManagedResourcesRequest {}
|
|
9
5
|
export interface ListManagedResourcesCommandOutput
|
|
10
|
-
extends ListManagedResourcesResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListManagedResourcesResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListManagedResourcesCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListManagedResourcesCommandInput
|
|
9
|
+
input: ListManagedResourcesCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListManagedResourcesCommandInput,
|
|
17
12
|
ListManagedResourcesCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListZonalShiftsRequest,
|
|
4
|
-
ListZonalShiftsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListZonalShiftsRequest, ListZonalShiftsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListZonalShiftsCommandInput extends ListZonalShiftsRequest {}
|
|
8
|
-
export interface ListZonalShiftsCommandOutput
|
|
9
|
-
extends ListZonalShiftsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListZonalShiftsCommandOutput extends ListZonalShiftsResponse, __MetadataBearer {}
|
|
11
6
|
declare const ListZonalShiftsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListZonalShiftsCommandInput
|
|
8
|
+
input: ListZonalShiftsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListZonalShiftsCommandInput,
|
|
16
11
|
ListZonalShiftsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartPracticeRunRequest,
|
|
4
|
-
StartPracticeRunResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartPracticeRunRequest, StartPracticeRunResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface StartPracticeRunCommandInput extends StartPracticeRunRequest {}
|
|
8
|
-
export interface StartPracticeRunCommandOutput
|
|
9
|
-
extends StartPracticeRunResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StartPracticeRunCommandOutput extends StartPracticeRunResponse, __MetadataBearer {}
|
|
11
6
|
declare const StartPracticeRunCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: StartPracticeRunCommandInput
|
|
8
|
+
input: StartPracticeRunCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
StartPracticeRunCommandInput,
|
|
16
11
|
StartPracticeRunCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const StartPracticeRunCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: StartPracticeRunCommandInput
|
|
17
|
+
input: StartPracticeRunCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
StartPracticeRunCommandInput,
|
|
25
20
|
StartPracticeRunCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { StartZonalShiftRequest, ZonalShift } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface StartZonalShiftCommandInput extends StartZonalShiftRequest {}
|
|
5
|
-
export interface StartZonalShiftCommandOutput
|
|
6
|
-
extends ZonalShift,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface StartZonalShiftCommandOutput extends ZonalShift, __MetadataBearer {}
|
|
8
6
|
declare const StartZonalShiftCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: StartZonalShiftCommandInput
|
|
8
|
+
input: StartZonalShiftCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
StartZonalShiftCommandInput,
|
|
13
11
|
StartZonalShiftCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const StartZonalShiftCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: StartZonalShiftCommandInput
|
|
17
|
+
input: StartZonalShiftCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
StartZonalShiftCommandInput,
|
|
22
20
|
StartZonalShiftCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
UpdateAutoshiftObserverNotificationStatusResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateAutoshiftObserverNotificationStatusCommandInput
|
|
8
|
-
extends UpdateAutoshiftObserverNotificationStatusRequest {}
|
|
7
|
+
export interface UpdateAutoshiftObserverNotificationStatusCommandInput extends UpdateAutoshiftObserverNotificationStatusRequest {}
|
|
9
8
|
export interface UpdateAutoshiftObserverNotificationStatusCommandOutput
|
|
10
|
-
extends UpdateAutoshiftObserverNotificationStatusResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends UpdateAutoshiftObserverNotificationStatusResponse, __MetadataBearer {}
|
|
12
10
|
declare const UpdateAutoshiftObserverNotificationStatusCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: UpdateAutoshiftObserverNotificationStatusCommandInput
|
|
12
|
+
input: UpdateAutoshiftObserverNotificationStatusCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
UpdateAutoshiftObserverNotificationStatusCommandInput,
|
|
17
15
|
UpdateAutoshiftObserverNotificationStatusCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const UpdateAutoshiftObserverNotificationStatusCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: UpdateAutoshiftObserverNotificationStatusCommandInput
|
|
21
|
+
input: UpdateAutoshiftObserverNotificationStatusCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
UpdateAutoshiftObserverNotificationStatusCommandInput,
|
|
26
24
|
UpdateAutoshiftObserverNotificationStatusCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
UpdatePracticeRunConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdatePracticeRunConfigurationCommandInput
|
|
8
|
-
extends UpdatePracticeRunConfigurationRequest {}
|
|
7
|
+
export interface UpdatePracticeRunConfigurationCommandInput extends UpdatePracticeRunConfigurationRequest {}
|
|
9
8
|
export interface UpdatePracticeRunConfigurationCommandOutput
|
|
10
|
-
extends UpdatePracticeRunConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends UpdatePracticeRunConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const UpdatePracticeRunConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: UpdatePracticeRunConfigurationCommandInput
|
|
12
|
+
input: UpdatePracticeRunConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
UpdatePracticeRunConfigurationCommandInput,
|
|
17
15
|
UpdatePracticeRunConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const UpdatePracticeRunConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: UpdatePracticeRunConfigurationCommandInput
|
|
21
|
+
input: UpdatePracticeRunConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
UpdatePracticeRunConfigurationCommandInput,
|
|
26
24
|
UpdatePracticeRunConfigurationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
UpdateZonalAutoshiftConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateZonalAutoshiftConfigurationCommandInput
|
|
8
|
-
extends UpdateZonalAutoshiftConfigurationRequest {}
|
|
7
|
+
export interface UpdateZonalAutoshiftConfigurationCommandInput extends UpdateZonalAutoshiftConfigurationRequest {}
|
|
9
8
|
export interface UpdateZonalAutoshiftConfigurationCommandOutput
|
|
10
|
-
extends UpdateZonalAutoshiftConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends UpdateZonalAutoshiftConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const UpdateZonalAutoshiftConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: UpdateZonalAutoshiftConfigurationCommandInput
|
|
12
|
+
input: UpdateZonalAutoshiftConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
UpdateZonalAutoshiftConfigurationCommandInput,
|
|
17
15
|
UpdateZonalAutoshiftConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const UpdateZonalAutoshiftConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: UpdateZonalAutoshiftConfigurationCommandInput
|
|
21
|
+
input: UpdateZonalAutoshiftConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
UpdateZonalAutoshiftConfigurationCommandInput,
|
|
26
24
|
UpdateZonalAutoshiftConfigurationCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { UpdateZonalShiftRequest, ZonalShift } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface UpdateZonalShiftCommandInput extends UpdateZonalShiftRequest {}
|
|
5
|
-
export interface UpdateZonalShiftCommandOutput
|
|
6
|
-
extends ZonalShift,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateZonalShiftCommandOutput extends ZonalShift, __MetadataBearer {}
|
|
8
6
|
declare const UpdateZonalShiftCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: UpdateZonalShiftCommandInput
|
|
8
|
+
input: UpdateZonalShiftCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
UpdateZonalShiftCommandInput,
|
|
13
11
|
UpdateZonalShiftCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const UpdateZonalShiftCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: UpdateZonalShiftCommandInput
|
|
17
|
+
input: UpdateZonalShiftCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
UpdateZonalShiftCommandInput,
|
|
22
20
|
UpdateZonalShiftCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface ARCZonalShiftExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -43,15 +43,13 @@ export type AutoshiftObserverNotificationStatus =
|
|
|
43
43
|
export declare const ControlConditionType: {
|
|
44
44
|
readonly CLOUDWATCH: "CLOUDWATCH";
|
|
45
45
|
};
|
|
46
|
-
export type ControlConditionType =
|
|
47
|
-
(typeof ControlConditionType)[keyof typeof ControlConditionType];
|
|
46
|
+
export type ControlConditionType = (typeof ControlConditionType)[keyof typeof ControlConditionType];
|
|
48
47
|
export declare const ZonalShiftStatus: {
|
|
49
48
|
readonly ACTIVE: "ACTIVE";
|
|
50
49
|
readonly CANCELED: "CANCELED";
|
|
51
50
|
readonly EXPIRED: "EXPIRED";
|
|
52
51
|
};
|
|
53
|
-
export type ZonalShiftStatus =
|
|
54
|
-
(typeof ZonalShiftStatus)[keyof typeof ZonalShiftStatus];
|
|
52
|
+
export type ZonalShiftStatus = (typeof ZonalShiftStatus)[keyof typeof ZonalShiftStatus];
|
|
55
53
|
export declare const ConflictExceptionReason: {
|
|
56
54
|
readonly AUTOSHIFT_ENABLED: "AutoShiftEnabled";
|
|
57
55
|
readonly PRACTICE_BLOCKING_ALARMS_RED: "PracticeBlockingAlarmsRed";
|
|
@@ -72,8 +70,7 @@ export declare const ZonalAutoshiftStatus: {
|
|
|
72
70
|
readonly DISABLED: "DISABLED";
|
|
73
71
|
readonly ENABLED: "ENABLED";
|
|
74
72
|
};
|
|
75
|
-
export type ZonalAutoshiftStatus =
|
|
76
|
-
(typeof ZonalAutoshiftStatus)[keyof typeof ZonalAutoshiftStatus];
|
|
73
|
+
export type ZonalAutoshiftStatus = (typeof ZonalAutoshiftStatus)[keyof typeof ZonalAutoshiftStatus];
|
|
77
74
|
export declare const PracticeRunOutcome: {
|
|
78
75
|
readonly CAPACITY_CHECK_FAILED: "CAPACITY_CHECK_FAILED";
|
|
79
76
|
readonly FAILED: "FAILED";
|
|
@@ -81,8 +78,7 @@ export declare const PracticeRunOutcome: {
|
|
|
81
78
|
readonly PENDING: "PENDING";
|
|
82
79
|
readonly SUCCEEDED: "SUCCEEDED";
|
|
83
80
|
};
|
|
84
|
-
export type PracticeRunOutcome =
|
|
85
|
-
(typeof PracticeRunOutcome)[keyof typeof PracticeRunOutcome];
|
|
81
|
+
export type PracticeRunOutcome = (typeof PracticeRunOutcome)[keyof typeof PracticeRunOutcome];
|
|
86
82
|
export declare const ShiftType: {
|
|
87
83
|
readonly FIS_EXPERIMENT: "FIS_EXPERIMENT";
|
|
88
84
|
readonly PRACTICE_RUN: "PRACTICE_RUN";
|
|
@@ -4,31 +4,23 @@ import { ConflictExceptionReason, ValidationExceptionReason } from "./enums";
|
|
|
4
4
|
export declare class AccessDeniedException extends __BaseException {
|
|
5
5
|
readonly name: "AccessDeniedException";
|
|
6
6
|
readonly $fault: "client";
|
|
7
|
-
constructor(
|
|
8
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
-
);
|
|
7
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
10
8
|
}
|
|
11
9
|
export declare class InternalServerException extends __BaseException {
|
|
12
10
|
readonly name: "InternalServerException";
|
|
13
11
|
readonly $fault: "server";
|
|
14
|
-
constructor(
|
|
15
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
16
|
-
);
|
|
12
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
17
13
|
}
|
|
18
14
|
export declare class ThrottlingException extends __BaseException {
|
|
19
15
|
readonly name: "ThrottlingException";
|
|
20
16
|
readonly $fault: "client";
|
|
21
|
-
constructor(
|
|
22
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
23
|
-
);
|
|
17
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
24
18
|
}
|
|
25
19
|
export declare class ValidationException extends __BaseException {
|
|
26
20
|
readonly name: "ValidationException";
|
|
27
21
|
readonly $fault: "client";
|
|
28
22
|
reason: ValidationExceptionReason | undefined;
|
|
29
|
-
constructor(
|
|
30
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
31
|
-
);
|
|
23
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
32
24
|
}
|
|
33
25
|
export declare class ConflictException extends __BaseException {
|
|
34
26
|
readonly name: "ConflictException";
|
|
@@ -40,7 +32,5 @@ export declare class ConflictException extends __BaseException {
|
|
|
40
32
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
41
33
|
readonly name: "ResourceNotFoundException";
|
|
42
34
|
readonly $fault: "client";
|
|
43
|
-
constructor(
|
|
44
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
45
|
-
);
|
|
35
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
46
36
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { ARCZonalShiftClient } from "../ARCZonalShiftClient";
|
|
3
|
-
export interface ARCZonalShiftPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface ARCZonalShiftPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: ARCZonalShiftClient;
|
|
6
5
|
}
|
|
@@ -8,24 +8,16 @@ export declare const getRuntimeConfig: (config: ARCZonalShiftClientConfig) => {
|
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
9
|
credentialDefaultProvider:
|
|
10
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
-
| ((
|
|
12
|
-
_: unknown
|
|
13
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
12
|
defaultUserAgentProvider: (
|
|
15
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
16
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
-
requestHandler:
|
|
20
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
21
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
22
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
19
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
21
|
) => Promise<Uint8Array>;
|
|
30
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
31
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -53,13 +45,8 @@ export declare const getRuntimeConfig: (config: ARCZonalShiftClientConfig) => {
|
|
|
53
45
|
logger: import("@smithy/types").Logger;
|
|
54
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
userAgentAppId?:
|
|
57
|
-
|
|
58
|
-
| undefined
|
|
59
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
60
|
-
retryStrategy?:
|
|
61
|
-
| import("@smithy/types").RetryStrategy
|
|
62
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
63
50
|
endpoint?:
|
|
64
51
|
| ((
|
|
65
52
|
| string
|
|
@@ -81,7 +68,7 @@ export declare const getRuntimeConfig: (config: ARCZonalShiftClientConfig) => {
|
|
|
81
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
82
69
|
context?: {
|
|
83
70
|
logger?: import("@smithy/types").Logger;
|
|
84
|
-
}
|
|
71
|
+
},
|
|
85
72
|
) => import("@smithy/types").EndpointV2;
|
|
86
73
|
tls?: boolean;
|
|
87
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -94,13 +81,13 @@ export declare const getRuntimeConfig: (config: ARCZonalShiftClientConfig) => {
|
|
|
94
81
|
signer?:
|
|
95
82
|
| import("@smithy/types").RequestSigner
|
|
96
83
|
| ((
|
|
97
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
98
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
99
86
|
signingEscapePath?: boolean;
|
|
100
87
|
systemClockOffset?: number;
|
|
101
88
|
signingRegion?: string;
|
|
102
89
|
signerConstructor?: new (
|
|
103
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
104
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
105
92
|
) => import("@smithy/types").RequestSigner;
|
|
106
93
|
};
|
|
@@ -10,23 +10,17 @@ export declare const getRuntimeConfig: (config: ARCZonalShiftClientConfig) => {
|
|
|
10
10
|
credentialDefaultProvider:
|
|
11
11
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
12
12
|
| ((
|
|
13
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
14
14
|
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
15
15
|
defaultUserAgentProvider: (
|
|
16
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
17
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
18
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
19
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
20
|
-
requestHandler:
|
|
21
|
-
| RequestHandler
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
23
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
24
22
|
streamCollector: (
|
|
25
|
-
stream:
|
|
26
|
-
| import("stream").Readable
|
|
27
|
-
| import("stream/web").ReadableStream
|
|
28
|
-
| ReadableStream
|
|
29
|
-
| Blob
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
30
24
|
) => Promise<Uint8Array>;
|
|
31
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
32
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -53,9 +47,7 @@ export declare const getRuntimeConfig: (config: ARCZonalShiftClientConfig) => {
|
|
|
53
47
|
logger: import("@smithy/types").Logger;
|
|
54
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
55
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
56
|
-
retryStrategy?:
|
|
57
|
-
| import("@smithy/types").RetryStrategy
|
|
58
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
59
51
|
endpoint?:
|
|
60
52
|
| ((
|
|
61
53
|
| string
|
|
@@ -77,7 +69,7 @@ export declare const getRuntimeConfig: (config: ARCZonalShiftClientConfig) => {
|
|
|
77
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
78
70
|
context?: {
|
|
79
71
|
logger?: import("@smithy/types").Logger;
|
|
80
|
-
}
|
|
72
|
+
},
|
|
81
73
|
) => import("@smithy/types").EndpointV2;
|
|
82
74
|
tls?: boolean;
|
|
83
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -89,13 +81,13 @@ export declare const getRuntimeConfig: (config: ARCZonalShiftClientConfig) => {
|
|
|
89
81
|
signer?:
|
|
90
82
|
| import("@smithy/types").RequestSigner
|
|
91
83
|
| ((
|
|
92
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
93
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
94
86
|
signingEscapePath?: boolean;
|
|
95
87
|
systemClockOffset?: number;
|
|
96
88
|
signingRegion?: string;
|
|
97
89
|
signerConstructor?: new (
|
|
98
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
99
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
100
92
|
) => import("@smithy/types").RequestSigner;
|
|
101
93
|
};
|
|
@@ -21,11 +21,7 @@ export declare const getRuntimeConfig: (config: ARCZonalShiftClientConfig) => {
|
|
|
21
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
22
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
23
23
|
streamCollector: (
|
|
24
|
-
stream:
|
|
25
|
-
| import("stream").Readable
|
|
26
|
-
| import("stream/web").ReadableStream
|
|
27
|
-
| ReadableStream
|
|
28
|
-
| Blob
|
|
24
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
29
25
|
) => Promise<Uint8Array>;
|
|
30
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
31
27
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -40,30 +36,21 @@ export declare const getRuntimeConfig: (config: ARCZonalShiftClientConfig) => {
|
|
|
40
36
|
region: string | import("@smithy/types").Provider<any>;
|
|
41
37
|
profile?: string;
|
|
42
38
|
defaultUserAgentProvider: (
|
|
43
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
39
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
44
40
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
45
41
|
credentialDefaultProvider:
|
|
46
42
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
47
|
-
| ((
|
|
48
|
-
_: unknown
|
|
49
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
43
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
50
44
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
51
45
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
52
46
|
logger: import("@smithy/types").Logger;
|
|
53
47
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
54
48
|
defaultsMode:
|
|
55
49
|
| import("@smithy/core/client").DefaultsMode
|
|
56
|
-
| import("@smithy/types").Provider<
|
|
57
|
-
import("@smithy/core/client").DefaultsMode
|
|
58
|
-
>;
|
|
50
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
59
51
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
60
|
-
userAgentAppId?:
|
|
61
|
-
|
|
62
|
-
| undefined
|
|
63
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
64
|
-
retryStrategy?:
|
|
65
|
-
| import("@smithy/types").RetryStrategy
|
|
66
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
52
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
67
54
|
endpoint?:
|
|
68
55
|
| ((
|
|
69
56
|
| string
|
|
@@ -85,7 +72,7 @@ export declare const getRuntimeConfig: (config: ARCZonalShiftClientConfig) => {
|
|
|
85
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
86
73
|
context?: {
|
|
87
74
|
logger?: import("@smithy/types").Logger;
|
|
88
|
-
}
|
|
75
|
+
},
|
|
89
76
|
) => import("@smithy/types").EndpointV2;
|
|
90
77
|
tls?: boolean;
|
|
91
78
|
serviceConfiguredEndpoint?: never;
|
|
@@ -98,13 +85,13 @@ export declare const getRuntimeConfig: (config: ARCZonalShiftClientConfig) => {
|
|
|
98
85
|
signer?:
|
|
99
86
|
| import("@smithy/types").RequestSigner
|
|
100
87
|
| ((
|
|
101
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
88
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
102
89
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
103
90
|
signingEscapePath?: boolean;
|
|
104
91
|
systemClockOffset?: number;
|
|
105
92
|
signingRegion?: string;
|
|
106
93
|
signerConstructor?: new (
|
|
107
94
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
108
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
95
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
109
96
|
) => import("@smithy/types").RequestSigner;
|
|
110
97
|
};
|
|
@@ -9,7 +9,7 @@ export declare const getRuntimeConfig: (config: ARCZonalShiftClientConfig) => {
|
|
|
9
9
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
10
10
|
context?: {
|
|
11
11
|
logger?: import("@smithy/types").Logger;
|
|
12
|
-
}
|
|
12
|
+
},
|
|
13
13
|
) => import("@smithy/types").EndpointV2;
|
|
14
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
15
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").ARCZonalShiftHttpAuthSchemeProvider;
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
-
import {
|
|
3
|
-
StaticErrorSchema,
|
|
4
|
-
StaticOperationSchema,
|
|
5
|
-
StaticStructureSchema,
|
|
6
|
-
} from "@smithy/types";
|
|
2
|
+
import { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
7
3
|
export declare var ARCZonalShiftServiceException$: StaticErrorSchema;
|
|
8
4
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
9
5
|
export declare var ConflictException$: StaticErrorSchema;
|