@aws-sdk/client-ssm-sap 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 (27) hide show
  1. package/dist-types/SsmSap.d.ts +18 -0
  2. package/dist-types/SsmSapClient.d.ts +24 -4
  3. package/dist-types/commands/DeleteResourcePermissionCommand.d.ts +16 -0
  4. package/dist-types/commands/DeregisterApplicationCommand.d.ts +16 -0
  5. package/dist-types/commands/GetApplicationCommand.d.ts +16 -0
  6. package/dist-types/commands/GetComponentCommand.d.ts +16 -0
  7. package/dist-types/commands/GetDatabaseCommand.d.ts +16 -0
  8. package/dist-types/commands/GetOperationCommand.d.ts +16 -0
  9. package/dist-types/commands/GetResourcePermissionCommand.d.ts +16 -0
  10. package/dist-types/commands/ListApplicationsCommand.d.ts +16 -0
  11. package/dist-types/commands/ListComponentsCommand.d.ts +16 -0
  12. package/dist-types/commands/ListDatabasesCommand.d.ts +16 -0
  13. package/dist-types/commands/ListOperationsCommand.d.ts +16 -0
  14. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  15. package/dist-types/commands/PutResourcePermissionCommand.d.ts +16 -0
  16. package/dist-types/commands/RegisterApplicationCommand.d.ts +16 -0
  17. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  18. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  19. package/dist-types/commands/UpdateApplicationSettingsCommand.d.ts +16 -0
  20. package/dist-types/models/SsmSapServiceException.d.ts +2 -0
  21. package/dist-types/models/models_0.d.ts +149 -0
  22. package/dist-types/pagination/Interfaces.d.ts +3 -0
  23. package/dist-types/pagination/ListApplicationsPaginator.d.ts +3 -0
  24. package/dist-types/pagination/ListComponentsPaginator.d.ts +3 -0
  25. package/dist-types/pagination/ListDatabasesPaginator.d.ts +3 -0
  26. package/dist-types/pagination/ListOperationsPaginator.d.ts +3 -0
  27. package/package.json +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListDatabasesInput, ListDatabasesOutput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListDatabasesCommand}.
8
10
  */
9
11
  export interface ListDatabasesCommandInput extends ListDatabasesInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListDatabasesCommand}.
13
17
  */
14
18
  export interface ListDatabasesCommandOutput extends ListDatabasesOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the SAP HANA databases of an application registered with AWS Systems Manager for
18
23
  * SAP.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListDatabasesCommandOutput extends ListDatabasesOutput, __Metad
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListDatabasesCommandInput - {@link ListDatabasesCommandInput}
35
+ * @returns {@link ListDatabasesCommandOutput}
29
36
  * @see {@link ListDatabasesCommandInput} for command's `input` shape.
30
37
  * @see {@link ListDatabasesCommandOutput} for command's `response` shape.
31
38
  * @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
@@ -44,11 +51,20 @@ export interface ListDatabasesCommandOutput extends ListDatabasesOutput, __Metad
44
51
  export declare class ListDatabasesCommand extends $Command<ListDatabasesCommandInput, ListDatabasesCommandOutput, SsmSapClientResolvedConfig> {
45
52
  readonly input: ListDatabasesCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: ListDatabasesCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListDatabasesCommandInput, ListDatabasesCommandOutput>;
62
+ /**
63
+ * @internal
64
+ */
52
65
  private serialize;
66
+ /**
67
+ * @internal
68
+ */
53
69
  private deserialize;
54
70
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListOperationsInput, ListOperationsOutput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListOperationsCommand}.
8
10
  */
9
11
  export interface ListOperationsCommandInput extends ListOperationsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListOperationsCommand}.
13
17
  */
14
18
  export interface ListOperationsCommandOutput extends ListOperationsOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists the operations performed by AWS Systems Manager for SAP.</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 ListOperationsCommandOutput extends ListOperationsOutput, __Met
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListOperationsCommandInput - {@link ListOperationsCommandInput}
34
+ * @returns {@link ListOperationsCommandOutput}
28
35
  * @see {@link ListOperationsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListOperationsCommandOutput} for command's `response` shape.
