@aws-sdk/client-app-mesh 3.299.0 → 3.301.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 (39) hide show
  1. package/dist-types/commands/CreateGatewayRouteCommand.d.ts +173 -0
  2. package/dist-types/commands/CreateMeshCommand.d.ts +18 -0
  3. package/dist-types/commands/CreateRouteCommand.d.ts +215 -0
  4. package/dist-types/commands/CreateVirtualGatewayCommand.d.ts +132 -0
  5. package/dist-types/commands/CreateVirtualNodeCommand.d.ts +237 -0
  6. package/dist-types/commands/CreateVirtualRouterCommand.d.ts +22 -0
  7. package/dist-types/commands/CreateVirtualServiceCommand.d.ts +22 -0
  8. package/dist-types/commands/DeleteGatewayRouteCommand.d.ts +6 -0
  9. package/dist-types/commands/DeleteMeshCommand.d.ts +3 -0
  10. package/dist-types/commands/DeleteRouteCommand.d.ts +6 -0
  11. package/dist-types/commands/DeleteVirtualGatewayCommand.d.ts +5 -0
  12. package/dist-types/commands/DeleteVirtualNodeCommand.d.ts +5 -0
  13. package/dist-types/commands/DeleteVirtualRouterCommand.d.ts +5 -0
  14. package/dist-types/commands/DeleteVirtualServiceCommand.d.ts +5 -0
  15. package/dist-types/commands/DescribeGatewayRouteCommand.d.ts +6 -0
  16. package/dist-types/commands/DescribeMeshCommand.d.ts +4 -0
  17. package/dist-types/commands/DescribeRouteCommand.d.ts +6 -0
  18. package/dist-types/commands/DescribeVirtualGatewayCommand.d.ts +5 -0
  19. package/dist-types/commands/DescribeVirtualNodeCommand.d.ts +5 -0
  20. package/dist-types/commands/DescribeVirtualRouterCommand.d.ts +5 -0
  21. package/dist-types/commands/DescribeVirtualServiceCommand.d.ts +5 -0
  22. package/dist-types/commands/ListGatewayRoutesCommand.d.ts +7 -0
  23. package/dist-types/commands/ListMeshesCommand.d.ts +4 -0
  24. package/dist-types/commands/ListRoutesCommand.d.ts +7 -0
  25. package/dist-types/commands/ListTagsForResourceCommand.d.ts +5 -0
  26. package/dist-types/commands/ListVirtualGatewaysCommand.d.ts +6 -0
  27. package/dist-types/commands/ListVirtualNodesCommand.d.ts +6 -0
  28. package/dist-types/commands/ListVirtualRoutersCommand.d.ts +6 -0
  29. package/dist-types/commands/ListVirtualServicesCommand.d.ts +6 -0
  30. package/dist-types/commands/TagResourceCommand.d.ts +9 -0
  31. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  32. package/dist-types/commands/UpdateGatewayRouteCommand.d.ts +167 -0
  33. package/dist-types/commands/UpdateMeshCommand.d.ts +12 -0
  34. package/dist-types/commands/UpdateRouteCommand.d.ts +209 -0
  35. package/dist-types/commands/UpdateVirtualGatewayCommand.d.ts +126 -0
  36. package/dist-types/commands/UpdateVirtualNodeCommand.d.ts +231 -0
  37. package/dist-types/commands/UpdateVirtualRouterCommand.d.ts +16 -0
  38. package/dist-types/commands/UpdateVirtualServiceCommand.d.ts +16 -0
  39. package/package.json +8 -8
