@aws-sdk/client-app-mesh 3.296.0 → 3.297.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 (52) hide show
  1. package/dist-types/AppMesh.d.ts +39 -0
  2. package/dist-types/AppMeshClient.d.ts +24 -4
  3. package/dist-types/commands/CreateGatewayRouteCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateMeshCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateRouteCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateVirtualGatewayCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateVirtualNodeCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateVirtualRouterCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateVirtualServiceCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteGatewayRouteCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteMeshCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteRouteCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteVirtualGatewayCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteVirtualNodeCommand.d.ts +16 -0
  15. package/dist-types/commands/DeleteVirtualRouterCommand.d.ts +16 -0
  16. package/dist-types/commands/DeleteVirtualServiceCommand.d.ts +16 -0
  17. package/dist-types/commands/DescribeGatewayRouteCommand.d.ts +16 -0
  18. package/dist-types/commands/DescribeMeshCommand.d.ts +16 -0
  19. package/dist-types/commands/DescribeRouteCommand.d.ts +16 -0
  20. package/dist-types/commands/DescribeVirtualGatewayCommand.d.ts +16 -0
  21. package/dist-types/commands/DescribeVirtualNodeCommand.d.ts +16 -0
  22. package/dist-types/commands/DescribeVirtualRouterCommand.d.ts +16 -0
  23. package/dist-types/commands/DescribeVirtualServiceCommand.d.ts +16 -0
  24. package/dist-types/commands/ListGatewayRoutesCommand.d.ts +16 -0
  25. package/dist-types/commands/ListMeshesCommand.d.ts +16 -0
  26. package/dist-types/commands/ListRoutesCommand.d.ts +16 -0
  27. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  28. package/dist-types/commands/ListVirtualGatewaysCommand.d.ts +16 -0
  29. package/dist-types/commands/ListVirtualNodesCommand.d.ts +16 -0
  30. package/dist-types/commands/ListVirtualRoutersCommand.d.ts +16 -0
  31. package/dist-types/commands/ListVirtualServicesCommand.d.ts +16 -0
  32. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  33. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  34. package/dist-types/commands/UpdateGatewayRouteCommand.d.ts +16 -0
  35. package/dist-types/commands/UpdateMeshCommand.d.ts +16 -0
  36. package/dist-types/commands/UpdateRouteCommand.d.ts +16 -0
  37. package/dist-types/commands/UpdateVirtualGatewayCommand.d.ts +16 -0
  38. package/dist-types/commands/UpdateVirtualNodeCommand.d.ts +16 -0
  39. package/dist-types/commands/UpdateVirtualRouterCommand.d.ts +16 -0
  40. package/dist-types/commands/UpdateVirtualServiceCommand.d.ts +16 -0
  41. package/dist-types/models/AppMeshServiceException.d.ts +2 -0
  42. package/dist-types/models/models_0.d.ts +388 -0
  43. package/dist-types/pagination/Interfaces.d.ts +3 -0
  44. package/dist-types/pagination/ListGatewayRoutesPaginator.d.ts +3 -0
  45. package/dist-types/pagination/ListMeshesPaginator.d.ts +3 -0
  46. package/dist-types/pagination/ListRoutesPaginator.d.ts +3 -0
  47. package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +3 -0
  48. package/dist-types/pagination/ListVirtualGatewaysPaginator.d.ts +3 -0
  49. package/dist-types/pagination/ListVirtualNodesPaginator.d.ts +3 -0
  50. package/dist-types/pagination/ListVirtualRoutersPaginator.d.ts +3 -0
  51. package/dist-types/pagination/ListVirtualServicesPaginator.d.ts +3 -0
  52. package/package.json +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient";
5
5
  import { CreateVirtualRouterInput, CreateVirtualRouterOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateVirtualRouterCommand}.
8
10
  */
9
11
  export interface CreateVirtualRouterCommandInput extends CreateVirtualRouterInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateVirtualRouterCommand}.
13
17
  */
14
18
  export interface CreateVirtualRouterCommandOutput extends CreateVirtualRouterOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a virtual router within a service mesh.</p>
18
23
  * <p>Specify a <code>listener</code> for any inbound traffic that your virtual router
19
24
  * receives. Create a virtual router for each protocol and port that you need to route.
