@aws-sdk/client-evs 3.927.0 → 3.929.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +672 -695
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/EvsClient.js +2 -0
- package/dist-es/commands/AssociateEipToVlanCommand.js +3 -9
- package/dist-es/commands/CreateEnvironmentCommand.js +3 -9
- package/dist-es/commands/CreateEnvironmentHostCommand.js +3 -9
- package/dist-es/commands/DeleteEnvironmentCommand.js +3 -9
- package/dist-es/commands/DeleteEnvironmentHostCommand.js +3 -9
- package/dist-es/commands/DisassociateEipFromVlanCommand.js +3 -9
- package/dist-es/commands/GetEnvironmentCommand.js +3 -9
- package/dist-es/commands/ListEnvironmentHostsCommand.js +3 -9
- package/dist-es/commands/ListEnvironmentVlansCommand.js +3 -9
- package/dist-es/commands/ListEnvironmentsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +633 -0
- package/dist-types/EvsClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +80 -0
- package/dist-types/ts3.4/EvsClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +85 -0
- package/package.json +5 -6
- package/dist-es/protocols/Aws_json1_0.js +0 -590
- package/dist-types/protocols/Aws_json1_0.d.ts +0 -119
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -161
|
@@ -1,119 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { AssociateEipToVlanCommandInput, AssociateEipToVlanCommandOutput } from "../commands/AssociateEipToVlanCommand";
|
|
4
|
-
import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "../commands/CreateEnvironmentCommand";
|
|
5
|
-
import { CreateEnvironmentHostCommandInput, CreateEnvironmentHostCommandOutput } from "../commands/CreateEnvironmentHostCommand";
|
|
6
|
-
import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "../commands/DeleteEnvironmentCommand";
|
|
7
|
-
import { DeleteEnvironmentHostCommandInput, DeleteEnvironmentHostCommandOutput } from "../commands/DeleteEnvironmentHostCommand";
|
|
8
|
-
import { DisassociateEipFromVlanCommandInput, DisassociateEipFromVlanCommandOutput } from "../commands/DisassociateEipFromVlanCommand";
|
|
9
|
-
import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "../commands/GetEnvironmentCommand";
|
|
10
|
-
import { ListEnvironmentHostsCommandInput, ListEnvironmentHostsCommandOutput } from "../commands/ListEnvironmentHostsCommand";
|
|
11
|
-
import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "../commands/ListEnvironmentsCommand";
|
|
12
|
-
import { ListEnvironmentVlansCommandInput, ListEnvironmentVlansCommandOutput } from "../commands/ListEnvironmentVlansCommand";
|
|
13
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
14
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
15
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
16
|
-
/**
|
|
17
|
-
* serializeAws_json1_0AssociateEipToVlanCommand
|
|
18
|
-
*/
|
|
19
|
-
export declare const se_AssociateEipToVlanCommand: (input: AssociateEipToVlanCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
20
|
-
/**
|
|
21
|
-
* serializeAws_json1_0CreateEnvironmentCommand
|
|
22
|
-
*/
|
|
23
|
-
export declare const se_CreateEnvironmentCommand: (input: CreateEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
24
|
-
/**
|
|
25
|
-
* serializeAws_json1_0CreateEnvironmentHostCommand
|
|
26
|
-
*/
|
|
27
|
-
export declare const se_CreateEnvironmentHostCommand: (input: CreateEnvironmentHostCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
|
-
/**
|
|
29
|
-
* serializeAws_json1_0DeleteEnvironmentCommand
|
|
30
|
-
*/
|
|
31
|
-
export declare const se_DeleteEnvironmentCommand: (input: DeleteEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
|
-
/**
|
|
33
|
-
* serializeAws_json1_0DeleteEnvironmentHostCommand
|
|
34
|
-
*/
|
|
35
|
-
export declare const se_DeleteEnvironmentHostCommand: (input: DeleteEnvironmentHostCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
|
-
/**
|
|
37
|
-
* serializeAws_json1_0DisassociateEipFromVlanCommand
|
|
38
|
-
*/
|
|
39
|
-
export declare const se_DisassociateEipFromVlanCommand: (input: DisassociateEipFromVlanCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
|
-
/**
|
|
41
|
-
* serializeAws_json1_0GetEnvironmentCommand
|
|
42
|
-
*/
|
|
43
|
-
export declare const se_GetEnvironmentCommand: (input: GetEnvironmentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
|
-
/**
|
|
45
|
-
* serializeAws_json1_0ListEnvironmentHostsCommand
|
|
46
|
-
*/
|
|
47
|
-
export declare const se_ListEnvironmentHostsCommand: (input: ListEnvironmentHostsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
|
-
/**
|
|
49
|
-
* serializeAws_json1_0ListEnvironmentsCommand
|
|
50
|
-
*/
|
|
51
|
-
export declare const se_ListEnvironmentsCommand: (input: ListEnvironmentsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
|
-
/**
|
|
53
|
-
* serializeAws_json1_0ListEnvironmentVlansCommand
|
|
54
|
-
*/
|
|
55
|
-
export declare const se_ListEnvironmentVlansCommand: (input: ListEnvironmentVlansCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
|
-
/**
|
|
57
|
-
* serializeAws_json1_0ListTagsForResourceCommand
|
|
58
|
-
*/
|
|
59
|
-
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
60
|
-
/**
|
|
61
|
-
* serializeAws_json1_0TagResourceCommand
|
|
62
|
-
*/
|
|
63
|
-
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
|
-
/**
|
|
65
|
-
* serializeAws_json1_0UntagResourceCommand
|
|
66
|
-
*/
|
|
67
|
-
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
|
-
/**
|
|
69
|
-
* deserializeAws_json1_0AssociateEipToVlanCommand
|
|
70
|
-
*/
|
|
71
|
-
export declare const de_AssociateEipToVlanCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateEipToVlanCommandOutput>;
|
|
72
|
-
/**
|
|
73
|
-
* deserializeAws_json1_0CreateEnvironmentCommand
|
|
74
|
-
*/
|
|
75
|
-
export declare const de_CreateEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEnvironmentCommandOutput>;
|
|
76
|
-
/**
|
|
77
|
-
* deserializeAws_json1_0CreateEnvironmentHostCommand
|
|
78
|
-
*/
|
|
79
|
-
export declare const de_CreateEnvironmentHostCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEnvironmentHostCommandOutput>;
|
|
80
|
-
/**
|
|
81
|
-
* deserializeAws_json1_0DeleteEnvironmentCommand
|
|
82
|
-
*/
|
|
83
|
-
export declare const de_DeleteEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEnvironmentCommandOutput>;
|
|
84
|
-
/**
|
|
85
|
-
* deserializeAws_json1_0DeleteEnvironmentHostCommand
|
|
86
|
-
*/
|
|
87
|
-
export declare const de_DeleteEnvironmentHostCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEnvironmentHostCommandOutput>;
|
|
88
|
-
/**
|
|
89
|
-
* deserializeAws_json1_0DisassociateEipFromVlanCommand
|
|
90
|
-
*/
|
|
91
|
-
export declare const de_DisassociateEipFromVlanCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateEipFromVlanCommandOutput>;
|
|
92
|
-
/**
|
|
93
|
-
* deserializeAws_json1_0GetEnvironmentCommand
|
|
94
|
-
*/
|
|
95
|
-
export declare const de_GetEnvironmentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEnvironmentCommandOutput>;
|
|
96
|
-
/**
|
|
97
|
-
* deserializeAws_json1_0ListEnvironmentHostsCommand
|
|
98
|
-
*/
|
|
99
|
-
export declare const de_ListEnvironmentHostsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnvironmentHostsCommandOutput>;
|
|
100
|
-
/**
|
|
101
|
-
* deserializeAws_json1_0ListEnvironmentsCommand
|
|
102
|
-
*/
|
|
103
|
-
export declare const de_ListEnvironmentsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnvironmentsCommandOutput>;
|
|
104
|
-
/**
|
|
105
|
-
* deserializeAws_json1_0ListEnvironmentVlansCommand
|
|
106
|
-
*/
|
|
107
|
-
export declare const de_ListEnvironmentVlansCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEnvironmentVlansCommandOutput>;
|
|
108
|
-
/**
|
|
109
|
-
* deserializeAws_json1_0ListTagsForResourceCommand
|
|
110
|
-
*/
|
|
111
|
-
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
112
|
-
/**
|
|
113
|
-
* deserializeAws_json1_0TagResourceCommand
|
|
114
|
-
*/
|
|
115
|
-
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
116
|
-
/**
|
|
117
|
-
* deserializeAws_json1_0UntagResourceCommand
|
|
118
|
-
*/
|
|
119
|
-
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
@@ -1,161 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
AssociateEipToVlanCommandInput,
|
|
8
|
-
AssociateEipToVlanCommandOutput,
|
|
9
|
-
} from "../commands/AssociateEipToVlanCommand";
|
|
10
|
-
import {
|
|
11
|
-
CreateEnvironmentCommandInput,
|
|
12
|
-
CreateEnvironmentCommandOutput,
|
|
13
|
-
} from "../commands/CreateEnvironmentCommand";
|
|
14
|
-
import {
|
|
15
|
-
CreateEnvironmentHostCommandInput,
|
|
16
|
-
CreateEnvironmentHostCommandOutput,
|
|
17
|
-
} from "../commands/CreateEnvironmentHostCommand";
|
|
18
|
-
import {
|
|
19
|
-
DeleteEnvironmentCommandInput,
|
|
20
|
-
DeleteEnvironmentCommandOutput,
|
|
21
|
-
} from "../commands/DeleteEnvironmentCommand";
|
|
22
|
-
import {
|
|
23
|
-
DeleteEnvironmentHostCommandInput,
|
|
24
|
-
DeleteEnvironmentHostCommandOutput,
|
|
25
|
-
} from "../commands/DeleteEnvironmentHostCommand";
|
|
26
|
-
import {
|
|
27
|
-
DisassociateEipFromVlanCommandInput,
|
|
28
|
-
DisassociateEipFromVlanCommandOutput,
|
|
29
|
-
} from "../commands/DisassociateEipFromVlanCommand";
|
|
30
|
-
import {
|
|
31
|
-
GetEnvironmentCommandInput,
|
|
32
|
-
GetEnvironmentCommandOutput,
|
|
33
|
-
} from "../commands/GetEnvironmentCommand";
|
|
34
|
-
import {
|
|
35
|
-
ListEnvironmentHostsCommandInput,
|
|
36
|
-
ListEnvironmentHostsCommandOutput,
|
|
37
|
-
} from "../commands/ListEnvironmentHostsCommand";
|
|
38
|
-
import {
|
|
39
|
-
ListEnvironmentsCommandInput,
|
|
40
|
-
ListEnvironmentsCommandOutput,
|
|
41
|
-
} from "../commands/ListEnvironmentsCommand";
|
|
42
|
-
import {
|
|
43
|
-
ListEnvironmentVlansCommandInput,
|
|
44
|
-
ListEnvironmentVlansCommandOutput,
|
|
45
|
-
} from "../commands/ListEnvironmentVlansCommand";
|
|
46
|
-
import {
|
|
47
|
-
ListTagsForResourceCommandInput,
|
|
48
|
-
ListTagsForResourceCommandOutput,
|
|
49
|
-
} from "../commands/ListTagsForResourceCommand";
|
|
50
|
-
import {
|
|
51
|
-
TagResourceCommandInput,
|
|
52
|
-
TagResourceCommandOutput,
|
|
53
|
-
} from "../commands/TagResourceCommand";
|
|
54
|
-
import {
|
|
55
|
-
UntagResourceCommandInput,
|
|
56
|
-
UntagResourceCommandOutput,
|
|
57
|
-
} from "../commands/UntagResourceCommand";
|
|
58
|
-
export declare const se_AssociateEipToVlanCommand: (
|
|
59
|
-
input: AssociateEipToVlanCommandInput,
|
|
60
|
-
context: __SerdeContext
|
|
61
|
-
) => Promise<__HttpRequest>;
|
|
62
|
-
export declare const se_CreateEnvironmentCommand: (
|
|
63
|
-
input: CreateEnvironmentCommandInput,
|
|
64
|
-
context: __SerdeContext
|
|
65
|
-
) => Promise<__HttpRequest>;
|
|
66
|
-
export declare const se_CreateEnvironmentHostCommand: (
|
|
67
|
-
input: CreateEnvironmentHostCommandInput,
|
|
68
|
-
context: __SerdeContext
|
|
69
|
-
) => Promise<__HttpRequest>;
|
|
70
|
-
export declare const se_DeleteEnvironmentCommand: (
|
|
71
|
-
input: DeleteEnvironmentCommandInput,
|
|
72
|
-
context: __SerdeContext
|
|
73
|
-
) => Promise<__HttpRequest>;
|
|
74
|
-
export declare const se_DeleteEnvironmentHostCommand: (
|
|
75
|
-
input: DeleteEnvironmentHostCommandInput,
|
|
76
|
-
context: __SerdeContext
|
|
77
|
-
) => Promise<__HttpRequest>;
|
|
78
|
-
export declare const se_DisassociateEipFromVlanCommand: (
|
|
79
|
-
input: DisassociateEipFromVlanCommandInput,
|
|
80
|
-
context: __SerdeContext
|
|
81
|
-
) => Promise<__HttpRequest>;
|
|
82
|
-
export declare const se_GetEnvironmentCommand: (
|
|
83
|
-
input: GetEnvironmentCommandInput,
|
|
84
|
-
context: __SerdeContext
|
|
85
|
-
) => Promise<__HttpRequest>;
|
|
86
|
-
export declare const se_ListEnvironmentHostsCommand: (
|
|
87
|
-
input: ListEnvironmentHostsCommandInput,
|
|
88
|
-
context: __SerdeContext
|
|
89
|
-
) => Promise<__HttpRequest>;
|
|
90
|
-
export declare const se_ListEnvironmentsCommand: (
|
|
91
|
-
input: ListEnvironmentsCommandInput,
|
|
92
|
-
context: __SerdeContext
|
|
93
|
-
) => Promise<__HttpRequest>;
|
|
94
|
-
export declare const se_ListEnvironmentVlansCommand: (
|
|
95
|
-
input: ListEnvironmentVlansCommandInput,
|
|
96
|
-
context: __SerdeContext
|
|
97
|
-
) => Promise<__HttpRequest>;
|
|
98
|
-
export declare const se_ListTagsForResourceCommand: (
|
|
99
|
-
input: ListTagsForResourceCommandInput,
|
|
100
|
-
context: __SerdeContext
|
|
101
|
-
) => Promise<__HttpRequest>;
|
|
102
|
-
export declare const se_TagResourceCommand: (
|
|
103
|
-
input: TagResourceCommandInput,
|
|
104
|
-
context: __SerdeContext
|
|
105
|
-
) => Promise<__HttpRequest>;
|
|
106
|
-
export declare const se_UntagResourceCommand: (
|
|
107
|
-
input: UntagResourceCommandInput,
|
|
108
|
-
context: __SerdeContext
|
|
109
|
-
) => Promise<__HttpRequest>;
|
|
110
|
-
export declare const de_AssociateEipToVlanCommand: (
|
|
111
|
-
output: __HttpResponse,
|
|
112
|
-
context: __SerdeContext
|
|
113
|
-
) => Promise<AssociateEipToVlanCommandOutput>;
|
|
114
|
-
export declare const de_CreateEnvironmentCommand: (
|
|
115
|
-
output: __HttpResponse,
|
|
116
|
-
context: __SerdeContext
|
|
117
|
-
) => Promise<CreateEnvironmentCommandOutput>;
|
|
118
|
-
export declare const de_CreateEnvironmentHostCommand: (
|
|
119
|
-
output: __HttpResponse,
|
|
120
|
-
context: __SerdeContext
|
|
121
|
-
) => Promise<CreateEnvironmentHostCommandOutput>;
|
|
122
|
-
export declare const de_DeleteEnvironmentCommand: (
|
|
123
|
-
output: __HttpResponse,
|
|
124
|
-
context: __SerdeContext
|
|
125
|
-
) => Promise<DeleteEnvironmentCommandOutput>;
|
|
126
|
-
export declare const de_DeleteEnvironmentHostCommand: (
|
|
127
|
-
output: __HttpResponse,
|
|
128
|
-
context: __SerdeContext
|
|
129
|
-
) => Promise<DeleteEnvironmentHostCommandOutput>;
|
|
130
|
-
export declare const de_DisassociateEipFromVlanCommand: (
|
|
131
|
-
output: __HttpResponse,
|
|
132
|
-
context: __SerdeContext
|
|
133
|
-
) => Promise<DisassociateEipFromVlanCommandOutput>;
|
|
134
|
-
export declare const de_GetEnvironmentCommand: (
|
|
135
|
-
output: __HttpResponse,
|
|
136
|
-
context: __SerdeContext
|
|
137
|
-
) => Promise<GetEnvironmentCommandOutput>;
|
|
138
|
-
export declare const de_ListEnvironmentHostsCommand: (
|
|
139
|
-
output: __HttpResponse,
|
|
140
|
-
context: __SerdeContext
|
|
141
|
-
) => Promise<ListEnvironmentHostsCommandOutput>;
|
|
142
|
-
export declare const de_ListEnvironmentsCommand: (
|
|
143
|
-
output: __HttpResponse,
|
|
144
|
-
context: __SerdeContext
|
|
145
|
-
) => Promise<ListEnvironmentsCommandOutput>;
|
|
146
|
-
export declare const de_ListEnvironmentVlansCommand: (
|
|
147
|
-
output: __HttpResponse,
|
|
148
|
-
context: __SerdeContext
|
|
149
|
-
) => Promise<ListEnvironmentVlansCommandOutput>;
|
|
150
|
-
export declare const de_ListTagsForResourceCommand: (
|
|
151
|
-
output: __HttpResponse,
|
|
152
|
-
context: __SerdeContext
|
|
153
|
-
) => Promise<ListTagsForResourceCommandOutput>;
|
|
154
|
-
export declare const de_TagResourceCommand: (
|
|
155
|
-
output: __HttpResponse,
|
|
156
|
-
context: __SerdeContext
|
|
157
|
-
) => Promise<TagResourceCommandOutput>;
|
|
158
|
-
export declare const de_UntagResourceCommand: (
|
|
159
|
-
output: __HttpResponse,
|
|
160
|
-
context: __SerdeContext
|
|
161
|
-
) => Promise<UntagResourceCommandOutput>;
|