Skip to content

Commit 24414af

Browse files
committed
1207: add xml changes; mapping-6.0-changes
1 parent 6594601 commit 24414af

4 files changed

Lines changed: 44 additions & 7 deletions

File tree

docs/release-notes/freshservice-mapping/mapping-3.0.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Changes in Version 3.0"
3-
sidebar_position: 2
3+
sidebar_position: 3
44
---
55

66
These are the changes to the `mapping.xml` file that version 3.0 has from version 2.0

docs/release-notes/freshservice-mapping/mapping-4.0.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: "Changes in Version 4.0 (CC5.1.0)"
3-
sidebar_position: 1
2+
title: "Changes in Version 4.0 (CC 5.1.0)"
3+
sidebar_position: 2
44
---
55

66
The following changes to the `mapping.xml` file are part of the Cloud Connector 5.1.0 release.
@@ -38,13 +38,13 @@ Two changes were made within the `D42 VMware VCenter Disk to Freshservice VMware
3838
- The `item_id` value in the DOQL query was changed from the following:
3939

4040
```
41-
resource.details ->> 'uuid' AS item_id,
41+
resource.details ->> 'uuid' AS item_id,
4242
```
4343

4444
To the following:
4545

4646
```
47-
resource.identifier AS item_id,
47+
resource.identifier AS item_id,
4848
```
4949

5050
- The `WHERE` clause in the DOQL query was updated from the following:

docs/release-notes/freshservice-mapping/mapping-5.0.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: "Changes in Version 5.0 (CC5.1.2)"
3-
sidebar_position: 0
3+
sidebar_position: 1
44
---
55

6-
The following changes to the `mapping.xml` file are part of the Cloud Connector 5.1.2 release.
6+
The following changes to the `mapping.xml` file are part of the Cloud Connector 5.1.2 release (CC 5.1.2).
77

88
If you are using a custom mapping.xml file, you need to manually apply these updates. See [Manage Customization with Newer Releases](/integration/external-integrations/freshservice-integration/customize-freshservice#manage-customization-with-newer-releases).
99

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
title: "Changes in Version 6.0 (CC 5.2.0)"
3+
sidebar_position: 0
4+
---
5+
6+
The following two changes to the `mapping.xml` file were made as part of the Cloud Connector 5.2.0 release (CC 5.2.0).
7+
8+
If you are using a custom `mapping.xml` file, you need to manually apply these updates. See [Manage Customization with Newer Releases](/integration/external-integrations/freshservice-integration/customize-freshservice#manage-customization-with-newer-releases).
9+
10+
## Change to the Azure Network Interface Task
11+
12+
Regarding this Azure Network Interface task:
13+
14+
```html
15+
<task enable="true" name="D42 Azure Network Interface to Freshservice Azure Network Interface" type="asset" description="Copy Azure Network Interface from Device42 to Freshservice" d42_min_version="19.04.00">
16+
```
17+
18+
The DOQL `SELECT` statement of the `<resource>` element was changed from:
19+
20+
```sql
21+
netport.details ->> 'mac_address' AS mac_address,
22+
```
23+
24+
To the following:
25+
26+
```sql
27+
netport.hwaddress AS mac_address,
28+
```
29+
30+
## Additional Tasks Added
31+
32+
Two tasks were added to delete software installations that no longer exist in Device42:
33+
34+
```xml
35+
<task enable="true" type="software_installation" description="Delete software installations from Freshservice that do not exist in Device42" d42_min_version="16.19.00">
36+
<task enable="true" type="software_installation" description="Delete software installations from Freshservice that do not exist in Device42" d42_max_version="16.18.02">
37+
```

0 commit comments

Comments
 (0)