@aws-sdk/client-app-mesh 3.299.0 → 3.300.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 +230 -0
  4. package/dist-types/commands/CreateVirtualGatewayCommand.d.ts +132 -0
  5. package/dist-types/commands/CreateVirtualNodeCommand.d.ts +249 -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 +224 -0
  35. package/dist-types/commands/UpdateVirtualGatewayCommand.d.ts +126 -0
  36. package/dist-types/commands/UpdateVirtualNodeCommand.d.ts +243 -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,255 @@ 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 = {
53
+ * virtualNodeName: "STRING_VALUE", // required
54
+ * meshName: "STRING_VALUE", // required
55
+ * spec: {
56
+ * serviceDiscovery: { // Union: only one key present
57
+ * dns: {
58
+ * hostname: "STRING_VALUE", // required
59
+ * responseType: "STRING_VALUE",
60
+ * ipPreference: "STRING_VALUE",
61
+ * },
62
+ * awsCloudMap: {
63
+ * namespaceName: "STRING_VALUE", // required
64
+ * serviceName: "STRING_VALUE", // required
65
+ * attributes: [
66
+ * {
67
+ * key: "STRING_VALUE", // required
68
+ * value: "STRING_VALUE", // required
69
+ * },
70
+ * ],
71
+ * ipPreference: "STRING_VALUE",
72
+ * },
73
+ * },
74
+ * listeners: [
75
+ * {
76
+ * portMapping: {
77
+ * port: Number("int"), // required
78
+ * protocol: "STRING_VALUE", // required
79
+ * },
80
+ * tls: {
81
+ * mode: "STRING_VALUE", // required
82
+ * certificate: { // Union: only one key present
83
+ * acm: {
84
+ * certificateArn: "STRING_VALUE", // required
85
+ * },
86
+ * file: {
87
+ * certificateChain: "STRING_VALUE", // required
88
+ * privateKey: "STRING_VALUE", // required
89
+ * },
90
+ * sds: {
91
+ * secretName: "STRING_VALUE", // required
92
+ * },
93
+ * },
94
+ * validation: {
95
+ * trust: { // Union: only one key present
96
+ * file: {
97
+ * certificateChain: "STRING_VALUE", // required
98
+ * },
99
+ * sds: {
100
+ * secretName: "STRING_VALUE", // required
101
+ * },
102
+ * },
103
+ * subjectAlternativeNames: {
104
+ * match: {
105
+ * exact: [ // required
106
+ * "STRING_VALUE",
107
+ * ],
108
+ * },
109
+ * },
110
+ * },
111
+ * },
112
+ * healthCheck: {
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: { // Union: only one key present
122
+ * tcp: {
123
+ * idle: {
124
+ * value: Number("long"),
125
+ * unit: "STRING_VALUE",
126
+ * },
127
+ * },
128
+ * http: {
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: {
149
+ * perRequest: {
150
+ * value: Number("long"),
151
+ * unit: "STRING_VALUE",
152
+ * },
153
+ * idle: {
154
+ * value: Number("long"),
155
+ * unit: "STRING_VALUE",
156
+ * },
157
+ * },
158
+ * },
159
+ * outlierDetection: {
160
+ * maxServerErrors: Number("long"), // required
161
+ * interval: {
162
+ * value: Number("long"),
163
+ * unit: "STRING_VALUE",
164
+ * },
165
+ * baseEjectionDuration: {
166
+ * value: Number("long"),
167
+ * unit: "STRING_VALUE",
168
+ * },
169
+ * maxEjectionPercent: Number("int"), // required
170
+ * },
171
+ * connectionPool: { // Union: only one key present
172
+ * tcp: {
173
+ * maxConnections: Number("int"), // required
174
+ * },
175
+ * http: {
176
+ * maxConnections: Number("int"), // required
177
+ * maxPendingRequests: Number("int"),
178
+ * },
179
+ * http2: {
180
+ * maxRequests: Number("int"), // required
181
+ * },
182
+ * grpc: {
183
+ * maxRequests: Number("int"), // required
184
+ * },
185
+ * },
186
+ * },
187
+ * ],
188
+ * backends: [
189
+ * { // Union: only one key present
190
+ * virtualService: {
191
+ * virtualServiceName: "STRING_VALUE", // required
192
+ * clientPolicy: {
193
+ * tls: {
194
+ * enforce: true || false,
195
+ * ports: [
196
+ * Number("int"),
197
+ * ],
198
+ * certificate: { // Union: only one key present
199
+ * file: {
200
+ * certificateChain: "STRING_VALUE", // required
201
+ * privateKey: "STRING_VALUE", // required
202
+ * },
203
+ * sds: {
204
+ * secretName: "STRING_VALUE", // required
205
+ * },
206
+ * },
207
+ * validation: {
208
+ * trust: { // Union: only one key present
209
+ * acm: {
210
+ * certificateAuthorityArns: [ // required
211
+ * "STRING_VALUE",
212
+ * ],
213
+ * },
214
+ * file: {
215
+ * certificateChain: "STRING_VALUE", // required
216
+ * },
217
+ * sds: {
218
+ * secretName: "STRING_VALUE", // required
219
+ * },
220
+ * },
221
+ * subjectAlternativeNames: {
222
+ * match: {
223
+ * exact: [ // required
224
+ * "STRING_VALUE",
225
+ * ],
226
+ * },
227
+ * },
228
+ * },
229
+ * },
230
+ * },
231
+ * },
232
+ * },
233
+ * ],
234
+ * backendDefaults: {
235
+ * clientPolicy: {
236
+ * tls: {
237
+ * enforce: true || false,
238
+ * ports: [
239
+ * Number("int"),
240
+ * ],
241
+ * certificate: { // Union: only one key present
242
+ * file: {
243
+ * certificateChain: "STRING_VALUE", // required
244
+ * privateKey: "STRING_VALUE", // required
245
+ * },
246
+ * sds: {
247
+ * secretName: "STRING_VALUE", // required
248
+ * },
249
+ * },
250
+ * validation: {
251
+ * trust: { // Union: only one key present
252
+ * acm: {
253
+ * certificateAuthorityArns: [ // required
254
+ * "STRING_VALUE",
255
+ * ],
256
+ * },
257
+ * file: {
258
+ * certificateChain: "STRING_VALUE", // required
259
+ * },
260
+ * sds: {
261
+ * secretName: "STRING_VALUE", // required
262
+ * },
263
+ * },
264
+ * subjectAlternativeNames: {
265
+ * match: {
266
+ * exact: [ // required
267
+ * "STRING_VALUE",
268
+ * ],
269
+ * },
270
+ * },
271
+ * },
272
+ * },
273
+ * },
274
+ * },
275
+ * logging: {
276
+ * accessLog: { // Union: only one key present
277
+ * file: {
278
+ * path: "STRING_VALUE", // required
279
+ * format: { // Union: only one key present
280
+ * text: "STRING_VALUE",
281
+ * json: [
282
+ * {
283
+ * key: "STRING_VALUE", // required
284
+ * value: "STRING_VALUE", // required
285
+ * },
286
+ * ],
287
+ * },
288
+ * },
289
+ * },
290
+ * },
291
+ * },
292
+ * tags: [
293
+ * {
294
+ * key: "STRING_VALUE", // required
295
+ * value: "STRING_VALUE", // required
296
+ * },
297
+ * ],
298
+ * clientToken: "STRING_VALUE",
299
+ * meshOwner: "STRING_VALUE",
300
+ * };
52
301
  * const command = new CreateVirtualNodeCommand(input);
53
302
  * const response = await client.send(command);
54
303
  * ```
@@ -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 = {
36
+ * virtualRouterName: "STRING_VALUE", // required
37
+ * meshName: "STRING_VALUE", // required
38
+ * spec: {
39
+ * listeners: [
40
+ * {
41
+ * portMapping: {
42
+ * port: Number("int"), // required
43
+ * protocol: "STRING_VALUE", // required
44
+ * },
45
+ * },
46
+ * ],
47
+ * },
48
+ * tags: [
49
+ * {
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 = {
36
+ * virtualServiceName: "STRING_VALUE", // required
37
+ * meshName: "STRING_VALUE", // required
38
+ * spec: {
39
+ * provider: { // Union: only one key present
40
+ * virtualNode: {
41
+ * virtualNodeName: "STRING_VALUE", // required
42
+ * },
43
+ * virtualRouter: {
44
+ * virtualRouterName: "STRING_VALUE", // required
45
+ * },
46
+ * },
47
+ * },
48
+ * tags: [
49
+ * {
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 = {
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 = {
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 = {
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 = {
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 = {
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 = {
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 = {
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 = {
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 = {
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 = {
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 = {
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 = {
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 = {
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 = {
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 = {
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 = {
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 = {
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 = {
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 = {
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 = {
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 = {
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 = {
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 = {
33
+ * resourceArn: "STRING_VALUE", // required
34
+ * tags: [ // required
35
+ * {
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 = {
30
+ * resourceArn: "STRING_VALUE", // required
31
+ * tagKeys: [ // required
32
+ * "STRING_VALUE",
33
+ * ],
34
+ * };
29
35
  * const command = new UntagResourceCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```