@@ -49,6 +49,243 @@ export interface CreateVirtualNodeCommandOutput extends CreateVirtualNodeOutput,
49
49
  * import { AppMeshClient, CreateVirtualNodeCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
50
50
  * // const { AppMeshClient, CreateVirtualNodeCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
51
51
  * const client = new AppMeshClient(config);
52
+ * const input = { // CreateVirtualNodeInput
53
+ * virtualNodeName: "STRING_VALUE", // required
54
+ * meshName: "STRING_VALUE", // required
55
+ * spec: { // VirtualNodeSpec
56
+ * serviceDiscovery: { // ServiceDiscovery Union: only one key present
57
+ * dns: { // DnsServiceDiscovery
58
+ * hostname: "STRING_VALUE", // required
59
+ * responseType: "STRING_VALUE",
60
+ * ipPreference: "STRING_VALUE",
61
+ * },
62
+ * awsCloudMap: { // AwsCloudMapServiceDiscovery
63
+ * namespaceName: "STRING_VALUE", // required
64
+ * serviceName: "STRING_VALUE", // required
65
+ * attributes: [ // AwsCloudMapInstanceAttributes
66
+ * { // AwsCloudMapInstanceAttribute
67
+ * key: "STRING_VALUE", // required
68
+ * value: "STRING_VALUE", // required
69
+ * },
70
+ * ],
71
+ * ipPreference: "STRING_VALUE",
72
+ * },
73
+ * },
74
+ * listeners: [ // Listeners
75
+ * { // Listener
76
+ * portMapping: { // PortMapping
77
+ * port: Number("int"), // required
78
+ * protocol: "STRING_VALUE", // required
79
+ * },
80
+ * tls: { // ListenerTls
81
+ * mode: "STRING_VALUE", // required
82
+ * certificate: { // ListenerTlsCertificate Union: only one key present
83
+ * acm: { // ListenerTlsAcmCertificate
84
+ * certificateArn: "STRING_VALUE", // required
85
+ * },
86
+ * file: { // ListenerTlsFileCertificate
87
+ * certificateChain: "STRING_VALUE", // required
88
+ * privateKey: "STRING_VALUE", // required
89
+ * },
90
+ * sds: { // ListenerTlsSdsCertificate
91
+ * secretName: "STRING_VALUE", // required
92
+ * },
93
+ * },
94
+ * validation: { // ListenerTlsValidationContext
95
+ * trust: { // ListenerTlsValidationContextTrust Union: only one key present
96
+ * file: { // TlsValidationContextFileTrust
97
+ * certificateChain: "STRING_VALUE", // required
98
+ * },
99
+ * sds: { // TlsValidationContextSdsTrust
100
+ * secretName: "STRING_VALUE", // required
101
+ * },
102
+ * },
103
+ * subjectAlternativeNames: { // SubjectAlternativeNames
104
+ * match: { // SubjectAlternativeNameMatchers
105
+ * exact: [ // SubjectAlternativeNameList // required
106
+ * "STRING_VALUE",
107
+ * ],
108
+ * },
109
+ * },
110
+ * },
111
+ * },
112
+ * healthCheck: { // HealthCheckPolicy
113
+ * timeoutMillis: Number("long"), // required
114
+ * intervalMillis: Number("long"), // required
115
+ * protocol: "STRING_VALUE", // required
116
+ * port: Number("int"),
117
+ * path: "STRING_VALUE",
118
+ * healthyThreshold: Number("int"), // required
119
+ * unhealthyThreshold: Number("int"), // required
120
+ * },
121
+ * timeout: { // ListenerTimeout Union: only one key present
122
+ * tcp: { // TcpTimeout
123
+ * idle: { // Duration
124
+ * value: Number("long"),
125
+ * unit: "STRING_VALUE",
126
+ * },
127
+ * },
128
+ * http: { // HttpTimeout
129
+ * perRequest: {
130
+ * value: Number("long"),
131
+ * unit: "STRING_VALUE",
132
+ * },
133
+ * idle: {
134
+ * value: Number("long"),
135
+ * unit: "STRING_VALUE",
136
+ * },
137
+ * },
138
+ * http2: {
139
+ * perRequest: {
140
+ * value: Number("long"),
141
+ * unit: "STRING_VALUE",
142
+ * },
143
+ * idle: {
144
+ * value: Number("long"),
145
+ * unit: "STRING_VALUE",
146
+ * },
147
+ * },
148
+ * grpc: { // GrpcTimeout
149
+ * perRequest: "<Duration>",
150
+ * idle: "<Duration>",
151
+ * },
152
+ * },
153
+ * outlierDetection: { // OutlierDetection
154
+ * maxServerErrors: Number("long"), // required
155
+ * interval: "<Duration>", // required
156
+ * baseEjectionDuration: "<Duration>", // required
157
+ * maxEjectionPercent: Number("int"), // required
158
+ * },
159
+ * connectionPool: { // VirtualNodeConnectionPool Union: only one key present
160
+ * tcp: { // VirtualNodeTcpConnectionPool
161
+ * maxConnections: Number("int"), // required
162
+ * },
163
+ * http: { // VirtualNodeHttpConnectionPool
164
+ * maxConnections: Number("int"), // required
165
+ * maxPendingRequests: Number("int"),
166
+ * },
167
+ * http2: { // VirtualNodeHttp2ConnectionPool
168
+ * maxRequests: Number("int"), // required
169
+ * },
170
+ * grpc: { // VirtualNodeGrpcConnectionPool
171
+ * maxRequests: Number("int"), // required
172
+ * },
173
+ * },
174
+ * },
175
+ * ],
176
+ * backends: [ // Backends
177
+ * { // Backend Union: only one key present
178
+ * virtualService: { // VirtualServiceBackend
179
+ * virtualServiceName: "STRING_VALUE", // required
180
+ * clientPolicy: { // ClientPolicy
181
+ * tls: { // ClientPolicyTls
182
+ * enforce: true || false,
183
+ * ports: [ // PortSet
184
+ * Number("int"),
185
+ * ],
186
+ * certificate: { // ClientTlsCertificate Union: only one key present
187
+ * file: {
188
+ * certificateChain: "STRING_VALUE", // required
189
+ * privateKey: "STRING_VALUE", // required
190
+ * },
191
+ * sds: {
192
+ * secretName: "STRING_VALUE", // required
193
+ * },
194
+ * },
195
+ * validation: { // TlsValidationContext
196
+ * trust: { // TlsValidationContextTrust Union: only one key present
197
+ * acm: { // TlsValidationContextAcmTrust
198
+ * certificateAuthorityArns: [ // CertificateAuthorityArns // required
199
+ * "STRING_VALUE",
200
+ * ],
201
+ * },
202
+ * file: {
203
+ * certificateChain: "STRING_VALUE", // required
204
+ * },
205
+ * sds: {
206
+ * secretName: "STRING_VALUE", // required
207
+ * },
208
+ * },
209
+ * subjectAlternativeNames: {
210
+ * match: {
211
+ * exact: [ // required
212
+ * "STRING_VALUE",
213
+ * ],
214
+ * },
215
+ * },
216
+ * },
217
+ * },
218
+ * },
219
+ * },
220
+ * },
221
+ * ],
222
+ * backendDefaults: { // BackendDefaults
223
+ * clientPolicy: {
224
+ * tls: {
225
+ * enforce: true || false,
226
+ * ports: [
227
+ * Number("int"),
228
+ * ],
229
+ * certificate: {// Union: only one key present
230
+ * file: {
231
+ * certificateChain: "STRING_VALUE", // required
232
+ * privateKey: "STRING_VALUE", // required
233
+ * },
234
+ * sds: {
235
+ * secretName: "STRING_VALUE", // required
236
+ * },
237
+ * },
238
+ * validation: {
239
+ * trust: {// Union: only one key present
240
+ * acm: {
241
+ * certificateAuthorityArns: [ // required
242
+ * "STRING_VALUE",
243
+ * ],
244
+ * },
245
+ * file: {
246
+ * certificateChain: "STRING_VALUE", // required
247
+ * },
248
+ * sds: {
249
+ * secretName: "STRING_VALUE", // required
250
+ * },
251
+ * },
252
+ * subjectAlternativeNames: {
253
+ * match: {
254
+ * exact: [ // required
255
+ * "STRING_VALUE",
256
+ * ],
257
+ * },
258
+ * },
259
+ * },
260
+ * },
261
+ * },
262
+ * },
263
+ * logging: { // Logging
264
+ * accessLog: { // AccessLog Union: only one key present
265
+ * file: { // FileAccessLog
266
+ * path: "STRING_VALUE", // required
267
+ * format: { // LoggingFormat Union: only one key present
268
+ * text: "STRING_VALUE",
269
+ * json: [ // JsonFormat
270
+ * { // JsonFormatRef
271
+ * key: "STRING_VALUE", // required
272
+ * value: "STRING_VALUE", // required
273
+ * },
274
+ * ],
275
+ * },
276
+ * },
277
+ * },
278
+ * },
279
+ * },
280
+ * tags: [ // TagList
281
+ * { // TagRef
282
+ * key: "STRING_VALUE", // required
283
+ * value: "STRING_VALUE", // required
284
+ * },
285
+ * ],
286
+ * clientToken: "STRING_VALUE",
287
+ * meshOwner: "STRING_VALUE",
288
+ * };
52
289
  * const command = new CreateVirtualNodeCommand(input);
53
290
  * const response = await client.send(command);
54
291
  * ```
@@ -32,6 +32,28 @@ export interface CreateVirtualRouterCommandOutput extends CreateVirtualRouterOut
32
32
  * import { AppMeshClient, CreateVirtualRouterCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
33
33
  * // const { AppMeshClient, CreateVirtualRouterCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
34
34
  * const client = new AppMeshClient(config);
35
+ * const input = { // CreateVirtualRouterInput
36
+ * virtualRouterName: "STRING_VALUE", // required
37
+ * meshName: "STRING_VALUE", // required
38
+ * spec: { // VirtualRouterSpec
39
+ * listeners: [ // VirtualRouterListeners
40
+ * { // VirtualRouterListener
41
+ * portMapping: { // PortMapping
42
+ * port: Number("int"), // required
43
+ * protocol: "STRING_VALUE", // required
44
+ * },
45
+ * },
46
+ * ],
47
+ * },
48
+ * tags: [ // TagList
49
+ * { // TagRef
50
+ * key: "STRING_VALUE", // required
51
+ * value: "STRING_VALUE", // required
52
+ * },
53
+ * ],
54
+ * clientToken: "STRING_VALUE",
55
+ * meshOwner: "STRING_VALUE",
56
+ * };
35
57
  * const command = new CreateVirtualRouterCommand(input);
36
58
  * const response = await client.send(command);
37
59
  * ```
@@ -32,6 +32,28 @@ export interface CreateVirtualServiceCommandOutput extends CreateVirtualServiceO
32
32
  * import { AppMeshClient, CreateVirtualServiceCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
33
33
  * // const { AppMeshClient, CreateVirtualServiceCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
34
34
  * const client = new AppMeshClient(config);
35
+ * const input = { // CreateVirtualServiceInput
36
+ * virtualServiceName: "STRING_VALUE", // required
37
+ * meshName: "STRING_VALUE", // required
38
+ * spec: { // VirtualServiceSpec
39
+ * provider: { // VirtualServiceProvider Union: only one key present
40
+ * virtualNode: { // VirtualNodeServiceProvider
41
+ * virtualNodeName: "STRING_VALUE", // required
42
+ * },
43
+ * virtualRouter: { // VirtualRouterServiceProvider
44
+ * virtualRouterName: "STRING_VALUE", // required
45
+ * },
46
+ * },
47
+ * },
48
+ * tags: [ // TagList
49
+ * { // TagRef
50
+ * key: "STRING_VALUE", // required
51
+ * value: "STRING_VALUE", // required
52
+ * },
53
+ * ],
54
+ * clientToken: "STRING_VALUE",
55
+ * meshOwner: "STRING_VALUE",
56
+ * };
35
57
  * const command = new CreateVirtualServiceCommand(input);
36
58
  * const response = await client.send(command);
37
59
  * ```
@@ -26,6 +26,12 @@ export interface DeleteGatewayRouteCommandOutput extends DeleteGatewayRouteOutpu
26
26
  * import { AppMeshClient, DeleteGatewayRouteCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
27
27
  * // const { AppMeshClient, DeleteGatewayRouteCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
28
28
  * const client = new AppMeshClient(config);
29
+ * const input = { // DeleteGatewayRouteInput
30
+ * gatewayRouteName: "STRING_VALUE", // required
31
+ * meshName: "STRING_VALUE", // required
32
+ * virtualGatewayName: "STRING_VALUE", // required
33
+ * meshOwner: "STRING_VALUE",
34
+ * };
29
35
  * const command = new DeleteGatewayRouteCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -28,6 +28,9 @@ export interface DeleteMeshCommandOutput extends DeleteMeshOutput, __MetadataBea
28
28
  * import { AppMeshClient, DeleteMeshCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
29
29
  * // const { AppMeshClient, DeleteMeshCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
30
30
  * const client = new AppMeshClient(config);
31
+ * const input = { // DeleteMeshInput
32
+ * meshName: "STRING_VALUE", // required
33
+ * };
31
34
  * const command = new DeleteMeshCommand(input);
32
35
  * const response = await client.send(command);
33
36
  * ```
@@ -26,6 +26,12 @@ export interface DeleteRouteCommandOutput extends DeleteRouteOutput, __MetadataB
26
26
  * import { AppMeshClient, DeleteRouteCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
27
27
  * // const { AppMeshClient, DeleteRouteCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
28
28
  * const client = new AppMeshClient(config);
29
+ * const input = { // DeleteRouteInput
30
+ * routeName: "STRING_VALUE", // required
31
+ * meshName: "STRING_VALUE", // required
32
+ * virtualRouterName: "STRING_VALUE", // required
33
+ * meshOwner: "STRING_VALUE",
34
+ * };
29
35
  * const command = new DeleteRouteCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -27,6 +27,11 @@ export interface DeleteVirtualGatewayCommandOutput extends DeleteVirtualGatewayO
27
27
  * import { AppMeshClient, DeleteVirtualGatewayCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
28
28
  * // const { AppMeshClient, DeleteVirtualGatewayCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
29
29
  * const client = new AppMeshClient(config);
30
+ * const input = { // DeleteVirtualGatewayInput
31
+ * virtualGatewayName: "STRING_VALUE", // required
32
+ * meshName: "STRING_VALUE", // required
33
+ * meshOwner: "STRING_VALUE",
34
+ * };
30
35
  * const command = new DeleteVirtualGatewayCommand(input);
31
36
  * const response = await client.send(command);
32
37
  * ```
@@ -28,6 +28,11 @@ export interface DeleteVirtualNodeCommandOutput extends DeleteVirtualNodeOutput,
28
28
  * import { AppMeshClient, DeleteVirtualNodeCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
29
29
  * // const { AppMeshClient, DeleteVirtualNodeCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
30
30
  * const client = new AppMeshClient(config);
31
+ * const input = { // DeleteVirtualNodeInput
32
+ * virtualNodeName: "STRING_VALUE", // required
33
+ * meshName: "STRING_VALUE", // required
34
+ * meshOwner: "STRING_VALUE",
35
+ * };
31
36
  * const command = new DeleteVirtualNodeCommand(input);
32
37
  * const response = await client.send(command);
33
38
  * ```
@@ -28,6 +28,11 @@ export interface DeleteVirtualRouterCommandOutput extends DeleteVirtualRouterOut
28
28
  * import { AppMeshClient, DeleteVirtualRouterCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
29
29
  * // const { AppMeshClient, DeleteVirtualRouterCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
30
30
  * const client = new AppMeshClient(config);
31
+ * const input = { // DeleteVirtualRouterInput
32
+ * virtualRouterName: "STRING_VALUE", // required
33
+ * meshName: "STRING_VALUE", // required
34
+ * meshOwner: "STRING_VALUE",
35
+ * };
31
36
  * const command = new DeleteVirtualRouterCommand(input);
32
37
  * const response = await client.send(command);
33
38
  * ```
@@ -26,6 +26,11 @@ export interface DeleteVirtualServiceCommandOutput extends DeleteVirtualServiceO
26
26
  * import { AppMeshClient, DeleteVirtualServiceCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
27
27
  * // const { AppMeshClient, DeleteVirtualServiceCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
28
28
  * const client = new AppMeshClient(config);
29
+ * const input = { // DeleteVirtualServiceInput
30
+ * virtualServiceName: "STRING_VALUE", // required
31
+ * meshName: "STRING_VALUE", // required
32
+ * meshOwner: "STRING_VALUE",
33
+ * };
29
34
  * const command = new DeleteVirtualServiceCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,12 @@ export interface DescribeGatewayRouteCommandOutput extends DescribeGatewayRouteO
26
26
  * import { AppMeshClient, DescribeGatewayRouteCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
27
27
  * // const { AppMeshClient, DescribeGatewayRouteCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
28
28
  * const client = new AppMeshClient(config);
29
+ * const input = { // DescribeGatewayRouteInput
30
+ * gatewayRouteName: "STRING_VALUE", // required
31
+ * meshName: "STRING_VALUE", // required
32
+ * virtualGatewayName: "STRING_VALUE", // required
33
+ * meshOwner: "STRING_VALUE",
34
+ * };
29
35
  * const command = new DescribeGatewayRouteCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,10 @@ export interface DescribeMeshCommandOutput extends DescribeMeshOutput, __Metadat
26
26
  * import { AppMeshClient, DescribeMeshCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
27
27
  * // const { AppMeshClient, DescribeMeshCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
28
28
  * const client = new AppMeshClient(config);
29
+ * const input = { // DescribeMeshInput
30
+ * meshName: "STRING_VALUE", // required
31
+ * meshOwner: "STRING_VALUE",
32
+ * };
29
33
  * const command = new DescribeMeshCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,12 @@ export interface DescribeRouteCommandOutput extends DescribeRouteOutput, __Metad
26
26
  * import { AppMeshClient, DescribeRouteCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
27
27
  * // const { AppMeshClient, DescribeRouteCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
28
28
  * const client = new AppMeshClient(config);
29
+ * const input = { // DescribeRouteInput
30
+ * routeName: "STRING_VALUE", // required
31
+ * meshName: "STRING_VALUE", // required
32
+ * meshOwner: "STRING_VALUE",
33
+ * virtualRouterName: "STRING_VALUE", // required
34
+ * };
29
35
  * const command = new DescribeRouteCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,11 @@ export interface DescribeVirtualGatewayCommandOutput extends DescribeVirtualGate
26
26
  * import { AppMeshClient, DescribeVirtualGatewayCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
27
27
  * // const { AppMeshClient, DescribeVirtualGatewayCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
28
28
  * const client = new AppMeshClient(config);
29
+ * const input = { // DescribeVirtualGatewayInput
30
+ * virtualGatewayName: "STRING_VALUE", // required
31
+ * meshName: "STRING_VALUE", // required
32
+ * meshOwner: "STRING_VALUE",
33
+ * };
29
34
  * const command = new DescribeVirtualGatewayCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,11 @@ export interface DescribeVirtualNodeCommandOutput extends DescribeVirtualNodeOut
26
26
  * import { AppMeshClient, DescribeVirtualNodeCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
27
27
  * // const { AppMeshClient, DescribeVirtualNodeCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
28
28
  * const client = new AppMeshClient(config);
29
+ * const input = { // DescribeVirtualNodeInput
30
+ * virtualNodeName: "STRING_VALUE", // required
31
+ * meshName: "STRING_VALUE", // required
32
+ * meshOwner: "STRING_VALUE",
33
+ * };
29
34
  * const command = new DescribeVirtualNodeCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,11 @@ export interface DescribeVirtualRouterCommandOutput extends DescribeVirtualRoute
26
26
  * import { AppMeshClient, DescribeVirtualRouterCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
27
27
  * // const { AppMeshClient, DescribeVirtualRouterCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
28
28
  * const client = new AppMeshClient(config);
29
+ * const input = { // DescribeVirtualRouterInput
30
+ * virtualRouterName: "STRING_VALUE", // required
31
+ * meshName: "STRING_VALUE", // required
32
+ * meshOwner: "STRING_VALUE",
33
+ * };
29
34
  * const command = new DescribeVirtualRouterCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,11 @@ export interface DescribeVirtualServiceCommandOutput extends DescribeVirtualServ
26
26
  * import { AppMeshClient, DescribeVirtualServiceCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
27
27
  * // const { AppMeshClient, DescribeVirtualServiceCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
28
28
  * const client = new AppMeshClient(config);
29
+ * const input = { // DescribeVirtualServiceInput
30
+ * virtualServiceName: "STRING_VALUE", // required
31
+ * meshName: "STRING_VALUE", // required
32
+ * meshOwner: "STRING_VALUE",
33
+ * };
29
34
  * const command = new DescribeVirtualServiceCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -27,6 +27,13 @@ export interface ListGatewayRoutesCommandOutput extends ListGatewayRoutesOutput,
27
27
  * import { AppMeshClient, ListGatewayRoutesCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
28
28
  * // const { AppMeshClient, ListGatewayRoutesCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
29
29
  * const client = new AppMeshClient(config);
30
+ * const input = { // ListGatewayRoutesInput
31
+ * meshName: "STRING_VALUE", // required
32
+ * virtualGatewayName: "STRING_VALUE", // required
33
+ * nextToken: "STRING_VALUE",
34
+ * limit: Number("int"),
35
+ * meshOwner: "STRING_VALUE",
36
+ * };
30
37
  * const command = new ListGatewayRoutesCommand(input);
31
38
  * const response = await client.send(command);
32
39
  * ```
@@ -26,6 +26,10 @@ export interface ListMeshesCommandOutput extends ListMeshesOutput, __MetadataBea
26
26
  * import { AppMeshClient, ListMeshesCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
27
27
  * // const { AppMeshClient, ListMeshesCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
28
28
  * const client = new AppMeshClient(config);
29
+ * const input = { // ListMeshesInput
30
+ * nextToken: "STRING_VALUE",
31
+ * limit: Number("int"),
32
+ * };
29
33
  * const command = new ListMeshesCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,13 @@ export interface ListRoutesCommandOutput extends ListRoutesOutput, __MetadataBea
26
26
  * import { AppMeshClient, ListRoutesCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
27
27
  * // const { AppMeshClient, ListRoutesCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
28
28
  * const client = new AppMeshClient(config);
29
+ * const input = { // ListRoutesInput
30
+ * meshName: "STRING_VALUE", // required
31
+ * virtualRouterName: "STRING_VALUE", // required
32
+ * nextToken: "STRING_VALUE",
33
+ * limit: Number("int"),
34
+ * meshOwner: "STRING_VALUE",
35
+ * };
29
36
  * const command = new ListRoutesCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
@@ -26,6 +26,11 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
26
26
  * import { AppMeshClient, ListTagsForResourceCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
27
27
  * // const { AppMeshClient, ListTagsForResourceCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
28
28
  * const client = new AppMeshClient(config);
29
+ * const input = { // ListTagsForResourceInput
30
+ * resourceArn: "STRING_VALUE", // required
31
+ * nextToken: "STRING_VALUE",
32
+ * limit: Number("int"),
33
+ * };
29
34
  * const command = new ListTagsForResourceCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,12 @@ export interface ListVirtualGatewaysCommandOutput extends ListVirtualGatewaysOut
26
26
  * import { AppMeshClient, ListVirtualGatewaysCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
27
27
  * // const { AppMeshClient, ListVirtualGatewaysCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
28
28
  * const client = new AppMeshClient(config);
29
+ * const input = { // ListVirtualGatewaysInput
30
+ * meshName: "STRING_VALUE", // required
31
+ * nextToken: "STRING_VALUE",
32
+ * limit: Number("int"),
33
+ * meshOwner: "STRING_VALUE",
34
+ * };
29
35
  * const command = new ListVirtualGatewaysCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,12 @@ export interface ListVirtualNodesCommandOutput extends ListVirtualNodesOutput, _
26
26
  * import { AppMeshClient, ListVirtualNodesCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
27
27
  * // const { AppMeshClient, ListVirtualNodesCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
28
28
  * const client = new AppMeshClient(config);
29
+ * const input = { // ListVirtualNodesInput
30
+ * meshName: "STRING_VALUE", // required
31
+ * nextToken: "STRING_VALUE",
32
+ * limit: Number("int"),
33
+ * meshOwner: "STRING_VALUE",
34
+ * };
29
35
  * const command = new ListVirtualNodesCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,12 @@ export interface ListVirtualRoutersCommandOutput extends ListVirtualRoutersOutpu
26
26
  * import { AppMeshClient, ListVirtualRoutersCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
27
27
  * // const { AppMeshClient, ListVirtualRoutersCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
28
28
  * const client = new AppMeshClient(config);
29
+ * const input = { // ListVirtualRoutersInput
30
+ * meshName: "STRING_VALUE", // required
31
+ * nextToken: "STRING_VALUE",
32
+ * limit: Number("int"),
33
+ * meshOwner: "STRING_VALUE",
34
+ * };
29
35
  * const command = new ListVirtualRoutersCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,12 @@ export interface ListVirtualServicesCommandOutput extends ListVirtualServicesOut
26
26
  * import { AppMeshClient, ListVirtualServicesCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
27
27
  * // const { AppMeshClient, ListVirtualServicesCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
28
28
  * const client = new AppMeshClient(config);
29
+ * const input = { // ListVirtualServicesInput
30
+ * meshName: "STRING_VALUE", // required
31
+ * nextToken: "STRING_VALUE",
32
+ * limit: Number("int"),
33
+ * meshOwner: "STRING_VALUE",
34
+ * };
29
35
  * const command = new ListVirtualServicesCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -29,6 +29,15 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
29
29
  * import { AppMeshClient, TagResourceCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
30
30
  * // const { AppMeshClient, TagResourceCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
31
31
  * const client = new AppMeshClient(config);
32
+ * const input = { // TagResourceInput
33
+ * resourceArn: "STRING_VALUE", // required
34
+ * tags: [ // TagList // required
35
+ * { // TagRef
36
+ * key: "STRING_VALUE", // required
37
+ * value: "STRING_VALUE", // required
38
+ * },
39
+ * ],
40
+ * };
32
41
  * const command = new TagResourceCommand(input);
33
42
  * const response = await client.send(command);
34
43
  * ```
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
26
26
  * import { AppMeshClient, UntagResourceCommand } from "@aws-sdk/client-app-mesh"; // ES Modules import
27
27
  * // const { AppMeshClient, UntagResourceCommand } = require("@aws-sdk/client-app-mesh"); // CommonJS import
28
28
  * const client = new AppMeshClient(config);
29
+ * const input = { // UntagResourceInput
30
+ * resourceArn: "STRING_VALUE", // required
31
+ * tagKeys: [ // TagKeyList // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new UntagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```