@aws-sdk/client-app-mesh 3.321.1 → 3.326.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 +182 -0
  2. package/dist-types/commands/CreateMeshCommand.d.ts +28 -0
  3. package/dist-types/commands/CreateRouteCommand.d.ts +224 -0
  4. package/dist-types/commands/CreateVirtualGatewayCommand.d.ts +141 -0
  5. package/dist-types/commands/CreateVirtualNodeCommand.d.ts +246 -0
  6. package/dist-types/commands/CreateVirtualRouterCommand.d.ts +31 -0
  7. package/dist-types/commands/CreateVirtualServiceCommand.d.ts +31 -0
  8. package/dist-types/commands/DeleteGatewayRouteCommand.d.ts +182 -0
  9. package/dist-types/commands/DeleteMeshCommand.d.ts +28 -0
  10. package/dist-types/commands/DeleteRouteCommand.d.ts +224 -0
  11. package/dist-types/commands/DeleteVirtualGatewayCommand.d.ts +141 -0
  12. package/dist-types/commands/DeleteVirtualNodeCommand.d.ts +246 -0
  13. package/dist-types/commands/DeleteVirtualRouterCommand.d.ts +31 -0
  14. package/dist-types/commands/DeleteVirtualServiceCommand.d.ts +31 -0
  15. package/dist-types/commands/DescribeGatewayRouteCommand.d.ts +182 -0
  16. package/dist-types/commands/DescribeMeshCommand.d.ts +28 -0
  17. package/dist-types/commands/DescribeRouteCommand.d.ts +224 -0
  18. package/dist-types/commands/DescribeVirtualGatewayCommand.d.ts +141 -0
  19. package/dist-types/commands/DescribeVirtualNodeCommand.d.ts +246 -0
  20. package/dist-types/commands/DescribeVirtualRouterCommand.d.ts +31 -0
  21. package/dist-types/commands/DescribeVirtualServiceCommand.d.ts +31 -0
  22. package/dist-types/commands/ListGatewayRoutesCommand.d.ts +19 -0
  23. package/dist-types/commands/ListMeshesCommand.d.ts +17 -0
  24. package/dist-types/commands/ListRoutesCommand.d.ts +19 -0
  25. package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
  26. package/dist-types/commands/ListVirtualGatewaysCommand.d.ts +18 -0
  27. package/dist-types/commands/ListVirtualNodesCommand.d.ts +18 -0
  28. package/dist-types/commands/ListVirtualRoutersCommand.d.ts +18 -0
  29. package/dist-types/commands/ListVirtualServicesCommand.d.ts +18 -0
  30. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  31. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  32. package/dist-types/commands/UpdateGatewayRouteCommand.d.ts +182 -0
  33. package/dist-types/commands/UpdateMeshCommand.d.ts +28 -0
  34. package/dist-types/commands/UpdateRouteCommand.d.ts +224 -0
  35. package/dist-types/commands/UpdateVirtualGatewayCommand.d.ts +141 -0
  36. package/dist-types/commands/UpdateVirtualNodeCommand.d.ts +246 -0
  37. package/dist-types/commands/UpdateVirtualRouterCommand.d.ts +31 -0
  38. package/dist-types/commands/UpdateVirtualServiceCommand.d.ts +31 -0
  39. package/package.json +16 -16
@@ -33,6 +33,145 @@ export interface DescribeVirtualGatewayCommandOutput extends DescribeVirtualGate
33
33
  * };
34
34
  * const command = new DescribeVirtualGatewayCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DescribeVirtualGatewayOutput
