@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.
Files changed (143) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +293 -0
  3. package/dist-cjs/Evs.js +33 -0
  4. package/dist-cjs/EvsClient.js +52 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CreateEnvironmentCommand.js +26 -0
  8. package/dist-cjs/commands/CreateEnvironmentHostCommand.js +26 -0
  9. package/dist-cjs/commands/DeleteEnvironmentCommand.js +26 -0
  10. package/dist-cjs/commands/DeleteEnvironmentHostCommand.js +26 -0
  11. package/dist-cjs/commands/GetEnvironmentCommand.js +26 -0
  12. package/dist-cjs/commands/ListEnvironmentHostsCommand.js +26 -0
  13. package/dist-cjs/commands/ListEnvironmentVlansCommand.js +26 -0
  14. package/dist-cjs/commands/ListEnvironmentsCommand.js +26 -0
  15. package/dist-cjs/commands/ListTagsForResourceCommand.js +26 -0
  16. package/dist-cjs/commands/TagResourceCommand.js +26 -0
  17. package/dist-cjs/commands/UntagResourceCommand.js +26 -0
  18. package/dist-cjs/commands/index.js +14 -0
  19. package/dist-cjs/endpoint/EndpointParameters.js +17 -0
  20. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  21. package/dist-cjs/endpoint/ruleset.js +7 -0
  22. package/dist-cjs/extensionConfiguration.js +2 -0
  23. package/dist-cjs/index.js +11 -0
  24. package/dist-cjs/models/EvsServiceException.js +12 -0
  25. package/dist-cjs/models/index.js +4 -0
  26. package/dist-cjs/models/models_0.js +126 -0
  27. package/dist-cjs/pagination/Interfaces.js +2 -0
  28. package/dist-cjs/pagination/ListEnvironmentHostsPaginator.js +7 -0
  29. package/dist-cjs/pagination/ListEnvironmentVlansPaginator.js +7 -0
  30. package/dist-cjs/pagination/ListEnvironmentsPaginator.js +7 -0
  31. package/dist-cjs/pagination/index.js +7 -0
  32. package/dist-cjs/protocols/Aws_json1_0.js +536 -0
  33. package/dist-cjs/runtimeConfig.browser.js +39 -0
  34. package/dist-cjs/runtimeConfig.js +56 -0
  35. package/dist-cjs/runtimeConfig.native.js +15 -0
  36. package/dist-cjs/runtimeConfig.shared.js +34 -0
  37. package/dist-cjs/runtimeExtensions.js +13 -0
  38. package/dist-es/Evs.js +29 -0
  39. package/dist-es/EvsClient.js +48 -0
  40. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  41. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  42. package/dist-es/commands/CreateEnvironmentCommand.js +22 -0
  43. package/dist-es/commands/CreateEnvironmentHostCommand.js +22 -0
  44. package/dist-es/commands/DeleteEnvironmentCommand.js +22 -0
  45. package/dist-es/commands/DeleteEnvironmentHostCommand.js +22 -0
  46. package/dist-es/commands/GetEnvironmentCommand.js +22 -0
  47. package/dist-es/commands/ListEnvironmentHostsCommand.js +22 -0
  48. package/dist-es/commands/ListEnvironmentVlansCommand.js +22 -0
  49. package/dist-es/commands/ListEnvironmentsCommand.js +22 -0
  50. package/dist-es/commands/ListTagsForResourceCommand.js +22 -0
  51. package/dist-es/commands/TagResourceCommand.js +22 -0
  52. package/dist-es/commands/UntagResourceCommand.js +22 -0
  53. package/dist-es/commands/index.js +11 -0
  54. package/dist-es/endpoint/EndpointParameters.js +13 -0
  55. package/dist-es/endpoint/endpointResolver.js +14 -0
  56. package/dist-es/endpoint/ruleset.js +4 -0
  57. package/dist-es/extensionConfiguration.js +1 -0
  58. package/dist-es/index.js +6 -0
  59. package/dist-es/models/EvsServiceException.js +8 -0
  60. package/dist-es/models/index.js +1 -0
  61. package/dist-es/models/models_0.js +118 -0
  62. package/dist-es/pagination/Interfaces.js +1 -0
  63. package/dist-es/pagination/ListEnvironmentHostsPaginator.js +4 -0
  64. package/dist-es/pagination/ListEnvironmentVlansPaginator.js +4 -0
  65. package/dist-es/pagination/ListEnvironmentsPaginator.js +4 -0
  66. package/dist-es/pagination/index.js +4 -0
  67. package/dist-es/protocols/Aws_json1_0.js +511 -0
  68. package/dist-es/runtimeConfig.browser.js +34 -0
  69. package/dist-es/runtimeConfig.js +51 -0
  70. package/dist-es/runtimeConfig.native.js +11 -0
  71. package/dist-es/runtimeConfig.shared.js +30 -0
  72. package/dist-es/runtimeExtensions.js +9 -0
  73. package/dist-types/Evs.d.ts +88 -0
  74. package/dist-types/EvsClient.d.ts +198 -0
  75. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  76. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  77. package/dist-types/commands/CreateEnvironmentCommand.d.ts +197 -0
  78. package/dist-types/commands/CreateEnvironmentHostCommand.d.ts +113 -0
  79. package/dist-types/commands/DeleteEnvironmentCommand.d.ts +133 -0
  80. package/dist-types/commands/DeleteEnvironmentHostCommand.d.ts +107 -0
  81. package/dist-types/commands/GetEnvironmentCommand.d.ts +132 -0
  82. package/dist-types/commands/ListEnvironmentHostsCommand.d.ts +100 -0
  83. package/dist-types/commands/ListEnvironmentVlansCommand.d.ts +93 -0
  84. package/dist-types/commands/ListEnvironmentsCommand.d.ts +91 -0
  85. package/dist-types/commands/ListTagsForResourceCommand.d.ts +77 -0
  86. package/dist-types/commands/TagResourceCommand.d.ts +82 -0
  87. package/dist-types/commands/UntagResourceCommand.d.ts +79 -0
  88. package/dist-types/commands/index.d.ts +11 -0
  89. package/dist-types/endpoint/EndpointParameters.d.ts +38 -0
  90. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  91. package/dist-types/endpoint/ruleset.d.ts +2 -0
  92. package/dist-types/extensionConfiguration.d.ts +9 -0
  93. package/dist-types/index.d.ts +14 -0
  94. package/dist-types/models/EvsServiceException.d.ts +14 -0
  95. package/dist-types/models/index.d.ts +1 -0
  96. package/dist-types/models/models_0.d.ts +1083 -0
  97. package/dist-types/pagination/Interfaces.d.ts +8 -0
  98. package/dist-types/pagination/ListEnvironmentHostsPaginator.d.ts +7 -0
  99. package/dist-types/pagination/ListEnvironmentVlansPaginator.d.ts +7 -0
  100. package/dist-types/pagination/ListEnvironmentsPaginator.d.ts +7 -0
  101. package/dist-types/pagination/index.d.ts +4 -0
  102. package/dist-types/protocols/Aws_json1_0.d.ts +101 -0
  103. package/dist-types/runtimeConfig.browser.d.ts +50 -0
  104. package/dist-types/runtimeConfig.d.ts +50 -0
  105. package/dist-types/runtimeConfig.native.d.ts +49 -0
  106. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  107. package/dist-types/runtimeExtensions.d.ts +17 -0
  108. package/dist-types/ts3.4/Evs.d.ts +193 -0
  109. package/dist-types/ts3.4/EvsClient.d.ts +182 -0
  110. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  111. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +46 -0
  112. package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +51 -0
  113. package/dist-types/ts3.4/commands/CreateEnvironmentHostCommand.d.ts +51 -0
  114. package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +51 -0
  115. package/dist-types/ts3.4/commands/DeleteEnvironmentHostCommand.d.ts +51 -0
  116. package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +50 -0
  117. package/dist-types/ts3.4/commands/ListEnvironmentHostsCommand.d.ts +51 -0
  118. package/dist-types/ts3.4/commands/ListEnvironmentVlansCommand.d.ts +51 -0
  119. package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +50 -0
  120. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  121. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  122. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  123. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  124. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +48 -0
  125. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  126. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  127. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  128. package/dist-types/ts3.4/index.d.ts +9 -0
  129. package/dist-types/ts3.4/models/EvsServiceException.d.ts +9 -0
  130. package/dist-types/ts3.4/models/index.d.ts +1 -0
  131. package/dist-types/ts3.4/models/models_0.d.ts +306 -0
  132. package/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
  133. package/dist-types/ts3.4/pagination/ListEnvironmentHostsPaginator.d.ts +11 -0
  134. package/dist-types/ts3.4/pagination/ListEnvironmentVlansPaginator.d.ts +11 -0
  135. package/dist-types/ts3.4/pagination/ListEnvironmentsPaginator.d.ts +11 -0
  136. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  137. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +137 -0
  138. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +90 -0
  139. package/dist-types/ts3.4/runtimeConfig.d.ts +89 -0
  140. package/dist-types/ts3.4/runtimeConfig.native.d.ts +94 -0
  141. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  142. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  143. package/package.json +101 -0
