@aws-sdk/client-app-mesh 3.288.0 → 3.290.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 +30 -0
  2. package/dist-types/commands/CreateMeshCommand.d.ts +30 -0
  3. package/dist-types/commands/CreateRouteCommand.d.ts +30 -0
  4. package/dist-types/commands/CreateVirtualGatewayCommand.d.ts +30 -0
  5. package/dist-types/commands/CreateVirtualNodeCommand.d.ts +30 -0
  6. package/dist-types/commands/CreateVirtualRouterCommand.d.ts +30 -0
  7. package/dist-types/commands/CreateVirtualServiceCommand.d.ts +30 -0
  8. package/dist-types/commands/DeleteGatewayRouteCommand.d.ts +26 -0
  9. package/dist-types/commands/DeleteMeshCommand.d.ts +26 -0
  10. package/dist-types/commands/DeleteRouteCommand.d.ts +26 -0
  11. package/dist-types/commands/DeleteVirtualGatewayCommand.d.ts +26 -0
  12. package/dist-types/commands/DeleteVirtualNodeCommand.d.ts +26 -0
  13. package/dist-types/commands/DeleteVirtualRouterCommand.d.ts +26 -0
  14. package/dist-types/commands/DeleteVirtualServiceCommand.d.ts +26 -0
  15. package/dist-types/commands/DescribeGatewayRouteCommand.d.ts +22 -0
  16. package/dist-types/commands/DescribeMeshCommand.d.ts +22 -0
  17. package/dist-types/commands/DescribeRouteCommand.d.ts +22 -0
  18. package/dist-types/commands/DescribeVirtualGatewayCommand.d.ts +22 -0
  19. package/dist-types/commands/DescribeVirtualNodeCommand.d.ts +22 -0
  20. package/dist-types/commands/DescribeVirtualRouterCommand.d.ts +22 -0
  21. package/dist-types/commands/DescribeVirtualServiceCommand.d.ts +22 -0
  22. package/dist-types/commands/ListGatewayRoutesCommand.d.ts +22 -0
  23. package/dist-types/commands/ListMeshesCommand.d.ts +22 -0
  24. package/dist-types/commands/ListRoutesCommand.d.ts +22 -0
  25. package/dist-types/commands/ListTagsForResourceCommand.d.ts +22 -0
  26. package/dist-types/commands/ListVirtualGatewaysCommand.d.ts +22 -0
  27. package/dist-types/commands/ListVirtualNodesCommand.d.ts +22 -0
  28. package/dist-types/commands/ListVirtualRoutersCommand.d.ts +22 -0
  29. package/dist-types/commands/ListVirtualServicesCommand.d.ts +22 -0
  30. package/dist-types/commands/TagResourceCommand.d.ts +27 -0
  31. package/dist-types/commands/UntagResourceCommand.d.ts +22 -0
  32. package/dist-types/commands/UpdateGatewayRouteCommand.d.ts +30 -0
  33. package/dist-types/commands/UpdateMeshCommand.d.ts +26 -0
  34. package/dist-types/commands/UpdateRouteCommand.d.ts +30 -0
  35. package/dist-types/commands/UpdateVirtualGatewayCommand.d.ts +30 -0
  36. package/dist-types/commands/UpdateVirtualNodeCommand.d.ts +30 -0
  37. package/dist-types/commands/UpdateVirtualRouterCommand.d.ts +30 -0
  38. package/dist-types/commands/UpdateVirtualServiceCommand.d.ts +30 -0
  39. package/package.json +29 -29
@@ -33,6 +33,36 @@ export interface CreateGatewayRouteCommandOutput extends CreateGatewayRouteOutpu
33
33
  * @see {@link CreateGatewayRouteCommandOutput} for command's `response` shape.
34
34
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
35
35
  *
36
+ * @throws {@link BadRequestException} (client fault)
37
+ * <p>The request syntax was malformed. Check your request syntax and try again.</p>
38
+ *
39
+ * @throws {@link ConflictException} (client fault)
40
+ * <p>The request contains a client token that was used for a previous update resource call
41
+ * with different specifications. Try the request again with a new client token.</p>
42
+ *
43
+ * @throws {@link ForbiddenException} (client fault)
44
+ * <p>You don't have permissions to perform this action.</p>
45
+ *
46
+ * @throws {@link InternalServerErrorException} (server fault)
47
+ * <p>The request processing has failed because of an unknown error, exception, or
48
+ * failure.</p>
49
+ *
50
+ * @throws {@link LimitExceededException} (client fault)
51
+ * <p>You have exceeded a service limit for your account. For more information, see <a href="https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html">Service
52
+ * Limits</a> in the <i>App Mesh User Guide</i>.</p>
53
+ *
54
+ * @throws {@link NotFoundException} (client fault)
55
+ * <p>The specified resource doesn't exist. Check your request syntax and try again.</p>
56
+ *
57
+ * @throws {@link ServiceUnavailableException} (server fault)
58
+ * <p>The request has failed due to a temporary failure of the service.</p>
59
+ *
60
+ * @throws {@link TooManyRequestsException} (client fault)
61
+ * <p>The maximum request rate permitted by the App Mesh APIs has been exceeded for
62
+ * your account. For best results, use an increasing or variable sleep interval between
63
+ * requests.</p>
64
+ *
65
+ *
36
66
  */