37
+ * // virtualGateway: { // VirtualGatewayData
38
+ * // meshName: "STRING_VALUE", // required
39
+ * // virtualGatewayName: "STRING_VALUE", // required
40
+ * // spec: { // VirtualGatewaySpec
41
+ * // backendDefaults: { // VirtualGatewayBackendDefaults
42
+ * // clientPolicy: { // VirtualGatewayClientPolicy
43
+ * // tls: { // VirtualGatewayClientPolicyTls
44
+ * // enforce: true || false,
45
+ * // ports: [ // PortSet
46
+ * // Number("int"),
47
+ * // ],
48
+ * // certificate: { // VirtualGatewayClientTlsCertificate Union: only one key present
49
+ * // file: { // VirtualGatewayListenerTlsFileCertificate
50
+ * // certificateChain: "STRING_VALUE", // required
51
+ * // privateKey: "STRING_VALUE", // required
52
+ * // },
53
+ * // sds: { // VirtualGatewayListenerTlsSdsCertificate
54
+ * // secretName: "STRING_VALUE", // required
55
+ * // },
56
+ * // },
57
+ * // validation: { // VirtualGatewayTlsValidationContext
58
+ * // trust: { // VirtualGatewayTlsValidationContextTrust Union: only one key present
59
+ * // acm: { // VirtualGatewayTlsValidationContextAcmTrust
60
+ * // certificateAuthorityArns: [ // VirtualGatewayCertificateAuthorityArns // required
61
+ * // "STRING_VALUE",
62
+ * // ],
63
+ * // },
64
+ * // file: { // VirtualGatewayTlsValidationContextFileTrust
65
+ * // certificateChain: "STRING_VALUE", // required
66
+ * // },
67
+ * // sds: { // VirtualGatewayTlsValidationContextSdsTrust
68
+ * // secretName: "STRING_VALUE", // required
69
+ * // },
70
+ * // },
71
+ * // subjectAlternativeNames: { // SubjectAlternativeNames
72
+ * // match: { // SubjectAlternativeNameMatchers
73
+ * // exact: [ // SubjectAlternativeNameList // required
74
+ * // "STRING_VALUE",
75
+ * // ],
76
+ * // },
77
+ * // },
78
+ * // },
79
+ * // },
80
+ * // },
81
+ * // },
82
+ * // listeners: [ // VirtualGatewayListeners // required
83
+ * // { // VirtualGatewayListener
84
+ * // healthCheck: { // VirtualGatewayHealthCheckPolicy
85
+ * // timeoutMillis: Number("long"), // required
86
+ * // intervalMillis: Number("long"), // required
87
+ * // protocol: "STRING_VALUE", // required
88
+ * // port: Number("int"),
89
+ * // path: "STRING_VALUE",
90
+ * // healthyThreshold: Number("int"), // required
91
+ * // unhealthyThreshold: Number("int"), // required
92
+ * // },
93
+ * // portMapping: { // VirtualGatewayPortMapping
94
+ * // port: Number("int"), // required
95
+ * // protocol: "STRING_VALUE", // required
96
+ * // },
97
+ * // tls: { // VirtualGatewayListenerTls
98
+ * // mode: "STRING_VALUE", // required
99
+ * // validation: { // VirtualGatewayListenerTlsValidationContext
100
+ * // trust: { // VirtualGatewayListenerTlsValidationContextTrust Union: only one key present
101
+ * // file: {
102
+ * // certificateChain: "STRING_VALUE", // required
103
+ * // },
104
+ * // sds: {
105
+ * // secretName: "STRING_VALUE", // required
106
+ * // },
107
+ * // },
108
+ * // subjectAlternativeNames: {
109
+ * // match: {
110
+ * // exact: [ // required
111
+ * // "STRING_VALUE",
112
+ * // ],
113
+ * // },
114
+ * // },
115
+ * // },
116
+ * // certificate: { // VirtualGatewayListenerTlsCertificate Union: only one key present
117
+ * // acm: { // VirtualGatewayListenerTlsAcmCertificate
118
+ * // certificateArn: "STRING_VALUE", // required
119
+ * // },
120
+ * // file: {
121
+ * // certificateChain: "STRING_VALUE", // required
122
+ * // privateKey: "STRING_VALUE", // required
123
+ * // },
124
+ * // sds: {
125
+ * // secretName: "STRING_VALUE", // required
126
+ * // },
127
+ * // },
128
+ * // },
129
+ * // connectionPool: { // VirtualGatewayConnectionPool Union: only one key present
130
+ * // http: { // VirtualGatewayHttpConnectionPool
131
+ * // maxConnections: Number("int"), // required
132
+ * // maxPendingRequests: Number("int"),
133
+ * // },
134
+ * // http2: { // VirtualGatewayHttp2ConnectionPool
135
+ * // maxRequests: Number("int"), // required
136
+ * // },
137
+ * // grpc: { // VirtualGatewayGrpcConnectionPool
138
+ * // maxRequests: Number("int"), // required
139
+ * // },
140
+ * // },
141
+ * // },
142
+ * // ],
143
+ * // logging: { // VirtualGatewayLogging
144
+ * // accessLog: { // VirtualGatewayAccessLog Union: only one key present
145
+ * // file: { // VirtualGatewayFileAccessLog
146
+ * // path: "STRING_VALUE", // required
147
+ * // format: { // LoggingFormat Union: only one key present
148
+ * // text: "STRING_VALUE",
149
+ * // json: [ // JsonFormat
150
+ * // { // JsonFormatRef
151
+ * // key: "STRING_VALUE", // required
152
+ * // value: "STRING_VALUE", // required
153
+ * // },
154
+ * // ],
155
+ * // },
156
+ * // },
157
+ * // },
158
+ * // },
159
+ * // },
160
+ * // metadata: { // ResourceMetadata
161
+ * // arn: "STRING_VALUE", // required
162
+ * // version: Number("long"), // required
163
+ * // uid: "STRING_VALUE", // required
164
+ * // createdAt: new Date("TIMESTAMP"), // required
165
+ * // lastUpdatedAt: new Date("TIMESTAMP"), // required
166
+ * // meshOwner: "STRING_VALUE", // required
167
+ * // resourceOwner: "STRING_VALUE", // required
168
+ * // },
169
+ * // status: { // VirtualGatewayStatus
170
+ * // status: "STRING_VALUE", // required
171
+ * // },
172
+ * // },
173
+ * // };
174
+ *
36
175
  * ```
37
176
  *
38
177
  * @param DescribeVirtualGatewayCommandInput - {@link DescribeVirtualGatewayCommandInput}
@@ -62,6 +201,8 @@ export interface DescribeVirtualGatewayCommandOutput extends DescribeVirtualGate
62
201
  * your account. For best results, use an increasing or variable sleep interval between
63
202
  * requests.</p>
64
203
  *
204
+ * @throws {@link AppMeshServiceException}
205
+ * <p>Base exception class for all service exceptions from AppMesh service.</p>
65
206
  *
66
207
  */
67
208
  export declare class DescribeVirtualGatewayCommand extends $Command<DescribeVirtualGatewayCommandInput, DescribeVirtualGatewayCommandOutput, AppMeshClientResolvedConfig> {
@@ -33,6 +33,250 @@ export interface DescribeVirtualNodeCommandOutput extends DescribeVirtualNodeOut
33
33
  * };
34
34
  * const command = new DescribeVirtualNodeCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DescribeVirtualNodeOutput
37
+ * // virtualNode: { // VirtualNodeData
38
+ * // meshName: "STRING_VALUE", // required
39
+ * // virtualNodeName: "STRING_VALUE", // required
40
+ * // spec: { // VirtualNodeSpec
41
+ * // serviceDiscovery: { // ServiceDiscovery Union: only one key present
42
+ * // dns: { // DnsServiceDiscovery
43
+ * // hostname: "STRING_VALUE", // required
44
+ * // responseType: "STRING_VALUE",
45
+ * // ipPreference: "STRING_VALUE",
46
+ * // },
47
+ * // awsCloudMap: { // AwsCloudMapServiceDiscovery
48
+ * // namespaceName: "STRING_VALUE", // required
49
+ * // serviceName: "STRING_VALUE", // required
50
+ * // attributes: [ // AwsCloudMapInstanceAttributes
51
+ * // { // AwsCloudMapInstanceAttribute
52
+ * // key: "STRING_VALUE", // required
53
+ * // value: "STRING_VALUE", // required
54
+ * // },
55
+ * // ],
56
+ * // ipPreference: "STRING_VALUE",
57
+ * // },
58
+ * // },
59
+ * // listeners: [ // Listeners
60
+ * // { // Listener
61
+ * // portMapping: { // PortMapping
62
+ * // port: Number("int"), // required
63
+ * // protocol: "STRING_VALUE", // required
64
+ * // },
65
+ * // tls: { // ListenerTls
66
+ * // mode: "STRING_VALUE", // required
67
+ * // certificate: { // ListenerTlsCertificate Union: only one key present
68
+ * // acm: { // ListenerTlsAcmCertificate
69
+ * // certificateArn: "STRING_VALUE", // required
70
+ * // },
71
+ * // file: { // ListenerTlsFileCertificate
72
+ * // certificateChain: "STRING_VALUE", // required
73
+ * // privateKey: "STRING_VALUE", // required
74
+ * // },
75
+ * // sds: { // ListenerTlsSdsCertificate
76
+ * // secretName: "STRING_VALUE", // required
77
+ * // },
78
+ * // },
79
+ * // validation: { // ListenerTlsValidationContext
80
+ * // trust: { // ListenerTlsValidationContextTrust Union: only one key present
81
+ * // file: { // TlsValidationContextFileTrust
82
+ * // certificateChain: "STRING_VALUE", // required
83
+ * // },
84
+ * // sds: { // TlsValidationContextSdsTrust
85
+ * // secretName: "STRING_VALUE", // required
86
+ * // },
87
+ * // },
88
+ * // subjectAlternativeNames: { // SubjectAlternativeNames
89
+ * // match: { // SubjectAlternativeNameMatchers
90
+ * // exact: [ // SubjectAlternativeNameList // required
91
+ * // "STRING_VALUE",
92
+ * // ],
93
+ * // },
94
+ * // },
95
+ * // },
96
+ * // },
97
+ * // healthCheck: { // HealthCheckPolicy
98
+ * // timeoutMillis: Number("long"), // required
99
+ * // intervalMillis: Number("long"), // required
100
+ * // protocol: "STRING_VALUE", // required
101
+ * // port: Number("int"),
102
+ * // path: "STRING_VALUE",
103
+ * // healthyThreshold: Number("int"), // required
104
+ * // unhealthyThreshold: Number("int"), // required
105
+ * // },
106
+ * // timeout: { // ListenerTimeout Union: only one key present
107
+ * // tcp: { // TcpTimeout
108
+ * // idle: { // Duration
109
+ * // value: Number("long"),
110
+ * // unit: "STRING_VALUE",
111
+ * // },
112
+ * // },
113
+ * // http: { // HttpTimeout
114
+ * // perRequest: {
115
+ * // value: Number("long"),
116
+ * // unit: "STRING_VALUE",
117
+ * // },
118
+ * // idle: {
119
+ * // value: Number("long"),
120
+ * // unit: "STRING_VALUE",
121
+ * // },
122
+ * // },
123
+ * // http2: {
124
+ * // perRequest: {
125
+ * // value: Number("long"),
126
+ * // unit: "STRING_VALUE",
127
+ * // },
128
+ * // idle: {
129
+ * // value: Number("long"),
130
+ * // unit: "STRING_VALUE",
131
+ * // },
132
+ * // },
133
+ * // grpc: { // GrpcTimeout
134
+ * // perRequest: "<Duration>",
135
+ * // idle: "<Duration>",
136
+ * // },
137
+ * // },
138
+ * // outlierDetection: { // OutlierDetection
139
+ * // maxServerErrors: Number("long"), // required
140
+ * // interval: "<Duration>", // required
141
+ * // baseEjectionDuration: "<Duration>", // required
142
+ * // maxEjectionPercent: Number("int"), // required
143
+ * // },
144
+ * // connectionPool: { // VirtualNodeConnectionPool Union: only one key present
145
+ * // tcp: { // VirtualNodeTcpConnectionPool
146
+ * // maxConnections: Number("int"), // required
147
+ * // },
148
+ * // http: { // VirtualNodeHttpConnectionPool
149
+ * // maxConnections: Number("int"), // required
150
+ * // maxPendingRequests: Number("int"),
151
+ * // },
152
+ * // http2: { // VirtualNodeHttp2ConnectionPool
153
+ * // maxRequests: Number("int"), // required
154
+ * // },
155
+ * // grpc: { // VirtualNodeGrpcConnectionPool
156
+ * // maxRequests: Number("int"), // required
157
+ * // },
158
+ * // },
159
+ * // },
160
+ * // ],
161
+ * // backends: [ // Backends
162
+ * // { // Backend Union: only one key present
163
+ * // virtualService: { // VirtualServiceBackend
164
+ * // virtualServiceName: "STRING_VALUE", // required
165
+ * // clientPolicy: { // ClientPolicy
166
+ * // tls: { // ClientPolicyTls
167
+ * // enforce: true || false,
168
+ * // ports: [ // PortSet
169
+ * // Number("int"),
170
+ * // ],
171
+ * // certificate: { // ClientTlsCertificate Union: only one key present
172
+ * // file: {
173
+ * // certificateChain: "STRING_VALUE", // required
174
+ * // privateKey: "STRING_VALUE", // required
175
+ * // },
176
+ * // sds: {
177
+ * // secretName: "STRING_VALUE", // required
178
+ * // },
179
+ * // },
180
+ * // validation: { // TlsValidationContext
181
+ * // trust: { // TlsValidationContextTrust Union: only one key present
182
+ * // acm: { // TlsValidationContextAcmTrust
183
+ * // certificateAuthorityArns: [ // CertificateAuthorityArns // required
184
+ * // "STRING_VALUE",
185
+ * // ],
186
+ * // },
187
+ * // file: {
188
+ * // certificateChain: "STRING_VALUE", // required
189
+ * // },
190
+ * // sds: {
191
+ * // secretName: "STRING_VALUE", // required
192
+ * // },
193
+ * // },
194
+ * // subjectAlternativeNames: {
195
+ * // match: {
196
+ * // exact: [ // required
197
+ * // "STRING_VALUE",
198
+ * // ],
199
+ * // },
200
+ * // },
201
+ * // },
202
+ * // },
203
+ * // },
204
+ * // },
205
+ * // },
206
+ * // ],
207
+ * // backendDefaults: { // BackendDefaults
208
+ * // clientPolicy: {
209
+ * // tls: {
210
+ * // enforce: true || false,
211
+ * // ports: [
212
+ * // Number("int"),
213
+ * // ],
214
+ * // certificate: {// Union: only one key present
215
+ * // file: {
216
+ * // certificateChain: "STRING_VALUE", // required
217
+ * // privateKey: "STRING_VALUE", // required
218
+ * // },
219
+ * // sds: {
220
+ * // secretName: "STRING_VALUE", // required
221
+ * // },
222
+ * // },
223
+ * // validation: {
224
+ * // trust: {// Union: only one key present
225
+ * // acm: {
226
+ * // certificateAuthorityArns: [ // required
227
+ * // "STRING_VALUE",
228
+ * // ],
229
+ * // },
230
+ * // file: {
231
+ * // certificateChain: "STRING_VALUE", // required
232
+ * // },
233
+ * // sds: {
234
+ * // secretName: "STRING_VALUE", // required
235
+ * // },
236
+ * // },
237
+ * // subjectAlternativeNames: {
238
+ * // match: {
239
+ * // exact: [ // required
240
+ * // "STRING_VALUE",
241
+ * // ],
242
+ * // },
243
+ * // },
244
+ * // },
245
+ * // },
246
+ * // },
247
+ * // },
248
+ * // logging: { // Logging
249
+ * // accessLog: { // AccessLog Union: only one key present
250
+ * // file: { // FileAccessLog
251
+ * // path: "STRING_VALUE", // required
252
+ * // format: { // LoggingFormat Union: only one key present
253
+ * // text: "STRING_VALUE",
254
+ * // json: [ // JsonFormat
255
+ * // { // JsonFormatRef
256
+ * // key: "STRING_VALUE", // required
257
+ * // value: "STRING_VALUE", // required
258
+ * // },
259
+ * // ],
260
+ * // },
261
+ * // },
262
+ * // },
263
+ * // },
264
+ * // },
265
+ * // metadata: { // ResourceMetadata
266
+ * // arn: "STRING_VALUE", // required
267
+ * // version: Number("long"), // required
268
+ * // uid: "STRING_VALUE", // required
269
+ * // createdAt: new Date("TIMESTAMP"), // required
270
+ * // lastUpdatedAt: new Date("TIMESTAMP"), // required
271
+ * // meshOwner: "STRING_VALUE", // required
272
+ * // resourceOwner: "STRING_VALUE", // required
273
+ * // },
274
+ * // status: { // VirtualNodeStatus
275
+ * // status: "STRING_VALUE", // required
276
+ * // },
277
+ * // },
278
+ * // };
279
+ *
36
280
  * ```
