@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,8 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { EvsClient } from "../EvsClient";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface EvsPaginationConfiguration extends PaginationConfiguration {
7
+ client: EvsClient;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListEnvironmentHostsCommandInput, ListEnvironmentHostsCommandOutput } from "../commands/ListEnvironmentHostsCommand";
3
+ import { EvsPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListEnvironmentHosts: (config: EvsPaginationConfiguration, input: ListEnvironmentHostsCommandInput, ...rest: any[]) => Paginator<ListEnvironmentHostsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListEnvironmentVlansCommandInput, ListEnvironmentVlansCommandOutput } from "../commands/ListEnvironmentVlansCommand";
3
+ import { EvsPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListEnvironmentVlans: (config: EvsPaginationConfiguration, input: ListEnvironmentVlansCommandInput, ...rest: any[]) => Paginator<ListEnvironmentVlansCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "../commands/ListEnvironmentsCommand";
3
+ import { EvsPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListEnvironments: (config: EvsPaginationConfiguration, input: ListEnvironmentsCommandInput, ...rest: any[]) => Paginator<ListEnvironmentsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListEnvironmentHostsPaginator";
3
+ export * from "./ListEnvironmentVlansPaginator";
4
+ export * from "./ListEnvironmentsPaginator";
@@ -0,0 +1,101 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "../commands/CreateEnvironmentCommand";
4
+ import { CreateEnvironmentHostCommandInput, CreateEnvironmentHostCommandOutput } from "../commands/CreateEnvironmentHostCommand";
5
+ import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "../commands/DeleteEnvironmentCommand";
6
+ import { DeleteEnvironmentHostCommandInput, DeleteEnvironmentHostCommandOutput } from "../commands/DeleteEnvironmentHostCommand";
7
+ import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "../commands/GetEnvironmentCommand";
8
+ import { ListEnvironmentHostsCommandInput, ListEnvironmentHostsCommandOutput } from "../commands/ListEnvironmentHostsCommand";
9
+ import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "../commands/ListEnvironmentsCommand";
10
+ import { ListEnvironmentVlansCommandInput, ListEnvironmentVlansCommandOutput } from "../commands/ListEnvironmentVlansCommand";
11
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
12
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
13
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
14
+ /**
15
+ * serializeAws_json1_0CreateEnvironmentCommand
16
+ */
17
+ export declare const se_CreateEnvironmentCommand: (input: CreateEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
+ /**
19
+ * serializeAws_json1_0CreateEnvironmentHostCommand
20
+ */
21
+ export declare const se_CreateEnvironmentHostCommand: (input: CreateEnvironmentHostCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
+ /**
23
+ * serializeAws_json1_0DeleteEnvironmentCommand
24
+ */
25
+ export declare const se_DeleteEnvironmentCommand: (input: DeleteEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
+ /**
27
+ * serializeAws_json1_0DeleteEnvironmentHostCommand
28
+ */
29
+ export declare const se_DeleteEnvironmentHostCommand: (input: DeleteEnvironmentHostCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
+ /**
31
+ * serializeAws_json1_0GetEnvironmentCommand
32
+ */
33
+ export declare const se_GetEnvironmentCommand: (input: GetEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
+ /**
35
+ * serializeAws_json1_0ListEnvironmentHostsCommand
36
+ */
37
+ export declare const se_ListEnvironmentHostsCommand: (input: ListEnvironmentHostsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
+ /**
39
+ * serializeAws_json1_0ListEnvironmentsCommand
40
+ */
41
+ export declare const se_ListEnvironmentsCommand: (input: ListEnvironmentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
+ /**
43
+ * serializeAws_json1_0ListEnvironmentVlansCommand
44
+ */
45
+ export declare const se_ListEnvironmentVlansCommand: (input: ListEnvironmentVlansCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
+ /**
47
+ * serializeAws_json1_0ListTagsForResourceCommand
48
+ */
49
+ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
+ /**
51
+ * serializeAws_json1_0TagResourceCommand
52
+ */
53
+ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
+ /**
55
+ * serializeAws_json1_0UntagResourceCommand
56
+ */
57
+ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
+ /**
59
+ * deserializeAws_json1_0CreateEnvironmentCommand
60
+ */
61
+ export declare const de_CreateEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEnvironmentCommandOutput>;
62
+ /**
63
+ * deserializeAws_json1_0CreateEnvironmentHostCommand
64
+ */
65
+ export declare const de_CreateEnvironmentHostCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEnvironmentHostCommandOutput>;
66
+ /**
67
+ * deserializeAws_json1_0DeleteEnvironmentCommand
68
+ */
69
+ export declare const de_DeleteEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEnvironmentCommandOutput>;
70
+ /**
71
+ * deserializeAws_json1_0DeleteEnvironmentHostCommand
72
+ */
73
+ export declare const de_DeleteEnvironmentHostCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEnvironmentHostCommandOutput>;
74
+ /**
75
+ * deserializeAws_json1_0GetEnvironmentCommand
76
+ */
77
+ export declare const de_GetEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEnvironmentCommandOutput>;
78
+ /**
79
+ * deserializeAws_json1_0ListEnvironmentHostsCommand
80
+ */
81
+ export declare const de_ListEnvironmentHostsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnvironmentHostsCommandOutput>;
82
+ /**
83
+ * deserializeAws_json1_0ListEnvironmentsCommand
84
+ */
85
+ export declare const de_ListEnvironmentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnvironmentsCommandOutput>;
86
+ /**
87
+ * deserializeAws_json1_0ListEnvironmentVlansCommand
88
+ */
89
+ export declare const de_ListEnvironmentVlansCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnvironmentVlansCommandOutput>;
90
+ /**
91
+ * deserializeAws_json1_0ListTagsForResourceCommand
92
+ */
93
+ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
94
+ /**
95
+ * deserializeAws_json1_0TagResourceCommand
96
+ */
97
+ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
98
+ /**
99
+ * deserializeAws_json1_0UntagResourceCommand
100
+ */
101
+ export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
@@ -0,0 +1,50 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { EvsClientConfig } from "./EvsClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: EvsClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<any>;
14
+ requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ apiVersion: string;
21
+ cacheMiddleware?: boolean | undefined;
22
+ urlParser: import("@smithy/types").UrlParser;
23
+ base64Decoder: import("@smithy/types").Decoder;
24
+ base64Encoder: (_input: Uint8Array | string) => string;
25
+ utf8Decoder: import("@smithy/types").Decoder;
26
+ utf8Encoder: (input: Uint8Array | string) => string;
27
+ disableHostPrefix: boolean;
28
+ serviceId: string;
29
+ profile?: string;
30
+ logger: import("@smithy/types").Logger;
31
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
32
+ customUserAgent?: string | import("@smithy/types").UserAgent;
33
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
34
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
35
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
36
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
37
+ logger?: import("@smithy/types").Logger;
38
+ }) => import("@smithy/types").EndpointV2;
39
+ tls?: boolean;
40
+ serviceConfiguredEndpoint?: never;
41
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
42
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
43
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").EvsHttpAuthSchemeProvider;
44
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
45
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
46
+ signingEscapePath?: boolean;
47
+ systemClockOffset?: number;
48
+ signingRegion?: string;
49
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
50
+ };
@@ -0,0 +1,50 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { EvsClientConfig } from "./EvsClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: EvsClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
10
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
12
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
13
+ maxAttempts: number | import("@smithy/types").Provider<number>;
14
+ region: string | import("@smithy/types").Provider<string>;
15
+ requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
16
+ retryMode: string | import("@smithy/types").Provider<string>;
17
+ sha256: import("@smithy/types").HashConstructor;
18
+ streamCollector: import("@smithy/types").StreamCollector;
19
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
22
+ apiVersion: string;
23
+ cacheMiddleware?: boolean | undefined;
24
+ urlParser: import("@smithy/types").UrlParser;
25
+ base64Decoder: import("@smithy/types").Decoder;
26
+ base64Encoder: (_input: Uint8Array | string) => string;
27
+ utf8Decoder: import("@smithy/types").Decoder;
28
+ utf8Encoder: (input: Uint8Array | string) => string;
29
+ disableHostPrefix: boolean;
30
+ serviceId: string;
31
+ profile?: string;
32
+ logger: import("@smithy/types").Logger;
33
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
34
+ customUserAgent?: string | import("@smithy/types").UserAgent;
35
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
36
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
37
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
38
+ logger?: import("@smithy/types").Logger;
39
+ }) => import("@smithy/types").EndpointV2;
40
+ tls?: boolean;
41
+ serviceConfiguredEndpoint?: never;
42
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
43
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").EvsHttpAuthSchemeProvider;
44
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
45
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
46
+ signingEscapePath?: boolean;
47
+ systemClockOffset?: number;
48
+ signingRegion?: string;
49
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
50
+ };
@@ -0,0 +1,49 @@
1
+ import { EvsClientConfig } from "./EvsClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: EvsClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@smithy/types").HashConstructor;
8
+ requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
+ apiVersion: string;
10
+ cacheMiddleware?: boolean;
11
+ urlParser: import("@smithy/types").UrlParser;
12
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
13
+ streamCollector: import("@smithy/types").StreamCollector;
14
+ base64Decoder: import("@smithy/types").Decoder;
15
+ base64Encoder: (_input: Uint8Array | string) => string;
16
+ utf8Decoder: import("@smithy/types").Decoder;
17
+ utf8Encoder: (input: Uint8Array | string) => string;
18
+ disableHostPrefix: boolean;
19
+ serviceId: string;
20
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
+ region: string | import("@smithy/types").Provider<any>;
23
+ profile?: string;
24
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
25
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
26
+ maxAttempts: number | import("@smithy/types").Provider<number>;
27
+ retryMode: string | import("@smithy/types").Provider<string>;
28
+ logger: import("@smithy/types").Logger;
29
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
31
+ customUserAgent?: string | import("@smithy/types").UserAgent;
32
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
33
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
34
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
35
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
36
+ logger?: import("@smithy/types").Logger;
37
+ }) => import("@smithy/types").EndpointV2;
38
+ tls?: boolean;
39
+ serviceConfiguredEndpoint?: never;
40
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
41
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
42
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").EvsHttpAuthSchemeProvider;
43
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
44
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
45
+ signingEscapePath?: boolean;
46
+ systemClockOffset?: number;
47
+ signingRegion?: string;
48
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
49
+ };
@@ -0,0 +1,21 @@
1
+ import { EvsClientConfig } from "./EvsClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: EvsClientConfig) => {
6
+ apiVersion: string;
7
+ base64Decoder: import("@smithy/types").Decoder;
8
+ base64Encoder: (_input: Uint8Array | string) => string;
9
+ disableHostPrefix: boolean;
10
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
+ logger?: import("@smithy/types").Logger;
12
+ }) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").EvsHttpAuthSchemeProvider;
15
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
+ logger: import("@smithy/types").Logger;
17
+ serviceId: string;
18
+ urlParser: import("@smithy/types").UrlParser;
19
+ utf8Decoder: import("@smithy/types").Decoder;
20
+ utf8Encoder: (input: Uint8Array | string) => string;
21
+ };
@@ -0,0 +1,17 @@
1
+ import { EvsExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(extensionConfiguration: EvsExtensionConfiguration): void;
7
+ }
8
+ /**
9
+ * @public
10
+ */
11
+ export interface RuntimeExtensionsConfig {
12
+ extensions: RuntimeExtension[];
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
@@ -0,0 +1,193 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ CreateEnvironmentCommandInput,
4
+ CreateEnvironmentCommandOutput,
5
+ } from "./commands/CreateEnvironmentCommand";
6
+ import {
7
+ CreateEnvironmentHostCommandInput,
8
+ CreateEnvironmentHostCommandOutput,
9
+ } from "./commands/CreateEnvironmentHostCommand";
10
+ import {
11
+ DeleteEnvironmentCommandInput,
12
+ DeleteEnvironmentCommandOutput,
13
+ } from "./commands/DeleteEnvironmentCommand";
14
+ import {
15
+ DeleteEnvironmentHostCommandInput,
16
+ DeleteEnvironmentHostCommandOutput,
17
+ } from "./commands/DeleteEnvironmentHostCommand";
18
+ import {
19
+ GetEnvironmentCommandInput,
20
+ GetEnvironmentCommandOutput,
21
+ } from "./commands/GetEnvironmentCommand";
22
+ import {
23
+ ListEnvironmentHostsCommandInput,
24
+ ListEnvironmentHostsCommandOutput,
25
+ } from "./commands/ListEnvironmentHostsCommand";
26
+ import {
27
+ ListEnvironmentsCommandInput,
28
+ ListEnvironmentsCommandOutput,
29
+ } from "./commands/ListEnvironmentsCommand";
30
+ import {
31
+ ListEnvironmentVlansCommandInput,
32
+ ListEnvironmentVlansCommandOutput,
33
+ } from "./commands/ListEnvironmentVlansCommand";
34
+ import {
35
+ ListTagsForResourceCommandInput,
36
+ ListTagsForResourceCommandOutput,
37
+ } from "./commands/ListTagsForResourceCommand";
38
+ import {
39
+ TagResourceCommandInput,
40
+ TagResourceCommandOutput,
41
+ } from "./commands/TagResourceCommand";
42
+ import {
43
+ UntagResourceCommandInput,
44
+ UntagResourceCommandOutput,
45
+ } from "./commands/UntagResourceCommand";
46
+ import { EvsClient } from "./EvsClient";
47
+ export interface Evs {
48
+ createEnvironment(
49
+ args: CreateEnvironmentCommandInput,
50
+ options?: __HttpHandlerOptions
51
+ ): Promise<CreateEnvironmentCommandOutput>;
52
+ createEnvironment(
53
+ args: CreateEnvironmentCommandInput,
54
+ cb: (err: any, data?: CreateEnvironmentCommandOutput) => void
55
+ ): void;
56
+ createEnvironment(
57
+ args: CreateEnvironmentCommandInput,
58
+ options: __HttpHandlerOptions,
59
+ cb: (err: any, data?: CreateEnvironmentCommandOutput) => void
60
+ ): void;
61
+ createEnvironmentHost(
62
+ args: CreateEnvironmentHostCommandInput,
63
+ options?: __HttpHandlerOptions
64
+ ): Promise<CreateEnvironmentHostCommandOutput>;
65
+ createEnvironmentHost(
66
+ args: CreateEnvironmentHostCommandInput,
67
+ cb: (err: any, data?: CreateEnvironmentHostCommandOutput) => void
68
+ ): void;
69
+ createEnvironmentHost(
70
+ args: CreateEnvironmentHostCommandInput,
71
+ options: __HttpHandlerOptions,
72
+ cb: (err: any, data?: CreateEnvironmentHostCommandOutput) => void
73
+ ): void;
74
+ deleteEnvironment(
75
+ args: DeleteEnvironmentCommandInput,
76
+ options?: __HttpHandlerOptions
77
+ ): Promise<DeleteEnvironmentCommandOutput>;
78
+ deleteEnvironment(
79
+ args: DeleteEnvironmentCommandInput,
80
+ cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void
81
+ ): void;
82
+ deleteEnvironment(
83
+ args: DeleteEnvironmentCommandInput,
84
+ options: __HttpHandlerOptions,
85
+ cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void
86
+ ): void;
87
+ deleteEnvironmentHost(
88
+ args: DeleteEnvironmentHostCommandInput,
89
+ options?: __HttpHandlerOptions
90
+ ): Promise<DeleteEnvironmentHostCommandOutput>;
91
+ deleteEnvironmentHost(
92
+ args: DeleteEnvironmentHostCommandInput,
93
+ cb: (err: any, data?: DeleteEnvironmentHostCommandOutput) => void
94
+ ): void;
95
+ deleteEnvironmentHost(
96
+ args: DeleteEnvironmentHostCommandInput,
97
+ options: __HttpHandlerOptions,
98
+ cb: (err: any, data?: DeleteEnvironmentHostCommandOutput) => void
99
+ ): void;
100
+ getEnvironment(
101
+ args: GetEnvironmentCommandInput,
102
+ options?: __HttpHandlerOptions
103
+ ): Promise<GetEnvironmentCommandOutput>;
104
+ getEnvironment(
105
+ args: GetEnvironmentCommandInput,
106
+ cb: (err: any, data?: GetEnvironmentCommandOutput) => void
107
+ ): void;
108
+ getEnvironment(
109
+ args: GetEnvironmentCommandInput,
110
+ options: __HttpHandlerOptions,
111
+ cb: (err: any, data?: GetEnvironmentCommandOutput) => void
112
+ ): void;
113
+ listEnvironmentHosts(
114
+ args: ListEnvironmentHostsCommandInput,
115
+ options?: __HttpHandlerOptions
116
+ ): Promise<ListEnvironmentHostsCommandOutput>;
117
+ listEnvironmentHosts(
118
+ args: ListEnvironmentHostsCommandInput,
119
+ cb: (err: any, data?: ListEnvironmentHostsCommandOutput) => void
120
+ ): void;
121
+ listEnvironmentHosts(
122
+ args: ListEnvironmentHostsCommandInput,
123
+ options: __HttpHandlerOptions,
124
+ cb: (err: any, data?: ListEnvironmentHostsCommandOutput) => void
125
+ ): void;
126
+ listEnvironments(): Promise<ListEnvironmentsCommandOutput>;
127
+ listEnvironments(
128
+ args: ListEnvironmentsCommandInput,
129
+ options?: __HttpHandlerOptions
130
+ ): Promise<ListEnvironmentsCommandOutput>;
131
+ listEnvironments(
132
+ args: ListEnvironmentsCommandInput,
133
+ cb: (err: any, data?: ListEnvironmentsCommandOutput) => void
134
+ ): void;
135
+ listEnvironments(
136
+ args: ListEnvironmentsCommandInput,
137
+ options: __HttpHandlerOptions,
138
+ cb: (err: any, data?: ListEnvironmentsCommandOutput) => void
139
+ ): void;
140
+ listEnvironmentVlans(
141
+ args: ListEnvironmentVlansCommandInput,
142
+ options?: __HttpHandlerOptions
143
+ ): Promise<ListEnvironmentVlansCommandOutput>;
144
+ listEnvironmentVlans(
145
+ args: ListEnvironmentVlansCommandInput,
146
+ cb: (err: any, data?: ListEnvironmentVlansCommandOutput) => void
147
+ ): void;
148
+ listEnvironmentVlans(
149
+ args: ListEnvironmentVlansCommandInput,
150
+ options: __HttpHandlerOptions,
151
+ cb: (err: any, data?: ListEnvironmentVlansCommandOutput) => void
152
+ ): void;
153
+ listTagsForResource(
154
+ args: ListTagsForResourceCommandInput,
155
+ options?: __HttpHandlerOptions
156
+ ): Promise<ListTagsForResourceCommandOutput>;
157
+ listTagsForResource(
158
+ args: ListTagsForResourceCommandInput,
159
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
160
+ ): void;
161
+ listTagsForResource(
162
+ args: ListTagsForResourceCommandInput,
163
+ options: __HttpHandlerOptions,
164
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
165
+ ): void;
166
+ tagResource(
167
+ args: TagResourceCommandInput,
168
+ options?: __HttpHandlerOptions
169
+ ): Promise<TagResourceCommandOutput>;
170
+ tagResource(
171
+ args: TagResourceCommandInput,
172
+ cb: (err: any, data?: TagResourceCommandOutput) => void
173
+ ): void;
174
+ tagResource(
175
+ args: TagResourceCommandInput,
176
+ options: __HttpHandlerOptions,
177
+ cb: (err: any, data?: TagResourceCommandOutput) => void
178
+ ): void;
179
+ untagResource(
180
+ args: UntagResourceCommandInput,
181
+ options?: __HttpHandlerOptions
182
+ ): Promise<UntagResourceCommandOutput>;
183
+ untagResource(
184
+ args: UntagResourceCommandInput,
185
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
186
+ ): void;
187
+ untagResource(
188
+ args: UntagResourceCommandInput,
189
+ options: __HttpHandlerOptions,
190
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
191
+ ): void;
192
+ }
193
+ export declare class Evs extends EvsClient implements Evs {}