@@ -31,6 +36,8 @@ export interface CreateVirtualRouterCommandOutput extends CreateVirtualRouterOut
31
36
  * const response = await client.send(command);
32
37
  * ```
33
38
  *
39
+ * @param CreateVirtualRouterCommandInput - {@link CreateVirtualRouterCommandInput}
40
+ * @returns {@link CreateVirtualRouterCommandOutput}
34
41
  * @see {@link CreateVirtualRouterCommandInput} for command's `input` shape.
35
42
  * @see {@link CreateVirtualRouterCommandOutput} for command's `response` shape.
36
43
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -69,11 +76,20 @@ export interface CreateVirtualRouterCommandOutput extends CreateVirtualRouterOut
69
76
  export declare class CreateVirtualRouterCommand extends $Command<CreateVirtualRouterCommandInput, CreateVirtualRouterCommandOutput, AppMeshClientResolvedConfig> {
70
77
  readonly input: CreateVirtualRouterCommandInput;
71
78
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
79
+ /**
80
+ * @public
81
+ */
72
82
  constructor(input: CreateVirtualRouterCommandInput);
73
83
  /**
74
84
  * @internal
75
85
  */
76
86
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateVirtualRouterCommandInput, CreateVirtualRouterCommandOutput>;
87
+ /**
88
+ * @internal
89
+ */
77
90
  private serialize;
91
+ /**
92
+ * @internal
93
+ */
78
94
  private deserialize;
79
95
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient";
5
5
  import { CreateVirtualServiceInput, CreateVirtualServiceOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateVirtualServiceCommand}.
8
10
  */
9
11
  export interface CreateVirtualServiceCommandInput extends CreateVirtualServiceInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateVirtualServiceCommand}.
13
17
  */
14
18
  export interface CreateVirtualServiceCommandOutput extends CreateVirtualServiceOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a virtual service within a service mesh.</p>
18
23
  * <p>A virtual service is an abstraction of a real service that is provided by a virtual node
19
24
  * directly or indirectly by means of a virtual router. Dependent services call your virtual
@@ -31,6 +36,8 @@ export interface CreateVirtualServiceCommandOutput extends CreateVirtualServiceO
31
36
  * const response = await client.send(command);
32
37
  * ```
33
38
  *
39
+ * @param CreateVirtualServiceCommandInput - {@link CreateVirtualServiceCommandInput}
40
+ * @returns {@link CreateVirtualServiceCommandOutput}
34
41
  * @see {@link CreateVirtualServiceCommandInput} for command's `input` shape.
35
42
  * @see {@link CreateVirtualServiceCommandOutput} for command's `response` shape.
36
43
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -69,11 +76,20 @@ export interface CreateVirtualServiceCommandOutput extends CreateVirtualServiceO
69
76
  export declare class CreateVirtualServiceCommand extends $Command<CreateVirtualServiceCommandInput, CreateVirtualServiceCommandOutput, AppMeshClientResolvedConfig> {
70
77
  readonly input: CreateVirtualServiceCommandInput;
71
78
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
79
+ /**
80
+ * @public
81
+ */
72
82
  constructor(input: CreateVirtualServiceCommandInput);
73
83
  /**
74
84
  * @internal
75
85
  */
76
86
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateVirtualServiceCommandInput, CreateVirtualServiceCommandOutput>;
87
+ /**
88
+ * @internal
89
+ */
77
90
  private serialize;
91
+ /**
92
+ * @internal
93
+ */
78
94
  private deserialize;
79
95
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient";
5
5
  import { DeleteGatewayRouteInput, DeleteGatewayRouteOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteGatewayRouteCommand}.
8
10
  */
9
11
  export interface DeleteGatewayRouteCommandInput extends DeleteGatewayRouteInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteGatewayRouteCommand}.
13
17
  */