37
281
  *
38
282
  * @param DescribeVirtualNodeCommandInput - {@link DescribeVirtualNodeCommandInput}
@@ -62,6 +306,8 @@ export interface DescribeVirtualNodeCommandOutput extends DescribeVirtualNodeOut
62
306
  * your account. For best results, use an increasing or variable sleep interval between
63
307
  * requests.</p>
64
308
  *
309
+ * @throws {@link AppMeshServiceException}
310
+ * <p>Base exception class for all service exceptions from AppMesh service.</p>
65
311
  *
66
312
  */
67
313
  export declare class DescribeVirtualNodeCommand extends $Command<DescribeVirtualNodeCommandInput, DescribeVirtualNodeCommandOutput, AppMeshClientResolvedConfig> {
@@ -33,6 +33,35 @@ export interface DescribeVirtualRouterCommandOutput extends DescribeVirtualRoute
33
33
  * };
34
34
  * const command = new DescribeVirtualRouterCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DescribeVirtualRouterOutput
37
+ * // virtualRouter: { // VirtualRouterData
38
+ * // meshName: "STRING_VALUE", // required
39
+ * // virtualRouterName: "STRING_VALUE", // required
40
+ * // spec: { // VirtualRouterSpec
41
+ * // listeners: [ // VirtualRouterListeners
42
+ * // { // VirtualRouterListener
43
+ * // portMapping: { // PortMapping
44
+ * // port: Number("int"), // required
45
+ * // protocol: "STRING_VALUE", // required
46
+ * // },
47
+ * // },
48
+ * // ],
49
+ * // },
50
+ * // metadata: { // ResourceMetadata
51
+ * // arn: "STRING_VALUE", // required
52
+ * // version: Number("long"), // required
53
+ * // uid: "STRING_VALUE", // required
54
+ * // createdAt: new Date("TIMESTAMP"), // required
55
+ * // lastUpdatedAt: new Date("TIMESTAMP"), // required
56
+ * // meshOwner: "STRING_VALUE", // required
57
+ * // resourceOwner: "STRING_VALUE", // required
58
+ * // },
59
+ * // status: { // VirtualRouterStatus
60
+ * // status: "STRING_VALUE", // required
61
+ * // },
62
+ * // },
63
+ * // };
64
+ *
36
65
  * ```
37
66
  *
38
67
  * @param DescribeVirtualRouterCommandInput - {@link DescribeVirtualRouterCommandInput}
@@ -62,6 +91,8 @@ export interface DescribeVirtualRouterCommandOutput extends DescribeVirtualRoute
62
91
  * your account. For best results, use an increasing or variable sleep interval between
63
92
  * requests.</p>
64
93
  *
94
+ * @throws {@link AppMeshServiceException}
95
+ * <p>Base exception class for all service exceptions from AppMesh service.</p>
65
96
  *
66
97
  */
67
98
  export declare class DescribeVirtualRouterCommand extends $Command<DescribeVirtualRouterCommandInput, DescribeVirtualRouterCommandOutput, AppMeshClientResolvedConfig> {
@@ -33,6 +33,35 @@ export interface DescribeVirtualServiceCommandOutput extends DescribeVirtualServ
33
33
  * };
34
34
  * const command = new DescribeVirtualServiceCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DescribeVirtualServiceOutput
37
+ * // virtualService: { // VirtualServiceData
38
+ * // meshName: "STRING_VALUE", // required
39
+ * // virtualServiceName: "STRING_VALUE", // required
40
+ * // spec: { // VirtualServiceSpec
41
+ * // provider: { // VirtualServiceProvider Union: only one key present
42
+ * // virtualNode: { // VirtualNodeServiceProvider
43
+ * // virtualNodeName: "STRING_VALUE", // required
44
+ * // },
45
+ * // virtualRouter: { // VirtualRouterServiceProvider
46
+ * // virtualRouterName: "STRING_VALUE", // required
47
+ * // },
48
+ * // },
49
+ * // },
50
+ * // metadata: { // ResourceMetadata
51
+ * // arn: "STRING_VALUE", // required
52
+ * // version: Number("long"), // required
53
+ * // uid: "STRING_VALUE", // required
54
+ * // createdAt: new Date("TIMESTAMP"), // required
55
+ * // lastUpdatedAt: new Date("TIMESTAMP"), // required
56
+ * // meshOwner: "STRING_VALUE", // required
57
+ * // resourceOwner: "STRING_VALUE", // required
58
+ * // },
59
+ * // status: { // VirtualServiceStatus
60
+ * // status: "STRING_VALUE", // required
61
+ * // },
62
+ * // },
63
+ * // };
64
+ *
36
65
  * ```