30
37
  * @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
@@ -40,11 +47,20 @@ export interface ListOperationsCommandOutput extends ListOperationsOutput, __Met
40
47
  export declare class ListOperationsCommand extends $Command<ListOperationsCommandInput, ListOperationsCommandOutput, SsmSapClientResolvedConfig> {
41
48
  readonly input: ListOperationsCommandInput;
42
49
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
50
+ /**
51
+ * @public
52
+ */
43
53
  constructor(input: ListOperationsCommandInput);
44
54
  /**
45
55
  * @internal
46
56
  */
47
57
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOperationsCommandInput, ListOperationsCommandOutput>;
58
+ /**
59
+ * @internal
60
+ */
48
61
  private serialize;
62
+ /**
63
+ * @internal
64
+ */
49
65
  private deserialize;
50
66
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Lists all tags on an SAP HANA application and/or database registered with AWS Systems
18
23
  * Manager for SAP.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
35
+ * @returns {@link ListTagsForResourceCommandOutput}
29
36
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
30
37
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
31
38
  * @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
@@ -44,11 +51,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
44
51
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SsmSapClientResolvedConfig> {
45
52
  readonly input: ListTagsForResourceCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: ListTagsForResourceCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
62
+ /**
63
+ * @internal
64
+ */
52
65
  private serialize;
66
+ /**
67
+ * @internal
68
+ */
53
69
  private deserialize;
54
70
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { PutResourcePermissionInput, PutResourcePermissionOutput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutResourcePermissionCommand}.
8
10
  */
9
11
  export interface PutResourcePermissionCommandInput extends PutResourcePermissionInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutResourcePermissionCommand}.
13
17
  */
14
18
  export interface PutResourcePermissionCommandOutput extends PutResourcePermissionOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Adds permissions to the target database.</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 PutResourcePermissionCommandOutput extends PutResourcePermissio
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param PutResourcePermissionCommandInput - {@link PutResourcePermissionCommandInput}
34
+ * @returns {@link PutResourcePermissionCommandOutput}
28
35
  * @see {@link PutResourcePermissionCommandInput} for command's `input` shape.
29
36
  * @see {@link PutResourcePermissionCommandOutput} for command's `response` shape.
30
37
  * @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
@@ -43,11 +50,20 @@ export interface PutResourcePermissionCommandOutput extends PutResourcePermissio
43
50
  export declare class PutResourcePermissionCommand extends $Command<PutResourcePermissionCommandInput, PutResourcePermissionCommandOutput, SsmSapClientResolvedConfig> {
44
51
  readonly input: PutResourcePermissionCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: PutResourcePermissionCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutResourcePermissionCommandInput, PutResourcePermissionCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { RegisterApplicationInput, RegisterApplicationOutput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link RegisterApplicationCommand}.
8
10
  */
9
11
  export interface RegisterApplicationCommandInput extends RegisterApplicationInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link RegisterApplicationCommand}.
13
17
  */
14
18
  export interface RegisterApplicationCommandOutput extends RegisterApplicationOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Register an SAP application with AWS Systems Manager for SAP. You must meet the
18
23
  * following requirements before registering. </p>
19
24
  * <p>The SAP application you want to register with AWS Systems Manager for SAP is running
@@ -32,6 +37,8 @@ export interface RegisterApplicationCommandOutput extends RegisterApplicationOut
32
37
  * const response = await client.send(command);
33
38
  * ```
34
39
  *
40
+ * @param RegisterApplicationCommandInput - {@link RegisterApplicationCommandInput}
41
+ * @returns {@link RegisterApplicationCommandOutput}
35
42
  * @see {@link RegisterApplicationCommandInput} for command's `input` shape.
36
43
  * @see {@link RegisterApplicationCommandOutput} for command's `response` shape.
37
44
  * @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
@@ -50,11 +57,20 @@ export interface RegisterApplicationCommandOutput extends RegisterApplicationOut
50
57
  export declare class RegisterApplicationCommand extends $Command<RegisterApplicationCommandInput, RegisterApplicationCommandOutput, SsmSapClientResolvedConfig> {
51
58
  readonly input: RegisterApplicationCommandInput;
52
59
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
60
+ /**
61
+ * @public
62
+ */
53
63
  constructor(input: RegisterApplicationCommandInput);
54
64
  /**
55
65
  * @internal
56
66
  */
57
67
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterApplicationCommandInput, RegisterApplicationCommandOutput>;
68
+ /**
69
+ * @internal
70
+ */
58
71
  private serialize;
72
+ /**
73
+ * @internal
74
+ */
59
75
  private deserialize;
60
76
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link TagResourceCommand}.
8
10
  */
9
11
  export interface TagResourceCommandInput extends TagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link TagResourceCommand}.
13
17
  */
14
18
  export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates tag for a resource by specifying the ARN.</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 TagResourceCommandOutput extends TagResourceResponse, __Metadat
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
34
+ * @returns {@link TagResourceCommandOutput}
28
35
  * @see {@link TagResourceCommandInput} for command's `input` shape.
29
36
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
30
37
  * @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
@@ -43,11 +50,20 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
43
50
  export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, SsmSapClientResolvedConfig> {
44
51
  readonly input: TagResourceCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: TagResourceCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UntagResourceCommand}.
8
10
  */
9
11
  export interface UntagResourceCommandInput extends UntagResourceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UntagResourceCommand}.
13
17
  */
14
18
  export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Delete the tags for 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 UntagResourceResponse, __Met
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 SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
@@ -43,11 +50,20 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
43
50
  export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, SsmSapClientResolvedConfig> {
44
51
  readonly input: UntagResourceCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: UntagResourceCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { UpdateApplicationSettingsInput, UpdateApplicationSettingsOutput } from "../models/models_0";
5
5
  import { ServiceInputTypes, ServiceOutputTypes, SsmSapClientResolvedConfig } from "../SsmSapClient";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link UpdateApplicationSettingsCommand}.
8
10
  */
9
11
  export interface UpdateApplicationSettingsCommandInput extends UpdateApplicationSettingsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link UpdateApplicationSettingsCommand}.
13
17
  */
14
18
  export interface UpdateApplicationSettingsCommandOutput extends UpdateApplicationSettingsOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Updates the settings of an application registered with AWS Systems Manager for
18
23
  * SAP.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface UpdateApplicationSettingsCommandOutput extends UpdateApplicatio
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param UpdateApplicationSettingsCommandInput - {@link UpdateApplicationSettingsCommandInput}
35
+ * @returns {@link UpdateApplicationSettingsCommandOutput}
29
36
  * @see {@link UpdateApplicationSettingsCommandInput} for command's `input` shape.
30
37
  * @see {@link UpdateApplicationSettingsCommandOutput} for command's `response` shape.
31
38
  * @see {@link SsmSapClientResolvedConfig | config} for SsmSapClient's `config` shape.
@@ -44,11 +51,20 @@ export interface UpdateApplicationSettingsCommandOutput extends UpdateApplicatio
44
51
  export declare class UpdateApplicationSettingsCommand extends $Command<UpdateApplicationSettingsCommandInput, UpdateApplicationSettingsCommandOutput, SsmSapClientResolvedConfig> {
45
52
  readonly input: UpdateApplicationSettingsCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: UpdateApplicationSettingsCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: SsmSapClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateApplicationSettingsCommandInput, UpdateApplicationSettingsCommandOutput>;
62
+ /**
63
+ * @internal
64
+ */
52
65
  private serialize;
66
+ /**
67
+ * @internal
68
+ */
53
69
  private deserialize;
54
70
  }
@@ -1,5 +1,7 @@
1
1
  import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
2
  /**
3
+ * @public
4
+ *
3
5
  * Base exception class for all service exceptions from SsmSap service.
4
6
  */
5
7
  export declare class SsmSapServiceException extends __ServiceException {