14
18
  export interface DeleteGatewayRouteCommandOutput extends DeleteGatewayRouteOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes an existing gateway route.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DeleteGatewayRouteCommandOutput extends DeleteGatewayRouteOutpu
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteGatewayRouteCommandInput - {@link DeleteGatewayRouteCommandInput}
34
+ * @returns {@link DeleteGatewayRouteCommandOutput}
28
35
  * @see {@link DeleteGatewayRouteCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteGatewayRouteCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -59,11 +66,20 @@ export interface DeleteGatewayRouteCommandOutput extends DeleteGatewayRouteOutpu
59
66
  export declare class DeleteGatewayRouteCommand extends $Command<DeleteGatewayRouteCommandInput, DeleteGatewayRouteCommandOutput, AppMeshClientResolvedConfig> {
60
67
  readonly input: DeleteGatewayRouteCommandInput;
61
68
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
69
+ /**
70
+ * @public
71
+ */
62
72
  constructor(input: DeleteGatewayRouteCommandInput);
63
73
  /**
64
74
  * @internal
65
75
  */
66
76
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteGatewayRouteCommandInput, DeleteGatewayRouteCommandOutput>;
77
+ /**
78
+ * @internal
79
+ */
67
80
  private serialize;
81
+ /**
82
+ * @internal
83
+ */
68
84
  private deserialize;
69
85
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient";
5
5
  import { DeleteMeshInput, DeleteMeshOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteMeshCommand}.
8
10
  */
9
11
  export interface DeleteMeshCommandInput extends DeleteMeshInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteMeshCommand}.
13
17
  */
14
18
  export interface DeleteMeshCommandOutput extends DeleteMeshOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes an existing service mesh.</p>
18
23
  * <p>You must delete all resources (virtual services, routes, virtual routers, and virtual
19
24
  * nodes) in the service mesh before you can delete the mesh itself.</p>
@@ -27,6 +32,8 @@ export interface DeleteMeshCommandOutput extends DeleteMeshOutput, __MetadataBea
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param DeleteMeshCommandInput - {@link DeleteMeshCommandInput}
36
+ * @returns {@link DeleteMeshCommandOutput}
30
37
  * @see {@link DeleteMeshCommandInput} for command's `input` shape.
31
38
  * @see {@link DeleteMeshCommandOutput} for command's `response` shape.
32
39
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -61,11 +68,20 @@ export interface DeleteMeshCommandOutput extends DeleteMeshOutput, __MetadataBea
61
68
  export declare class DeleteMeshCommand extends $Command<DeleteMeshCommandInput, DeleteMeshCommandOutput, AppMeshClientResolvedConfig> {
62
69
  readonly input: DeleteMeshCommandInput;
63
70
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
+ /**
72
+ * @public
73
+ */
64
74
  constructor(input: DeleteMeshCommandInput);
65
75
  /**
66
76
  * @internal
67
77
  */
68
78
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteMeshCommandInput, DeleteMeshCommandOutput>;
79
+ /**
80
+ * @internal
81
+ */
69
82
  private serialize;
83
+ /**
84
+ * @internal
85
+ */
70
86
  private deserialize;
71
87
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient";
5
5
  import { DeleteRouteInput, DeleteRouteOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteRouteCommand}.
8
10
  */
9
11
  export interface DeleteRouteCommandInput extends DeleteRouteInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteRouteCommand}.
13
17
  */
14
18
  export interface DeleteRouteCommandOutput extends DeleteRouteOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes an existing route.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DeleteRouteCommandOutput extends DeleteRouteOutput, __MetadataB
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteRouteCommandInput - {@link DeleteRouteCommandInput}
34
+ * @returns {@link DeleteRouteCommandOutput}
28
35
  * @see {@link DeleteRouteCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteRouteCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -59,11 +66,20 @@ export interface DeleteRouteCommandOutput extends DeleteRouteOutput, __MetadataB
59
66
  export declare class DeleteRouteCommand extends $Command<DeleteRouteCommandInput, DeleteRouteCommandOutput, AppMeshClientResolvedConfig> {
60
67
  readonly input: DeleteRouteCommandInput;
61
68
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
69
+ /**
70
+ * @public
71
+ */
62
72
  constructor(input: DeleteRouteCommandInput);
63
73
  /**
64
74
  * @internal
65
75
  */
66
76
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteRouteCommandInput, DeleteRouteCommandOutput>;
77
+ /**
78
+ * @internal
79
+ */
67
80
  private serialize;
81
+ /**
82
+ * @internal
83
+ */
68
84
  private deserialize;
69
85
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient";
5
5
  import { DeleteVirtualGatewayInput, DeleteVirtualGatewayOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteVirtualGatewayCommand}.
8
10
  */
9
11
  export interface DeleteVirtualGatewayCommandInput extends DeleteVirtualGatewayInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteVirtualGatewayCommand}.
13
17
  */
14
18
  export interface DeleteVirtualGatewayCommandOutput extends DeleteVirtualGatewayOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes an existing virtual gateway. You cannot delete a virtual gateway if any gateway
18
23
  * routes are associated to it.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface DeleteVirtualGatewayCommandOutput extends DeleteVirtualGatewayO
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param DeleteVirtualGatewayCommandInput - {@link DeleteVirtualGatewayCommandInput}
35
+ * @returns {@link DeleteVirtualGatewayCommandOutput}
29
36
  * @see {@link DeleteVirtualGatewayCommandInput} for command's `input` shape.
30
37
  * @see {@link DeleteVirtualGatewayCommandOutput} for command's `response` shape.
31
38
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -60,11 +67,20 @@ export interface DeleteVirtualGatewayCommandOutput extends DeleteVirtualGatewayO
60
67
  export declare class DeleteVirtualGatewayCommand extends $Command<DeleteVirtualGatewayCommandInput, DeleteVirtualGatewayCommandOutput, AppMeshClientResolvedConfig> {
61
68
  readonly input: DeleteVirtualGatewayCommandInput;
62
69
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
70
+ /**
71
+ * @public
72
+ */
63
73
  constructor(input: DeleteVirtualGatewayCommandInput);
64
74
  /**
65
75
  * @internal
66
76
  */
67
77
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteVirtualGatewayCommandInput, DeleteVirtualGatewayCommandOutput>;
78
+ /**
79
+ * @internal
80
+ */
68
81
  private serialize;
82
+ /**
83
+ * @internal
84
+ */
69
85
  private deserialize;
70
86
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient";
5
5
  import { DeleteVirtualNodeInput, DeleteVirtualNodeOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteVirtualNodeCommand}.
8
10
  */
9
11
  export interface DeleteVirtualNodeCommandInput extends DeleteVirtualNodeInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteVirtualNodeCommand}.
13
17
  */
14
18
  export interface DeleteVirtualNodeCommandOutput extends DeleteVirtualNodeOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes an existing virtual node.</p>
18
23
  * <p>You must delete any virtual services that list a virtual node as a service provider
19
24
  * before you can delete the virtual node itself.</p>
@@ -27,6 +32,8 @@ export interface DeleteVirtualNodeCommandOutput extends DeleteVirtualNodeOutput,
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param DeleteVirtualNodeCommandInput - {@link DeleteVirtualNodeCommandInput}
36
+ * @returns {@link DeleteVirtualNodeCommandOutput}
30
37
  * @see {@link DeleteVirtualNodeCommandInput} for command's `input` shape.
31
38
  * @see {@link DeleteVirtualNodeCommandOutput} for command's `response` shape.
32
39
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -61,11 +68,20 @@ export interface DeleteVirtualNodeCommandOutput extends DeleteVirtualNodeOutput,
61
68
  export declare class DeleteVirtualNodeCommand extends $Command<DeleteVirtualNodeCommandInput, DeleteVirtualNodeCommandOutput, AppMeshClientResolvedConfig> {
62
69
  readonly input: DeleteVirtualNodeCommandInput;
63
70
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
+ /**
72
+ * @public
73
+ */
64
74
  constructor(input: DeleteVirtualNodeCommandInput);
65
75
  /**
66
76
  * @internal
67
77
  */
68
78
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteVirtualNodeCommandInput, DeleteVirtualNodeCommandOutput>;
79
+ /**
80
+ * @internal
81
+ */
69
82
  private serialize;
83
+ /**
84
+ * @internal
85
+ */
70
86
  private deserialize;
71
87
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient";
5
5
  import { DeleteVirtualRouterInput, DeleteVirtualRouterOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteVirtualRouterCommand}.
8
10
  */
9
11
  export interface DeleteVirtualRouterCommandInput extends DeleteVirtualRouterInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteVirtualRouterCommand}.
13
17
  */
14
18
  export interface DeleteVirtualRouterCommandOutput extends DeleteVirtualRouterOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes an existing virtual router.</p>
18
23
  * <p>You must delete any routes associated with the virtual router before you can delete the
19
24
  * router itself.</p>
@@ -27,6 +32,8 @@ export interface DeleteVirtualRouterCommandOutput extends DeleteVirtualRouterOut
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param DeleteVirtualRouterCommandInput - {@link DeleteVirtualRouterCommandInput}
36
+ * @returns {@link DeleteVirtualRouterCommandOutput}
30
37
  * @see {@link DeleteVirtualRouterCommandInput} for command's `input` shape.
31
38
  * @see {@link DeleteVirtualRouterCommandOutput} for command's `response` shape.
32
39
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -61,11 +68,20 @@ export interface DeleteVirtualRouterCommandOutput extends DeleteVirtualRouterOut
61
68
  export declare class DeleteVirtualRouterCommand extends $Command<DeleteVirtualRouterCommandInput, DeleteVirtualRouterCommandOutput, AppMeshClientResolvedConfig> {
62
69
  readonly input: DeleteVirtualRouterCommandInput;
63
70
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
71
+ /**
72
+ * @public
73
+ */
64
74
  constructor(input: DeleteVirtualRouterCommandInput);
65
75
  /**
66
76
  * @internal
67
77
  */
68
78
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteVirtualRouterCommandInput, DeleteVirtualRouterCommandOutput>;
79
+ /**
80
+ * @internal
81
+ */
69
82
  private serialize;
83
+ /**
84
+ * @internal
85
+ */
70
86
  private deserialize;
71
87
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient";
5
5
  import { DeleteVirtualServiceInput, DeleteVirtualServiceOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DeleteVirtualServiceCommand}.
8
10
  */
9
11
  export interface DeleteVirtualServiceCommandInput extends DeleteVirtualServiceInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DeleteVirtualServiceCommand}.
13
17
  */
14
18
  export interface DeleteVirtualServiceCommandOutput extends DeleteVirtualServiceOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes an existing virtual service.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DeleteVirtualServiceCommandOutput extends DeleteVirtualServiceO
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DeleteVirtualServiceCommandInput - {@link DeleteVirtualServiceCommandInput}
34
+ * @returns {@link DeleteVirtualServiceCommandOutput}
28
35
  * @see {@link DeleteVirtualServiceCommandInput} for command's `input` shape.
29
36
  * @see {@link DeleteVirtualServiceCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -59,11 +66,20 @@ export interface DeleteVirtualServiceCommandOutput extends DeleteVirtualServiceO
59
66
  export declare class DeleteVirtualServiceCommand extends $Command<DeleteVirtualServiceCommandInput, DeleteVirtualServiceCommandOutput, AppMeshClientResolvedConfig> {
60
67
  readonly input: DeleteVirtualServiceCommandInput;
61
68
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
69
+ /**
70
+ * @public
71
+ */
62
72
  constructor(input: DeleteVirtualServiceCommandInput);
63
73
  /**
64
74
  * @internal
65
75
  */
66
76
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteVirtualServiceCommandInput, DeleteVirtualServiceCommandOutput>;
77
+ /**
78
+ * @internal
79
+ */
67
80
  private serialize;
81
+ /**
82
+ * @internal
83
+ */
68
84
  private deserialize;
69
85
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient";
5
5
  import { DescribeGatewayRouteInput, DescribeGatewayRouteOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeGatewayRouteCommand}.
8
10
  */
9
11
  export interface DescribeGatewayRouteCommandInput extends DescribeGatewayRouteInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeGatewayRouteCommand}.
13
17
  */
14
18
  export interface DescribeGatewayRouteCommandOutput extends DescribeGatewayRouteOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Describes an existing gateway route.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DescribeGatewayRouteCommandOutput extends DescribeGatewayRouteO
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeGatewayRouteCommandInput - {@link DescribeGatewayRouteCommandInput}
34
+ * @returns {@link DescribeGatewayRouteCommandOutput}
28
35
  * @see {@link DescribeGatewayRouteCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeGatewayRouteCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -55,11 +62,20 @@ export interface DescribeGatewayRouteCommandOutput extends DescribeGatewayRouteO
55
62
  export declare class DescribeGatewayRouteCommand extends $Command<DescribeGatewayRouteCommandInput, DescribeGatewayRouteCommandOutput, AppMeshClientResolvedConfig> {
56
63
  readonly input: DescribeGatewayRouteCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: DescribeGatewayRouteCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeGatewayRouteCommandInput, DescribeGatewayRouteCommandOutput>;
73
+ /**
74
+ * @internal
75
+ */
63
76
  private serialize;
77
+ /**
78
+ * @internal
79
+ */
64
80
  private deserialize;
65
81
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient";
5
5
  import { DescribeMeshInput, DescribeMeshOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeMeshCommand}.
8
10
  */
9
11
  export interface DescribeMeshCommandInput extends DescribeMeshInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeMeshCommand}.
13
17
  */
14
18
  export interface DescribeMeshCommandOutput extends DescribeMeshOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Describes an existing service mesh.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DescribeMeshCommandOutput extends DescribeMeshOutput, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeMeshCommandInput - {@link DescribeMeshCommandInput}
34
+ * @returns {@link DescribeMeshCommandOutput}
28
35
  * @see {@link DescribeMeshCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeMeshCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -55,11 +62,20 @@ export interface DescribeMeshCommandOutput extends DescribeMeshOutput, __Metadat
55
62
  export declare class DescribeMeshCommand extends $Command<DescribeMeshCommandInput, DescribeMeshCommandOutput, AppMeshClientResolvedConfig> {
56
63
  readonly input: DescribeMeshCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: DescribeMeshCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeMeshCommandInput, DescribeMeshCommandOutput>;
73
+ /**
74
+ * @internal
75
+ */
63
76
  private serialize;
77
+ /**
78
+ * @internal
79
+ */
64
80
  private deserialize;
65
81
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient";
5
5
  import { DescribeRouteInput, DescribeRouteOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeRouteCommand}.
8
10
  */
9
11
  export interface DescribeRouteCommandInput extends DescribeRouteInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeRouteCommand}.
13
17
  */
14
18
  export interface DescribeRouteCommandOutput extends DescribeRouteOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Describes an existing route.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DescribeRouteCommandOutput extends DescribeRouteOutput, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeRouteCommandInput - {@link DescribeRouteCommandInput}
34
+ * @returns {@link DescribeRouteCommandOutput}
28
35
  * @see {@link DescribeRouteCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeRouteCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -55,11 +62,20 @@ export interface DescribeRouteCommandOutput extends DescribeRouteOutput, __Metad
55
62
  export declare class DescribeRouteCommand extends $Command<DescribeRouteCommandInput, DescribeRouteCommandOutput, AppMeshClientResolvedConfig> {
56
63
  readonly input: DescribeRouteCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: DescribeRouteCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeRouteCommandInput, DescribeRouteCommandOutput>;
73
+ /**
74
+ * @internal
75
+ */
63
76
  private serialize;
77
+ /**
78
+ * @internal
79
+ */
64
80
  private deserialize;
65
81
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient";
5
5
  import { DescribeVirtualGatewayInput, DescribeVirtualGatewayOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeVirtualGatewayCommand}.
8
10
  */
9
11
  export interface DescribeVirtualGatewayCommandInput extends DescribeVirtualGatewayInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeVirtualGatewayCommand}.
13
17
  */
14
18
  export interface DescribeVirtualGatewayCommandOutput extends DescribeVirtualGatewayOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Describes an existing virtual gateway.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface DescribeVirtualGatewayCommandOutput extends DescribeVirtualGate
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeVirtualGatewayCommandInput - {@link DescribeVirtualGatewayCommandInput}
34
+ * @returns {@link DescribeVirtualGatewayCommandOutput}
28
35
  * @see {@link DescribeVirtualGatewayCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeVirtualGatewayCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -55,11 +62,20 @@ export interface DescribeVirtualGatewayCommandOutput extends DescribeVirtualGate
55
62
  export declare class DescribeVirtualGatewayCommand extends $Command<DescribeVirtualGatewayCommandInput, DescribeVirtualGatewayCommandOutput, AppMeshClientResolvedConfig> {
56
63
  readonly input: DescribeVirtualGatewayCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: DescribeVirtualGatewayCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeVirtualGatewayCommandInput, DescribeVirtualGatewayCommandOutput>;
73
+ /**
74
+ * @internal
75
+ */
63
76
  private serialize;
77
+ /**
78
+ * @internal
79
+ */
64
80
  private deserialize;
65
81
  }