37
66
  *
38
67
  * @param DescribeVirtualServiceCommandInput - {@link DescribeVirtualServiceCommandInput}
@@ -62,6 +91,8 @@ export interface DescribeVirtualServiceCommandOutput extends DescribeVirtualServ
62
91
  * your account. For best results, use an increasing or variable sleep interval between
63
92
  * requests.</p>
64
93
  *
94
+ * @throws {@link AppMeshServiceException}
95
+ * <p>Base exception class for all service exceptions from AppMesh service.</p>
65
96
  *
66
97
  */
67
98
  export declare class DescribeVirtualServiceCommand extends $Command<DescribeVirtualServiceCommandInput, DescribeVirtualServiceCommandOutput, AppMeshClientResolvedConfig> {
@@ -36,6 +36,23 @@ export interface ListGatewayRoutesCommandOutput extends ListGatewayRoutesOutput,
36
36
  * };
37
37
  * const command = new ListGatewayRoutesCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListGatewayRoutesOutput
40
+ * // gatewayRoutes: [ // GatewayRouteList // required
41
+ * // { // GatewayRouteRef
42
+ * // meshName: "STRING_VALUE", // required
43
+ * // gatewayRouteName: "STRING_VALUE", // required
44
+ * // virtualGatewayName: "STRING_VALUE", // required
45
+ * // meshOwner: "STRING_VALUE", // required
46
+ * // resourceOwner: "STRING_VALUE", // required
47
+ * // arn: "STRING_VALUE", // required
48
+ * // version: Number("long"), // required
49
+ * // createdAt: new Date("TIMESTAMP"), // required
50
+ * // lastUpdatedAt: new Date("TIMESTAMP"), // required
51
+ * // },
52
+ * // ],
53
+ * // nextToken: "STRING_VALUE",
54
+ * // };
55
+ *
39
56
  * ```
40
57
  *
41
58
  * @param ListGatewayRoutesCommandInput - {@link ListGatewayRoutesCommandInput}
@@ -65,6 +82,8 @@ export interface ListGatewayRoutesCommandOutput extends ListGatewayRoutesOutput,
65
82
  * your account. For best results, use an increasing or variable sleep interval between
66
83
  * requests.</p>
67
84
  *
85
+ * @throws {@link AppMeshServiceException}
86
+ * <p>Base exception class for all service exceptions from AppMesh service.</p>
68
87
  *
69
88
  */
70
89
  export declare class ListGatewayRoutesCommand extends $Command<ListGatewayRoutesCommandInput, ListGatewayRoutesCommandOutput, AppMeshClientResolvedConfig> {
@@ -32,6 +32,21 @@ export interface ListMeshesCommandOutput extends ListMeshesOutput, __MetadataBea
32
32
  * };
33
33
  * const command = new ListMeshesCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // ListMeshesOutput
36
+ * // meshes: [ // MeshList // required
37
+ * // { // MeshRef
38
+ * // meshName: "STRING_VALUE", // required
39
+ * // meshOwner: "STRING_VALUE", // required
40
+ * // resourceOwner: "STRING_VALUE", // required
41
+ * // arn: "STRING_VALUE", // required
42
+ * // version: Number("long"), // required
43
+ * // createdAt: new Date("TIMESTAMP"), // required
44
+ * // lastUpdatedAt: new Date("TIMESTAMP"), // required
45
+ * // },
46
+ * // ],
47
+ * // nextToken: "STRING_VALUE",
48
+ * // };
49
+ *
35
50
  * ```