37
67
  export declare class CreateGatewayRouteCommand extends $Command<CreateGatewayRouteCommandInput, CreateGatewayRouteCommandOutput, AppMeshClientResolvedConfig> {
38
68
  readonly input: CreateGatewayRouteCommandInput;
@@ -34,6 +34,36 @@ export interface CreateMeshCommandOutput extends CreateMeshOutput, __MetadataBea
34
34
  * @see {@link CreateMeshCommandOutput} for command's `response` shape.
35
35
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
36
36
  *
37
+ * @throws {@link BadRequestException} (client fault)
38
+ * <p>The request syntax was malformed. Check your request syntax and try again.</p>
39
+ *
40
+ * @throws {@link ConflictException} (client fault)
41
+ * <p>The request contains a client token that was used for a previous update resource call
42
+ * with different specifications. Try the request again with a new client token.</p>
43
+ *
44
+ * @throws {@link ForbiddenException} (client fault)
45
+ * <p>You don't have permissions to perform this action.</p>
46
+ *
47
+ * @throws {@link InternalServerErrorException} (server fault)
48
+ * <p>The request processing has failed because of an unknown error, exception, or
49
+ * failure.</p>
50
+ *
51
+ * @throws {@link LimitExceededException} (client fault)
52
+ * <p>You have exceeded a service limit for your account. For more information, see <a href="https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html">Service
53
+ * Limits</a> in the <i>App Mesh User Guide</i>.</p>
54
+ *
55
+ * @throws {@link NotFoundException} (client fault)
56
+ * <p>The specified resource doesn't exist. Check your request syntax and try again.</p>
57
+ *
58
+ * @throws {@link ServiceUnavailableException} (server fault)
59
+ * <p>The request has failed due to a temporary failure of the service.</p>
60
+ *
61
+ * @throws {@link TooManyRequestsException} (client fault)
62
+ * <p>The maximum request rate permitted by the App Mesh APIs has been exceeded for
63
+ * your account. For best results, use an increasing or variable sleep interval between
64
+ * requests.</p>
65
+ *
66
+ *
37
67
  */
38
68
  export declare class CreateMeshCommand extends $Command<CreateMeshCommandInput, CreateMeshCommandOutput, AppMeshClientResolvedConfig> {
39
69
  readonly input: CreateMeshCommandInput;
@@ -32,6 +32,36 @@ export interface CreateRouteCommandOutput extends CreateRouteOutput, __MetadataB
32
32
  * @see {@link CreateRouteCommandOutput} for command's `response` shape.
33
33
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
34
34
  *
35
+ * @throws {@link BadRequestException} (client fault)
36
+ * <p>The request syntax was malformed. Check your request syntax and try again.</p>
37
+ *
38
+ * @throws {@link ConflictException} (client fault)
39
+ * <p>The request contains a client token that was used for a previous update resource call
40
+ * with different specifications. Try the request again with a new client token.</p>
41
+ *
42
+ * @throws {@link ForbiddenException} (client fault)
43
+ * <p>You don't have permissions to perform this action.</p>
44
+ *
45
+ * @throws {@link InternalServerErrorException} (server fault)
46
+ * <p>The request processing has failed because of an unknown error, exception, or
47
+ * failure.</p>
48
+ *
49
+ * @throws {@link LimitExceededException} (client fault)
50
+ * <p>You have exceeded a service limit for your account. For more information, see <a href="https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html">Service
51
+ * Limits</a> in the <i>App Mesh User Guide</i>.</p>
52
+ *
53
+ * @throws {@link NotFoundException} (client fault)
54
+ * <p>The specified resource doesn't exist. Check your request syntax and try again.</p>
55
+ *
56
+ * @throws {@link ServiceUnavailableException} (server fault)
57
+ * <p>The request has failed due to a temporary failure of the service.</p>
58
+ *
59
+ * @throws {@link TooManyRequestsException} (client fault)
60
+ * <p>The maximum request rate permitted by the App Mesh APIs has been exceeded for
61
+ * your account. For best results, use an increasing or variable sleep interval between
62
+ * requests.</p>
63
+ *
64
+ *
35
65
  */
36
66
  export declare class CreateRouteCommand extends $Command<CreateRouteCommandInput, CreateRouteCommandOutput, AppMeshClientResolvedConfig> {
37
67
  readonly input: CreateRouteCommandInput;
@@ -34,6 +34,36 @@ export interface CreateVirtualGatewayCommandOutput extends CreateVirtualGatewayO
34
34
  * @see {@link CreateVirtualGatewayCommandOutput} for command's `response` shape.
35
35
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
36
36
  *
37
+ * @throws {@link BadRequestException} (client fault)
38
+ * <p>The request syntax was malformed. Check your request syntax and try again.</p>
39
+ *
40
+ * @throws {@link ConflictException} (client fault)
41
+ * <p>The request contains a client token that was used for a previous update resource call
42
+ * with different specifications. Try the request again with a new client token.</p>
43
+ *
44
+ * @throws {@link ForbiddenException} (client fault)
45
+ * <p>You don't have permissions to perform this action.</p>
46
+ *
47
+ * @throws {@link InternalServerErrorException} (server fault)
48
+ * <p>The request processing has failed because of an unknown error, exception, or
49
+ * failure.</p>
50
+ *
51
+ * @throws {@link LimitExceededException} (client fault)
52
+ * <p>You have exceeded a service limit for your account. For more information, see <a href="https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html">Service
53
+ * Limits</a> in the <i>App Mesh User Guide</i>.</p>
54
+ *
55
+ * @throws {@link NotFoundException} (client fault)
56
+ * <p>The specified resource doesn't exist. Check your request syntax and try again.</p>
57
+ *
58
+ * @throws {@link ServiceUnavailableException} (server fault)
59
+ * <p>The request has failed due to a temporary failure of the service.</p>
60
+ *
61
+ * @throws {@link TooManyRequestsException} (client fault)
62
+ * <p>The maximum request rate permitted by the App Mesh APIs has been exceeded for
63
+ * your account. For best results, use an increasing or variable sleep interval between
64
+ * requests.</p>
65
+ *
66
+ *
37
67
  */
38
68
  export declare class CreateVirtualGatewayCommand extends $Command<CreateVirtualGatewayCommandInput, CreateVirtualGatewayCommandOutput, AppMeshClientResolvedConfig> {
39
69
  readonly input: CreateVirtualGatewayCommandInput;
@@ -52,6 +52,36 @@ export interface CreateVirtualNodeCommandOutput extends CreateVirtualNodeOutput,
52
52
  * @see {@link CreateVirtualNodeCommandOutput} for command's `response` shape.
53
53
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
54
54
  *
55
+ * @throws {@link BadRequestException} (client fault)
56
+ * <p>The request syntax was malformed. Check your request syntax and try again.</p>
57
+ *
58
+ * @throws {@link ConflictException} (client fault)
59
+ * <p>The request contains a client token that was used for a previous update resource call
60
+ * with different specifications. Try the request again with a new client token.</p>
61
+ *
62
+ * @throws {@link ForbiddenException} (client fault)
63
+ * <p>You don't have permissions to perform this action.</p>
64
+ *
65
+ * @throws {@link InternalServerErrorException} (server fault)
66
+ * <p>The request processing has failed because of an unknown error, exception, or
67
+ * failure.</p>
68
+ *
69
+ * @throws {@link LimitExceededException} (client fault)
70
+ * <p>You have exceeded a service limit for your account. For more information, see <a href="https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html">Service
71
+ * Limits</a> in the <i>App Mesh User Guide</i>.</p>
72
+ *
73
+ * @throws {@link NotFoundException} (client fault)
74
+ * <p>The specified resource doesn't exist. Check your request syntax and try again.</p>
75
+ *
76
+ * @throws {@link ServiceUnavailableException} (server fault)
77
+ * <p>The request has failed due to a temporary failure of the service.</p>
78
+ *
79
+ * @throws {@link TooManyRequestsException} (client fault)
80
+ * <p>The maximum request rate permitted by the App Mesh APIs has been exceeded for
81
+ * your account. For best results, use an increasing or variable sleep interval between
82
+ * requests.</p>
83
+ *
84
+ *
55
85
  */
56
86
  export declare class CreateVirtualNodeCommand extends $Command<CreateVirtualNodeCommandInput, CreateVirtualNodeCommandOutput, AppMeshClientResolvedConfig> {
57
87
  readonly input: CreateVirtualNodeCommandInput;
@@ -35,6 +35,36 @@ export interface CreateVirtualRouterCommandOutput extends CreateVirtualRouterOut
35
35
  * @see {@link CreateVirtualRouterCommandOutput} for command's `response` shape.
36
36
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
37
37
  *
38
+ * @throws {@link BadRequestException} (client fault)
39
+ * <p>The request syntax was malformed. Check your request syntax and try again.</p>
40
+ *
41
+ * @throws {@link ConflictException} (client fault)
42
+ * <p>The request contains a client token that was used for a previous update resource call
43
+ * with different specifications. Try the request again with a new client token.</p>
44
+ *
45
+ * @throws {@link ForbiddenException} (client fault)
46
+ * <p>You don't have permissions to perform this action.</p>
47
+ *
48
+ * @throws {@link InternalServerErrorException} (server fault)
49
+ * <p>The request processing has failed because of an unknown error, exception, or
50
+ * failure.</p>
51
+ *
52
+ * @throws {@link LimitExceededException} (client fault)
53
+ * <p>You have exceeded a service limit for your account. For more information, see <a href="https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html">Service
54
+ * Limits</a> in the <i>App Mesh User Guide</i>.</p>
55
+ *
56
+ * @throws {@link NotFoundException} (client fault)
57
+ * <p>The specified resource doesn't exist. Check your request syntax and try again.</p>
58
+ *
59
+ * @throws {@link ServiceUnavailableException} (server fault)
60
+ * <p>The request has failed due to a temporary failure of the service.</p>
61
+ *
62
+ * @throws {@link TooManyRequestsException} (client fault)
63
+ * <p>The maximum request rate permitted by the App Mesh APIs has been exceeded for
64
+ * your account. For best results, use an increasing or variable sleep interval between
65
+ * requests.</p>
66
+ *
67
+ *
38
68
  */
39
69
  export declare class CreateVirtualRouterCommand extends $Command<CreateVirtualRouterCommandInput, CreateVirtualRouterCommandOutput, AppMeshClientResolvedConfig> {
40
70
  readonly input: CreateVirtualRouterCommandInput;
@@ -35,6 +35,36 @@ export interface CreateVirtualServiceCommandOutput extends CreateVirtualServiceO
35
35
  * @see {@link CreateVirtualServiceCommandOutput} for command's `response` shape.
36
36
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
37
37
  *
38
+ * @throws {@link BadRequestException} (client fault)
39
+ * <p>The request syntax was malformed. Check your request syntax and try again.</p>
40
+ *
41
+ * @throws {@link ConflictException} (client fault)
42
+ * <p>The request contains a client token that was used for a previous update resource call
43
+ * with different specifications. Try the request again with a new client token.</p>
44
+ *
45
+ * @throws {@link ForbiddenException} (client fault)
46
+ * <p>You don't have permissions to perform this action.</p>
47
+ *
48
+ * @throws {@link InternalServerErrorException} (server fault)
49
+ * <p>The request processing has failed because of an unknown error, exception, or
50
+ * failure.</p>
51
+ *
52
+ * @throws {@link LimitExceededException} (client fault)
53
+ * <p>You have exceeded a service limit for your account. For more information, see <a href="https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html">Service
54
+ * Limits</a> in the <i>App Mesh User Guide</i>.</p>
55
+ *
56
+ * @throws {@link NotFoundException} (client fault)
57
+ * <p>The specified resource doesn't exist. Check your request syntax and try again.</p>
58
+ *
59
+ * @throws {@link ServiceUnavailableException} (server fault)
60
+ * <p>The request has failed due to a temporary failure of the service.</p>
61
+ *
62
+ * @throws {@link TooManyRequestsException} (client fault)
63
+ * <p>The maximum request rate permitted by the App Mesh APIs has been exceeded for
64
+ * your account. For best results, use an increasing or variable sleep interval between
65
+ * requests.</p>
66
+ *
67
+ *
38
68
  */
39
69
  export declare class CreateVirtualServiceCommand extends $Command<CreateVirtualServiceCommandInput, CreateVirtualServiceCommandOutput, AppMeshClientResolvedConfig> {
40
70
  readonly input: CreateVirtualServiceCommandInput;
@@ -29,6 +29,32 @@ export interface DeleteGatewayRouteCommandOutput extends DeleteGatewayRouteOutpu
29
29
  * @see {@link DeleteGatewayRouteCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The request syntax was malformed. Check your request syntax and try again.</p>
34
+ *
35
+ * @throws {@link ForbiddenException} (client fault)
36
+ * <p>You don't have permissions to perform this action.</p>
37
+ *
38
+ * @throws {@link InternalServerErrorException} (server fault)
39
+ * <p>The request processing has failed because of an unknown error, exception, or
40
+ * failure.</p>
41
+ *
42
+ * @throws {@link NotFoundException} (client fault)
43
+ * <p>The specified resource doesn't exist. Check your request syntax and try again.</p>
44
+ *
45
+ * @throws {@link ResourceInUseException} (client fault)
46
+ * <p>You can't delete the specified resource because it's in use or required by another
47
+ * resource.</p>
48
+ *
49
+ * @throws {@link ServiceUnavailableException} (server fault)
50
+ * <p>The request has failed due to a temporary failure of the service.</p>
51
+ *
52
+ * @throws {@link TooManyRequestsException} (client fault)
53
+ * <p>The maximum request rate permitted by the App Mesh APIs has been exceeded for
54
+ * your account. For best results, use an increasing or variable sleep interval between
55
+ * requests.</p>
56
+ *
57
+ *
32
58
  */
33
59
  export declare class DeleteGatewayRouteCommand extends $Command<DeleteGatewayRouteCommandInput, DeleteGatewayRouteCommandOutput, AppMeshClientResolvedConfig> {
34
60
  readonly input: DeleteGatewayRouteCommandInput;
@@ -31,6 +31,32 @@ export interface DeleteMeshCommandOutput extends DeleteMeshOutput, __MetadataBea
31
31
  * @see {@link DeleteMeshCommandOutput} for command's `response` shape.
32
32
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
33
33
  *
34
+ * @throws {@link BadRequestException} (client fault)
35
+ * <p>The request syntax was malformed. Check your request syntax and try again.</p>
36
+ *
37
+ * @throws {@link ForbiddenException} (client fault)
38
+ * <p>You don't have permissions to perform this action.</p>
39
+ *
40
+ * @throws {@link InternalServerErrorException} (server fault)
41
+ * <p>The request processing has failed because of an unknown error, exception, or
42
+ * failure.</p>
43
+ *
44
+ * @throws {@link NotFoundException} (client fault)
45
+ * <p>The specified resource doesn't exist. Check your request syntax and try again.</p>
46
+ *
47
+ * @throws {@link ResourceInUseException} (client fault)
48
+ * <p>You can't delete the specified resource because it's in use or required by another
49
+ * resource.</p>
50
+ *
51
+ * @throws {@link ServiceUnavailableException} (server fault)
52
+ * <p>The request has failed due to a temporary failure of the service.</p>
53
+ *
54
+ * @throws {@link TooManyRequestsException} (client fault)
55
+ * <p>The maximum request rate permitted by the App Mesh APIs has been exceeded for
56
+ * your account. For best results, use an increasing or variable sleep interval between
57
+ * requests.</p>
58
+ *
59
+ *
34
60
  */
35
61
  export declare class DeleteMeshCommand extends $Command<DeleteMeshCommandInput, DeleteMeshCommandOutput, AppMeshClientResolvedConfig> {
36
62
  readonly input: DeleteMeshCommandInput;
@@ -29,6 +29,32 @@ export interface DeleteRouteCommandOutput extends DeleteRouteOutput, __MetadataB
29
29
  * @see {@link DeleteRouteCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The request syntax was malformed. Check your request syntax and try again.</p>
34
+ *
35
+ * @throws {@link ForbiddenException} (client fault)
36
+ * <p>You don't have permissions to perform this action.</p>
37
+ *
38
+ * @throws {@link InternalServerErrorException} (server fault)
39
+ * <p>The request processing has failed because of an unknown error, exception, or
40
+ * failure.</p>
41
+ *
42
+ * @throws {@link NotFoundException} (client fault)
43
+ * <p>The specified resource doesn't exist. Check your request syntax and try again.</p>
44
+ *
45
+ * @throws {@link ResourceInUseException} (client fault)
46
+ * <p>You can't delete the specified resource because it's in use or required by another
47
+ * resource.</p>
48
+ *
49
+ * @throws {@link ServiceUnavailableException} (server fault)
50
+ * <p>The request has failed due to a temporary failure of the service.</p>
51
+ *
52
+ * @throws {@link TooManyRequestsException} (client fault)
53
+ * <p>The maximum request rate permitted by the App Mesh APIs has been exceeded for
54
+ * your account. For best results, use an increasing or variable sleep interval between
55
+ * requests.</p>
56
+ *
57
+ *
32
58
  */
33
59
  export declare class DeleteRouteCommand extends $Command<DeleteRouteCommandInput, DeleteRouteCommandOutput, AppMeshClientResolvedConfig> {
34
60
  readonly input: DeleteRouteCommandInput;
@@ -30,6 +30,32 @@ export interface DeleteVirtualGatewayCommandOutput extends DeleteVirtualGatewayO
30
30
  * @see {@link DeleteVirtualGatewayCommandOutput} for command's `response` shape.
31
31
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
32
32
  *
33
+ * @throws {@link BadRequestException} (client fault)
34
+ * <p>The request syntax was malformed. Check your request syntax and try again.</p>
35
+ *
36
+ * @throws {@link ForbiddenException} (client fault)
37
+ * <p>You don't have permissions to perform this action.</p>
38
+ *
39
+ * @throws {@link InternalServerErrorException} (server fault)
40
+ * <p>The request processing has failed because of an unknown error, exception, or
41
+ * failure.</p>
42
+ *
43
+ * @throws {@link NotFoundException} (client fault)
44
+ * <p>The specified resource doesn't exist. Check your request syntax and try again.</p>
45
+ *
46
+ * @throws {@link ResourceInUseException} (client fault)
47
+ * <p>You can't delete the specified resource because it's in use or required by another
48
+ * resource.</p>
49
+ *
50
+ * @throws {@link ServiceUnavailableException} (server fault)
51
+ * <p>The request has failed due to a temporary failure of the service.</p>
52
+ *
53
+ * @throws {@link TooManyRequestsException} (client fault)
54
+ * <p>The maximum request rate permitted by the App Mesh APIs has been exceeded for
55
+ * your account. For best results, use an increasing or variable sleep interval between
56
+ * requests.</p>
57
+ *
58
+ *
33
59
  */
34
60
  export declare class DeleteVirtualGatewayCommand extends $Command<DeleteVirtualGatewayCommandInput, DeleteVirtualGatewayCommandOutput, AppMeshClientResolvedConfig> {
35
61
  readonly input: DeleteVirtualGatewayCommandInput;
@@ -31,6 +31,32 @@ export interface DeleteVirtualNodeCommandOutput extends DeleteVirtualNodeOutput,
31
31
  * @see {@link DeleteVirtualNodeCommandOutput} for command's `response` shape.
32
32
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
33
33
  *
34
+ * @throws {@link BadRequestException} (client fault)
35
+ * <p>The request syntax was malformed. Check your request syntax and try again.</p>
36
+ *
37
+ * @throws {@link ForbiddenException} (client fault)
38
+ * <p>You don't have permissions to perform this action.</p>
39
+ *
40
+ * @throws {@link InternalServerErrorException} (server fault)
41
+ * <p>The request processing has failed because of an unknown error, exception, or
42
+ * failure.</p>
43
+ *
44
+ * @throws {@link NotFoundException} (client fault)
45
+ * <p>The specified resource doesn't exist. Check your request syntax and try again.</p>
46
+ *
47
+ * @throws {@link ResourceInUseException} (client fault)
48
+ * <p>You can't delete the specified resource because it's in use or required by another
49
+ * resource.</p>
50
+ *
51
+ * @throws {@link ServiceUnavailableException} (server fault)
52
+ * <p>The request has failed due to a temporary failure of the service.</p>
53
+ *
54
+ * @throws {@link TooManyRequestsException} (client fault)
55
+ * <p>The maximum request rate permitted by the App Mesh APIs has been exceeded for
56
+ * your account. For best results, use an increasing or variable sleep interval between
57
+ * requests.</p>
58
+ *
59
+ *
34
60
  */
35
61
  export declare class DeleteVirtualNodeCommand extends $Command<DeleteVirtualNodeCommandInput, DeleteVirtualNodeCommandOutput, AppMeshClientResolvedConfig> {
36
62
  readonly input: DeleteVirtualNodeCommandInput;
@@ -31,6 +31,32 @@ export interface DeleteVirtualRouterCommandOutput extends DeleteVirtualRouterOut
31
31
  * @see {@link DeleteVirtualRouterCommandOutput} for command's `response` shape.
32
32
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
33
33
  *
34
+ * @throws {@link BadRequestException} (client fault)
35
+ * <p>The request syntax was malformed. Check your request syntax and try again.</p>
36
+ *
37
+ * @throws {@link ForbiddenException} (client fault)
38
+ * <p>You don't have permissions to perform this action.</p>
39
+ *
40
+ * @throws {@link InternalServerErrorException} (server fault)
41
+ * <p>The request processing has failed because of an unknown error, exception, or
42
+ * failure.</p>
43
+ *
44
+ * @throws {@link NotFoundException} (client fault)
45
+ * <p>The specified resource doesn't exist. Check your request syntax and try again.</p>
46
+ *
47
+ * @throws {@link ResourceInUseException} (client fault)
48
+ * <p>You can't delete the specified resource because it's in use or required by another
49
+ * resource.</p>
50
+ *
51
+ * @throws {@link ServiceUnavailableException} (server fault)
52
+ * <p>The request has failed due to a temporary failure of the service.</p>
53
+ *
54
+ * @throws {@link TooManyRequestsException} (client fault)
55
+ * <p>The maximum request rate permitted by the App Mesh APIs has been exceeded for
56
+ * your account. For best results, use an increasing or variable sleep interval between
57
+ * requests.</p>
58
+ *
59
+ *
34
60
  */
35
61
  export declare class DeleteVirtualRouterCommand extends $Command<DeleteVirtualRouterCommandInput, DeleteVirtualRouterCommandOutput, AppMeshClientResolvedConfig> {
36
62
  readonly input: DeleteVirtualRouterCommandInput;
@@ -29,6 +29,32 @@ export interface DeleteVirtualServiceCommandOutput extends DeleteVirtualServiceO
29
29
  * @see {@link DeleteVirtualServiceCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The request syntax was malformed. Check your request syntax and try again.</p>
34
+ *
35
+ * @throws {@link ForbiddenException} (client fault)
36
+ * <p>You don't have permissions to perform this action.</p>
37
+ *
38
+ * @throws {@link InternalServerErrorException} (server fault)
39
+ * <p>The request processing has failed because of an unknown error, exception, or
40
+ * failure.</p>
41
+ *
42
+ * @throws {@link NotFoundException} (client fault)
43
+ * <p>The specified resource doesn't exist. Check your request syntax and try again.</p>
44
+ *
45
+ * @throws {@link ResourceInUseException} (client fault)
46
+ * <p>You can't delete the specified resource because it's in use or required by another
47
+ * resource.</p>
48
+ *
49
+ * @throws {@link ServiceUnavailableException} (server fault)
50
+ * <p>The request has failed due to a temporary failure of the service.</p>
51
+ *
52
+ * @throws {@link TooManyRequestsException} (client fault)
53
+ * <p>The maximum request rate permitted by the App Mesh APIs has been exceeded for
54
+ * your account. For best results, use an increasing or variable sleep interval between
55
+ * requests.</p>
56
+ *
57
+ *
32
58
  */
33
59
  export declare class DeleteVirtualServiceCommand extends $Command<DeleteVirtualServiceCommandInput, DeleteVirtualServiceCommandOutput, AppMeshClientResolvedConfig> {
34
60
  readonly input: DeleteVirtualServiceCommandInput;
@@ -29,6 +29,28 @@ export interface DescribeGatewayRouteCommandOutput extends DescribeGatewayRouteO
29
29
  * @see {@link DescribeGatewayRouteCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The request syntax was malformed. Check your request syntax and try again.</p>
34
+ *
35
+ * @throws {@link ForbiddenException} (client fault)
36
+ * <p>You don't have permissions to perform this action.</p>
37
+ *
38
+ * @throws {@link InternalServerErrorException} (server fault)
39
+ * <p>The request processing has failed because of an unknown error, exception, or
40
+ * failure.</p>
41
+ *
42
+ * @throws {@link NotFoundException} (client fault)
43
+ * <p>The specified resource doesn't exist. Check your request syntax and try again.</p>
44
+ *
45
+ * @throws {@link ServiceUnavailableException} (server fault)
46
+ * <p>The request has failed due to a temporary failure of the service.</p>
47
+ *
48
+ * @throws {@link TooManyRequestsException} (client fault)
49
+ * <p>The maximum request rate permitted by the App Mesh APIs has been exceeded for
50
+ * your account. For best results, use an increasing or variable sleep interval between
51
+ * requests.</p>
52
+ *
53
+ *
32
54
  */
33
55
  export declare class DescribeGatewayRouteCommand extends $Command<DescribeGatewayRouteCommandInput, DescribeGatewayRouteCommandOutput, AppMeshClientResolvedConfig> {
34
56
  readonly input: DescribeGatewayRouteCommandInput;
@@ -29,6 +29,28 @@ export interface DescribeMeshCommandOutput extends DescribeMeshOutput, __Metadat
29
29
  * @see {@link DescribeMeshCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The request syntax was malformed. Check your request syntax and try again.</p>
34
+ *
35
+ * @throws {@link ForbiddenException} (client fault)
36
+ * <p>You don't have permissions to perform this action.</p>
37
+ *
38
+ * @throws {@link InternalServerErrorException} (server fault)
39
+ * <p>The request processing has failed because of an unknown error, exception, or
40
+ * failure.</p>
41
+ *
42
+ * @throws {@link NotFoundException} (client fault)
43
+ * <p>The specified resource doesn't exist. Check your request syntax and try again.</p>
44
+ *
45
+ * @throws {@link ServiceUnavailableException} (server fault)
46
+ * <p>The request has failed due to a temporary failure of the service.</p>
47
+ *
48
+ * @throws {@link TooManyRequestsException} (client fault)
49
+ * <p>The maximum request rate permitted by the App Mesh APIs has been exceeded for
50
+ * your account. For best results, use an increasing or variable sleep interval between
51
+ * requests.</p>
52
+ *
53
+ *
32
54
  */
33
55
  export declare class DescribeMeshCommand extends $Command<DescribeMeshCommandInput, DescribeMeshCommandOutput, AppMeshClientResolvedConfig> {
34
56
  readonly input: DescribeMeshCommandInput;
@@ -29,6 +29,28 @@ export interface DescribeRouteCommandOutput extends DescribeRouteOutput, __Metad
29
29
  * @see {@link DescribeRouteCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The request syntax was malformed. Check your request syntax and try again.</p>
34
+ *
35
+ * @throws {@link ForbiddenException} (client fault)
36
+ * <p>You don't have permissions to perform this action.</p>
37
+ *
38
+ * @throws {@link InternalServerErrorException} (server fault)
39
+ * <p>The request processing has failed because of an unknown error, exception, or
40
+ * failure.</p>
41
+ *
42
+ * @throws {@link NotFoundException} (client fault)
43
+ * <p>The specified resource doesn't exist. Check your request syntax and try again.</p>
44
+ *
45
+ * @throws {@link ServiceUnavailableException} (server fault)
46
+ * <p>The request has failed due to a temporary failure of the service.</p>
47
+ *
48
+ * @throws {@link TooManyRequestsException} (client fault)
49
+ * <p>The maximum request rate permitted by the App Mesh APIs has been exceeded for
50
+ * your account. For best results, use an increasing or variable sleep interval between
51
+ * requests.</p>
52
+ *
53
+ *
32
54
  */
33
55
  export declare class DescribeRouteCommand extends $Command<DescribeRouteCommandInput, DescribeRouteCommandOutput, AppMeshClientResolvedConfig> {
34
56
  readonly input: DescribeRouteCommandInput;
@@ -29,6 +29,28 @@ export interface DescribeVirtualGatewayCommandOutput extends DescribeVirtualGate
29
29
  * @see {@link DescribeVirtualGatewayCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The request syntax was malformed. Check your request syntax and try again.</p>
34
+ *
35
+ * @throws {@link ForbiddenException} (client fault)
36
+ * <p>You don't have permissions to perform this action.</p>
37
+ *
38
+ * @throws {@link InternalServerErrorException} (server fault)
39
+ * <p>The request processing has failed because of an unknown error, exception, or
40
+ * failure.</p>
41
+ *
42
+ * @throws {@link NotFoundException} (client fault)
43
+ * <p>The specified resource doesn't exist. Check your request syntax and try again.</p>
44
+ *
45
+ * @throws {@link ServiceUnavailableException} (server fault)
46
+ * <p>The request has failed due to a temporary failure of the service.</p>
47
+ *
48
+ * @throws {@link TooManyRequestsException} (client fault)
49
+ * <p>The maximum request rate permitted by the App Mesh APIs has been exceeded for
50
+ * your account. For best results, use an increasing or variable sleep interval between
51
+ * requests.</p>
52
+ *
53
+ *
32
54
  */
33
55
  export declare class DescribeVirtualGatewayCommand extends $Command<DescribeVirtualGatewayCommandInput, DescribeVirtualGatewayCommandOutput, AppMeshClientResolvedConfig> {
34
56
  readonly input: DescribeVirtualGatewayCommandInput;
@@ -29,6 +29,28 @@ export interface DescribeVirtualNodeCommandOutput extends DescribeVirtualNodeOut
29
29
  * @see {@link DescribeVirtualNodeCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppMeshClientResolvedConfig | config} for AppMeshClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The request syntax was malformed. Check your request syntax and try again.</p>
34
+ *
35
+ * @throws {@link ForbiddenException} (client fault)
36
+ * <p>You don't have permissions to perform this action.</p>
37
+ *
38
+ * @throws {@link InternalServerErrorException} (server fault)
39
+ * <p>The request processing has failed because of an unknown error, exception, or
40
+ * failure.</p>
41
+ *
42
+ * @throws {@link NotFoundException} (client fault)
43
+ * <p>The specified resource doesn't exist. Check your request syntax and try again.</p>
44
+ *
45
+ * @throws {@link ServiceUnavailableException} (server fault)
46
+ * <p>The request has failed due to a temporary failure of the service.</p>
47
+ *
48
+ * @throws {@link TooManyRequestsException} (client fault)
49
+ * <p>The maximum request rate permitted by the App Mesh APIs has been exceeded for
50
+ * your account. For best results, use an increasing or variable sleep interval between
51
+ * requests.</p>
52
+ *
53
+ *
32
54
  */
33
55
  export declare class DescribeVirtualNodeCommand extends $Command<DescribeVirtualNodeCommandInput, DescribeVirtualNodeCommandOutput, AppMeshClientResolvedConfig> {
34
56
  readonly input: DescribeVirtualNodeCommandInput;