@aws-sdk/client-arc-zonal-shift 3.219.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/LICENSE +201 -0
- package/README.md +219 -0
- package/dist-cjs/ARCZonalShift.js +97 -0
- package/dist-cjs/ARCZonalShiftClient.js +40 -0
- package/dist-cjs/commands/CancelZonalShiftCommand.js +46 -0
- package/dist-cjs/commands/GetManagedResourceCommand.js +46 -0
- package/dist-cjs/commands/ListManagedResourcesCommand.js +46 -0
- package/dist-cjs/commands/ListZonalShiftsCommand.js +46 -0
- package/dist-cjs/commands/StartZonalShiftCommand.js +46 -0
- package/dist-cjs/commands/UpdateZonalShiftCommand.js +46 -0
- package/dist-cjs/commands/index.js +9 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +312 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/ARCZonalShiftServiceException.js +11 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +164 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListManagedResourcesPaginator.js +36 -0
- package/dist-cjs/pagination/ListZonalShiftsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +6 -0
- package/dist-cjs/protocols/Aws_restJson1.js +703 -0
- package/dist-cjs/runtimeConfig.browser.js +42 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +18 -0
- package/dist-es/ARCZonalShift.js +93 -0
- package/dist-es/ARCZonalShiftClient.js +36 -0
- package/dist-es/commands/CancelZonalShiftCommand.js +42 -0
- package/dist-es/commands/GetManagedResourceCommand.js +42 -0
- package/dist-es/commands/ListManagedResourcesCommand.js +42 -0
- package/dist-es/commands/ListZonalShiftsCommand.js +42 -0
- package/dist-es/commands/StartZonalShiftCommand.js +42 -0
- package/dist-es/commands/UpdateZonalShiftCommand.js +42 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +309 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/ARCZonalShiftServiceException.js +7 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +142 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListManagedResourcesPaginator.js +32 -0
- package/dist-es/pagination/ListZonalShiftsPaginator.js +32 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +688 -0
- package/dist-es/runtimeConfig.browser.js +37 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +14 -0
- package/dist-types/ARCZonalShift.d.ts +77 -0
- package/dist-types/ARCZonalShiftClient.d.ts +161 -0
- package/dist-types/commands/CancelZonalShiftCommand.d.ts +37 -0
- package/dist-types/commands/GetManagedResourceCommand.d.ts +39 -0
- package/dist-types/commands/ListManagedResourcesCommand.d.ts +39 -0
- package/dist-types/commands/ListZonalShiftsCommand.d.ts +37 -0
- package/dist-types/commands/StartZonalShiftCommand.d.ts +46 -0
- package/dist-types/commands/UpdateZonalShiftCommand.d.ts +38 -0
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/index.d.ts +6 -0
- package/dist-types/models/ARCZonalShiftServiceException.d.ts +10 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +503 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListManagedResourcesPaginator.d.ts +4 -0
- package/dist-types/pagination/ListZonalShiftsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +20 -0
- package/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/dist-types/runtimeConfig.d.ts +42 -0
- package/dist-types/runtimeConfig.native.d.ts +41 -0
- package/dist-types/runtimeConfig.shared.d.ts +16 -0
- package/dist-types/ts3.4/ARCZonalShift.d.ts +106 -0
- package/dist-types/ts3.4/ARCZonalShiftClient.d.ts +148 -0
- package/dist-types/ts3.4/commands/CancelZonalShiftCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/GetManagedResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListManagedResourcesCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListZonalShiftsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/StartZonalShiftCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UpdateZonalShiftCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/ARCZonalShiftServiceException.d.ts +7 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +177 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
- package/dist-types/ts3.4/pagination/ListManagedResourcesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListZonalShiftsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +77 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +77 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +16 -0
- package/package.json +101 -0
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { ARCZonalShiftClientConfig } from "./ARCZonalShiftClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: ARCZonalShiftClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
13
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
14
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
|
|
15
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
16
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
apiVersion: string;
|
|
23
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
24
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
25
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
logger: import("@aws-sdk/types").Logger;
|
|
28
|
+
serviceId: string;
|
|
29
|
+
endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
32
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
33
|
+
tls?: boolean | undefined;
|
|
34
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
35
|
+
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
|
|
36
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
37
|
+
signingEscapePath?: boolean | undefined;
|
|
38
|
+
systemClockOffset?: number | undefined;
|
|
39
|
+
signingRegion?: string | undefined;
|
|
40
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
41
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
42
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { ARCZonalShiftClientConfig } from "./ARCZonalShiftClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: ARCZonalShiftClientConfig) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
8
|
+
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
|
+
apiVersion: string;
|
|
10
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
15
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
16
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
17
|
+
disableHostPrefix: boolean;
|
|
18
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
19
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
20
|
+
logger: import("@aws-sdk/types").Logger;
|
|
21
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
22
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
23
|
+
serviceId: string;
|
|
24
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
25
|
+
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
27
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
28
|
+
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> | undefined;
|
|
29
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
30
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
31
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
32
|
+
tls?: boolean | undefined;
|
|
33
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
34
|
+
credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
|
|
35
|
+
signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
|
|
36
|
+
signingEscapePath?: boolean | undefined;
|
|
37
|
+
systemClockOffset?: number | undefined;
|
|
38
|
+
signingRegion?: string | undefined;
|
|
39
|
+
signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
|
|
40
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
41
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ARCZonalShiftClientConfig } from "./ARCZonalShiftClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: ARCZonalShiftClientConfig) => {
|
|
6
|
+
apiVersion: string;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
+
disableHostPrefix: boolean;
|
|
10
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
|
+
logger?: import("@aws-sdk/types").Logger | undefined;
|
|
12
|
+
}) => import("@aws-sdk/types").EndpointV2;
|
|
13
|
+
logger: import("@aws-sdk/types").Logger;
|
|
14
|
+
serviceId: string;
|
|
15
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
16
|
+
};
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import { ARCZonalShiftClient } from "./ARCZonalShiftClient";
|
|
3
|
+
import {
|
|
4
|
+
CancelZonalShiftCommandInput,
|
|
5
|
+
CancelZonalShiftCommandOutput,
|
|
6
|
+
} from "./commands/CancelZonalShiftCommand";
|
|
7
|
+
import {
|
|
8
|
+
GetManagedResourceCommandInput,
|
|
9
|
+
GetManagedResourceCommandOutput,
|
|
10
|
+
} from "./commands/GetManagedResourceCommand";
|
|
11
|
+
import {
|
|
12
|
+
ListManagedResourcesCommandInput,
|
|
13
|
+
ListManagedResourcesCommandOutput,
|
|
14
|
+
} from "./commands/ListManagedResourcesCommand";
|
|
15
|
+
import {
|
|
16
|
+
ListZonalShiftsCommandInput,
|
|
17
|
+
ListZonalShiftsCommandOutput,
|
|
18
|
+
} from "./commands/ListZonalShiftsCommand";
|
|
19
|
+
import {
|
|
20
|
+
StartZonalShiftCommandInput,
|
|
21
|
+
StartZonalShiftCommandOutput,
|
|
22
|
+
} from "./commands/StartZonalShiftCommand";
|
|
23
|
+
import {
|
|
24
|
+
UpdateZonalShiftCommandInput,
|
|
25
|
+
UpdateZonalShiftCommandOutput,
|
|
26
|
+
} from "./commands/UpdateZonalShiftCommand";
|
|
27
|
+
export declare class ARCZonalShift extends ARCZonalShiftClient {
|
|
28
|
+
cancelZonalShift(
|
|
29
|
+
args: CancelZonalShiftCommandInput,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Promise<CancelZonalShiftCommandOutput>;
|
|
32
|
+
cancelZonalShift(
|
|
33
|
+
args: CancelZonalShiftCommandInput,
|
|
34
|
+
cb: (err: any, data?: CancelZonalShiftCommandOutput) => void
|
|
35
|
+
): void;
|
|
36
|
+
cancelZonalShift(
|
|
37
|
+
args: CancelZonalShiftCommandInput,
|
|
38
|
+
options: __HttpHandlerOptions,
|
|
39
|
+
cb: (err: any, data?: CancelZonalShiftCommandOutput) => void
|
|
40
|
+
): void;
|
|
41
|
+
getManagedResource(
|
|
42
|
+
args: GetManagedResourceCommandInput,
|
|
43
|
+
options?: __HttpHandlerOptions
|
|
44
|
+
): Promise<GetManagedResourceCommandOutput>;
|
|
45
|
+
getManagedResource(
|
|
46
|
+
args: GetManagedResourceCommandInput,
|
|
47
|
+
cb: (err: any, data?: GetManagedResourceCommandOutput) => void
|
|
48
|
+
): void;
|
|
49
|
+
getManagedResource(
|
|
50
|
+
args: GetManagedResourceCommandInput,
|
|
51
|
+
options: __HttpHandlerOptions,
|
|
52
|
+
cb: (err: any, data?: GetManagedResourceCommandOutput) => void
|
|
53
|
+
): void;
|
|
54
|
+
listManagedResources(
|
|
55
|
+
args: ListManagedResourcesCommandInput,
|
|
56
|
+
options?: __HttpHandlerOptions
|
|
57
|
+
): Promise<ListManagedResourcesCommandOutput>;
|
|
58
|
+
listManagedResources(
|
|
59
|
+
args: ListManagedResourcesCommandInput,
|
|
60
|
+
cb: (err: any, data?: ListManagedResourcesCommandOutput) => void
|
|
61
|
+
): void;
|
|
62
|
+
listManagedResources(
|
|
63
|
+
args: ListManagedResourcesCommandInput,
|
|
64
|
+
options: __HttpHandlerOptions,
|
|
65
|
+
cb: (err: any, data?: ListManagedResourcesCommandOutput) => void
|
|
66
|
+
): void;
|
|
67
|
+
listZonalShifts(
|
|
68
|
+
args: ListZonalShiftsCommandInput,
|
|
69
|
+
options?: __HttpHandlerOptions
|
|
70
|
+
): Promise<ListZonalShiftsCommandOutput>;
|
|
71
|
+
listZonalShifts(
|
|
72
|
+
args: ListZonalShiftsCommandInput,
|
|
73
|
+
cb: (err: any, data?: ListZonalShiftsCommandOutput) => void
|
|
74
|
+
): void;
|
|
75
|
+
listZonalShifts(
|
|
76
|
+
args: ListZonalShiftsCommandInput,
|
|
77
|
+
options: __HttpHandlerOptions,
|
|
78
|
+
cb: (err: any, data?: ListZonalShiftsCommandOutput) => void
|
|
79
|
+
): void;
|
|
80
|
+
startZonalShift(
|
|
81
|
+
args: StartZonalShiftCommandInput,
|
|
82
|
+
options?: __HttpHandlerOptions
|
|
83
|
+
): Promise<StartZonalShiftCommandOutput>;
|
|
84
|
+
startZonalShift(
|
|
85
|
+
args: StartZonalShiftCommandInput,
|
|
86
|
+
cb: (err: any, data?: StartZonalShiftCommandOutput) => void
|
|
87
|
+
): void;
|
|
88
|
+
startZonalShift(
|
|
89
|
+
args: StartZonalShiftCommandInput,
|
|
90
|
+
options: __HttpHandlerOptions,
|
|
91
|
+
cb: (err: any, data?: StartZonalShiftCommandOutput) => void
|
|
92
|
+
): void;
|
|
93
|
+
updateZonalShift(
|
|
94
|
+
args: UpdateZonalShiftCommandInput,
|
|
95
|
+
options?: __HttpHandlerOptions
|
|
96
|
+
): Promise<UpdateZonalShiftCommandOutput>;
|
|
97
|
+
updateZonalShift(
|
|
98
|
+
args: UpdateZonalShiftCommandInput,
|
|
99
|
+
cb: (err: any, data?: UpdateZonalShiftCommandOutput) => void
|
|
100
|
+
): void;
|
|
101
|
+
updateZonalShift(
|
|
102
|
+
args: UpdateZonalShiftCommandInput,
|
|
103
|
+
options: __HttpHandlerOptions,
|
|
104
|
+
cb: (err: any, data?: UpdateZonalShiftCommandOutput) => void
|
|
105
|
+
): void;
|
|
106
|
+
}
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
import {
|
|
2
|
+
RegionInputConfig,
|
|
3
|
+
RegionResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/config-resolver";
|
|
5
|
+
import {
|
|
6
|
+
EndpointInputConfig,
|
|
7
|
+
EndpointResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-endpoint";
|
|
9
|
+
import {
|
|
10
|
+
HostHeaderInputConfig,
|
|
11
|
+
HostHeaderResolvedConfig,
|
|
12
|
+
} from "@aws-sdk/middleware-host-header";
|
|
13
|
+
import {
|
|
14
|
+
RetryInputConfig,
|
|
15
|
+
RetryResolvedConfig,
|
|
16
|
+
} from "@aws-sdk/middleware-retry";
|
|
17
|
+
import {
|
|
18
|
+
AwsAuthInputConfig,
|
|
19
|
+
AwsAuthResolvedConfig,
|
|
20
|
+
} from "@aws-sdk/middleware-signing";
|
|
21
|
+
import {
|
|
22
|
+
UserAgentInputConfig,
|
|
23
|
+
UserAgentResolvedConfig,
|
|
24
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
25
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
26
|
+
import {
|
|
27
|
+
Client as __Client,
|
|
28
|
+
DefaultsMode,
|
|
29
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
30
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
31
|
+
} from "@aws-sdk/smithy-client";
|
|
32
|
+
import {
|
|
33
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
34
|
+
Credentials as __Credentials,
|
|
35
|
+
Decoder as __Decoder,
|
|
36
|
+
Encoder as __Encoder,
|
|
37
|
+
HashConstructor as __HashConstructor,
|
|
38
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
39
|
+
Logger as __Logger,
|
|
40
|
+
Provider as __Provider,
|
|
41
|
+
Provider,
|
|
42
|
+
StreamCollector as __StreamCollector,
|
|
43
|
+
UrlParser as __UrlParser,
|
|
44
|
+
UserAgent as __UserAgent,
|
|
45
|
+
} from "@aws-sdk/types";
|
|
46
|
+
import {
|
|
47
|
+
CancelZonalShiftCommandInput,
|
|
48
|
+
CancelZonalShiftCommandOutput,
|
|
49
|
+
} from "./commands/CancelZonalShiftCommand";
|
|
50
|
+
import {
|
|
51
|
+
GetManagedResourceCommandInput,
|
|
52
|
+
GetManagedResourceCommandOutput,
|
|
53
|
+
} from "./commands/GetManagedResourceCommand";
|
|
54
|
+
import {
|
|
55
|
+
ListManagedResourcesCommandInput,
|
|
56
|
+
ListManagedResourcesCommandOutput,
|
|
57
|
+
} from "./commands/ListManagedResourcesCommand";
|
|
58
|
+
import {
|
|
59
|
+
ListZonalShiftsCommandInput,
|
|
60
|
+
ListZonalShiftsCommandOutput,
|
|
61
|
+
} from "./commands/ListZonalShiftsCommand";
|
|
62
|
+
import {
|
|
63
|
+
StartZonalShiftCommandInput,
|
|
64
|
+
StartZonalShiftCommandOutput,
|
|
65
|
+
} from "./commands/StartZonalShiftCommand";
|
|
66
|
+
import {
|
|
67
|
+
UpdateZonalShiftCommandInput,
|
|
68
|
+
UpdateZonalShiftCommandOutput,
|
|
69
|
+
} from "./commands/UpdateZonalShiftCommand";
|
|
70
|
+
import {
|
|
71
|
+
ClientInputEndpointParameters,
|
|
72
|
+
ClientResolvedEndpointParameters,
|
|
73
|
+
EndpointParameters,
|
|
74
|
+
} from "./endpoint/EndpointParameters";
|
|
75
|
+
export declare type ServiceInputTypes =
|
|
76
|
+
| CancelZonalShiftCommandInput
|
|
77
|
+
| GetManagedResourceCommandInput
|
|
78
|
+
| ListManagedResourcesCommandInput
|
|
79
|
+
| ListZonalShiftsCommandInput
|
|
80
|
+
| StartZonalShiftCommandInput
|
|
81
|
+
| UpdateZonalShiftCommandInput;
|
|
82
|
+
export declare type ServiceOutputTypes =
|
|
83
|
+
| CancelZonalShiftCommandOutput
|
|
84
|
+
| GetManagedResourceCommandOutput
|
|
85
|
+
| ListManagedResourcesCommandOutput
|
|
86
|
+
| ListZonalShiftsCommandOutput
|
|
87
|
+
| StartZonalShiftCommandOutput
|
|
88
|
+
| UpdateZonalShiftCommandOutput;
|
|
89
|
+
export interface ClientDefaults
|
|
90
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
91
|
+
requestHandler?: __HttpHandler;
|
|
92
|
+
sha256?: __HashConstructor;
|
|
93
|
+
urlParser?: __UrlParser;
|
|
94
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
95
|
+
streamCollector?: __StreamCollector;
|
|
96
|
+
base64Decoder?: __Decoder;
|
|
97
|
+
base64Encoder?: __Encoder;
|
|
98
|
+
utf8Decoder?: __Decoder;
|
|
99
|
+
utf8Encoder?: __Encoder;
|
|
100
|
+
runtime?: string;
|
|
101
|
+
disableHostPrefix?: boolean;
|
|
102
|
+
maxAttempts?: number | __Provider<number>;
|
|
103
|
+
retryMode?: string | __Provider<string>;
|
|
104
|
+
logger?: __Logger;
|
|
105
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
106
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
107
|
+
serviceId?: string;
|
|
108
|
+
region?: string | __Provider<string>;
|
|
109
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
110
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
111
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
112
|
+
}
|
|
113
|
+
declare type ARCZonalShiftClientConfigType = Partial<
|
|
114
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
115
|
+
> &
|
|
116
|
+
ClientDefaults &
|
|
117
|
+
RegionInputConfig &
|
|
118
|
+
EndpointInputConfig<EndpointParameters> &
|
|
119
|
+
RetryInputConfig &
|
|
120
|
+
HostHeaderInputConfig &
|
|
121
|
+
AwsAuthInputConfig &
|
|
122
|
+
UserAgentInputConfig &
|
|
123
|
+
ClientInputEndpointParameters;
|
|
124
|
+
export interface ARCZonalShiftClientConfig
|
|
125
|
+
extends ARCZonalShiftClientConfigType {}
|
|
126
|
+
declare type ARCZonalShiftClientResolvedConfigType =
|
|
127
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
128
|
+
Required<ClientDefaults> &
|
|
129
|
+
RegionResolvedConfig &
|
|
130
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
131
|
+
RetryResolvedConfig &
|
|
132
|
+
HostHeaderResolvedConfig &
|
|
133
|
+
AwsAuthResolvedConfig &
|
|
134
|
+
UserAgentResolvedConfig &
|
|
135
|
+
ClientResolvedEndpointParameters;
|
|
136
|
+
export interface ARCZonalShiftClientResolvedConfig
|
|
137
|
+
extends ARCZonalShiftClientResolvedConfigType {}
|
|
138
|
+
export declare class ARCZonalShiftClient extends __Client<
|
|
139
|
+
__HttpHandlerOptions,
|
|
140
|
+
ServiceInputTypes,
|
|
141
|
+
ServiceOutputTypes,
|
|
142
|
+
ARCZonalShiftClientResolvedConfig
|
|
143
|
+
> {
|
|
144
|
+
readonly config: ARCZonalShiftClientResolvedConfig;
|
|
145
|
+
constructor(configuration: ARCZonalShiftClientConfig);
|
|
146
|
+
destroy(): void;
|
|
147
|
+
}
|
|
148
|
+
export {};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ARCZonalShiftClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ARCZonalShiftClient";
|
|
14
|
+
import { CancelZonalShiftRequest, ZonalShift } from "../models/models_0";
|
|
15
|
+
export interface CancelZonalShiftCommandInput extends CancelZonalShiftRequest {}
|
|
16
|
+
export interface CancelZonalShiftCommandOutput
|
|
17
|
+
extends ZonalShift,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class CancelZonalShiftCommand extends $Command<
|
|
20
|
+
CancelZonalShiftCommandInput,
|
|
21
|
+
CancelZonalShiftCommandOutput,
|
|
22
|
+
ARCZonalShiftClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: CancelZonalShiftCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: CancelZonalShiftCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ARCZonalShiftClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<CancelZonalShiftCommandInput, CancelZonalShiftCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ARCZonalShiftClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ARCZonalShiftClient";
|
|
14
|
+
import {
|
|
15
|
+
GetManagedResourceRequest,
|
|
16
|
+
GetManagedResourceResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface GetManagedResourceCommandInput
|
|
19
|
+
extends GetManagedResourceRequest {}
|
|
20
|
+
export interface GetManagedResourceCommandOutput
|
|
21
|
+
extends GetManagedResourceResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class GetManagedResourceCommand extends $Command<
|
|
24
|
+
GetManagedResourceCommandInput,
|
|
25
|
+
GetManagedResourceCommandOutput,
|
|
26
|
+
ARCZonalShiftClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetManagedResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GetManagedResourceCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ARCZonalShiftClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetManagedResourceCommandInput, GetManagedResourceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ARCZonalShiftClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ARCZonalShiftClient";
|
|
14
|
+
import {
|
|
15
|
+
ListManagedResourcesRequest,
|
|
16
|
+
ListManagedResourcesResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface ListManagedResourcesCommandInput
|
|
19
|
+
extends ListManagedResourcesRequest {}
|
|
20
|
+
export interface ListManagedResourcesCommandOutput
|
|
21
|
+
extends ListManagedResourcesResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListManagedResourcesCommand extends $Command<
|
|
24
|
+
ListManagedResourcesCommandInput,
|
|
25
|
+
ListManagedResourcesCommandOutput,
|
|
26
|
+
ARCZonalShiftClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListManagedResourcesCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListManagedResourcesCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: ARCZonalShiftClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListManagedResourcesCommandInput,
|
|
37
|
+
ListManagedResourcesCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ARCZonalShiftClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ARCZonalShiftClient";
|
|
14
|
+
import {
|
|
15
|
+
ListZonalShiftsRequest,
|
|
16
|
+
ListZonalShiftsResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface ListZonalShiftsCommandInput extends ListZonalShiftsRequest {}
|
|
19
|
+
export interface ListZonalShiftsCommandOutput
|
|
20
|
+
extends ListZonalShiftsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListZonalShiftsCommand extends $Command<
|
|
23
|
+
ListZonalShiftsCommandInput,
|
|
24
|
+
ListZonalShiftsCommandOutput,
|
|
25
|
+
ARCZonalShiftClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListZonalShiftsCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: ListZonalShiftsCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: ARCZonalShiftClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListZonalShiftsCommandInput, ListZonalShiftsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ARCZonalShiftClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ARCZonalShiftClient";
|
|
14
|
+
import { StartZonalShiftRequest, ZonalShift } from "../models/models_0";
|
|
15
|
+
export interface StartZonalShiftCommandInput extends StartZonalShiftRequest {}
|
|
16
|
+
export interface StartZonalShiftCommandOutput
|
|
17
|
+
extends ZonalShift,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class StartZonalShiftCommand extends $Command<
|
|
20
|
+
StartZonalShiftCommandInput,
|
|
21
|
+
StartZonalShiftCommandOutput,
|
|
22
|
+
ARCZonalShiftClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: StartZonalShiftCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: StartZonalShiftCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ARCZonalShiftClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<StartZonalShiftCommandInput, StartZonalShiftCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ARCZonalShiftClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../ARCZonalShiftClient";
|
|
14
|
+
import { UpdateZonalShiftRequest, ZonalShift } from "../models/models_0";
|
|
15
|
+
export interface UpdateZonalShiftCommandInput extends UpdateZonalShiftRequest {}
|
|
16
|
+
export interface UpdateZonalShiftCommandOutput
|
|
17
|
+
extends ZonalShift,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class UpdateZonalShiftCommand extends $Command<
|
|
20
|
+
UpdateZonalShiftCommandInput,
|
|
21
|
+
UpdateZonalShiftCommandOutput,
|
|
22
|
+
ARCZonalShiftClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: UpdateZonalShiftCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: UpdateZonalShiftCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: ARCZonalShiftClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<UpdateZonalShiftCommandInput, UpdateZonalShiftCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export * from "./CancelZonalShiftCommand";
|
|
2
|
+
export * from "./GetManagedResourceCommand";
|
|
3
|
+
export * from "./ListManagedResourcesCommand";
|
|
4
|
+
export * from "./ListZonalShiftsCommand";
|
|
5
|
+
export * from "./StartZonalShiftCommand";
|
|
6
|
+
export * from "./UpdateZonalShiftCommand";
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Endpoint,
|
|
3
|
+
EndpointParameters as __EndpointParameters,
|
|
4
|
+
EndpointV2,
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@aws-sdk/types";
|
|
7
|
+
export interface ClientInputEndpointParameters {
|
|
8
|
+
region?: string | Provider<string>;
|
|
9
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
10
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
11
|
+
endpoint?:
|
|
12
|
+
| string
|
|
13
|
+
| Provider<string>
|
|
14
|
+
| Endpoint
|
|
15
|
+
| Provider<Endpoint>
|
|
16
|
+
| EndpointV2
|
|
17
|
+
| Provider<EndpointV2>;
|
|
18
|
+
}
|
|
19
|
+
export declare type ClientResolvedEndpointParameters =
|
|
20
|
+
ClientInputEndpointParameters & {
|
|
21
|
+
defaultSigningName: string;
|
|
22
|
+
};
|
|
23
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
24
|
+
options: T & ClientInputEndpointParameters
|
|
25
|
+
) => T &
|
|
26
|
+
ClientInputEndpointParameters & {
|
|
27
|
+
defaultSigningName: string;
|
|
28
|
+
};
|
|
29
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
30
|
+
Region: string;
|
|
31
|
+
UseDualStack?: boolean;
|
|
32
|
+
UseFIPS?: boolean;
|
|
33
|
+
Endpoint?: string;
|
|
34
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class ARCZonalShiftServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|