36
51
  *
37
52
  * @param ListMeshesCommandInput - {@link ListMeshesCommandInput}
@@ -61,6 +76,8 @@ export interface ListMeshesCommandOutput extends ListMeshesOutput, __MetadataBea
61
76
  * your account. For best results, use an increasing or variable sleep interval between
62
77
  * requests.</p>
63
78
  *
79
+ * @throws {@link AppMeshServiceException}
80
+ * <p>Base exception class for all service exceptions from AppMesh service.</p>
64
81
  *
65
82
  */
66
83
  export declare class ListMeshesCommand extends $Command<ListMeshesCommandInput, ListMeshesCommandOutput, AppMeshClientResolvedConfig> {
@@ -35,6 +35,23 @@ export interface ListRoutesCommandOutput extends ListRoutesOutput, __MetadataBea
35
35
  * };
36
36
  * const command = new ListRoutesCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // ListRoutesOutput
39
+ * // routes: [ // RouteList // required
40
+ * // { // RouteRef
41
+ * // meshName: "STRING_VALUE", // required
42
+ * // virtualRouterName: "STRING_VALUE", // required
43
+ * // routeName: "STRING_VALUE", // required
44
+ * // meshOwner: "STRING_VALUE", // required
45
+ * // resourceOwner: "STRING_VALUE", // required
46
+ * // arn: "STRING_VALUE", // required
47
+ * // version: Number("long"), // required
48
+ * // createdAt: new Date("TIMESTAMP"), // required
49
+ * // lastUpdatedAt: new Date("TIMESTAMP"), // required
50
+ * // },
51
+ * // ],
52
+ * // nextToken: "STRING_VALUE",
53
+ * // };
54
+ *
38
55
  * ```
39
56
  *
40
57
  * @param ListRoutesCommandInput - {@link ListRoutesCommandInput}
@@ -64,6 +81,8 @@ export interface ListRoutesCommandOutput extends ListRoutesOutput, __MetadataBea
64
81
  * your account. For best results, use an increasing or variable sleep interval between
65
82
  * requests.</p>
66
83
  *
84
+ * @throws {@link AppMeshServiceException}
85
+ * <p>Base exception class for all service exceptions from AppMesh service.</p>
67
86
  *
68
87
  */
69
88
  export declare class ListRoutesCommand extends $Command<ListRoutesCommandInput, ListRoutesCommandOutput, AppMeshClientResolvedConfig> {
@@ -33,6 +33,16 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
33
33
  * };
34
34
  * const command = new ListTagsForResourceCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListTagsForResourceOutput
37
+ * // tags: [ // TagList // required
38
+ * // { // TagRef
39
+ * // key: "STRING_VALUE", // required
40
+ * // value: "STRING_VALUE", // required
41
+ * // },
42
+ * // ],
43
+ * // nextToken: "STRING_VALUE",
44
+ * // };
45
+ *
36
46
  * ```
