@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 { DescribeVirtualNodeInput, DescribeVirtualNodeOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeVirtualNodeCommand}.
8
10
  */
9
11
  export interface DescribeVirtualNodeCommandInput extends DescribeVirtualNodeInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeVirtualNodeCommand}.
13
17
  */
14
18
  export interface DescribeVirtualNodeCommandOutput extends DescribeVirtualNodeOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Describes an existing virtual node.</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 DescribeVirtualNodeCommandOutput extends DescribeVirtualNodeOut
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeVirtualNodeCommandInput - {@link DescribeVirtualNodeCommandInput}
34
+ * @returns {@link DescribeVirtualNodeCommandOutput}
28
35
  * @see {@link DescribeVirtualNodeCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeVirtualNodeCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -55,11 +62,20 @@ export interface DescribeVirtualNodeCommandOutput extends DescribeVirtualNodeOut
55
62
  export declare class DescribeVirtualNodeCommand extends $Command<DescribeVirtualNodeCommandInput, DescribeVirtualNodeCommandOutput, AppMeshClientResolvedConfig> {
56
63
  readonly input: DescribeVirtualNodeCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: DescribeVirtualNodeCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeVirtualNodeCommandInput, DescribeVirtualNodeCommandOutput>;
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 { DescribeVirtualRouterInput, DescribeVirtualRouterOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeVirtualRouterCommand}.
8
10
  */
9
11
  export interface DescribeVirtualRouterCommandInput extends DescribeVirtualRouterInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeVirtualRouterCommand}.
13
17
  */
14
18
  export interface DescribeVirtualRouterCommandOutput extends DescribeVirtualRouterOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Describes an existing virtual router.</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 DescribeVirtualRouterCommandOutput extends DescribeVirtualRoute
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeVirtualRouterCommandInput - {@link DescribeVirtualRouterCommandInput}
34
+ * @returns {@link DescribeVirtualRouterCommandOutput}
28
35
  * @see {@link DescribeVirtualRouterCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeVirtualRouterCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -55,11 +62,20 @@ export interface DescribeVirtualRouterCommandOutput extends DescribeVirtualRoute
55
62
  export declare class DescribeVirtualRouterCommand extends $Command<DescribeVirtualRouterCommandInput, DescribeVirtualRouterCommandOutput, AppMeshClientResolvedConfig> {
56
63
  readonly input: DescribeVirtualRouterCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: DescribeVirtualRouterCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeVirtualRouterCommandInput, DescribeVirtualRouterCommandOutput>;
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 { DescribeVirtualServiceInput, DescribeVirtualServiceOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link DescribeVirtualServiceCommand}.
8
10
  */
9
11
  export interface DescribeVirtualServiceCommandInput extends DescribeVirtualServiceInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link DescribeVirtualServiceCommand}.
13
17
  */
14
18
  export interface DescribeVirtualServiceCommandOutput extends DescribeVirtualServiceOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Describes 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 DescribeVirtualServiceCommandOutput extends DescribeVirtualServ
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param DescribeVirtualServiceCommandInput - {@link DescribeVirtualServiceCommandInput}
34
+ * @returns {@link DescribeVirtualServiceCommandOutput}
28
35
  * @see {@link DescribeVirtualServiceCommandInput} for command's `input` shape.
29
36
  * @see {@link DescribeVirtualServiceCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -55,11 +62,20 @@ export interface DescribeVirtualServiceCommandOutput extends DescribeVirtualServ
55
62
  export declare class DescribeVirtualServiceCommand extends $Command<DescribeVirtualServiceCommandInput, DescribeVirtualServiceCommandOutput, AppMeshClientResolvedConfig> {
56
63
  readonly input: DescribeVirtualServiceCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: DescribeVirtualServiceCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeVirtualServiceCommandInput, DescribeVirtualServiceCommandOutput>;
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 { ListGatewayRoutesInput, ListGatewayRoutesOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListGatewayRoutesCommand}.
8
10
  */
9
11
  export interface ListGatewayRoutesCommandInput extends ListGatewayRoutesInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListGatewayRoutesCommand}.
13
17
  */
14
18
  export interface ListGatewayRoutesCommandOutput extends ListGatewayRoutesOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of existing gateway routes that are associated to a virtual
18
23
  * gateway.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListGatewayRoutesCommandOutput extends ListGatewayRoutesOutput,
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListGatewayRoutesCommandInput - {@link ListGatewayRoutesCommandInput}
35
+ * @returns {@link ListGatewayRoutesCommandOutput}
29
36
  * @see {@link ListGatewayRoutesCommandInput} for command's `input` shape.
30
37
  * @see {@link ListGatewayRoutesCommandOutput} for command's `response` shape.
31
38
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -56,11 +63,20 @@ export interface ListGatewayRoutesCommandOutput extends ListGatewayRoutesOutput,
56
63
  export declare class ListGatewayRoutesCommand extends $Command<ListGatewayRoutesCommandInput, ListGatewayRoutesCommandOutput, AppMeshClientResolvedConfig> {
57
64
  readonly input: ListGatewayRoutesCommandInput;
58
65
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
66
+ /**
67
+ * @public
68
+ */
59
69
  constructor(input: ListGatewayRoutesCommandInput);
60
70
  /**
61
71
  * @internal
62
72
  */
63
73
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListGatewayRoutesCommandInput, ListGatewayRoutesCommandOutput>;
74
+ /**
75
+ * @internal
76
+ */
64
77
  private serialize;
78
+ /**
79
+ * @internal
80
+ */
65
81
  private deserialize;
66
82
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient";
5
5
  import { ListMeshesInput, ListMeshesOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListMeshesCommand}.
8
10
  */
9
11
  export interface ListMeshesCommandInput extends ListMeshesInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListMeshesCommand}.
13
17
  */
14
18
  export interface ListMeshesCommandOutput extends ListMeshesOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of existing service meshes.</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 ListMeshesCommandOutput extends ListMeshesOutput, __MetadataBea
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListMeshesCommandInput - {@link ListMeshesCommandInput}
34
+ * @returns {@link ListMeshesCommandOutput}
28
35
  * @see {@link ListMeshesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListMeshesCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -55,11 +62,20 @@ export interface ListMeshesCommandOutput extends ListMeshesOutput, __MetadataBea
55
62
  export declare class ListMeshesCommand extends $Command<ListMeshesCommandInput, ListMeshesCommandOutput, AppMeshClientResolvedConfig> {
56
63
  readonly input: ListMeshesCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: ListMeshesCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListMeshesCommandInput, ListMeshesCommandOutput>;
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 { ListRoutesInput, ListRoutesOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListRoutesCommand}.
8
10
  */
9
11
  export interface ListRoutesCommandInput extends ListRoutesInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListRoutesCommand}.
13
17
  */
14
18
  export interface ListRoutesCommandOutput extends ListRoutesOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of existing routes in a 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 ListRoutesCommandOutput extends ListRoutesOutput, __MetadataBea
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListRoutesCommandInput - {@link ListRoutesCommandInput}
34
+ * @returns {@link ListRoutesCommandOutput}
28
35
  * @see {@link ListRoutesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListRoutesCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -55,11 +62,20 @@ export interface ListRoutesCommandOutput extends ListRoutesOutput, __MetadataBea
55
62
  export declare class ListRoutesCommand extends $Command<ListRoutesCommandInput, ListRoutesCommandOutput, AppMeshClientResolvedConfig> {
56
63
  readonly input: ListRoutesCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: ListRoutesCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListRoutesCommandInput, ListRoutesCommandOutput>;
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 { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>List the tags for an App Mesh resource.</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 ListTagsForResourceCommandOutput extends ListTagsForResourceOut
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
34
+ * @returns {@link ListTagsForResourceCommandOutput}
28
35
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -55,11 +62,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
55
62
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AppMeshClientResolvedConfig> {
56
63
  readonly input: ListTagsForResourceCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: ListTagsForResourceCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
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 { ListVirtualGatewaysInput, ListVirtualGatewaysOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListVirtualGatewaysCommand}.
8
10
  */
9
11
  export interface ListVirtualGatewaysCommandInput extends ListVirtualGatewaysInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListVirtualGatewaysCommand}.
13
17
  */
14
18
  export interface ListVirtualGatewaysCommandOutput extends ListVirtualGatewaysOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of existing virtual gateways in a 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 ListVirtualGatewaysCommandOutput extends ListVirtualGatewaysOut
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListVirtualGatewaysCommandInput - {@link ListVirtualGatewaysCommandInput}
34
+ * @returns {@link ListVirtualGatewaysCommandOutput}
28
35
  * @see {@link ListVirtualGatewaysCommandInput} for command's `input` shape.
29
36
  * @see {@link ListVirtualGatewaysCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -55,11 +62,20 @@ export interface ListVirtualGatewaysCommandOutput extends ListVirtualGatewaysOut
55
62
  export declare class ListVirtualGatewaysCommand extends $Command<ListVirtualGatewaysCommandInput, ListVirtualGatewaysCommandOutput, AppMeshClientResolvedConfig> {
56
63
  readonly input: ListVirtualGatewaysCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: ListVirtualGatewaysCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListVirtualGatewaysCommandInput, ListVirtualGatewaysCommandOutput>;
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 { ListVirtualNodesInput, ListVirtualNodesOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListVirtualNodesCommand}.
8
10
  */
9
11
  export interface ListVirtualNodesCommandInput extends ListVirtualNodesInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListVirtualNodesCommand}.
13
17
  */
14
18
  export interface ListVirtualNodesCommandOutput extends ListVirtualNodesOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of existing virtual nodes.</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 ListVirtualNodesCommandOutput extends ListVirtualNodesOutput, _
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListVirtualNodesCommandInput - {@link ListVirtualNodesCommandInput}
34
+ * @returns {@link ListVirtualNodesCommandOutput}
28
35
  * @see {@link ListVirtualNodesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListVirtualNodesCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -55,11 +62,20 @@ export interface ListVirtualNodesCommandOutput extends ListVirtualNodesOutput, _
55
62
  export declare class ListVirtualNodesCommand extends $Command<ListVirtualNodesCommandInput, ListVirtualNodesCommandOutput, AppMeshClientResolvedConfig> {
56
63
  readonly input: ListVirtualNodesCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: ListVirtualNodesCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListVirtualNodesCommandInput, ListVirtualNodesCommandOutput>;
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 { ListVirtualRoutersInput, ListVirtualRoutersOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListVirtualRoutersCommand}.
8
10
  */
9
11
  export interface ListVirtualRoutersCommandInput extends ListVirtualRoutersInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListVirtualRoutersCommand}.
13
17
  */
14
18
  export interface ListVirtualRoutersCommandOutput extends ListVirtualRoutersOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of existing virtual routers in a 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 ListVirtualRoutersCommandOutput extends ListVirtualRoutersOutpu
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListVirtualRoutersCommandInput - {@link ListVirtualRoutersCommandInput}
34
+ * @returns {@link ListVirtualRoutersCommandOutput}
28
35
  * @see {@link ListVirtualRoutersCommandInput} for command's `input` shape.
29
36
  * @see {@link ListVirtualRoutersCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -55,11 +62,20 @@ export interface ListVirtualRoutersCommandOutput extends ListVirtualRoutersOutpu
55
62
  export declare class ListVirtualRoutersCommand extends $Command<ListVirtualRoutersCommandInput, ListVirtualRoutersCommandOutput, AppMeshClientResolvedConfig> {
56
63
  readonly input: ListVirtualRoutersCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: ListVirtualRoutersCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListVirtualRoutersCommandInput, ListVirtualRoutersCommandOutput>;
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 { ListVirtualServicesInput, ListVirtualServicesOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListVirtualServicesCommand}.
8
10
  */
9
11
  export interface ListVirtualServicesCommandInput extends ListVirtualServicesInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListVirtualServicesCommand}.
13
17
  */
14
18
  export interface ListVirtualServicesCommandOutput extends ListVirtualServicesOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns a list of existing virtual services in a 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 ListVirtualServicesCommandOutput extends ListVirtualServicesOut
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListVirtualServicesCommandInput - {@link ListVirtualServicesCommandInput}
34
+ * @returns {@link ListVirtualServicesCommandOutput}
28
35
  * @see {@link ListVirtualServicesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListVirtualServicesCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -55,11 +62,20 @@ export interface ListVirtualServicesCommandOutput extends ListVirtualServicesOut
55
62
  export declare class ListVirtualServicesCommand extends $Command<ListVirtualServicesCommandInput, ListVirtualServicesCommandOutput, AppMeshClientResolvedConfig> {
56
63
  readonly input: ListVirtualServicesCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: ListVirtualServicesCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListVirtualServicesCommandInput, ListVirtualServicesCommandOutput>;
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 { TagResourceInput, TagResourceOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Associates the specified tags to a resource with the specified <code>resourceArn</code>.
18
23
  * If existing tags on a resource aren't specified in the request parameters, they aren't
19
24
  * changed. When a resource is deleted, the tags associated with that resource are also
@@ -28,6 +33,8 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
28
33
  * const response = await client.send(command);
29
34
  * ```
30
35
  *
36
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
37
+ * @returns {@link TagResourceCommandOutput}
31
38
  * @see {@link TagResourceCommandInput} for command's `input` shape.
32
39
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
33
40
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -63,11 +70,20 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
63
70
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, AppMeshClientResolvedConfig> {
64
71
  readonly input: TagResourceCommandInput;
65
72
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
73
+ /**
74
+ * @public
75
+ */
66
76
  constructor(input: TagResourceCommandInput);
67
77
  /**
68
78
  * @internal
69
79
  */
70
80
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
81
+ /**
82
+ * @internal
83
+ */
71
84
  private serialize;
85
+ /**
86
+ * @internal
87
+ */
72
88
  private deserialize;
73
89
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { AppMeshClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppMeshClient";
5
5
  import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Deletes specified tags from a resource.</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 UntagResourceCommandOutput extends UntagResourceOutput, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
34
+ * @returns {@link UntagResourceCommandOutput}
28
35
  * @see {@link UntagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
@@ -55,11 +62,20 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
55
62
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, AppMeshClientResolvedConfig> {
56
63
  readonly input: UntagResourceCommandInput;
57
64
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
65
+ /**
66
+ * @public
67
+ */
58
68
  constructor(input: UntagResourceCommandInput);
59
69
  /**
60
70
  * @internal
61
71
  */
62
72
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppMeshClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
73
+ /**
74
+ * @internal
75
+ */
63
76
  private serialize;
77
+ /**
78
+ * @internal
79
+ */
64
80
  private deserialize;
65
81
  }