@@ -0,0 +1,182 @@
1
+ import {
2
+ HostHeaderInputConfig,
3
+ HostHeaderResolvedConfig,
4
+ } from "@aws-sdk/middleware-host-header";
5
+ import {
6
+ UserAgentInputConfig,
7
+ UserAgentResolvedConfig,
8
+ } from "@aws-sdk/middleware-user-agent";
9
+ import {
10
+ RegionInputConfig,
11
+ RegionResolvedConfig,
12
+ } from "@smithy/config-resolver";
13
+ import {
14
+ EndpointInputConfig,
15
+ EndpointResolvedConfig,
16
+ } from "@smithy/middleware-endpoint";
17
+ import {
18
+ RetryInputConfig,
19
+ RetryResolvedConfig,
20
+ } from "@smithy/middleware-retry";
21
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
22
+ import {
23
+ Client as __Client,
24
+ DefaultsMode as __DefaultsMode,
25
+ SmithyConfiguration as __SmithyConfiguration,
26
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
27
+ } from "@smithy/smithy-client";
28
+ import {
29
+ AwsCredentialIdentityProvider,
30
+ BodyLengthCalculator as __BodyLengthCalculator,
31
+ CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
+ ChecksumConstructor as __ChecksumConstructor,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ StreamCollector as __StreamCollector,
41
+ UrlParser as __UrlParser,
42
+ UserAgent as __UserAgent,
43
+ } from "@smithy/types";
44
+ import {
45
+ HttpAuthSchemeInputConfig,
46
+ HttpAuthSchemeResolvedConfig,
47
+ } from "./auth/httpAuthSchemeProvider";
48
+ import {
49
+ CreateEnvironmentCommandInput,
50
+ CreateEnvironmentCommandOutput,
51
+ } from "./commands/CreateEnvironmentCommand";
52
+ import {
53
+ CreateEnvironmentHostCommandInput,
54
+ CreateEnvironmentHostCommandOutput,
55
+ } from "./commands/CreateEnvironmentHostCommand";
56
+ import {
57
+ DeleteEnvironmentCommandInput,
58
+ DeleteEnvironmentCommandOutput,
59
+ } from "./commands/DeleteEnvironmentCommand";
60
+ import {
61
+ DeleteEnvironmentHostCommandInput,
62
+ DeleteEnvironmentHostCommandOutput,
63
+ } from "./commands/DeleteEnvironmentHostCommand";
64
+ import {
65
+ GetEnvironmentCommandInput,
66
+ GetEnvironmentCommandOutput,
67
+ } from "./commands/GetEnvironmentCommand";
68
+ import {
69
+ ListEnvironmentHostsCommandInput,
70
+ ListEnvironmentHostsCommandOutput,
71
+ } from "./commands/ListEnvironmentHostsCommand";
72
+ import {
73
+ ListEnvironmentsCommandInput,
74
+ ListEnvironmentsCommandOutput,
75
+ } from "./commands/ListEnvironmentsCommand";
76
+ import {
77
+ ListEnvironmentVlansCommandInput,
78
+ ListEnvironmentVlansCommandOutput,
79
+ } from "./commands/ListEnvironmentVlansCommand";
80
+ import {
81
+ ListTagsForResourceCommandInput,
82
+ ListTagsForResourceCommandOutput,
83
+ } from "./commands/ListTagsForResourceCommand";
84
+ import {
85
+ TagResourceCommandInput,
86
+ TagResourceCommandOutput,
87
+ } from "./commands/TagResourceCommand";
88
+ import {
89
+ UntagResourceCommandInput,
90
+ UntagResourceCommandOutput,
91
+ } from "./commands/UntagResourceCommand";
92
+ import {
93
+ ClientInputEndpointParameters,
94
+ ClientResolvedEndpointParameters,
95
+ EndpointParameters,
96
+ } from "./endpoint/EndpointParameters";
97
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
98
+ export { __Client };
99
+ export type ServiceInputTypes =
100
+ | CreateEnvironmentCommandInput
101
+ | CreateEnvironmentHostCommandInput
102
+ | DeleteEnvironmentCommandInput
103
+ | DeleteEnvironmentHostCommandInput
104
+ | GetEnvironmentCommandInput
105
+ | ListEnvironmentHostsCommandInput
106
+ | ListEnvironmentVlansCommandInput
107
+ | ListEnvironmentsCommandInput
108
+ | ListTagsForResourceCommandInput
109
+ | TagResourceCommandInput
110
+ | UntagResourceCommandInput;
111
+ export type ServiceOutputTypes =
112
+ | CreateEnvironmentCommandOutput
113
+ | CreateEnvironmentHostCommandOutput
114
+ | DeleteEnvironmentCommandOutput
115
+ | DeleteEnvironmentHostCommandOutput
116
+ | GetEnvironmentCommandOutput
117
+ | ListEnvironmentHostsCommandOutput
118
+ | ListEnvironmentVlansCommandOutput
119
+ | ListEnvironmentsCommandOutput
120
+ | ListTagsForResourceCommandOutput
121
+ | TagResourceCommandOutput
122
+ | UntagResourceCommandOutput;
123
+ export interface ClientDefaults
124
+ extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
125
+ requestHandler?: __HttpHandlerUserInput;
126
+ sha256?: __ChecksumConstructor | __HashConstructor;
127
+ urlParser?: __UrlParser;
128
+ bodyLengthChecker?: __BodyLengthCalculator;
129
+ streamCollector?: __StreamCollector;
130
+ base64Decoder?: __Decoder;
131
+ base64Encoder?: __Encoder;
132
+ utf8Decoder?: __Decoder;
133
+ utf8Encoder?: __Encoder;
134
+ runtime?: string;
135
+ disableHostPrefix?: boolean;
136
+ serviceId?: string;
137
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
138
+ useFipsEndpoint?: boolean | __Provider<boolean>;
139
+ region?: string | __Provider<string>;
140
+ profile?: string;
141
+ defaultUserAgentProvider?: Provider<__UserAgent>;
142
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
143
+ maxAttempts?: number | __Provider<number>;
144
+ retryMode?: string | __Provider<string>;
145
+ logger?: __Logger;
146
+ extensions?: RuntimeExtension[];
147
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
148
+ }
149
+ export type EvsClientConfigType = Partial<
150
+ __SmithyConfiguration<__HttpHandlerOptions>
151
+ > &
152
+ ClientDefaults &
153
+ UserAgentInputConfig &
154
+ RetryInputConfig &
155
+ RegionInputConfig &
156
+ HostHeaderInputConfig &
157
+ EndpointInputConfig<EndpointParameters> &
158
+ HttpAuthSchemeInputConfig &
159
+ ClientInputEndpointParameters;
160
+ export interface EvsClientConfig extends EvsClientConfigType {}
161
+ export type EvsClientResolvedConfigType =
162
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
163
+ Required<ClientDefaults> &
164
+ RuntimeExtensionsConfig &
165
+ UserAgentResolvedConfig &
166
+ RetryResolvedConfig &
167
+ RegionResolvedConfig &
168
+ HostHeaderResolvedConfig &
169
+ EndpointResolvedConfig<EndpointParameters> &
170
+ HttpAuthSchemeResolvedConfig &
171
+ ClientResolvedEndpointParameters;
172
+ export interface EvsClientResolvedConfig extends EvsClientResolvedConfigType {}
173
+ export declare class EvsClient extends __Client<
174
+ __HttpHandlerOptions,
175
+ ServiceInputTypes,
176
+ ServiceOutputTypes,
177
+ EvsClientResolvedConfig
178
+ > {
179
+ readonly config: EvsClientResolvedConfig;
180
+ constructor(...[configuration]: __CheckOptionalClientConfig<EvsClientConfig>);
181
+ destroy(): void;
182
+ }
@@ -0,0 +1,32 @@
1
+ import {
2
+ AwsCredentialIdentity,
3
+ AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
+ } from "@smithy/types";
6
+ import { EvsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
+ export interface HttpAuthExtensionConfiguration {
8
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
+ httpAuthSchemes(): HttpAuthScheme[];
10
+ setHttpAuthSchemeProvider(
11
+ httpAuthSchemeProvider: EvsHttpAuthSchemeProvider
12
+ ): void;
13
+ httpAuthSchemeProvider(): EvsHttpAuthSchemeProvider;
14
+ setCredentials(
15
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
+ ): void;
17
+ credentials():
18
+ | AwsCredentialIdentity
19
+ | AwsCredentialIdentityProvider
20
+ | undefined;
21
+ }
22
+ export type HttpAuthRuntimeConfig = Partial<{
23
+ httpAuthSchemes: HttpAuthScheme[];
24
+ httpAuthSchemeProvider: EvsHttpAuthSchemeProvider;
25
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
+ }>;
27
+ export declare const getHttpAuthExtensionConfiguration: (
28
+ runtimeConfig: HttpAuthRuntimeConfig
29
+ ) => HttpAuthExtensionConfiguration;
30
+ export declare const resolveHttpAuthRuntimeConfig: (
31
+ config: HttpAuthExtensionConfiguration
32
+ ) => HttpAuthRuntimeConfig;
@@ -0,0 +1,46 @@
1
+ import {
2
+ AwsSdkSigV4AuthInputConfig,
3
+ AwsSdkSigV4AuthResolvedConfig,
4
+ AwsSdkSigV4PreviouslyResolved,
5
+ } from "@aws-sdk/core";
6
+ import {
7
+ HandlerExecutionContext,
8
+ HttpAuthScheme,
9
+ HttpAuthSchemeParameters,
10
+ HttpAuthSchemeParametersProvider,
11
+ HttpAuthSchemeProvider,
12
+ Provider,
13
+ } from "@smithy/types";
14
+ import { EvsClientResolvedConfig } from "../EvsClient";
15
+ export interface EvsHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
16
+ region?: string;
17
+ }
18
+ export interface EvsHttpAuthSchemeParametersProvider
19
+ extends HttpAuthSchemeParametersProvider<
20
+ EvsClientResolvedConfig,
21
+ HandlerExecutionContext,
22
+ EvsHttpAuthSchemeParameters,
23
+ object
24
+ > {}
25
+ export declare const defaultEvsHttpAuthSchemeParametersProvider: (
26
+ config: EvsClientResolvedConfig,
27
+ context: HandlerExecutionContext,
28
+ input: object
29
+ ) => Promise<EvsHttpAuthSchemeParameters>;
30
+ export interface EvsHttpAuthSchemeProvider
31
+ extends HttpAuthSchemeProvider<EvsHttpAuthSchemeParameters> {}
32
+ export declare const defaultEvsHttpAuthSchemeProvider: EvsHttpAuthSchemeProvider;
33
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
34
+ authSchemePreference?: string[] | Provider<string[]>;
35
+ httpAuthSchemes?: HttpAuthScheme[];
36
+ httpAuthSchemeProvider?: EvsHttpAuthSchemeProvider;
37
+ }
38
+ export interface HttpAuthSchemeResolvedConfig
39
+ extends AwsSdkSigV4AuthResolvedConfig {
40
+ readonly authSchemePreference: Provider<string[]>;
41
+ readonly httpAuthSchemes: HttpAuthScheme[];
42
+ readonly httpAuthSchemeProvider: EvsHttpAuthSchemeProvider;
43
+ }
44
+ export declare const resolveHttpAuthSchemeConfig: <T>(
45
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
46
+ ) => T & HttpAuthSchemeResolvedConfig;
@@ -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
+ CreateEnvironmentRequest,
10
+ CreateEnvironmentResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateEnvironmentCommandInput
15
+ extends CreateEnvironmentRequest {}
16
+ export interface CreateEnvironmentCommandOutput
17
+ extends CreateEnvironmentResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateEnvironmentCommand_base: {
20
+ new (
21
+ input: CreateEnvironmentCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateEnvironmentCommandInput,
24
+ CreateEnvironmentCommandOutput,
25
+ EvsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateEnvironmentCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateEnvironmentCommandInput,
33
+ CreateEnvironmentCommandOutput,
34
+ EvsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateEnvironmentCommand extends CreateEnvironmentCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateEnvironmentRequest;
44
+ output: CreateEnvironmentResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateEnvironmentCommandInput;
48
+ output: CreateEnvironmentCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -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
+ CreateEnvironmentHostRequest,
10
+ CreateEnvironmentHostResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateEnvironmentHostCommandInput
15
+ extends CreateEnvironmentHostRequest {}
16
+ export interface CreateEnvironmentHostCommandOutput
17
+ extends CreateEnvironmentHostResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateEnvironmentHostCommand_base: {
20
+ new (
21
+ input: CreateEnvironmentHostCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateEnvironmentHostCommandInput,
24
+ CreateEnvironmentHostCommandOutput,
25
+ EvsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateEnvironmentHostCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateEnvironmentHostCommandInput,
33
+ CreateEnvironmentHostCommandOutput,
34
+ EvsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateEnvironmentHostCommand extends CreateEnvironmentHostCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateEnvironmentHostRequest;
44
+ output: CreateEnvironmentHostResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateEnvironmentHostCommandInput;
48
+ output: CreateEnvironmentHostCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -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
+ DeleteEnvironmentRequest,
10
+ DeleteEnvironmentResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteEnvironmentCommandInput
15
+ extends DeleteEnvironmentRequest {}
16
+ export interface DeleteEnvironmentCommandOutput
17
+ extends DeleteEnvironmentResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteEnvironmentCommand_base: {
20
+ new (
21
+ input: DeleteEnvironmentCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteEnvironmentCommandInput,
24
+ DeleteEnvironmentCommandOutput,
25
+ EvsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DeleteEnvironmentCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteEnvironmentCommandInput,
33
+ DeleteEnvironmentCommandOutput,
34
+ EvsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteEnvironmentCommand extends DeleteEnvironmentCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteEnvironmentRequest;
44
+ output: DeleteEnvironmentResponse;
45
+ };
46
+ sdk: {
47
+ input: DeleteEnvironmentCommandInput;
48
+ output: DeleteEnvironmentCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -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
+ DeleteEnvironmentHostRequest,
10
+ DeleteEnvironmentHostResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteEnvironmentHostCommandInput
15
+ extends DeleteEnvironmentHostRequest {}
16
+ export interface DeleteEnvironmentHostCommandOutput
17
+ extends DeleteEnvironmentHostResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteEnvironmentHostCommand_base: {
20
+ new (
21
+ input: DeleteEnvironmentHostCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteEnvironmentHostCommandInput,
24
+ DeleteEnvironmentHostCommandOutput,
25
+ EvsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DeleteEnvironmentHostCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteEnvironmentHostCommandInput,
33
+ DeleteEnvironmentHostCommandOutput,
34
+ EvsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteEnvironmentHostCommand extends DeleteEnvironmentHostCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteEnvironmentHostRequest;
44
+ output: DeleteEnvironmentHostResponse;
45
+ };
46
+ sdk: {
47
+ input: DeleteEnvironmentHostCommandInput;
48
+ output: DeleteEnvironmentHostCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -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
+ GetEnvironmentRequest,
10
+ GetEnvironmentResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetEnvironmentCommandInput extends GetEnvironmentRequest {}
15
+ export interface GetEnvironmentCommandOutput
16
+ extends GetEnvironmentResponse,
17
+ __MetadataBearer {}
18
+ declare const GetEnvironmentCommand_base: {
19
+ new (
20
+ input: GetEnvironmentCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetEnvironmentCommandInput,
23
+ GetEnvironmentCommandOutput,
24
+ EvsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ input: GetEnvironmentCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetEnvironmentCommandInput,
32
+ GetEnvironmentCommandOutput,
33
+ EvsClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class GetEnvironmentCommand extends GetEnvironmentCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: GetEnvironmentRequest;
43
+ output: GetEnvironmentResponse;
44
+ };
45
+ sdk: {
46
+ input: GetEnvironmentCommandInput;
47
+ output: GetEnvironmentCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -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
+ ListEnvironmentHostsRequest,
10
+ ListEnvironmentHostsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListEnvironmentHostsCommandInput
15
+ extends ListEnvironmentHostsRequest {}
16
+ export interface ListEnvironmentHostsCommandOutput
17
+ extends ListEnvironmentHostsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListEnvironmentHostsCommand_base: {
20
+ new (
21
+ input: ListEnvironmentHostsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListEnvironmentHostsCommandInput,
24
+ ListEnvironmentHostsCommandOutput,
25
+ EvsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListEnvironmentHostsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListEnvironmentHostsCommandInput,
33
+ ListEnvironmentHostsCommandOutput,
34
+ EvsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListEnvironmentHostsCommand extends ListEnvironmentHostsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListEnvironmentHostsRequest;
44
+ output: ListEnvironmentHostsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListEnvironmentHostsCommandInput;
48
+ output: ListEnvironmentHostsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -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
+ ListEnvironmentVlansRequest,
10
+ ListEnvironmentVlansResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListEnvironmentVlansCommandInput
15
+ extends ListEnvironmentVlansRequest {}
16
+ export interface ListEnvironmentVlansCommandOutput
17
+ extends ListEnvironmentVlansResponse,
18
+ __MetadataBearer {}
19
+ declare const ListEnvironmentVlansCommand_base: {
20
+ new (
21
+ input: ListEnvironmentVlansCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListEnvironmentVlansCommandInput,
24
+ ListEnvironmentVlansCommandOutput,
25
+ EvsClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListEnvironmentVlansCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListEnvironmentVlansCommandInput,
33
+ ListEnvironmentVlansCommandOutput,
34
+ EvsClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListEnvironmentVlansCommand extends ListEnvironmentVlansCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListEnvironmentVlansRequest;
44
+ output: ListEnvironmentVlansResponse;
45
+ };
46
+ sdk: {
47
+ input: ListEnvironmentVlansCommandInput;
48
+ output: ListEnvironmentVlansCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -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
+ ListEnvironmentsRequest,
10
+ ListEnvironmentsResponse,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListEnvironmentsCommandInput extends ListEnvironmentsRequest {}
15
+ export interface ListEnvironmentsCommandOutput
16
+ extends ListEnvironmentsResponse,
17
+ __MetadataBearer {}
18
+ declare const ListEnvironmentsCommand_base: {
19
+ new (
20
+ input: ListEnvironmentsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListEnvironmentsCommandInput,
23
+ ListEnvironmentsCommandOutput,
24
+ EvsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ ...[input]: [] | [ListEnvironmentsCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListEnvironmentsCommandInput,
32
+ ListEnvironmentsCommandOutput,
33
+ EvsClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListEnvironmentsCommand extends ListEnvironmentsCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListEnvironmentsRequest;
43
+ output: ListEnvironmentsResponse;
44
+ };
45
+ sdk: {
46
+ input: ListEnvironmentsCommandInput;
47
+ output: ListEnvironmentsCommandOutput;
48
+ };
49
+ };
50
+ }