@aws-sdk/client-evs 3.824.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 +293 -0
- package/dist-cjs/Evs.js +33 -0
- package/dist-cjs/EvsClient.js +52 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/CreateEnvironmentCommand.js +26 -0
- package/dist-cjs/commands/CreateEnvironmentHostCommand.js +26 -0
- package/dist-cjs/commands/DeleteEnvironmentCommand.js +26 -0
- package/dist-cjs/commands/DeleteEnvironmentHostCommand.js +26 -0
- package/dist-cjs/commands/GetEnvironmentCommand.js +26 -0
- package/dist-cjs/commands/ListEnvironmentHostsCommand.js +26 -0
- package/dist-cjs/commands/ListEnvironmentVlansCommand.js +26 -0
- package/dist-cjs/commands/ListEnvironmentsCommand.js +26 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +26 -0
- package/dist-cjs/commands/TagResourceCommand.js +26 -0
- package/dist-cjs/commands/UntagResourceCommand.js +26 -0
- package/dist-cjs/commands/index.js +14 -0
- package/dist-cjs/endpoint/EndpointParameters.js +17 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/EvsServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +126 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListEnvironmentHostsPaginator.js +7 -0
- package/dist-cjs/pagination/ListEnvironmentVlansPaginator.js +7 -0
- package/dist-cjs/pagination/ListEnvironmentsPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-cjs/protocols/Aws_json1_0.js +536 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +56 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +13 -0
- package/dist-es/Evs.js +29 -0
- package/dist-es/EvsClient.js +48 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/CreateEnvironmentCommand.js +22 -0
- package/dist-es/commands/CreateEnvironmentHostCommand.js +22 -0
- package/dist-es/commands/DeleteEnvironmentCommand.js +22 -0
- package/dist-es/commands/DeleteEnvironmentHostCommand.js +22 -0
- package/dist-es/commands/GetEnvironmentCommand.js +22 -0
- package/dist-es/commands/ListEnvironmentHostsCommand.js +22 -0
- package/dist-es/commands/ListEnvironmentVlansCommand.js +22 -0
- package/dist-es/commands/ListEnvironmentsCommand.js +22 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
- package/dist-es/commands/TagResourceCommand.js +22 -0
- package/dist-es/commands/UntagResourceCommand.js +22 -0
- package/dist-es/commands/index.js +11 -0
- package/dist-es/endpoint/EndpointParameters.js +13 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/EvsServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +118 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListEnvironmentHostsPaginator.js +4 -0
- package/dist-es/pagination/ListEnvironmentVlansPaginator.js +4 -0
- package/dist-es/pagination/ListEnvironmentsPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_json1_0.js +511 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +51 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-types/Evs.d.ts +88 -0
- package/dist-types/EvsClient.d.ts +198 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +197 -0
- package/dist-types/commands/CreateEnvironmentHostCommand.d.ts +113 -0
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +133 -0
- package/dist-types/commands/DeleteEnvironmentHostCommand.d.ts +107 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +132 -0
- package/dist-types/commands/ListEnvironmentHostsCommand.d.ts +100 -0
- package/dist-types/commands/ListEnvironmentVlansCommand.d.ts +93 -0
- package/dist-types/commands/ListEnvironmentsCommand.d.ts +91 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +77 -0
- package/dist-types/commands/TagResourceCommand.d.ts +82 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +79 -0
- package/dist-types/commands/index.d.ts +11 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +38 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +14 -0
- package/dist-types/models/EvsServiceException.d.ts +14 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1083 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListEnvironmentHostsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEnvironmentVlansPaginator.d.ts +7 -0
- package/dist-types/pagination/ListEnvironmentsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +101 -0
- package/dist-types/runtimeConfig.browser.d.ts +50 -0
- package/dist-types/runtimeConfig.d.ts +50 -0
- package/dist-types/runtimeConfig.native.d.ts +49 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/Evs.d.ts +193 -0
- package/dist-types/ts3.4/EvsClient.d.ts +182 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +46 -0
- package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateEnvironmentHostCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentHostCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListEnvironmentHostsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEnvironmentVlansCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +11 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +48 -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/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +9 -0
- package/dist-types/ts3.4/models/EvsServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +306 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
- package/dist-types/ts3.4/pagination/ListEnvironmentHostsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEnvironmentVlansPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +137 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +90 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +94 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +101 -0
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EvsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EvsClient";
|
|
8
|
+
import {
|
|
9
|
+
ListTagsForResourceRequest,
|
|
10
|
+
ListTagsForResourceResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListTagsForResourceCommandInput
|
|
15
|
+
extends ListTagsForResourceRequest {}
|
|
16
|
+
export interface ListTagsForResourceCommandOutput
|
|
17
|
+
extends ListTagsForResourceResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListTagsForResourceCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListTagsForResourceCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListTagsForResourceCommandInput,
|
|
24
|
+
ListTagsForResourceCommandOutput,
|
|
25
|
+
EvsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListTagsForResourceCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListTagsForResourceCommandInput,
|
|
33
|
+
ListTagsForResourceCommandOutput,
|
|
34
|
+
EvsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListTagsForResourceRequest;
|
|
44
|
+
output: ListTagsForResourceResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListTagsForResourceCommandInput;
|
|
48
|
+
output: ListTagsForResourceCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EvsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EvsClient";
|
|
8
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
12
|
+
export interface TagResourceCommandOutput
|
|
13
|
+
extends TagResourceResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const TagResourceCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: TagResourceCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
TagResourceCommandInput,
|
|
20
|
+
TagResourceCommandOutput,
|
|
21
|
+
EvsClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: TagResourceCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
TagResourceCommandInput,
|
|
29
|
+
TagResourceCommandOutput,
|
|
30
|
+
EvsClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: TagResourceRequest;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: TagResourceCommandInput;
|
|
44
|
+
output: TagResourceCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EvsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EvsClient";
|
|
8
|
+
import {
|
|
9
|
+
UntagResourceRequest,
|
|
10
|
+
UntagResourceResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
15
|
+
export interface UntagResourceCommandOutput
|
|
16
|
+
extends UntagResourceResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const UntagResourceCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: UntagResourceCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
UntagResourceCommandInput,
|
|
23
|
+
UntagResourceCommandOutput,
|
|
24
|
+
EvsClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: UntagResourceCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
UntagResourceCommandInput,
|
|
32
|
+
UntagResourceCommandOutput,
|
|
33
|
+
EvsClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: UntagResourceRequest;
|
|
43
|
+
output: {};
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: UntagResourceCommandInput;
|
|
47
|
+
output: UntagResourceCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export * from "./CreateEnvironmentCommand";
|
|
2
|
+
export * from "./CreateEnvironmentHostCommand";
|
|
3
|
+
export * from "./DeleteEnvironmentCommand";
|
|
4
|
+
export * from "./DeleteEnvironmentHostCommand";
|
|
5
|
+
export * from "./GetEnvironmentCommand";
|
|
6
|
+
export * from "./ListEnvironmentHostsCommand";
|
|
7
|
+
export * from "./ListEnvironmentVlansCommand";
|
|
8
|
+
export * from "./ListEnvironmentsCommand";
|
|
9
|
+
export * from "./ListTagsForResourceCommand";
|
|
10
|
+
export * from "./TagResourceCommand";
|
|
11
|
+
export * from "./UntagResourceCommand";
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Endpoint,
|
|
3
|
+
EndpointParameters as __EndpointParameters,
|
|
4
|
+
EndpointV2,
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@smithy/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 type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
20
|
+
defaultSigningName: string;
|
|
21
|
+
};
|
|
22
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
23
|
+
options: T & ClientInputEndpointParameters
|
|
24
|
+
) => T & ClientResolvedEndpointParameters;
|
|
25
|
+
export declare const commonParams: {
|
|
26
|
+
readonly UseFIPS: {
|
|
27
|
+
readonly type: "builtInParams";
|
|
28
|
+
readonly name: "useFipsEndpoint";
|
|
29
|
+
};
|
|
30
|
+
readonly Endpoint: {
|
|
31
|
+
readonly type: "builtInParams";
|
|
32
|
+
readonly name: "endpoint";
|
|
33
|
+
};
|
|
34
|
+
readonly Region: {
|
|
35
|
+
readonly type: "builtInParams";
|
|
36
|
+
readonly name: "region";
|
|
37
|
+
};
|
|
38
|
+
readonly UseDualStack: {
|
|
39
|
+
readonly type: "builtInParams";
|
|
40
|
+
readonly name: "useDualstackEndpoint";
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
44
|
+
Region?: string;
|
|
45
|
+
UseDualStack?: boolean;
|
|
46
|
+
UseFIPS?: boolean;
|
|
47
|
+
Endpoint?: string;
|
|
48
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
3
|
+
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
|
+
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
|
+
export interface EvsExtensionConfiguration
|
|
6
|
+
extends HttpHandlerExtensionConfiguration,
|
|
7
|
+
DefaultExtensionConfiguration,
|
|
8
|
+
AwsRegionExtensionConfiguration,
|
|
9
|
+
HttpAuthExtensionConfiguration {}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from "./EvsClient";
|
|
2
|
+
export * from "./Evs";
|
|
3
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
4
|
+
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
|
+
export { EvsExtensionConfiguration } from "./extensionConfiguration";
|
|
6
|
+
export * from "./commands";
|
|
7
|
+
export * from "./pagination";
|
|
8
|
+
export * from "./models";
|
|
9
|
+
export { EvsServiceException } from "./models/EvsServiceException";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@smithy/smithy-client";
|
|
5
|
+
export { __ServiceExceptionOptions };
|
|
6
|
+
export { __ServiceException };
|
|
7
|
+
export declare class EvsServiceException extends __ServiceException {
|
|
8
|
+
constructor(options: __ServiceExceptionOptions);
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|
|
@@ -0,0 +1,306 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { EvsServiceException as __BaseException } from "./EvsServiceException";
|
|
3
|
+
export interface ConnectivityInfo {
|
|
4
|
+
privateRouteServerPeerings: string[] | undefined;
|
|
5
|
+
}
|
|
6
|
+
export declare const _InstanceType: {
|
|
7
|
+
readonly I4I_METAL: "i4i.metal";
|
|
8
|
+
};
|
|
9
|
+
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
10
|
+
export interface HostInfoForCreate {
|
|
11
|
+
hostName: string | undefined;
|
|
12
|
+
keyName: string | undefined;
|
|
13
|
+
instanceType: _InstanceType | undefined;
|
|
14
|
+
placementGroupId?: string | undefined;
|
|
15
|
+
dedicatedHostId?: string | undefined;
|
|
16
|
+
}
|
|
17
|
+
export interface InitialVlanInfo {
|
|
18
|
+
cidr: string | undefined;
|
|
19
|
+
}
|
|
20
|
+
export interface InitialVlans {
|
|
21
|
+
vmkManagement: InitialVlanInfo | undefined;
|
|
22
|
+
vmManagement: InitialVlanInfo | undefined;
|
|
23
|
+
vMotion: InitialVlanInfo | undefined;
|
|
24
|
+
vSan: InitialVlanInfo | undefined;
|
|
25
|
+
vTep: InitialVlanInfo | undefined;
|
|
26
|
+
edgeVTep: InitialVlanInfo | undefined;
|
|
27
|
+
nsxUplink: InitialVlanInfo | undefined;
|
|
28
|
+
hcx: InitialVlanInfo | undefined;
|
|
29
|
+
expansionVlan1: InitialVlanInfo | undefined;
|
|
30
|
+
expansionVlan2: InitialVlanInfo | undefined;
|
|
31
|
+
}
|
|
32
|
+
export interface LicenseInfo {
|
|
33
|
+
solutionKey: string | undefined;
|
|
34
|
+
vsanKey: string | undefined;
|
|
35
|
+
}
|
|
36
|
+
export interface ServiceAccessSecurityGroups {
|
|
37
|
+
securityGroups?: string[] | undefined;
|
|
38
|
+
}
|
|
39
|
+
export interface VcfHostnames {
|
|
40
|
+
vCenter: string | undefined;
|
|
41
|
+
nsx: string | undefined;
|
|
42
|
+
nsxManager1: string | undefined;
|
|
43
|
+
nsxManager2: string | undefined;
|
|
44
|
+
nsxManager3: string | undefined;
|
|
45
|
+
nsxEdge1: string | undefined;
|
|
46
|
+
nsxEdge2: string | undefined;
|
|
47
|
+
sddcManager: string | undefined;
|
|
48
|
+
cloudBuilder: string | undefined;
|
|
49
|
+
}
|
|
50
|
+
export declare const VcfVersion: {
|
|
51
|
+
readonly VCF_5_2_1: "VCF-5.2.1";
|
|
52
|
+
};
|
|
53
|
+
export type VcfVersion = (typeof VcfVersion)[keyof typeof VcfVersion];
|
|
54
|
+
export interface CreateEnvironmentRequest {
|
|
55
|
+
clientToken?: string | undefined;
|
|
56
|
+
environmentName?: string | undefined;
|
|
57
|
+
kmsKeyId?: string | undefined;
|
|
58
|
+
tags?: Record<string, string> | undefined;
|
|
59
|
+
serviceAccessSecurityGroups?: ServiceAccessSecurityGroups | undefined;
|
|
60
|
+
vpcId: string | undefined;
|
|
61
|
+
serviceAccessSubnetId: string | undefined;
|
|
62
|
+
vcfVersion: VcfVersion | undefined;
|
|
63
|
+
termsAccepted: boolean | undefined;
|
|
64
|
+
licenseInfo: LicenseInfo[] | undefined;
|
|
65
|
+
initialVlans: InitialVlans | undefined;
|
|
66
|
+
hosts: HostInfoForCreate[] | undefined;
|
|
67
|
+
connectivityInfo: ConnectivityInfo | undefined;
|
|
68
|
+
vcfHostnames: VcfHostnames | undefined;
|
|
69
|
+
siteId: string | undefined;
|
|
70
|
+
}
|
|
71
|
+
export declare const CheckResult: {
|
|
72
|
+
readonly FAILED: "FAILED";
|
|
73
|
+
readonly PASSED: "PASSED";
|
|
74
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
75
|
+
};
|
|
76
|
+
export type CheckResult = (typeof CheckResult)[keyof typeof CheckResult];
|
|
77
|
+
export declare const CheckType: {
|
|
78
|
+
readonly HOST_COUNT: "HOST_COUNT";
|
|
79
|
+
readonly KEY_COVERAGE: "KEY_COVERAGE";
|
|
80
|
+
readonly KEY_REUSE: "KEY_REUSE";
|
|
81
|
+
readonly REACHABILITY: "REACHABILITY";
|
|
82
|
+
};
|
|
83
|
+
export type CheckType = (typeof CheckType)[keyof typeof CheckType];
|
|
84
|
+
export interface Check {
|
|
85
|
+
type?: CheckType | undefined;
|
|
86
|
+
result?: CheckResult | undefined;
|
|
87
|
+
impairedSince?: Date | undefined;
|
|
88
|
+
}
|
|
89
|
+
export interface Secret {
|
|
90
|
+
secretArn?: string | undefined;
|
|
91
|
+
}
|
|
92
|
+
export declare const EnvironmentState: {
|
|
93
|
+
readonly CREATED: "CREATED";
|
|
94
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
95
|
+
readonly CREATING: "CREATING";
|
|
96
|
+
readonly DELETED: "DELETED";
|
|
97
|
+
readonly DELETING: "DELETING";
|
|
98
|
+
};
|
|
99
|
+
export type EnvironmentState =
|
|
100
|
+
(typeof EnvironmentState)[keyof typeof EnvironmentState];
|
|
101
|
+
export interface Environment {
|
|
102
|
+
environmentId?: string | undefined;
|
|
103
|
+
environmentState?: EnvironmentState | undefined;
|
|
104
|
+
stateDetails?: string | undefined;
|
|
105
|
+
createdAt?: Date | undefined;
|
|
106
|
+
modifiedAt?: Date | undefined;
|
|
107
|
+
environmentArn?: string | undefined;
|
|
108
|
+
environmentName?: string | undefined;
|
|
109
|
+
vpcId?: string | undefined;
|
|
110
|
+
serviceAccessSubnetId?: string | undefined;
|
|
111
|
+
vcfVersion?: VcfVersion | undefined;
|
|
112
|
+
termsAccepted?: boolean | undefined;
|
|
113
|
+
licenseInfo?: LicenseInfo[] | undefined;
|
|
114
|
+
siteId?: string | undefined;
|
|
115
|
+
environmentStatus?: CheckResult | undefined;
|
|
116
|
+
checks?: Check[] | undefined;
|
|
117
|
+
connectivityInfo?: ConnectivityInfo | undefined;
|
|
118
|
+
vcfHostnames?: VcfHostnames | undefined;
|
|
119
|
+
kmsKeyId?: string | undefined;
|
|
120
|
+
serviceAccessSecurityGroups?: ServiceAccessSecurityGroups | undefined;
|
|
121
|
+
credentials?: Secret[] | undefined;
|
|
122
|
+
}
|
|
123
|
+
export interface CreateEnvironmentResponse {
|
|
124
|
+
environment?: Environment | undefined;
|
|
125
|
+
}
|
|
126
|
+
export interface ValidationExceptionField {
|
|
127
|
+
name: string | undefined;
|
|
128
|
+
message: string | undefined;
|
|
129
|
+
}
|
|
130
|
+
export declare const ValidationExceptionReason: {
|
|
131
|
+
readonly CANNOT_PARSE: "cannotParse";
|
|
132
|
+
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
133
|
+
readonly OTHER: "other";
|
|
134
|
+
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
135
|
+
};
|
|
136
|
+
export type ValidationExceptionReason =
|
|
137
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
138
|
+
export declare class ValidationException extends __BaseException {
|
|
139
|
+
readonly name: "ValidationException";
|
|
140
|
+
readonly $fault: "client";
|
|
141
|
+
reason: ValidationExceptionReason | undefined;
|
|
142
|
+
fieldList?: ValidationExceptionField[] | undefined;
|
|
143
|
+
constructor(
|
|
144
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
145
|
+
);
|
|
146
|
+
}
|
|
147
|
+
export interface CreateEnvironmentHostRequest {
|
|
148
|
+
clientToken?: string | undefined;
|
|
149
|
+
environmentId: string | undefined;
|
|
150
|
+
host: HostInfoForCreate | undefined;
|
|
151
|
+
}
|
|
152
|
+
export interface EnvironmentSummary {
|
|
153
|
+
environmentId?: string | undefined;
|
|
154
|
+
environmentName?: string | undefined;
|
|
155
|
+
vcfVersion?: VcfVersion | undefined;
|
|
156
|
+
environmentStatus?: CheckResult | undefined;
|
|
157
|
+
environmentState?: EnvironmentState | undefined;
|
|
158
|
+
createdAt?: Date | undefined;
|
|
159
|
+
modifiedAt?: Date | undefined;
|
|
160
|
+
environmentArn?: string | undefined;
|
|
161
|
+
}
|
|
162
|
+
export declare const HostState: {
|
|
163
|
+
readonly CREATED: "CREATED";
|
|
164
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
165
|
+
readonly CREATING: "CREATING";
|
|
166
|
+
readonly DELETED: "DELETED";
|
|
167
|
+
readonly DELETING: "DELETING";
|
|
168
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
169
|
+
readonly UPDATING: "UPDATING";
|
|
170
|
+
};
|
|
171
|
+
export type HostState = (typeof HostState)[keyof typeof HostState];
|
|
172
|
+
export interface NetworkInterface {
|
|
173
|
+
networkInterfaceId?: string | undefined;
|
|
174
|
+
}
|
|
175
|
+
export interface Host {
|
|
176
|
+
hostName?: string | undefined;
|
|
177
|
+
ipAddress?: string | undefined;
|
|
178
|
+
keyName?: string | undefined;
|
|
179
|
+
instanceType?: _InstanceType | undefined;
|
|
180
|
+
placementGroupId?: string | undefined;
|
|
181
|
+
dedicatedHostId?: string | undefined;
|
|
182
|
+
createdAt?: Date | undefined;
|
|
183
|
+
modifiedAt?: Date | undefined;
|
|
184
|
+
hostState?: HostState | undefined;
|
|
185
|
+
stateDetails?: string | undefined;
|
|
186
|
+
ec2InstanceId?: string | undefined;
|
|
187
|
+
networkInterfaces?: NetworkInterface[] | undefined;
|
|
188
|
+
}
|
|
189
|
+
export interface CreateEnvironmentHostResponse {
|
|
190
|
+
environmentSummary?: EnvironmentSummary | undefined;
|
|
191
|
+
host?: Host | undefined;
|
|
192
|
+
}
|
|
193
|
+
export declare class ThrottlingException extends __BaseException {
|
|
194
|
+
readonly name: "ThrottlingException";
|
|
195
|
+
readonly $fault: "client";
|
|
196
|
+
$retryable: {};
|
|
197
|
+
retryAfterSeconds?: number | undefined;
|
|
198
|
+
constructor(
|
|
199
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
200
|
+
);
|
|
201
|
+
}
|
|
202
|
+
export interface DeleteEnvironmentRequest {
|
|
203
|
+
clientToken?: string | undefined;
|
|
204
|
+
environmentId: string | undefined;
|
|
205
|
+
}
|
|
206
|
+
export interface DeleteEnvironmentResponse {
|
|
207
|
+
environment?: Environment | undefined;
|
|
208
|
+
}
|
|
209
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
210
|
+
readonly name: "ResourceNotFoundException";
|
|
211
|
+
readonly $fault: "client";
|
|
212
|
+
resourceId: string | undefined;
|
|
213
|
+
resourceType: string | undefined;
|
|
214
|
+
constructor(
|
|
215
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
216
|
+
);
|
|
217
|
+
}
|
|
218
|
+
export interface DeleteEnvironmentHostRequest {
|
|
219
|
+
clientToken?: string | undefined;
|
|
220
|
+
environmentId: string | undefined;
|
|
221
|
+
hostName: string | undefined;
|
|
222
|
+
}
|
|
223
|
+
export interface DeleteEnvironmentHostResponse {
|
|
224
|
+
environmentSummary?: EnvironmentSummary | undefined;
|
|
225
|
+
host?: Host | undefined;
|
|
226
|
+
}
|
|
227
|
+
export interface GetEnvironmentRequest {
|
|
228
|
+
environmentId: string | undefined;
|
|
229
|
+
}
|
|
230
|
+
export interface GetEnvironmentResponse {
|
|
231
|
+
environment?: Environment | undefined;
|
|
232
|
+
}
|
|
233
|
+
export interface ListEnvironmentHostsRequest {
|
|
234
|
+
nextToken?: string | undefined;
|
|
235
|
+
maxResults?: number | undefined;
|
|
236
|
+
environmentId: string | undefined;
|
|
237
|
+
}
|
|
238
|
+
export interface ListEnvironmentHostsResponse {
|
|
239
|
+
nextToken?: string | undefined;
|
|
240
|
+
environmentHosts?: Host[] | undefined;
|
|
241
|
+
}
|
|
242
|
+
export interface ListEnvironmentsRequest {
|
|
243
|
+
nextToken?: string | undefined;
|
|
244
|
+
maxResults?: number | undefined;
|
|
245
|
+
state?: EnvironmentState[] | undefined;
|
|
246
|
+
}
|
|
247
|
+
export interface ListEnvironmentsResponse {
|
|
248
|
+
nextToken?: string | undefined;
|
|
249
|
+
environmentSummaries?: EnvironmentSummary[] | undefined;
|
|
250
|
+
}
|
|
251
|
+
export interface ListEnvironmentVlansRequest {
|
|
252
|
+
nextToken?: string | undefined;
|
|
253
|
+
maxResults?: number | undefined;
|
|
254
|
+
environmentId: string | undefined;
|
|
255
|
+
}
|
|
256
|
+
export declare const VlanState: {
|
|
257
|
+
readonly CREATED: "CREATED";
|
|
258
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
259
|
+
readonly CREATING: "CREATING";
|
|
260
|
+
readonly DELETED: "DELETED";
|
|
261
|
+
readonly DELETING: "DELETING";
|
|
262
|
+
};
|
|
263
|
+
export type VlanState = (typeof VlanState)[keyof typeof VlanState];
|
|
264
|
+
export interface Vlan {
|
|
265
|
+
vlanId?: number | undefined;
|
|
266
|
+
cidr?: string | undefined;
|
|
267
|
+
availabilityZone?: string | undefined;
|
|
268
|
+
functionName?: string | undefined;
|
|
269
|
+
subnetId?: string | undefined;
|
|
270
|
+
createdAt?: Date | undefined;
|
|
271
|
+
modifiedAt?: Date | undefined;
|
|
272
|
+
vlanState?: VlanState | undefined;
|
|
273
|
+
stateDetails?: string | undefined;
|
|
274
|
+
}
|
|
275
|
+
export interface ListEnvironmentVlansResponse {
|
|
276
|
+
nextToken?: string | undefined;
|
|
277
|
+
environmentVlans?: Vlan[] | undefined;
|
|
278
|
+
}
|
|
279
|
+
export interface ListTagsForResourceRequest {
|
|
280
|
+
resourceArn: string | undefined;
|
|
281
|
+
}
|
|
282
|
+
export interface ListTagsForResourceResponse {
|
|
283
|
+
tags?: Record<string, string> | undefined;
|
|
284
|
+
}
|
|
285
|
+
export declare class TagPolicyException extends __BaseException {
|
|
286
|
+
readonly name: "TagPolicyException";
|
|
287
|
+
readonly $fault: "client";
|
|
288
|
+
constructor(opts: __ExceptionOptionType<TagPolicyException, __BaseException>);
|
|
289
|
+
}
|
|
290
|
+
export interface TagResourceRequest {
|
|
291
|
+
resourceArn: string | undefined;
|
|
292
|
+
tags: Record<string, string> | undefined;
|
|
293
|
+
}
|
|
294
|
+
export interface TagResourceResponse {}
|
|
295
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
296
|
+
readonly name: "TooManyTagsException";
|
|
297
|
+
readonly $fault: "client";
|
|
298
|
+
constructor(
|
|
299
|
+
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
300
|
+
);
|
|
301
|
+
}
|
|
302
|
+
export interface UntagResourceRequest {
|
|
303
|
+
resourceArn: string | undefined;
|
|
304
|
+
tagKeys: string[] | undefined;
|
|
305
|
+
}
|
|
306
|
+
export interface UntagResourceResponse {}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListEnvironmentHostsCommandInput,
|
|
4
|
+
ListEnvironmentHostsCommandOutput,
|
|
5
|
+
} from "../commands/ListEnvironmentHostsCommand";
|
|
6
|
+
import { EvsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListEnvironmentHosts: (
|
|
8
|
+
config: EvsPaginationConfiguration,
|
|
9
|
+
input: ListEnvironmentHostsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListEnvironmentHostsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListEnvironmentVlansCommandInput,
|
|
4
|
+
ListEnvironmentVlansCommandOutput,
|
|
5
|
+
} from "../commands/ListEnvironmentVlansCommand";
|
|
6
|
+
import { EvsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListEnvironmentVlans: (
|
|
8
|
+
config: EvsPaginationConfiguration,
|
|
9
|
+
input: ListEnvironmentVlansCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListEnvironmentVlansCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListEnvironmentsCommandInput,
|
|
4
|
+
ListEnvironmentsCommandOutput,
|
|
5
|
+
} from "../commands/ListEnvironmentsCommand";
|
|
6
|
+
import { EvsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListEnvironments: (
|
|
8
|
+
config: EvsPaginationConfiguration,
|
|
9
|
+
input: ListEnvironmentsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListEnvironmentsCommandOutput>;
|