37
47
  *
38
48
  * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
@@ -62,6 +72,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
62
72
  * your account. For best results, use an increasing or variable sleep interval between
63
73
  * requests.</p>
64
74
  *
75
+ * @throws {@link AppMeshServiceException}
76
+ * <p>Base exception class for all service exceptions from AppMesh service.</p>
65
77
  *
66
78
  */
67
79
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AppMeshClientResolvedConfig> {
@@ -34,6 +34,22 @@ export interface ListVirtualGatewaysCommandOutput extends ListVirtualGatewaysOut
34
34
  * };
35
35
  * const command = new ListVirtualGatewaysCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListVirtualGatewaysOutput
38
+ * // virtualGateways: [ // VirtualGatewayList // required
39
+ * // { // VirtualGatewayRef
40
+ * // meshName: "STRING_VALUE", // required
41
+ * // virtualGatewayName: "STRING_VALUE", // required
42
+ * // meshOwner: "STRING_VALUE", // required
43
+ * // resourceOwner: "STRING_VALUE", // required
44
+ * // arn: "STRING_VALUE", // required
45
+ * // version: Number("long"), // required
46
+ * // createdAt: new Date("TIMESTAMP"), // required
47
+ * // lastUpdatedAt: new Date("TIMESTAMP"), // required
48
+ * // },
49
+ * // ],
50
+ * // nextToken: "STRING_VALUE",
51
+ * // };
52
+ *
37
53
  * ```
38
54
  *
39
55
  * @param ListVirtualGatewaysCommandInput - {@link ListVirtualGatewaysCommandInput}
@@ -63,6 +79,8 @@ export interface ListVirtualGatewaysCommandOutput extends ListVirtualGatewaysOut
63
79
  * your account. For best results, use an increasing or variable sleep interval between
64
80
  * requests.</p>
65
81
  *
82
+ * @throws {@link AppMeshServiceException}
83
+ * <p>Base exception class for all service exceptions from AppMesh service.</p>
66
84
  *
67
85
  */
68
86
  export declare class ListVirtualGatewaysCommand extends $Command<ListVirtualGatewaysCommandInput, ListVirtualGatewaysCommandOutput, AppMeshClientResolvedConfig> {