From 1deadf7b9a257ae5769d061cae950ea8190f3233 Mon Sep 17 00:00:00 2001 From: haim Date: Wed, 15 Jan 2025 16:14:22 +0200 Subject: [PATCH 1/6] impl --- pkg/collector/data/examples_generator.go | 12 ++++--- pkg/internal/projectpath/projectpath.go | 5 +-- pkg/model/analyzer_test.go | 6 ++-- pkg/model/parser.go | 40 +++++++++++++++--------- 4 files changed, 40 insertions(+), 23 deletions(-) diff --git a/pkg/collector/data/examples_generator.go b/pkg/collector/data/examples_generator.go index f8c9fda8..214d9817 100644 --- a/pkg/collector/data/examples_generator.go +++ b/pkg/collector/data/examples_generator.go @@ -4,7 +4,7 @@ import ( "fmt" "maps" "os" - "path/filepath" + "path" "slices" "github.com/np-guard/vmware-analyzer/pkg/collector" @@ -93,10 +93,10 @@ type Example struct { Name string // example name for JSON file name } -var dataPkgPath = filepath.Join(projectpath.Root, "pkg", "collector", "data") +var dataPkgPath = path.Join(projectpath.Root, "pkg", "collector", "data") func getExamplesJSONPath(name string) string { - return filepath.Join(dataPkgPath, "json", name+".json") + return path.Join(dataPkgPath, "json", name+".json") } func (e *Example) StoreAsJSON(override bool) error { @@ -192,6 +192,8 @@ type Rule struct { Name string ID int Source string + SourcesExcluded bool + DestinationsExcluded bool Dest string Services []string Action string @@ -205,6 +207,8 @@ func (r *Rule) toNSXRule() *nsx.Rule { Action: (*nsx.RuleAction)(&r.Action), SourceGroups: []string{r.Source}, DestinationGroups: []string{r.Dest}, + SourcesExcluded: r.SourcesExcluded, + DestinationsExcluded: r.DestinationsExcluded, Services: r.Services, Direction: r.directionStr(), Scope: []string{AnyStr}, // TODO: add scope as configurable @@ -242,7 +246,7 @@ type Category struct { } func getServices() []collector.Service { - servicesFilePath := filepath.Join(dataPkgPath, "services.json") + servicesFilePath := path.Join(dataPkgPath, "services.json") inputConfigContent, err := os.ReadFile(servicesFilePath) if err != nil { return nil diff --git a/pkg/internal/projectpath/projectpath.go b/pkg/internal/projectpath/projectpath.go index c9210fbe..789ba84e 100644 --- a/pkg/internal/projectpath/projectpath.go +++ b/pkg/internal/projectpath/projectpath.go @@ -7,7 +7,7 @@ SPDX-License-Identifier: Apache-2.0 package projectpath import ( - "path/filepath" + "path" "runtime" ) @@ -17,5 +17,6 @@ var ( _, b, _, _ = runtime.Caller(0) // Root folder of this project - Root = filepath.Join(filepath.Dir(b), dirLevelUp, dirLevelUp, dirLevelUp) + // Root = path.Join(path.Dir(b), dirLevelUp, dirLevelUp, dirLevelUp) + Root = path.Join(".", dirLevelUp, dirLevelUp, dirLevelUp) ) diff --git a/pkg/model/analyzer_test.go b/pkg/model/analyzer_test.go index b00118de..bb4fc270 100644 --- a/pkg/model/analyzer_test.go +++ b/pkg/model/analyzer_test.go @@ -3,7 +3,7 @@ package model import ( "fmt" "os" - "path/filepath" + "path" "testing" "github.com/stretchr/testify/require" @@ -83,9 +83,9 @@ func TestAnalyzer(t *testing.T) { } func getExpectedTestPath(name string) string { - return filepath.Join(projectpath.Root, "pkg", "collector", "data", "expected_output", name) + return path.Join(projectpath.Root, "pkg", "collector", "data", "expected_output", name) } func getActualTestPath(name string) string { - return filepath.Join(projectpath.Root, "pkg", "collector", "data", "actual_output", name) + return path.Join(projectpath.Root, "pkg", "collector", "data", "actual_output", name) } diff --git a/pkg/model/parser.go b/pkg/model/parser.go index 7396dd80..95c53e76 100644 --- a/pkg/model/parser.go +++ b/pkg/model/parser.go @@ -39,11 +39,12 @@ func NewNSXConfigParserFromResourcesContainer(rc *collector.ResourcesContainerMo } type NSXConfigParser struct { - file string - rc *collector.ResourcesContainerModel - configRes *config - allGroups []*collector.Group - allGroupsVMs []*endpoints.VM + file string + rc *collector.ResourcesContainerModel + configRes *config + allGroups []*collector.Group + allGroupsPaths []string + allGroupsVMs []*endpoints.VM // store references to groups/services objects from paths used in Fw rules groupPathsToObjects map[string]*collector.Group servicePathsToObjects map[string]*collector.Service @@ -153,7 +154,7 @@ func (p *NSXConfigParser) getDFW() { // more fields to consider: sequence_number , stateful,tcp_strict, unique_id // This scope will take precedence over rule level scope. - scope, _ := p.getEndpointsFromGroupsPaths(secPolicy.Scope) + scope, _ := p.getEndpointsFromGroupsPaths(secPolicy.Scope, false) policyHasScope := !slices.Equal(secPolicy.Scope, []string{anyStr}) rules := secPolicy.Rules @@ -163,7 +164,7 @@ func (p *NSXConfigParser) getDFW() { r.scope = scope // scope from policy if !policyHasScope { // if policy scope is not configured, rule's scope takes effect - r.scope, r.scopeGroups = p.getEndpointsFromGroupsPaths(rule.Scope) + r.scope, r.scopeGroups = p.getEndpointsFromGroupsPaths(rule.Scope, false) } r.secPolicyName = *secPolicy.DisplayName p.addFWRule(r, category, rule) @@ -201,7 +202,7 @@ func (p *NSXConfigParser) getDefaultRule(secPolicy *collector.SecurityPolicy) *p res := &parsedRule{} // scope - the list of group paths where the rules in this policy will get applied. scope := secPolicy.Scope - vms, groups := p.getEndpointsFromGroupsPaths(scope) + vms, groups := p.getEndpointsFromGroupsPaths(scope,false) // rule applied as any-to-any only for ths VMs in the scope of the SecurityPolicy res.srcVMs = vms res.dstVMs = vms @@ -253,24 +254,35 @@ func (p *NSXConfigParser) getAllGroups() { // p.allGroupsVMs and p.groups are written together vms := []*endpoints.VM{} groups := []*collector.Group{} + groupsPaths := []string{} for i := range p.rc.DomainList { domainRsc := &p.rc.DomainList[i].Resources for j := range domainRsc.GroupList { - vms = append(vms, p.groupToVMsList(&domainRsc.GroupList[j])...) - groups = append(groups, &domainRsc.GroupList[j]) + group := &domainRsc.GroupList[j] + vms = append(vms, p.groupToVMsList(group)...) + groups = append(groups, group) + groupsPaths = append(groupsPaths, *group.Path) } } p.allGroupsVMs = vms p.allGroups = groups + p.allGroupsPaths = groupsPaths } -func (p *NSXConfigParser) getEndpointsFromGroupsPaths(groupsPaths []string) ([]*endpoints.VM, []*collector.Group) { +func (p *NSXConfigParser) getEndpointsFromGroupsPaths(groupsPaths []string, exclude bool) ([]*endpoints.VM, []*collector.Group) { if slices.Contains(groupsPaths, anyStr) { // TODO: if a VM is not within any group, this should not include that VM? - return p.allGroupsVMs, p.allGroups // all groups + if !exclude { + return p.allGroupsVMs, p.allGroups // all groups + } else { + return []*endpoints.VM{}, []*collector.Group{} + } } vms := []*endpoints.VM{} groups := []*collector.Group{} + if exclude{ + groupsPaths = slices.DeleteFunc(slices.Clone( p.allGroupsPaths), func(p string) bool{return slices.Contains(groupsPaths,p)}) + } // TODO: support IP Addresses in groupsPaths for _, groupPath := range groupsPaths { thisGroupVMs, thisGroup := p.getGroupVMs(groupPath) @@ -296,10 +308,10 @@ func (p *NSXConfigParser) getDFWRule(rule *collector.Rule) *parsedRule { // the source groups. If false, the rule applies to the source groups // TODO: handle excluded fields // srcExclude := rule.SourcesExcluded - res.srcVMs, res.srcGroups = p.getEndpointsFromGroupsPaths(srcGroups) + res.srcVMs, res.srcGroups = p.getEndpointsFromGroupsPaths(srcGroups, rule.SourcesExcluded) res.isAllSrcGroups = slices.Contains(srcGroups, anyStr) dstGroups := rule.DestinationGroups - res.dstVMs, res.dstGroups = p.getEndpointsFromGroupsPaths(dstGroups) + res.dstVMs, res.dstGroups = p.getEndpointsFromGroupsPaths(dstGroups, rule.DestinationsExcluded) res.isAllDstGroups = slices.Contains(dstGroups, anyStr) res.action = string(*rule.Action) From 981da71c075f4103b3946363e792b6bbeb103c3e Mon Sep 17 00:00:00 2001 From: haim Date: Wed, 15 Jan 2025 16:33:43 +0200 Subject: [PATCH 2/6] revert path --- pkg/collector/data/examples_generator.go | 8 ++++---- pkg/internal/projectpath/projectpath.go | 5 ++--- pkg/model/analyzer_test.go | 6 +++--- 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/pkg/collector/data/examples_generator.go b/pkg/collector/data/examples_generator.go index 214d9817..ed7142cb 100644 --- a/pkg/collector/data/examples_generator.go +++ b/pkg/collector/data/examples_generator.go @@ -4,7 +4,7 @@ import ( "fmt" "maps" "os" - "path" + "path/filepath" "slices" "github.com/np-guard/vmware-analyzer/pkg/collector" @@ -93,10 +93,10 @@ type Example struct { Name string // example name for JSON file name } -var dataPkgPath = path.Join(projectpath.Root, "pkg", "collector", "data") +var dataPkgPath = filepath.Join(projectpath.Root, "pkg", "collector", "data") func getExamplesJSONPath(name string) string { - return path.Join(dataPkgPath, "json", name+".json") + return filepath.Join(dataPkgPath, "json", name+".json") } func (e *Example) StoreAsJSON(override bool) error { @@ -246,7 +246,7 @@ type Category struct { } func getServices() []collector.Service { - servicesFilePath := path.Join(dataPkgPath, "services.json") + servicesFilePath := filepath.Join(dataPkgPath, "services.json") inputConfigContent, err := os.ReadFile(servicesFilePath) if err != nil { return nil diff --git a/pkg/internal/projectpath/projectpath.go b/pkg/internal/projectpath/projectpath.go index 789ba84e..c9210fbe 100644 --- a/pkg/internal/projectpath/projectpath.go +++ b/pkg/internal/projectpath/projectpath.go @@ -7,7 +7,7 @@ SPDX-License-Identifier: Apache-2.0 package projectpath import ( - "path" + "path/filepath" "runtime" ) @@ -17,6 +17,5 @@ var ( _, b, _, _ = runtime.Caller(0) // Root folder of this project - // Root = path.Join(path.Dir(b), dirLevelUp, dirLevelUp, dirLevelUp) - Root = path.Join(".", dirLevelUp, dirLevelUp, dirLevelUp) + Root = filepath.Join(filepath.Dir(b), dirLevelUp, dirLevelUp, dirLevelUp) ) diff --git a/pkg/model/analyzer_test.go b/pkg/model/analyzer_test.go index bb4fc270..b00118de 100644 --- a/pkg/model/analyzer_test.go +++ b/pkg/model/analyzer_test.go @@ -3,7 +3,7 @@ package model import ( "fmt" "os" - "path" + "path/filepath" "testing" "github.com/stretchr/testify/require" @@ -83,9 +83,9 @@ func TestAnalyzer(t *testing.T) { } func getExpectedTestPath(name string) string { - return path.Join(projectpath.Root, "pkg", "collector", "data", "expected_output", name) + return filepath.Join(projectpath.Root, "pkg", "collector", "data", "expected_output", name) } func getActualTestPath(name string) string { - return path.Join(projectpath.Root, "pkg", "collector", "data", "actual_output", name) + return filepath.Join(projectpath.Root, "pkg", "collector", "data", "actual_output", name) } From 2223c2f82bf27d26be9670e9951b2f1e3427153c Mon Sep 17 00:00:00 2001 From: haim Date: Wed, 15 Jan 2025 16:55:51 +0200 Subject: [PATCH 3/6] fix test error --- .gitignore | 1 + pkg/common/system.go | 5 +++-- pkg/model/analyzer_test.go | 9 +++++++-- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 6177fe3d..064cb237 100644 --- a/.gitignore +++ b/.gitignore @@ -26,6 +26,7 @@ schemas/*.json # For tests output pkg/*/out/* +pkg/*/*/actual_output/* cmd/examples/output/* # For temporary examples and pkgs diff --git a/pkg/common/system.go b/pkg/common/system.go index 5e0cb9b5..e3878a24 100644 --- a/pkg/common/system.go +++ b/pkg/common/system.go @@ -9,7 +9,7 @@ package common import ( "encoding/json" "os" - "path" + "path/filepath" "strings" "gopkg.in/yaml.v3" @@ -20,7 +20,8 @@ const ( ) func WriteToFile(file, content string) error { - err := os.MkdirAll(path.Dir(file), os.ModePerm) + p := filepath.Dir(file) + err := os.MkdirAll(p, os.ModePerm) if err != nil { return err } diff --git a/pkg/model/analyzer_test.go b/pkg/model/analyzer_test.go index b00118de..4b920098 100644 --- a/pkg/model/analyzer_test.go +++ b/pkg/model/analyzer_test.go @@ -4,10 +4,12 @@ import ( "fmt" "os" "path/filepath" + "strings" "testing" "github.com/stretchr/testify/require" + "github.com/np-guard/vmware-analyzer/pkg/common" "github.com/np-guard/vmware-analyzer/pkg/collector/data" "github.com/np-guard/vmware-analyzer/pkg/internal/projectpath" "github.com/np-guard/vmware-analyzer/pkg/logging" @@ -66,13 +68,16 @@ func (a *analyzerTest) run(t *testing.T) { if expectedStr != res { // gen actual output to enable manual diff after test run actual := getActualTestPath(a.file()) - err := os.WriteFile(actual, []byte(res), 0o600) + err := common.WriteToFile(actual, res) require.Nil(t, err) } - require.Equal(t, expectedStr, res) + require.Equal(t, cleanStr(expectedStr), cleanStr(res)) } fmt.Println("done") } +func cleanStr(str string) string { + return strings.ReplaceAll(strings.ReplaceAll(str, "\n", ""), "\r", "") +} func TestAnalyzer(t *testing.T) { logging.Init(logging.HighVerbosity) From dbb932dfeb6a9e63370bed9e111a15034c6bcb50 Mon Sep 17 00:00:00 2001 From: haim Date: Wed, 15 Jan 2025 17:28:45 +0200 Subject: [PATCH 4/6] add example --- pkg/collector/data/examples.go | 46 + .../data/expected_output/ExampleExclude.txt | 17 + pkg/collector/data/json/ExampleExclude.json | 28642 ++++++++++++++++ pkg/common/system.go | 3 +- pkg/model/analyzer_test.go | 4 + 5 files changed, 28710 insertions(+), 2 deletions(-) create mode 100644 pkg/collector/data/expected_output/ExampleExclude.txt create mode 100644 pkg/collector/data/json/ExampleExclude.json diff --git a/pkg/collector/data/examples.go b/pkg/collector/data/examples.go index c25d34d4..234f45d9 100644 --- a/pkg/collector/data/examples.go +++ b/pkg/collector/data/examples.go @@ -292,6 +292,52 @@ var Example2 = Example{ }, } +var ExampleExclude = Example{ + Name: "ExampleExclude", + VMs: []string{"Slytherin1", "Slytherin2", "Hufflepuff1", "Hufflepuff2", + "Gryffindor1", "Gryffindor2", "Dumbledore1", "Dumbledore2", "Aladdin"}, + Groups: map[string][]string{ + "Slytherin": {"Slytherin1", "Slytherin2"}, + "Hufflepuff": {"Hufflepuff1", "Hufflepuff2"}, + "Gryffindor": {"Gryffindor1", "Gryffindor2"}, + "Dumbledore": {"Dumbledore1", "Dumbledore2"}, + "Aladdin": {"Aladdin", "Aladdin"}, + }, + Policies: []Category{ + { + Name: "AladdinTalks", + CategoryType: "Environment", + Rules: []Rule{ + { + Name: "allow-Aladdin-to-others", + ID: 10218, + Source: "Aladdin", + Dest: "Aladdin", + DestinationsExcluded: true, + Services: []string{"ANY"}, + Action: Allow, + }, + { + Name: "allow-others-to-Aladdin", + ID: 10219, + Source: "Aladdin", + Dest: "Aladdin", + SourcesExcluded: true, + Services: []string{"ANY"}, + Action: Allow, + }, + }, + }, + { + Name: "Default-L3-Section", + CategoryType: "Application", + Rules: []Rule{ + DefaultDenyRule(denyRuleIDApp), + }, + }, + }, +} + var Example3 = example3FromExample2() func example3FromExample2() Example { diff --git a/pkg/collector/data/expected_output/ExampleExclude.txt b/pkg/collector/data/expected_output/ExampleExclude.txt new file mode 100644 index 00000000..358edec8 --- /dev/null +++ b/pkg/collector/data/expected_output/ExampleExclude.txt @@ -0,0 +1,17 @@ +Analyzed connectivity:: +Aladdin => Dumbledore1: All Connections +Aladdin => Dumbledore2: All Connections +Aladdin => Gryffindor1: All Connections +Aladdin => Gryffindor2: All Connections +Aladdin => Hufflepuff1: All Connections +Aladdin => Hufflepuff2: All Connections +Aladdin => Slytherin1: All Connections +Aladdin => Slytherin2: All Connections +Dumbledore1 => Aladdin: All Connections +Dumbledore2 => Aladdin: All Connections +Gryffindor1 => Aladdin: All Connections +Gryffindor2 => Aladdin: All Connections +Hufflepuff1 => Aladdin: All Connections +Hufflepuff2 => Aladdin: All Connections +Slytherin1 => Aladdin: All Connections +Slytherin2 => Aladdin: All Connections \ No newline at end of file diff --git a/pkg/collector/data/json/ExampleExclude.json b/pkg/collector/data/json/ExampleExclude.json new file mode 100644 index 00000000..9908a18b --- /dev/null +++ b/pkg/collector/data/json/ExampleExclude.json @@ -0,0 +1,28642 @@ +{ + "services": [ + { + "_create_time": 1724279989005, + "_create_user": "system", + "_last_modified_time": 1724279989005, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "AD Server", + "display_name": "AD Server", + "id": "AD_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/AD_Server", + "realization_id": "ed5d47fc-3d90-461d-bc78-9be38cf2d1b9", + "relative_path": "AD_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "ed5d47fc-3d90-461d-bc78-9be38cf2d1b9", + "service_entries": [ + { + "_create_time": 1724279989006, + "_create_user": "system", + "_last_modified_time": 1724279989006, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1024" + ], + "display_name": "AD Server", + "id": "AD_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/AD_Server", + "path": "/infra/services/AD_Server/service-entries/AD_Server", + "realization_id": "180e6219-0395-4fbc-a13c-5c35ecbc285d", + "relative_path": "AD_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "180e6219-0395-4fbc-a13c-5c35ecbc285d" + } + ] + }, + { + "_create_time": 1724279989119, + "_create_user": "system", + "_last_modified_time": 1724279989119, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Active Directory Server", + "display_name": "Active Directory Server", + "id": "Active_Directory_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Active_Directory_Server", + "realization_id": "5cf5ee7d-e26b-452b-9f85-0571501faa36", + "relative_path": "Active_Directory_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "5cf5ee7d-e26b-452b-9f85-0571501faa36", + "service_entries": [ + { + "_create_time": 1724279989120, + "_create_user": "system", + "_last_modified_time": 1724279989120, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "464" + ], + "display_name": "Active Directory Server", + "id": "Active_Directory_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Active_Directory_Server", + "path": "/infra/services/Active_Directory_Server/service-entries/Active_Directory_Server", + "realization_id": "0e7688e1-dd3a-4ea7-97be-e5de8e794072", + "relative_path": "Active_Directory_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "0e7688e1-dd3a-4ea7-97be-e5de8e794072" + } + ] + }, + { + "_create_time": 1724279988989, + "_create_user": "system", + "_last_modified_time": 1724279988989, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Active Directory Server UDP", + "display_name": "Active Directory Server UDP", + "id": "Active_Directory_Server_UDP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Active_Directory_Server_UDP", + "realization_id": "d0f1a6c1-9a61-49ef-bcbf-ed8213058361", + "relative_path": "Active_Directory_Server_UDP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "d0f1a6c1-9a61-49ef-bcbf-ed8213058361", + "service_entries": [ + { + "_create_time": 1724279988989, + "_create_user": "system", + "_last_modified_time": 1724279988989, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "464" + ], + "display_name": "Active Directory Server UDP", + "id": "Active_Directory_Server_UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Active_Directory_Server_UDP", + "path": "/infra/services/Active_Directory_Server_UDP/service-entries/Active_Directory_Server_UDP", + "realization_id": "b228589e-47d3-487e-a2a3-1404a1f4e7f0", + "relative_path": "Active_Directory_Server_UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b228589e-47d3-487e-a2a3-1404a1f4e7f0" + } + ] + }, + { + "_create_time": 1724279988938, + "_create_user": "system", + "_last_modified_time": 1724279988938, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "CIM-HTTP", + "display_name": "CIM-HTTP", + "id": "CIM-HTTP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/CIM-HTTP", + "realization_id": "886e7916-54a8-43fd-b30d-105b339a2681", + "relative_path": "CIM-HTTP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "886e7916-54a8-43fd-b30d-105b339a2681", + "service_entries": [ + { + "_create_time": 1724279988938, + "_create_user": "system", + "_last_modified_time": 1724279988938, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5988" + ], + "display_name": "CIM-HTTP", + "id": "CIM-HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/CIM-HTTP", + "path": "/infra/services/CIM-HTTP/service-entries/CIM-HTTP", + "realization_id": "6a443d39-b2cb-40e4-83b9-131203f1e7ed", + "relative_path": "CIM-HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "6a443d39-b2cb-40e4-83b9-131203f1e7ed" + } + ] + }, + { + "_create_time": 1724279989068, + "_create_user": "system", + "_last_modified_time": 1724279989068, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "CIM-HTTPS", + "display_name": "CIM-HTTPS", + "id": "CIM-HTTPS", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/CIM-HTTPS", + "realization_id": "cf945453-c22e-45cd-b958-6e2325a6d795", + "relative_path": "CIM-HTTPS", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "cf945453-c22e-45cd-b958-6e2325a6d795", + "service_entries": [ + { + "_create_time": 1724279989071, + "_create_user": "system", + "_last_modified_time": 1724279989071, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5989" + ], + "display_name": "CIM-HTTPS", + "id": "CIM-HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/CIM-HTTPS", + "path": "/infra/services/CIM-HTTPS/service-entries/CIM-HTTPS", + "realization_id": "06b454ec-7cac-4d1d-a3a9-1821e0d2b006", + "relative_path": "CIM-HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "06b454ec-7cac-4d1d-a3a9-1821e0d2b006" + } + ] + }, + { + "_create_time": 1724279989036, + "_create_user": "system", + "_last_modified_time": 1724279989036, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "DCM Java Object Cache port", + "display_name": "DCM Java Object Cache port", + "id": "DCM_Java_Object_Cache_port", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/DCM_Java_Object_Cache_port", + "realization_id": "8e2c6bb2-3dee-4d67-897f-af941b022bf2", + "relative_path": "DCM_Java_Object_Cache_port", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "8e2c6bb2-3dee-4d67-897f-af941b022bf2", + "service_entries": [ + { + "_create_time": 1724279989036, + "_create_user": "system", + "_last_modified_time": 1724279989036, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "7100" + ], + "display_name": "DCM Java Object Cache port", + "id": "DCM_Java_Object_Cache_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/DCM_Java_Object_Cache_port", + "path": "/infra/services/DCM_Java_Object_Cache_port/service-entries/DCM_Java_Object_Cache_port", + "realization_id": "efeb7655-5299-45ba-bd6a-924cbad4c9f5", + "relative_path": "DCM_Java_Object_Cache_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "efeb7655-5299-45ba-bd6a-924cbad4c9f5" + } + ] + }, + { + "_create_time": 1724279989127, + "_create_user": "system", + "_last_modified_time": 1724279989127, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "DHCP, MADCAP", + "display_name": "DHCP, MADCAP", + "id": "DHCP,_MADCAP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/DHCP,_MADCAP", + "realization_id": "a7b7bd68-98a1-4ce5-89ce-a0dc2535b65e", + "relative_path": "DHCP,_MADCAP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "a7b7bd68-98a1-4ce5-89ce-a0dc2535b65e", + "service_entries": [ + { + "_create_time": 1724279989128, + "_create_user": "system", + "_last_modified_time": 1724279989128, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2535" + ], + "display_name": "DHCP, MADCAP", + "id": "DHCP,_MADCAP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/DHCP,_MADCAP", + "path": "/infra/services/DHCP,_MADCAP/service-entries/DHCP,_MADCAP", + "realization_id": "3a474dea-445f-4140-a1b2-d82f01db8b90", + "relative_path": "DHCP,_MADCAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3a474dea-445f-4140-a1b2-d82f01db8b90" + } + ] + }, + { + "_create_time": 1724279989187, + "_create_user": "system", + "_last_modified_time": 1724279989187, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "DHCP-Client", + "display_name": "DHCP-Client", + "id": "DHCP-Client", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/DHCP-Client", + "realization_id": "b2ac43e7-91e3-4ccf-bd10-31fb8ed8c156", + "relative_path": "DHCP-Client", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "b2ac43e7-91e3-4ccf-bd10-31fb8ed8c156", + "service_entries": [ + { + "_create_time": 1724279989187, + "_create_user": "system", + "_last_modified_time": 1724279989187, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "68" + ], + "display_name": "DHCP-Client", + "id": "DHCP-Client", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/DHCP-Client", + "path": "/infra/services/DHCP-Client/service-entries/DHCP-Client", + "realization_id": "788ee806-5902-4212-aba4-5d0979d477f2", + "relative_path": "DHCP-Client", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "788ee806-5902-4212-aba4-5d0979d477f2" + } + ] + }, + { + "_create_time": 1724279989031, + "_create_user": "system", + "_last_modified_time": 1724279989031, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "DHCP-Server", + "display_name": "DHCP-Server", + "id": "DHCP-Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/DHCP-Server", + "realization_id": "9a7d5768-b8a0-4c37-823c-01b559106f5d", + "relative_path": "DHCP-Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "9a7d5768-b8a0-4c37-823c-01b559106f5d", + "service_entries": [ + { + "_create_time": 1724279989031, + "_create_user": "system", + "_last_modified_time": 1724279989031, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "67" + ], + "display_name": "DHCP-Server", + "id": "DHCP-Server", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/DHCP-Server", + "path": "/infra/services/DHCP-Server/service-entries/DHCP-Server", + "realization_id": "0cfe3a23-3c88-44cb-bf4e-f9b023184cf5", + "relative_path": "DHCP-Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "0cfe3a23-3c88-44cb-bf4e-f9b023184cf5" + } + ] + }, + { + "_create_time": 1724279989034, + "_create_user": "system", + "_last_modified_time": 1724279989034, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "DHCPv6 Client", + "display_name": "DHCPv6 Client", + "id": "DHCPv6_Client", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/DHCPv6_Client", + "realization_id": "89513c01-b5b2-4265-93fe-e48e6d207d07", + "relative_path": "DHCPv6_Client", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "89513c01-b5b2-4265-93fe-e48e6d207d07", + "service_entries": [ + { + "_create_time": 1724279989034, + "_create_user": "system", + "_last_modified_time": 1724279989034, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "546" + ], + "display_name": "DHCPv6 Client", + "id": "DHCPv6_Client", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/DHCPv6_Client", + "path": "/infra/services/DHCPv6_Client/service-entries/DHCPv6_Client", + "realization_id": "deb1f1b7-7b09-42ec-8f36-ec4f6b1a1f37", + "relative_path": "DHCPv6_Client", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "deb1f1b7-7b09-42ec-8f36-ec4f6b1a1f37" + } + ] + }, + { + "_create_time": 1724279988900, + "_create_user": "system", + "_last_modified_time": 1724279988900, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "DHCPv6 Server", + "display_name": "DHCPv6 Server", + "id": "DHCPv6_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/DHCPv6_Server", + "realization_id": "70f0eaec-a94f-4c25-b702-84cecf2ccc6e", + "relative_path": "DHCPv6_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "70f0eaec-a94f-4c25-b702-84cecf2ccc6e", + "service_entries": [ + { + "_create_time": 1724279988900, + "_create_user": "system", + "_last_modified_time": 1724279988900, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "547" + ], + "display_name": "DHCPv6 Server", + "id": "DHCPv6_Server", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/DHCPv6_Server", + "path": "/infra/services/DHCPv6_Server/service-entries/DHCPv6_Server", + "realization_id": "12b45740-cc37-4bfd-a8b2-589f920371e2", + "relative_path": "DHCPv6_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "12b45740-cc37-4bfd-a8b2-589f920371e2" + } + ] + }, + { + "_create_time": 1724279995669, + "_create_user": "system", + "_last_modified_time": 1724279995669, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "DNS IN", + "display_name": "DNS IN", + "id": "DNS-IN", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/DNS-IN", + "realization_id": "9e93c1af-4337-4729-8bb3-a423fde45ecd", + "relative_path": "DNS-IN", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "9e93c1af-4337-4729-8bb3-a423fde45ecd", + "service_entries": [ + { + "_create_time": 1724279995689, + "_create_user": "system", + "_last_modified_time": 1724279995689, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "DNS-IN-TCP", + "id": "DNS-IN-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/DNS-IN", + "path": "/infra/services/DNS-IN/service-entries/DNS-IN-TCP", + "realization_id": "8bc5585d-2368-4c02-b00b-61c94ea51be3", + "relative_path": "DNS-IN-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "source_ports": [ + "53" + ], + "unique_id": "8bc5585d-2368-4c02-b00b-61c94ea51be3" + }, + { + "_create_time": 1724279995720, + "_create_user": "system", + "_last_modified_time": 1724279995720, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "DNS-IN-UDP", + "id": "DNS-IN-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/DNS-IN", + "path": "/infra/services/DNS-IN/service-entries/DNS-IN-UDP", + "realization_id": "aaf85917-143c-48dc-a621-1acec62d5a35", + "relative_path": "DNS-IN-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "source_ports": [ + "53" + ], + "unique_id": "aaf85917-143c-48dc-a621-1acec62d5a35" + } + ] + }, + { + "_create_time": 1724279989107, + "_create_user": "system", + "_last_modified_time": 1724279989107, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "DNS-IN-TCP", + "display_name": "DNS-IN-TCP", + "id": "DNS-IN-TCP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/DNS-IN-TCP", + "realization_id": "2af40f27-c421-490a-b7ae-af23521f3eab", + "relative_path": "DNS-IN-TCP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "2af40f27-c421-490a-b7ae-af23521f3eab", + "service_entries": [ + { + "_create_time": 1724279989107, + "_create_user": "system", + "_last_modified_time": 1724279989107, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "DNS-IN-TCP", + "id": "DNS-IN-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/DNS-IN-TCP", + "path": "/infra/services/DNS-IN-TCP/service-entries/DNS-IN-TCP", + "realization_id": "8bc5585d-2368-4c02-b00b-61c94ea51be3", + "relative_path": "DNS-IN-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "source_ports": [ + "53" + ], + "unique_id": "8bc5585d-2368-4c02-b00b-61c94ea51be3" + } + ] + }, + { + "_create_time": 1724279989197, + "_create_user": "system", + "_last_modified_time": 1724279989197, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "DNS-IN-UDP", + "display_name": "DNS-IN-UDP", + "id": "DNS-IN-UDP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/DNS-IN-UDP", + "realization_id": "e30ea480-85a8-4055-b45c-ac3d48883bc1", + "relative_path": "DNS-IN-UDP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "e30ea480-85a8-4055-b45c-ac3d48883bc1", + "service_entries": [ + { + "_create_time": 1724279989197, + "_create_user": "system", + "_last_modified_time": 1724279989197, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "DNS-IN-UDP", + "id": "DNS-IN-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/DNS-IN-UDP", + "path": "/infra/services/DNS-IN-UDP/service-entries/DNS-IN-UDP", + "realization_id": "aaf85917-143c-48dc-a621-1acec62d5a35", + "relative_path": "DNS-IN-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "source_ports": [ + "53" + ], + "unique_id": "aaf85917-143c-48dc-a621-1acec62d5a35" + } + ] + }, + { + "_create_time": 1724279989011, + "_create_user": "system", + "_last_modified_time": 1724279989011, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "DNS-TCP", + "display_name": "DNS-TCP", + "id": "DNS", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/DNS", + "realization_id": "7a355c01-2d32-4d12-8398-8f4eb2099a73", + "relative_path": "DNS", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "7a355c01-2d32-4d12-8398-8f4eb2099a73", + "service_entries": [ + { + "_create_time": 1724279989011, + "_create_user": "system", + "_last_modified_time": 1724279989011, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-TCP", + "id": "DNS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/DNS", + "path": "/infra/services/DNS/service-entries/DNS", + "realization_id": "503ad409-d481-4547-8720-28534c1856b6", + "relative_path": "DNS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "503ad409-d481-4547-8720-28534c1856b6" + } + ] + }, + { + "_create_time": 1724279988868, + "_create_user": "system", + "_last_modified_time": 1724279988868, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "DNS-UDP", + "display_name": "DNS-UDP", + "id": "DNS-UDP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/DNS-UDP", + "realization_id": "3f8e4809-6170-4b25-94fa-6f18019d86a8", + "relative_path": "DNS-UDP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "3f8e4809-6170-4b25-94fa-6f18019d86a8", + "service_entries": [ + { + "_create_time": 1724279988869, + "_create_user": "system", + "_last_modified_time": 1724279988869, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-UDP", + "id": "DNS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/DNS-UDP", + "path": "/infra/services/DNS-UDP/service-entries/DNS-UDP", + "realization_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326", + "relative_path": "DNS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326" + } + ] + }, + { + "_create_time": 1724279994903, + "_create_user": "system", + "_last_modified_time": 1724279994903, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Data Recovery Appliance", + "display_name": "Data Recovery Appliance", + "id": "Data_Recovery_Appliance", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Data_Recovery_Appliance", + "realization_id": "6525a2c3-32a8-4560-84fd-0fe3482b845b", + "relative_path": "Data_Recovery_Appliance", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "6525a2c3-32a8-4560-84fd-0fe3482b845b", + "service_entries": [ + { + "_create_time": 1724279994967, + "_create_user": "system", + "_last_modified_time": 1724279994967, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "22024" + ], + "display_name": "VMware-DataRecovery", + "id": "VMware-DataRecovery", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Data_Recovery_Appliance", + "path": "/infra/services/Data_Recovery_Appliance/service-entries/VMware-DataRecovery", + "realization_id": "4650bd74-22f1-4e76-8220-6d9e3d388f9e", + "relative_path": "VMware-DataRecovery", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "4650bd74-22f1-4e76-8220-6d9e3d388f9e" + }, + { + "_create_time": 1724279994936, + "_create_user": "system", + "_last_modified_time": 1724279994936, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "902" + ], + "display_name": "VMware-ESXi5.x-TCP", + "id": "VMware-ESXi5.x-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Data_Recovery_Appliance", + "path": "/infra/services/Data_Recovery_Appliance/service-entries/VMware-ESXi5.x-TCP", + "realization_id": "7e6274bb-cf59-4440-bbe0-050198204126", + "relative_path": "VMware-ESXi5.x-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "7e6274bb-cf59-4440-bbe0-050198204126" + }, + { + "_create_time": 1724279994917, + "_create_user": "system", + "_last_modified_time": 1724279994917, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Data_Recovery_Appliance", + "path": "/infra/services/Data_Recovery_Appliance/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + } + ] + }, + { + "_create_time": 1724279989030, + "_create_user": "system", + "_last_modified_time": 1724279989030, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Directory Services", + "display_name": "Directory Services", + "id": "Directory_Services", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Directory_Services", + "realization_id": "e8d59e13-484b-4825-ae3b-4c11f83249d9", + "relative_path": "Directory_Services", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "e8d59e13-484b-4825-ae3b-4c11f83249d9", + "service_entries": [ + { + "_create_time": 1724279989030, + "_create_user": "system", + "_last_modified_time": 1724279989030, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5725" + ], + "display_name": "Directory Services", + "id": "Directory_Services", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Directory_Services", + "path": "/infra/services/Directory_Services/service-entries/Directory_Services", + "realization_id": "c84be914-4960-41a3-b2eb-a434a2311695", + "relative_path": "Directory_Services", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c84be914-4960-41a3-b2eb-a434a2311695" + } + ] + }, + { + "_create_time": 1724279997836, + "_create_user": "system", + "_last_modified_time": 1724279997836, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "ESXi Syslog Collector", + "display_name": "ESXi Syslog Collector", + "id": "ESXi_Syslog_Collector", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/ESXi_Syslog_Collector", + "realization_id": "c70b659c-f788-47b5-b87b-7ac41b6a499d", + "relative_path": "ESXi_Syslog_Collector", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "c70b659c-f788-47b5-b87b-7ac41b6a499d", + "service_entries": [ + { + "_create_time": 1724279997849, + "_create_user": "system", + "_last_modified_time": 1724279997849, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8001" + ], + "display_name": "VMware-VC-Syslog", + "id": "VMware-VC-Syslog", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/ESXi_Syslog_Collector", + "path": "/infra/services/ESXi_Syslog_Collector/service-entries/VMware-VC-Syslog", + "realization_id": "75ca2506-e917-480c-9470-2ad7ed7f2a97", + "relative_path": "VMware-VC-Syslog", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "75ca2506-e917-480c-9470-2ad7ed7f2a97" + } + ] + }, + { + "_create_time": 1724279989000, + "_create_user": "system", + "_last_modified_time": 1724279989000, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "EdgeSync service", + "display_name": "EdgeSync service", + "id": "EdgeSync_service", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/EdgeSync_service", + "realization_id": "d2069b6a-920d-4b3a-b348-2d1fe566f875", + "relative_path": "EdgeSync_service", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "d2069b6a-920d-4b3a-b348-2d1fe566f875", + "service_entries": [ + { + "_create_time": 1724279989000, + "_create_user": "system", + "_last_modified_time": 1724279989000, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50636" + ], + "display_name": "EdgeSync service", + "id": "EdgeSync_service", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/EdgeSync_service", + "path": "/infra/services/EdgeSync_service/service-entries/EdgeSync_service", + "realization_id": "f92e96e8-f65b-4598-97ff-bab36f182184", + "relative_path": "EdgeSync_service", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f92e96e8-f65b-4598-97ff-bab36f182184" + } + ] + }, + { + "_create_time": 1724279988973, + "_create_user": "system", + "_last_modified_time": 1724279988973, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "EdgeSync service/ADAM", + "display_name": "EdgeSync service/ADAM", + "id": "EdgeSync_service-ADAM", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/EdgeSync_service-ADAM", + "realization_id": "32b67680-d3cf-4a88-8e58-dce3c828f493", + "relative_path": "EdgeSync_service-ADAM", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "32b67680-d3cf-4a88-8e58-dce3c828f493", + "service_entries": [ + { + "_create_time": 1724279988973, + "_create_user": "system", + "_last_modified_time": 1724279988973, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50389" + ], + "display_name": "EdgeSync service/ADAM", + "id": "EdgeSync_service-ADAM", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/EdgeSync_service-ADAM", + "path": "/infra/services/EdgeSync_service-ADAM/service-entries/EdgeSync_service-ADAM", + "realization_id": "264667f0-980b-4ee2-a5f1-eb7b96dac0c9", + "relative_path": "EdgeSync_service-ADAM", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "264667f0-980b-4ee2-a5f1-eb7b96dac0c9" + } + ] + }, + { + "_create_time": 1724279989031, + "_create_user": "system", + "_last_modified_time": 1724279989031, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Enterprise Manager RMI port", + "display_name": "Enterprise Manager RMI port", + "id": "Enterprise_Manager_RMI_port", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Enterprise_Manager_RMI_port", + "realization_id": "a53ddab1-747a-4f68-b8e7-0fa449abf3d1", + "relative_path": "Enterprise_Manager_RMI_port", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "a53ddab1-747a-4f68-b8e7-0fa449abf3d1", + "service_entries": [ + { + "_create_time": 1724279989031, + "_create_user": "system", + "_last_modified_time": 1724279989031, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1850" + ], + "display_name": "Enterprise Manager RMI port", + "id": "Enterprise_Manager_RMI_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Enterprise_Manager_RMI_port", + "path": "/infra/services/Enterprise_Manager_RMI_port/service-entries/Enterprise_Manager_RMI_port", + "realization_id": "bd26e185-37e3-473f-b5e7-785c8a0e6a1d", + "relative_path": "Enterprise_Manager_RMI_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "bd26e185-37e3-473f-b5e7-785c8a0e6a1d" + } + ] + }, + { + "_create_time": 1724279989024, + "_create_user": "system", + "_last_modified_time": 1724279989024, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Enterprise Manager Reporting port", + "display_name": "Enterprise Manager Reporting port", + "id": "Enterprise_Manager_Reporting_port", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Enterprise_Manager_Reporting_port", + "realization_id": "c60c2619-bb47-4ade-ab19-cb3ba78ed7e0", + "relative_path": "Enterprise_Manager_Reporting_port", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "c60c2619-bb47-4ade-ab19-cb3ba78ed7e0", + "service_entries": [ + { + "_create_time": 1724279989024, + "_create_user": "system", + "_last_modified_time": 1724279989024, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3339" + ], + "display_name": "Enterprise Manager Reporting port", + "id": "Enterprise_Manager_Reporting_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Enterprise_Manager_Reporting_port", + "path": "/infra/services/Enterprise_Manager_Reporting_port/service-entries/Enterprise_Manager_Reporting_port", + "realization_id": "4176f17f-04ec-4125-85b7-8639a2a14c00", + "relative_path": "Enterprise_Manager_Reporting_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "4176f17f-04ec-4125-85b7-8639a2a14c00" + } + ] + }, + { + "_create_time": 1724279989148, + "_create_user": "system", + "_last_modified_time": 1724279989148, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Enterprise Manager Servlet port SSL", + "display_name": "Enterprise Manager Servlet port SSL", + "id": "Enterprise_Manager_Servlet_port_SSL", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Enterprise_Manager_Servlet_port_SSL", + "realization_id": "2ac6439d-44b7-495d-8611-27fb520c75c6", + "relative_path": "Enterprise_Manager_Servlet_port_SSL", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "2ac6439d-44b7-495d-8611-27fb520c75c6", + "service_entries": [ + { + "_create_time": 1724279989149, + "_create_user": "system", + "_last_modified_time": 1724279989149, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1810" + ], + "display_name": "Enterprise Manager Servlet port SSL", + "id": "Enterprise_Manager_Servlet_port_SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Enterprise_Manager_Servlet_port_SSL", + "path": "/infra/services/Enterprise_Manager_Servlet_port_SSL/service-entries/Enterprise_Manager_Servlet_port_SSL", + "realization_id": "23ba8e19-51f0-4875-8e7b-d9ae83529838", + "relative_path": "Enterprise_Manager_Servlet_port_SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "23ba8e19-51f0-4875-8e7b-d9ae83529838" + } + ] + }, + { + "_create_time": 1724279989117, + "_create_user": "system", + "_last_modified_time": 1724279989117, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Enterprise ManagerAgent port", + "display_name": "Enterprise ManagerAgent port", + "id": "Enterprise_ManagerAgent_port", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Enterprise_ManagerAgent_port", + "realization_id": "e175c488-ea67-4492-b90b-e6598b965e58", + "relative_path": "Enterprise_ManagerAgent_port", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "e175c488-ea67-4492-b90b-e6598b965e58", + "service_entries": [ + { + "_create_time": 1724279989118, + "_create_user": "system", + "_last_modified_time": 1724279989118, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1831" + ], + "display_name": "Enterprise ManagerAgent port", + "id": "Enterprise_ManagerAgent_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Enterprise_ManagerAgent_port", + "path": "/infra/services/Enterprise_ManagerAgent_port/service-entries/Enterprise_ManagerAgent_port", + "realization_id": "3ffc2420-8218-4b26-9e7c-9a3ac5e32a1c", + "relative_path": "Enterprise_ManagerAgent_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3ffc2420-8218-4b26-9e7c-9a3ac5e32a1c" + } + ] + }, + { + "_create_time": 1724279989051, + "_create_user": "system", + "_last_modified_time": 1724279989051, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Exchange ActiveSync", + "display_name": "Exchange ActiveSync", + "id": "Exchange_ActiveSync", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Exchange_ActiveSync", + "realization_id": "67bec8ff-fdad-4ea0-ab77-133cf7786e7c", + "relative_path": "Exchange_ActiveSync", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "67bec8ff-fdad-4ea0-ab77-133cf7786e7c", + "service_entries": [ + { + "_create_time": 1724279989051, + "_create_user": "system", + "_last_modified_time": 1724279989051, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2883" + ], + "display_name": "Exchange ActiveSync", + "id": "Exchange_ActiveSync", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Exchange_ActiveSync", + "path": "/infra/services/Exchange_ActiveSync/service-entries/Exchange_ActiveSync", + "realization_id": "669a0359-e394-41a3-b7af-8dc341a52a34", + "relative_path": "Exchange_ActiveSync", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "669a0359-e394-41a3-b7af-8dc341a52a34" + } + ] + }, + { + "_create_time": 1724279989035, + "_create_user": "system", + "_last_modified_time": 1724279989035, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "FTP", + "display_name": "FTP", + "id": "FTP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/FTP", + "realization_id": "2a71e150-9539-4636-a666-4ccd918441ef", + "relative_path": "FTP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "2a71e150-9539-4636-a666-4ccd918441ef", + "service_entries": [ + { + "_create_time": 1724279989036, + "_create_user": "system", + "_last_modified_time": 1724279989036, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "FTP", + "destination_ports": [ + "21" + ], + "display_name": "FTP", + "id": "FTP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/FTP", + "path": "/infra/services/FTP/service-entries/FTP", + "realization_id": "635df07b-c224-46fa-a546-fbf66e709105", + "relative_path": "FTP", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "635df07b-c224-46fa-a546-fbf66e709105" + } + ] + }, + { + "_create_time": 1724279989012, + "_create_user": "system", + "_last_modified_time": 1724279989012, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "For X.400 connections over TCP", + "display_name": "For X.400 connections over TCP", + "id": "For_X.400_connections_over_TCP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/For_X.400_connections_over_TCP", + "realization_id": "54f9d922-a6b4-4566-af2b-25ea3ff52bea", + "relative_path": "For_X.400_connections_over_TCP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "54f9d922-a6b4-4566-af2b-25ea3ff52bea", + "service_entries": [ + { + "_create_time": 1724279989012, + "_create_user": "system", + "_last_modified_time": 1724279989012, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "102" + ], + "display_name": "For X.400 connections over TCP", + "id": "For_X.400_connections_over_TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/For_X.400_connections_over_TCP", + "path": "/infra/services/For_X.400_connections_over_TCP/service-entries/For_X.400_connections_over_TCP", + "realization_id": "35e013ce-d4de-4d33-a541-01f249c92a7f", + "relative_path": "For_X.400_connections_over_TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "35e013ce-d4de-4d33-a541-01f249c92a7f" + } + ] + }, + { + "_create_time": 1724279988966, + "_create_user": "system", + "_last_modified_time": 1724279988966, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "H323 Call Signaling", + "display_name": "H323 Call Signaling", + "id": "H323_Call_Signaling", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/H323_Call_Signaling", + "realization_id": "308e0d63-2401-4512-a9b0-0c8ff549f2d4", + "relative_path": "H323_Call_Signaling", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "308e0d63-2401-4512-a9b0-0c8ff549f2d4", + "service_entries": [ + { + "_create_time": 1724279988967, + "_create_user": "system", + "_last_modified_time": 1724279988967, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1720" + ], + "display_name": "H323 Call Signaling", + "id": "H323_Call_Signaling", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/H323_Call_Signaling", + "path": "/infra/services/H323_Call_Signaling/service-entries/H323_Call_Signaling", + "realization_id": "1b5ed316-a177-4025-ad38-19e93b86816f", + "relative_path": "H323_Call_Signaling", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "1b5ed316-a177-4025-ad38-19e93b86816f" + } + ] + }, + { + "_create_time": 1724279988867, + "_create_user": "system", + "_last_modified_time": 1724279988867, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "H323 Gatekeeper Discovery", + "display_name": "H323 Gatekeeper Discovery", + "id": "H323_Gatekeeper_Discovery", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/H323_Gatekeeper_Discovery", + "realization_id": "2a946c61-f780-464d-903b-b86906b1fcd8", + "relative_path": "H323_Gatekeeper_Discovery", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "2a946c61-f780-464d-903b-b86906b1fcd8", + "service_entries": [ + { + "_create_time": 1724279988867, + "_create_user": "system", + "_last_modified_time": 1724279988867, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1718" + ], + "display_name": "H323 Gatekeeper Discovery", + "id": "H323_Gatekeeper_Discovery", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/H323_Gatekeeper_Discovery", + "path": "/infra/services/H323_Gatekeeper_Discovery/service-entries/H323_Gatekeeper_Discovery", + "realization_id": "3121239a-f691-4285-b186-51389f341c6b", + "relative_path": "H323_Gatekeeper_Discovery", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3121239a-f691-4285-b186-51389f341c6b" + } + ] + }, + { + "_create_time": 1724279988979, + "_create_user": "system", + "_last_modified_time": 1724279988979, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "HBR Server App", + "display_name": "HBR Server App", + "id": "HBR_Server_App", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/HBR_Server_App", + "realization_id": "86f302c7-9d19-4d65-adbe-be4bf31657e9", + "relative_path": "HBR_Server_App", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "86f302c7-9d19-4d65-adbe-be4bf31657e9", + "service_entries": [ + { + "_create_time": 1724279988979, + "_create_user": "system", + "_last_modified_time": 1724279988979, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5480" + ], + "display_name": "HBR Server App", + "id": "HBR_Server_App", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/HBR_Server_App", + "path": "/infra/services/HBR_Server_App/service-entries/HBR_Server_App", + "realization_id": "9ba29183-627e-49d9-9a25-495c1ce473f5", + "relative_path": "HBR_Server_App", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "9ba29183-627e-49d9-9a25-495c1ce473f5" + } + ] + }, + { + "_create_time": 1724279988971, + "_create_user": "system", + "_last_modified_time": 1724279988971, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "HTTP", + "display_name": "HTTP", + "id": "HTTP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/HTTP", + "realization_id": "4be6b03c-e190-4011-ad7c-b01cb59845b6", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "4be6b03c-e190-4011-ad7c-b01cb59845b6", + "service_entries": [ + { + "_create_time": 1724279988971, + "_create_user": "system", + "_last_modified_time": 1724279988971, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "80" + ], + "display_name": "HTTP", + "id": "HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/HTTP", + "path": "/infra/services/HTTP/service-entries/HTTP", + "realization_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38" + } + ] + }, + { + "_create_time": 1724279988983, + "_create_user": "system", + "_last_modified_time": 1724279988983, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "HTTPS", + "display_name": "HTTPS", + "id": "HTTPS", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/HTTPS", + "realization_id": "3705b545-81b8-4c0f-b77a-fec77f6bf134", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "3705b545-81b8-4c0f-b77a-fec77f6bf134", + "service_entries": [ + { + "_create_time": 1724279988983, + "_create_user": "system", + "_last_modified_time": 1724279988983, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/HTTPS", + "path": "/infra/services/HTTPS/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + } + ] + }, + { + "_create_time": 1724279988878, + "_create_user": "system", + "_last_modified_time": 1724279988878, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "HTTPS, net.tcp binding", + "display_name": "HTTPS, net.tcp binding", + "id": "HTTPS,_net.tcp_binding", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/HTTPS,_net.tcp_binding", + "realization_id": "aa622474-c5c9-4997-85f9-cb7fc7779747", + "relative_path": "HTTPS,_net.tcp_binding", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "aa622474-c5c9-4997-85f9-cb7fc7779747", + "service_entries": [ + { + "_create_time": 1724279988878, + "_create_user": "system", + "_last_modified_time": 1724279988878, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "32843", + "32844", + "32845" + ], + "display_name": "HTTPS, net.tcp binding", + "id": "HTTPS,_net.tcp_binding", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/HTTPS,_net.tcp_binding", + "path": "/infra/services/HTTPS,_net.tcp_binding/service-entries/HTTPS,_net.tcp_binding", + "realization_id": "ee8dc4a2-4eca-4863-bd42-7a95ce7e4b55", + "relative_path": "HTTPS,_net.tcp_binding", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "ee8dc4a2-4eca-4863-bd42-7a95ce7e4b55" + } + ] + }, + { + "_create_time": 1724279998456, + "_create_user": "system", + "_last_modified_time": 1724279998456, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Heartbeat", + "display_name": "Heartbeat", + "id": "Heartbeat", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Heartbeat", + "realization_id": "d671c7cb-3746-446c-99ca-40fba5b85893", + "relative_path": "Heartbeat", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "d671c7cb-3746-446c-99ca-40fba5b85893", + "service_entries": [ + { + "_create_time": 1724279998461, + "_create_user": "system", + "_last_modified_time": 1724279998461, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "57348" + ], + "display_name": "Vmware-Heartbeat-PrimarySecondary", + "id": "Vmware-Heartbeat-PrimarySecondary", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Heartbeat", + "path": "/infra/services/Heartbeat/service-entries/Vmware-Heartbeat-PrimarySecondary", + "realization_id": "e9697876-4a70-4ed2-9a15-6a0894fab342", + "relative_path": "Vmware-Heartbeat-PrimarySecondary", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "e9697876-4a70-4ed2-9a15-6a0894fab342" + }, + { + "_create_time": 1724279998474, + "_create_user": "system", + "_last_modified_time": 1724279998474, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "52267" + ], + "display_name": "Vmware-VCHeartbeat", + "id": "Vmware-VCHeartbeat", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Heartbeat", + "path": "/infra/services/Heartbeat/service-entries/Vmware-VCHeartbeat", + "realization_id": "bff6c52d-f15e-42c2-b242-c3bb607d2e77", + "relative_path": "Vmware-VCHeartbeat", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "bff6c52d-f15e-42c2-b242-c3bb607d2e77" + } + ] + }, + { + "_create_time": 1724279989126, + "_create_user": "system", + "_last_modified_time": 1724279989126, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "IBM DB2", + "display_name": "IBM DB2", + "id": "IBM_DB2", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/IBM_DB2", + "realization_id": "634de246-4675-4bfd-ae1f-06df6254cd7f", + "relative_path": "IBM_DB2", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "634de246-4675-4bfd-ae1f-06df6254cd7f", + "service_entries": [ + { + "_create_time": 1724279989126, + "_create_user": "system", + "_last_modified_time": 1724279989126, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5000" + ], + "display_name": "IBM DB2", + "id": "IBM_DB2", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/IBM_DB2", + "path": "/infra/services/IBM_DB2/service-entries/IBM_DB2", + "realization_id": "767da022-2024-4d3f-be04-00393db03122", + "relative_path": "IBM_DB2", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "767da022-2024-4d3f-be04-00393db03122" + } + ] + }, + { + "_create_time": 1724279996975, + "_create_user": "system", + "_last_modified_time": 1724279996975, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "ICMP ALL", + "display_name": "ICMP ALL", + "id": "ICMP-ALL", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/ICMP-ALL", + "realization_id": "b770ab84-9440-4b82-ba2a-e37108ec4ae4", + "relative_path": "ICMP-ALL", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "b770ab84-9440-4b82-ba2a-e37108ec4ae4", + "service_entries": [ + { + "_create_time": 1724279997164, + "_create_user": "system", + "_last_modified_time": 1724279997164, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "ICMPv6-ALL", + "id": "ICMPv6-ALL", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/ICMP-ALL", + "path": "/infra/services/ICMP-ALL/service-entries/ICMPv6-ALL", + "protocol": "ICMPv6", + "realization_id": "42ec64de-1939-4126-b0d7-a888a1fedde6", + "relative_path": "ICMPv6-ALL", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "42ec64de-1939-4126-b0d7-a888a1fedde6" + }, + { + "_create_time": 1724279996986, + "_create_user": "system", + "_last_modified_time": 1724279996986, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "ICMPv4-ALL", + "id": "ICMPv4-ALL", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/ICMP-ALL", + "path": "/infra/services/ICMP-ALL/service-entries/ICMPv4-ALL", + "protocol": "ICMPv4", + "realization_id": "13a01e90-7997-4db7-9ed8-d244af54dbb7", + "relative_path": "ICMPv4-ALL", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "13a01e90-7997-4db7-9ed8-d244af54dbb7" + } + ] + }, + { + "_create_time": 1724279988978, + "_create_user": "system", + "_last_modified_time": 1724279988978, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "ICMP Destination Unreachable", + "display_name": "ICMP Destination Unreachable", + "id": "ICMP_Destination_Unreachable", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/ICMP_Destination_Unreachable", + "realization_id": "63d122cf-47d6-44e8-bb58-0453d9bb6493", + "relative_path": "ICMP_Destination_Unreachable", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "63d122cf-47d6-44e8-bb58-0453d9bb6493", + "service_entries": [ + { + "_create_time": 1724279988978, + "_create_user": "system", + "_last_modified_time": 1724279988978, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "ICMP Destination Unreachable", + "icmp_type": 3, + "id": "ICMP_Destination_Unreachable", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/ICMP_Destination_Unreachable", + "path": "/infra/services/ICMP_Destination_Unreachable/service-entries/ICMP_Destination_Unreachable", + "protocol": "ICMPv4", + "realization_id": "a4117496-4229-4980-86f0-a77c46492120", + "relative_path": "ICMP_Destination_Unreachable", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "a4117496-4229-4980-86f0-a77c46492120" + } + ] + }, + { + "_create_time": 1724279989041, + "_create_user": "system", + "_last_modified_time": 1724279989041, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "ICMP Echo Reply", + "display_name": "ICMP Echo Reply", + "id": "ICMP_Echo_Reply", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/ICMP_Echo_Reply", + "realization_id": "c54b2d86-6327-41ff-a3fc-c67171b6ba63", + "relative_path": "ICMP_Echo_Reply", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "c54b2d86-6327-41ff-a3fc-c67171b6ba63", + "service_entries": [ + { + "_create_time": 1724279989041, + "_create_user": "system", + "_last_modified_time": 1724279989041, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "ICMP Echo Reply", + "icmp_code": 0, + "icmp_type": 0, + "id": "ICMP_Echo_Reply", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/ICMP_Echo_Reply", + "path": "/infra/services/ICMP_Echo_Reply/service-entries/ICMP_Echo_Reply", + "protocol": "ICMPv4", + "realization_id": "649a854f-a985-479b-8cc6-d09a2c255500", + "relative_path": "ICMP_Echo_Reply", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "649a854f-a985-479b-8cc6-d09a2c255500" + } + ] + }, + { + "_create_time": 1724279989035, + "_create_user": "system", + "_last_modified_time": 1724279989035, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "ICMP Echo Request", + "display_name": "ICMP Echo Request", + "id": "ICMP_Echo_Request", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/ICMP_Echo_Request", + "realization_id": "5531a880-61aa-42cc-ba4b-13b9ea611e2f", + "relative_path": "ICMP_Echo_Request", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "5531a880-61aa-42cc-ba4b-13b9ea611e2f", + "service_entries": [ + { + "_create_time": 1724279989035, + "_create_user": "system", + "_last_modified_time": 1724279989035, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "ICMP Echo Request", + "icmp_code": 0, + "icmp_type": 8, + "id": "ICMP_Echo_Request", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/ICMP_Echo_Request", + "path": "/infra/services/ICMP_Echo_Request/service-entries/ICMP_Echo_Request", + "protocol": "ICMPv4", + "realization_id": "bad02215-6d9a-4c8a-980d-77150653b88b", + "relative_path": "ICMP_Echo_Request", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "bad02215-6d9a-4c8a-980d-77150653b88b" + } + ] + }, + { + "_create_time": 1724279988861, + "_create_user": "system", + "_last_modified_time": 1724279988861, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "ICMP Redirect", + "display_name": "ICMP Redirect", + "id": "ICMP_Redirect", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/ICMP_Redirect", + "realization_id": "82e6a462-431b-4e2d-8e5e-492a3461913b", + "relative_path": "ICMP_Redirect", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "82e6a462-431b-4e2d-8e5e-492a3461913b", + "service_entries": [ + { + "_create_time": 1724279988861, + "_create_user": "system", + "_last_modified_time": 1724279988861, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "ICMP Redirect", + "icmp_type": 5, + "id": "ICMP_Redirect", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/ICMP_Redirect", + "path": "/infra/services/ICMP_Redirect/service-entries/ICMP_Redirect", + "protocol": "ICMPv4", + "realization_id": "146a5f8a-9e09-4ed4-a97c-b0e02ac4af87", + "relative_path": "ICMP_Redirect", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "146a5f8a-9e09-4ed4-a97c-b0e02ac4af87" + } + ] + }, + { + "_create_time": 1724279989189, + "_create_user": "system", + "_last_modified_time": 1724279989189, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "ICMP Router Advertisement", + "display_name": "ICMP Router Advertisement", + "id": "ICMP_Router_Advertisement", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/ICMP_Router_Advertisement", + "realization_id": "2255c641-fc57-449d-b973-e2da77353fe6", + "relative_path": "ICMP_Router_Advertisement", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "2255c641-fc57-449d-b973-e2da77353fe6", + "service_entries": [ + { + "_create_time": 1724279989189, + "_create_user": "system", + "_last_modified_time": 1724279989189, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "ICMP Router Advertisement", + "icmp_code": 0, + "icmp_type": 9, + "id": "ICMP_Router_Advertisement", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/ICMP_Router_Advertisement", + "path": "/infra/services/ICMP_Router_Advertisement/service-entries/ICMP_Router_Advertisement", + "protocol": "ICMPv4", + "realization_id": "acf0ed66-4cae-4ce3-a378-dc2ffb2ef6f5", + "relative_path": "ICMP_Router_Advertisement", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "acf0ed66-4cae-4ce3-a378-dc2ffb2ef6f5" + } + ] + }, + { + "_create_time": 1724279989023, + "_create_user": "system", + "_last_modified_time": 1724279989023, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "ICMP Router Solicitation", + "display_name": "ICMP Router Solicitation", + "id": "ICMP_Router_Solicitation", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/ICMP_Router_Solicitation", + "realization_id": "93d11f70-6a67-46b9-bcb8-4761d0ed0148", + "relative_path": "ICMP_Router_Solicitation", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "93d11f70-6a67-46b9-bcb8-4761d0ed0148", + "service_entries": [ + { + "_create_time": 1724279989023, + "_create_user": "system", + "_last_modified_time": 1724279989023, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "ICMP Router Solicitation", + "icmp_code": 0, + "icmp_type": 10, + "id": "ICMP_Router_Solicitation", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/ICMP_Router_Solicitation", + "path": "/infra/services/ICMP_Router_Solicitation/service-entries/ICMP_Router_Solicitation", + "protocol": "ICMPv4", + "realization_id": "df315fa3-f2a1-404a-8c81-1dba08aca300", + "relative_path": "ICMP_Router_Solicitation", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "df315fa3-f2a1-404a-8c81-1dba08aca300" + } + ] + }, + { + "_create_time": 1724279988846, + "_create_user": "system", + "_last_modified_time": 1724279988846, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "ICMP Source Quench", + "display_name": "ICMP Source Quench", + "id": "ICMP_Source_Quench", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/ICMP_Source_Quench", + "realization_id": "4f2e4cf1-09ff-4ba2-9f50-065bbe2f6b77", + "relative_path": "ICMP_Source_Quench", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "4f2e4cf1-09ff-4ba2-9f50-065bbe2f6b77", + "service_entries": [ + { + "_create_time": 1724279988846, + "_create_user": "system", + "_last_modified_time": 1724279988846, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "ICMP Source Quench", + "icmp_code": 0, + "icmp_type": 4, + "id": "ICMP_Source_Quench", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/ICMP_Source_Quench", + "path": "/infra/services/ICMP_Source_Quench/service-entries/ICMP_Source_Quench", + "protocol": "ICMPv4", + "realization_id": "3617d79c-b1b1-4f74-abcc-6ef37b200f31", + "relative_path": "ICMP_Source_Quench", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "3617d79c-b1b1-4f74-abcc-6ef37b200f31" + } + ] + }, + { + "_create_time": 1724279989117, + "_create_user": "system", + "_last_modified_time": 1724279989117, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "ICMP Time Exceeded", + "display_name": "ICMP Time Exceeded", + "id": "ICMP_Time_Exceeded", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/ICMP_Time_Exceeded", + "realization_id": "76f12d8c-e9ea-4d08-bb6c-267be759756e", + "relative_path": "ICMP_Time_Exceeded", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "76f12d8c-e9ea-4d08-bb6c-267be759756e", + "service_entries": [ + { + "_create_time": 1724279989117, + "_create_user": "system", + "_last_modified_time": 1724279989117, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "ICMP Time Exceeded", + "icmp_type": 11, + "id": "ICMP_Time_Exceeded", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/ICMP_Time_Exceeded", + "path": "/infra/services/ICMP_Time_Exceeded/service-entries/ICMP_Time_Exceeded", + "protocol": "ICMPv4", + "realization_id": "745b337d-3499-4b09-aa47-b8879c58ac4d", + "relative_path": "ICMP_Time_Exceeded", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "745b337d-3499-4b09-aa47-b8879c58ac4d" + } + ] + }, + { + "_create_time": 1724279989198, + "_create_user": "system", + "_last_modified_time": 1724279989198, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "ICMPv4-ALL", + "display_name": "ICMPv4-ALL", + "id": "ICMPv4-ALL", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/ICMPv4-ALL", + "realization_id": "82e6a462-431b-4e2d-8e5e-492a3461913c", + "relative_path": "ICMPv4-ALL", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "82e6a462-431b-4e2d-8e5e-492a3461913c", + "service_entries": [ + { + "_create_time": 1724279989198, + "_create_user": "system", + "_last_modified_time": 1724279989198, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "ICMPv4-ALL", + "id": "ICMPv4-ALL", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/ICMPv4-ALL", + "path": "/infra/services/ICMPv4-ALL/service-entries/ICMPv4-ALL", + "protocol": "ICMPv4", + "realization_id": "13a01e90-7997-4db7-9ed8-d244af54dbb7", + "relative_path": "ICMPv4-ALL", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "13a01e90-7997-4db7-9ed8-d244af54dbb7" + } + ] + }, + { + "_create_time": 1724279988977, + "_create_user": "system", + "_last_modified_time": 1724279988977, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "ICMPv6-ALL", + "display_name": "ICMPv6-ALL", + "id": "ICMPv6-ALL", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/ICMPv6-ALL", + "realization_id": "82e6a462-431b-4e2d-8e5e-492a3461913d", + "relative_path": "ICMPv6-ALL", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "82e6a462-431b-4e2d-8e5e-492a3461913d", + "service_entries": [ + { + "_create_time": 1724279988977, + "_create_user": "system", + "_last_modified_time": 1724279988977, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "ICMPv6-ALL", + "id": "ICMPv6-ALL", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/ICMPv6-ALL", + "path": "/infra/services/ICMPv6-ALL/service-entries/ICMPv6-ALL", + "protocol": "ICMPv6", + "realization_id": "42ec64de-1939-4126-b0d7-a888a1fedde6", + "relative_path": "ICMPv6-ALL", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "42ec64de-1939-4126-b0d7-a888a1fedde6" + } + ] + }, + { + "_create_time": 1724279989018, + "_create_user": "system", + "_last_modified_time": 1724279989018, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "IGMP Leave Group", + "display_name": "IGMP Leave Group", + "id": "IGMP_Leave_Group", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/IGMP_Leave_Group", + "realization_id": "69a76f99-ffd4-4f10-9e7c-fe992152499a", + "relative_path": "IGMP_Leave_Group", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "69a76f99-ffd4-4f10-9e7c-fe992152499a", + "service_entries": [ + { + "_create_time": 1724279989018, + "_create_user": "system", + "_last_modified_time": 1724279989018, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "IGMP Leave Group", + "id": "IGMP_Leave_Group", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/IGMP_Leave_Group", + "path": "/infra/services/IGMP_Leave_Group/service-entries/IGMP_Leave_Group", + "realization_id": "5dad5270-2393-43e1-9707-500c8164c12d", + "relative_path": "IGMP_Leave_Group", + "remote_path": "", + "resource_type": "IGMPTypeServiceEntry", + "unique_id": "5dad5270-2393-43e1-9707-500c8164c12d" + } + ] + }, + { + "_create_time": 1724279988966, + "_create_user": "system", + "_last_modified_time": 1724279988966, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "IGMP Membership Query", + "display_name": "IGMP Membership Query", + "id": "IGMP_Membership_Query", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/IGMP_Membership_Query", + "realization_id": "f37f8e33-23d7-444c-9c78-7f52f2dec477", + "relative_path": "IGMP_Membership_Query", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "f37f8e33-23d7-444c-9c78-7f52f2dec477", + "service_entries": [ + { + "_create_time": 1724279988966, + "_create_user": "system", + "_last_modified_time": 1724279988966, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "IGMP Membership Query", + "id": "IGMP_Membership_Query", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/IGMP_Membership_Query", + "path": "/infra/services/IGMP_Membership_Query/service-entries/IGMP_Membership_Query", + "realization_id": "358fc3df-3da7-42ff-a816-be287d50bad7", + "relative_path": "IGMP_Membership_Query", + "remote_path": "", + "resource_type": "IGMPTypeServiceEntry", + "unique_id": "358fc3df-3da7-42ff-a816-be287d50bad7" + } + ] + }, + { + "_create_time": 1724279988961, + "_create_user": "system", + "_last_modified_time": 1724279988961, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "IGMP V2 Membership Report", + "display_name": "IGMP V2 Membership Report", + "id": "IGMP_V2_Membership_Report", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/IGMP_V2_Membership_Report", + "realization_id": "a4563202-07e3-4dbe-abed-42ff0a2be1e7", + "relative_path": "IGMP_V2_Membership_Report", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "a4563202-07e3-4dbe-abed-42ff0a2be1e7", + "service_entries": [ + { + "_create_time": 1724279988963, + "_create_user": "system", + "_last_modified_time": 1724279988963, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "IGMP V2 Membership Report", + "id": "IGMP_V2_Membership_Report", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/IGMP_V2_Membership_Report", + "path": "/infra/services/IGMP_V2_Membership_Report/service-entries/IGMP_V2_Membership_Report", + "realization_id": "0922843d-695e-4ca5-8471-9f4a51228f80", + "relative_path": "IGMP_V2_Membership_Report", + "remote_path": "", + "resource_type": "IGMPTypeServiceEntry", + "unique_id": "0922843d-695e-4ca5-8471-9f4a51228f80" + } + ] + }, + { + "_create_time": 1724279989196, + "_create_user": "system", + "_last_modified_time": 1724279989196, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "IGMP V3 Membership Report", + "display_name": "IGMP V3 Membership Report", + "id": "IGMP_V3_Membership_Report", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/IGMP_V3_Membership_Report", + "realization_id": "50b8d67a-3692-43b4-be21-93db2453c2d7", + "relative_path": "IGMP_V3_Membership_Report", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "50b8d67a-3692-43b4-be21-93db2453c2d7", + "service_entries": [ + { + "_create_time": 1724279989196, + "_create_user": "system", + "_last_modified_time": 1724279989196, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "IGMP V3 Membership Report", + "id": "IGMP_V3_Membership_Report", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/IGMP_V3_Membership_Report", + "path": "/infra/services/IGMP_V3_Membership_Report/service-entries/IGMP_V3_Membership_Report", + "realization_id": "58454957-8e74-4293-9a8e-08b4fb213eb6", + "relative_path": "IGMP_V3_Membership_Report", + "remote_path": "", + "resource_type": "IGMPTypeServiceEntry", + "unique_id": "58454957-8e74-4293-9a8e-08b4fb213eb6" + } + ] + }, + { + "_create_time": 1724279988991, + "_create_user": "system", + "_last_modified_time": 1724279988991, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "IKE (Key Exchange)", + "display_name": "IKE (Key Exchange)", + "id": "IKE_(Key_Exchange)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/IKE_(Key_Exchange)", + "realization_id": "498b5a8e-5067-4157-8824-1753fbc28193", + "relative_path": "IKE_(Key_Exchange)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "498b5a8e-5067-4157-8824-1753fbc28193", + "service_entries": [ + { + "_create_time": 1724279988991, + "_create_user": "system", + "_last_modified_time": 1724279988991, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "500" + ], + "display_name": "IKE (Key Exchange)", + "id": "IKE_(Key_Exchange)", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/IKE_(Key_Exchange)", + "path": "/infra/services/IKE_(Key_Exchange)/service-entries/IKE_(Key_Exchange)", + "realization_id": "7145f434-5f6e-4231-b43e-9face2e745f9", + "relative_path": "IKE_(Key_Exchange)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "7145f434-5f6e-4231-b43e-9face2e745f9" + } + ] + }, + { + "_create_time": 1724279989197, + "_create_user": "system", + "_last_modified_time": 1724279989197, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "IKE (NAT Traversal)", + "display_name": "IKE (NAT Traversal)", + "id": "IKE_(NAT_Traversal)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/IKE_(NAT_Traversal)", + "realization_id": "aac99ed4-de2b-4d20-9c15-bc70e1c782c3", + "relative_path": "IKE_(NAT_Traversal)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "aac99ed4-de2b-4d20-9c15-bc70e1c782c3", + "service_entries": [ + { + "_create_time": 1724279989197, + "_create_user": "system", + "_last_modified_time": 1724279989197, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4500" + ], + "display_name": "IKE (NAT Traversal)", + "id": "IKE_(NAT_Traversal)", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/IKE_(NAT_Traversal)", + "path": "/infra/services/IKE_(NAT_Traversal)/service-entries/IKE_(NAT_Traversal)", + "realization_id": "f53c8def-a351-4b88-8948-f5601c722e6d", + "relative_path": "IKE_(NAT_Traversal)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f53c8def-a351-4b88-8948-f5601c722e6d" + } + ] + }, + { + "_create_time": 1724279988931, + "_create_user": "system", + "_last_modified_time": 1724279988931, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "IMAP", + "display_name": "IMAP", + "id": "IMAP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/IMAP", + "realization_id": "9a321180-af02-4bc9-823d-89a06bede130", + "relative_path": "IMAP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "9a321180-af02-4bc9-823d-89a06bede130", + "service_entries": [ + { + "_create_time": 1724279988932, + "_create_user": "system", + "_last_modified_time": 1724279988932, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "143" + ], + "display_name": "IMAP", + "id": "IMAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/IMAP", + "path": "/infra/services/IMAP/service-entries/IMAP", + "realization_id": "2abb274c-650a-4055-96d3-744d95fadfd0", + "relative_path": "IMAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "2abb274c-650a-4055-96d3-744d95fadfd0" + } + ] + }, + { + "_create_time": 1724279989196, + "_create_user": "system", + "_last_modified_time": 1724279989196, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "IMAP_SSL", + "display_name": "IMAP_SSL", + "id": "IMAP_SSL", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/IMAP_SSL", + "realization_id": "ca8876bd-4b05-4608-984a-ce1a151f94c3", + "relative_path": "IMAP_SSL", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "ca8876bd-4b05-4608-984a-ce1a151f94c3", + "service_entries": [ + { + "_create_time": 1724279989196, + "_create_user": "system", + "_last_modified_time": 1724279989196, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "993" + ], + "display_name": "IMAP_SSL", + "id": "IMAP_SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/IMAP_SSL", + "path": "/infra/services/IMAP_SSL/service-entries/IMAP_SSL", + "realization_id": "f8aee13f-94ae-496f-834e-95718e6e3bf3", + "relative_path": "IMAP_SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f8aee13f-94ae-496f-834e-95718e6e3bf3" + } + ] + }, + { + "_create_time": 1724279989090, + "_create_user": "system", + "_last_modified_time": 1724279989090, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "IPv6-ICMP Destination Unreachable", + "display_name": "IPv6-ICMP Destination Unreachable", + "id": "IPv6-ICMP_Destination_Unreachable", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/IPv6-ICMP_Destination_Unreachable", + "realization_id": "2bf24182-a2cb-4779-8094-d252b550d7d2", + "relative_path": "IPv6-ICMP_Destination_Unreachable", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "2bf24182-a2cb-4779-8094-d252b550d7d2", + "service_entries": [ + { + "_create_time": 1724279989090, + "_create_user": "system", + "_last_modified_time": 1724279989090, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "IPv6-ICMP Destination Unreachable", + "icmp_type": 1, + "id": "IPv6-ICMP_Destination_Unreachable", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/IPv6-ICMP_Destination_Unreachable", + "path": "/infra/services/IPv6-ICMP_Destination_Unreachable/service-entries/IPv6-ICMP_Destination_Unreachable", + "protocol": "ICMPv6", + "realization_id": "4e4facc6-29cf-4215-8626-f52f22923088", + "relative_path": "IPv6-ICMP_Destination_Unreachable", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "4e4facc6-29cf-4215-8626-f52f22923088" + } + ] + }, + { + "_create_time": 1724279989038, + "_create_user": "system", + "_last_modified_time": 1724279989038, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "IPv6-ICMP Echo Reply", + "display_name": "IPv6-ICMP Echo Reply", + "id": "IPv6-ICMP_Echo_Reply", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/IPv6-ICMP_Echo_Reply", + "realization_id": "1d48f135-9b11-4b2b-8d4c-f94487637765", + "relative_path": "IPv6-ICMP_Echo_Reply", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "1d48f135-9b11-4b2b-8d4c-f94487637765", + "service_entries": [ + { + "_create_time": 1724279989038, + "_create_user": "system", + "_last_modified_time": 1724279989038, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "IPv6-ICMP Echo Reply", + "icmp_type": 129, + "id": "IPv6-ICMP_Echo_Reply", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/IPv6-ICMP_Echo_Reply", + "path": "/infra/services/IPv6-ICMP_Echo_Reply/service-entries/IPv6-ICMP_Echo_Reply", + "protocol": "ICMPv6", + "realization_id": "1a5c1cb1-7759-4f8f-be32-16b3aaebe958", + "relative_path": "IPv6-ICMP_Echo_Reply", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "1a5c1cb1-7759-4f8f-be32-16b3aaebe958" + } + ] + }, + { + "_create_time": 1724279988897, + "_create_user": "system", + "_last_modified_time": 1724279988897, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "IPv6-ICMP Echo Request", + "display_name": "IPv6-ICMP Echo Request", + "id": "IPv6-ICMP_Echo_Request", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/IPv6-ICMP_Echo_Request", + "realization_id": "331070b9-d73e-4b77-af57-c971efa75d8d", + "relative_path": "IPv6-ICMP_Echo_Request", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "331070b9-d73e-4b77-af57-c971efa75d8d", + "service_entries": [ + { + "_create_time": 1724279988898, + "_create_user": "system", + "_last_modified_time": 1724279988898, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "IPv6-ICMP Echo Request", + "icmp_type": 128, + "id": "IPv6-ICMP_Echo_Request", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/IPv6-ICMP_Echo_Request", + "path": "/infra/services/IPv6-ICMP_Echo_Request/service-entries/IPv6-ICMP_Echo_Request", + "protocol": "ICMPv6", + "realization_id": "35de36d4-cb86-4723-bbc3-538879b14bca", + "relative_path": "IPv6-ICMP_Echo_Request", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "35de36d4-cb86-4723-bbc3-538879b14bca" + } + ] + }, + { + "_create_time": 1724279988928, + "_create_user": "system", + "_last_modified_time": 1724279988928, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "IPv6-ICMP Multicast Listener Done", + "display_name": "IPv6-ICMP Multicast Listener Done", + "id": "IPv6-ICMP_Multicast_Listener_Done", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/IPv6-ICMP_Multicast_Listener_Done", + "realization_id": "66b1d9bc-a8b6-4108-8bfe-14dd5b4c97cb", + "relative_path": "IPv6-ICMP_Multicast_Listener_Done", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "66b1d9bc-a8b6-4108-8bfe-14dd5b4c97cb", + "service_entries": [ + { + "_create_time": 1724279988928, + "_create_user": "system", + "_last_modified_time": 1724279988928, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "IPv6-ICMP Multicast Listener Done", + "icmp_type": 132, + "id": "IPv6-ICMP_Multicast_Listener_Done", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/IPv6-ICMP_Multicast_Listener_Done", + "path": "/infra/services/IPv6-ICMP_Multicast_Listener_Done/service-entries/IPv6-ICMP_Multicast_Listener_Done", + "protocol": "ICMPv6", + "realization_id": "0316e6fc-26f0-41ae-a934-525fbdc511fa", + "relative_path": "IPv6-ICMP_Multicast_Listener_Done", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "0316e6fc-26f0-41ae-a934-525fbdc511fa" + } + ] + }, + { + "_create_time": 1724279988948, + "_create_user": "system", + "_last_modified_time": 1724279988948, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "IPv6-ICMP Multicast Listener Query", + "display_name": "IPv6-ICMP Multicast Listener Query", + "id": "IPv6-ICMP_Multicast_Listener_Query", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/IPv6-ICMP_Multicast_Listener_Query", + "realization_id": "b329ed0e-f54f-4183-92b9-774deedac08e", + "relative_path": "IPv6-ICMP_Multicast_Listener_Query", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "b329ed0e-f54f-4183-92b9-774deedac08e", + "service_entries": [ + { + "_create_time": 1724279988948, + "_create_user": "system", + "_last_modified_time": 1724279988948, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "IPv6-ICMP Multicast Listener Query", + "icmp_type": 130, + "id": "IPv6-ICMP_Multicast_Listener_Query", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/IPv6-ICMP_Multicast_Listener_Query", + "path": "/infra/services/IPv6-ICMP_Multicast_Listener_Query/service-entries/IPv6-ICMP_Multicast_Listener_Query", + "protocol": "ICMPv6", + "realization_id": "338e36cb-1ce7-4d57-887e-5bb769aa5660", + "relative_path": "IPv6-ICMP_Multicast_Listener_Query", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "338e36cb-1ce7-4d57-887e-5bb769aa5660" + } + ] + }, + { + "_create_time": 1724279989194, + "_create_user": "system", + "_last_modified_time": 1724279989194, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "IPv6-ICMP Multicast Listener Report", + "display_name": "IPv6-ICMP Multicast Listener Report", + "id": "IPv6-ICMP_Multicast_Listener_Report", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/IPv6-ICMP_Multicast_Listener_Report", + "realization_id": "02a8fbc7-0db5-451c-a634-4c0d31253424", + "relative_path": "IPv6-ICMP_Multicast_Listener_Report", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "02a8fbc7-0db5-451c-a634-4c0d31253424", + "service_entries": [ + { + "_create_time": 1724279989195, + "_create_user": "system", + "_last_modified_time": 1724279989195, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "IPv6-ICMP Multicast Listener Report", + "icmp_type": 131, + "id": "IPv6-ICMP_Multicast_Listener_Report", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/IPv6-ICMP_Multicast_Listener_Report", + "path": "/infra/services/IPv6-ICMP_Multicast_Listener_Report/service-entries/IPv6-ICMP_Multicast_Listener_Report", + "protocol": "ICMPv6", + "realization_id": "9a83683c-0812-44da-8cb9-42104e178253", + "relative_path": "IPv6-ICMP_Multicast_Listener_Report", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "9a83683c-0812-44da-8cb9-42104e178253" + } + ] + }, + { + "_create_time": 1724279988943, + "_create_user": "system", + "_last_modified_time": 1724279988943, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "IPv6-ICMP Neighbor Advertisement", + "display_name": "IPv6-ICMP Neighbor Advertisement", + "id": "IPv6-ICMP_Neighbor_Advertisement", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/IPv6-ICMP_Neighbor_Advertisement", + "realization_id": "8586e14f-29ee-4374-97b4-a8321b47c20b", + "relative_path": "IPv6-ICMP_Neighbor_Advertisement", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "8586e14f-29ee-4374-97b4-a8321b47c20b", + "service_entries": [ + { + "_create_time": 1724279988943, + "_create_user": "system", + "_last_modified_time": 1724279988943, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "IPv6-ICMP Neighbor Advertisement", + "icmp_type": 136, + "id": "IPv6-ICMP_Neighbor_Advertisement", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/IPv6-ICMP_Neighbor_Advertisement", + "path": "/infra/services/IPv6-ICMP_Neighbor_Advertisement/service-entries/IPv6-ICMP_Neighbor_Advertisement", + "protocol": "ICMPv6", + "realization_id": "505a3b12-7d4e-4059-a781-228d0874ce7d", + "relative_path": "IPv6-ICMP_Neighbor_Advertisement", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "505a3b12-7d4e-4059-a781-228d0874ce7d" + } + ] + }, + { + "_create_time": 1724279989200, + "_create_user": "system", + "_last_modified_time": 1724279989200, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "IPv6-ICMP Neighbor Solicitation", + "display_name": "IPv6-ICMP Neighbor Solicitation", + "id": "IPv6-ICMP_Neighbor_Solicitation", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/IPv6-ICMP_Neighbor_Solicitation", + "realization_id": "e5d9c3db-31eb-4610-baa8-7e9d80f82b0e", + "relative_path": "IPv6-ICMP_Neighbor_Solicitation", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "e5d9c3db-31eb-4610-baa8-7e9d80f82b0e", + "service_entries": [ + { + "_create_time": 1724279989200, + "_create_user": "system", + "_last_modified_time": 1724279989200, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "IPv6-ICMP Neighbor Solicitation", + "icmp_type": 135, + "id": "IPv6-ICMP_Neighbor_Solicitation", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/IPv6-ICMP_Neighbor_Solicitation", + "path": "/infra/services/IPv6-ICMP_Neighbor_Solicitation/service-entries/IPv6-ICMP_Neighbor_Solicitation", + "protocol": "ICMPv6", + "realization_id": "f151a89d-c541-45c4-92e7-9215d2f8afa7", + "relative_path": "IPv6-ICMP_Neighbor_Solicitation", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "f151a89d-c541-45c4-92e7-9215d2f8afa7" + } + ] + }, + { + "_create_time": 1724279988861, + "_create_user": "system", + "_last_modified_time": 1724279988861, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "IPv6-ICMP Packet Too Big", + "display_name": "IPv6-ICMP Packet Too Big", + "id": "IPv6-ICMP_Packet_Too_Big", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/IPv6-ICMP_Packet_Too_Big", + "realization_id": "f19ad314-81e0-4d41-a397-52e51581b2a8", + "relative_path": "IPv6-ICMP_Packet_Too_Big", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "f19ad314-81e0-4d41-a397-52e51581b2a8", + "service_entries": [ + { + "_create_time": 1724279988862, + "_create_user": "system", + "_last_modified_time": 1724279988862, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "IPv6-ICMP Packet Too Big", + "icmp_type": 2, + "id": "IPv6-ICMP_Packet_Too_Big", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/IPv6-ICMP_Packet_Too_Big", + "path": "/infra/services/IPv6-ICMP_Packet_Too_Big/service-entries/IPv6-ICMP_Packet_Too_Big", + "protocol": "ICMPv6", + "realization_id": "8ace0783-c71d-4cff-8d76-3f49822594d5", + "relative_path": "IPv6-ICMP_Packet_Too_Big", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "8ace0783-c71d-4cff-8d76-3f49822594d5" + } + ] + }, + { + "_create_time": 1724279989022, + "_create_user": "system", + "_last_modified_time": 1724279989022, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "IPv6-ICMP Parameter Problem", + "display_name": "IPv6-ICMP Parameter Problem", + "id": "IPv6-ICMP_Parameter_Problem", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/IPv6-ICMP_Parameter_Problem", + "realization_id": "9721ed51-e44f-4ea4-a6d5-87ec85834c78", + "relative_path": "IPv6-ICMP_Parameter_Problem", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "9721ed51-e44f-4ea4-a6d5-87ec85834c78", + "service_entries": [ + { + "_create_time": 1724279989022, + "_create_user": "system", + "_last_modified_time": 1724279989022, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "IPv6-ICMP Parameter Problem", + "icmp_type": 4, + "id": "IPv6-ICMP_Parameter_Problem", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/IPv6-ICMP_Parameter_Problem", + "path": "/infra/services/IPv6-ICMP_Parameter_Problem/service-entries/IPv6-ICMP_Parameter_Problem", + "protocol": "ICMPv6", + "realization_id": "4c0db18b-022f-4475-8200-48af7a1c2282", + "relative_path": "IPv6-ICMP_Parameter_Problem", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "4c0db18b-022f-4475-8200-48af7a1c2282" + } + ] + }, + { + "_create_time": 1724279988953, + "_create_user": "system", + "_last_modified_time": 1724279988953, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "IPv6-ICMP Time Exceeded", + "display_name": "IPv6-ICMP Time Exceeded", + "id": "IPv6-ICMP_Time_Exceeded", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/IPv6-ICMP_Time_Exceeded", + "realization_id": "b4ff6738-8824-4251-8dd8-9d61b7a725fd", + "relative_path": "IPv6-ICMP_Time_Exceeded", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "b4ff6738-8824-4251-8dd8-9d61b7a725fd", + "service_entries": [ + { + "_create_time": 1724279988953, + "_create_user": "system", + "_last_modified_time": 1724279988953, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "IPv6-ICMP Time Exceeded", + "icmp_type": 3, + "id": "IPv6-ICMP_Time_Exceeded", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/IPv6-ICMP_Time_Exceeded", + "path": "/infra/services/IPv6-ICMP_Time_Exceeded/service-entries/IPv6-ICMP_Time_Exceeded", + "protocol": "ICMPv6", + "realization_id": "417b02ba-1eb3-475d-9628-7dc8a0420b67", + "relative_path": "IPv6-ICMP_Time_Exceeded", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "417b02ba-1eb3-475d-9628-7dc8a0420b67" + } + ] + }, + { + "_create_time": 1724279989015, + "_create_user": "system", + "_last_modified_time": 1724279989015, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "IPv6-ICMP Version 2 Multicast Listener", + "display_name": "IPv6-ICMP Version 2 Multicast Listener", + "id": "IPv6-ICMP_Version_2_Multicast_Listener", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/IPv6-ICMP_Version_2_Multicast_Listener", + "realization_id": "ceabc754-5af3-46b7-bab1-234c27202147", + "relative_path": "IPv6-ICMP_Version_2_Multicast_Listener", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "ceabc754-5af3-46b7-bab1-234c27202147", + "service_entries": [ + { + "_create_time": 1724279989015, + "_create_user": "system", + "_last_modified_time": 1724279989015, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "display_name": "IPv6-ICMP Version 2 Multicast Listener", + "icmp_type": 143, + "id": "IPv6-ICMP_Version_2_Multicast_Listener", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/IPv6-ICMP_Version_2_Multicast_Listener", + "path": "/infra/services/IPv6-ICMP_Version_2_Multicast_Listener/service-entries/IPv6-ICMP_Version_2_Multicast_Listener", + "protocol": "ICMPv6", + "realization_id": "7ccb1cc2-6694-4da8-820f-7d945c4777e2", + "relative_path": "IPv6-ICMP_Version_2_Multicast_Listener", + "remote_path": "", + "resource_type": "ICMPTypeServiceEntry", + "unique_id": "7ccb1cc2-6694-4da8-820f-7d945c4777e2" + } + ] + }, + { + "_create_time": 1724279988876, + "_create_user": "system", + "_last_modified_time": 1724279988876, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "ISAKMP", + "display_name": "ISAKMP", + "id": "ISAKMP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/ISAKMP", + "realization_id": "1609e08d-b41f-4380-a7b4-9fa225f151a1", + "relative_path": "ISAKMP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "1609e08d-b41f-4380-a7b4-9fa225f151a1", + "service_entries": [ + { + "_create_time": 1724279988877, + "_create_user": "system", + "_last_modified_time": 1724279988877, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "500" + ], + "display_name": "ISAKMP", + "id": "ISAKMP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/ISAKMP", + "path": "/infra/services/ISAKMP/service-entries/ISAKMP", + "realization_id": "73a02167-a938-4f9a-8bf0-6a1a4db1091f", + "relative_path": "ISAKMP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "73a02167-a938-4f9a-8bf0-6a1a4db1091f" + } + ] + }, + { + "_create_time": 1724279988938, + "_create_user": "system", + "_last_modified_time": 1724279988938, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Java Object Cache port", + "display_name": "Java Object Cache port", + "id": "Java_Object_Cache_port", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Java_Object_Cache_port", + "realization_id": "33699ad1-c54d-4fe6-b045-4ac90dd07154", + "relative_path": "Java_Object_Cache_port", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "33699ad1-c54d-4fe6-b045-4ac90dd07154", + "service_entries": [ + { + "_create_time": 1724279988938, + "_create_user": "system", + "_last_modified_time": 1724279988938, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "7000" + ], + "display_name": "Java Object Cache port", + "id": "Java_Object_Cache_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Java_Object_Cache_port", + "path": "/infra/services/Java_Object_Cache_port/service-entries/Java_Object_Cache_port", + "realization_id": "62f4393c-782c-4274-9865-fb8deeeefcb3", + "relative_path": "Java_Object_Cache_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "62f4393c-782c-4274-9865-fb8deeeefcb3" + } + ] + }, + { + "_create_time": 1724279989193, + "_create_user": "system", + "_last_modified_time": 1724279989193, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "KERBEROS", + "display_name": "KERBEROS", + "id": "KERBEROS", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/KERBEROS", + "realization_id": "8529dd58-af92-46c5-95cb-75e39e7b9832", + "relative_path": "KERBEROS", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "8529dd58-af92-46c5-95cb-75e39e7b9832", + "service_entries": [ + { + "_create_time": 1724279989193, + "_create_user": "system", + "_last_modified_time": 1724279989193, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS", + "id": "KERBEROS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/KERBEROS", + "path": "/infra/services/KERBEROS/service-entries/KERBEROS", + "realization_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50", + "relative_path": "KERBEROS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50" + } + ] + }, + { + "_create_time": 1724279988952, + "_create_user": "system", + "_last_modified_time": 1724279988952, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "KERBEROS-TCP", + "display_name": "KERBEROS-TCP", + "id": "KERBEROS-TCP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/KERBEROS-TCP", + "realization_id": "ad85ce75-23a7-4084-ac12-d1d50f99edcd", + "relative_path": "KERBEROS-TCP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "ad85ce75-23a7-4084-ac12-d1d50f99edcd", + "service_entries": [ + { + "_create_time": 1724279988952, + "_create_user": "system", + "_last_modified_time": 1724279988952, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS-TCP", + "id": "KERBEROS-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/KERBEROS-TCP", + "path": "/infra/services/KERBEROS-TCP/service-entries/KERBEROS-TCP", + "realization_id": "f6f274d3-bada-4475-80c4-e06dbcff5620", + "relative_path": "KERBEROS-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f6f274d3-bada-4475-80c4-e06dbcff5620" + } + ] + }, + { + "_create_time": 1724279988998, + "_create_user": "system", + "_last_modified_time": 1724279988998, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "KERBEROS-UDP", + "display_name": "KERBEROS-UDP", + "id": "KERBEROS-UDP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/KERBEROS-UDP", + "realization_id": "b1ff1acd-c5ba-4a73-a185-9323e64fcf32", + "relative_path": "KERBEROS-UDP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "b1ff1acd-c5ba-4a73-a185-9323e64fcf32", + "service_entries": [ + { + "_create_time": 1724279988998, + "_create_user": "system", + "_last_modified_time": 1724279988998, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS-UDP", + "id": "KERBEROS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/KERBEROS-UDP", + "path": "/infra/services/KERBEROS-UDP/service-entries/KERBEROS-UDP", + "realization_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e", + "relative_path": "KERBEROS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e" + } + ] + }, + { + "_create_time": 1724279989097, + "_create_user": "system", + "_last_modified_time": 1724279989097, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "LDAP", + "display_name": "LDAP", + "id": "LDAP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/LDAP", + "realization_id": "d7bbf441-62b5-4db1-b2e4-2f55acc65ddb", + "relative_path": "LDAP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "d7bbf441-62b5-4db1-b2e4-2f55acc65ddb", + "service_entries": [ + { + "_create_time": 1724279989097, + "_create_user": "system", + "_last_modified_time": 1724279989097, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP", + "id": "LDAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/LDAP", + "path": "/infra/services/LDAP/service-entries/LDAP", + "realization_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28", + "relative_path": "LDAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28" + } + ] + }, + { + "_create_time": 1724279988940, + "_create_user": "system", + "_last_modified_time": 1724279988940, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "LDAP Global Catalog", + "display_name": "LDAP Global Catalog", + "id": "LDAP_Global_Catalog", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/LDAP_Global_Catalog", + "realization_id": "1c456760-b33c-4ffd-b6c6-51c99e4d0eea", + "relative_path": "LDAP_Global_Catalog", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "1c456760-b33c-4ffd-b6c6-51c99e4d0eea", + "service_entries": [ + { + "_create_time": 1724279988940, + "_create_user": "system", + "_last_modified_time": 1724279988940, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3268" + ], + "display_name": "LDAP Global Catalog", + "id": "LDAP_Global_Catalog", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/LDAP_Global_Catalog", + "path": "/infra/services/LDAP_Global_Catalog/service-entries/LDAP_Global_Catalog", + "realization_id": "57402db2-fa4c-4a67-bdbc-e150d7cb5343", + "relative_path": "LDAP_Global_Catalog", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "57402db2-fa4c-4a67-bdbc-e150d7cb5343" + } + ] + }, + { + "_create_time": 1724279989016, + "_create_user": "system", + "_last_modified_time": 1724279989016, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "LDAP-UDP", + "display_name": "LDAP-UDP", + "id": "LDAP-UDP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/LDAP-UDP", + "realization_id": "c1015cdd-280d-4ef2-9dba-dbccdea6310c", + "relative_path": "LDAP-UDP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "c1015cdd-280d-4ef2-9dba-dbccdea6310c", + "service_entries": [ + { + "_create_time": 1724279989016, + "_create_user": "system", + "_last_modified_time": 1724279989016, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP-UDP", + "id": "LDAP-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/LDAP-UDP", + "path": "/infra/services/LDAP-UDP/service-entries/LDAP-UDP", + "realization_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f", + "relative_path": "LDAP-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f" + } + ] + }, + { + "_create_time": 1724279988895, + "_create_user": "system", + "_last_modified_time": 1724279988895, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "LDAP-over-SSL", + "display_name": "LDAP-over-SSL", + "id": "LDAP-over-SSL", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/LDAP-over-SSL", + "realization_id": "44b64695-838a-4640-b5c4-0ff2610c934f", + "relative_path": "LDAP-over-SSL", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "44b64695-838a-4640-b5c4-0ff2610c934f", + "service_entries": [ + { + "_create_time": 1724279988895, + "_create_user": "system", + "_last_modified_time": 1724279988895, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "636" + ], + "display_name": "LDAP-over-SSL", + "id": "LDAP-over-SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/LDAP-over-SSL", + "path": "/infra/services/LDAP-over-SSL/service-entries/LDAP-over-SSL", + "realization_id": "1c5f31ab-1398-44cc-84de-2e0891d813b3", + "relative_path": "LDAP-over-SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "1c5f31ab-1398-44cc-84de-2e0891d813b3" + } + ] + }, + { + "_create_time": 1724279988954, + "_create_user": "system", + "_last_modified_time": 1724279988954, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "LDAP-over-SSL-UDP", + "display_name": "LDAP-over-SSL-UDP", + "id": "LDAP-over-SSL-UDP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/LDAP-over-SSL-UDP", + "realization_id": "ee0ed81a-3ff7-4d85-9815-7e76e32ee3fd", + "relative_path": "LDAP-over-SSL-UDP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "ee0ed81a-3ff7-4d85-9815-7e76e32ee3fd", + "service_entries": [ + { + "_create_time": 1724279988955, + "_create_user": "system", + "_last_modified_time": 1724279988955, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "636" + ], + "display_name": "LDAP-over-SSL-UDP", + "id": "LDAP-over-SSL-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/LDAP-over-SSL-UDP", + "path": "/infra/services/LDAP-over-SSL-UDP/service-entries/LDAP-over-SSL-UDP", + "realization_id": "962b858f-396b-4259-8837-6abfdbb2e181", + "relative_path": "LDAP-over-SSL-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "962b858f-396b-4259-8837-6abfdbb2e181" + } + ] + }, + { + "_create_time": 1724279989184, + "_create_user": "system", + "_last_modified_time": 1724279989184, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Log Loader", + "display_name": "Log Loader", + "id": "Log_Loader", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Log_Loader", + "realization_id": "c2a14b3b-ebf8-4a9a-94f4-a186e814b604", + "relative_path": "Log_Loader", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "c2a14b3b-ebf8-4a9a-94f4-a186e814b604", + "service_entries": [ + { + "_create_time": 1724279989184, + "_create_user": "system", + "_last_modified_time": 1724279989184, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "44000" + ], + "display_name": "Log Loader", + "id": "Log_Loader", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Log_Loader", + "path": "/infra/services/Log_Loader/service-entries/Log_Loader", + "realization_id": "b8497996-a622-4802-8b0c-54649bae24c4", + "relative_path": "Log_Loader", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b8497996-a622-4802-8b0c-54649bae24c4" + } + ] + }, + { + "_create_time": 1724279988954, + "_create_user": "system", + "_last_modified_time": 1724279988954, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MGCP (TCP)", + "display_name": "MGCP (TCP)", + "id": "MGCP_(TCP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MGCP_(TCP)", + "realization_id": "8f909b71-ce2a-4d95-9be0-0d91fd099c42", + "relative_path": "MGCP_(TCP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "8f909b71-ce2a-4d95-9be0-0d91fd099c42", + "service_entries": [ + { + "_create_time": 1724279988954, + "_create_user": "system", + "_last_modified_time": 1724279988954, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2428" + ], + "display_name": "MGCP (TCP)", + "id": "MGCP_(TCP)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MGCP_(TCP)", + "path": "/infra/services/MGCP_(TCP)/service-entries/MGCP_(TCP)", + "realization_id": "d8877f82-e93e-4fa7-8211-1981a7854332", + "relative_path": "MGCP_(TCP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "d8877f82-e93e-4fa7-8211-1981a7854332" + } + ] + }, + { + "_create_time": 1724279989081, + "_create_user": "system", + "_last_modified_time": 1724279989081, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MGCP (UDP)", + "display_name": "MGCP (UDP)", + "id": "MGCP_(UDP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MGCP_(UDP)", + "realization_id": "76e739f2-33d5-4f82-b99f-d198bd99f584", + "relative_path": "MGCP_(UDP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "76e739f2-33d5-4f82-b99f-d198bd99f584", + "service_entries": [ + { + "_create_time": 1724279989081, + "_create_user": "system", + "_last_modified_time": 1724279989081, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2427" + ], + "display_name": "MGCP (UDP)", + "id": "MGCP_(UDP)", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MGCP_(UDP)", + "path": "/infra/services/MGCP_(UDP)/service-entries/MGCP_(UDP)", + "realization_id": "6f304f87-fab4-4ffc-8e5e-7ceeebe06a07", + "relative_path": "MGCP_(UDP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "6f304f87-fab4-4ffc-8e5e-7ceeebe06a07" + } + ] + }, + { + "_create_time": 1724279989106, + "_create_user": "system", + "_last_modified_time": 1724279989106, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MS Customizable", + "display_name": "MS Customizable", + "id": "MS_Customizable", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MS_Customizable", + "realization_id": "080b5261-ece6-4e5e-a18a-ba7d0390392c", + "relative_path": "MS_Customizable", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "080b5261-ece6-4e5e-a18a-ba7d0390392c", + "service_entries": [ + { + "_create_time": 1724279989106, + "_create_user": "system", + "_last_modified_time": 1724279989106, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "64327" + ], + "display_name": "MS Customizable", + "id": "MS_Customizable", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Customizable", + "path": "/infra/services/MS_Customizable/service-entries/MS_Customizable", + "realization_id": "9d92dbd6-c720-41fa-bba8-bb84d2c516dd", + "relative_path": "MS_Customizable", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "9d92dbd6-c720-41fa-bba8-bb84d2c516dd" + } + ] + }, + { + "_create_time": 1724279996153, + "_create_user": "system", + "_last_modified_time": 1724279996153, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MS Exchange 2007 Client Access Server", + "display_name": "MS Exchange 2007 Client Access Server", + "id": "MS_Exchange_2007_Client_Access_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MS_Exchange_2007_Client_Access_Server", + "realization_id": "b6c25847-4ec7-42c5-8c8b-b10395207413", + "relative_path": "MS_Exchange_2007_Client_Access_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "b6c25847-4ec7-42c5-8c8b-b10395207413", + "service_entries": [ + { + "_create_time": 1724279996183, + "_create_user": "system", + "_last_modified_time": 1724279996183, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "80" + ], + "display_name": "HTTP", + "id": "HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Client_Access_Server", + "path": "/infra/services/MS_Exchange_2007_Client_Access_Server/service-entries/HTTP", + "realization_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38" + }, + { + "_create_time": 1724279996235, + "_create_user": "system", + "_last_modified_time": 1724279996235, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "143" + ], + "display_name": "IMAP", + "id": "IMAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Client_Access_Server", + "path": "/infra/services/MS_Exchange_2007_Client_Access_Server/service-entries/IMAP", + "realization_id": "2abb274c-650a-4055-96d3-744d95fadfd0", + "relative_path": "IMAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "2abb274c-650a-4055-96d3-744d95fadfd0" + }, + { + "_create_time": 1724279996227, + "_create_user": "system", + "_last_modified_time": 1724279996227, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Client_Access_Server", + "path": "/infra/services/MS_Exchange_2007_Client_Access_Server/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + }, + { + "_create_time": 1724279996220, + "_create_user": "system", + "_last_modified_time": 1724279996220, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "995" + ], + "display_name": "POP3_SSL", + "id": "POP3_SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Client_Access_Server", + "path": "/infra/services/MS_Exchange_2007_Client_Access_Server/service-entries/POP3_SSL", + "realization_id": "78dc2b15-edf4-43bb-9199-1586f80adc23", + "relative_path": "POP3_SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "78dc2b15-edf4-43bb-9199-1586f80adc23" + }, + { + "_create_time": 1724279996202, + "_create_user": "system", + "_last_modified_time": 1724279996202, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "110" + ], + "display_name": "POP3", + "id": "POP3", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Client_Access_Server", + "path": "/infra/services/MS_Exchange_2007_Client_Access_Server/service-entries/POP3", + "realization_id": "91c0ac1d-2d04-49a7-b1e7-5d2bd1f6de95", + "relative_path": "POP3", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "91c0ac1d-2d04-49a7-b1e7-5d2bd1f6de95" + }, + { + "_create_time": 1724279996167, + "_create_user": "system", + "_last_modified_time": 1724279996167, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "993" + ], + "display_name": "IMAP_SSL", + "id": "IMAP_SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Client_Access_Server", + "path": "/infra/services/MS_Exchange_2007_Client_Access_Server/service-entries/IMAP_SSL", + "realization_id": "f8aee13f-94ae-496f-834e-95718e6e3bf3", + "relative_path": "IMAP_SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f8aee13f-94ae-496f-834e-95718e6e3bf3" + }, + { + "_create_time": 1724279996242, + "_create_user": "system", + "_last_modified_time": 1724279996242, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5060", + "5061", + "5062" + ], + "display_name": "MS Unified Messaging server", + "id": "MS_Unified_Messaging_server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Client_Access_Server", + "path": "/infra/services/MS_Exchange_2007_Client_Access_Server/service-entries/MS_Unified_Messaging_server", + "realization_id": "84fc17dc-70ff-406a-8d22-224cf6ec95e8", + "relative_path": "MS_Unified_Messaging_server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "84fc17dc-70ff-406a-8d22-224cf6ec95e8" + } + ] + }, + { + "_create_time": 1724279995821, + "_create_user": "system", + "_last_modified_time": 1724279995821, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MS Exchange 2007 Mailbox Servers", + "display_name": "MS Exchange 2007 Mailbox Servers", + "id": "MS_Exchange_2007_Mailbox_Servers", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MS_Exchange_2007_Mailbox_Servers", + "realization_id": "b38b7fe5-5609-4d55-9495-c7d2e2d3ab80", + "relative_path": "MS_Exchange_2007_Mailbox_Servers", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "b38b7fe5-5609-4d55-9495-c7d2e2d3ab80", + "service_entries": [ + { + "_create_time": 1724279995967, + "_create_user": "system", + "_last_modified_time": 1724279995967, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP-UDP", + "id": "LDAP-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Mailbox_Servers", + "path": "/infra/services/MS_Exchange_2007_Mailbox_Servers/service-entries/LDAP-UDP", + "realization_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f", + "relative_path": "LDAP-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f" + }, + { + "_create_time": 1724279995885, + "_create_user": "system", + "_last_modified_time": 1724279995885, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-UDP", + "id": "DNS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Mailbox_Servers", + "path": "/infra/services/MS_Exchange_2007_Mailbox_Servers/service-entries/DNS-UDP", + "realization_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326", + "relative_path": "DNS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326" + }, + { + "_create_time": 1724279995928, + "_create_user": "system", + "_last_modified_time": 1724279995928, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS-UDP", + "id": "KERBEROS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Mailbox_Servers", + "path": "/infra/services/MS_Exchange_2007_Mailbox_Servers/service-entries/KERBEROS-UDP", + "realization_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e", + "relative_path": "KERBEROS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e" + }, + { + "_create_time": 1724279995836, + "_create_user": "system", + "_last_modified_time": 1724279995836, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3268" + ], + "display_name": "LDAP Global Catalog", + "id": "LDAP_Global_Catalog", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Mailbox_Servers", + "path": "/infra/services/MS_Exchange_2007_Mailbox_Servers/service-entries/LDAP_Global_Catalog", + "realization_id": "57402db2-fa4c-4a67-bdbc-e150d7cb5343", + "relative_path": "LDAP_Global_Catalog", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "57402db2-fa4c-4a67-bdbc-e150d7cb5343" + }, + { + "_create_time": 1724279995844, + "_create_user": "system", + "_last_modified_time": 1724279995844, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS", + "id": "KERBEROS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Mailbox_Servers", + "path": "/infra/services/MS_Exchange_2007_Mailbox_Servers/service-entries/KERBEROS", + "realization_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50", + "relative_path": "KERBEROS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50" + }, + { + "_create_time": 1724279995914, + "_create_user": "system", + "_last_modified_time": 1724279995914, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "445" + ], + "display_name": "MS-DS-TCP", + "id": "MS-DS-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Mailbox_Servers", + "path": "/infra/services/MS_Exchange_2007_Mailbox_Servers/service-entries/MS-DS-TCP", + "realization_id": "1a734e23-133b-46ba-9428-0980d56583c4", + "relative_path": "MS-DS-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "1a734e23-133b-46ba-9428-0980d56583c4" + }, + { + "_create_time": 1724279995937, + "_create_user": "system", + "_last_modified_time": 1724279995937, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP", + "id": "LDAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Mailbox_Servers", + "path": "/infra/services/MS_Exchange_2007_Mailbox_Servers/service-entries/LDAP", + "realization_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28", + "relative_path": "LDAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28" + }, + { + "_create_time": 1724279996009, + "_create_user": "system", + "_last_modified_time": 1724279996009, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Mailbox_Servers", + "path": "/infra/services/MS_Exchange_2007_Mailbox_Servers/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + }, + { + "_create_time": 1724279995987, + "_create_user": "system", + "_last_modified_time": 1724279995987, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "80" + ], + "display_name": "HTTP", + "id": "HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Mailbox_Servers", + "path": "/infra/services/MS_Exchange_2007_Mailbox_Servers/service-entries/HTTP", + "realization_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38" + }, + { + "_create_time": 1724279995905, + "_create_user": "system", + "_last_modified_time": 1724279995905, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "MS_RPC_TCP", + "destination_ports": [ + "135" + ], + "display_name": "MS_RPC_TCP", + "id": "MS_RPC_TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Mailbox_Servers", + "path": "/infra/services/MS_Exchange_2007_Mailbox_Servers/service-entries/MS_RPC_TCP", + "realization_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0", + "relative_path": "MS_RPC_TCP", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0" + }, + { + "_create_time": 1724279996038, + "_create_user": "system", + "_last_modified_time": 1724279996038, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-TCP", + "id": "DNS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Mailbox_Servers", + "path": "/infra/services/MS_Exchange_2007_Mailbox_Servers/service-entries/DNS", + "realization_id": "503ad409-d481-4547-8720-28534c1856b6", + "relative_path": "DNS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "503ad409-d481-4547-8720-28534c1856b6" + } + ] + }, + { + "_create_time": 1724279990838, + "_create_user": "system", + "_last_modified_time": 1724279990838, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MS Exchange 2007 Transport Servers", + "display_name": "MS Exchange 2007 Transport Servers", + "id": "MS_Exchange_2007_Transport_Servers", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MS_Exchange_2007_Transport_Servers", + "realization_id": "2f9211eb-2a4d-46fb-ac2f-b4c7275b2069", + "relative_path": "MS_Exchange_2007_Transport_Servers", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "2f9211eb-2a4d-46fb-ac2f-b4c7275b2069", + "service_entries": [ + { + "_create_time": 1724279990845, + "_create_user": "system", + "_last_modified_time": 1724279990845, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3268" + ], + "display_name": "LDAP Global Catalog", + "id": "LDAP_Global_Catalog", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Transport_Servers", + "path": "/infra/services/MS_Exchange_2007_Transport_Servers/service-entries/LDAP_Global_Catalog", + "realization_id": "57402db2-fa4c-4a67-bdbc-e150d7cb5343", + "relative_path": "LDAP_Global_Catalog", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "57402db2-fa4c-4a67-bdbc-e150d7cb5343" + }, + { + "_create_time": 1724279990922, + "_create_user": "system", + "_last_modified_time": 1724279990922, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS-UDP", + "id": "KERBEROS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Transport_Servers", + "path": "/infra/services/MS_Exchange_2007_Transport_Servers/service-entries/KERBEROS-UDP", + "realization_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e", + "relative_path": "KERBEROS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e" + }, + { + "_create_time": 1724279990863, + "_create_user": "system", + "_last_modified_time": 1724279990863, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "MS_RPC_TCP", + "destination_ports": [ + "135" + ], + "display_name": "MS_RPC_TCP", + "id": "MS_RPC_TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Transport_Servers", + "path": "/infra/services/MS_Exchange_2007_Transport_Servers/service-entries/MS_RPC_TCP", + "realization_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0", + "relative_path": "MS_RPC_TCP", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0" + }, + { + "_create_time": 1724279990851, + "_create_user": "system", + "_last_modified_time": 1724279990851, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "587" + ], + "display_name": "SMTP_TLS", + "id": "SMTP_TLS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Transport_Servers", + "path": "/infra/services/MS_Exchange_2007_Transport_Servers/service-entries/SMTP_TLS", + "realization_id": "0c62c54f-dc12-4549-bc5a-ba29eaedcbe7", + "relative_path": "SMTP_TLS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "0c62c54f-dc12-4549-bc5a-ba29eaedcbe7" + }, + { + "_create_time": 1724279990966, + "_create_user": "system", + "_last_modified_time": 1724279990966, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "25" + ], + "display_name": "SMTP", + "id": "SMTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Transport_Servers", + "path": "/infra/services/MS_Exchange_2007_Transport_Servers/service-entries/SMTP", + "realization_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219", + "relative_path": "SMTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219" + }, + { + "_create_time": 1724279990908, + "_create_user": "system", + "_last_modified_time": 1724279990908, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP-UDP", + "id": "LDAP-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Transport_Servers", + "path": "/infra/services/MS_Exchange_2007_Transport_Servers/service-entries/LDAP-UDP", + "realization_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f", + "relative_path": "LDAP-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f" + }, + { + "_create_time": 1724279990870, + "_create_user": "system", + "_last_modified_time": 1724279990870, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50636" + ], + "display_name": "EdgeSync service", + "id": "EdgeSync_service", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Transport_Servers", + "path": "/infra/services/MS_Exchange_2007_Transport_Servers/service-entries/EdgeSync_service", + "realization_id": "f92e96e8-f65b-4598-97ff-bab36f182184", + "relative_path": "EdgeSync_service", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f92e96e8-f65b-4598-97ff-bab36f182184" + }, + { + "_create_time": 1724279990878, + "_create_user": "system", + "_last_modified_time": 1724279990878, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-TCP", + "id": "DNS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Transport_Servers", + "path": "/infra/services/MS_Exchange_2007_Transport_Servers/service-entries/DNS", + "realization_id": "503ad409-d481-4547-8720-28534c1856b6", + "relative_path": "DNS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "503ad409-d481-4547-8720-28534c1856b6" + }, + { + "_create_time": 1724279990884, + "_create_user": "system", + "_last_modified_time": 1724279990884, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "80" + ], + "display_name": "HTTP", + "id": "HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Transport_Servers", + "path": "/infra/services/MS_Exchange_2007_Transport_Servers/service-entries/HTTP", + "realization_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38" + }, + { + "_create_time": 1724279990991, + "_create_user": "system", + "_last_modified_time": 1724279990991, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-UDP", + "id": "DNS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Transport_Servers", + "path": "/infra/services/MS_Exchange_2007_Transport_Servers/service-entries/DNS-UDP", + "realization_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326", + "relative_path": "DNS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326" + }, + { + "_create_time": 1724279990857, + "_create_user": "system", + "_last_modified_time": 1724279990857, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50389" + ], + "display_name": "EdgeSync service/ADAM", + "id": "EdgeSync_service-ADAM", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Transport_Servers", + "path": "/infra/services/MS_Exchange_2007_Transport_Servers/service-entries/EdgeSync_service-ADAM", + "realization_id": "264667f0-980b-4ee2-a5f1-eb7b96dac0c9", + "relative_path": "EdgeSync_service-ADAM", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "264667f0-980b-4ee2-a5f1-eb7b96dac0c9" + }, + { + "_create_time": 1724279990977, + "_create_user": "system", + "_last_modified_time": 1724279990977, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS", + "id": "KERBEROS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Transport_Servers", + "path": "/infra/services/MS_Exchange_2007_Transport_Servers/service-entries/KERBEROS", + "realization_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50", + "relative_path": "KERBEROS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50" + }, + { + "_create_time": 1724279990915, + "_create_user": "system", + "_last_modified_time": 1724279990915, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP", + "id": "LDAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Transport_Servers", + "path": "/infra/services/MS_Exchange_2007_Transport_Servers/service-entries/LDAP", + "realization_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28", + "relative_path": "LDAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28" + } + ] + }, + { + "_create_time": 1724279999518, + "_create_user": "system", + "_last_modified_time": 1724279999518, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MS Exchange 2007 Unified Messaging Centre", + "display_name": "MS Exchange 2007 Unified Messaging Centre", + "id": "MS_Exchange_2007_Unified_Messaging_Centre", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MS_Exchange_2007_Unified_Messaging_Centre", + "realization_id": "ef9de148-a68e-4eef-b17f-58ab7b59058e", + "relative_path": "MS_Exchange_2007_Unified_Messaging_Centre", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "ef9de148-a68e-4eef-b17f-58ab7b59058e", + "service_entries": [ + { + "_create_time": 1724279999542, + "_create_user": "system", + "_last_modified_time": 1724279999542, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "25" + ], + "display_name": "SMTP", + "id": "SMTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Unified_Messaging_Centre", + "path": "/infra/services/MS_Exchange_2007_Unified_Messaging_Centre/service-entries/SMTP", + "realization_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219", + "relative_path": "SMTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219" + }, + { + "_create_time": 1724279999572, + "_create_user": "system", + "_last_modified_time": 1724279999572, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "80" + ], + "display_name": "HTTP", + "id": "HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Unified_Messaging_Centre", + "path": "/infra/services/MS_Exchange_2007_Unified_Messaging_Centre/service-entries/HTTP", + "realization_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38" + }, + { + "_create_time": 1724279999557, + "_create_user": "system", + "_last_modified_time": 1724279999557, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "MS_RPC_TCP", + "destination_ports": [ + "135" + ], + "display_name": "MS_RPC_TCP", + "id": "MS_RPC_TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Unified_Messaging_Centre", + "path": "/infra/services/MS_Exchange_2007_Unified_Messaging_Centre/service-entries/MS_RPC_TCP", + "realization_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0", + "relative_path": "MS_RPC_TCP", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0" + }, + { + "_create_time": 1724279999532, + "_create_user": "system", + "_last_modified_time": 1724279999532, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5060", + "5061", + "5062" + ], + "display_name": "MS Unified Messaging server", + "id": "MS_Unified_Messaging_server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Unified_Messaging_Centre", + "path": "/infra/services/MS_Exchange_2007_Unified_Messaging_Centre/service-entries/MS_Unified_Messaging_server", + "realization_id": "84fc17dc-70ff-406a-8d22-224cf6ec95e8", + "relative_path": "MS_Unified_Messaging_server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "84fc17dc-70ff-406a-8d22-224cf6ec95e8" + }, + { + "_create_time": 1724279999582, + "_create_user": "system", + "_last_modified_time": 1724279999582, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2007_Unified_Messaging_Centre", + "path": "/infra/services/MS_Exchange_2007_Unified_Messaging_Centre/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + } + ] + }, + { + "_create_time": 1724279991042, + "_create_user": "system", + "_last_modified_time": 1724279991042, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MS Exchange 2010 Client Access Servers", + "display_name": "MS Exchange 2010 Client Access Servers", + "id": "MS_Exchange_2010_Client_Access_Servers", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MS_Exchange_2010_Client_Access_Servers", + "realization_id": "35f99917-8943-40a5-90dd-e3d01dfa4e54", + "relative_path": "MS_Exchange_2010_Client_Access_Servers", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "35f99917-8943-40a5-90dd-e3d01dfa4e54", + "service_entries": [ + { + "_create_time": 1724279991152, + "_create_user": "system", + "_last_modified_time": 1724279991152, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS-UDP", + "id": "KERBEROS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Client_Access_Servers", + "path": "/infra/services/MS_Exchange_2010_Client_Access_Servers/service-entries/KERBEROS-UDP", + "realization_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e", + "relative_path": "KERBEROS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e" + }, + { + "_create_time": 1724279991067, + "_create_user": "system", + "_last_modified_time": 1724279991067, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-UDP", + "id": "DNS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Client_Access_Servers", + "path": "/infra/services/MS_Exchange_2010_Client_Access_Servers/service-entries/DNS-UDP", + "realization_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326", + "relative_path": "DNS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326" + }, + { + "_create_time": 1724279991076, + "_create_user": "system", + "_last_modified_time": 1724279991076, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "143" + ], + "display_name": "IMAP", + "id": "IMAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Client_Access_Servers", + "path": "/infra/services/MS_Exchange_2010_Client_Access_Servers/service-entries/IMAP", + "realization_id": "2abb274c-650a-4055-96d3-744d95fadfd0", + "relative_path": "IMAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "2abb274c-650a-4055-96d3-744d95fadfd0" + }, + { + "_create_time": 1724279991139, + "_create_user": "system", + "_last_modified_time": 1724279991139, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "MS_RPC_TCP", + "destination_ports": [ + "135" + ], + "display_name": "MS_RPC_TCP", + "id": "MS_RPC_TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Client_Access_Servers", + "path": "/infra/services/MS_Exchange_2010_Client_Access_Servers/service-entries/MS_RPC_TCP", + "realization_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0", + "relative_path": "MS_RPC_TCP", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0" + }, + { + "_create_time": 1724279991167, + "_create_user": "system", + "_last_modified_time": 1724279991167, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Client_Access_Servers", + "path": "/infra/services/MS_Exchange_2010_Client_Access_Servers/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + }, + { + "_create_time": 1724279991105, + "_create_user": "system", + "_last_modified_time": 1724279991105, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP-UDP", + "id": "LDAP-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Client_Access_Servers", + "path": "/infra/services/MS_Exchange_2010_Client_Access_Servers/service-entries/LDAP-UDP", + "realization_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f", + "relative_path": "LDAP-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f" + }, + { + "_create_time": 1724279991084, + "_create_user": "system", + "_last_modified_time": 1724279991084, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "993" + ], + "display_name": "IMAP_SSL", + "id": "IMAP_SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Client_Access_Servers", + "path": "/infra/services/MS_Exchange_2010_Client_Access_Servers/service-entries/IMAP_SSL", + "realization_id": "f8aee13f-94ae-496f-834e-95718e6e3bf3", + "relative_path": "IMAP_SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f8aee13f-94ae-496f-834e-95718e6e3bf3" + }, + { + "_create_time": 1724279991199, + "_create_user": "system", + "_last_modified_time": 1724279991199, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-TCP", + "id": "DNS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Client_Access_Servers", + "path": "/infra/services/MS_Exchange_2010_Client_Access_Servers/service-entries/DNS", + "realization_id": "503ad409-d481-4547-8720-28534c1856b6", + "relative_path": "DNS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "503ad409-d481-4547-8720-28534c1856b6" + }, + { + "_create_time": 1724279991193, + "_create_user": "system", + "_last_modified_time": 1724279991193, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5060", + "5061", + "5062" + ], + "display_name": "MS Unified Messaging server", + "id": "MS_Unified_Messaging_server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Client_Access_Servers", + "path": "/infra/services/MS_Exchange_2010_Client_Access_Servers/service-entries/MS_Unified_Messaging_server", + "realization_id": "84fc17dc-70ff-406a-8d22-224cf6ec95e8", + "relative_path": "MS_Unified_Messaging_server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "84fc17dc-70ff-406a-8d22-224cf6ec95e8" + }, + { + "_create_time": 1724279991126, + "_create_user": "system", + "_last_modified_time": 1724279991126, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS", + "id": "KERBEROS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Client_Access_Servers", + "path": "/infra/services/MS_Exchange_2010_Client_Access_Servers/service-entries/KERBEROS", + "realization_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50", + "relative_path": "KERBEROS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50" + }, + { + "_create_time": 1724279991160, + "_create_user": "system", + "_last_modified_time": 1724279991160, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "110" + ], + "display_name": "POP3", + "id": "POP3", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Client_Access_Servers", + "path": "/infra/services/MS_Exchange_2010_Client_Access_Servers/service-entries/POP3", + "realization_id": "91c0ac1d-2d04-49a7-b1e7-5d2bd1f6de95", + "relative_path": "POP3", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "91c0ac1d-2d04-49a7-b1e7-5d2bd1f6de95" + }, + { + "_create_time": 1724279991186, + "_create_user": "system", + "_last_modified_time": 1724279991186, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "995" + ], + "display_name": "POP3_SSL", + "id": "POP3_SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Client_Access_Servers", + "path": "/infra/services/MS_Exchange_2010_Client_Access_Servers/service-entries/POP3_SSL", + "realization_id": "78dc2b15-edf4-43bb-9199-1586f80adc23", + "relative_path": "POP3_SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "78dc2b15-edf4-43bb-9199-1586f80adc23" + }, + { + "_create_time": 1724279991116, + "_create_user": "system", + "_last_modified_time": 1724279991116, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3268" + ], + "display_name": "LDAP Global Catalog", + "id": "LDAP_Global_Catalog", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Client_Access_Servers", + "path": "/infra/services/MS_Exchange_2010_Client_Access_Servers/service-entries/LDAP_Global_Catalog", + "realization_id": "57402db2-fa4c-4a67-bdbc-e150d7cb5343", + "relative_path": "LDAP_Global_Catalog", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "57402db2-fa4c-4a67-bdbc-e150d7cb5343" + }, + { + "_create_time": 1724279991099, + "_create_user": "system", + "_last_modified_time": 1724279991099, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP", + "id": "LDAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Client_Access_Servers", + "path": "/infra/services/MS_Exchange_2010_Client_Access_Servers/service-entries/LDAP", + "realization_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28", + "relative_path": "LDAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28" + }, + { + "_create_time": 1724279991176, + "_create_user": "system", + "_last_modified_time": 1724279991176, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "80" + ], + "display_name": "HTTP", + "id": "HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Client_Access_Servers", + "path": "/infra/services/MS_Exchange_2010_Client_Access_Servers/service-entries/HTTP", + "realization_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38" + } + ] + }, + { + "_create_time": 1724279997208, + "_create_user": "system", + "_last_modified_time": 1724279997208, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MS Exchange 2010 Mailbox Servers", + "display_name": "MS Exchange 2010 Mailbox Servers", + "id": "MS_Exchange_2010_Mailbox_Servers", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MS_Exchange_2010_Mailbox_Servers", + "realization_id": "b9972e54-7c41-42ba-b677-13ed27b1414b", + "relative_path": "MS_Exchange_2010_Mailbox_Servers", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "b9972e54-7c41-42ba-b677-13ed27b1414b", + "service_entries": [ + { + "_create_time": 1724279997378, + "_create_user": "system", + "_last_modified_time": 1724279997378, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS", + "id": "KERBEROS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Mailbox_Servers", + "path": "/infra/services/MS_Exchange_2010_Mailbox_Servers/service-entries/KERBEROS", + "realization_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50", + "relative_path": "KERBEROS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50" + }, + { + "_create_time": 1724279997422, + "_create_user": "system", + "_last_modified_time": 1724279997422, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "64327" + ], + "display_name": "MS Customizable", + "id": "MS_Customizable", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Mailbox_Servers", + "path": "/infra/services/MS_Exchange_2010_Mailbox_Servers/service-entries/MS_Customizable", + "realization_id": "9d92dbd6-c720-41fa-bba8-bb84d2c516dd", + "relative_path": "MS_Customizable", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "9d92dbd6-c720-41fa-bba8-bb84d2c516dd" + }, + { + "_create_time": 1724279997597, + "_create_user": "system", + "_last_modified_time": 1724279997597, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP", + "id": "LDAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Mailbox_Servers", + "path": "/infra/services/MS_Exchange_2010_Mailbox_Servers/service-entries/LDAP", + "realization_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28", + "relative_path": "LDAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28" + }, + { + "_create_time": 1724279997509, + "_create_user": "system", + "_last_modified_time": 1724279997509, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "MS_RPC_TCP", + "destination_ports": [ + "135" + ], + "display_name": "MS_RPC_TCP", + "id": "MS_RPC_TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Mailbox_Servers", + "path": "/infra/services/MS_Exchange_2010_Mailbox_Servers/service-entries/MS_RPC_TCP", + "realization_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0", + "relative_path": "MS_RPC_TCP", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0" + }, + { + "_create_time": 1724279997626, + "_create_user": "system", + "_last_modified_time": 1724279997626, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-TCP", + "id": "DNS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Mailbox_Servers", + "path": "/infra/services/MS_Exchange_2010_Mailbox_Servers/service-entries/DNS", + "realization_id": "503ad409-d481-4547-8720-28534c1856b6", + "relative_path": "DNS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "503ad409-d481-4547-8720-28534c1856b6" + }, + { + "_create_time": 1724279997534, + "_create_user": "system", + "_last_modified_time": 1724279997534, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS-UDP", + "id": "KERBEROS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Mailbox_Servers", + "path": "/infra/services/MS_Exchange_2010_Mailbox_Servers/service-entries/KERBEROS-UDP", + "realization_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e", + "relative_path": "KERBEROS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e" + }, + { + "_create_time": 1724279997448, + "_create_user": "system", + "_last_modified_time": 1724279997448, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-UDP", + "id": "DNS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Mailbox_Servers", + "path": "/infra/services/MS_Exchange_2010_Mailbox_Servers/service-entries/DNS-UDP", + "realization_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326", + "relative_path": "DNS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326" + }, + { + "_create_time": 1724279997477, + "_create_user": "system", + "_last_modified_time": 1724279997477, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "808" + ], + "display_name": "MS Replication service", + "id": "MS_Replication_service", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Mailbox_Servers", + "path": "/infra/services/MS_Exchange_2010_Mailbox_Servers/service-entries/MS_Replication_service", + "realization_id": "5fba886d-fe7a-4d86-ad28-48c00ddd894c", + "relative_path": "MS_Replication_service", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5fba886d-fe7a-4d86-ad28-48c00ddd894c" + }, + { + "_create_time": 1724279997394, + "_create_user": "system", + "_last_modified_time": 1724279997394, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3268" + ], + "display_name": "LDAP Global Catalog", + "id": "LDAP_Global_Catalog", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Mailbox_Servers", + "path": "/infra/services/MS_Exchange_2010_Mailbox_Servers/service-entries/LDAP_Global_Catalog", + "realization_id": "57402db2-fa4c-4a67-bdbc-e150d7cb5343", + "relative_path": "LDAP_Global_Catalog", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "57402db2-fa4c-4a67-bdbc-e150d7cb5343" + }, + { + "_create_time": 1724279997613, + "_create_user": "system", + "_last_modified_time": 1724279997613, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP-UDP", + "id": "LDAP-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Mailbox_Servers", + "path": "/infra/services/MS_Exchange_2010_Mailbox_Servers/service-entries/LDAP-UDP", + "realization_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f", + "relative_path": "LDAP-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f" + }, + { + "_create_time": 1724279997298, + "_create_user": "system", + "_last_modified_time": 1724279997298, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5075", + "5076", + "5077" + ], + "display_name": "Office communication server", + "id": "Office_communication_server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Mailbox_Servers", + "path": "/infra/services/MS_Exchange_2010_Mailbox_Servers/service-entries/Office_communication_server", + "realization_id": "230dfa9d-e121-49f9-9c3d-dadddd1b065b", + "relative_path": "Office_communication_server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "230dfa9d-e121-49f9-9c3d-dadddd1b065b" + }, + { + "_create_time": 1724279997546, + "_create_user": "system", + "_last_modified_time": 1724279997546, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "445" + ], + "display_name": "MS-DS-TCP", + "id": "MS-DS-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Mailbox_Servers", + "path": "/infra/services/MS_Exchange_2010_Mailbox_Servers/service-entries/MS-DS-TCP", + "realization_id": "1a734e23-133b-46ba-9428-0980d56583c4", + "relative_path": "MS-DS-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "1a734e23-133b-46ba-9428-0980d56583c4" + } + ] + }, + { + "_create_time": 1724279994518, + "_create_user": "system", + "_last_modified_time": 1724279994518, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MS Exchange 2010 Transport Servers", + "display_name": "MS Exchange 2010 Transport Servers", + "id": "MS_Exchange_2010_Transport_Servers", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MS_Exchange_2010_Transport_Servers", + "realization_id": "61ccaff5-793e-4ed3-9a4b-2adc7f4e932d", + "relative_path": "MS_Exchange_2010_Transport_Servers", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "61ccaff5-793e-4ed3-9a4b-2adc7f4e932d", + "service_entries": [ + { + "_create_time": 1724279994711, + "_create_user": "system", + "_last_modified_time": 1724279994711, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Transport_Servers", + "path": "/infra/services/MS_Exchange_2010_Transport_Servers/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + }, + { + "_create_time": 1724279994785, + "_create_user": "system", + "_last_modified_time": 1724279994785, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3268" + ], + "display_name": "LDAP Global Catalog", + "id": "LDAP_Global_Catalog", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Transport_Servers", + "path": "/infra/services/MS_Exchange_2010_Transport_Servers/service-entries/LDAP_Global_Catalog", + "realization_id": "57402db2-fa4c-4a67-bdbc-e150d7cb5343", + "relative_path": "LDAP_Global_Catalog", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "57402db2-fa4c-4a67-bdbc-e150d7cb5343" + }, + { + "_create_time": 1724279994533, + "_create_user": "system", + "_last_modified_time": 1724279994533, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-UDP", + "id": "DNS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Transport_Servers", + "path": "/infra/services/MS_Exchange_2010_Transport_Servers/service-entries/DNS-UDP", + "realization_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326", + "relative_path": "DNS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326" + }, + { + "_create_time": 1724279994597, + "_create_user": "system", + "_last_modified_time": 1724279994597, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "25" + ], + "display_name": "SMTP", + "id": "SMTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Transport_Servers", + "path": "/infra/services/MS_Exchange_2010_Transport_Servers/service-entries/SMTP", + "realization_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219", + "relative_path": "SMTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219" + }, + { + "_create_time": 1724279994617, + "_create_user": "system", + "_last_modified_time": 1724279994617, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS-UDP", + "id": "KERBEROS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Transport_Servers", + "path": "/infra/services/MS_Exchange_2010_Transport_Servers/service-entries/KERBEROS-UDP", + "realization_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e", + "relative_path": "KERBEROS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e" + }, + { + "_create_time": 1724279994891, + "_create_user": "system", + "_last_modified_time": 1724279994891, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "MS_RPC_TCP", + "destination_ports": [ + "135" + ], + "display_name": "MS_RPC_TCP", + "id": "MS_RPC_TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Transport_Servers", + "path": "/infra/services/MS_Exchange_2010_Transport_Servers/service-entries/MS_RPC_TCP", + "realization_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0", + "relative_path": "MS_RPC_TCP", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0" + }, + { + "_create_time": 1724279994861, + "_create_user": "system", + "_last_modified_time": 1724279994861, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS", + "id": "KERBEROS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Transport_Servers", + "path": "/infra/services/MS_Exchange_2010_Transport_Servers/service-entries/KERBEROS", + "realization_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50", + "relative_path": "KERBEROS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50" + }, + { + "_create_time": 1724279994846, + "_create_user": "system", + "_last_modified_time": 1724279994846, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "587" + ], + "display_name": "SMTP_TLS", + "id": "SMTP_TLS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Transport_Servers", + "path": "/infra/services/MS_Exchange_2010_Transport_Servers/service-entries/SMTP_TLS", + "realization_id": "0c62c54f-dc12-4549-bc5a-ba29eaedcbe7", + "relative_path": "SMTP_TLS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "0c62c54f-dc12-4549-bc5a-ba29eaedcbe7" + }, + { + "_create_time": 1724279994644, + "_create_user": "system", + "_last_modified_time": 1724279994644, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP", + "id": "LDAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Transport_Servers", + "path": "/infra/services/MS_Exchange_2010_Transport_Servers/service-entries/LDAP", + "realization_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28", + "relative_path": "LDAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28" + }, + { + "_create_time": 1724279994556, + "_create_user": "system", + "_last_modified_time": 1724279994556, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50636" + ], + "display_name": "EdgeSync service", + "id": "EdgeSync_service", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Transport_Servers", + "path": "/infra/services/MS_Exchange_2010_Transport_Servers/service-entries/EdgeSync_service", + "realization_id": "f92e96e8-f65b-4598-97ff-bab36f182184", + "relative_path": "EdgeSync_service", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f92e96e8-f65b-4598-97ff-bab36f182184" + }, + { + "_create_time": 1724279994679, + "_create_user": "system", + "_last_modified_time": 1724279994679, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP-UDP", + "id": "LDAP-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Transport_Servers", + "path": "/infra/services/MS_Exchange_2010_Transport_Servers/service-entries/LDAP-UDP", + "realization_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f", + "relative_path": "LDAP-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f" + }, + { + "_create_time": 1724279994762, + "_create_user": "system", + "_last_modified_time": 1724279994762, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-TCP", + "id": "DNS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Transport_Servers", + "path": "/infra/services/MS_Exchange_2010_Transport_Servers/service-entries/DNS", + "realization_id": "503ad409-d481-4547-8720-28534c1856b6", + "relative_path": "DNS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "503ad409-d481-4547-8720-28534c1856b6" + } + ] + }, + { + "_create_time": 1724279999119, + "_create_user": "system", + "_last_modified_time": 1724279999119, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MS Exchange 2010 Unified Messaging Server", + "display_name": "MS Exchange 2010 Unified Messaging Server", + "id": "MS_Exchange_2010_Unified_Messaging_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server", + "realization_id": "e98dc5e4-66eb-48d4-a7d2-bfd3af07827e", + "relative_path": "MS_Exchange_2010_Unified_Messaging_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "e98dc5e4-66eb-48d4-a7d2-bfd3af07827e", + "service_entries": [ + { + "_create_time": 1724279999166, + "_create_user": "system", + "_last_modified_time": 1724279999166, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "25" + ], + "display_name": "SMTP", + "id": "SMTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server", + "path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server/service-entries/SMTP", + "realization_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219", + "relative_path": "SMTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219" + }, + { + "_create_time": 1724279999439, + "_create_user": "system", + "_last_modified_time": 1724279999439, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS-UDP", + "id": "KERBEROS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server", + "path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server/service-entries/KERBEROS-UDP", + "realization_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e", + "relative_path": "KERBEROS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e" + }, + { + "_create_time": 1724279999155, + "_create_user": "system", + "_last_modified_time": 1724279999155, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "MS_RPC_TCP", + "destination_ports": [ + "135" + ], + "display_name": "MS_RPC_TCP", + "id": "MS_RPC_TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server", + "path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server/service-entries/MS_RPC_TCP", + "realization_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0", + "relative_path": "MS_RPC_TCP", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0" + }, + { + "_create_time": 1724279999207, + "_create_user": "system", + "_last_modified_time": 1724279999207, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5060", + "5061", + "5065", + "5066", + "5067", + "5068" + ], + "display_name": "MS Unified Messaging server-Phone", + "id": "MS_Unified_Messaging_server-Phone", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server", + "path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server/service-entries/MS_Unified_Messaging_server-Phone", + "realization_id": "c46e7621-6cbd-44b7-9bd9-5b4ba78760a5", + "relative_path": "MS_Unified_Messaging_server-Phone", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c46e7621-6cbd-44b7-9bd9-5b4ba78760a5" + }, + { + "_create_time": 1724279999195, + "_create_user": "system", + "_last_modified_time": 1724279999195, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS", + "id": "KERBEROS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server", + "path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server/service-entries/KERBEROS", + "realization_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50", + "relative_path": "KERBEROS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50" + }, + { + "_create_time": 1724279999371, + "_create_user": "system", + "_last_modified_time": 1724279999371, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP-UDP", + "id": "LDAP-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server", + "path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server/service-entries/LDAP-UDP", + "realization_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f", + "relative_path": "LDAP-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f" + }, + { + "_create_time": 1724279999347, + "_create_user": "system", + "_last_modified_time": 1724279999347, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "80" + ], + "display_name": "HTTP", + "id": "HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server", + "path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server/service-entries/HTTP", + "realization_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38" + }, + { + "_create_time": 1724279999134, + "_create_user": "system", + "_last_modified_time": 1724279999134, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-UDP", + "id": "DNS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server", + "path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server/service-entries/DNS-UDP", + "realization_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326", + "relative_path": "DNS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326" + }, + { + "_create_time": 1724279999336, + "_create_user": "system", + "_last_modified_time": 1724279999336, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server", + "path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + }, + { + "_create_time": 1724279999225, + "_create_user": "system", + "_last_modified_time": 1724279999225, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5075", + "5076", + "5077" + ], + "display_name": "MS Unified Messaging server - Client Access", + "id": "MS_Unified_Messaging_server_-_Client_Access", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server", + "path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server/service-entries/MS_Unified_Messaging_server_-_Client_Access", + "realization_id": "06efab54-a827-4d5b-a3dc-f50e76aef7a1", + "relative_path": "MS_Unified_Messaging_server_-_Client_Access", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "06efab54-a827-4d5b-a3dc-f50e76aef7a1" + }, + { + "_create_time": 1724279999387, + "_create_user": "system", + "_last_modified_time": 1724279999387, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP", + "id": "LDAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server", + "path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server/service-entries/LDAP", + "realization_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28", + "relative_path": "LDAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28" + }, + { + "_create_time": 1724279999253, + "_create_user": "system", + "_last_modified_time": 1724279999253, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3268" + ], + "display_name": "LDAP Global Catalog", + "id": "LDAP_Global_Catalog", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server", + "path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server/service-entries/LDAP_Global_Catalog", + "realization_id": "57402db2-fa4c-4a67-bdbc-e150d7cb5343", + "relative_path": "LDAP_Global_Catalog", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "57402db2-fa4c-4a67-bdbc-e150d7cb5343" + }, + { + "_create_time": 1724279999300, + "_create_user": "system", + "_last_modified_time": 1724279999300, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-TCP", + "id": "DNS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server", + "path": "/infra/services/MS_Exchange_2010_Unified_Messaging_Server/service-entries/DNS", + "realization_id": "503ad409-d481-4547-8720-28534c1856b6", + "relative_path": "DNS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "503ad409-d481-4547-8720-28534c1856b6" + } + ] + }, + { + "_create_time": 1724279989114, + "_create_user": "system", + "_last_modified_time": 1724279989114, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MS Replication service", + "display_name": "MS Replication service", + "id": "MS_Replication_service", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MS_Replication_service", + "realization_id": "766018db-af32-4302-b291-d45501d11996", + "relative_path": "MS_Replication_service", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "766018db-af32-4302-b291-d45501d11996", + "service_entries": [ + { + "_create_time": 1724279989114, + "_create_user": "system", + "_last_modified_time": 1724279989114, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "808" + ], + "display_name": "MS Replication service", + "id": "MS_Replication_service", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Replication_service", + "path": "/infra/services/MS_Replication_service/service-entries/MS_Replication_service", + "realization_id": "5fba886d-fe7a-4d86-ad28-48c00ddd894c", + "relative_path": "MS_Replication_service", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5fba886d-fe7a-4d86-ad28-48c00ddd894c" + } + ] + }, + { + "_create_time": 1724279988932, + "_create_user": "system", + "_last_modified_time": 1724279988932, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MS Unified Messaging server", + "display_name": "MS Unified Messaging server", + "id": "MS_Unified_Messaging_server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MS_Unified_Messaging_server", + "realization_id": "7cde7041-55e7-4b43-8e54-984ad6ade98b", + "relative_path": "MS_Unified_Messaging_server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "7cde7041-55e7-4b43-8e54-984ad6ade98b", + "service_entries": [ + { + "_create_time": 1724279988932, + "_create_user": "system", + "_last_modified_time": 1724279988932, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5060", + "5061", + "5062" + ], + "display_name": "MS Unified Messaging server", + "id": "MS_Unified_Messaging_server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Unified_Messaging_server", + "path": "/infra/services/MS_Unified_Messaging_server/service-entries/MS_Unified_Messaging_server", + "realization_id": "84fc17dc-70ff-406a-8d22-224cf6ec95e8", + "relative_path": "MS_Unified_Messaging_server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "84fc17dc-70ff-406a-8d22-224cf6ec95e8" + } + ] + }, + { + "_create_time": 1724279989008, + "_create_user": "system", + "_last_modified_time": 1724279989008, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MS Unified Messaging server - Client Access", + "display_name": "MS Unified Messaging server - Client Access", + "id": "MS_Unified_Messaging_server_-_Client_Access", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MS_Unified_Messaging_server_-_Client_Access", + "realization_id": "ddd89da9-5d9a-41d6-b374-4a4500f3fdf2", + "relative_path": "MS_Unified_Messaging_server_-_Client_Access", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "ddd89da9-5d9a-41d6-b374-4a4500f3fdf2", + "service_entries": [ + { + "_create_time": 1724279989009, + "_create_user": "system", + "_last_modified_time": 1724279989009, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5075", + "5076", + "5077" + ], + "display_name": "MS Unified Messaging server - Client Access", + "id": "MS_Unified_Messaging_server_-_Client_Access", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Unified_Messaging_server_-_Client_Access", + "path": "/infra/services/MS_Unified_Messaging_server_-_Client_Access/service-entries/MS_Unified_Messaging_server_-_Client_Access", + "realization_id": "06efab54-a827-4d5b-a3dc-f50e76aef7a1", + "relative_path": "MS_Unified_Messaging_server_-_Client_Access", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "06efab54-a827-4d5b-a3dc-f50e76aef7a1" + } + ] + }, + { + "_create_time": 1724279988985, + "_create_user": "system", + "_last_modified_time": 1724279988985, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MS Unified Messaging server-Phone", + "display_name": "MS Unified Messaging server-Phone", + "id": "MS_Unified_Messaging_server-Phone", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MS_Unified_Messaging_server-Phone", + "realization_id": "9c183737-be42-4603-bfca-3c67645d62b2", + "relative_path": "MS_Unified_Messaging_server-Phone", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "9c183737-be42-4603-bfca-3c67645d62b2", + "service_entries": [ + { + "_create_time": 1724279988985, + "_create_user": "system", + "_last_modified_time": 1724279988985, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5060", + "5061", + "5065", + "5066", + "5067", + "5068" + ], + "display_name": "MS Unified Messaging server-Phone", + "id": "MS_Unified_Messaging_server-Phone", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_Unified_Messaging_server-Phone", + "path": "/infra/services/MS_Unified_Messaging_server-Phone/service-entries/MS_Unified_Messaging_server-Phone", + "realization_id": "c46e7621-6cbd-44b7-9bd9-5b4ba78760a5", + "relative_path": "MS_Unified_Messaging_server-Phone", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c46e7621-6cbd-44b7-9bd9-5b4ba78760a5" + } + ] + }, + { + "_create_time": 1724279988936, + "_create_user": "system", + "_last_modified_time": 1724279988936, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MS-DS", + "display_name": "MS-DS", + "id": "MS-DS", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MS-DS", + "realization_id": "8c7beca1-0d7f-487c-a0b7-df4a79d21033", + "relative_path": "MS-DS", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "8c7beca1-0d7f-487c-a0b7-df4a79d21033", + "service_entries": [ + { + "_create_time": 1724279988936, + "_create_user": "system", + "_last_modified_time": 1724279988936, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "445" + ], + "display_name": "MS-DS", + "id": "MS-DS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS-DS", + "path": "/infra/services/MS-DS/service-entries/MS-DS", + "realization_id": "44716ec2-8ea1-465c-93a1-a773ce5ae286", + "relative_path": "MS-DS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "44716ec2-8ea1-465c-93a1-a773ce5ae286" + } + ] + }, + { + "_create_time": 1724279988915, + "_create_user": "system", + "_last_modified_time": 1724279988915, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MS-DS-TCP", + "display_name": "MS-DS-TCP", + "id": "MS-DS-TCP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MS-DS-TCP", + "realization_id": "e981b524-f0a2-4727-a172-c3d4099c2772", + "relative_path": "MS-DS-TCP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "e981b524-f0a2-4727-a172-c3d4099c2772", + "service_entries": [ + { + "_create_time": 1724279988915, + "_create_user": "system", + "_last_modified_time": 1724279988915, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "445" + ], + "display_name": "MS-DS-TCP", + "id": "MS-DS-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS-DS-TCP", + "path": "/infra/services/MS-DS-TCP/service-entries/MS-DS-TCP", + "realization_id": "1a734e23-133b-46ba-9428-0980d56583c4", + "relative_path": "MS-DS-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "1a734e23-133b-46ba-9428-0980d56583c4" + } + ] + }, + { + "_create_time": 1724279988970, + "_create_user": "system", + "_last_modified_time": 1724279988970, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MS-DS-UDP", + "display_name": "MS-DS-UDP", + "id": "MS-DS-UDP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MS-DS-UDP", + "realization_id": "c8ff2fc0-c34f-4e22-9479-69ff1afb9f35", + "relative_path": "MS-DS-UDP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "c8ff2fc0-c34f-4e22-9479-69ff1afb9f35", + "service_entries": [ + { + "_create_time": 1724279988970, + "_create_user": "system", + "_last_modified_time": 1724279988970, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "445" + ], + "display_name": "MS-DS-UDP", + "id": "MS-DS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS-DS-UDP", + "path": "/infra/services/MS-DS-UDP/service-entries/MS-DS-UDP", + "realization_id": "b4f2be24-9b7a-4d80-a1d7-046e0f115cf2", + "relative_path": "MS-DS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b4f2be24-9b7a-4d80-a1d7-046e0f115cf2" + } + ] + }, + { + "_create_time": 1724279989191, + "_create_user": "system", + "_last_modified_time": 1724279989191, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MS-SQL-M", + "display_name": "MS-SQL-M", + "id": "MS-SQL-M", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MS-SQL-M", + "realization_id": "2a739a37-27c0-4109-8d75-d92b0361e14a", + "relative_path": "MS-SQL-M", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "2a739a37-27c0-4109-8d75-d92b0361e14a", + "service_entries": [ + { + "_create_time": 1724279989191, + "_create_user": "system", + "_last_modified_time": 1724279989191, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1434" + ], + "display_name": "MS-SQL-M", + "id": "MS-SQL-M", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS-SQL-M", + "path": "/infra/services/MS-SQL-M/service-entries/MS-SQL-M", + "realization_id": "c41a0168-cf24-451d-9089-a8cc2cd1bbb0", + "relative_path": "MS-SQL-M", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c41a0168-cf24-451d-9089-a8cc2cd1bbb0" + } + ] + }, + { + "_create_time": 1724279988958, + "_create_user": "system", + "_last_modified_time": 1724279988958, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MS-SQL-M-TCP", + "display_name": "MS-SQL-M-TCP", + "id": "MS-SQL-M-TCP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MS-SQL-M-TCP", + "realization_id": "10b5856f-ebd4-4931-baca-d495e6908aca", + "relative_path": "MS-SQL-M-TCP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "10b5856f-ebd4-4931-baca-d495e6908aca", + "service_entries": [ + { + "_create_time": 1724279988958, + "_create_user": "system", + "_last_modified_time": 1724279988958, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1434" + ], + "display_name": "MS-SQL-M-TCP", + "id": "MS-SQL-M-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS-SQL-M-TCP", + "path": "/infra/services/MS-SQL-M-TCP/service-entries/MS-SQL-M-TCP", + "realization_id": "29e141d6-698d-49cd-b879-c7b205524aaa", + "relative_path": "MS-SQL-M-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "29e141d6-698d-49cd-b879-c7b205524aaa" + } + ] + }, + { + "_create_time": 1724279989193, + "_create_user": "system", + "_last_modified_time": 1724279989193, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MS-SQL-S", + "display_name": "MS-SQL-S", + "id": "MS-SQL-S", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MS-SQL-S", + "realization_id": "af554b4a-321a-4aff-a788-275f6c6ffeac", + "relative_path": "MS-SQL-S", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "af554b4a-321a-4aff-a788-275f6c6ffeac", + "service_entries": [ + { + "_create_time": 1724279989193, + "_create_user": "system", + "_last_modified_time": 1724279989193, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1433" + ], + "display_name": "MS-SQL-S", + "id": "MS-SQL-S", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS-SQL-S", + "path": "/infra/services/MS-SQL-S/service-entries/MS-SQL-S", + "realization_id": "a7240508-b3a5-4123-b5b7-37f68e9a924f", + "relative_path": "MS-SQL-S", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a7240508-b3a5-4123-b5b7-37f68e9a924f" + } + ] + }, + { + "_create_time": 1724279988866, + "_create_user": "system", + "_last_modified_time": 1724279988866, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MSN (TCP)", + "display_name": "MSN (TCP)", + "id": "MSN_(TCP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MSN_(TCP)", + "realization_id": "9607ea6c-81d2-4150-81f0-e847156721b0", + "relative_path": "MSN_(TCP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "9607ea6c-81d2-4150-81f0-e847156721b0", + "service_entries": [ + { + "_create_time": 1724279988866, + "_create_user": "system", + "_last_modified_time": 1724279988866, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1863" + ], + "display_name": "MSN (TCP)", + "id": "MSN_(TCP)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MSN_(TCP)", + "path": "/infra/services/MSN_(TCP)/service-entries/MSN_(TCP)", + "realization_id": "17e3fed3-e9dc-45d2-8988-50ef01401c88", + "relative_path": "MSN_(TCP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "17e3fed3-e9dc-45d2-8988-50ef01401c88" + } + ] + }, + { + "_create_time": 1724279988847, + "_create_user": "system", + "_last_modified_time": 1724279988847, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MSN (UDP)", + "display_name": "MSN (UDP)", + "id": "MSN_(UDP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MSN_(UDP)", + "realization_id": "12f04a45-fae8-4ea2-a8d9-f25b2f0e2747", + "relative_path": "MSN_(UDP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "12f04a45-fae8-4ea2-a8d9-f25b2f0e2747", + "service_entries": [ + { + "_create_time": 1724279988847, + "_create_user": "system", + "_last_modified_time": 1724279988847, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1863" + ], + "display_name": "MSN (UDP)", + "id": "MSN_(UDP)", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MSN_(UDP)", + "path": "/infra/services/MSN_(UDP)/service-entries/MSN_(UDP)", + "realization_id": "dc6c5307-9d93-4633-9655-cdcabc9fd97c", + "relative_path": "MSN_(UDP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "dc6c5307-9d93-4633-9655-cdcabc9fd97c" + } + ] + }, + { + "_create_time": 1724279995794, + "_create_user": "system", + "_last_modified_time": 1724279995794, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MSSQL Integration Services", + "display_name": "MSSQL Integration Services", + "id": "MSSQL_Integration_Services", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MSSQL_Integration_Services", + "realization_id": "aebc0612-38b1-45d4-bf29-3850b719f819", + "relative_path": "MSSQL_Integration_Services", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "aebc0612-38b1-45d4-bf29-3850b719f819", + "service_entries": [ + { + "_create_time": 1724279995804, + "_create_user": "system", + "_last_modified_time": 1724279995804, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "MS_RPC_TCP", + "destination_ports": [ + "135" + ], + "display_name": "MS_RPC_TCP", + "id": "MS_RPC_TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MSSQL_Integration_Services", + "path": "/infra/services/MSSQL_Integration_Services/service-entries/MS_RPC_TCP", + "realization_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0", + "relative_path": "MS_RPC_TCP", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0" + } + ] + }, + { + "_create_time": 1724279990999, + "_create_user": "system", + "_last_modified_time": 1724279990999, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MSSQL Reporting Services", + "display_name": "MSSQL Reporting Services", + "id": "MSSQL_Reporting_Services", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MSSQL_Reporting_Services", + "realization_id": "31b7bbdc-be46-48a8-98c2-d183cbed4108", + "relative_path": "MSSQL_Reporting_Services", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "31b7bbdc-be46-48a8-98c2-d183cbed4108", + "service_entries": [ + { + "_create_time": 1724279991009, + "_create_user": "system", + "_last_modified_time": 1724279991009, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "80" + ], + "display_name": "HTTP", + "id": "HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MSSQL_Reporting_Services", + "path": "/infra/services/MSSQL_Reporting_Services/service-entries/HTTP", + "realization_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38" + }, + { + "_create_time": 1724279991015, + "_create_user": "system", + "_last_modified_time": 1724279991015, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MSSQL_Reporting_Services", + "path": "/infra/services/MSSQL_Reporting_Services/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + } + ] + }, + { + "_create_time": 1724279998829, + "_create_user": "system", + "_last_modified_time": 1724279998829, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MSSQL Server Analysis Services", + "display_name": "MSSQL Server Analysis Services", + "id": "MSSQL_Server_Analysis_Services", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MSSQL_Server_Analysis_Services", + "realization_id": "d89cbb30-7e09-45d6-a2b3-e9c55aaf7b9d", + "relative_path": "MSSQL_Server_Analysis_Services", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "d89cbb30-7e09-45d6-a2b3-e9c55aaf7b9d", + "service_entries": [ + { + "_create_time": 1724279998875, + "_create_user": "system", + "_last_modified_time": 1724279998875, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2382" + ], + "display_name": "SQL Server Browser service", + "id": "SQL_Server_Browser_service", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MSSQL_Server_Analysis_Services", + "path": "/infra/services/MSSQL_Server_Analysis_Services/service-entries/SQL_Server_Browser_service", + "realization_id": "79198f55-115c-40e6-ba45-95f7679539fc", + "relative_path": "SQL_Server_Browser_service", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "79198f55-115c-40e6-ba45-95f7679539fc" + }, + { + "_create_time": 1724279998882, + "_create_user": "system", + "_last_modified_time": 1724279998882, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2383" + ], + "display_name": "SQL Analysis service", + "id": "SQL_Analysis_service", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MSSQL_Server_Analysis_Services", + "path": "/infra/services/MSSQL_Server_Analysis_Services/service-entries/SQL_Analysis_service", + "realization_id": "a584a90d-0c90-4ebb-b1be-770c64dcb208", + "relative_path": "SQL_Analysis_service", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a584a90d-0c90-4ebb-b1be-770c64dcb208" + }, + { + "_create_time": 1724279998847, + "_create_user": "system", + "_last_modified_time": 1724279998847, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MSSQL_Server_Analysis_Services", + "path": "/infra/services/MSSQL_Server_Analysis_Services/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + }, + { + "_create_time": 1724279998892, + "_create_user": "system", + "_last_modified_time": 1724279998892, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "80" + ], + "display_name": "HTTP", + "id": "HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MSSQL_Server_Analysis_Services", + "path": "/infra/services/MSSQL_Server_Analysis_Services/service-entries/HTTP", + "realization_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38" + } + ] + }, + { + "_create_time": 1724279994313, + "_create_user": "system", + "_last_modified_time": 1724279994313, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MSSQL Server Database Engine", + "display_name": "MSSQL Server Database Engine", + "id": "MSSQL_Server_Database_Engine", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MSSQL_Server_Database_Engine", + "realization_id": "5a6d380a-6d28-4e3f-b705-489f463ae6ad", + "relative_path": "MSSQL_Server_Database_Engine", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "5a6d380a-6d28-4e3f-b705-489f463ae6ad", + "service_entries": [ + { + "_create_time": 1724279994392, + "_create_user": "system", + "_last_modified_time": 1724279994392, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "MS_RPC_TCP", + "destination_ports": [ + "135" + ], + "display_name": "MS_RPC_TCP", + "id": "MS_RPC_TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MSSQL_Server_Database_Engine", + "path": "/infra/services/MSSQL_Server_Database_Engine/service-entries/MS_RPC_TCP", + "realization_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0", + "relative_path": "MS_RPC_TCP", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0" + }, + { + "_create_time": 1724279994441, + "_create_user": "system", + "_last_modified_time": 1724279994441, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1433" + ], + "display_name": "MS-SQL-S", + "id": "MS-SQL-S", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MSSQL_Server_Database_Engine", + "path": "/infra/services/MSSQL_Server_Database_Engine/service-entries/MS-SQL-S", + "realization_id": "a7240508-b3a5-4123-b5b7-37f68e9a924f", + "relative_path": "MS-SQL-S", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a7240508-b3a5-4123-b5b7-37f68e9a924f" + }, + { + "_create_time": 1724279994411, + "_create_user": "system", + "_last_modified_time": 1724279994411, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1434" + ], + "display_name": "MS-SQL-M-TCP", + "id": "MS-SQL-M-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MSSQL_Server_Database_Engine", + "path": "/infra/services/MSSQL_Server_Database_Engine/service-entries/MS-SQL-M-TCP", + "realization_id": "29e141d6-698d-49cd-b879-c7b205524aaa", + "relative_path": "MS-SQL-M-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "29e141d6-698d-49cd-b879-c7b205524aaa" + }, + { + "_create_time": 1724279994380, + "_create_user": "system", + "_last_modified_time": 1724279994380, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "80" + ], + "display_name": "HTTP", + "id": "HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MSSQL_Server_Database_Engine", + "path": "/infra/services/MSSQL_Server_Database_Engine/service-entries/HTTP", + "realization_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38" + }, + { + "_create_time": 1724279994482, + "_create_user": "system", + "_last_modified_time": 1724279994482, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1434" + ], + "display_name": "MS-SQL-M", + "id": "MS-SQL-M", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MSSQL_Server_Database_Engine", + "path": "/infra/services/MSSQL_Server_Database_Engine/service-entries/MS-SQL-M", + "realization_id": "c41a0168-cf24-451d-9089-a8cc2cd1bbb0", + "relative_path": "MS-SQL-M", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c41a0168-cf24-451d-9089-a8cc2cd1bbb0" + }, + { + "_create_time": 1724279994334, + "_create_user": "system", + "_last_modified_time": 1724279994334, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MSSQL_Server_Database_Engine", + "path": "/infra/services/MSSQL_Server_Database_Engine/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + } + ] + }, + { + "_create_time": 1724279988922, + "_create_user": "system", + "_last_modified_time": 1724279988922, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MS_RPC_TCP", + "display_name": "MS_RPC_TCP", + "id": "MS_RPC_TCP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MS_RPC_TCP", + "realization_id": "0d93cff6-0280-4d1f-9393-8751bbde1efd", + "relative_path": "MS_RPC_TCP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "0d93cff6-0280-4d1f-9393-8751bbde1efd", + "service_entries": [ + { + "_create_time": 1724279988923, + "_create_user": "system", + "_last_modified_time": 1724279988923, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "MS_RPC_TCP", + "destination_ports": [ + "135" + ], + "display_name": "MS_RPC_TCP", + "id": "MS_RPC_TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_RPC_TCP", + "path": "/infra/services/MS_RPC_TCP/service-entries/MS_RPC_TCP", + "realization_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0", + "relative_path": "MS_RPC_TCP", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0" + } + ] + }, + { + "_create_time": 1724279988940, + "_create_user": "system", + "_last_modified_time": 1724279988940, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MS_RPC_UDP", + "display_name": "MS_RPC_UDP", + "id": "MS_RPC_UDP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MS_RPC_UDP", + "realization_id": "8edf23e8-2513-4240-b959-9b49479e12b2", + "relative_path": "MS_RPC_UDP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "8edf23e8-2513-4240-b959-9b49479e12b2", + "service_entries": [ + { + "_create_time": 1724279988941, + "_create_user": "system", + "_last_modified_time": 1724279988941, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "MS_RPC_UDP", + "destination_ports": [ + "135" + ], + "display_name": "MS_RPC_UDP", + "id": "MS_RPC_UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MS_RPC_UDP", + "path": "/infra/services/MS_RPC_UDP/service-entries/MS_RPC_UDP", + "realization_id": "8b90ec16-ad7a-4dd1-b792-13e39bff8389", + "relative_path": "MS_RPC_UDP", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "8b90ec16-ad7a-4dd1-b792-13e39bff8389" + } + ] + }, + { + "_create_time": 1724279989846, + "_create_user": "system", + "_last_modified_time": 1724279989846, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Microsoft Active Directory V1", + "display_name": "Microsoft Active Directory V1", + "id": "Microsoft_Active_Directory_V1", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Microsoft_Active_Directory_V1", + "realization_id": "0748a50d-0cb3-4af0-8763-ec4b8ef5c8b1", + "relative_path": "Microsoft_Active_Directory_V1", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "0748a50d-0cb3-4af0-8763-ec4b8ef5c8b1", + "service_entries": [ + { + "_create_time": 1724279990109, + "_create_user": "system", + "_last_modified_time": 1724279990109, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "138" + ], + "display_name": "NBDG-Broadcast-V1", + "id": "NBDG-Broadcast-V1", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/NBDG-Broadcast-V1", + "realization_id": "15cbcee1-8351-44bc-a957-b600c6bc3f71", + "relative_path": "NBDG-Broadcast-V1", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "15cbcee1-8351-44bc-a957-b600c6bc3f71" + }, + { + "_create_time": 1724279989964, + "_create_user": "system", + "_last_modified_time": 1724279989964, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP-UDP", + "id": "LDAP-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/LDAP-UDP", + "realization_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f", + "relative_path": "LDAP-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f" + }, + { + "_create_time": 1724279990298, + "_create_user": "system", + "_last_modified_time": 1724279990298, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "49152-65535" + ], + "display_name": "Win 2008 - RPC, DCOM, EPM, DRSUAPI, NetLogonR, SamR, FRS", + "id": "Win_2008_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/Win_2008_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS", + "realization_id": "51266106-cb0e-4175-be87-8d3e8762d8ef", + "relative_path": "Win_2008_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "51266106-cb0e-4175-be87-8d3e8762d8ef" + }, + { + "_create_time": 1724279989863, + "_create_user": "system", + "_last_modified_time": 1724279989863, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1025-65535" + ], + "display_name": "Win - RPC, DCOM, EPM, DRSUAPI, NetLogonR, SamR, FRS - UDP", + "id": "Win_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS_-_UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/Win_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS_-_UDP", + "realization_id": "53000de5-3b9e-4d3f-bf7c-57f4e323e055", + "relative_path": "Win_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS_-_UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "53000de5-3b9e-4d3f-bf7c-57f4e323e055" + }, + { + "_create_time": 1724279990015, + "_create_user": "system", + "_last_modified_time": 1724279990015, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3269" + ], + "display_name": "Windows-Global-Catalog-over-SSL", + "id": "Windows-Global-Catalog-over-SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/Windows-Global-Catalog-over-SSL", + "realization_id": "40224812-60f5-489e-8d37-adacfca6d520", + "relative_path": "Windows-Global-Catalog-over-SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "40224812-60f5-489e-8d37-adacfca6d520" + }, + { + "_create_time": 1724279990004, + "_create_user": "system", + "_last_modified_time": 1724279990004, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-TCP", + "id": "DNS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/DNS", + "realization_id": "503ad409-d481-4547-8720-28534c1856b6", + "relative_path": "DNS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "503ad409-d481-4547-8720-28534c1856b6" + }, + { + "_create_time": 1724279990029, + "_create_user": "system", + "_last_modified_time": 1724279990029, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "464" + ], + "display_name": "Active Directory Server", + "id": "Active_Directory_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/Active_Directory_Server", + "realization_id": "0e7688e1-dd3a-4ea7-97be-e5de8e794072", + "relative_path": "Active_Directory_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "0e7688e1-dd3a-4ea7-97be-e5de8e794072" + }, + { + "_create_time": 1724279990187, + "_create_user": "system", + "_last_modified_time": 1724279990187, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9389" + ], + "display_name": "SOAP", + "id": "SOAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/SOAP", + "realization_id": "45eb09dd-ca7a-4b92-b76b-4262ba985d35", + "relative_path": "SOAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "45eb09dd-ca7a-4b92-b76b-4262ba985d35" + }, + { + "_create_time": 1724279990065, + "_create_user": "system", + "_last_modified_time": 1724279990065, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "464" + ], + "display_name": "Active Directory Server UDP", + "id": "Active_Directory_Server_UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/Active_Directory_Server_UDP", + "realization_id": "b228589e-47d3-487e-a2a3-1404a1f4e7f0", + "relative_path": "Active_Directory_Server_UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b228589e-47d3-487e-a2a3-1404a1f4e7f0" + }, + { + "_create_time": 1724279989974, + "_create_user": "system", + "_last_modified_time": 1724279989974, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "445" + ], + "display_name": "MS-DS-UDP", + "id": "MS-DS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/MS-DS-UDP", + "realization_id": "b4f2be24-9b7a-4d80-a1d7-046e0f115cf2", + "relative_path": "MS-DS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b4f2be24-9b7a-4d80-a1d7-046e0f115cf2" + }, + { + "_create_time": 1724279989923, + "_create_user": "system", + "_last_modified_time": 1724279989923, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "123" + ], + "display_name": "NTP Time Server", + "id": "NTP_Time_Server", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/NTP_Time_Server", + "realization_id": "d4d34e53-aa8e-4439-b582-42b6de080a9d", + "relative_path": "NTP_Time_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "d4d34e53-aa8e-4439-b582-42b6de080a9d" + }, + { + "_create_time": 1724279989879, + "_create_user": "system", + "_last_modified_time": 1724279989879, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS", + "id": "KERBEROS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/KERBEROS", + "realization_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50", + "relative_path": "KERBEROS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50" + }, + { + "_create_time": 1724279990042, + "_create_user": "system", + "_last_modified_time": 1724279990042, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3268" + ], + "display_name": "Windows-Global-Catalog", + "id": "Windows-Global-Catalog", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/Windows-Global-Catalog", + "realization_id": "a61d55a8-a223-45da-b5b7-d951d84f562f", + "relative_path": "Windows-Global-Catalog", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a61d55a8-a223-45da-b5b7-d951d84f562f" + }, + { + "_create_time": 1724279989904, + "_create_user": "system", + "_last_modified_time": 1724279989904, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "25" + ], + "display_name": "SMTP", + "id": "SMTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/SMTP", + "realization_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219", + "relative_path": "SMTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219" + }, + { + "_create_time": 1724279989945, + "_create_user": "system", + "_last_modified_time": 1724279989945, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "MS_RPC_TCP", + "destination_ports": [ + "135" + ], + "display_name": "MS_RPC_TCP", + "id": "MS_RPC_TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/MS_RPC_TCP", + "realization_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0", + "relative_path": "MS_RPC_TCP", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0" + }, + { + "_create_time": 1724279989853, + "_create_user": "system", + "_last_modified_time": 1724279989853, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1025-65535" + ], + "display_name": "Win - RPC, DCOM, EPM, DRSUAPI, NetLogonR, SamR, FRS - TCP", + "id": "Win_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS_-_TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/Win_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS_-_TCP", + "realization_id": "8d3551e5-90b3-4d5f-92dd-762cb91947be", + "relative_path": "Win_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS_-_TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8d3551e5-90b3-4d5f-92dd-762cb91947be" + }, + { + "_create_time": 1724279989995, + "_create_user": "system", + "_last_modified_time": 1724279989995, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "636" + ], + "display_name": "LDAP-over-SSL", + "id": "LDAP-over-SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/LDAP-over-SSL", + "realization_id": "1c5f31ab-1398-44cc-84de-2e0891d813b3", + "relative_path": "LDAP-over-SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "1c5f31ab-1398-44cc-84de-2e0891d813b3" + }, + { + "_create_time": 1724279990091, + "_create_user": "system", + "_last_modified_time": 1724279990091, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "42" + ], + "display_name": "WINS", + "id": "WINS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/WINS", + "realization_id": "3df86560-be4b-403c-9f51-b4739e11c531", + "relative_path": "WINS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3df86560-be4b-403c-9f51-b4739e11c531" + }, + { + "_create_time": 1724279989952, + "_create_user": "system", + "_last_modified_time": 1724279989952, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS-UDP", + "id": "KERBEROS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/KERBEROS-UDP", + "realization_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e", + "relative_path": "KERBEROS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e" + }, + { + "_create_time": 1724279990235, + "_create_user": "system", + "_last_modified_time": 1724279990235, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5722" + ], + "display_name": "RPC, DFSR (SYSVOL)", + "id": "RPC,_DFSR_(SYSVOL)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/RPC,_DFSR_(SYSVOL)", + "realization_id": "3d7dba87-966a-4e81-9ee1-e64075f791cd", + "relative_path": "RPC,_DFSR_(SYSVOL)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3d7dba87-966a-4e81-9ee1-e64075f791cd" + }, + { + "_create_time": 1724279990156, + "_create_user": "system", + "_last_modified_time": 1724279990156, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2535" + ], + "display_name": "DHCP, MADCAP", + "id": "DHCP,_MADCAP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/DHCP,_MADCAP", + "realization_id": "3a474dea-445f-4140-a1b2-d82f01db8b90", + "relative_path": "DHCP,_MADCAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3a474dea-445f-4140-a1b2-d82f01db8b90" + }, + { + "_create_time": 1724279989898, + "_create_user": "system", + "_last_modified_time": 1724279989898, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-UDP", + "id": "DNS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/DNS-UDP", + "realization_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326", + "relative_path": "DNS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326" + }, + { + "_create_time": 1724279990269, + "_create_user": "system", + "_last_modified_time": 1724279990269, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1025-5000" + ], + "display_name": "Win 2003 - RPC, DCOM, EPM, DRSUAPI, NetLogonR, SamR, FRS", + "id": "Win_2003_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/Win_2003_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS", + "realization_id": "7c89900b-d56a-47c6-912c-57db8706deaa", + "relative_path": "Win_2003_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "7c89900b-d56a-47c6-912c-57db8706deaa" + }, + { + "_create_time": 1724279990098, + "_create_user": "system", + "_last_modified_time": 1724279990098, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "42" + ], + "display_name": "WINS-UDP", + "id": "WINS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/WINS-UDP", + "realization_id": "117c0e28-4cbf-4905-b7e0-d9e148cad0cf", + "relative_path": "WINS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "117c0e28-4cbf-4905-b7e0-d9e148cad0cf" + }, + { + "_create_time": 1724279989969, + "_create_user": "system", + "_last_modified_time": 1724279989969, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP", + "id": "LDAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/LDAP", + "realization_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28", + "relative_path": "LDAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28" + }, + { + "_create_time": 1724279989957, + "_create_user": "system", + "_last_modified_time": 1724279989957, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "445" + ], + "display_name": "MS-DS-TCP", + "id": "MS-DS-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/MS-DS-TCP", + "realization_id": "1a734e23-133b-46ba-9428-0980d56583c4", + "relative_path": "MS-DS-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "1a734e23-133b-46ba-9428-0980d56583c4" + }, + { + "_create_time": 1724279990070, + "_create_user": "system", + "_last_modified_time": 1724279990070, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "67" + ], + "display_name": "DHCP-Server", + "id": "DHCP-Server", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/DHCP-Server", + "realization_id": "0cfe3a23-3c88-44cb-bf4e-f9b023184cf5", + "relative_path": "DHCP-Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "0cfe3a23-3c88-44cb-bf4e-f9b023184cf5" + }, + { + "_create_time": 1724279990081, + "_create_user": "system", + "_last_modified_time": 1724279990081, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "137" + ], + "display_name": "NBNS-Broadcast-V1", + "id": "NBNS-Broadcast-V1", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Active_Directory_V1", + "path": "/infra/services/Microsoft_Active_Directory_V1/service-entries/NBNS-Broadcast-V1", + "realization_id": "f39c3771-9dff-4589-807f-35bb83522784", + "relative_path": "NBNS-Broadcast-V1", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f39c3771-9dff-4589-807f-35bb83522784" + } + ] + }, + { + "_create_time": 1724279990637, + "_create_user": "system", + "_last_modified_time": 1724279990637, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Microsoft Exchange 2003", + "display_name": "Microsoft Exchange 2003", + "id": "Microsoft_Exchange_2003", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Microsoft_Exchange_2003", + "realization_id": "1cbd39c4-3b7b-44a2-a9c2-4f033a37a292", + "relative_path": "Microsoft_Exchange_2003", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "1cbd39c4-3b7b-44a2-a9c2-4f033a37a292", + "service_entries": [ + { + "_create_time": 1724279990729, + "_create_user": "system", + "_last_modified_time": 1724279990729, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "80" + ], + "display_name": "HTTP", + "id": "HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2003", + "path": "/infra/services/Microsoft_Exchange_2003/service-entries/HTTP", + "realization_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38" + }, + { + "_create_time": 1724279990723, + "_create_user": "system", + "_last_modified_time": 1724279990723, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP", + "id": "LDAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2003", + "path": "/infra/services/Microsoft_Exchange_2003/service-entries/LDAP", + "realization_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28", + "relative_path": "LDAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28" + }, + { + "_create_time": 1724279990660, + "_create_user": "system", + "_last_modified_time": 1724279990660, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2003", + "path": "/infra/services/Microsoft_Exchange_2003/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + }, + { + "_create_time": 1724279990759, + "_create_user": "system", + "_last_modified_time": 1724279990759, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "MS_RPC_TCP", + "destination_ports": [ + "135" + ], + "display_name": "MS_RPC_TCP", + "id": "MS_RPC_TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2003", + "path": "/infra/services/Microsoft_Exchange_2003/service-entries/MS_RPC_TCP", + "realization_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0", + "relative_path": "MS_RPC_TCP", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0" + }, + { + "_create_time": 1724279990747, + "_create_user": "system", + "_last_modified_time": 1724279990747, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "563" + ], + "display_name": "NNTP_SSL", + "id": "NNTP_SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2003", + "path": "/infra/services/Microsoft_Exchange_2003/service-entries/NNTP_SSL", + "realization_id": "6bc0e183-021a-48a3-be7d-a64d1f339b52", + "relative_path": "NNTP_SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "6bc0e183-021a-48a3-be7d-a64d1f339b52" + }, + { + "_create_time": 1724279990669, + "_create_user": "system", + "_last_modified_time": 1724279990669, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "143" + ], + "display_name": "IMAP", + "id": "IMAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2003", + "path": "/infra/services/Microsoft_Exchange_2003/service-entries/IMAP", + "realization_id": "2abb274c-650a-4055-96d3-744d95fadfd0", + "relative_path": "IMAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "2abb274c-650a-4055-96d3-744d95fadfd0" + }, + { + "_create_time": 1724279990794, + "_create_user": "system", + "_last_modified_time": 1724279990794, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "995" + ], + "display_name": "POP3_SSL", + "id": "POP3_SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2003", + "path": "/infra/services/Microsoft_Exchange_2003/service-entries/POP3_SSL", + "realization_id": "78dc2b15-edf4-43bb-9199-1586f80adc23", + "relative_path": "POP3_SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "78dc2b15-edf4-43bb-9199-1586f80adc23" + }, + { + "_create_time": 1724279990698, + "_create_user": "system", + "_last_modified_time": 1724279990698, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "119" + ], + "display_name": "NNTP", + "id": "NNTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2003", + "path": "/infra/services/Microsoft_Exchange_2003/service-entries/NNTP", + "realization_id": "999a85a2-1c95-4f40-bafa-d11885665eca", + "relative_path": "NNTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "999a85a2-1c95-4f40-bafa-d11885665eca" + }, + { + "_create_time": 1724279990736, + "_create_user": "system", + "_last_modified_time": 1724279990736, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "110" + ], + "display_name": "POP3", + "id": "POP3", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2003", + "path": "/infra/services/Microsoft_Exchange_2003/service-entries/POP3", + "realization_id": "91c0ac1d-2d04-49a7-b1e7-5d2bd1f6de95", + "relative_path": "POP3", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "91c0ac1d-2d04-49a7-b1e7-5d2bd1f6de95" + }, + { + "_create_time": 1724279990773, + "_create_user": "system", + "_last_modified_time": 1724279990773, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "993" + ], + "display_name": "IMAP_SSL", + "id": "IMAP_SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2003", + "path": "/infra/services/Microsoft_Exchange_2003/service-entries/IMAP_SSL", + "realization_id": "f8aee13f-94ae-496f-834e-95718e6e3bf3", + "relative_path": "IMAP_SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f8aee13f-94ae-496f-834e-95718e6e3bf3" + }, + { + "_create_time": 1724279990687, + "_create_user": "system", + "_last_modified_time": 1724279990687, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "25" + ], + "display_name": "SMTP", + "id": "SMTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2003", + "path": "/infra/services/Microsoft_Exchange_2003/service-entries/SMTP", + "realization_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219", + "relative_path": "SMTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219" + }, + { + "_create_time": 1724279990767, + "_create_user": "system", + "_last_modified_time": 1724279990767, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "691" + ], + "display_name": "Routing Engine service", + "id": "Routing_Engine_service", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2003", + "path": "/infra/services/Microsoft_Exchange_2003/service-entries/Routing_Engine_service", + "realization_id": "d5e64a59-7a64-40de-9756-2d5a8c3941d5", + "relative_path": "Routing_Engine_service", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "d5e64a59-7a64-40de-9756-2d5a8c3941d5" + }, + { + "_create_time": 1724279990742, + "_create_user": "system", + "_last_modified_time": 1724279990742, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2883" + ], + "display_name": "Exchange ActiveSync", + "id": "Exchange_ActiveSync", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2003", + "path": "/infra/services/Microsoft_Exchange_2003/service-entries/Exchange_ActiveSync", + "realization_id": "669a0359-e394-41a3-b7af-8dc341a52a34", + "relative_path": "Exchange_ActiveSync", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "669a0359-e394-41a3-b7af-8dc341a52a34" + }, + { + "_create_time": 1724279990753, + "_create_user": "system", + "_last_modified_time": 1724279990753, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "379" + ], + "display_name": "Site Replication service", + "id": "Site_Replication_service", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2003", + "path": "/infra/services/Microsoft_Exchange_2003/service-entries/Site_Replication_service", + "realization_id": "6475aeb4-5b8b-4ba7-a65c-1aa1e37504ac", + "relative_path": "Site_Replication_service", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "6475aeb4-5b8b-4ba7-a65c-1aa1e37504ac" + }, + { + "_create_time": 1724279990780, + "_create_user": "system", + "_last_modified_time": 1724279990780, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "102" + ], + "display_name": "For X.400 connections over TCP", + "id": "For_X.400_connections_over_TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2003", + "path": "/infra/services/Microsoft_Exchange_2003/service-entries/For_X.400_connections_over_TCP", + "realization_id": "35e013ce-d4de-4d33-a541-01f249c92a7f", + "relative_path": "For_X.400_connections_over_TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "35e013ce-d4de-4d33-a541-01f249c92a7f" + } + ] + }, + { + "_create_time": 1724279997940, + "_create_user": "system", + "_last_modified_time": 1724279997940, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Microsoft Exchange 2007", + "display_name": "Microsoft Exchange 2007", + "id": "Microsoft_Exchange_2007", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Microsoft_Exchange_2007", + "realization_id": "d4f978cc-b627-45cc-9834-c2bf1c998349", + "relative_path": "Microsoft_Exchange_2007", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "d4f978cc-b627-45cc-9834-c2bf1c998349", + "service_entries": [ + { + "_create_time": 1724279997962, + "_create_user": "system", + "_last_modified_time": 1724279997962, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS", + "id": "KERBEROS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2007", + "path": "/infra/services/Microsoft_Exchange_2007/service-entries/KERBEROS", + "realization_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50", + "relative_path": "KERBEROS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50" + }, + { + "_create_time": 1724279998164, + "_create_user": "system", + "_last_modified_time": 1724279998164, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50389" + ], + "display_name": "EdgeSync service/ADAM", + "id": "EdgeSync_service-ADAM", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2007", + "path": "/infra/services/Microsoft_Exchange_2007/service-entries/EdgeSync_service-ADAM", + "realization_id": "264667f0-980b-4ee2-a5f1-eb7b96dac0c9", + "relative_path": "EdgeSync_service-ADAM", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "264667f0-980b-4ee2-a5f1-eb7b96dac0c9" + }, + { + "_create_time": 1724279998157, + "_create_user": "system", + "_last_modified_time": 1724279998157, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "587" + ], + "display_name": "SMTP_TLS", + "id": "SMTP_TLS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2007", + "path": "/infra/services/Microsoft_Exchange_2007/service-entries/SMTP_TLS", + "realization_id": "0c62c54f-dc12-4549-bc5a-ba29eaedcbe7", + "relative_path": "SMTP_TLS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "0c62c54f-dc12-4549-bc5a-ba29eaedcbe7" + }, + { + "_create_time": 1724279998229, + "_create_user": "system", + "_last_modified_time": 1724279998229, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "995" + ], + "display_name": "POP3_SSL", + "id": "POP3_SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2007", + "path": "/infra/services/Microsoft_Exchange_2007/service-entries/POP3_SSL", + "realization_id": "78dc2b15-edf4-43bb-9199-1586f80adc23", + "relative_path": "POP3_SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "78dc2b15-edf4-43bb-9199-1586f80adc23" + }, + { + "_create_time": 1724279998041, + "_create_user": "system", + "_last_modified_time": 1724279998041, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP", + "id": "LDAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2007", + "path": "/infra/services/Microsoft_Exchange_2007/service-entries/LDAP", + "realization_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28", + "relative_path": "LDAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28" + }, + { + "_create_time": 1724279998210, + "_create_user": "system", + "_last_modified_time": 1724279998210, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "110" + ], + "display_name": "POP3", + "id": "POP3", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2007", + "path": "/infra/services/Microsoft_Exchange_2007/service-entries/POP3", + "realization_id": "91c0ac1d-2d04-49a7-b1e7-5d2bd1f6de95", + "relative_path": "POP3", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "91c0ac1d-2d04-49a7-b1e7-5d2bd1f6de95" + }, + { + "_create_time": 1724279998196, + "_create_user": "system", + "_last_modified_time": 1724279998196, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "993" + ], + "display_name": "IMAP_SSL", + "id": "IMAP_SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2007", + "path": "/infra/services/Microsoft_Exchange_2007/service-entries/IMAP_SSL", + "realization_id": "f8aee13f-94ae-496f-834e-95718e6e3bf3", + "relative_path": "IMAP_SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f8aee13f-94ae-496f-834e-95718e6e3bf3" + }, + { + "_create_time": 1724279998137, + "_create_user": "system", + "_last_modified_time": 1724279998137, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5060", + "5061", + "5062" + ], + "display_name": "MS Unified Messaging server", + "id": "MS_Unified_Messaging_server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2007", + "path": "/infra/services/Microsoft_Exchange_2007/service-entries/MS_Unified_Messaging_server", + "realization_id": "84fc17dc-70ff-406a-8d22-224cf6ec95e8", + "relative_path": "MS_Unified_Messaging_server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "84fc17dc-70ff-406a-8d22-224cf6ec95e8" + }, + { + "_create_time": 1724279998153, + "_create_user": "system", + "_last_modified_time": 1724279998153, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "25" + ], + "display_name": "SMTP", + "id": "SMTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2007", + "path": "/infra/services/Microsoft_Exchange_2007/service-entries/SMTP", + "realization_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219", + "relative_path": "SMTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219" + }, + { + "_create_time": 1724279998130, + "_create_user": "system", + "_last_modified_time": 1724279998130, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-TCP", + "id": "DNS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2007", + "path": "/infra/services/Microsoft_Exchange_2007/service-entries/DNS", + "realization_id": "503ad409-d481-4547-8720-28534c1856b6", + "relative_path": "DNS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "503ad409-d481-4547-8720-28534c1856b6" + }, + { + "_create_time": 1724279997956, + "_create_user": "system", + "_last_modified_time": 1724279997956, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3268" + ], + "display_name": "LDAP Global Catalog", + "id": "LDAP_Global_Catalog", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2007", + "path": "/infra/services/Microsoft_Exchange_2007/service-entries/LDAP_Global_Catalog", + "realization_id": "57402db2-fa4c-4a67-bdbc-e150d7cb5343", + "relative_path": "LDAP_Global_Catalog", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "57402db2-fa4c-4a67-bdbc-e150d7cb5343" + }, + { + "_create_time": 1724279997977, + "_create_user": "system", + "_last_modified_time": 1724279997977, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-UDP", + "id": "DNS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2007", + "path": "/infra/services/Microsoft_Exchange_2007/service-entries/DNS-UDP", + "realization_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326", + "relative_path": "DNS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326" + }, + { + "_create_time": 1724279998066, + "_create_user": "system", + "_last_modified_time": 1724279998066, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP-UDP", + "id": "LDAP-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2007", + "path": "/infra/services/Microsoft_Exchange_2007/service-entries/LDAP-UDP", + "realization_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f", + "relative_path": "LDAP-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f" + }, + { + "_create_time": 1724279997983, + "_create_user": "system", + "_last_modified_time": 1724279997983, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "MS_RPC_TCP", + "destination_ports": [ + "135" + ], + "display_name": "MS_RPC_TCP", + "id": "MS_RPC_TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2007", + "path": "/infra/services/Microsoft_Exchange_2007/service-entries/MS_RPC_TCP", + "realization_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0", + "relative_path": "MS_RPC_TCP", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0" + }, + { + "_create_time": 1724279998255, + "_create_user": "system", + "_last_modified_time": 1724279998255, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "143" + ], + "display_name": "IMAP", + "id": "IMAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2007", + "path": "/infra/services/Microsoft_Exchange_2007/service-entries/IMAP", + "realization_id": "2abb274c-650a-4055-96d3-744d95fadfd0", + "relative_path": "IMAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "2abb274c-650a-4055-96d3-744d95fadfd0" + }, + { + "_create_time": 1724279998021, + "_create_user": "system", + "_last_modified_time": 1724279998021, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS-UDP", + "id": "KERBEROS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2007", + "path": "/infra/services/Microsoft_Exchange_2007/service-entries/KERBEROS-UDP", + "realization_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e", + "relative_path": "KERBEROS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e" + }, + { + "_create_time": 1724279998077, + "_create_user": "system", + "_last_modified_time": 1724279998077, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "80" + ], + "display_name": "HTTP", + "id": "HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2007", + "path": "/infra/services/Microsoft_Exchange_2007/service-entries/HTTP", + "realization_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38" + }, + { + "_create_time": 1724279998004, + "_create_user": "system", + "_last_modified_time": 1724279998004, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "445" + ], + "display_name": "MS-DS-TCP", + "id": "MS-DS-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2007", + "path": "/infra/services/Microsoft_Exchange_2007/service-entries/MS-DS-TCP", + "realization_id": "1a734e23-133b-46ba-9428-0980d56583c4", + "relative_path": "MS-DS-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "1a734e23-133b-46ba-9428-0980d56583c4" + }, + { + "_create_time": 1724279998101, + "_create_user": "system", + "_last_modified_time": 1724279998101, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2007", + "path": "/infra/services/Microsoft_Exchange_2007/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + }, + { + "_create_time": 1724279998171, + "_create_user": "system", + "_last_modified_time": 1724279998171, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50636" + ], + "display_name": "EdgeSync service", + "id": "EdgeSync_service", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2007", + "path": "/infra/services/Microsoft_Exchange_2007/service-entries/EdgeSync_service", + "realization_id": "f92e96e8-f65b-4598-97ff-bab36f182184", + "relative_path": "EdgeSync_service", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f92e96e8-f65b-4598-97ff-bab36f182184" + } + ] + }, + { + "_create_time": 1724279996248, + "_create_user": "system", + "_last_modified_time": 1724279996248, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Microsoft Exchange 2010", + "display_name": "Microsoft Exchange 2010", + "id": "Microsoft_Exchange_2010", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Microsoft_Exchange_2010", + "realization_id": "b770ab84-9440-4b02-ba3a-e37108ec4ae3", + "relative_path": "Microsoft_Exchange_2010", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "b770ab84-9440-4b02-ba3a-e37108ec4ae3", + "service_entries": [ + { + "_create_time": 1724279996709, + "_create_user": "system", + "_last_modified_time": 1724279996709, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP", + "id": "LDAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/LDAP", + "realization_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28", + "relative_path": "LDAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28" + }, + { + "_create_time": 1724279996726, + "_create_user": "system", + "_last_modified_time": 1724279996726, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS-UDP", + "id": "KERBEROS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/KERBEROS-UDP", + "realization_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e", + "relative_path": "KERBEROS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e" + }, + { + "_create_time": 1724279996466, + "_create_user": "system", + "_last_modified_time": 1724279996466, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5060", + "5061", + "5065", + "5066", + "5067", + "5068" + ], + "display_name": "MS Unified Messaging server-Phone", + "id": "MS_Unified_Messaging_server-Phone", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/MS_Unified_Messaging_server-Phone", + "realization_id": "c46e7621-6cbd-44b7-9bd9-5b4ba78760a5", + "relative_path": "MS_Unified_Messaging_server-Phone", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c46e7621-6cbd-44b7-9bd9-5b4ba78760a5" + }, + { + "_create_time": 1724279996490, + "_create_user": "system", + "_last_modified_time": 1724279996490, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5075", + "5076", + "5077" + ], + "display_name": "MS Unified Messaging server - Client Access", + "id": "MS_Unified_Messaging_server_-_Client_Access", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/MS_Unified_Messaging_server_-_Client_Access", + "realization_id": "06efab54-a827-4d5b-a3dc-f50e76aef7a1", + "relative_path": "MS_Unified_Messaging_server_-_Client_Access", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "06efab54-a827-4d5b-a3dc-f50e76aef7a1" + }, + { + "_create_time": 1724279996273, + "_create_user": "system", + "_last_modified_time": 1724279996273, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "MS_RPC_TCP", + "destination_ports": [ + "135" + ], + "display_name": "MS_RPC_TCP", + "id": "MS_RPC_TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/MS_RPC_TCP", + "realization_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0", + "relative_path": "MS_RPC_TCP", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0" + }, + { + "_create_time": 1724279996266, + "_create_user": "system", + "_last_modified_time": 1724279996266, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-UDP", + "id": "DNS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/DNS-UDP", + "realization_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326", + "relative_path": "DNS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326" + }, + { + "_create_time": 1724279996941, + "_create_user": "system", + "_last_modified_time": 1724279996941, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "808" + ], + "display_name": "MS Replication service", + "id": "MS_Replication_service", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/MS_Replication_service", + "realization_id": "5fba886d-fe7a-4d86-ad28-48c00ddd894c", + "relative_path": "MS_Replication_service", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5fba886d-fe7a-4d86-ad28-48c00ddd894c" + }, + { + "_create_time": 1724279996374, + "_create_user": "system", + "_last_modified_time": 1724279996374, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS", + "id": "KERBEROS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/KERBEROS", + "realization_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50", + "relative_path": "KERBEROS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50" + }, + { + "_create_time": 1724279996916, + "_create_user": "system", + "_last_modified_time": 1724279996916, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "995" + ], + "display_name": "POP3_SSL", + "id": "POP3_SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/POP3_SSL", + "realization_id": "78dc2b15-edf4-43bb-9199-1586f80adc23", + "relative_path": "POP3_SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "78dc2b15-edf4-43bb-9199-1586f80adc23" + }, + { + "_create_time": 1724279996876, + "_create_user": "system", + "_last_modified_time": 1724279996876, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "110" + ], + "display_name": "POP3", + "id": "POP3", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/POP3", + "realization_id": "91c0ac1d-2d04-49a7-b1e7-5d2bd1f6de95", + "relative_path": "POP3", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "91c0ac1d-2d04-49a7-b1e7-5d2bd1f6de95" + }, + { + "_create_time": 1724279996934, + "_create_user": "system", + "_last_modified_time": 1724279996934, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "64327" + ], + "display_name": "MS Customizable", + "id": "MS_Customizable", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/MS_Customizable", + "realization_id": "9d92dbd6-c720-41fa-bba8-bb84d2c516dd", + "relative_path": "MS_Customizable", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "9d92dbd6-c720-41fa-bba8-bb84d2c516dd" + }, + { + "_create_time": 1724279996620, + "_create_user": "system", + "_last_modified_time": 1724279996620, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "80" + ], + "display_name": "HTTP", + "id": "HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/HTTP", + "realization_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38" + }, + { + "_create_time": 1724279996951, + "_create_user": "system", + "_last_modified_time": 1724279996951, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "445" + ], + "display_name": "MS-DS-TCP", + "id": "MS-DS-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/MS-DS-TCP", + "realization_id": "1a734e23-133b-46ba-9428-0980d56583c4", + "relative_path": "MS-DS-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "1a734e23-133b-46ba-9428-0980d56583c4" + }, + { + "_create_time": 1724279996824, + "_create_user": "system", + "_last_modified_time": 1724279996824, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "993" + ], + "display_name": "IMAP_SSL", + "id": "IMAP_SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/IMAP_SSL", + "realization_id": "f8aee13f-94ae-496f-834e-95718e6e3bf3", + "relative_path": "IMAP_SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f8aee13f-94ae-496f-834e-95718e6e3bf3" + }, + { + "_create_time": 1724279996755, + "_create_user": "system", + "_last_modified_time": 1724279996755, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "143" + ], + "display_name": "IMAP", + "id": "IMAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/IMAP", + "realization_id": "2abb274c-650a-4055-96d3-744d95fadfd0", + "relative_path": "IMAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "2abb274c-650a-4055-96d3-744d95fadfd0" + }, + { + "_create_time": 1724279996930, + "_create_user": "system", + "_last_modified_time": 1724279996930, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5075", + "5076", + "5077" + ], + "display_name": "Office communication server", + "id": "Office_communication_server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/Office_communication_server", + "realization_id": "230dfa9d-e121-49f9-9c3d-dadddd1b065b", + "relative_path": "Office_communication_server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "230dfa9d-e121-49f9-9c3d-dadddd1b065b" + }, + { + "_create_time": 1724279996536, + "_create_user": "system", + "_last_modified_time": 1724279996536, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-TCP", + "id": "DNS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/DNS", + "realization_id": "503ad409-d481-4547-8720-28534c1856b6", + "relative_path": "DNS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "503ad409-d481-4547-8720-28534c1856b6" + }, + { + "_create_time": 1724279996925, + "_create_user": "system", + "_last_modified_time": 1724279996925, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5060", + "5061", + "5062" + ], + "display_name": "MS Unified Messaging server", + "id": "MS_Unified_Messaging_server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/MS_Unified_Messaging_server", + "realization_id": "84fc17dc-70ff-406a-8d22-224cf6ec95e8", + "relative_path": "MS_Unified_Messaging_server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "84fc17dc-70ff-406a-8d22-224cf6ec95e8" + }, + { + "_create_time": 1724279996525, + "_create_user": "system", + "_last_modified_time": 1724279996525, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3268" + ], + "display_name": "LDAP Global Catalog", + "id": "LDAP_Global_Catalog", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/LDAP_Global_Catalog", + "realization_id": "57402db2-fa4c-4a67-bdbc-e150d7cb5343", + "relative_path": "LDAP_Global_Catalog", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "57402db2-fa4c-4a67-bdbc-e150d7cb5343" + }, + { + "_create_time": 1724279996966, + "_create_user": "system", + "_last_modified_time": 1724279996966, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "587" + ], + "display_name": "SMTP_TLS", + "id": "SMTP_TLS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/SMTP_TLS", + "realization_id": "0c62c54f-dc12-4549-bc5a-ba29eaedcbe7", + "relative_path": "SMTP_TLS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "0c62c54f-dc12-4549-bc5a-ba29eaedcbe7" + }, + { + "_create_time": 1724279996340, + "_create_user": "system", + "_last_modified_time": 1724279996340, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "25" + ], + "display_name": "SMTP", + "id": "SMTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/SMTP", + "realization_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219", + "relative_path": "SMTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219" + }, + { + "_create_time": 1724279996958, + "_create_user": "system", + "_last_modified_time": 1724279996958, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50636" + ], + "display_name": "EdgeSync service", + "id": "EdgeSync_service", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/EdgeSync_service", + "realization_id": "f92e96e8-f65b-4598-97ff-bab36f182184", + "relative_path": "EdgeSync_service", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f92e96e8-f65b-4598-97ff-bab36f182184" + }, + { + "_create_time": 1724279996653, + "_create_user": "system", + "_last_modified_time": 1724279996653, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP-UDP", + "id": "LDAP-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/LDAP-UDP", + "realization_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f", + "relative_path": "LDAP-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f" + }, + { + "_create_time": 1724279996574, + "_create_user": "system", + "_last_modified_time": 1724279996574, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Exchange_2010", + "path": "/infra/services/Microsoft_Exchange_2010/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + } + ] + }, + { + "_create_time": 1724279989015, + "_create_user": "system", + "_last_modified_time": 1724279989015, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Microsoft Media Server (TCP)", + "display_name": "Microsoft Media Server (TCP)", + "id": "Microsoft_Media_Server_(TCP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Microsoft_Media_Server_(TCP)", + "realization_id": "633dadff-c84d-41fe-9d49-1d74886ec6f9", + "relative_path": "Microsoft_Media_Server_(TCP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "633dadff-c84d-41fe-9d49-1d74886ec6f9", + "service_entries": [ + { + "_create_time": 1724279989015, + "_create_user": "system", + "_last_modified_time": 1724279989015, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1755" + ], + "display_name": "Microsoft Media Server (TCP)", + "id": "Microsoft_Media_Server_(TCP)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Media_Server_(TCP)", + "path": "/infra/services/Microsoft_Media_Server_(TCP)/service-entries/Microsoft_Media_Server_(TCP)", + "realization_id": "2ac6768f-d610-49a1-8988-3cdcdfa02af4", + "relative_path": "Microsoft_Media_Server_(TCP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "2ac6768f-d610-49a1-8988-3cdcdfa02af4" + } + ] + }, + { + "_create_time": 1724279989029, + "_create_user": "system", + "_last_modified_time": 1724279989029, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Microsoft Media Server (UDP)", + "display_name": "Microsoft Media Server (UDP)", + "id": "Microsoft_Media_Server_(UDP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Microsoft_Media_Server_(UDP)", + "realization_id": "a10549e9-535c-4f01-b3e0-2f4b0a8700d8", + "relative_path": "Microsoft_Media_Server_(UDP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "a10549e9-535c-4f01-b3e0-2f4b0a8700d8", + "service_entries": [ + { + "_create_time": 1724279989029, + "_create_user": "system", + "_last_modified_time": 1724279989029, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1755" + ], + "display_name": "Microsoft Media Server (UDP)", + "id": "Microsoft_Media_Server_(UDP)", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_Media_Server_(UDP)", + "path": "/infra/services/Microsoft_Media_Server_(UDP)/service-entries/Microsoft_Media_Server_(UDP)", + "realization_id": "fe527089-8537-4bea-a6f9-685e0717b799", + "relative_path": "Microsoft_Media_Server_(UDP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "fe527089-8537-4bea-a6f9-685e0717b799" + } + ] + }, + { + "_create_time": 1724279991970, + "_create_user": "system", + "_last_modified_time": 1724279991970, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Microsoft SQL Server", + "display_name": "Microsoft SQL Server", + "id": "Microsoft_SQL_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Microsoft_SQL_Server", + "realization_id": "3e778d82-8ffe-4135-b34a-d0a085d19747", + "relative_path": "Microsoft_SQL_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "3e778d82-8ffe-4135-b34a-d0a085d19747", + "service_entries": [ + { + "_create_time": 1724279992101, + "_create_user": "system", + "_last_modified_time": 1724279992101, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1434" + ], + "display_name": "MS-SQL-M-TCP", + "id": "MS-SQL-M-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_SQL_Server", + "path": "/infra/services/Microsoft_SQL_Server/service-entries/MS-SQL-M-TCP", + "realization_id": "29e141d6-698d-49cd-b879-c7b205524aaa", + "relative_path": "MS-SQL-M-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "29e141d6-698d-49cd-b879-c7b205524aaa" + }, + { + "_create_time": 1724279992224, + "_create_user": "system", + "_last_modified_time": 1724279992224, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2382" + ], + "display_name": "SQL Server Browser service", + "id": "SQL_Server_Browser_service", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_SQL_Server", + "path": "/infra/services/Microsoft_SQL_Server/service-entries/SQL_Server_Browser_service", + "realization_id": "79198f55-115c-40e6-ba45-95f7679539fc", + "relative_path": "SQL_Server_Browser_service", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "79198f55-115c-40e6-ba45-95f7679539fc" + }, + { + "_create_time": 1724279992245, + "_create_user": "system", + "_last_modified_time": 1724279992245, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2383" + ], + "display_name": "SQL Analysis service", + "id": "SQL_Analysis_service", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_SQL_Server", + "path": "/infra/services/Microsoft_SQL_Server/service-entries/SQL_Analysis_service", + "realization_id": "a584a90d-0c90-4ebb-b1be-770c64dcb208", + "relative_path": "SQL_Analysis_service", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a584a90d-0c90-4ebb-b1be-770c64dcb208" + }, + { + "_create_time": 1724279992203, + "_create_user": "system", + "_last_modified_time": 1724279992203, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1434" + ], + "display_name": "MS-SQL-M", + "id": "MS-SQL-M", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_SQL_Server", + "path": "/infra/services/Microsoft_SQL_Server/service-entries/MS-SQL-M", + "realization_id": "c41a0168-cf24-451d-9089-a8cc2cd1bbb0", + "relative_path": "MS-SQL-M", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c41a0168-cf24-451d-9089-a8cc2cd1bbb0" + }, + { + "_create_time": 1724279992001, + "_create_user": "system", + "_last_modified_time": 1724279992001, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_SQL_Server", + "path": "/infra/services/Microsoft_SQL_Server/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + }, + { + "_create_time": 1724279992145, + "_create_user": "system", + "_last_modified_time": 1724279992145, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1433" + ], + "display_name": "MS-SQL-S", + "id": "MS-SQL-S", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_SQL_Server", + "path": "/infra/services/Microsoft_SQL_Server/service-entries/MS-SQL-S", + "realization_id": "a7240508-b3a5-4123-b5b7-37f68e9a924f", + "relative_path": "MS-SQL-S", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a7240508-b3a5-4123-b5b7-37f68e9a924f" + }, + { + "_create_time": 1724279992019, + "_create_user": "system", + "_last_modified_time": 1724279992019, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "80" + ], + "display_name": "HTTP", + "id": "HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_SQL_Server", + "path": "/infra/services/Microsoft_SQL_Server/service-entries/HTTP", + "realization_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38" + }, + { + "_create_time": 1724279992054, + "_create_user": "system", + "_last_modified_time": 1724279992054, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "MS_RPC_TCP", + "destination_ports": [ + "135" + ], + "display_name": "MS_RPC_TCP", + "id": "MS_RPC_TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Microsoft_SQL_Server", + "path": "/infra/services/Microsoft_SQL_Server/service-entries/MS_RPC_TCP", + "realization_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0", + "relative_path": "MS_RPC_TCP", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0" + } + ] + }, + { + "_create_time": 1724279988849, + "_create_user": "system", + "_last_modified_time": 1724279988849, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "MySQL", + "display_name": "MySQL", + "id": "MySQL", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/MySQL", + "realization_id": "94105840-4f08-4805-a36d-b11368e5f2b1", + "relative_path": "MySQL", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "94105840-4f08-4805-a36d-b11368e5f2b1", + "service_entries": [ + { + "_create_time": 1724279988850, + "_create_user": "system", + "_last_modified_time": 1724279988850, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3306" + ], + "display_name": "MySQL", + "id": "MySQL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/MySQL", + "path": "/infra/services/MySQL/service-entries/MySQL", + "realization_id": "0defe641-d382-4486-ac38-4cae77224d4d", + "relative_path": "MySQL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "0defe641-d382-4486-ac38-4cae77224d4d" + } + ] + }, + { + "_create_time": 1724279989121, + "_create_user": "system", + "_last_modified_time": 1724279989121, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "NBDG-Broadcast-V1", + "display_name": "NBDG-Broadcast-V1", + "id": "NBDG-Broadcast-V1", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/NBDG-Broadcast-V1", + "realization_id": "dae6e391-aefe-4c7a-b44a-e3670cf1ce3f", + "relative_path": "NBDG-Broadcast-V1", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "dae6e391-aefe-4c7a-b44a-e3670cf1ce3f", + "service_entries": [ + { + "_create_time": 1724279989122, + "_create_user": "system", + "_last_modified_time": 1724279989122, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "138" + ], + "display_name": "NBDG-Broadcast-V1", + "id": "NBDG-Broadcast-V1", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/NBDG-Broadcast-V1", + "path": "/infra/services/NBDG-Broadcast-V1/service-entries/NBDG-Broadcast-V1", + "realization_id": "15cbcee1-8351-44bc-a957-b600c6bc3f71", + "relative_path": "NBDG-Broadcast-V1", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "15cbcee1-8351-44bc-a957-b600c6bc3f71" + } + ] + }, + { + "_create_time": 1724279988974, + "_create_user": "system", + "_last_modified_time": 1724279988974, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "NBNS-Broadcast-V1", + "display_name": "NBNS-Broadcast-V1", + "id": "NBNS-Broadcast-V1", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/NBNS-Broadcast-V1", + "realization_id": "b0ac71bb-bd1f-4aed-9817-9760c103630f", + "relative_path": "NBNS-Broadcast-V1", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "b0ac71bb-bd1f-4aed-9817-9760c103630f", + "service_entries": [ + { + "_create_time": 1724279988974, + "_create_user": "system", + "_last_modified_time": 1724279988974, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "137" + ], + "display_name": "NBNS-Broadcast-V1", + "id": "NBNS-Broadcast-V1", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/NBNS-Broadcast-V1", + "path": "/infra/services/NBNS-Broadcast-V1/service-entries/NBNS-Broadcast-V1", + "realization_id": "f39c3771-9dff-4589-807f-35bb83522784", + "relative_path": "NBNS-Broadcast-V1", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f39c3771-9dff-4589-807f-35bb83522784" + } + ] + }, + { + "_create_time": 1724279988945, + "_create_user": "system", + "_last_modified_time": 1724279988945, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "NFS (TCP)", + "display_name": "NFS (TCP)", + "id": "NFS_(TCP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/NFS_(TCP)", + "realization_id": "10a9551c-b13c-4d5b-b55a-b2b45c8fd225", + "relative_path": "NFS_(TCP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "10a9551c-b13c-4d5b-b55a-b2b45c8fd225", + "service_entries": [ + { + "_create_time": 1724279988945, + "_create_user": "system", + "_last_modified_time": 1724279988945, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2049" + ], + "display_name": "NFS (TCP)", + "id": "NFS_(TCP)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/NFS_(TCP)", + "path": "/infra/services/NFS_(TCP)/service-entries/NFS_(TCP)", + "realization_id": "470a8bc9-3468-4f51-82b4-56c47533e17c", + "relative_path": "NFS_(TCP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "470a8bc9-3468-4f51-82b4-56c47533e17c" + } + ] + }, + { + "_create_time": 1724279988967, + "_create_user": "system", + "_last_modified_time": 1724279988967, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "NFS (UDP)", + "display_name": "NFS (UDP)", + "id": "NFS_(UDP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/NFS_(UDP)", + "realization_id": "c893461a-8c06-4297-97dd-4fb058495bfc", + "relative_path": "NFS_(UDP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "c893461a-8c06-4297-97dd-4fb058495bfc", + "service_entries": [ + { + "_create_time": 1724279988967, + "_create_user": "system", + "_last_modified_time": 1724279988967, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2049" + ], + "display_name": "NFS (UDP)", + "id": "NFS_(UDP)", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/NFS_(UDP)", + "path": "/infra/services/NFS_(UDP)/service-entries/NFS_(UDP)", + "realization_id": "ed69100f-f738-480b-bc5b-3d4c16607acd", + "relative_path": "NFS_(UDP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "ed69100f-f738-480b-bc5b-3d4c16607acd" + } + ] + }, + { + "_create_time": 1724279988848, + "_create_user": "system", + "_last_modified_time": 1724279988848, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "NFS Client", + "display_name": "NFS Client", + "id": "NFS_Client", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/NFS_Client", + "realization_id": "84b6e47c-b012-4ffa-b5e2-a5b9bc7366e1", + "relative_path": "NFS_Client", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "84b6e47c-b012-4ffa-b5e2-a5b9bc7366e1", + "service_entries": [ + { + "_create_time": 1724279988848, + "_create_user": "system", + "_last_modified_time": 1724279988848, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "111" + ], + "display_name": "NFS Client", + "id": "NFS_Client", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/NFS_Client", + "path": "/infra/services/NFS_Client/service-entries/NFS_Client", + "realization_id": "c79f2071-57ad-4f15-bdfb-1be724bbc109", + "relative_path": "NFS_Client", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c79f2071-57ad-4f15-bdfb-1be724bbc109" + } + ] + }, + { + "_create_time": 1724279989021, + "_create_user": "system", + "_last_modified_time": 1724279989021, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "NFS Client UDP", + "display_name": "NFS Client UDP", + "id": "NFS_Client_UDP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/NFS_Client_UDP", + "realization_id": "8026f2b4-c1ee-4db6-8d93-3fc86d1345d5", + "relative_path": "NFS_Client_UDP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "8026f2b4-c1ee-4db6-8d93-3fc86d1345d5", + "service_entries": [ + { + "_create_time": 1724279989021, + "_create_user": "system", + "_last_modified_time": 1724279989021, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "111" + ], + "display_name": "NFS Client UDP", + "id": "NFS_Client_UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/NFS_Client_UDP", + "path": "/infra/services/NFS_Client_UDP/service-entries/NFS_Client_UDP", + "realization_id": "4f77a9e2-34b5-430f-b043-8d99aa90df5d", + "relative_path": "NFS_Client_UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "4f77a9e2-34b5-430f-b043-8d99aa90df5d" + } + ] + }, + { + "_create_time": 1724279989186, + "_create_user": "system", + "_last_modified_time": 1724279989186, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "NFS-Server-TCP", + "display_name": "NFS-Server-TCP", + "id": "NFS-Server-TCP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/NFS-Server-TCP", + "realization_id": "bf35468b-ccf3-4d0c-98d1-6f3b2e0a02a5", + "relative_path": "NFS-Server-TCP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "bf35468b-ccf3-4d0c-98d1-6f3b2e0a02a5", + "service_entries": [ + { + "_create_time": 1724279989186, + "_create_user": "system", + "_last_modified_time": 1724279989186, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2049" + ], + "display_name": "NFS-Server-TCP", + "id": "NFS-Server-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/NFS-Server-TCP", + "path": "/infra/services/NFS-Server-TCP/service-entries/NFS-Server-TCP", + "realization_id": "7c8039b9-4b29-4061-803d-1a1422ab7b9e", + "relative_path": "NFS-Server-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "7c8039b9-4b29-4061-803d-1a1422ab7b9e" + } + ] + }, + { + "_create_time": 1724279989121, + "_create_user": "system", + "_last_modified_time": 1724279989121, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "NFS-Server-UDP", + "display_name": "NFS-Server-UDP", + "id": "NFS-Server-UDP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/NFS-Server-UDP", + "realization_id": "2535a063-d16e-44c7-9a92-4ef6e5b888a6", + "relative_path": "NFS-Server-UDP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "2535a063-d16e-44c7-9a92-4ef6e5b888a6", + "service_entries": [ + { + "_create_time": 1724279989121, + "_create_user": "system", + "_last_modified_time": 1724279989121, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2049" + ], + "display_name": "NFS-Server-UDP", + "id": "NFS-Server-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/NFS-Server-UDP", + "path": "/infra/services/NFS-Server-UDP/service-entries/NFS-Server-UDP", + "realization_id": "70afaba8-2074-4926-adf2-41a2d9ef5d5a", + "relative_path": "NFS-Server-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "70afaba8-2074-4926-adf2-41a2d9ef5d5a" + } + ] + }, + { + "_create_time": 1724279988850, + "_create_user": "system", + "_last_modified_time": 1724279988850, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "NNTP", + "display_name": "NNTP", + "id": "NNTP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/NNTP", + "realization_id": "f275e3f7-e8a3-4705-9c3f-572c34e791e6", + "relative_path": "NNTP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "f275e3f7-e8a3-4705-9c3f-572c34e791e6", + "service_entries": [ + { + "_create_time": 1724279988850, + "_create_user": "system", + "_last_modified_time": 1724279988850, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "119" + ], + "display_name": "NNTP", + "id": "NNTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/NNTP", + "path": "/infra/services/NNTP/service-entries/NNTP", + "realization_id": "999a85a2-1c95-4f40-bafa-d11885665eca", + "relative_path": "NNTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "999a85a2-1c95-4f40-bafa-d11885665eca" + } + ] + }, + { + "_create_time": 1724279989172, + "_create_user": "system", + "_last_modified_time": 1724279989172, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "NNTP_SSL", + "display_name": "NNTP_SSL", + "id": "NNTP_SSL", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/NNTP_SSL", + "realization_id": "ceec7a94-824c-4740-b3c2-0dc9ce2cc34a", + "relative_path": "NNTP_SSL", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "ceec7a94-824c-4740-b3c2-0dc9ce2cc34a", + "service_entries": [ + { + "_create_time": 1724279989177, + "_create_user": "system", + "_last_modified_time": 1724279989177, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "563" + ], + "display_name": "NNTP_SSL", + "id": "NNTP_SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/NNTP_SSL", + "path": "/infra/services/NNTP_SSL/service-entries/NNTP_SSL", + "realization_id": "6bc0e183-021a-48a3-be7d-a64d1f339b52", + "relative_path": "NNTP_SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "6bc0e183-021a-48a3-be7d-a64d1f339b52" + } + ] + }, + { + "_create_time": 1724279989037, + "_create_user": "system", + "_last_modified_time": 1724279989037, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "NTP", + "display_name": "NTP", + "id": "NTP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/NTP", + "realization_id": "6e67bf30-743d-4dd9-b9fd-983ec02e6241", + "relative_path": "NTP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "6e67bf30-743d-4dd9-b9fd-983ec02e6241", + "service_entries": [ + { + "_create_time": 1724279989037, + "_create_user": "system", + "_last_modified_time": 1724279989037, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "123" + ], + "display_name": "NTP", + "id": "NTP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/NTP", + "path": "/infra/services/NTP/service-entries/NTP", + "realization_id": "2e11f246-53ba-41d6-a63b-e6bbe6946363", + "relative_path": "NTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "2e11f246-53ba-41d6-a63b-e6bbe6946363" + } + ] + }, + { + "_create_time": 1724279989199, + "_create_user": "system", + "_last_modified_time": 1724279989199, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "NTP Time Server", + "display_name": "NTP Time Server", + "id": "NTP_Time_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/NTP_Time_Server", + "realization_id": "8700bd49-fb95-40c6-9449-6cd3bbf0c0e6", + "relative_path": "NTP_Time_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "8700bd49-fb95-40c6-9449-6cd3bbf0c0e6", + "service_entries": [ + { + "_create_time": 1724279989199, + "_create_user": "system", + "_last_modified_time": 1724279989199, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "123" + ], + "display_name": "NTP Time Server", + "id": "NTP_Time_Server", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/NTP_Time_Server", + "path": "/infra/services/NTP_Time_Server/service-entries/NTP_Time_Server", + "realization_id": "d4d34e53-aa8e-4439-b582-42b6de080a9d", + "relative_path": "NTP_Time_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "d4d34e53-aa8e-4439-b582-42b6de080a9d" + } + ] + }, + { + "_create_time": 1724279989007, + "_create_user": "system", + "_last_modified_time": 1724279989007, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "NetBios Datagram (TCP)", + "display_name": "NetBios Datagram (TCP)", + "id": "NetBios_Datagram_(TCP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/NetBios_Datagram_(TCP)", + "realization_id": "1965f2fc-6a19-4243-b165-a90fd96bff3b", + "relative_path": "NetBios_Datagram_(TCP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "1965f2fc-6a19-4243-b165-a90fd96bff3b", + "service_entries": [ + { + "_create_time": 1724279989008, + "_create_user": "system", + "_last_modified_time": 1724279989008, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "138" + ], + "display_name": "NetBios Datagram (TCP)", + "id": "NetBios_Datagram_(TCP)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/NetBios_Datagram_(TCP)", + "path": "/infra/services/NetBios_Datagram_(TCP)/service-entries/NetBios_Datagram_(TCP)", + "realization_id": "6c15d7e5-7381-4e15-9f9e-cccb03de047f", + "relative_path": "NetBios_Datagram_(TCP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "6c15d7e5-7381-4e15-9f9e-cccb03de047f" + } + ] + }, + { + "_create_time": 1724279988964, + "_create_user": "system", + "_last_modified_time": 1724279988964, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "NetBios Datagram (UDP)", + "display_name": "NetBios Datagram (UDP)", + "id": "NetBios_Datagram_(UDP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/NetBios_Datagram_(UDP)", + "realization_id": "7f66ab1d-306e-4524-b031-32d518ce4782", + "relative_path": "NetBios_Datagram_(UDP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "7f66ab1d-306e-4524-b031-32d518ce4782", + "service_entries": [ + { + "_create_time": 1724279988964, + "_create_user": "system", + "_last_modified_time": 1724279988964, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "138" + ], + "display_name": "NetBios Datagram (UDP)", + "id": "NetBios_Datagram_(UDP)", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/NetBios_Datagram_(UDP)", + "path": "/infra/services/NetBios_Datagram_(UDP)/service-entries/NetBios_Datagram_(UDP)", + "realization_id": "d30e812e-916f-4069-affc-a74c2f0649dd", + "relative_path": "NetBios_Datagram_(UDP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "d30e812e-916f-4069-affc-a74c2f0649dd" + } + ] + }, + { + "_create_time": 1724279989040, + "_create_user": "system", + "_last_modified_time": 1724279989040, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "NetBios Name Service (TCP)", + "display_name": "NetBios Name Service (TCP)", + "id": "NetBios_Name_Service_(TCP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/NetBios_Name_Service_(TCP)", + "realization_id": "d9320079-3e9f-4359-8b87-761c6559046e", + "relative_path": "NetBios_Name_Service_(TCP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "d9320079-3e9f-4359-8b87-761c6559046e", + "service_entries": [ + { + "_create_time": 1724279989040, + "_create_user": "system", + "_last_modified_time": 1724279989040, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "137" + ], + "display_name": "NetBios Name Service (TCP)", + "id": "NetBios_Name_Service_(TCP)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/NetBios_Name_Service_(TCP)", + "path": "/infra/services/NetBios_Name_Service_(TCP)/service-entries/NetBios_Name_Service_(TCP)", + "realization_id": "22134895-67c5-4a8b-a818-b0e9e6b5d877", + "relative_path": "NetBios_Name_Service_(TCP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "22134895-67c5-4a8b-a818-b0e9e6b5d877" + } + ] + }, + { + "_create_time": 1724279989086, + "_create_user": "system", + "_last_modified_time": 1724279989086, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "NetBios Name Service (UDP)", + "display_name": "NetBios Name Service (UDP)", + "id": "NetBios_Name_Service_(UDP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/NetBios_Name_Service_(UDP)", + "realization_id": "278f953c-d043-438b-8a37-0487d9f83aa0", + "relative_path": "NetBios_Name_Service_(UDP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "278f953c-d043-438b-8a37-0487d9f83aa0", + "service_entries": [ + { + "_create_time": 1724279989086, + "_create_user": "system", + "_last_modified_time": 1724279989086, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "137" + ], + "display_name": "NetBios Name Service (UDP)", + "id": "NetBios_Name_Service_(UDP)", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/NetBios_Name_Service_(UDP)", + "path": "/infra/services/NetBios_Name_Service_(UDP)/service-entries/NetBios_Name_Service_(UDP)", + "realization_id": "42392009-f1ff-4a2a-8513-58d128a689a2", + "relative_path": "NetBios_Name_Service_(UDP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "42392009-f1ff-4a2a-8513-58d128a689a2" + } + ] + }, + { + "_create_time": 1724279988974, + "_create_user": "system", + "_last_modified_time": 1724279988974, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "NetBios Session Service (TCP)", + "display_name": "NetBios Session Service (TCP)", + "id": "NetBios_Session_Service_(TCP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/NetBios_Session_Service_(TCP)", + "realization_id": "6c5868d6-d97f-4742-971b-77525dd06b43", + "relative_path": "NetBios_Session_Service_(TCP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "6c5868d6-d97f-4742-971b-77525dd06b43", + "service_entries": [ + { + "_create_time": 1724279988974, + "_create_user": "system", + "_last_modified_time": 1724279988974, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "139" + ], + "display_name": "NetBios Session Service (TCP)", + "id": "NetBios_Session_Service_(TCP)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/NetBios_Session_Service_(TCP)", + "path": "/infra/services/NetBios_Session_Service_(TCP)/service-entries/NetBios_Session_Service_(TCP)", + "realization_id": "b41583f4-e0f0-4263-82df-99dd5f17b624", + "relative_path": "NetBios_Session_Service_(TCP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b41583f4-e0f0-4263-82df-99dd5f17b624" + } + ] + }, + { + "_create_time": 1724279988957, + "_create_user": "system", + "_last_modified_time": 1724279988957, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "NetBios Session Service (UDP)", + "display_name": "NetBios Session Service (UDP)", + "id": "NetBios_Session_Service_(UDP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/NetBios_Session_Service_(UDP)", + "realization_id": "048d7e04-3bdc-4454-afee-577b7815a544", + "relative_path": "NetBios_Session_Service_(UDP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "048d7e04-3bdc-4454-afee-577b7815a544", + "service_entries": [ + { + "_create_time": 1724279988957, + "_create_user": "system", + "_last_modified_time": 1724279988957, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "139" + ], + "display_name": "NetBios Session Service (UDP)", + "id": "NetBios_Session_Service_(UDP)", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/NetBios_Session_Service_(UDP)", + "path": "/infra/services/NetBios_Session_Service_(UDP)/service-entries/NetBios_Session_Service_(UDP)", + "realization_id": "39d41f24-dbb4-436d-b772-f2aa1423fac4", + "relative_path": "NetBios_Session_Service_(UDP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "39d41f24-dbb4-436d-b772-f2aa1423fac4" + } + ] + }, + { + "_create_time": 1724279988930, + "_create_user": "system", + "_last_modified_time": 1724279988930, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "OC4J Forms / Reports Instance", + "display_name": "OC4J Forms / Reports Instance", + "id": "OC4J_Forms_-_Reports_Instance", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/OC4J_Forms_-_Reports_Instance", + "realization_id": "ce19bdf1-c069-4369-b93b-36389a94fc62", + "relative_path": "OC4J_Forms_-_Reports_Instance", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "ce19bdf1-c069-4369-b93b-36389a94fc62", + "service_entries": [ + { + "_create_time": 1724279988930, + "_create_user": "system", + "_last_modified_time": 1724279988930, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8888" + ], + "display_name": "OC4J Forms / Reports Instance", + "id": "OC4J_Forms_-_Reports_Instance", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/OC4J_Forms_-_Reports_Instance", + "path": "/infra/services/OC4J_Forms_-_Reports_Instance/service-entries/OC4J_Forms_-_Reports_Instance", + "realization_id": "c4f7708a-eacf-4430-9fcc-9abfa7b2c436", + "relative_path": "OC4J_Forms_-_Reports_Instance", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c4f7708a-eacf-4430-9fcc-9abfa7b2c436" + } + ] + }, + { + "_create_time": 1724279989179, + "_create_user": "system", + "_last_modified_time": 1724279989179, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "OC4J Forms / Reports Instance (8889)", + "display_name": "OC4J Forms / Reports Instance (8889)", + "id": "OC4J_Forms_-_Reports_Instance_(8889)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/OC4J_Forms_-_Reports_Instance_(8889)", + "realization_id": "277cf8a6-f05d-4020-ada8-24c81c73d70d", + "relative_path": "OC4J_Forms_-_Reports_Instance_(8889)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "277cf8a6-f05d-4020-ada8-24c81c73d70d", + "service_entries": [ + { + "_create_time": 1724279989179, + "_create_user": "system", + "_last_modified_time": 1724279989179, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8889" + ], + "display_name": "OC4J Forms / Reports Instance (8889)", + "id": "OC4J_Forms_-_Reports_Instance_(8889)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/OC4J_Forms_-_Reports_Instance_(8889)", + "path": "/infra/services/OC4J_Forms_-_Reports_Instance_(8889)/service-entries/OC4J_Forms_-_Reports_Instance_(8889)", + "realization_id": "b9e1949b-6eb3-4ba1-a450-05a3e5f75e2b", + "relative_path": "OC4J_Forms_-_Reports_Instance_(8889)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b9e1949b-6eb3-4ba1-a450-05a3e5f75e2b" + } + ] + }, + { + "_create_time": 1724279989079, + "_create_user": "system", + "_last_modified_time": 1724279989079, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "ORACLE-FORM-SERVICES", + "display_name": "ORACLE-FORM-SERVICES", + "id": "ORACLE-FORM-SERVICES", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/ORACLE-FORM-SERVICES", + "realization_id": "71ccd73c-a677-4bb1-8e3b-c2bf4de787ab", + "relative_path": "ORACLE-FORM-SERVICES", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "71ccd73c-a677-4bb1-8e3b-c2bf4de787ab", + "service_entries": [ + { + "_create_time": 1724279989079, + "_create_user": "system", + "_last_modified_time": 1724279989079, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9000" + ], + "display_name": "ORACLE-FORM-SERVICES", + "id": "ORACLE-FORM-SERVICES", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/ORACLE-FORM-SERVICES", + "path": "/infra/services/ORACLE-FORM-SERVICES/service-entries/ORACLE-FORM-SERVICES", + "realization_id": "2aa4e32f-194b-4454-a703-ba533f88e620", + "relative_path": "ORACLE-FORM-SERVICES", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "2aa4e32f-194b-4454-a703-ba533f88e620" + } + ] + }, + { + "_create_time": 1724279989080, + "_create_user": "system", + "_last_modified_time": 1724279989080, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "ORACLE-HTTP", + "display_name": "ORACLE-HTTP", + "id": "ORACLE-HTTP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/ORACLE-HTTP", + "realization_id": "132eaa92-e2a1-4d55-8389-868676d47590", + "relative_path": "ORACLE-HTTP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "132eaa92-e2a1-4d55-8389-868676d47590", + "service_entries": [ + { + "_create_time": 1724279989080, + "_create_user": "system", + "_last_modified_time": 1724279989080, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "7777" + ], + "display_name": "ORACLE-HTTP", + "id": "ORACLE-HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/ORACLE-HTTP", + "path": "/infra/services/ORACLE-HTTP/service-entries/ORACLE-HTTP", + "realization_id": "8a26c04c-32d6-4ffc-8a19-367953fee292", + "relative_path": "ORACLE-HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8a26c04c-32d6-4ffc-8a19-367953fee292" + } + ] + }, + { + "_create_time": 1724279989078, + "_create_user": "system", + "_last_modified_time": 1724279989078, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "ORACLE-XDB-FTP", + "display_name": "ORACLE-XDB-FTP", + "id": "ORACLE-XDB-FTP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/ORACLE-XDB-FTP", + "realization_id": "894d52e7-433b-440b-a323-bf076480ab7d", + "relative_path": "ORACLE-XDB-FTP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "894d52e7-433b-440b-a323-bf076480ab7d", + "service_entries": [ + { + "_create_time": 1724279989079, + "_create_user": "system", + "_last_modified_time": 1724279989079, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2100" + ], + "display_name": "ORACLE-XDB-FTP", + "id": "ORACLE-XDB-FTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/ORACLE-XDB-FTP", + "path": "/infra/services/ORACLE-XDB-FTP/service-entries/ORACLE-XDB-FTP", + "realization_id": "8b400e82-5358-4587-acd7-93858b0d64ce", + "relative_path": "ORACLE-XDB-FTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8b400e82-5358-4587-acd7-93858b0d64ce" + } + ] + }, + { + "_create_time": 1724279988934, + "_create_user": "system", + "_last_modified_time": 1724279988934, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "ORACLE_TNS", + "display_name": "ORACLE_TNS", + "id": "ORACLE_TNS", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/ORACLE_TNS", + "realization_id": "20b88a5a-2246-4de0-8c99-7e6096dbbdff", + "relative_path": "ORACLE_TNS", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "20b88a5a-2246-4de0-8c99-7e6096dbbdff", + "service_entries": [ + { + "_create_time": 1724279988934, + "_create_user": "system", + "_last_modified_time": 1724279988934, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "ORACLE_TNS", + "destination_ports": [ + "1521" + ], + "display_name": "ORACLE_TNS", + "id": "ORACLE_TNS", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/ORACLE_TNS", + "path": "/infra/services/ORACLE_TNS/service-entries/ORACLE_TNS", + "realization_id": "4303f043-5edd-44f4-808e-fe41e3bdfa04", + "relative_path": "ORACLE_TNS", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "4303f043-5edd-44f4-808e-fe41e3bdfa04" + } + ] + }, + { + "_create_time": 1724279989179, + "_create_user": "system", + "_last_modified_time": 1724279989179, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "OS Agent", + "display_name": "OS Agent", + "id": "OS_Agent", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/OS_Agent", + "realization_id": "820b5c5d-65ef-4480-82ba-3c6b2ed1bfa8", + "relative_path": "OS_Agent", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "820b5c5d-65ef-4480-82ba-3c6b2ed1bfa8", + "service_entries": [ + { + "_create_time": 1724279989179, + "_create_user": "system", + "_last_modified_time": 1724279989179, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "14000" + ], + "display_name": "OS Agent", + "id": "OS_Agent", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/OS_Agent", + "path": "/infra/services/OS_Agent/service-entries/OS_Agent", + "realization_id": "4db00754-3809-4326-b02a-a3aca10978bd", + "relative_path": "OS_Agent", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "4db00754-3809-4326-b02a-a3aca10978bd" + } + ] + }, + { + "_create_time": 1724279989021, + "_create_user": "system", + "_last_modified_time": 1724279989021, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Office Server Web Services, HTTP, SSL", + "display_name": "Office Server Web Services, HTTP, SSL", + "id": "Office_Server_Web_Services,_HTTP,_SSL", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Office_Server_Web_Services,_HTTP,_SSL", + "realization_id": "ccbec82b-623d-419c-a182-0c2fe3a36bb4", + "relative_path": "Office_Server_Web_Services,_HTTP,_SSL", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "ccbec82b-623d-419c-a182-0c2fe3a36bb4", + "service_entries": [ + { + "_create_time": 1724279989021, + "_create_user": "system", + "_last_modified_time": 1724279989021, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "56737", + "56738" + ], + "display_name": "Office Server Web Services, HTTP, SSL", + "id": "Office_Server_Web_Services,_HTTP,_SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Office_Server_Web_Services,_HTTP,_SSL", + "path": "/infra/services/Office_Server_Web_Services,_HTTP,_SSL/service-entries/Office_Server_Web_Services,_HTTP,_SSL", + "realization_id": "6856a604-2b32-4245-a24f-1e49f2b62058", + "relative_path": "Office_Server_Web_Services,_HTTP,_SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "6856a604-2b32-4245-a24f-1e49f2b62058" + } + ] + }, + { + "_create_time": 1724279989185, + "_create_user": "system", + "_last_modified_time": 1724279989185, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Office communication server", + "display_name": "Office communication server", + "id": "Office_communication_server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Office_communication_server", + "realization_id": "b26f3f6b-7fae-46e9-af34-c8c76be4bd9f", + "relative_path": "Office_communication_server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "b26f3f6b-7fae-46e9-af34-c8c76be4bd9f", + "service_entries": [ + { + "_create_time": 1724279989185, + "_create_user": "system", + "_last_modified_time": 1724279989185, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5075", + "5076", + "5077" + ], + "display_name": "Office communication server", + "id": "Office_communication_server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Office_communication_server", + "path": "/infra/services/Office_communication_server/service-entries/Office_communication_server", + "realization_id": "230dfa9d-e121-49f9-9c3d-dadddd1b065b", + "relative_path": "Office_communication_server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "230dfa9d-e121-49f9-9c3d-dadddd1b065b" + } + ] + }, + { + "_create_time": 1724279988987, + "_create_user": "system", + "_last_modified_time": 1724279988987, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle", + "display_name": "Oracle", + "id": "Oracle", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle", + "realization_id": "c5edad26-a5b7-4ad2-ac5f-909772e6ba7a", + "relative_path": "Oracle", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "c5edad26-a5b7-4ad2-ac5f-909772e6ba7a", + "service_entries": [ + { + "_create_time": 1724279988987, + "_create_user": "system", + "_last_modified_time": 1724279988987, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1521" + ], + "display_name": "Oracle", + "id": "Oracle", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle", + "path": "/infra/services/Oracle/service-entries/Oracle", + "realization_id": "3bb6713b-756e-439a-9ccd-7171f685c6e2", + "relative_path": "Oracle", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3bb6713b-756e-439a-9ccd-7171f685c6e2" + } + ] + }, + { + "_create_time": 1724279993029, + "_create_user": "system", + "_last_modified_time": 1724279993029, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Application Server", + "display_name": "Oracle Application Server", + "id": "Oracle_Application_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Application_Server", + "realization_id": "58247e63-8ce3-477a-94cb-5ddb1f2b3c6a", + "relative_path": "Oracle_Application_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "58247e63-8ce3-477a-94cb-5ddb1f2b3c6a", + "service_entries": [ + { + "_create_time": 1724279993819, + "_create_user": "system", + "_last_modified_time": 1724279993819, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4443" + ], + "display_name": "Oracle HTTP Server SSL port", + "id": "Oracle_HTTP_Server_SSL_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_HTTP_Server_SSL_port", + "realization_id": "69c0fd96-c499-4513-8902-14c6b15d3c42", + "relative_path": "Oracle_HTTP_Server_SSL_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "69c0fd96-c499-4513-8902-14c6b15d3c42" + }, + { + "_create_time": 1724279993486, + "_create_user": "system", + "_last_modified_time": 1724279993486, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3701" + ], + "display_name": "Oracle OC4J JMS", + "id": "Oracle_OC4J_JMS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_OC4J_JMS", + "realization_id": "98aed01f-1e8a-43a5-b5c1-b4e78d7ccc78", + "relative_path": "Oracle_OC4J_JMS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "98aed01f-1e8a-43a5-b5c1-b4e78d7ccc78" + }, + { + "_create_time": 1724279993109, + "_create_user": "system", + "_last_modified_time": 1724279993109, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "6100" + ], + "display_name": "Oracle Notification Service local port", + "id": "Oracle_Notification_Service_local_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_Notification_Service_local_port", + "realization_id": "de8217c2-5eff-4dbf-af7b-032fecd3319e", + "relative_path": "Oracle_Notification_Service_local_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "de8217c2-5eff-4dbf-af7b-032fecd3319e" + }, + { + "_create_time": 1724279994065, + "_create_user": "system", + "_last_modified_time": 1724279994065, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3201" + ], + "display_name": "Oracle OC4J RMI", + "id": "Oracle_OC4J_RMI", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_OC4J_RMI", + "realization_id": "2fad931c-3ffa-40d0-84bd-4dd572e93ca4", + "relative_path": "Oracle_OC4J_RMI", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "2fad931c-3ffa-40d0-84bd-4dd572e93ca4" + }, + { + "_create_time": 1724279993604, + "_create_user": "system", + "_last_modified_time": 1724279993604, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "7501" + ], + "display_name": "Oracle HTTP Server Port Tunneling", + "id": "Oracle_HTTP_Server_Port_Tunneling", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_HTTP_Server_Port_Tunneling", + "realization_id": "5c82918b-4388-4b53-8851-f1eeb72e31ba", + "relative_path": "Oracle_HTTP_Server_Port_Tunneling", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5c82918b-4388-4b53-8851-f1eeb72e31ba" + }, + { + "_create_time": 1724279994222, + "_create_user": "system", + "_last_modified_time": 1724279994222, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4444" + ], + "display_name": "Oracle9iAS Web Cache HTTP Listen(SSL) port", + "id": "Oracle9iAS_Web_Cache_HTTP_Listen(SSL)_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle9iAS_Web_Cache_HTTP_Listen(SSL)_port", + "realization_id": "c3da1b78-79a6-48e2-bd3b-b751c99baf1b", + "relative_path": "Oracle9iAS_Web_Cache_HTTP_Listen(SSL)_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c3da1b78-79a6-48e2-bd3b-b751c99baf1b" + }, + { + "_create_time": 1724279993676, + "_create_user": "system", + "_last_modified_time": 1724279993676, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4401" + ], + "display_name": "OracleAS Certificate Authority (OCA) - Mutual Authentication", + "id": "OracleAS_Certificate_Authority_(OCA)_-_Mutual_Authentication", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/OracleAS_Certificate_Authority_(OCA)_-_Mutual_Authentication", + "realization_id": "132a9698-107b-4182-b250-0d2330118863", + "relative_path": "OracleAS_Certificate_Authority_(OCA)_-_Mutual_Authentication", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "132a9698-107b-4182-b250-0d2330118863" + }, + { + "_create_time": 1724279993392, + "_create_user": "system", + "_last_modified_time": 1724279993392, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3601" + ], + "display_name": "Oracle OC4J IIOPS2", + "id": "Oracle_OC4J_IIOPS2", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_OC4J_IIOPS2", + "realization_id": "83507ded-ad55-4100-963a-21313457f9fd", + "relative_path": "Oracle_OC4J_IIOPS2", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "83507ded-ad55-4100-963a-21313457f9fd" + }, + { + "_create_time": 1724279994273, + "_create_user": "system", + "_last_modified_time": 1724279994273, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1809" + ], + "display_name": "Oracle Intelligent Agent (1809)", + "id": "Oracle_Intelligent_Agent_(1809)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_Intelligent_Agent_(1809)", + "realization_id": "af732540-40c2-4029-9007-5217fa89c886", + "relative_path": "Oracle_Intelligent_Agent_(1809)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "af732540-40c2-4029-9007-5217fa89c886" + }, + { + "_create_time": 1724279993780, + "_create_user": "system", + "_last_modified_time": 1724279993780, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3501" + ], + "display_name": "Oracle OC4J IIOPS1", + "id": "Oracle_OC4J_IIOPS1", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_OC4J_IIOPS1", + "realization_id": "99bbfa34-a10a-47a1-b786-afbce5dff50a", + "relative_path": "Oracle_OC4J_IIOPS1", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "99bbfa34-a10a-47a1-b786-afbce5dff50a" + }, + { + "_create_time": 1724279994153, + "_create_user": "system", + "_last_modified_time": 1724279994153, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9000" + ], + "display_name": "Oracle Forms Server 6 / 6i", + "id": "Oracle_Forms_Server_6_-_6i", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_Forms_Server_6_-_6i", + "realization_id": "91b52af2-c4c1-4228-a90e-8524f605403f", + "relative_path": "Oracle_Forms_Server_6_-_6i", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "91b52af2-c4c1-4228-a90e-8524f605403f" + }, + { + "_create_time": 1724279993566, + "_create_user": "system", + "_last_modified_time": 1724279993566, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "7000" + ], + "display_name": "Java Object Cache port", + "id": "Java_Object_Cache_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Java_Object_Cache_port", + "realization_id": "62f4393c-782c-4274-9865-fb8deeeefcb3", + "relative_path": "Java_Object_Cache_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "62f4393c-782c-4274-9865-fb8deeeefcb3" + }, + { + "_create_time": 1724279993734, + "_create_user": "system", + "_last_modified_time": 1724279993734, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4400" + ], + "display_name": "OracleAS Certificate Authority (OCA) - Server Authentication", + "id": "OracleAS_Certificate_Authority_(OCA)_-_Server_Authentication", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/OracleAS_Certificate_Authority_(OCA)_-_Server_Authentication", + "realization_id": "67f457c3-d9cd-4a82-a688-cf491b7c4f36", + "relative_path": "OracleAS_Certificate_Authority_(OCA)_-_Server_Authentication", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "67f457c3-d9cd-4a82-a688-cf491b7c4f36" + }, + { + "_create_time": 1724279993507, + "_create_user": "system", + "_last_modified_time": 1724279993507, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "6668" + ], + "display_name": "Oracle9iAS Clickstream Collector Agent", + "id": "Oracle9iAS_Clickstream_Collector_Agent", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle9iAS_Clickstream_Collector_Agent", + "realization_id": "a97e900a-418d-4ae6-b376-cfb91b7e95e4", + "relative_path": "Oracle9iAS_Clickstream_Collector_Agent", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a97e900a-418d-4ae6-b376-cfb91b7e95e4" + }, + { + "_create_time": 1724279993986, + "_create_user": "system", + "_last_modified_time": 1724279993986, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "636" + ], + "display_name": "Oracle Internet Directory(SSL)", + "id": "Oracle_Internet_Directory(SSL)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_Internet_Directory(SSL)", + "realization_id": "426530d7-1906-4998-8d7f-786f03d3c63c", + "relative_path": "Oracle_Internet_Directory(SSL)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "426530d7-1906-4998-8d7f-786f03d3c63c" + }, + { + "_create_time": 1724279993340, + "_create_user": "system", + "_last_modified_time": 1724279993340, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4001" + ], + "display_name": "Oracle9iAS Web Cache Invalidation port", + "id": "Oracle9iAS_Web_Cache_Invalidation_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle9iAS_Web_Cache_Invalidation_port", + "realization_id": "a3c35fd4-d1aa-44a0-bdca-8e6b0e2637bc", + "relative_path": "Oracle9iAS_Web_Cache_Invalidation_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a3c35fd4-d1aa-44a0-bdca-8e6b0e2637bc" + }, + { + "_create_time": 1724279993936, + "_create_user": "system", + "_last_modified_time": 1724279993936, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3301" + ], + "display_name": "Oracle OC4J AJP", + "id": "Oracle_OC4J_AJP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_OC4J_AJP", + "realization_id": "744a91a4-7b9b-4b2b-86e9-965dfbbf1d75", + "relative_path": "Oracle_OC4J_AJP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "744a91a4-7b9b-4b2b-86e9-965dfbbf1d75" + }, + { + "_create_time": 1724279993324, + "_create_user": "system", + "_last_modified_time": 1724279993324, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "6003" + ], + "display_name": "Oracle Notification Service request port", + "id": "Oracle_Notification_Service_request_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_Notification_Service_request_port", + "realization_id": "01611882-0786-4b2f-812b-e91746f9cd66", + "relative_path": "Oracle_Notification_Service_request_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "01611882-0786-4b2f-812b-e91746f9cd66" + }, + { + "_create_time": 1724279994251, + "_create_user": "system", + "_last_modified_time": 1724279994251, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "14000" + ], + "display_name": "OS Agent", + "id": "OS_Agent", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/OS_Agent", + "realization_id": "4db00754-3809-4326-b02a-a3aca10978bd", + "relative_path": "OS_Agent", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "4db00754-3809-4326-b02a-a3aca10978bd" + }, + { + "_create_time": 1724279993914, + "_create_user": "system", + "_last_modified_time": 1724279993914, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3339" + ], + "display_name": "Enterprise Manager Reporting port", + "id": "Enterprise_Manager_Reporting_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Enterprise_Manager_Reporting_port", + "realization_id": "4176f17f-04ec-4125-85b7-8639a2a14c00", + "relative_path": "Enterprise_Manager_Reporting_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "4176f17f-04ec-4125-85b7-8639a2a14c00" + }, + { + "_create_time": 1724279994178, + "_create_user": "system", + "_last_modified_time": 1724279994178, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9998" + ], + "display_name": "Oracle SOAP Server", + "id": "Oracle_SOAP_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_SOAP_Server", + "realization_id": "3b5f8430-f3c8-46ee-a9dd-71ab7f3848dc", + "relative_path": "Oracle_SOAP_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3b5f8430-f3c8-46ee-a9dd-71ab7f3848dc" + }, + { + "_create_time": 1724279993644, + "_create_user": "system", + "_last_modified_time": 1724279993644, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "7778" + ], + "display_name": "Oracle HTTP Server listen port", + "id": "Oracle_HTTP_Server_listen_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_HTTP_Server_listen_port", + "realization_id": "e18d530a-12a6-4fa3-9bf7-87ae44c5cf05", + "relative_path": "Oracle_HTTP_Server_listen_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "e18d530a-12a6-4fa3-9bf7-87ae44c5cf05" + }, + { + "_create_time": 1724279993135, + "_create_user": "system", + "_last_modified_time": 1724279993135, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4002" + ], + "display_name": "Oracle9iAS Web Cache Statistics port", + "id": "Oracle9iAS_Web_Cache_Statistics_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle9iAS_Web_Cache_Statistics_port", + "realization_id": "995d1596-4dcd-4b61-bac4-110bd3196fcb", + "relative_path": "Oracle9iAS_Web_Cache_Statistics_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "995d1596-4dcd-4b61-bac4-110bd3196fcb" + }, + { + "_create_time": 1724279994094, + "_create_user": "system", + "_last_modified_time": 1724279994094, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8007" + ], + "display_name": "Oracle HTTP Server Jserv port", + "id": "Oracle_HTTP_Server_Jserv_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_HTTP_Server_Jserv_port", + "realization_id": "b5e4489c-95ec-4ef7-88fb-454fd1f9cc4f", + "relative_path": "Oracle_HTTP_Server_Jserv_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b5e4489c-95ec-4ef7-88fb-454fd1f9cc4f" + }, + { + "_create_time": 1724279993306, + "_create_user": "system", + "_last_modified_time": 1724279993306, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4000" + ], + "display_name": "Oracle9iAS Web Cache Admin port", + "id": "Oracle9iAS_Web_Cache_Admin_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle9iAS_Web_Cache_Admin_port", + "realization_id": "dc260c7e-936a-4bcb-bbd9-a34697961c47", + "relative_path": "Oracle9iAS_Web_Cache_Admin_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "dc260c7e-936a-4bcb-bbd9-a34697961c47" + }, + { + "_create_time": 1724279993894, + "_create_user": "system", + "_last_modified_time": 1724279993894, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1808" + ], + "display_name": "Oracle Intelligent Agent (1808)", + "id": "Oracle_Intelligent_Agent_(1808)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_Intelligent_Agent_(1808)", + "realization_id": "821dd3d3-7adc-4bdd-a693-05b78eae20ed", + "relative_path": "Oracle_Intelligent_Agent_(1808)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "821dd3d3-7adc-4bdd-a693-05b78eae20ed" + }, + { + "_create_time": 1724279993073, + "_create_user": "system", + "_last_modified_time": 1724279993073, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "7100" + ], + "display_name": "DCM Java Object Cache port", + "id": "DCM_Java_Object_Cache_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/DCM_Java_Object_Cache_port", + "realization_id": "efeb7655-5299-45ba-bd6a-924cbad4c9f5", + "relative_path": "DCM_Java_Object_Cache_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "efeb7655-5299-45ba-bd6a-924cbad4c9f5" + }, + { + "_create_time": 1724279993429, + "_create_user": "system", + "_last_modified_time": 1724279993429, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "7200" + ], + "display_name": "Oracle HTTP Server Diagnostic Port", + "id": "Oracle_HTTP_Server_Diagnostic_Port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_HTTP_Server_Diagnostic_Port", + "realization_id": "a84894af-9766-4aab-b6fa-da3ab417d108", + "relative_path": "Oracle_HTTP_Server_Diagnostic_Port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a84894af-9766-4aab-b6fa-da3ab417d108" + }, + { + "_create_time": 1724279994297, + "_create_user": "system", + "_last_modified_time": 1724279994297, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "7779" + ], + "display_name": "Oracle9iAS Web Cache HTTP Listen(non-SSL) port", + "id": "Oracle9iAS_Web_Cache_HTTP_Listen(non-SSL)_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle9iAS_Web_Cache_HTTP_Listen(non-SSL)_port", + "realization_id": "e4b8f7c1-2259-4dfe-8add-a33f523532f9", + "relative_path": "Oracle9iAS_Web_Cache_HTTP_Listen(non-SSL)_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "e4b8f7c1-2259-4dfe-8add-a33f523532f9" + }, + { + "_create_time": 1724279993162, + "_create_user": "system", + "_last_modified_time": 1724279993162, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "6200" + ], + "display_name": "Oracle Notification Service remote port", + "id": "Oracle_Notification_Service_remote_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_Notification_Service_remote_port", + "realization_id": "227388d0-691f-4bfc-b74f-0738a458567b", + "relative_path": "Oracle_Notification_Service_remote_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "227388d0-691f-4bfc-b74f-0738a458567b" + }, + { + "_create_time": 1724279993751, + "_create_user": "system", + "_last_modified_time": 1724279993751, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1748" + ], + "display_name": "Oracle Intelligent Agent (1748)", + "id": "Oracle_Intelligent_Agent_(1748)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_Intelligent_Agent_(1748)", + "realization_id": "487e0bdd-2442-4c3a-bd25-a0f176c2b336", + "relative_path": "Oracle_Intelligent_Agent_(1748)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "487e0bdd-2442-4c3a-bd25-a0f176c2b336" + }, + { + "_create_time": 1724279993661, + "_create_user": "system", + "_last_modified_time": 1724279993661, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "7777" + ], + "display_name": "Oracle HTTP Server port", + "id": "Oracle_HTTP_Server_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_HTTP_Server_port", + "realization_id": "f20fd351-adac-4dc2-8cfc-e21f751546df", + "relative_path": "Oracle_HTTP_Server_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f20fd351-adac-4dc2-8cfc-e21f751546df" + }, + { + "_create_time": 1724279994035, + "_create_user": "system", + "_last_modified_time": 1724279994035, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1754" + ], + "display_name": "Oracle Intelligent Agent (1754)", + "id": "Oracle_Intelligent_Agent_(1754)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_Intelligent_Agent_(1754)", + "realization_id": "3daba953-4dbc-4672-ae0b-b4fe91b13a91", + "relative_path": "Oracle_Intelligent_Agent_(1754)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3daba953-4dbc-4672-ae0b-b4fe91b13a91" + }, + { + "_create_time": 1724279993710, + "_create_user": "system", + "_last_modified_time": 1724279993710, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4032" + ], + "display_name": "Oracle Internet Directory(non-SSL, 4032)", + "id": "Oracle_Internet_Directory(non-SSL,_4032)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_Internet_Directory(non-SSL,_4032)", + "realization_id": "61c6d6f7-cf45-433c-ac7e-2d1de77cf2b2", + "relative_path": "Oracle_Internet_Directory(non-SSL,_4032)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "61c6d6f7-cf45-433c-ac7e-2d1de77cf2b2" + }, + { + "_create_time": 1724279993868, + "_create_user": "system", + "_last_modified_time": 1724279993868, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3401" + ], + "display_name": "Oracle OC4J IIOP", + "id": "Oracle_OC4J_IIOP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_OC4J_IIOP", + "realization_id": "b1fe65e3-6172-41aa-ace2-f02e9e041540", + "relative_path": "Oracle_OC4J_IIOP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b1fe65e3-6172-41aa-ace2-f02e9e041540" + }, + { + "_create_time": 1724279993245, + "_create_user": "system", + "_last_modified_time": 1724279993245, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "Oracle Internet Directory(non-SSL)", + "id": "Oracle_Internet_Directory(non-SSL)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_Internet_Directory(non-SSL)", + "realization_id": "00b8054c-deaa-4fd0-b454-28d49c20b59c", + "relative_path": "Oracle_Internet_Directory(non-SSL)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "00b8054c-deaa-4fd0-b454-28d49c20b59c" + }, + { + "_create_time": 1724279993190, + "_create_user": "system", + "_last_modified_time": 1724279993190, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4031" + ], + "display_name": "Oracle Internet Directory(SSL, 4031)", + "id": "Oracle_Internet_Directory(SSL,_4031)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Application_Server", + "path": "/infra/services/Oracle_Application_Server/service-entries/Oracle_Internet_Directory(SSL,_4031)", + "realization_id": "cf97c5ff-33d8-4b9c-b7fd-81f781950b77", + "relative_path": "Oracle_Internet_Directory(SSL,_4031)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "cf97c5ff-33d8-4b9c-b7fd-81f781950b77" + } + ] + }, + { + "_create_time": 1724279989102, + "_create_user": "system", + "_last_modified_time": 1724279989102, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Connection Manager (CMAN)", + "display_name": "Oracle Connection Manager (CMAN)", + "id": "Oracle_Connection_Manager_(CMAN)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Connection_Manager_(CMAN)", + "realization_id": "9d63bffd-b41d-4528-b51b-d9621d9c279d", + "relative_path": "Oracle_Connection_Manager_(CMAN)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "9d63bffd-b41d-4528-b51b-d9621d9c279d", + "service_entries": [ + { + "_create_time": 1724279989103, + "_create_user": "system", + "_last_modified_time": 1724279989103, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1630" + ], + "display_name": "Oracle Connection Manager (CMAN)", + "id": "Oracle_Connection_Manager_(CMAN)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Connection_Manager_(CMAN)", + "path": "/infra/services/Oracle_Connection_Manager_(CMAN)/service-entries/Oracle_Connection_Manager_(CMAN)", + "realization_id": "f8514166-94c5-4adc-a19a-bfc186421c74", + "relative_path": "Oracle_Connection_Manager_(CMAN)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f8514166-94c5-4adc-a19a-bfc186421c74" + } + ] + }, + { + "_create_time": 1724279988996, + "_create_user": "system", + "_last_modified_time": 1724279988996, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Connection Manager Admin (CMAN)", + "display_name": "Oracle Connection Manager Admin (CMAN)", + "id": "Oracle_Connection_Manager_Admin_(CMAN)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Connection_Manager_Admin_(CMAN)", + "realization_id": "73046e63-d6d7-4e1e-b32a-32b2768165d5", + "relative_path": "Oracle_Connection_Manager_Admin_(CMAN)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "73046e63-d6d7-4e1e-b32a-32b2768165d5", + "service_entries": [ + { + "_create_time": 1724279988996, + "_create_user": "system", + "_last_modified_time": 1724279988996, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1830" + ], + "display_name": "Oracle Connection Manager Admin (CMAN)", + "id": "Oracle_Connection_Manager_Admin_(CMAN)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Connection_Manager_Admin_(CMAN)", + "path": "/infra/services/Oracle_Connection_Manager_Admin_(CMAN)/service-entries/Oracle_Connection_Manager_Admin_(CMAN)", + "realization_id": "fdcaf62b-f5fe-4e60-baec-0deec4840257", + "relative_path": "Oracle_Connection_Manager_Admin_(CMAN)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "fdcaf62b-f5fe-4e60-baec-0deec4840257" + } + ] + }, + { + "_create_time": 1724279998287, + "_create_user": "system", + "_last_modified_time": 1724279998287, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Database", + "display_name": "Oracle Database", + "id": "Oracle_Database", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Database", + "realization_id": "d614fdf2-5601-4cd5-83ca-4228bd687405", + "relative_path": "Oracle_Database", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "d614fdf2-5601-4cd5-83ca-4228bd687405", + "service_entries": [ + { + "_create_time": 1724279998375, + "_create_user": "system", + "_last_modified_time": 1724279998375, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1521" + ], + "display_name": "Oracle Net Listener / Enterprise Manager Repository port", + "id": "Oracle_Net_Listener_-_Enterprise_Manager_Repository_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Database", + "path": "/infra/services/Oracle_Database/service-entries/Oracle_Net_Listener_-_Enterprise_Manager_Repository_port", + "realization_id": "319a74f1-8420-473d-96ca-8a8aa8767a0f", + "relative_path": "Oracle_Net_Listener_-_Enterprise_Manager_Repository_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "319a74f1-8420-473d-96ca-8a8aa8767a0f" + }, + { + "_create_time": 1724279998429, + "_create_user": "system", + "_last_modified_time": 1724279998429, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2100" + ], + "display_name": "Oracle XMLDB FTP Port", + "id": "Oracle_XMLDB_FTP_Port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Database", + "path": "/infra/services/Oracle_Database/service-entries/Oracle_XMLDB_FTP_Port", + "realization_id": "241d2d3c-b29d-4751-aaeb-e0ce2add9ed2", + "relative_path": "Oracle_XMLDB_FTP_Port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "241d2d3c-b29d-4751-aaeb-e0ce2add9ed2" + }, + { + "_create_time": 1724279998414, + "_create_user": "system", + "_last_modified_time": 1724279998414, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2482" + ], + "display_name": "Oracle GIOP IIOP for SSL", + "id": "Oracle_GIOP_IIOP_for_SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Database", + "path": "/infra/services/Oracle_Database/service-entries/Oracle_GIOP_IIOP_for_SSL", + "realization_id": "4e8ba9b8-0514-41a7-bab1-5d5d1a1a175c", + "relative_path": "Oracle_GIOP_IIOP_for_SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "4e8ba9b8-0514-41a7-bab1-5d5d1a1a175c" + }, + { + "_create_time": 1724279998346, + "_create_user": "system", + "_last_modified_time": 1724279998346, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1575" + ], + "display_name": "Oracle Names", + "id": "Oracle_Names", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Database", + "path": "/infra/services/Oracle_Database/service-entries/Oracle_Names", + "realization_id": "f22a4aa2-b080-4a29-afae-f12d4e7ff1cd", + "relative_path": "Oracle_Names", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f22a4aa2-b080-4a29-afae-f12d4e7ff1cd" + }, + { + "_create_time": 1724279998319, + "_create_user": "system", + "_last_modified_time": 1724279998319, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8080" + ], + "display_name": "Oracle XMLDB HTTP port", + "id": "Oracle_XMLDB_HTTP_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Database", + "path": "/infra/services/Oracle_Database/service-entries/Oracle_XMLDB_HTTP_port", + "realization_id": "eb813cdf-61a9-49f4-90e7-43505f69eb09", + "relative_path": "Oracle_XMLDB_HTTP_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "eb813cdf-61a9-49f4-90e7-43505f69eb09" + }, + { + "_create_time": 1724279998445, + "_create_user": "system", + "_last_modified_time": 1724279998445, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2481" + ], + "display_name": "Oracle GIOP IIOP", + "id": "Oracle_GIOP_IIOP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Database", + "path": "/infra/services/Oracle_Database/service-entries/Oracle_GIOP_IIOP", + "realization_id": "29e1d8ce-e258-4920-ab2d-b4a08940741a", + "relative_path": "Oracle_GIOP_IIOP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "29e1d8ce-e258-4920-ab2d-b4a08940741a" + }, + { + "_create_time": 1724279998389, + "_create_user": "system", + "_last_modified_time": 1724279998389, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1526" + ], + "display_name": "Oracle Net Listener", + "id": "Oracle_Net_Listener", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Database", + "path": "/infra/services/Oracle_Database/service-entries/Oracle_Net_Listener", + "realization_id": "3ce39626-d75b-419d-bf60-fc1b9abbb311", + "relative_path": "Oracle_Net_Listener", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3ce39626-d75b-419d-bf60-fc1b9abbb311" + } + ] + }, + { + "_create_time": 1724279997866, + "_create_user": "system", + "_last_modified_time": 1724279997866, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Enterprise Manager", + "display_name": "Oracle Enterprise Manager", + "id": "Oracle_Enterprise_Manager", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Enterprise_Manager", + "realization_id": "cc558b3c-7d53-4b26-8815-6c51ce4851da", + "relative_path": "Oracle_Enterprise_Manager", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "cc558b3c-7d53-4b26-8815-6c51ce4851da", + "service_entries": [ + { + "_create_time": 1724279997893, + "_create_user": "system", + "_last_modified_time": 1724279997893, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1831" + ], + "display_name": "Enterprise ManagerAgent port", + "id": "Enterprise_ManagerAgent_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Enterprise_Manager", + "path": "/infra/services/Oracle_Enterprise_Manager/service-entries/Enterprise_ManagerAgent_port", + "realization_id": "3ffc2420-8218-4b26-9e7c-9a3ac5e32a1c", + "relative_path": "Enterprise_ManagerAgent_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3ffc2420-8218-4b26-9e7c-9a3ac5e32a1c" + }, + { + "_create_time": 1724279997930, + "_create_user": "system", + "_last_modified_time": 1724279997930, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1810" + ], + "display_name": "Enterprise Manager Servlet port SSL", + "id": "Enterprise_Manager_Servlet_port_SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Enterprise_Manager", + "path": "/infra/services/Oracle_Enterprise_Manager/service-entries/Enterprise_Manager_Servlet_port_SSL", + "realization_id": "23ba8e19-51f0-4875-8e7b-d9ae83529838", + "relative_path": "Enterprise_Manager_Servlet_port_SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "23ba8e19-51f0-4875-8e7b-d9ae83529838" + }, + { + "_create_time": 1724279997920, + "_create_user": "system", + "_last_modified_time": 1724279997920, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1850" + ], + "display_name": "Enterprise Manager RMI port", + "id": "Enterprise_Manager_RMI_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Enterprise_Manager", + "path": "/infra/services/Oracle_Enterprise_Manager/service-entries/Enterprise_Manager_RMI_port", + "realization_id": "bd26e185-37e3-473f-b5e7-785c8a0e6a1d", + "relative_path": "Enterprise_Manager_RMI_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "bd26e185-37e3-473f-b5e7-785c8a0e6a1d" + }, + { + "_create_time": 1724279997904, + "_create_user": "system", + "_last_modified_time": 1724279997904, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "44000" + ], + "display_name": "Log Loader", + "id": "Log_Loader", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Enterprise_Manager", + "path": "/infra/services/Oracle_Enterprise_Manager/service-entries/Log_Loader", + "realization_id": "b8497996-a622-4802-8b0c-54649bae24c4", + "relative_path": "Log_Loader", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b8497996-a622-4802-8b0c-54649bae24c4" + } + ] + }, + { + "_create_time": 1724279995754, + "_create_user": "system", + "_last_modified_time": 1724279995754, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Enterprise Manager Web", + "display_name": "Oracle Enterprise Manager Web", + "id": "Oracle_Enterprise_Manager_Web", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Enterprise_Manager_Web", + "realization_id": "a6ec9224-de58-4124-8c9b-a798ab26f35c", + "relative_path": "Oracle_Enterprise_Manager_Web", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "a6ec9224-de58-4124-8c9b-a798ab26f35c", + "service_entries": [ + { + "_create_time": 1724279995781, + "_create_user": "system", + "_last_modified_time": 1724279995781, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5500" + ], + "display_name": "Oracle Enterprise Manager Web Console", + "id": "Oracle_Enterprise_Manager_Web_Console", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Enterprise_Manager_Web", + "path": "/infra/services/Oracle_Enterprise_Manager_Web/service-entries/Oracle_Enterprise_Manager_Web_Console", + "realization_id": "2d66f435-5a70-42fc-a7b1-e7b43b0124af", + "relative_path": "Oracle_Enterprise_Manager_Web_Console", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "2d66f435-5a70-42fc-a7b1-e7b43b0124af" + } + ] + }, + { + "_create_time": 1724279989092, + "_create_user": "system", + "_last_modified_time": 1724279989092, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Enterprise Manager Web Console", + "display_name": "Oracle Enterprise Manager Web Console", + "id": "Oracle_Enterprise_Manager_Web_Console", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Enterprise_Manager_Web_Console", + "realization_id": "b4a496b5-507b-4e9d-a01a-19dc1a3455f0", + "relative_path": "Oracle_Enterprise_Manager_Web_Console", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "b4a496b5-507b-4e9d-a01a-19dc1a3455f0", + "service_entries": [ + { + "_create_time": 1724279989092, + "_create_user": "system", + "_last_modified_time": 1724279989092, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5500" + ], + "display_name": "Oracle Enterprise Manager Web Console", + "id": "Oracle_Enterprise_Manager_Web_Console", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Enterprise_Manager_Web_Console", + "path": "/infra/services/Oracle_Enterprise_Manager_Web_Console/service-entries/Oracle_Enterprise_Manager_Web_Console", + "realization_id": "2d66f435-5a70-42fc-a7b1-e7b43b0124af", + "relative_path": "Oracle_Enterprise_Manager_Web_Console", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "2d66f435-5a70-42fc-a7b1-e7b43b0124af" + } + ] + }, + { + "_create_time": 1724279988969, + "_create_user": "system", + "_last_modified_time": 1724279988969, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Forms Server 6 / 6i", + "display_name": "Oracle Forms Server 6 / 6i", + "id": "Oracle_Forms_Server_6_-_6i", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Forms_Server_6_-_6i", + "realization_id": "7501b7c8-2d36-40a5-b7ca-2ea8bd0f04f1", + "relative_path": "Oracle_Forms_Server_6_-_6i", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "7501b7c8-2d36-40a5-b7ca-2ea8bd0f04f1", + "service_entries": [ + { + "_create_time": 1724279988969, + "_create_user": "system", + "_last_modified_time": 1724279988969, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9000" + ], + "display_name": "Oracle Forms Server 6 / 6i", + "id": "Oracle_Forms_Server_6_-_6i", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Forms_Server_6_-_6i", + "path": "/infra/services/Oracle_Forms_Server_6_-_6i/service-entries/Oracle_Forms_Server_6_-_6i", + "realization_id": "91b52af2-c4c1-4228-a90e-8524f605403f", + "relative_path": "Oracle_Forms_Server_6_-_6i", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "91b52af2-c4c1-4228-a90e-8524f605403f" + } + ] + }, + { + "_create_time": 1724279988990, + "_create_user": "system", + "_last_modified_time": 1724279988990, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle GIOP IIOP", + "display_name": "Oracle GIOP IIOP", + "id": "Oracle_GIOP_IIOP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_GIOP_IIOP", + "realization_id": "82312acc-b3e0-4b78-a063-6769541a3996", + "relative_path": "Oracle_GIOP_IIOP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "82312acc-b3e0-4b78-a063-6769541a3996", + "service_entries": [ + { + "_create_time": 1724279988990, + "_create_user": "system", + "_last_modified_time": 1724279988990, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2481" + ], + "display_name": "Oracle GIOP IIOP", + "id": "Oracle_GIOP_IIOP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_GIOP_IIOP", + "path": "/infra/services/Oracle_GIOP_IIOP/service-entries/Oracle_GIOP_IIOP", + "realization_id": "29e1d8ce-e258-4920-ab2d-b4a08940741a", + "relative_path": "Oracle_GIOP_IIOP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "29e1d8ce-e258-4920-ab2d-b4a08940741a" + } + ] + }, + { + "_create_time": 1724279988854, + "_create_user": "system", + "_last_modified_time": 1724279988854, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle GIOP IIOP for SSL", + "display_name": "Oracle GIOP IIOP for SSL", + "id": "Oracle_GIOP_IIOP_for_SSL", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_GIOP_IIOP_for_SSL", + "realization_id": "24ec6f23-a56c-4a46-8e37-fe40f27d9191", + "relative_path": "Oracle_GIOP_IIOP_for_SSL", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "24ec6f23-a56c-4a46-8e37-fe40f27d9191", + "service_entries": [ + { + "_create_time": 1724279988854, + "_create_user": "system", + "_last_modified_time": 1724279988854, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2482" + ], + "display_name": "Oracle GIOP IIOP for SSL", + "id": "Oracle_GIOP_IIOP_for_SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_GIOP_IIOP_for_SSL", + "path": "/infra/services/Oracle_GIOP_IIOP_for_SSL/service-entries/Oracle_GIOP_IIOP_for_SSL", + "realization_id": "4e8ba9b8-0514-41a7-bab1-5d5d1a1a175c", + "relative_path": "Oracle_GIOP_IIOP_for_SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "4e8ba9b8-0514-41a7-bab1-5d5d1a1a175c" + } + ] + }, + { + "_create_time": 1724279988859, + "_create_user": "system", + "_last_modified_time": 1724279988859, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle HTTP Server Diagnostic Port", + "display_name": "Oracle HTTP Server Diagnostic Port", + "id": "Oracle_HTTP_Server_Diagnostic_Port", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_HTTP_Server_Diagnostic_Port", + "realization_id": "ee271a34-189e-45b3-af5e-94a4d87257a1", + "relative_path": "Oracle_HTTP_Server_Diagnostic_Port", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "ee271a34-189e-45b3-af5e-94a4d87257a1", + "service_entries": [ + { + "_create_time": 1724279988859, + "_create_user": "system", + "_last_modified_time": 1724279988859, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "7200" + ], + "display_name": "Oracle HTTP Server Diagnostic Port", + "id": "Oracle_HTTP_Server_Diagnostic_Port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_HTTP_Server_Diagnostic_Port", + "path": "/infra/services/Oracle_HTTP_Server_Diagnostic_Port/service-entries/Oracle_HTTP_Server_Diagnostic_Port", + "realization_id": "a84894af-9766-4aab-b6fa-da3ab417d108", + "relative_path": "Oracle_HTTP_Server_Diagnostic_Port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a84894af-9766-4aab-b6fa-da3ab417d108" + } + ] + }, + { + "_create_time": 1724279989116, + "_create_user": "system", + "_last_modified_time": 1724279989116, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle HTTP Server Jserv port", + "display_name": "Oracle HTTP Server Jserv port", + "id": "Oracle_HTTP_Server_Jserv_port", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_HTTP_Server_Jserv_port", + "realization_id": "9d297334-8464-4b65-bc3e-59fd91fb6153", + "relative_path": "Oracle_HTTP_Server_Jserv_port", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "9d297334-8464-4b65-bc3e-59fd91fb6153", + "service_entries": [ + { + "_create_time": 1724279989116, + "_create_user": "system", + "_last_modified_time": 1724279989116, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8007" + ], + "display_name": "Oracle HTTP Server Jserv port", + "id": "Oracle_HTTP_Server_Jserv_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_HTTP_Server_Jserv_port", + "path": "/infra/services/Oracle_HTTP_Server_Jserv_port/service-entries/Oracle_HTTP_Server_Jserv_port", + "realization_id": "b5e4489c-95ec-4ef7-88fb-454fd1f9cc4f", + "relative_path": "Oracle_HTTP_Server_Jserv_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b5e4489c-95ec-4ef7-88fb-454fd1f9cc4f" + } + ] + }, + { + "_create_time": 1724279989186, + "_create_user": "system", + "_last_modified_time": 1724279989186, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle HTTP Server Port Tunneling", + "display_name": "Oracle HTTP Server Port Tunneling", + "id": "Oracle_HTTP_Server_Port_Tunneling", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_HTTP_Server_Port_Tunneling", + "realization_id": "d1d6da59-a676-478a-91ea-d58da6db019a", + "relative_path": "Oracle_HTTP_Server_Port_Tunneling", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "d1d6da59-a676-478a-91ea-d58da6db019a", + "service_entries": [ + { + "_create_time": 1724279989186, + "_create_user": "system", + "_last_modified_time": 1724279989186, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "7501" + ], + "display_name": "Oracle HTTP Server Port Tunneling", + "id": "Oracle_HTTP_Server_Port_Tunneling", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_HTTP_Server_Port_Tunneling", + "path": "/infra/services/Oracle_HTTP_Server_Port_Tunneling/service-entries/Oracle_HTTP_Server_Port_Tunneling", + "realization_id": "5c82918b-4388-4b53-8851-f1eeb72e31ba", + "relative_path": "Oracle_HTTP_Server_Port_Tunneling", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5c82918b-4388-4b53-8851-f1eeb72e31ba" + } + ] + }, + { + "_create_time": 1724279988831, + "_create_user": "system", + "_last_modified_time": 1724279988831, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle HTTP Server SSL port", + "display_name": "Oracle HTTP Server SSL port", + "id": "Oracle_HTTP_Server_SSL_port", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_HTTP_Server_SSL_port", + "realization_id": "72f58acf-5ac2-4d71-b617-334880b5e1c0", + "relative_path": "Oracle_HTTP_Server_SSL_port", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "72f58acf-5ac2-4d71-b617-334880b5e1c0", + "service_entries": [ + { + "_create_time": 1724279988831, + "_create_user": "system", + "_last_modified_time": 1724279988831, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4443" + ], + "display_name": "Oracle HTTP Server SSL port", + "id": "Oracle_HTTP_Server_SSL_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_HTTP_Server_SSL_port", + "path": "/infra/services/Oracle_HTTP_Server_SSL_port/service-entries/Oracle_HTTP_Server_SSL_port", + "realization_id": "69c0fd96-c499-4513-8902-14c6b15d3c42", + "relative_path": "Oracle_HTTP_Server_SSL_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "69c0fd96-c499-4513-8902-14c6b15d3c42" + } + ] + }, + { + "_create_time": 1724279988946, + "_create_user": "system", + "_last_modified_time": 1724279988946, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle HTTP Server listen port", + "display_name": "Oracle HTTP Server listen port", + "id": "Oracle_HTTP_Server_listen_port", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_HTTP_Server_listen_port", + "realization_id": "9c71dca0-f224-46c3-aa95-78ea330d9b92", + "relative_path": "Oracle_HTTP_Server_listen_port", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "9c71dca0-f224-46c3-aa95-78ea330d9b92", + "service_entries": [ + { + "_create_time": 1724279988946, + "_create_user": "system", + "_last_modified_time": 1724279988946, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "7778" + ], + "display_name": "Oracle HTTP Server listen port", + "id": "Oracle_HTTP_Server_listen_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_HTTP_Server_listen_port", + "path": "/infra/services/Oracle_HTTP_Server_listen_port/service-entries/Oracle_HTTP_Server_listen_port", + "realization_id": "e18d530a-12a6-4fa3-9bf7-87ae44c5cf05", + "relative_path": "Oracle_HTTP_Server_listen_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "e18d530a-12a6-4fa3-9bf7-87ae44c5cf05" + } + ] + }, + { + "_create_time": 1724279989110, + "_create_user": "system", + "_last_modified_time": 1724279989110, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle HTTP Server port", + "display_name": "Oracle HTTP Server port", + "id": "Oracle_HTTP_Server_port", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_HTTP_Server_port", + "realization_id": "deb20093-4751-4d3f-b6eb-4c05e77eb87b", + "relative_path": "Oracle_HTTP_Server_port", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "deb20093-4751-4d3f-b6eb-4c05e77eb87b", + "service_entries": [ + { + "_create_time": 1724279989110, + "_create_user": "system", + "_last_modified_time": 1724279989110, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "7777" + ], + "display_name": "Oracle HTTP Server port", + "id": "Oracle_HTTP_Server_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_HTTP_Server_port", + "path": "/infra/services/Oracle_HTTP_Server_port/service-entries/Oracle_HTTP_Server_port", + "realization_id": "f20fd351-adac-4dc2-8cfc-e21f751546df", + "relative_path": "Oracle_HTTP_Server_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f20fd351-adac-4dc2-8cfc-e21f751546df" + } + ] + }, + { + "_create_time": 1724279989116, + "_create_user": "system", + "_last_modified_time": 1724279989116, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Intelligent Agent (1748)", + "display_name": "Oracle Intelligent Agent (1748)", + "id": "Oracle_Intelligent_Agent_(1748)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Intelligent_Agent_(1748)", + "realization_id": "5dc8d124-aca2-474f-8061-c3a9d199018b", + "relative_path": "Oracle_Intelligent_Agent_(1748)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "5dc8d124-aca2-474f-8061-c3a9d199018b", + "service_entries": [ + { + "_create_time": 1724279989116, + "_create_user": "system", + "_last_modified_time": 1724279989116, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1748" + ], + "display_name": "Oracle Intelligent Agent (1748)", + "id": "Oracle_Intelligent_Agent_(1748)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Intelligent_Agent_(1748)", + "path": "/infra/services/Oracle_Intelligent_Agent_(1748)/service-entries/Oracle_Intelligent_Agent_(1748)", + "realization_id": "487e0bdd-2442-4c3a-bd25-a0f176c2b336", + "relative_path": "Oracle_Intelligent_Agent_(1748)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "487e0bdd-2442-4c3a-bd25-a0f176c2b336" + } + ] + }, + { + "_create_time": 1724279988994, + "_create_user": "system", + "_last_modified_time": 1724279988994, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Intelligent Agent (1754)", + "display_name": "Oracle Intelligent Agent (1754)", + "id": "Oracle_Intelligent_Agent_(1754)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Intelligent_Agent_(1754)", + "realization_id": "8c50dc5c-a7e6-4271-921c-20170812bd70", + "relative_path": "Oracle_Intelligent_Agent_(1754)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "8c50dc5c-a7e6-4271-921c-20170812bd70", + "service_entries": [ + { + "_create_time": 1724279988994, + "_create_user": "system", + "_last_modified_time": 1724279988994, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1754" + ], + "display_name": "Oracle Intelligent Agent (1754)", + "id": "Oracle_Intelligent_Agent_(1754)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Intelligent_Agent_(1754)", + "path": "/infra/services/Oracle_Intelligent_Agent_(1754)/service-entries/Oracle_Intelligent_Agent_(1754)", + "realization_id": "3daba953-4dbc-4672-ae0b-b4fe91b13a91", + "relative_path": "Oracle_Intelligent_Agent_(1754)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3daba953-4dbc-4672-ae0b-b4fe91b13a91" + } + ] + }, + { + "_create_time": 1724279988978, + "_create_user": "system", + "_last_modified_time": 1724279988978, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Intelligent Agent (1808)", + "display_name": "Oracle Intelligent Agent (1808)", + "id": "Oracle_Intelligent_Agent_(1808)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Intelligent_Agent_(1808)", + "realization_id": "68743711-d481-4823-aad0-29fe2803ec89", + "relative_path": "Oracle_Intelligent_Agent_(1808)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "68743711-d481-4823-aad0-29fe2803ec89", + "service_entries": [ + { + "_create_time": 1724279988979, + "_create_user": "system", + "_last_modified_time": 1724279988979, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1808" + ], + "display_name": "Oracle Intelligent Agent (1808)", + "id": "Oracle_Intelligent_Agent_(1808)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Intelligent_Agent_(1808)", + "path": "/infra/services/Oracle_Intelligent_Agent_(1808)/service-entries/Oracle_Intelligent_Agent_(1808)", + "realization_id": "821dd3d3-7adc-4bdd-a693-05b78eae20ed", + "relative_path": "Oracle_Intelligent_Agent_(1808)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "821dd3d3-7adc-4bdd-a693-05b78eae20ed" + } + ] + }, + { + "_create_time": 1724279988855, + "_create_user": "system", + "_last_modified_time": 1724279988855, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Intelligent Agent (1809)", + "display_name": "Oracle Intelligent Agent (1809)", + "id": "Oracle_Intelligent_Agent_(1809)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Intelligent_Agent_(1809)", + "realization_id": "690c9c88-29bc-437f-adce-f1b08ca1127c", + "relative_path": "Oracle_Intelligent_Agent_(1809)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "690c9c88-29bc-437f-adce-f1b08ca1127c", + "service_entries": [ + { + "_create_time": 1724279988855, + "_create_user": "system", + "_last_modified_time": 1724279988855, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1809" + ], + "display_name": "Oracle Intelligent Agent (1809)", + "id": "Oracle_Intelligent_Agent_(1809)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Intelligent_Agent_(1809)", + "path": "/infra/services/Oracle_Intelligent_Agent_(1809)/service-entries/Oracle_Intelligent_Agent_(1809)", + "realization_id": "af732540-40c2-4029-9007-5217fa89c886", + "relative_path": "Oracle_Intelligent_Agent_(1809)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "af732540-40c2-4029-9007-5217fa89c886" + } + ] + }, + { + "_create_time": 1724279988916, + "_create_user": "system", + "_last_modified_time": 1724279988916, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Internet Directory(SSL)", + "display_name": "Oracle Internet Directory(SSL)", + "id": "Oracle_Internet_Directory(SSL)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Internet_Directory(SSL)", + "realization_id": "074f2bc4-4843-444e-a48e-87af75cb2529", + "relative_path": "Oracle_Internet_Directory(SSL)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "074f2bc4-4843-444e-a48e-87af75cb2529", + "service_entries": [ + { + "_create_time": 1724279988916, + "_create_user": "system", + "_last_modified_time": 1724279988916, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "636" + ], + "display_name": "Oracle Internet Directory(SSL)", + "id": "Oracle_Internet_Directory(SSL)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Internet_Directory(SSL)", + "path": "/infra/services/Oracle_Internet_Directory(SSL)/service-entries/Oracle_Internet_Directory(SSL)", + "realization_id": "426530d7-1906-4998-8d7f-786f03d3c63c", + "relative_path": "Oracle_Internet_Directory(SSL)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "426530d7-1906-4998-8d7f-786f03d3c63c" + } + ] + }, + { + "_create_time": 1724279989020, + "_create_user": "system", + "_last_modified_time": 1724279989020, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Internet Directory(SSL, 4031)", + "display_name": "Oracle Internet Directory(SSL, 4031)", + "id": "Oracle_Internet_Directory(SSL,_4031)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Internet_Directory(SSL,_4031)", + "realization_id": "e6d2937e-9879-45c4-bc68-cb5769e3b952", + "relative_path": "Oracle_Internet_Directory(SSL,_4031)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "e6d2937e-9879-45c4-bc68-cb5769e3b952", + "service_entries": [ + { + "_create_time": 1724279989020, + "_create_user": "system", + "_last_modified_time": 1724279989020, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4031" + ], + "display_name": "Oracle Internet Directory(SSL, 4031)", + "id": "Oracle_Internet_Directory(SSL,_4031)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Internet_Directory(SSL,_4031)", + "path": "/infra/services/Oracle_Internet_Directory(SSL,_4031)/service-entries/Oracle_Internet_Directory(SSL,_4031)", + "realization_id": "cf97c5ff-33d8-4b9c-b7fd-81f781950b77", + "relative_path": "Oracle_Internet_Directory(SSL,_4031)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "cf97c5ff-33d8-4b9c-b7fd-81f781950b77" + } + ] + }, + { + "_create_time": 1724279989063, + "_create_user": "system", + "_last_modified_time": 1724279989063, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Internet Directory(non-SSL)", + "display_name": "Oracle Internet Directory(non-SSL)", + "id": "Oracle_Internet_Directory(non-SSL)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Internet_Directory(non-SSL)", + "realization_id": "6e5c811f-17f7-4eac-924d-724c1ca63076", + "relative_path": "Oracle_Internet_Directory(non-SSL)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "6e5c811f-17f7-4eac-924d-724c1ca63076", + "service_entries": [ + { + "_create_time": 1724279989065, + "_create_user": "system", + "_last_modified_time": 1724279989065, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "Oracle Internet Directory(non-SSL)", + "id": "Oracle_Internet_Directory(non-SSL)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Internet_Directory(non-SSL)", + "path": "/infra/services/Oracle_Internet_Directory(non-SSL)/service-entries/Oracle_Internet_Directory(non-SSL)", + "realization_id": "00b8054c-deaa-4fd0-b454-28d49c20b59c", + "relative_path": "Oracle_Internet_Directory(non-SSL)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "00b8054c-deaa-4fd0-b454-28d49c20b59c" + } + ] + }, + { + "_create_time": 1724279988915, + "_create_user": "system", + "_last_modified_time": 1724279988915, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Internet Directory(non-SSL, 4032)", + "display_name": "Oracle Internet Directory(non-SSL, 4032)", + "id": "Oracle_Internet_Directory(non-SSL,_4032)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Internet_Directory(non-SSL,_4032)", + "realization_id": "fee88740-5bf7-44be-a6a4-afd7eaf18307", + "relative_path": "Oracle_Internet_Directory(non-SSL,_4032)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "fee88740-5bf7-44be-a6a4-afd7eaf18307", + "service_entries": [ + { + "_create_time": 1724279988915, + "_create_user": "system", + "_last_modified_time": 1724279988915, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4032" + ], + "display_name": "Oracle Internet Directory(non-SSL, 4032)", + "id": "Oracle_Internet_Directory(non-SSL,_4032)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Internet_Directory(non-SSL,_4032)", + "path": "/infra/services/Oracle_Internet_Directory(non-SSL,_4032)/service-entries/Oracle_Internet_Directory(non-SSL,_4032)", + "realization_id": "61c6d6f7-cf45-433c-ac7e-2d1de77cf2b2", + "relative_path": "Oracle_Internet_Directory(non-SSL,_4032)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "61c6d6f7-cf45-433c-ac7e-2d1de77cf2b2" + } + ] + }, + { + "_create_time": 1724279988919, + "_create_user": "system", + "_last_modified_time": 1724279988919, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle JDBC for Rdb Thin Server", + "display_name": "Oracle JDBC for Rdb Thin Server", + "id": "Oracle_JDBC_for_Rdb_Thin_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_JDBC_for_Rdb_Thin_Server", + "realization_id": "57c84fc6-9915-4a57-ae00-ae445e26b003", + "relative_path": "Oracle_JDBC_for_Rdb_Thin_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "57c84fc6-9915-4a57-ae00-ae445e26b003", + "service_entries": [ + { + "_create_time": 1724279988919, + "_create_user": "system", + "_last_modified_time": 1724279988919, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1701" + ], + "display_name": "Oracle JDBC for Rdb Thin Server", + "id": "Oracle_JDBC_for_Rdb_Thin_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_JDBC_for_Rdb_Thin_Server", + "path": "/infra/services/Oracle_JDBC_for_Rdb_Thin_Server/service-entries/Oracle_JDBC_for_Rdb_Thin_Server", + "realization_id": "ae63e43f-f05a-4543-981f-df920e7a9a12", + "relative_path": "Oracle_JDBC_for_Rdb_Thin_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "ae63e43f-f05a-4543-981f-df920e7a9a12" + } + ] + }, + { + "_create_time": 1724279989019, + "_create_user": "system", + "_last_modified_time": 1724279989019, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Names", + "display_name": "Oracle Names", + "id": "Oracle_Names", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Names", + "realization_id": "5453cfc7-0f24-4340-bc51-1bb3923404df", + "relative_path": "Oracle_Names", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "5453cfc7-0f24-4340-bc51-1bb3923404df", + "service_entries": [ + { + "_create_time": 1724279989019, + "_create_user": "system", + "_last_modified_time": 1724279989019, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1575" + ], + "display_name": "Oracle Names", + "id": "Oracle_Names", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Names", + "path": "/infra/services/Oracle_Names/service-entries/Oracle_Names", + "realization_id": "f22a4aa2-b080-4a29-afae-f12d4e7ff1cd", + "relative_path": "Oracle_Names", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f22a4aa2-b080-4a29-afae-f12d4e7ff1cd" + } + ] + }, + { + "_create_time": 1724279989089, + "_create_user": "system", + "_last_modified_time": 1724279989089, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Net Listener", + "display_name": "Oracle Net Listener", + "id": "Oracle_Net_Listener", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Net_Listener", + "realization_id": "a721bee9-8b1d-45de-bddb-d9a470c82bd6", + "relative_path": "Oracle_Net_Listener", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "a721bee9-8b1d-45de-bddb-d9a470c82bd6", + "service_entries": [ + { + "_create_time": 1724279989089, + "_create_user": "system", + "_last_modified_time": 1724279989089, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1526" + ], + "display_name": "Oracle Net Listener", + "id": "Oracle_Net_Listener", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Net_Listener", + "path": "/infra/services/Oracle_Net_Listener/service-entries/Oracle_Net_Listener", + "realization_id": "3ce39626-d75b-419d-bf60-fc1b9abbb311", + "relative_path": "Oracle_Net_Listener", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3ce39626-d75b-419d-bf60-fc1b9abbb311" + } + ] + }, + { + "_create_time": 1724279989032, + "_create_user": "system", + "_last_modified_time": 1724279989032, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Net Listener / Enterprise Manager Repository port", + "display_name": "Oracle Net Listener / Enterprise Manager Repository port", + "id": "Oracle_Net_Listener_-_Enterprise_Manager_Repository_port", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Net_Listener_-_Enterprise_Manager_Repository_port", + "realization_id": "694773de-0c9a-444f-9ea3-5dfdbf0aecbd", + "relative_path": "Oracle_Net_Listener_-_Enterprise_Manager_Repository_port", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "694773de-0c9a-444f-9ea3-5dfdbf0aecbd", + "service_entries": [ + { + "_create_time": 1724279989033, + "_create_user": "system", + "_last_modified_time": 1724279989033, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1521" + ], + "display_name": "Oracle Net Listener / Enterprise Manager Repository port", + "id": "Oracle_Net_Listener_-_Enterprise_Manager_Repository_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Net_Listener_-_Enterprise_Manager_Repository_port", + "path": "/infra/services/Oracle_Net_Listener_-_Enterprise_Manager_Repository_port/service-entries/Oracle_Net_Listener_-_Enterprise_Manager_Repository_port", + "realization_id": "319a74f1-8420-473d-96ca-8a8aa8767a0f", + "relative_path": "Oracle_Net_Listener_-_Enterprise_Manager_Repository_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "319a74f1-8420-473d-96ca-8a8aa8767a0f" + } + ] + }, + { + "_create_time": 1724279988863, + "_create_user": "system", + "_last_modified_time": 1724279988863, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Notification Service local port", + "display_name": "Oracle Notification Service local port", + "id": "Oracle_Notification_Service_local_port", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Notification_Service_local_port", + "realization_id": "f0e8ff0d-8d4c-455e-866a-b8647cb7dd15", + "relative_path": "Oracle_Notification_Service_local_port", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "f0e8ff0d-8d4c-455e-866a-b8647cb7dd15", + "service_entries": [ + { + "_create_time": 1724279988863, + "_create_user": "system", + "_last_modified_time": 1724279988863, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "6100" + ], + "display_name": "Oracle Notification Service local port", + "id": "Oracle_Notification_Service_local_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Notification_Service_local_port", + "path": "/infra/services/Oracle_Notification_Service_local_port/service-entries/Oracle_Notification_Service_local_port", + "realization_id": "de8217c2-5eff-4dbf-af7b-032fecd3319e", + "relative_path": "Oracle_Notification_Service_local_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "de8217c2-5eff-4dbf-af7b-032fecd3319e" + } + ] + }, + { + "_create_time": 1724279988897, + "_create_user": "system", + "_last_modified_time": 1724279988897, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Notification Service remote port", + "display_name": "Oracle Notification Service remote port", + "id": "Oracle_Notification_Service_remote_port", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Notification_Service_remote_port", + "realization_id": "c6068706-5f01-4db5-8aa7-294756cff3cd", + "relative_path": "Oracle_Notification_Service_remote_port", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "c6068706-5f01-4db5-8aa7-294756cff3cd", + "service_entries": [ + { + "_create_time": 1724279988897, + "_create_user": "system", + "_last_modified_time": 1724279988897, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "6200" + ], + "display_name": "Oracle Notification Service remote port", + "id": "Oracle_Notification_Service_remote_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Notification_Service_remote_port", + "path": "/infra/services/Oracle_Notification_Service_remote_port/service-entries/Oracle_Notification_Service_remote_port", + "realization_id": "227388d0-691f-4bfc-b74f-0738a458567b", + "relative_path": "Oracle_Notification_Service_remote_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "227388d0-691f-4bfc-b74f-0738a458567b" + } + ] + }, + { + "_create_time": 1724279989039, + "_create_user": "system", + "_last_modified_time": 1724279989039, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Notification Service request port", + "display_name": "Oracle Notification Service request port", + "id": "Oracle_Notification_Service_request_port", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Notification_Service_request_port", + "realization_id": "67220a56-d1e3-4da1-96fe-1526e971eaa5", + "relative_path": "Oracle_Notification_Service_request_port", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "67220a56-d1e3-4da1-96fe-1526e971eaa5", + "service_entries": [ + { + "_create_time": 1724279989039, + "_create_user": "system", + "_last_modified_time": 1724279989039, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "6003" + ], + "display_name": "Oracle Notification Service request port", + "id": "Oracle_Notification_Service_request_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Notification_Service_request_port", + "path": "/infra/services/Oracle_Notification_Service_request_port/service-entries/Oracle_Notification_Service_request_port", + "realization_id": "01611882-0786-4b2f-812b-e91746f9cd66", + "relative_path": "Oracle_Notification_Service_request_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "01611882-0786-4b2f-812b-e91746f9cd66" + } + ] + }, + { + "_create_time": 1724279989017, + "_create_user": "system", + "_last_modified_time": 1724279989017, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle OC4J AJP", + "display_name": "Oracle OC4J AJP", + "id": "Oracle_OC4J_AJP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_OC4J_AJP", + "realization_id": "6dda82c1-e952-4d53-a0f2-ca4584b62967", + "relative_path": "Oracle_OC4J_AJP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "6dda82c1-e952-4d53-a0f2-ca4584b62967", + "service_entries": [ + { + "_create_time": 1724279989018, + "_create_user": "system", + "_last_modified_time": 1724279989018, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3301" + ], + "display_name": "Oracle OC4J AJP", + "id": "Oracle_OC4J_AJP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_OC4J_AJP", + "path": "/infra/services/Oracle_OC4J_AJP/service-entries/Oracle_OC4J_AJP", + "realization_id": "744a91a4-7b9b-4b2b-86e9-965dfbbf1d75", + "relative_path": "Oracle_OC4J_AJP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "744a91a4-7b9b-4b2b-86e9-965dfbbf1d75" + } + ] + }, + { + "_create_time": 1724279988851, + "_create_user": "system", + "_last_modified_time": 1724279988851, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle OC4J IIOP", + "display_name": "Oracle OC4J IIOP", + "id": "Oracle_OC4J_IIOP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_OC4J_IIOP", + "realization_id": "f97b44c8-5c78-4315-9c31-9eabedf3cd54", + "relative_path": "Oracle_OC4J_IIOP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "f97b44c8-5c78-4315-9c31-9eabedf3cd54", + "service_entries": [ + { + "_create_time": 1724279988851, + "_create_user": "system", + "_last_modified_time": 1724279988851, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3401" + ], + "display_name": "Oracle OC4J IIOP", + "id": "Oracle_OC4J_IIOP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_OC4J_IIOP", + "path": "/infra/services/Oracle_OC4J_IIOP/service-entries/Oracle_OC4J_IIOP", + "realization_id": "b1fe65e3-6172-41aa-ace2-f02e9e041540", + "relative_path": "Oracle_OC4J_IIOP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b1fe65e3-6172-41aa-ace2-f02e9e041540" + } + ] + }, + { + "_create_time": 1724279989160, + "_create_user": "system", + "_last_modified_time": 1724279989160, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle OC4J IIOPS1", + "display_name": "Oracle OC4J IIOPS1", + "id": "Oracle_OC4J_IIOPS1", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_OC4J_IIOPS1", + "realization_id": "7b935ea4-c83b-47cc-9259-abfc9146084d", + "relative_path": "Oracle_OC4J_IIOPS1", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "7b935ea4-c83b-47cc-9259-abfc9146084d", + "service_entries": [ + { + "_create_time": 1724279989160, + "_create_user": "system", + "_last_modified_time": 1724279989160, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3501" + ], + "display_name": "Oracle OC4J IIOPS1", + "id": "Oracle_OC4J_IIOPS1", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_OC4J_IIOPS1", + "path": "/infra/services/Oracle_OC4J_IIOPS1/service-entries/Oracle_OC4J_IIOPS1", + "realization_id": "99bbfa34-a10a-47a1-b786-afbce5dff50a", + "relative_path": "Oracle_OC4J_IIOPS1", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "99bbfa34-a10a-47a1-b786-afbce5dff50a" + } + ] + }, + { + "_create_time": 1724279989125, + "_create_user": "system", + "_last_modified_time": 1724279989125, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle OC4J IIOPS2", + "display_name": "Oracle OC4J IIOPS2", + "id": "Oracle_OC4J_IIOPS2", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_OC4J_IIOPS2", + "realization_id": "e4a65933-426c-4f1a-8825-e8c918d2e811", + "relative_path": "Oracle_OC4J_IIOPS2", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "e4a65933-426c-4f1a-8825-e8c918d2e811", + "service_entries": [ + { + "_create_time": 1724279989125, + "_create_user": "system", + "_last_modified_time": 1724279989125, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3601" + ], + "display_name": "Oracle OC4J IIOPS2", + "id": "Oracle_OC4J_IIOPS2", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_OC4J_IIOPS2", + "path": "/infra/services/Oracle_OC4J_IIOPS2/service-entries/Oracle_OC4J_IIOPS2", + "realization_id": "83507ded-ad55-4100-963a-21313457f9fd", + "relative_path": "Oracle_OC4J_IIOPS2", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "83507ded-ad55-4100-963a-21313457f9fd" + } + ] + }, + { + "_create_time": 1724279989198, + "_create_user": "system", + "_last_modified_time": 1724279989198, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle OC4J JMS", + "display_name": "Oracle OC4J JMS", + "id": "Oracle_OC4J_JMS", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_OC4J_JMS", + "realization_id": "1fa4d19f-9b47-4b40-8787-e22b28285680", + "relative_path": "Oracle_OC4J_JMS", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "1fa4d19f-9b47-4b40-8787-e22b28285680", + "service_entries": [ + { + "_create_time": 1724279989198, + "_create_user": "system", + "_last_modified_time": 1724279989198, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3701" + ], + "display_name": "Oracle OC4J JMS", + "id": "Oracle_OC4J_JMS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_OC4J_JMS", + "path": "/infra/services/Oracle_OC4J_JMS/service-entries/Oracle_OC4J_JMS", + "realization_id": "98aed01f-1e8a-43a5-b5c1-b4e78d7ccc78", + "relative_path": "Oracle_OC4J_JMS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "98aed01f-1e8a-43a5-b5c1-b4e78d7ccc78" + } + ] + }, + { + "_create_time": 1724279989201, + "_create_user": "system", + "_last_modified_time": 1724279989201, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle OC4J RMI", + "display_name": "Oracle OC4J RMI", + "id": "Oracle_OC4J_RMI", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_OC4J_RMI", + "realization_id": "9b3ce140-5d1c-43a7-b0cc-656269788dae", + "relative_path": "Oracle_OC4J_RMI", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "9b3ce140-5d1c-43a7-b0cc-656269788dae", + "service_entries": [ + { + "_create_time": 1724279989201, + "_create_user": "system", + "_last_modified_time": 1724279989201, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3201" + ], + "display_name": "Oracle OC4J RMI", + "id": "Oracle_OC4J_RMI", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_OC4J_RMI", + "path": "/infra/services/Oracle_OC4J_RMI/service-entries/Oracle_OC4J_RMI", + "realization_id": "2fad931c-3ffa-40d0-84bd-4dd572e93ca4", + "relative_path": "Oracle_OC4J_RMI", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "2fad931c-3ffa-40d0-84bd-4dd572e93ca4" + } + ] + }, + { + "_create_time": 1724279997638, + "_create_user": "system", + "_last_modified_time": 1724279997638, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Rdb", + "display_name": "Oracle Rdb", + "id": "Oracle_Rdb", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Rdb", + "realization_id": "bf410050-a6f1-4124-bda1-77e787121f97", + "relative_path": "Oracle_Rdb", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "bf410050-a6f1-4124-bda1-77e787121f97", + "service_entries": [ + { + "_create_time": 1724279997658, + "_create_user": "system", + "_last_modified_time": 1724279997658, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1701" + ], + "display_name": "Oracle JDBC for Rdb Thin Server", + "id": "Oracle_JDBC_for_Rdb_Thin_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Rdb", + "path": "/infra/services/Oracle_Rdb/service-entries/Oracle_JDBC_for_Rdb_Thin_Server", + "realization_id": "ae63e43f-f05a-4543-981f-df920e7a9a12", + "relative_path": "Oracle_JDBC_for_Rdb_Thin_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "ae63e43f-f05a-4543-981f-df920e7a9a12" + } + ] + }, + { + "_create_time": 1724279989028, + "_create_user": "system", + "_last_modified_time": 1724279989028, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle SOAP Server", + "display_name": "Oracle SOAP Server", + "id": "Oracle_SOAP_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_SOAP_Server", + "realization_id": "5a095d81-fe02-40d7-8024-540176fc43f3", + "relative_path": "Oracle_SOAP_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "5a095d81-fe02-40d7-8024-540176fc43f3", + "service_entries": [ + { + "_create_time": 1724279989028, + "_create_user": "system", + "_last_modified_time": 1724279989028, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9998" + ], + "display_name": "Oracle SOAP Server", + "id": "Oracle_SOAP_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_SOAP_Server", + "path": "/infra/services/Oracle_SOAP_Server/service-entries/Oracle_SOAP_Server", + "realization_id": "3b5f8430-f3c8-46ee-a9dd-71ab7f3848dc", + "relative_path": "Oracle_SOAP_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3b5f8430-f3c8-46ee-a9dd-71ab7f3848dc" + } + ] + }, + { + "_create_time": 1724279998660, + "_create_user": "system", + "_last_modified_time": 1724279998660, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Times Ten", + "display_name": "Oracle Times Ten", + "id": "Oracle_Times_Ten", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Times_Ten", + "realization_id": "d7ddf307-2a29-41a9-8bb4-41804a9fbf8e", + "relative_path": "Oracle_Times_Ten", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "d7ddf307-2a29-41a9-8bb4-41804a9fbf8e", + "service_entries": [ + { + "_create_time": 1724279998671, + "_create_user": "system", + "_last_modified_time": 1724279998671, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4767" + ], + "display_name": "Oracle TimesTen (4767)", + "id": "Oracle_TimesTen_(4767)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Times_Ten", + "path": "/infra/services/Oracle_Times_Ten/service-entries/Oracle_TimesTen_(4767)", + "realization_id": "21a0a10d-74fd-4772-89c2-76cca486de7e", + "relative_path": "Oracle_TimesTen_(4767)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "21a0a10d-74fd-4772-89c2-76cca486de7e" + }, + { + "_create_time": 1724279998735, + "_create_user": "system", + "_last_modified_time": 1724279998735, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "15000" + ], + "display_name": "Oracle Times Ten (15000)", + "id": "Oracle_Times_Ten_(15000)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Times_Ten", + "path": "/infra/services/Oracle_Times_Ten/service-entries/Oracle_Times_Ten_(15000)", + "realization_id": "47f33c21-4954-4160-a021-7dcef0cf2ab2", + "relative_path": "Oracle_Times_Ten_(15000)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "47f33c21-4954-4160-a021-7dcef0cf2ab2" + }, + { + "_create_time": 1724279998757, + "_create_user": "system", + "_last_modified_time": 1724279998757, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4758" + ], + "display_name": "Oracle TimesTen (4758)", + "id": "Oracle_TimesTen_(4758)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Times_Ten", + "path": "/infra/services/Oracle_Times_Ten/service-entries/Oracle_TimesTen_(4758)", + "realization_id": "a82fd46a-b9f3-4596-be4c-9ce7950f3baa", + "relative_path": "Oracle_TimesTen_(4758)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a82fd46a-b9f3-4596-be4c-9ce7950f3baa" + }, + { + "_create_time": 1724279998695, + "_create_user": "system", + "_last_modified_time": 1724279998695, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4759" + ], + "display_name": "Oracle TimesTen (4759)", + "id": "Oracle_TimesTen_(4759)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Times_Ten", + "path": "/infra/services/Oracle_Times_Ten/service-entries/Oracle_TimesTen_(4759)", + "realization_id": "4a647399-2b70-46e6-8e6d-37ff094b43fa", + "relative_path": "Oracle_TimesTen_(4759)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "4a647399-2b70-46e6-8e6d-37ff094b43fa" + }, + { + "_create_time": 1724279998774, + "_create_user": "system", + "_last_modified_time": 1724279998774, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4764" + ], + "display_name": "Oracle TimesTen (4764)", + "id": "Oracle_TimesTen_(4764)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Times_Ten", + "path": "/infra/services/Oracle_Times_Ten/service-entries/Oracle_TimesTen_(4764)", + "realization_id": "18ded79f-a475-4d4c-8981-efee9e60829c", + "relative_path": "Oracle_TimesTen_(4764)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "18ded79f-a475-4d4c-8981-efee9e60829c" + }, + { + "_create_time": 1724279998711, + "_create_user": "system", + "_last_modified_time": 1724279998711, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4766" + ], + "display_name": "Oracle TimesTen (4766)", + "id": "Oracle_TimesTen_(4766)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Times_Ten", + "path": "/infra/services/Oracle_Times_Ten/service-entries/Oracle_TimesTen_(4766)", + "realization_id": "a13e600a-d6d9-4b39-a53d-825ee67cf412", + "relative_path": "Oracle_TimesTen_(4766)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a13e600a-d6d9-4b39-a53d-825ee67cf412" + }, + { + "_create_time": 1724279998795, + "_create_user": "system", + "_last_modified_time": 1724279998795, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4761" + ], + "display_name": "Oracle TimesTen (4761)", + "id": "Oracle_TimesTen_(4761)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Times_Ten", + "path": "/infra/services/Oracle_Times_Ten/service-entries/Oracle_TimesTen_(4761)", + "realization_id": "cb4df13e-da82-4fd5-8d01-0e7b1afac5df", + "relative_path": "Oracle_TimesTen_(4761)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "cb4df13e-da82-4fd5-8d01-0e7b1afac5df" + }, + { + "_create_time": 1724279998728, + "_create_user": "system", + "_last_modified_time": 1724279998728, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4662" + ], + "display_name": "Oracle TimesTen", + "id": "Oracle_TimesTen", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Times_Ten", + "path": "/infra/services/Oracle_Times_Ten/service-entries/Oracle_TimesTen", + "realization_id": "f267fc3c-1538-4716-9a17-965a13a584af", + "relative_path": "Oracle_TimesTen", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f267fc3c-1538-4716-9a17-965a13a584af" + }, + { + "_create_time": 1724279998685, + "_create_user": "system", + "_last_modified_time": 1724279998685, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "15004" + ], + "display_name": "Oracle Times Ten (15004)", + "id": "Oracle_Times_Ten_(15004)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Times_Ten", + "path": "/infra/services/Oracle_Times_Ten/service-entries/Oracle_Times_Ten_(15004)", + "realization_id": "d32dd739-f143-44cf-89c2-87f085a26cd6", + "relative_path": "Oracle_Times_Ten_(15004)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "d32dd739-f143-44cf-89c2-87f085a26cd6" + }, + { + "_create_time": 1724279998763, + "_create_user": "system", + "_last_modified_time": 1724279998763, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "15002" + ], + "display_name": "Oracle Times Ten (15002)", + "id": "Oracle_Times_Ten_(15002)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Times_Ten", + "path": "/infra/services/Oracle_Times_Ten/service-entries/Oracle_Times_Ten_(15002)", + "realization_id": "7bb15f08-6605-49f0-9207-575c6b6f86e7", + "relative_path": "Oracle_Times_Ten_(15002)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "7bb15f08-6605-49f0-9207-575c6b6f86e7" + } + ] + }, + { + "_create_time": 1724279988983, + "_create_user": "system", + "_last_modified_time": 1724279988983, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Times Ten (15000)", + "display_name": "Oracle Times Ten (15000)", + "id": "Oracle_Times_Ten_(15000)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Times_Ten_(15000)", + "realization_id": "5b7e3693-d1bc-4c19-b7be-9f7febd047e4", + "relative_path": "Oracle_Times_Ten_(15000)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "5b7e3693-d1bc-4c19-b7be-9f7febd047e4", + "service_entries": [ + { + "_create_time": 1724279988983, + "_create_user": "system", + "_last_modified_time": 1724279988983, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "15000" + ], + "display_name": "Oracle Times Ten (15000)", + "id": "Oracle_Times_Ten_(15000)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Times_Ten_(15000)", + "path": "/infra/services/Oracle_Times_Ten_(15000)/service-entries/Oracle_Times_Ten_(15000)", + "realization_id": "47f33c21-4954-4160-a021-7dcef0cf2ab2", + "relative_path": "Oracle_Times_Ten_(15000)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "47f33c21-4954-4160-a021-7dcef0cf2ab2" + } + ] + }, + { + "_create_time": 1724279988958, + "_create_user": "system", + "_last_modified_time": 1724279988958, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Times Ten (15002)", + "display_name": "Oracle Times Ten (15002)", + "id": "Oracle_Times_Ten_(15002)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Times_Ten_(15002)", + "realization_id": "8d224191-7dfb-4518-8751-70efdbc9fa00", + "relative_path": "Oracle_Times_Ten_(15002)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "8d224191-7dfb-4518-8751-70efdbc9fa00", + "service_entries": [ + { + "_create_time": 1724279988958, + "_create_user": "system", + "_last_modified_time": 1724279988958, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "15002" + ], + "display_name": "Oracle Times Ten (15002)", + "id": "Oracle_Times_Ten_(15002)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Times_Ten_(15002)", + "path": "/infra/services/Oracle_Times_Ten_(15002)/service-entries/Oracle_Times_Ten_(15002)", + "realization_id": "7bb15f08-6605-49f0-9207-575c6b6f86e7", + "relative_path": "Oracle_Times_Ten_(15002)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "7bb15f08-6605-49f0-9207-575c6b6f86e7" + } + ] + }, + { + "_create_time": 1724279988919, + "_create_user": "system", + "_last_modified_time": 1724279988919, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle Times Ten (15004)", + "display_name": "Oracle Times Ten (15004)", + "id": "Oracle_Times_Ten_(15004)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_Times_Ten_(15004)", + "realization_id": "2d7c5566-7aa6-4965-a8b7-d8cc6a1b3385", + "relative_path": "Oracle_Times_Ten_(15004)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "2d7c5566-7aa6-4965-a8b7-d8cc6a1b3385", + "service_entries": [ + { + "_create_time": 1724279988920, + "_create_user": "system", + "_last_modified_time": 1724279988920, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "15004" + ], + "display_name": "Oracle Times Ten (15004)", + "id": "Oracle_Times_Ten_(15004)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_Times_Ten_(15004)", + "path": "/infra/services/Oracle_Times_Ten_(15004)/service-entries/Oracle_Times_Ten_(15004)", + "realization_id": "d32dd739-f143-44cf-89c2-87f085a26cd6", + "relative_path": "Oracle_Times_Ten_(15004)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "d32dd739-f143-44cf-89c2-87f085a26cd6" + } + ] + }, + { + "_create_time": 1724279989050, + "_create_user": "system", + "_last_modified_time": 1724279989050, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle TimesTen", + "display_name": "Oracle TimesTen", + "id": "Oracle_TimesTen", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_TimesTen", + "realization_id": "f551b4da-def6-40c5-af7b-f692b3e359e7", + "relative_path": "Oracle_TimesTen", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "f551b4da-def6-40c5-af7b-f692b3e359e7", + "service_entries": [ + { + "_create_time": 1724279989050, + "_create_user": "system", + "_last_modified_time": 1724279989050, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4662" + ], + "display_name": "Oracle TimesTen", + "id": "Oracle_TimesTen", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_TimesTen", + "path": "/infra/services/Oracle_TimesTen/service-entries/Oracle_TimesTen", + "realization_id": "f267fc3c-1538-4716-9a17-965a13a584af", + "relative_path": "Oracle_TimesTen", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f267fc3c-1538-4716-9a17-965a13a584af" + } + ] + }, + { + "_create_time": 1724279988975, + "_create_user": "system", + "_last_modified_time": 1724279988975, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle TimesTen (4758)", + "display_name": "Oracle TimesTen (4758)", + "id": "Oracle_TimesTen_(4758)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_TimesTen_(4758)", + "realization_id": "e8294a80-ecb2-4099-af7a-8848361993d2", + "relative_path": "Oracle_TimesTen_(4758)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "e8294a80-ecb2-4099-af7a-8848361993d2", + "service_entries": [ + { + "_create_time": 1724279988976, + "_create_user": "system", + "_last_modified_time": 1724279988976, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4758" + ], + "display_name": "Oracle TimesTen (4758)", + "id": "Oracle_TimesTen_(4758)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_TimesTen_(4758)", + "path": "/infra/services/Oracle_TimesTen_(4758)/service-entries/Oracle_TimesTen_(4758)", + "realization_id": "a82fd46a-b9f3-4596-be4c-9ce7950f3baa", + "relative_path": "Oracle_TimesTen_(4758)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a82fd46a-b9f3-4596-be4c-9ce7950f3baa" + } + ] + }, + { + "_create_time": 1724279989052, + "_create_user": "system", + "_last_modified_time": 1724279989052, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle TimesTen (4759)", + "display_name": "Oracle TimesTen (4759)", + "id": "Oracle_TimesTen_(4759)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_TimesTen_(4759)", + "realization_id": "1f8f36e2-efc8-47de-8544-3268b868a76d", + "relative_path": "Oracle_TimesTen_(4759)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "1f8f36e2-efc8-47de-8544-3268b868a76d", + "service_entries": [ + { + "_create_time": 1724279989052, + "_create_user": "system", + "_last_modified_time": 1724279989052, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4759" + ], + "display_name": "Oracle TimesTen (4759)", + "id": "Oracle_TimesTen_(4759)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_TimesTen_(4759)", + "path": "/infra/services/Oracle_TimesTen_(4759)/service-entries/Oracle_TimesTen_(4759)", + "realization_id": "4a647399-2b70-46e6-8e6d-37ff094b43fa", + "relative_path": "Oracle_TimesTen_(4759)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "4a647399-2b70-46e6-8e6d-37ff094b43fa" + } + ] + }, + { + "_create_time": 1724279989106, + "_create_user": "system", + "_last_modified_time": 1724279989106, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle TimesTen (4761)", + "display_name": "Oracle TimesTen (4761)", + "id": "Oracle_TimesTen_(4761)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_TimesTen_(4761)", + "realization_id": "dec78015-322a-4fe0-9e64-73c062c8afd8", + "relative_path": "Oracle_TimesTen_(4761)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "dec78015-322a-4fe0-9e64-73c062c8afd8", + "service_entries": [ + { + "_create_time": 1724279989107, + "_create_user": "system", + "_last_modified_time": 1724279989107, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4761" + ], + "display_name": "Oracle TimesTen (4761)", + "id": "Oracle_TimesTen_(4761)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_TimesTen_(4761)", + "path": "/infra/services/Oracle_TimesTen_(4761)/service-entries/Oracle_TimesTen_(4761)", + "realization_id": "cb4df13e-da82-4fd5-8d01-0e7b1afac5df", + "relative_path": "Oracle_TimesTen_(4761)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "cb4df13e-da82-4fd5-8d01-0e7b1afac5df" + } + ] + }, + { + "_create_time": 1724279988939, + "_create_user": "system", + "_last_modified_time": 1724279988939, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle TimesTen (4764)", + "display_name": "Oracle TimesTen (4764)", + "id": "Oracle_TimesTen_(4764)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_TimesTen_(4764)", + "realization_id": "bc361fc1-c4da-4572-b0a3-05db9313e7e5", + "relative_path": "Oracle_TimesTen_(4764)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "bc361fc1-c4da-4572-b0a3-05db9313e7e5", + "service_entries": [ + { + "_create_time": 1724279988939, + "_create_user": "system", + "_last_modified_time": 1724279988939, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4764" + ], + "display_name": "Oracle TimesTen (4764)", + "id": "Oracle_TimesTen_(4764)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_TimesTen_(4764)", + "path": "/infra/services/Oracle_TimesTen_(4764)/service-entries/Oracle_TimesTen_(4764)", + "realization_id": "18ded79f-a475-4d4c-8981-efee9e60829c", + "relative_path": "Oracle_TimesTen_(4764)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "18ded79f-a475-4d4c-8981-efee9e60829c" + } + ] + }, + { + "_create_time": 1724279988886, + "_create_user": "system", + "_last_modified_time": 1724279988886, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle TimesTen (4766)", + "display_name": "Oracle TimesTen (4766)", + "id": "Oracle_TimesTen_(4766)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_TimesTen_(4766)", + "realization_id": "84d0d86c-a1ff-4817-8d4f-bdc24e5e56a5", + "relative_path": "Oracle_TimesTen_(4766)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "84d0d86c-a1ff-4817-8d4f-bdc24e5e56a5", + "service_entries": [ + { + "_create_time": 1724279988887, + "_create_user": "system", + "_last_modified_time": 1724279988887, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4766" + ], + "display_name": "Oracle TimesTen (4766)", + "id": "Oracle_TimesTen_(4766)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_TimesTen_(4766)", + "path": "/infra/services/Oracle_TimesTen_(4766)/service-entries/Oracle_TimesTen_(4766)", + "realization_id": "a13e600a-d6d9-4b39-a53d-825ee67cf412", + "relative_path": "Oracle_TimesTen_(4766)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a13e600a-d6d9-4b39-a53d-825ee67cf412" + } + ] + }, + { + "_create_time": 1724279988987, + "_create_user": "system", + "_last_modified_time": 1724279988987, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle TimesTen (4767)", + "display_name": "Oracle TimesTen (4767)", + "id": "Oracle_TimesTen_(4767)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_TimesTen_(4767)", + "realization_id": "63ee4a80-b19d-48fb-8f91-a5b9e26420da", + "relative_path": "Oracle_TimesTen_(4767)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "63ee4a80-b19d-48fb-8f91-a5b9e26420da", + "service_entries": [ + { + "_create_time": 1724279988987, + "_create_user": "system", + "_last_modified_time": 1724279988987, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4767" + ], + "display_name": "Oracle TimesTen (4767)", + "id": "Oracle_TimesTen_(4767)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_TimesTen_(4767)", + "path": "/infra/services/Oracle_TimesTen_(4767)/service-entries/Oracle_TimesTen_(4767)", + "realization_id": "21a0a10d-74fd-4772-89c2-76cca486de7e", + "relative_path": "Oracle_TimesTen_(4767)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "21a0a10d-74fd-4772-89c2-76cca486de7e" + } + ] + }, + { + "_create_time": 1724279988982, + "_create_user": "system", + "_last_modified_time": 1724279988982, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle XMLDB FTP Port", + "display_name": "Oracle XMLDB FTP Port", + "id": "Oracle_XMLDB_FTP_Port", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_XMLDB_FTP_Port", + "realization_id": "c6184253-f902-47d5-abdc-6c9458083093", + "relative_path": "Oracle_XMLDB_FTP_Port", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "c6184253-f902-47d5-abdc-6c9458083093", + "service_entries": [ + { + "_create_time": 1724279988982, + "_create_user": "system", + "_last_modified_time": 1724279988982, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2100" + ], + "display_name": "Oracle XMLDB FTP Port", + "id": "Oracle_XMLDB_FTP_Port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_XMLDB_FTP_Port", + "path": "/infra/services/Oracle_XMLDB_FTP_Port/service-entries/Oracle_XMLDB_FTP_Port", + "realization_id": "241d2d3c-b29d-4751-aaeb-e0ce2add9ed2", + "relative_path": "Oracle_XMLDB_FTP_Port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "241d2d3c-b29d-4751-aaeb-e0ce2add9ed2" + } + ] + }, + { + "_create_time": 1724279988936, + "_create_user": "system", + "_last_modified_time": 1724279988936, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle XMLDB HTTP port", + "display_name": "Oracle XMLDB HTTP port", + "id": "Oracle_XMLDB_HTTP_port", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_XMLDB_HTTP_port", + "realization_id": "e30845cb-aaab-4828-91e2-af42fc08ab42", + "relative_path": "Oracle_XMLDB_HTTP_port", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "e30845cb-aaab-4828-91e2-af42fc08ab42", + "service_entries": [ + { + "_create_time": 1724279988937, + "_create_user": "system", + "_last_modified_time": 1724279988937, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8080" + ], + "display_name": "Oracle XMLDB HTTP port", + "id": "Oracle_XMLDB_HTTP_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_XMLDB_HTTP_port", + "path": "/infra/services/Oracle_XMLDB_HTTP_port/service-entries/Oracle_XMLDB_HTTP_port", + "realization_id": "eb813cdf-61a9-49f4-90e7-43505f69eb09", + "relative_path": "Oracle_XMLDB_HTTP_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "eb813cdf-61a9-49f4-90e7-43505f69eb09" + } + ] + }, + { + "_create_time": 1724279996072, + "_create_user": "system", + "_last_modified_time": 1724279996072, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle i*SQLPlus", + "display_name": "Oracle i*SQLPlus", + "id": "Oracle_i*SQLPlus", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle_i*SQLPlus", + "realization_id": "b6bc0823-35f0-4c29-8382-4a23c048a6b2", + "relative_path": "Oracle_i*SQLPlus", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "b6bc0823-35f0-4c29-8382-4a23c048a6b2", + "service_entries": [ + { + "_create_time": 1724279996114, + "_create_user": "system", + "_last_modified_time": 1724279996114, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5560" + ], + "display_name": "iSQLPlus 10g", + "id": "iSQLPlus_10g", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_i*SQLPlus", + "path": "/infra/services/Oracle_i*SQLPlus/service-entries/iSQLPlus_10g", + "realization_id": "33f386c1-596e-4faf-bfb7-aed31c3aee78", + "relative_path": "iSQLPlus_10g", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "33f386c1-596e-4faf-bfb7-aed31c3aee78" + }, + { + "_create_time": 1724279996095, + "_create_user": "system", + "_last_modified_time": 1724279996095, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5580" + ], + "display_name": "iSQLPlus 10g (5580)", + "id": "iSQLPlus_10g_(5580)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle_i*SQLPlus", + "path": "/infra/services/Oracle_i*SQLPlus/service-entries/iSQLPlus_10g_(5580)", + "realization_id": "458a3ac4-42b6-4e5e-b350-823197a080df", + "relative_path": "iSQLPlus_10g_(5580)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "458a3ac4-42b6-4e5e-b350-823197a080df" + } + ] + }, + { + "_create_time": 1724279989194, + "_create_user": "system", + "_last_modified_time": 1724279989194, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle-2", + "display_name": "Oracle-2", + "id": "Oracle-2", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle-2", + "realization_id": "7a9bbb07-f05d-4b75-8674-a309919dd6bf", + "relative_path": "Oracle-2", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "7a9bbb07-f05d-4b75-8674-a309919dd6bf", + "service_entries": [ + { + "_create_time": 1724279989194, + "_create_user": "system", + "_last_modified_time": 1724279989194, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1526" + ], + "display_name": "Oracle-2", + "id": "Oracle-2", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle-2", + "path": "/infra/services/Oracle-2/service-entries/Oracle-2", + "realization_id": "8f4e8600-c9e0-4a19-830c-2df7b8b2f541", + "relative_path": "Oracle-2", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8f4e8600-c9e0-4a19-830c-2df7b8b2f541" + } + ] + }, + { + "_create_time": 1724279989053, + "_create_user": "system", + "_last_modified_time": 1724279989053, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle9iAS Clickstream Collector Agent", + "display_name": "Oracle9iAS Clickstream Collector Agent", + "id": "Oracle9iAS_Clickstream_Collector_Agent", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle9iAS_Clickstream_Collector_Agent", + "realization_id": "302fa720-a789-493b-957b-6fc71a11941d", + "relative_path": "Oracle9iAS_Clickstream_Collector_Agent", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "302fa720-a789-493b-957b-6fc71a11941d", + "service_entries": [ + { + "_create_time": 1724279989053, + "_create_user": "system", + "_last_modified_time": 1724279989053, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "6668" + ], + "display_name": "Oracle9iAS Clickstream Collector Agent", + "id": "Oracle9iAS_Clickstream_Collector_Agent", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle9iAS_Clickstream_Collector_Agent", + "path": "/infra/services/Oracle9iAS_Clickstream_Collector_Agent/service-entries/Oracle9iAS_Clickstream_Collector_Agent", + "realization_id": "a97e900a-418d-4ae6-b376-cfb91b7e95e4", + "relative_path": "Oracle9iAS_Clickstream_Collector_Agent", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a97e900a-418d-4ae6-b376-cfb91b7e95e4" + } + ] + }, + { + "_create_time": 1724279988995, + "_create_user": "system", + "_last_modified_time": 1724279988995, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle9iAS Web Cache Admin port", + "display_name": "Oracle9iAS Web Cache Admin port", + "id": "Oracle9iAS_Web_Cache_Admin_port", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle9iAS_Web_Cache_Admin_port", + "realization_id": "216a8020-6d86-4bc7-b925-137fc597c3c1", + "relative_path": "Oracle9iAS_Web_Cache_Admin_port", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "216a8020-6d86-4bc7-b925-137fc597c3c1", + "service_entries": [ + { + "_create_time": 1724279988995, + "_create_user": "system", + "_last_modified_time": 1724279988995, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4000" + ], + "display_name": "Oracle9iAS Web Cache Admin port", + "id": "Oracle9iAS_Web_Cache_Admin_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle9iAS_Web_Cache_Admin_port", + "path": "/infra/services/Oracle9iAS_Web_Cache_Admin_port/service-entries/Oracle9iAS_Web_Cache_Admin_port", + "realization_id": "dc260c7e-936a-4bcb-bbd9-a34697961c47", + "relative_path": "Oracle9iAS_Web_Cache_Admin_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "dc260c7e-936a-4bcb-bbd9-a34697961c47" + } + ] + }, + { + "_create_time": 1724279989124, + "_create_user": "system", + "_last_modified_time": 1724279989124, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle9iAS Web Cache HTTP Listen(SSL) port", + "display_name": "Oracle9iAS Web Cache HTTP Listen(SSL) port", + "id": "Oracle9iAS_Web_Cache_HTTP_Listen(SSL)_port", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle9iAS_Web_Cache_HTTP_Listen(SSL)_port", + "realization_id": "72ba2f92-416e-4fab-98b7-2fa5e083316f", + "relative_path": "Oracle9iAS_Web_Cache_HTTP_Listen(SSL)_port", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "72ba2f92-416e-4fab-98b7-2fa5e083316f", + "service_entries": [ + { + "_create_time": 1724279989125, + "_create_user": "system", + "_last_modified_time": 1724279989125, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4444" + ], + "display_name": "Oracle9iAS Web Cache HTTP Listen(SSL) port", + "id": "Oracle9iAS_Web_Cache_HTTP_Listen(SSL)_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle9iAS_Web_Cache_HTTP_Listen(SSL)_port", + "path": "/infra/services/Oracle9iAS_Web_Cache_HTTP_Listen(SSL)_port/service-entries/Oracle9iAS_Web_Cache_HTTP_Listen(SSL)_port", + "realization_id": "c3da1b78-79a6-48e2-bd3b-b751c99baf1b", + "relative_path": "Oracle9iAS_Web_Cache_HTTP_Listen(SSL)_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c3da1b78-79a6-48e2-bd3b-b751c99baf1b" + } + ] + }, + { + "_create_time": 1724279989161, + "_create_user": "system", + "_last_modified_time": 1724279989161, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle9iAS Web Cache HTTP Listen(non-SSL) port", + "display_name": "Oracle9iAS Web Cache HTTP Listen(non-SSL) port", + "id": "Oracle9iAS_Web_Cache_HTTP_Listen(non-SSL)_port", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle9iAS_Web_Cache_HTTP_Listen(non-SSL)_port", + "realization_id": "c1dd7627-4678-414a-bf68-a0dce0a98ee6", + "relative_path": "Oracle9iAS_Web_Cache_HTTP_Listen(non-SSL)_port", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "c1dd7627-4678-414a-bf68-a0dce0a98ee6", + "service_entries": [ + { + "_create_time": 1724279989161, + "_create_user": "system", + "_last_modified_time": 1724279989161, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "7779" + ], + "display_name": "Oracle9iAS Web Cache HTTP Listen(non-SSL) port", + "id": "Oracle9iAS_Web_Cache_HTTP_Listen(non-SSL)_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle9iAS_Web_Cache_HTTP_Listen(non-SSL)_port", + "path": "/infra/services/Oracle9iAS_Web_Cache_HTTP_Listen(non-SSL)_port/service-entries/Oracle9iAS_Web_Cache_HTTP_Listen(non-SSL)_port", + "realization_id": "e4b8f7c1-2259-4dfe-8add-a33f523532f9", + "relative_path": "Oracle9iAS_Web_Cache_HTTP_Listen(non-SSL)_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "e4b8f7c1-2259-4dfe-8add-a33f523532f9" + } + ] + }, + { + "_create_time": 1724279988929, + "_create_user": "system", + "_last_modified_time": 1724279988929, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle9iAS Web Cache Invalidation port", + "display_name": "Oracle9iAS Web Cache Invalidation port", + "id": "Oracle9iAS_Web_Cache_Invalidation_port", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle9iAS_Web_Cache_Invalidation_port", + "realization_id": "01fb4e18-3961-4fe9-ab64-184b2cf49c47", + "relative_path": "Oracle9iAS_Web_Cache_Invalidation_port", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "01fb4e18-3961-4fe9-ab64-184b2cf49c47", + "service_entries": [ + { + "_create_time": 1724279988929, + "_create_user": "system", + "_last_modified_time": 1724279988929, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4001" + ], + "display_name": "Oracle9iAS Web Cache Invalidation port", + "id": "Oracle9iAS_Web_Cache_Invalidation_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle9iAS_Web_Cache_Invalidation_port", + "path": "/infra/services/Oracle9iAS_Web_Cache_Invalidation_port/service-entries/Oracle9iAS_Web_Cache_Invalidation_port", + "realization_id": "a3c35fd4-d1aa-44a0-bdca-8e6b0e2637bc", + "relative_path": "Oracle9iAS_Web_Cache_Invalidation_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a3c35fd4-d1aa-44a0-bdca-8e6b0e2637bc" + } + ] + }, + { + "_create_time": 1724279988864, + "_create_user": "system", + "_last_modified_time": 1724279988864, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Oracle9iAS Web Cache Statistics port", + "display_name": "Oracle9iAS Web Cache Statistics port", + "id": "Oracle9iAS_Web_Cache_Statistics_port", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Oracle9iAS_Web_Cache_Statistics_port", + "realization_id": "6fd58ce8-17fa-40cd-ac0a-7faebe6a96ca", + "relative_path": "Oracle9iAS_Web_Cache_Statistics_port", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "6fd58ce8-17fa-40cd-ac0a-7faebe6a96ca", + "service_entries": [ + { + "_create_time": 1724279988865, + "_create_user": "system", + "_last_modified_time": 1724279988865, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4002" + ], + "display_name": "Oracle9iAS Web Cache Statistics port", + "id": "Oracle9iAS_Web_Cache_Statistics_port", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Oracle9iAS_Web_Cache_Statistics_port", + "path": "/infra/services/Oracle9iAS_Web_Cache_Statistics_port/service-entries/Oracle9iAS_Web_Cache_Statistics_port", + "realization_id": "995d1596-4dcd-4b61-bac4-110bd3196fcb", + "relative_path": "Oracle9iAS_Web_Cache_Statistics_port", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "995d1596-4dcd-4b61-bac4-110bd3196fcb" + } + ] + }, + { + "_create_time": 1724279988925, + "_create_user": "system", + "_last_modified_time": 1724279988925, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "OracleAS Certificate Authority (OCA) - Mutual Authentication", + "display_name": "OracleAS Certificate Authority (OCA) - Mutual Authentication", + "id": "OracleAS_Certificate_Authority_(OCA)_-_Mutual_Authentication", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/OracleAS_Certificate_Authority_(OCA)_-_Mutual_Authentication", + "realization_id": "e6e88d79-0ab2-4749-9685-347d2bdda903", + "relative_path": "OracleAS_Certificate_Authority_(OCA)_-_Mutual_Authentication", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "e6e88d79-0ab2-4749-9685-347d2bdda903", + "service_entries": [ + { + "_create_time": 1724279988925, + "_create_user": "system", + "_last_modified_time": 1724279988925, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4401" + ], + "display_name": "OracleAS Certificate Authority (OCA) - Mutual Authentication", + "id": "OracleAS_Certificate_Authority_(OCA)_-_Mutual_Authentication", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/OracleAS_Certificate_Authority_(OCA)_-_Mutual_Authentication", + "path": "/infra/services/OracleAS_Certificate_Authority_(OCA)_-_Mutual_Authentication/service-entries/OracleAS_Certificate_Authority_(OCA)_-_Mutual_Authentication", + "realization_id": "132a9698-107b-4182-b250-0d2330118863", + "relative_path": "OracleAS_Certificate_Authority_(OCA)_-_Mutual_Authentication", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "132a9698-107b-4182-b250-0d2330118863" + } + ] + }, + { + "_create_time": 1724279988917, + "_create_user": "system", + "_last_modified_time": 1724279988917, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "OracleAS Certificate Authority (OCA) - Server Authentication", + "display_name": "OracleAS Certificate Authority (OCA) - Server Authentication", + "id": "OracleAS_Certificate_Authority_(OCA)_-_Server_Authentication", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/OracleAS_Certificate_Authority_(OCA)_-_Server_Authentication", + "realization_id": "b6903f9e-fa5c-4c2d-bf9c-6627d1fa542d", + "relative_path": "OracleAS_Certificate_Authority_(OCA)_-_Server_Authentication", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "b6903f9e-fa5c-4c2d-bf9c-6627d1fa542d", + "service_entries": [ + { + "_create_time": 1724279988917, + "_create_user": "system", + "_last_modified_time": 1724279988917, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4400" + ], + "display_name": "OracleAS Certificate Authority (OCA) - Server Authentication", + "id": "OracleAS_Certificate_Authority_(OCA)_-_Server_Authentication", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/OracleAS_Certificate_Authority_(OCA)_-_Server_Authentication", + "path": "/infra/services/OracleAS_Certificate_Authority_(OCA)_-_Server_Authentication/service-entries/OracleAS_Certificate_Authority_(OCA)_-_Server_Authentication", + "realization_id": "67f457c3-d9cd-4a82-a688-cf491b7c4f36", + "relative_path": "OracleAS_Certificate_Authority_(OCA)_-_Server_Authentication", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "67f457c3-d9cd-4a82-a688-cf491b7c4f36" + } + ] + }, + { + "_create_time": 1724279990308, + "_create_user": "system", + "_last_modified_time": 1724279990308, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Orchestrator", + "display_name": "Orchestrator", + "id": "Orchestrator", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Orchestrator", + "realization_id": "1aadd330-3b68-4cce-8ae6-9638236d6a4b", + "relative_path": "Orchestrator", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "1aadd330-3b68-4cce-8ae6-9638236d6a4b", + "service_entries": [ + { + "_create_time": 1724279990549, + "_create_user": "system", + "_last_modified_time": 1724279990549, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "25" + ], + "display_name": "SMTP", + "id": "SMTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Orchestrator", + "path": "/infra/services/Orchestrator/service-entries/SMTP", + "realization_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219", + "relative_path": "SMTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219" + }, + { + "_create_time": 1724279990611, + "_create_user": "system", + "_last_modified_time": 1724279990611, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8281" + ], + "display_name": "VMware-VCO-WebHTTPS", + "id": "VMware-VCO-WebHTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Orchestrator", + "path": "/infra/services/Orchestrator/service-entries/VMware-VCO-WebHTTPS", + "realization_id": "19653e0a-b3ba-4699-9638-8ca143adb3fe", + "relative_path": "VMware-VCO-WebHTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "19653e0a-b3ba-4699-9638-8ca143adb3fe" + }, + { + "_create_time": 1724279990497, + "_create_user": "system", + "_last_modified_time": 1724279990497, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Orchestrator", + "path": "/infra/services/Orchestrator/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + }, + { + "_create_time": 1724279990601, + "_create_user": "system", + "_last_modified_time": 1724279990601, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8230" + ], + "display_name": "Vmware-VCO-Lookup", + "id": "Vmware-VCO-Lookup", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Orchestrator", + "path": "/infra/services/Orchestrator/service-entries/Vmware-VCO-Lookup", + "realization_id": "19567786-0ea8-4404-98a9-702f9694dda8", + "relative_path": "Vmware-VCO-Lookup", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "19567786-0ea8-4404-98a9-702f9694dda8" + }, + { + "_create_time": 1724279990397, + "_create_user": "system", + "_last_modified_time": 1724279990397, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5432" + ], + "display_name": "PostgreSQL", + "id": "PostgreSQL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Orchestrator", + "path": "/infra/services/Orchestrator/service-entries/PostgreSQL", + "realization_id": "0e0cf9c6-ea34-451d-bc02-672f29bd0bab", + "relative_path": "PostgreSQL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "0e0cf9c6-ea34-451d-bc02-672f29bd0bab" + }, + { + "_create_time": 1724279990589, + "_create_user": "system", + "_last_modified_time": 1724279990589, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8240" + ], + "display_name": "VMware-VCO-Command", + "id": "VMware-VCO-Command", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Orchestrator", + "path": "/infra/services/Orchestrator/service-entries/VMware-VCO-Command", + "realization_id": "5abf2775-2d36-4eb3-b86c-473e79af34a2", + "relative_path": "VMware-VCO-Command", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5abf2775-2d36-4eb3-b86c-473e79af34a2" + }, + { + "_create_time": 1724279990338, + "_create_user": "system", + "_last_modified_time": 1724279990338, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8283" + ], + "display_name": "VMware-VCO-VCO-HTTPS", + "id": "VMware-VCO-VCO-HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Orchestrator", + "path": "/infra/services/Orchestrator/service-entries/VMware-VCO-VCO-HTTPS", + "realization_id": "4e84fc41-6e3d-41e6-b8e0-bf241cee20c4", + "relative_path": "VMware-VCO-VCO-HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "4e84fc41-6e3d-41e6-b8e0-bf241cee20c4" + }, + { + "_create_time": 1724279990437, + "_create_user": "system", + "_last_modified_time": 1724279990437, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1521" + ], + "display_name": "Oracle", + "id": "Oracle", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Orchestrator", + "path": "/infra/services/Orchestrator/service-entries/Oracle", + "realization_id": "3bb6713b-756e-439a-9ccd-7171f685c6e2", + "relative_path": "Oracle", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3bb6713b-756e-439a-9ccd-7171f685c6e2" + }, + { + "_create_time": 1724279990574, + "_create_user": "system", + "_last_modified_time": 1724279990574, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP-UDP", + "id": "LDAP-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Orchestrator", + "path": "/infra/services/Orchestrator/service-entries/LDAP-UDP", + "realization_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f", + "relative_path": "LDAP-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f" + }, + { + "_create_time": 1724279990457, + "_create_user": "system", + "_last_modified_time": 1724279990457, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "636" + ], + "display_name": "LDAP-over-SSL", + "id": "LDAP-over-SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Orchestrator", + "path": "/infra/services/Orchestrator/service-entries/LDAP-over-SSL", + "realization_id": "1c5f31ab-1398-44cc-84de-2e0891d813b3", + "relative_path": "LDAP-over-SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "1c5f31ab-1398-44cc-84de-2e0891d813b3" + }, + { + "_create_time": 1724279990369, + "_create_user": "system", + "_last_modified_time": 1724279990369, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8282" + ], + "display_name": "Vmware-VCO-VCO-HTTP", + "id": "Vmware-VCO-VCO-HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Orchestrator", + "path": "/infra/services/Orchestrator/service-entries/Vmware-VCO-VCO-HTTP", + "realization_id": "cc5a83bc-280b-4851-b6fd-258886f48ef2", + "relative_path": "Vmware-VCO-VCO-HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "cc5a83bc-280b-4851-b6fd-258886f48ef2" + }, + { + "_create_time": 1724279990326, + "_create_user": "system", + "_last_modified_time": 1724279990326, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8244" + ], + "display_name": "VMware-VCO-Data", + "id": "VMware-VCO-Data", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Orchestrator", + "path": "/infra/services/Orchestrator/service-entries/VMware-VCO-Data", + "realization_id": "739dc889-5552-4b4e-b894-6b8a61d3f4e5", + "relative_path": "VMware-VCO-Data", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "739dc889-5552-4b4e-b894-6b8a61d3f4e5" + }, + { + "_create_time": 1724279990627, + "_create_user": "system", + "_last_modified_time": 1724279990627, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8250" + ], + "display_name": "VMware-VCO-Messaging", + "id": "VMware-VCO-Messaging", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Orchestrator", + "path": "/infra/services/Orchestrator/service-entries/VMware-VCO-Messaging", + "realization_id": "befaf96a-a58e-469e-adff-a6f39a028c46", + "relative_path": "VMware-VCO-Messaging", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "befaf96a-a58e-469e-adff-a6f39a028c46" + }, + { + "_create_time": 1724279990477, + "_create_user": "system", + "_last_modified_time": 1724279990477, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1433" + ], + "display_name": "MS-SQL-S", + "id": "MS-SQL-S", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Orchestrator", + "path": "/infra/services/Orchestrator/service-entries/MS-SQL-S", + "realization_id": "a7240508-b3a5-4123-b5b7-37f68e9a924f", + "relative_path": "MS-SQL-S", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a7240508-b3a5-4123-b5b7-37f68e9a924f" + }, + { + "_create_time": 1724279990409, + "_create_user": "system", + "_last_modified_time": 1724279990409, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3306" + ], + "display_name": "MySQL", + "id": "MySQL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Orchestrator", + "path": "/infra/services/Orchestrator/service-entries/MySQL", + "realization_id": "0defe641-d382-4486-ac38-4cae77224d4d", + "relative_path": "MySQL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "0defe641-d382-4486-ac38-4cae77224d4d" + }, + { + "_create_time": 1724279990620, + "_create_user": "system", + "_last_modified_time": 1724279990620, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8280" + ], + "display_name": "VMware-VCO-WebHTTP", + "id": "VMware-VCO-WebHTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Orchestrator", + "path": "/infra/services/Orchestrator/service-entries/VMware-VCO-WebHTTP", + "realization_id": "4554aaad-c994-4851-a7fd-08d52537155c", + "relative_path": "VMware-VCO-WebHTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "4554aaad-c994-4851-a7fd-08d52537155c" + }, + { + "_create_time": 1724279990512, + "_create_user": "system", + "_last_modified_time": 1724279990512, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP", + "id": "LDAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Orchestrator", + "path": "/infra/services/Orchestrator/service-entries/LDAP", + "realization_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28", + "relative_path": "LDAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28" + } + ] + }, + { + "_create_time": 1724279988856, + "_create_user": "system", + "_last_modified_time": 1724279988856, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "PC Anywhere (TCP)", + "display_name": "PC Anywhere (TCP)", + "id": "PC_Anywhere_(TCP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/PC_Anywhere_(TCP)", + "realization_id": "dcc18b66-6f9a-4e92-98e4-2ecd5a00b85d", + "relative_path": "PC_Anywhere_(TCP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "dcc18b66-6f9a-4e92-98e4-2ecd5a00b85d", + "service_entries": [ + { + "_create_time": 1724279988856, + "_create_user": "system", + "_last_modified_time": 1724279988856, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5631" + ], + "display_name": "PC Anywhere (TCP)", + "id": "PC_Anywhere_(TCP)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/PC_Anywhere_(TCP)", + "path": "/infra/services/PC_Anywhere_(TCP)/service-entries/PC_Anywhere_(TCP)", + "realization_id": "561e8c25-8bff-4a5a-94bc-1e601acbb604", + "relative_path": "PC_Anywhere_(TCP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "561e8c25-8bff-4a5a-94bc-1e601acbb604" + } + ] + }, + { + "_create_time": 1724279988827, + "_create_user": "system", + "_last_modified_time": 1724279988827, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "PC Anywhere (UDP)", + "display_name": "PC Anywhere (UDP)", + "id": "PC_Anywhere_(UDP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/PC_Anywhere_(UDP)", + "realization_id": "27d41f63-189c-4cb6-bde1-6e845b01a740", + "relative_path": "PC_Anywhere_(UDP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "27d41f63-189c-4cb6-bde1-6e845b01a740", + "service_entries": [ + { + "_create_time": 1724279988827, + "_create_user": "system", + "_last_modified_time": 1724279988827, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5632" + ], + "display_name": "PC Anywhere (UDP)", + "id": "PC_Anywhere_(UDP)", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/PC_Anywhere_(UDP)", + "path": "/infra/services/PC_Anywhere_(UDP)/service-entries/PC_Anywhere_(UDP)", + "realization_id": "c1d1a7aa-9f0b-49b8-b541-23e08c0fa23c", + "relative_path": "PC_Anywhere_(UDP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c1d1a7aa-9f0b-49b8-b541-23e08c0fa23c" + } + ] + }, + { + "_create_time": 1724279988834, + "_create_user": "system", + "_last_modified_time": 1724279988834, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "POP3", + "display_name": "POP3", + "id": "POP3", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/POP3", + "realization_id": "fdcd1f4a-eabb-490b-8c49-37e007b9e9da", + "relative_path": "POP3", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "fdcd1f4a-eabb-490b-8c49-37e007b9e9da", + "service_entries": [ + { + "_create_time": 1724279988835, + "_create_user": "system", + "_last_modified_time": 1724279988835, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "110" + ], + "display_name": "POP3", + "id": "POP3", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/POP3", + "path": "/infra/services/POP3/service-entries/POP3", + "realization_id": "91c0ac1d-2d04-49a7-b1e7-5d2bd1f6de95", + "relative_path": "POP3", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "91c0ac1d-2d04-49a7-b1e7-5d2bd1f6de95" + } + ] + }, + { + "_create_time": 1724279988967, + "_create_user": "system", + "_last_modified_time": 1724279988967, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "POP3_SSL", + "display_name": "POP3_SSL", + "id": "POP3_SSL", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/POP3_SSL", + "realization_id": "185db796-cf2a-4400-a0c9-9c439d97c51b", + "relative_path": "POP3_SSL", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "185db796-cf2a-4400-a0c9-9c439d97c51b", + "service_entries": [ + { + "_create_time": 1724279988967, + "_create_user": "system", + "_last_modified_time": 1724279988967, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "995" + ], + "display_name": "POP3_SSL", + "id": "POP3_SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/POP3_SSL", + "path": "/infra/services/POP3_SSL/service-entries/POP3_SSL", + "realization_id": "78dc2b15-edf4-43bb-9199-1586f80adc23", + "relative_path": "POP3_SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "78dc2b15-edf4-43bb-9199-1586f80adc23" + } + ] + }, + { + "_create_time": 1724279988831, + "_create_user": "system", + "_last_modified_time": 1724279988831, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "PostgreSQL", + "display_name": "PostgreSQL", + "id": "PostgreSQL", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/PostgreSQL", + "realization_id": "886c6fac-6d08-479a-914c-6868ad48a64e", + "relative_path": "PostgreSQL", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "886c6fac-6d08-479a-914c-6868ad48a64e", + "service_entries": [ + { + "_create_time": 1724279988833, + "_create_user": "system", + "_last_modified_time": 1724279988833, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5432" + ], + "display_name": "PostgreSQL", + "id": "PostgreSQL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/PostgreSQL", + "path": "/infra/services/PostgreSQL/service-entries/PostgreSQL", + "realization_id": "0e0cf9c6-ea34-451d-bc02-672f29bd0bab", + "relative_path": "PostgreSQL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "0e0cf9c6-ea34-451d-bc02-672f29bd0bab" + } + ] + }, + { + "_create_time": 1724279988925, + "_create_user": "system", + "_last_modified_time": 1724279988925, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "RDP", + "display_name": "RDP", + "id": "RDP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/RDP", + "realization_id": "7f819da1-8473-483d-b9b9-238119b25e0e", + "relative_path": "RDP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "7f819da1-8473-483d-b9b9-238119b25e0e", + "service_entries": [ + { + "_create_time": 1724279988926, + "_create_user": "system", + "_last_modified_time": 1724279988926, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3389" + ], + "display_name": "RDP", + "id": "RDP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/RDP", + "path": "/infra/services/RDP/service-entries/RDP", + "realization_id": "c7896f47-e853-44e4-ada9-dce830f84eff", + "relative_path": "RDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c7896f47-e853-44e4-ada9-dce830f84eff" + } + ] + }, + { + "_create_time": 1724279988951, + "_create_user": "system", + "_last_modified_time": 1724279988951, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "RFB", + "display_name": "RFB", + "id": "RFB", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/RFB", + "realization_id": "f4c95a4e-7125-4768-a194-88b1efe70f1d", + "relative_path": "RFB", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "f4c95a4e-7125-4768-a194-88b1efe70f1d", + "service_entries": [ + { + "_create_time": 1724279988952, + "_create_user": "system", + "_last_modified_time": 1724279988952, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5900-5964" + ], + "display_name": "RFB", + "id": "RFB", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/RFB", + "path": "/infra/services/RFB/service-entries/RFB", + "realization_id": "27142db2-cb81-41d9-b54f-4dfc53b66763", + "relative_path": "RFB", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "27142db2-cb81-41d9-b54f-4dfc53b66763" + } + ] + }, + { + "_create_time": 1724279989022, + "_create_user": "system", + "_last_modified_time": 1724279989022, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "RPC, DFSR (SYSVOL)", + "display_name": "RPC, DFSR (SYSVOL)", + "id": "RPC,_DFSR_(SYSVOL)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/RPC,_DFSR_(SYSVOL)", + "realization_id": "2c28a3ca-65fa-474b-9420-74b038a6de3b", + "relative_path": "RPC,_DFSR_(SYSVOL)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "2c28a3ca-65fa-474b-9420-74b038a6de3b", + "service_entries": [ + { + "_create_time": 1724279989023, + "_create_user": "system", + "_last_modified_time": 1724279989023, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5722" + ], + "display_name": "RPC, DFSR (SYSVOL)", + "id": "RPC,_DFSR_(SYSVOL)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/RPC,_DFSR_(SYSVOL)", + "path": "/infra/services/RPC,_DFSR_(SYSVOL)/service-entries/RPC,_DFSR_(SYSVOL)", + "realization_id": "3d7dba87-966a-4e81-9ee1-e64075f791cd", + "relative_path": "RPC,_DFSR_(SYSVOL)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3d7dba87-966a-4e81-9ee1-e64075f791cd" + } + ] + }, + { + "_create_time": 1724279989004, + "_create_user": "system", + "_last_modified_time": 1724279989004, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "RTSP (TCP)", + "display_name": "RTSP (TCP)", + "id": "RTSP_(TCP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/RTSP_(TCP)", + "realization_id": "fd32f37c-3594-404b-a1ca-4bcbe2f8cbcc", + "relative_path": "RTSP_(TCP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "fd32f37c-3594-404b-a1ca-4bcbe2f8cbcc", + "service_entries": [ + { + "_create_time": 1724279989005, + "_create_user": "system", + "_last_modified_time": 1724279989005, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "554" + ], + "display_name": "RTSP (TCP)", + "id": "RTSP_(TCP)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/RTSP_(TCP)", + "path": "/infra/services/RTSP_(TCP)/service-entries/RTSP_(TCP)", + "realization_id": "d94d3dda-1afb-44aa-b7c3-9a8b26fd515d", + "relative_path": "RTSP_(TCP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "d94d3dda-1afb-44aa-b7c3-9a8b26fd515d" + } + ] + }, + { + "_create_time": 1724279988984, + "_create_user": "system", + "_last_modified_time": 1724279988984, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "RTSP (UDP)", + "display_name": "RTSP (UDP)", + "id": "RTSP_(UDP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/RTSP_(UDP)", + "realization_id": "3c225766-4964-4b96-a260-e37500682dbb", + "relative_path": "RTSP_(UDP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "3c225766-4964-4b96-a260-e37500682dbb", + "service_entries": [ + { + "_create_time": 1724279988984, + "_create_user": "system", + "_last_modified_time": 1724279988984, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "554" + ], + "display_name": "RTSP (UDP)", + "id": "RTSP_(UDP)", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/RTSP_(UDP)", + "path": "/infra/services/RTSP_(UDP)/service-entries/RTSP_(UDP)", + "realization_id": "caa15466-9b11-464d-bc83-f49f9ccdbf7f", + "relative_path": "RTSP_(UDP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "caa15466-9b11-464d-bc83-f49f9ccdbf7f" + } + ] + }, + { + "_create_time": 1724279989103, + "_create_user": "system", + "_last_modified_time": 1724279989103, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Routing Engine service", + "display_name": "Routing Engine service", + "id": "Routing_Engine_service", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Routing_Engine_service", + "realization_id": "525177b7-f656-4a9f-8227-5bd6ae8b98fe", + "relative_path": "Routing_Engine_service", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "525177b7-f656-4a9f-8227-5bd6ae8b98fe", + "service_entries": [ + { + "_create_time": 1724279989103, + "_create_user": "system", + "_last_modified_time": 1724279989103, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "691" + ], + "display_name": "Routing Engine service", + "id": "Routing_Engine_service", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Routing_Engine_service", + "path": "/infra/services/Routing_Engine_service/service-entries/Routing_Engine_service", + "realization_id": "d5e64a59-7a64-40de-9756-2d5a8c3941d5", + "relative_path": "Routing_Engine_service", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "d5e64a59-7a64-40de-9756-2d5a8c3941d5" + } + ] + }, + { + "_create_time": 1724279989048, + "_create_user": "system", + "_last_modified_time": 1724279989048, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Admin console", + "display_name": "SAP Admin console", + "id": "SAP_Admin_console", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Admin_console", + "realization_id": "e24d9b2d-85c2-4de4-a1cb-c6844776ea66", + "relative_path": "SAP_Admin_console", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "e24d9b2d-85c2-4de4-a1cb-c6844776ea66", + "service_entries": [ + { + "_create_time": 1724279989048, + "_create_user": "system", + "_last_modified_time": 1724279989048, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "20005" + ], + "display_name": "SAP Admin console", + "id": "SAP_Admin_console", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Admin_console", + "path": "/infra/services/SAP_Admin_console/service-entries/SAP_Admin_console", + "realization_id": "ce0326de-ae14-4cf3-870f-70e18611a630", + "relative_path": "SAP_Admin_console", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "ce0326de-ae14-4cf3-870f-70e18611a630" + } + ] + }, + { + "_create_time": 1724279989006, + "_create_user": "system", + "_last_modified_time": 1724279989006, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Alert Server", + "display_name": "SAP Alert Server", + "id": "SAP_Alert_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Alert_Server", + "realization_id": "6957febc-bd2c-4e6b-bd9f-f43c0719652a", + "relative_path": "SAP_Alert_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "6957febc-bd2c-4e6b-bd9f-f43c0719652a", + "service_entries": [ + { + "_create_time": 1724279989007, + "_create_user": "system", + "_last_modified_time": 1724279989007, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "30011" + ], + "display_name": "SAP Alert Server", + "id": "SAP_Alert_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Alert_Server", + "path": "/infra/services/SAP_Alert_Server/service-entries/SAP_Alert_Server", + "realization_id": "c8d84213-929b-49dc-a5c3-5879bf166f3b", + "relative_path": "SAP_Alert_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c8d84213-929b-49dc-a5c3-5879bf166f3b" + } + ] + }, + { + "_create_time": 1724279988935, + "_create_user": "system", + "_last_modified_time": 1724279988935, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Backup Server", + "display_name": "SAP Backup Server", + "id": "SAP_Backup_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Backup_Server", + "realization_id": "d2c8834a-4c9e-4a69-9dcd-97c90f4c18a1", + "relative_path": "SAP_Backup_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "d2c8834a-4c9e-4a69-9dcd-97c90f4c18a1", + "service_entries": [ + { + "_create_time": 1724279988935, + "_create_user": "system", + "_last_modified_time": 1724279988935, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "30017" + ], + "display_name": "SAP Backup Server", + "id": "SAP_Backup_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Backup_Server", + "path": "/infra/services/SAP_Backup_Server/service-entries/SAP_Backup_Server", + "realization_id": "9bce57b5-a097-401a-81e9-dd1215ebab0f", + "relative_path": "SAP_Backup_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "9bce57b5-a097-401a-81e9-dd1215ebab0f" + } + ] + }, + { + "_create_time": 1724279989181, + "_create_user": "system", + "_last_modified_time": 1724279989181, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Cache Server", + "display_name": "SAP Cache Server", + "id": "SAP_Cache_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Cache_Server", + "realization_id": "1d1055c4-6670-4e4e-9086-572ad55af5f4", + "relative_path": "SAP_Cache_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "1d1055c4-6670-4e4e-9086-572ad55af5f4", + "service_entries": [ + { + "_create_time": 1724279989181, + "_create_user": "system", + "_last_modified_time": 1724279989181, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1095" + ], + "display_name": "SAP Cache Server", + "id": "SAP_Cache_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Cache_Server", + "path": "/infra/services/SAP_Cache_Server/service-entries/SAP_Cache_Server", + "realization_id": "5cfb7b8d-6789-499a-a324-348e2fa80534", + "relative_path": "SAP_Cache_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5cfb7b8d-6789-499a-a324-348e2fa80534" + } + ] + }, + { + "_create_time": 1724279989178, + "_create_user": "system", + "_last_modified_time": 1724279989178, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Central Software Deployment Manager", + "display_name": "SAP Central Software Deployment Manager", + "id": "SAP_Central_Software_Deployment_Manager", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Central_Software_Deployment_Manager", + "realization_id": "122a685b-7ea0-44b0-8172-47275d774251", + "relative_path": "SAP_Central_Software_Deployment_Manager", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "122a685b-7ea0-44b0-8172-47275d774251", + "service_entries": [ + { + "_create_time": 1724279989178, + "_create_user": "system", + "_last_modified_time": 1724279989178, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "20201" + ], + "display_name": "SAP Central Software Deployment Manager", + "id": "SAP_Central_Software_Deployment_Manager", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Central_Software_Deployment_Manager", + "path": "/infra/services/SAP_Central_Software_Deployment_Manager/service-entries/SAP_Central_Software_Deployment_Manager", + "realization_id": "b73c11e8-15b7-40c6-bb05-4e42234b3ed2", + "relative_path": "SAP_Central_Software_Deployment_Manager", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b73c11e8-15b7-40c6-bb05-4e42234b3ed2" + } + ] + }, + { + "_create_time": 1724279989188, + "_create_user": "system", + "_last_modified_time": 1724279989188, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Comm", + "display_name": "SAP Comm", + "id": "SAP_Comm", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Comm", + "realization_id": "7e4b001f-889a-4398-84c0-b6882af1db1a", + "relative_path": "SAP_Comm", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "7e4b001f-889a-4398-84c0-b6882af1db1a", + "service_entries": [ + { + "_create_time": 1724279989188, + "_create_user": "system", + "_last_modified_time": 1724279989188, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "20003" + ], + "display_name": "SAP Comm", + "id": "SAP_Comm", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Comm", + "path": "/infra/services/SAP_Comm/service-entries/SAP_Comm", + "realization_id": "e62b3633-187f-4a41-9d51-2d525fcfbd17", + "relative_path": "SAP_Comm", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "e62b3633-187f-4a41-9d51-2d525fcfbd17" + } + ] + }, + { + "_create_time": 1724279989112, + "_create_user": "system", + "_last_modified_time": 1724279989112, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Content Server", + "display_name": "SAP Content Server", + "id": "SAP_Content_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Content_Server", + "realization_id": "a458a28c-3897-40b9-8ae7-e13605fb6961", + "relative_path": "SAP_Content_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "a458a28c-3897-40b9-8ae7-e13605fb6961", + "service_entries": [ + { + "_create_time": 1724279989113, + "_create_user": "system", + "_last_modified_time": 1724279989113, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1090" + ], + "display_name": "SAP Content Server", + "id": "SAP_Content_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Content_Server", + "path": "/infra/services/SAP_Content_Server/service-entries/SAP_Content_Server", + "realization_id": "cd0581c5-cc3e-4ada-9a9c-197323a7e1f3", + "relative_path": "SAP_Content_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "cd0581c5-cc3e-4ada-9a9c-197323a7e1f3" + } + ] + }, + { + "_create_time": 1724279988950, + "_create_user": "system", + "_last_modified_time": 1724279988950, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Cruiser", + "display_name": "SAP Cruiser", + "id": "SAP_Cruiser", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Cruiser", + "realization_id": "f6c4d620-2f4f-4d5c-8f16-6baedb3c9804", + "relative_path": "SAP_Cruiser", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "f6c4d620-2f4f-4d5c-8f16-6baedb3c9804", + "service_entries": [ + { + "_create_time": 1724279988951, + "_create_user": "system", + "_last_modified_time": 1724279988951, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "30008" + ], + "display_name": "SAP Cruiser", + "id": "SAP_Cruiser", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Cruiser", + "path": "/infra/services/SAP_Cruiser/service-entries/SAP_Cruiser", + "realization_id": "05fa62a2-e3ab-411c-baca-024403af6d32", + "relative_path": "SAP_Cruiser", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "05fa62a2-e3ab-411c-baca-024403af6d32" + } + ] + }, + { + "_create_time": 1724279988836, + "_create_user": "system", + "_last_modified_time": 1724279988836, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Design Time Repository", + "display_name": "SAP Design Time Repository", + "id": "SAP_Design_Time_Repository", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Design_Time_Repository", + "realization_id": "84ff04b3-7c5c-4edb-9359-0d7e48e75ee9", + "relative_path": "SAP_Design_Time_Repository", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "84ff04b3-7c5c-4edb-9359-0d7e48e75ee9", + "service_entries": [ + { + "_create_time": 1724279988836, + "_create_user": "system", + "_last_modified_time": 1724279988836, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50015" + ], + "display_name": "SAP Design Time Repository", + "id": "SAP_Design_Time_Repository", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Design_Time_Repository", + "path": "/infra/services/SAP_Design_Time_Repository/service-entries/SAP_Design_Time_Repository", + "realization_id": "7dac3e69-cf40-4772-bee1-6dd9e5a7c8d2", + "relative_path": "SAP_Design_Time_Repository", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "7dac3e69-cf40-4772-bee1-6dd9e5a7c8d2" + } + ] + }, + { + "_create_time": 1724279988942, + "_create_user": "system", + "_last_modified_time": 1724279988942, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Dispatcher", + "display_name": "SAP Dispatcher", + "id": "SAP_Dispatcher", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Dispatcher", + "realization_id": "d22cb773-8189-43ae-bf77-608c3afef3b3", + "relative_path": "SAP_Dispatcher", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "d22cb773-8189-43ae-bf77-608c3afef3b3", + "service_entries": [ + { + "_create_time": 1724279988942, + "_create_user": "system", + "_last_modified_time": 1724279988942, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3200" + ], + "display_name": "SAP Dispatcher", + "id": "SAP_Dispatcher", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Dispatcher", + "path": "/infra/services/SAP_Dispatcher/service-entries/SAP_Dispatcher", + "realization_id": "b3545aaf-1085-40f3-8301-9b2ccd7f2d41", + "relative_path": "SAP_Dispatcher", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b3545aaf-1085-40f3-8301-9b2ccd7f2d41" + } + ] + }, + { + "_create_time": 1724279989095, + "_create_user": "system", + "_last_modified_time": 1724279989095, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Dispatcher Netweaver App Server", + "display_name": "SAP Dispatcher Netweaver App Server", + "id": "SAP_Dispatcher_Netweaver_App_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Dispatcher_Netweaver_App_Server", + "realization_id": "5231cb9a-d6eb-481b-b35f-964875f863e2", + "relative_path": "SAP_Dispatcher_Netweaver_App_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "5231cb9a-d6eb-481b-b35f-964875f863e2", + "service_entries": [ + { + "_create_time": 1724279989095, + "_create_user": "system", + "_last_modified_time": 1724279989095, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3200" + ], + "display_name": "SAP Dispatcher Netweaver App Server", + "id": "SAP_Dispatcher_Netweaver_App_Server", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Dispatcher_Netweaver_App_Server", + "path": "/infra/services/SAP_Dispatcher_Netweaver_App_Server/service-entries/SAP_Dispatcher_Netweaver_App_Server", + "realization_id": "652cc9f1-6440-4ac5-bae5-2fae02919136", + "relative_path": "SAP_Dispatcher_Netweaver_App_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "652cc9f1-6440-4ac5-bae5-2fae02919136" + } + ] + }, + { + "_create_time": 1724279989092, + "_create_user": "system", + "_last_modified_time": 1724279989092, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Enqueue Repl 2", + "display_name": "SAP Enqueue Repl 2", + "id": "SAP_Enqueue_Repl_2", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Enqueue_Repl_2", + "realization_id": "6ae026fb-dc8a-4565-9ec8-bc0cd066f7d5", + "relative_path": "SAP_Enqueue_Repl_2", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "6ae026fb-dc8a-4565-9ec8-bc0cd066f7d5", + "service_entries": [ + { + "_create_time": 1724279989092, + "_create_user": "system", + "_last_modified_time": 1724279989092, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50116" + ], + "display_name": "SAP Enqueue Repl 2", + "id": "SAP_Enqueue_Repl_2", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Enqueue_Repl_2", + "path": "/infra/services/SAP_Enqueue_Repl_2/service-entries/SAP_Enqueue_Repl_2", + "realization_id": "3583950f-ebc8-42cf-97f8-41d9d4b92a95", + "relative_path": "SAP_Enqueue_Repl_2", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3583950f-ebc8-42cf-97f8-41d9d4b92a95" + } + ] + }, + { + "_create_time": 1724279988965, + "_create_user": "system", + "_last_modified_time": 1724279988965, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Enqueue Svr", + "display_name": "SAP Enqueue Svr", + "id": "SAP_Enqueue_Svr", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Enqueue_Svr", + "realization_id": "9d234fe5-6857-47c4-a059-0e0e681c382f", + "relative_path": "SAP_Enqueue_Svr", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "9d234fe5-6857-47c4-a059-0e0e681c382f", + "service_entries": [ + { + "_create_time": 1724279988965, + "_create_user": "system", + "_last_modified_time": 1724279988965, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3201" + ], + "display_name": "SAP Enqueue Svr", + "id": "SAP_Enqueue_Svr", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Enqueue_Svr", + "path": "/infra/services/SAP_Enqueue_Svr/service-entries/SAP_Enqueue_Svr", + "realization_id": "0540b5fe-2634-4b82-94ee-4a89e2863580", + "relative_path": "SAP_Enqueue_Svr", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "0540b5fe-2634-4b82-94ee-4a89e2863580" + } + ] + }, + { + "_create_time": 1724279989032, + "_create_user": "system", + "_last_modified_time": 1724279989032, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Exchange Groupware Connector (DCOM)", + "display_name": "SAP Exchange Groupware Connector (DCOM)", + "id": "SAP_Exchange_Groupware_Connector_(DCOM)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Exchange_Groupware_Connector_(DCOM)", + "realization_id": "4d684cbf-69a8-49dd-b902-c9a13789a006", + "relative_path": "SAP_Exchange_Groupware_Connector_(DCOM)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "4d684cbf-69a8-49dd-b902-c9a13789a006", + "service_entries": [ + { + "_create_time": 1724279989032, + "_create_user": "system", + "_last_modified_time": 1724279989032, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "135" + ], + "display_name": "SAP Exchange Groupware Connector (DCOM)", + "id": "SAP_Exchange_Groupware_Connector_(DCOM)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Exchange_Groupware_Connector_(DCOM)", + "path": "/infra/services/SAP_Exchange_Groupware_Connector_(DCOM)/service-entries/SAP_Exchange_Groupware_Connector_(DCOM)", + "realization_id": "281fd269-7e71-40cf-bc68-6ecd34c656ec", + "relative_path": "SAP_Exchange_Groupware_Connector_(DCOM)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "281fd269-7e71-40cf-bc68-6ecd34c656ec" + } + ] + }, + { + "_create_time": 1724279988930, + "_create_user": "system", + "_last_modified_time": 1724279988930, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP File Adapter", + "display_name": "SAP File Adapter", + "id": "SAP_File_Adapter", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_File_Adapter", + "realization_id": "c88e3f1c-030d-4cb3-a941-eb97ab166523", + "relative_path": "SAP_File_Adapter", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "c88e3f1c-030d-4cb3-a941-eb97ab166523", + "service_entries": [ + { + "_create_time": 1724279988930, + "_create_user": "system", + "_last_modified_time": 1724279988930, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8230" + ], + "display_name": "SAP File Adapter", + "id": "SAP_File_Adapter", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_File_Adapter", + "path": "/infra/services/SAP_File_Adapter/service-entries/SAP_File_Adapter", + "realization_id": "97ac39c3-361b-46aa-bee9-c489c2d57f0b", + "relative_path": "SAP_File_Adapter", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "97ac39c3-361b-46aa-bee9-c489c2d57f0b" + } + ] + }, + { + "_create_time": 1724279988970, + "_create_user": "system", + "_last_modified_time": 1724279988970, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP GRMG Service (Heartbeat)", + "display_name": "SAP GRMG Service (Heartbeat)", + "id": "SAP_GRMG_Service_(Heartbeat)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_GRMG_Service_(Heartbeat)", + "realization_id": "85caa907-30cf-4654-b194-9364dbf6cbaf", + "relative_path": "SAP_GRMG_Service_(Heartbeat)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "85caa907-30cf-4654-b194-9364dbf6cbaf", + "service_entries": [ + { + "_create_time": 1724279988970, + "_create_user": "system", + "_last_modified_time": 1724279988970, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "30006" + ], + "display_name": "SAP GRMG Service (Heartbeat)", + "id": "SAP_GRMG_Service_(Heartbeat)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_GRMG_Service_(Heartbeat)", + "path": "/infra/services/SAP_GRMG_Service_(Heartbeat)/service-entries/SAP_GRMG_Service_(Heartbeat)", + "realization_id": "4c9e6a48-5925-4802-bbc5-aa8cb6c47b60", + "relative_path": "SAP_GRMG_Service_(Heartbeat)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "4c9e6a48-5925-4802-bbc5-aa8cb6c47b60" + } + ] + }, + { + "_create_time": 1724279989091, + "_create_user": "system", + "_last_modified_time": 1724279989091, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Gateway Netweaver App Server", + "display_name": "SAP Gateway Netweaver App Server", + "id": "SAP_Gateway_Netweaver_App_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Gateway_Netweaver_App_Server", + "realization_id": "0062165e-d75a-4b9b-9049-12907e88cdc7", + "relative_path": "SAP_Gateway_Netweaver_App_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "0062165e-d75a-4b9b-9049-12907e88cdc7", + "service_entries": [ + { + "_create_time": 1724279989091, + "_create_user": "system", + "_last_modified_time": 1724279989091, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3300" + ], + "display_name": "SAP Gateway Netweaver App Server", + "id": "SAP_Gateway_Netweaver_App_Server", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Gateway_Netweaver_App_Server", + "path": "/infra/services/SAP_Gateway_Netweaver_App_Server/service-entries/SAP_Gateway_Netweaver_App_Server", + "realization_id": "de63a7d7-4896-468c-954e-92e25eafdc29", + "relative_path": "SAP_Gateway_Netweaver_App_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "de63a7d7-4896-468c-954e-92e25eafdc29" + } + ] + }, + { + "_create_time": 1724279988973, + "_create_user": "system", + "_last_modified_time": 1724279988973, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP HTTP", + "display_name": "SAP HTTP", + "id": "SAP_HTTP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_HTTP", + "realization_id": "bf2d58e3-56bf-4710-ab2a-073202034a49", + "relative_path": "SAP_HTTP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "bf2d58e3-56bf-4710-ab2a-073202034a49", + "service_entries": [ + { + "_create_time": 1724279988973, + "_create_user": "system", + "_last_modified_time": 1724279988973, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50000" + ], + "display_name": "SAP HTTP", + "id": "SAP_HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_HTTP", + "path": "/infra/services/SAP_HTTP/service-entries/SAP_HTTP", + "realization_id": "6d717c30-6c38-4bad-8de0-35e0ff32954b", + "relative_path": "SAP_HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "6d717c30-6c38-4bad-8de0-35e0ff32954b" + } + ] + }, + { + "_create_time": 1724279988963, + "_create_user": "system", + "_last_modified_time": 1724279988963, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP HTTP Server", + "display_name": "SAP HTTP Server", + "id": "SAP_HTTP_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_HTTP_Server", + "realization_id": "99186506-2040-4b45-a91c-12887da2f44f", + "relative_path": "SAP_HTTP_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "99186506-2040-4b45-a91c-12887da2f44f", + "service_entries": [ + { + "_create_time": 1724279988963, + "_create_user": "system", + "_last_modified_time": 1724279988963, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "30005" + ], + "display_name": "SAP HTTP Server", + "id": "SAP_HTTP_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_HTTP_Server", + "path": "/infra/services/SAP_HTTP_Server/service-entries/SAP_HTTP_Server", + "realization_id": "2d818790-6109-4e6e-b0c0-109bfba7a464", + "relative_path": "SAP_HTTP_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "2d818790-6109-4e6e-b0c0-109bfba7a464" + } + ] + }, + { + "_create_time": 1724279989190, + "_create_user": "system", + "_last_modified_time": 1724279989190, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP HTTP Server 2", + "display_name": "SAP HTTP Server 2", + "id": "SAP_HTTP_Server_2", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_HTTP_Server_2", + "realization_id": "47684105-e6fb-43a8-85b3-e9859285c914", + "relative_path": "SAP_HTTP_Server_2", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "47684105-e6fb-43a8-85b3-e9859285c914", + "service_entries": [ + { + "_create_time": 1724279989190, + "_create_user": "system", + "_last_modified_time": 1724279989190, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8353" + ], + "display_name": "SAP HTTP Server 2", + "id": "SAP_HTTP_Server_2", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_HTTP_Server_2", + "path": "/infra/services/SAP_HTTP_Server_2/service-entries/SAP_HTTP_Server_2", + "realization_id": "c4f32349-0ed8-47d0-90dd-e62e8ec98d43", + "relative_path": "SAP_HTTP_Server_2", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c4f32349-0ed8-47d0-90dd-e62e8ec98d43" + } + ] + }, + { + "_create_time": 1724279988947, + "_create_user": "system", + "_last_modified_time": 1724279988947, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP HTTPS", + "display_name": "SAP HTTPS", + "id": "SAP_HTTPS", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_HTTPS", + "realization_id": "a588ff91-4dbd-46e8-9ef6-5ee163fadcb3", + "relative_path": "SAP_HTTPS", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "a588ff91-4dbd-46e8-9ef6-5ee163fadcb3", + "service_entries": [ + { + "_create_time": 1724279988948, + "_create_user": "system", + "_last_modified_time": 1724279988948, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50001" + ], + "display_name": "SAP HTTPS", + "id": "SAP_HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_HTTPS", + "path": "/infra/services/SAP_HTTPS/service-entries/SAP_HTTPS", + "realization_id": "af59a0ef-a91a-4562-90a6-5b84eb27fb74", + "relative_path": "SAP_HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "af59a0ef-a91a-4562-90a6-5b84eb27fb74" + } + ] + }, + { + "_create_time": 1724279989036, + "_create_user": "system", + "_last_modified_time": 1724279989036, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP HostControl", + "display_name": "SAP HostControl", + "id": "SAP_HostControl", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_HostControl", + "realization_id": "91b79be3-ba85-41e2-893c-63d98bb1dfb8", + "relative_path": "SAP_HostControl", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "91b79be3-ba85-41e2-893c-63d98bb1dfb8", + "service_entries": [ + { + "_create_time": 1724279989036, + "_create_user": "system", + "_last_modified_time": 1724279989036, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1128" + ], + "display_name": "SAP HostControl", + "id": "SAP_HostControl", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_HostControl", + "path": "/infra/services/SAP_HostControl/service-entries/SAP_HostControl", + "realization_id": "64c3a4be-6fbf-412e-b8c7-2f1f40933605", + "relative_path": "SAP_HostControl", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "64c3a4be-6fbf-412e-b8c7-2f1f40933605" + } + ] + }, + { + "_create_time": 1724279989170, + "_create_user": "system", + "_last_modified_time": 1724279989170, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP HostControlS", + "display_name": "SAP HostControlS", + "id": "SAP_HostControlS", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_HostControlS", + "realization_id": "cc078735-547f-4671-90d0-7ca775cdb7c4", + "relative_path": "SAP_HostControlS", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "cc078735-547f-4671-90d0-7ca775cdb7c4", + "service_entries": [ + { + "_create_time": 1724279989170, + "_create_user": "system", + "_last_modified_time": 1724279989170, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1129" + ], + "display_name": "SAP HostControlS", + "id": "SAP_HostControlS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_HostControlS", + "path": "/infra/services/SAP_HostControlS/service-entries/SAP_HostControlS", + "realization_id": "e164985c-54ea-43f3-82f0-951eaa3efeff", + "relative_path": "SAP_HostControlS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "e164985c-54ea-43f3-82f0-951eaa3efeff" + } + ] + }, + { + "_create_time": 1724279988933, + "_create_user": "system", + "_last_modified_time": 1724279988933, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP IBM", + "display_name": "SAP IBM", + "id": "SAP_IBM", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_IBM", + "realization_id": "25328285-c0aa-435a-84e8-f70e5bbf8ce0", + "relative_path": "SAP_IBM", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "25328285-c0aa-435a-84e8-f70e5bbf8ce0", + "service_entries": [ + { + "_create_time": 1724279988933, + "_create_user": "system", + "_last_modified_time": 1724279988933, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50000", + "4402" + ], + "display_name": "SAP IBM", + "id": "SAP_IBM", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_IBM", + "path": "/infra/services/SAP_IBM/service-entries/SAP_IBM", + "realization_id": "9464e119-c0e2-4558-9b8e-eaa2f73dc894", + "relative_path": "SAP_IBM", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "9464e119-c0e2-4558-9b8e-eaa2f73dc894" + } + ] + }, + { + "_create_time": 1724279989101, + "_create_user": "system", + "_last_modified_time": 1724279989101, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP ICM HTTP", + "display_name": "SAP ICM HTTP", + "id": "SAP_ICM_HTTP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_ICM_HTTP", + "realization_id": "e5bb78ac-d392-4225-a08d-1daf94bcb0e2", + "relative_path": "SAP_ICM_HTTP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "e5bb78ac-d392-4225-a08d-1daf94bcb0e2", + "service_entries": [ + { + "_create_time": 1724279989101, + "_create_user": "system", + "_last_modified_time": 1724279989101, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8000" + ], + "display_name": "SAP ICM HTTP", + "id": "SAP_ICM_HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_ICM_HTTP", + "path": "/infra/services/SAP_ICM_HTTP/service-entries/SAP_ICM_HTTP", + "realization_id": "09008907-843e-45e0-a639-cf33595fce27", + "relative_path": "SAP_ICM_HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "09008907-843e-45e0-a639-cf33595fce27" + } + ] + }, + { + "_create_time": 1724279989012, + "_create_user": "system", + "_last_modified_time": 1724279989012, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP IIOP", + "display_name": "SAP IIOP", + "id": "SAP_IIOP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_IIOP", + "realization_id": "4599accb-18a1-4db2-8454-53ddd2134961", + "relative_path": "SAP_IIOP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "4599accb-18a1-4db2-8454-53ddd2134961", + "service_entries": [ + { + "_create_time": 1724279989012, + "_create_user": "system", + "_last_modified_time": 1724279989012, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50007" + ], + "display_name": "SAP IIOP", + "id": "SAP_IIOP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_IIOP", + "path": "/infra/services/SAP_IIOP/service-entries/SAP_IIOP", + "realization_id": "4b03497f-4112-44dc-a136-1ddbae6099c9", + "relative_path": "SAP_IIOP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "4b03497f-4112-44dc-a136-1ddbae6099c9" + } + ] + }, + { + "_create_time": 1724279989195, + "_create_user": "system", + "_last_modified_time": 1724279989195, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP IIOP initial", + "display_name": "SAP IIOP initial", + "id": "SAP_IIOP_initial", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_IIOP_initial", + "realization_id": "ca246f77-862b-4830-9e4a-80323dfdf9b3", + "relative_path": "SAP_IIOP_initial", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "ca246f77-862b-4830-9e4a-80323dfdf9b3", + "service_entries": [ + { + "_create_time": 1724279989195, + "_create_user": "system", + "_last_modified_time": 1724279989195, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50002" + ], + "display_name": "SAP IIOP initial", + "id": "SAP_IIOP_initial", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_IIOP_initial", + "path": "/infra/services/SAP_IIOP_initial/service-entries/SAP_IIOP_initial", + "realization_id": "ee8f0a7d-9ef4-4cb0-b8ed-77bfb57ddf12", + "relative_path": "SAP_IIOP_initial", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "ee8f0a7d-9ef4-4cb0-b8ed-77bfb57ddf12" + } + ] + }, + { + "_create_time": 1724279988857, + "_create_user": "system", + "_last_modified_time": 1724279988857, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP IIOPS", + "display_name": "SAP IIOPS", + "id": "SAP_IIOPS", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_IIOPS", + "realization_id": "8fd166ef-0f9b-4c67-859d-78e0f405162d", + "relative_path": "SAP_IIOPS", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "8fd166ef-0f9b-4c67-859d-78e0f405162d", + "service_entries": [ + { + "_create_time": 1724279988858, + "_create_user": "system", + "_last_modified_time": 1724279988858, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50003" + ], + "display_name": "SAP IIOPS", + "id": "SAP_IIOPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_IIOPS", + "path": "/infra/services/SAP_IIOPS/service-entries/SAP_IIOPS", + "realization_id": "59d9d3ad-fcfb-4fe8-87fd-a2cdce4533ec", + "relative_path": "SAP_IIOPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "59d9d3ad-fcfb-4fe8-87fd-a2cdce4533ec" + } + ] + }, + { + "_create_time": 1724279988853, + "_create_user": "system", + "_last_modified_time": 1724279988853, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP IPC Dispatcher Mobile client", + "display_name": "SAP IPC Dispatcher Mobile client", + "id": "SAP_IPC_Dispatcher_Mobile_client", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_IPC_Dispatcher_Mobile_client", + "realization_id": "40444ee6-5bf1-489b-80f5-5ca080c54b9a", + "relative_path": "SAP_IPC_Dispatcher_Mobile_client", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "40444ee6-5bf1-489b-80f5-5ca080c54b9a", + "service_entries": [ + { + "_create_time": 1724279988853, + "_create_user": "system", + "_last_modified_time": 1724279988853, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4444" + ], + "display_name": "SAP IPC Dispatcher Mobile client", + "id": "SAP_IPC_Dispatcher_Mobile_client", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_IPC_Dispatcher_Mobile_client", + "path": "/infra/services/SAP_IPC_Dispatcher_Mobile_client/service-entries/SAP_IPC_Dispatcher_Mobile_client", + "realization_id": "b7c5d66d-db81-45d1-a9c3-dfa990ceef6b", + "relative_path": "SAP_IPC_Dispatcher_Mobile_client", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b7c5d66d-db81-45d1-a9c3-dfa990ceef6b" + } + ] + }, + { + "_create_time": 1724279988964, + "_create_user": "system", + "_last_modified_time": 1724279988964, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP IPC Dispatcher Mobile client 2", + "display_name": "SAP IPC Dispatcher Mobile client 2", + "id": "SAP_IPC_Dispatcher_Mobile_client_2", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_IPC_Dispatcher_Mobile_client_2", + "realization_id": "f32ed37e-73d1-464c-b401-c8e2c4714754", + "relative_path": "SAP_IPC_Dispatcher_Mobile_client_2", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "f32ed37e-73d1-464c-b401-c8e2c4714754", + "service_entries": [ + { + "_create_time": 1724279988965, + "_create_user": "system", + "_last_modified_time": 1724279988965, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4363" + ], + "display_name": "SAP IPC Dispatcher Mobile client 2", + "id": "SAP_IPC_Dispatcher_Mobile_client_2", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_IPC_Dispatcher_Mobile_client_2", + "path": "/infra/services/SAP_IPC_Dispatcher_Mobile_client_2/service-entries/SAP_IPC_Dispatcher_Mobile_client_2", + "realization_id": "f83610a6-e6a0-414a-928a-47aa8dc9a63e", + "relative_path": "SAP_IPC_Dispatcher_Mobile_client_2", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f83610a6-e6a0-414a-928a-47aa8dc9a63e" + } + ] + }, + { + "_create_time": 1724279988836, + "_create_user": "system", + "_last_modified_time": 1724279988836, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP IPC Server", + "display_name": "SAP IPC Server", + "id": "SAP_IPC_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_IPC_Server", + "realization_id": "7740e05d-7492-4f5c-91fc-d8b35ebe7a96", + "relative_path": "SAP_IPC_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "7740e05d-7492-4f5c-91fc-d8b35ebe7a96", + "service_entries": [ + { + "_create_time": 1724279988837, + "_create_user": "system", + "_last_modified_time": 1724279988837, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9999" + ], + "display_name": "SAP IPC Server", + "id": "SAP_IPC_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_IPC_Server", + "path": "/infra/services/SAP_IPC_Server/service-entries/SAP_IPC_Server", + "realization_id": "2ceb9b9e-46d0-49f4-993c-11ef64c23444", + "relative_path": "SAP_IPC_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "2ceb9b9e-46d0-49f4-993c-11ef64c23444" + } + ] + }, + { + "_create_time": 1724279988849, + "_create_user": "system", + "_last_modified_time": 1724279988849, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP IPC data loader", + "display_name": "SAP IPC data loader", + "id": "SAP_IPC_data_loader", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_IPC_data_loader", + "realization_id": "6efa4866-947c-46e5-a44c-f8f73801495d", + "relative_path": "SAP_IPC_data_loader", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "6efa4866-947c-46e5-a44c-f8f73801495d", + "service_entries": [ + { + "_create_time": 1724279988849, + "_create_user": "system", + "_last_modified_time": 1724279988849, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4445" + ], + "display_name": "SAP IPC data loader", + "id": "SAP_IPC_data_loader", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_IPC_data_loader", + "path": "/infra/services/SAP_IPC_data_loader/service-entries/SAP_IPC_data_loader", + "realization_id": "71e9e0dd-c816-4b8d-9bc4-e50dd7a982e0", + "relative_path": "SAP_IPC_data_loader", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "71e9e0dd-c816-4b8d-9bc4-e50dd7a982e0" + } + ] + }, + { + "_create_time": 1724279989012, + "_create_user": "system", + "_last_modified_time": 1724279989012, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Import Mgr", + "display_name": "SAP Import Mgr", + "id": "SAP_Import_Mgr", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Import_Mgr", + "realization_id": "d77be143-011e-43aa-8486-bab19bafc89a", + "relative_path": "SAP_Import_Mgr", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "d77be143-011e-43aa-8486-bab19bafc89a", + "service_entries": [ + { + "_create_time": 1724279989013, + "_create_user": "system", + "_last_modified_time": 1724279989013, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "20006" + ], + "display_name": "SAP Import Mgr", + "id": "SAP_Import_Mgr", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Import_Mgr", + "path": "/infra/services/SAP_Import_Mgr/service-entries/SAP_Import_Mgr", + "realization_id": "64810024-a5b4-433d-841d-eaff1d317006", + "relative_path": "SAP_Import_Mgr", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "64810024-a5b4-433d-841d-eaff1d317006" + } + ] + }, + { + "_create_time": 1724279988852, + "_create_user": "system", + "_last_modified_time": 1724279988852, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Index Server", + "display_name": "SAP Index Server", + "id": "SAP_Index_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Index_Server", + "realization_id": "d1db8597-9fe3-4d2f-8925-c9d58993dd43", + "relative_path": "SAP_Index_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "d1db8597-9fe3-4d2f-8925-c9d58993dd43", + "service_entries": [ + { + "_create_time": 1724279988852, + "_create_user": "system", + "_last_modified_time": 1724279988852, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "30003" + ], + "display_name": "SAP Index Server", + "id": "SAP_Index_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Index_Server", + "path": "/infra/services/SAP_Index_Server/service-entries/SAP_Index_Server", + "realization_id": "cfedf765-7379-408b-a26a-7c2f6de89328", + "relative_path": "SAP_Index_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "cfedf765-7379-408b-a26a-7c2f6de89328" + } + ] + }, + { + "_create_time": 1724279989019, + "_create_user": "system", + "_last_modified_time": 1724279989019, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Index Server 2", + "display_name": "SAP Index Server 2", + "id": "SAP_Index_Server_2", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Index_Server_2", + "realization_id": "ce4fc1b5-ce24-472c-893d-862fa337b1d7", + "relative_path": "SAP_Index_Server_2", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "ce4fc1b5-ce24-472c-893d-862fa337b1d7", + "service_entries": [ + { + "_create_time": 1724279989020, + "_create_user": "system", + "_last_modified_time": 1724279989020, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8351" + ], + "display_name": "SAP Index Server 2", + "id": "SAP_Index_Server_2", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Index_Server_2", + "path": "/infra/services/SAP_Index_Server_2/service-entries/SAP_Index_Server_2", + "realization_id": "446323c8-ec5a-4cf5-bbfa-33e906ee1716", + "relative_path": "SAP_Index_Server_2", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "446323c8-ec5a-4cf5-bbfa-33e906ee1716" + } + ] + }, + { + "_create_time": 1724279988955, + "_create_user": "system", + "_last_modified_time": 1724279988955, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Inst", + "display_name": "SAP Inst", + "id": "SAP_Inst", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Inst", + "realization_id": "aea7f0db-36f4-4ce4-9448-cc9d559c7e78", + "relative_path": "SAP_Inst", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "aea7f0db-36f4-4ce4-9448-cc9d559c7e78", + "service_entries": [ + { + "_create_time": 1724279988956, + "_create_user": "system", + "_last_modified_time": 1724279988956, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "21212", + "21213" + ], + "display_name": "SAP Inst", + "id": "SAP_Inst", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Inst", + "path": "/infra/services/SAP_Inst/service-entries/SAP_Inst", + "realization_id": "101dba06-3a78-426c-8e86-face2072c8bc", + "relative_path": "SAP_Inst", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "101dba06-3a78-426c-8e86-face2072c8bc" + } + ] + }, + { + "_create_time": 1724279989009, + "_create_user": "system", + "_last_modified_time": 1724279989009, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Inst on IBM", + "display_name": "SAP Inst on IBM", + "id": "SAP_Inst_on_IBM", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Inst_on_IBM", + "realization_id": "aac7ea5b-726a-4b56-a446-708c60cea6ae", + "relative_path": "SAP_Inst_on_IBM", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "aac7ea5b-726a-4b56-a446-708c60cea6ae", + "service_entries": [ + { + "_create_time": 1724279989009, + "_create_user": "system", + "_last_modified_time": 1724279989009, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "59975", + "59976" + ], + "display_name": "SAP Inst on IBM", + "id": "SAP_Inst_on_IBM", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Inst_on_IBM", + "path": "/infra/services/SAP_Inst_on_IBM/service-entries/SAP_Inst_on_IBM", + "realization_id": "9e4a07b5-948a-44eb-a8e2-045d8622d53b", + "relative_path": "SAP_Inst_on_IBM", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "9e4a07b5-948a-44eb-a8e2-045d8622d53b" + } + ] + }, + { + "_create_time": 1724279989040, + "_create_user": "system", + "_last_modified_time": 1724279989040, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Inter Server COmm", + "display_name": "SAP Inter Server COmm", + "id": "SAP_Inter_Server_COmm", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Inter_Server_COmm", + "realization_id": "e63427ae-9e28-4d75-a7a7-e1d5e00fab87", + "relative_path": "SAP_Inter_Server_COmm", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "e63427ae-9e28-4d75-a7a7-e1d5e00fab87", + "service_entries": [ + { + "_create_time": 1724279989040, + "_create_user": "system", + "_last_modified_time": 1724279989040, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "20004" + ], + "display_name": "SAP Inter Server COmm", + "id": "SAP_Inter_Server_COmm", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Inter_Server_COmm", + "path": "/infra/services/SAP_Inter_Server_COmm/service-entries/SAP_Inter_Server_COmm", + "realization_id": "5077bda4-a5a1-4b75-8197-936dab71be7a", + "relative_path": "SAP_Inter_Server_COmm", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5077bda4-a5a1-4b75-8197-936dab71be7a" + } + ] + }, + { + "_create_time": 1724279989201, + "_create_user": "system", + "_last_modified_time": 1724279989201, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP JDBCAdapter", + "display_name": "SAP JDBCAdapter", + "id": "SAP_JDBCAdapter", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_JDBCAdapter", + "realization_id": "2743cc64-53ab-4d03-9542-1f712e5c4dc7", + "relative_path": "SAP_JDBCAdapter", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "2743cc64-53ab-4d03-9542-1f712e5c4dc7", + "service_entries": [ + { + "_create_time": 1724279989201, + "_create_user": "system", + "_last_modified_time": 1724279989201, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8220" + ], + "display_name": "SAP JDBCAdapter", + "id": "SAP_JDBCAdapter", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_JDBCAdapter", + "path": "/infra/services/SAP_JDBCAdapter/service-entries/SAP_JDBCAdapter", + "realization_id": "01e7dda1-a29b-4235-ba34-d29c01fa404e", + "relative_path": "SAP_JDBCAdapter", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "01e7dda1-a29b-4235-ba34-d29c01fa404e" + } + ] + }, + { + "_create_time": 1724279989039, + "_create_user": "system", + "_last_modified_time": 1724279989039, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP JMS", + "display_name": "SAP JMS", + "id": "SAP_JMS", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_JMS", + "realization_id": "bfe43306-1c59-45ca-9e9c-d5d255789a25", + "relative_path": "SAP_JMS", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "bfe43306-1c59-45ca-9e9c-d5d255789a25", + "service_entries": [ + { + "_create_time": 1724279989039, + "_create_user": "system", + "_last_modified_time": 1724279989039, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50010" + ], + "display_name": "SAP JMS", + "id": "SAP_JMS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_JMS", + "path": "/infra/services/SAP_JMS/service-entries/SAP_JMS", + "realization_id": "5557336d-a757-4368-afed-0ed7794ca2ff", + "relative_path": "SAP_JMS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5557336d-a757-4368-afed-0ed7794ca2ff" + } + ] + }, + { + "_create_time": 1724279988949, + "_create_user": "system", + "_last_modified_time": 1724279988949, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP JMS Adapter", + "display_name": "SAP JMS Adapter", + "id": "SAP_JMS_Adapter", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_JMS_Adapter", + "realization_id": "fe45e26b-db9f-4f76-8120-3d88204f3170", + "relative_path": "SAP_JMS_Adapter", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "fe45e26b-db9f-4f76-8120-3d88204f3170", + "service_entries": [ + { + "_create_time": 1724279988950, + "_create_user": "system", + "_last_modified_time": 1724279988950, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8210" + ], + "display_name": "SAP JMS Adapter", + "id": "SAP_JMS_Adapter", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_JMS_Adapter", + "path": "/infra/services/SAP_JMS_Adapter/service-entries/SAP_JMS_Adapter", + "realization_id": "83fb8b7e-6b45-4ecf-aaa9-62bb51e166c6", + "relative_path": "SAP_JMS_Adapter", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "83fb8b7e-6b45-4ecf-aaa9-62bb51e166c6" + } + ] + }, + { + "_create_time": 1724279988976, + "_create_user": "system", + "_last_modified_time": 1724279988976, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP JMS/JDBC/File Adapter Server", + "display_name": "SAP JMS/JDBC/File Adapter Server", + "id": "SAP_JMS-JDBC-File_Adapter_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_JMS-JDBC-File_Adapter_Server", + "realization_id": "9141f0e7-f000-456e-acce-9f587ea93e6b", + "relative_path": "SAP_JMS-JDBC-File_Adapter_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "9141f0e7-f000-456e-acce-9f587ea93e6b", + "service_entries": [ + { + "_create_time": 1724279988976, + "_create_user": "system", + "_last_modified_time": 1724279988976, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8200" + ], + "display_name": "SAP JMS/JDBC/File Adapter Server", + "id": "SAP_JMS-JDBC-File_Adapter_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_JMS-JDBC-File_Adapter_Server", + "path": "/infra/services/SAP_JMS-JDBC-File_Adapter_Server/service-entries/SAP_JMS-JDBC-File_Adapter_Server", + "realization_id": "b1eb60a5-f995-4eb2-8a40-bb053ee92210", + "relative_path": "SAP_JMS-JDBC-File_Adapter_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b1eb60a5-f995-4eb2-8a40-bb053ee92210" + } + ] + }, + { + "_create_time": 1724279988921, + "_create_user": "system", + "_last_modified_time": 1724279988921, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Java Debug", + "display_name": "SAP Java Debug", + "id": "SAP_Java_Debug", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Java_Debug", + "realization_id": "fba0741e-9be7-41cf-8a2e-88285b0d8cfa", + "relative_path": "SAP_Java_Debug", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "fba0741e-9be7-41cf-8a2e-88285b0d8cfa", + "service_entries": [ + { + "_create_time": 1724279988922, + "_create_user": "system", + "_last_modified_time": 1724279988922, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50021" + ], + "display_name": "SAP Java Debug", + "id": "SAP_Java_Debug", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Java_Debug", + "path": "/infra/services/SAP_Java_Debug/service-entries/SAP_Java_Debug", + "realization_id": "ba861082-a6ca-4737-b73d-5d5b77711e76", + "relative_path": "SAP_Java_Debug", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "ba861082-a6ca-4737-b73d-5d5b77711e76" + } + ] + }, + { + "_create_time": 1724279988947, + "_create_user": "system", + "_last_modified_time": 1724279988947, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Java Join", + "display_name": "SAP Java Join", + "id": "SAP_Java_Join", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Java_Join", + "realization_id": "95a265d0-38d3-4cc3-90ea-85ceaf485125", + "relative_path": "SAP_Java_Join", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "95a265d0-38d3-4cc3-90ea-85ceaf485125", + "service_entries": [ + { + "_create_time": 1724279988947, + "_create_user": "system", + "_last_modified_time": 1724279988947, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50020" + ], + "display_name": "SAP Java Join", + "id": "SAP_Java_Join", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Java_Join", + "path": "/infra/services/SAP_Java_Join/service-entries/SAP_Java_Join", + "realization_id": "e1f36edc-2755-4322-bd20-4dcfb0e06af3", + "relative_path": "SAP_Java_Join", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "e1f36edc-2755-4322-bd20-4dcfb0e06af3" + } + ] + }, + { + "_create_time": 1724279988941, + "_create_user": "system", + "_last_modified_time": 1724279988941, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Layout Server", + "display_name": "SAP Layout Server", + "id": "SAP_Layout_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Layout_Server", + "realization_id": "845fe858-6222-4511-a3a7-6a25b1244a4c", + "relative_path": "SAP_Layout_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "845fe858-6222-4511-a3a7-6a25b1244a4c", + "service_entries": [ + { + "_create_time": 1724279988942, + "_create_user": "system", + "_last_modified_time": 1724279988942, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "31596", + "31597", + "31604" + ], + "display_name": "SAP Layout Server", + "id": "SAP_Layout_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Layout_Server", + "path": "/infra/services/SAP_Layout_Server/service-entries/SAP_Layout_Server", + "realization_id": "c50fd976-78f8-4fbc-85ed-29d7c228f939", + "relative_path": "SAP_Layout_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c50fd976-78f8-4fbc-85ed-29d7c228f939" + } + ] + }, + { + "_create_time": 1724279989182, + "_create_user": "system", + "_last_modified_time": 1724279989182, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Layout Server 2", + "display_name": "SAP Layout Server 2", + "id": "SAP_Layout_Server_2", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Layout_Server_2", + "realization_id": "8f9d695a-f75a-4598-ab1f-2a505e82cfbf", + "relative_path": "SAP_Layout_Server_2", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "8f9d695a-f75a-4598-ab1f-2a505e82cfbf", + "service_entries": [ + { + "_create_time": 1724279989183, + "_create_user": "system", + "_last_modified_time": 1724279989183, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "31596" + ], + "display_name": "SAP Layout Server 2", + "id": "SAP_Layout_Server_2", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Layout_Server_2", + "path": "/infra/services/SAP_Layout_Server_2/service-entries/SAP_Layout_Server_2", + "realization_id": "4d633412-c948-46fe-be79-bccdeac8a004", + "relative_path": "SAP_Layout_Server_2", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "4d633412-c948-46fe-be79-bccdeac8a004" + } + ] + }, + { + "_create_time": 1724279988968, + "_create_user": "system", + "_last_modified_time": 1724279988968, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Layout Server Adobe InDesign", + "display_name": "SAP Layout Server Adobe InDesign", + "id": "SAP_Layout_Server_Adobe_InDesign", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Layout_Server_Adobe_InDesign", + "realization_id": "29343c24-a185-431e-98ad-e878fa79e4a2", + "relative_path": "SAP_Layout_Server_Adobe_InDesign", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "29343c24-a185-431e-98ad-e878fa79e4a2", + "service_entries": [ + { + "_create_time": 1724279988968, + "_create_user": "system", + "_last_modified_time": 1724279988968, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "31603" + ], + "display_name": "SAP Layout Server Adobe InDesign", + "id": "SAP_Layout_Server_Adobe_InDesign", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Layout_Server_Adobe_InDesign", + "path": "/infra/services/SAP_Layout_Server_Adobe_InDesign/service-entries/SAP_Layout_Server_Adobe_InDesign", + "realization_id": "8185d124-53f2-4051-8c23-7e4dcc72682a", + "relative_path": "SAP_Layout_Server_Adobe_InDesign", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8185d124-53f2-4051-8c23-7e4dcc72682a" + } + ] + }, + { + "_create_time": 1724279988847, + "_create_user": "system", + "_last_modified_time": 1724279988847, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Layout Server Quark Express", + "display_name": "SAP Layout Server Quark Express", + "id": "SAP_Layout_Server_Quark_Express", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Layout_Server_Quark_Express", + "realization_id": "c3aaaa31-bb1b-4466-bd7c-0065a4c42650", + "relative_path": "SAP_Layout_Server_Quark_Express", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "c3aaaa31-bb1b-4466-bd7c-0065a4c42650", + "service_entries": [ + { + "_create_time": 1724279988848, + "_create_user": "system", + "_last_modified_time": 1724279988848, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "31602" + ], + "display_name": "SAP Layout Server Quark Express", + "id": "SAP_Layout_Server_Quark_Express", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Layout_Server_Quark_Express", + "path": "/infra/services/SAP_Layout_Server_Quark_Express/service-entries/SAP_Layout_Server_Quark_Express", + "realization_id": "e8f3017a-5e2a-4860-ac77-7164021df438", + "relative_path": "SAP_Layout_Server_Quark_Express", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "e8f3017a-5e2a-4860-ac77-7164021df438" + } + ] + }, + { + "_create_time": 1724279988980, + "_create_user": "system", + "_last_modified_time": 1724279988980, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP LiveCache", + "display_name": "SAP LiveCache", + "id": "SAP_LiveCache", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_LiveCache", + "realization_id": "b716b68f-7a22-4d4d-b8b5-3f2ce4c5156b", + "relative_path": "SAP_LiveCache", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "b716b68f-7a22-4d4d-b8b5-3f2ce4c5156b", + "service_entries": [ + { + "_create_time": 1724279988980, + "_create_user": "system", + "_last_modified_time": 1724279988980, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "7200", + "7210", + "7269", + "7270", + "7575" + ], + "display_name": "SAP LiveCache", + "id": "SAP_LiveCache", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_LiveCache", + "path": "/infra/services/SAP_LiveCache/service-entries/SAP_LiveCache", + "realization_id": "008e557f-6d30-4cf4-b256-b7958569fee4", + "relative_path": "SAP_LiveCache", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "008e557f-6d30-4cf4-b256-b7958569fee4" + } + ] + }, + { + "_create_time": 1724279989085, + "_create_user": "system", + "_last_modified_time": 1724279989085, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Lotus Domino - Connector", + "display_name": "SAP Lotus Domino - Connector", + "id": "SAP_Lotus_Domino_-_Connector", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Lotus_Domino_-_Connector", + "realization_id": "e1e8c932-99a4-4be7-8b88-5abd5088e199", + "relative_path": "SAP_Lotus_Domino_-_Connector", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "e1e8c932-99a4-4be7-8b88-5abd5088e199", + "service_entries": [ + { + "_create_time": 1724279989086, + "_create_user": "system", + "_last_modified_time": 1724279989086, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "62026-62029" + ], + "display_name": "SAP Lotus Domino - Connector", + "id": "SAP_Lotus_Domino_-_Connector", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Lotus_Domino_-_Connector", + "path": "/infra/services/SAP_Lotus_Domino_-_Connector/service-entries/SAP_Lotus_Domino_-_Connector", + "realization_id": "90c65aa7-b229-467c-a5b2-251801ce3e29", + "relative_path": "SAP_Lotus_Domino_-_Connector", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "90c65aa7-b229-467c-a5b2-251801ce3e29" + } + ] + }, + { + "_create_time": 1724279989090, + "_create_user": "system", + "_last_modified_time": 1724279989090, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Lotus Domino - Proxy", + "display_name": "SAP Lotus Domino - Proxy", + "id": "SAP_Lotus_Domino_-_Proxy", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Lotus_Domino_-_Proxy", + "realization_id": "714955d4-dc3b-4984-ac55-afe66bb0a00f", + "relative_path": "SAP_Lotus_Domino_-_Proxy", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "714955d4-dc3b-4984-ac55-afe66bb0a00f", + "service_entries": [ + { + "_create_time": 1724279989091, + "_create_user": "system", + "_last_modified_time": 1724279989091, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "62126-62129" + ], + "display_name": "SAP Lotus Domino - Proxy", + "id": "SAP_Lotus_Domino_-_Proxy", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Lotus_Domino_-_Proxy", + "path": "/infra/services/SAP_Lotus_Domino_-_Proxy/service-entries/SAP_Lotus_Domino_-_Proxy", + "realization_id": "9add878a-c14c-4c2e-9daa-47168606f08c", + "relative_path": "SAP_Lotus_Domino_-_Proxy", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "9add878a-c14c-4c2e-9daa-47168606f08c" + } + ] + }, + { + "_create_time": 1724279988972, + "_create_user": "system", + "_last_modified_time": 1724279988972, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP MDM Server", + "display_name": "SAP MDM Server", + "id": "SAP_MDM_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_MDM_Server", + "realization_id": "c1a55e5b-7ca0-4aeb-9a8f-8ae3a0d92c2e", + "relative_path": "SAP_MDM_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "c1a55e5b-7ca0-4aeb-9a8f-8ae3a0d92c2e", + "service_entries": [ + { + "_create_time": 1724279988972, + "_create_user": "system", + "_last_modified_time": 1724279988972, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2000-2002" + ], + "display_name": "SAP MDM Server", + "id": "SAP_MDM_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_MDM_Server", + "path": "/infra/services/SAP_MDM_Server/service-entries/SAP_MDM_Server", + "realization_id": "821116a9-c270-4117-9ee3-62255966bd41", + "relative_path": "SAP_MDM_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "821116a9-c270-4117-9ee3-62255966bd41" + } + ] + }, + { + "_create_time": 1724279989088, + "_create_user": "system", + "_last_modified_time": 1724279989088, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Mapping Manager", + "display_name": "SAP Mapping Manager", + "id": "SAP_Mapping_Manager", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Mapping_Manager", + "realization_id": "13fa03e4-5fa0-41d7-ab53-269e2a0238e0", + "relative_path": "SAP_Mapping_Manager", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "13fa03e4-5fa0-41d7-ab53-269e2a0238e0", + "service_entries": [ + { + "_create_time": 1724279989088, + "_create_user": "system", + "_last_modified_time": 1724279989088, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3909" + ], + "display_name": "SAP Mapping Manager", + "id": "SAP_Mapping_Manager", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Mapping_Manager", + "path": "/infra/services/SAP_Mapping_Manager/service-entries/SAP_Mapping_Manager", + "realization_id": "0897c7c2-1a72-4564-a5db-e798d87c014d", + "relative_path": "SAP_Mapping_Manager", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "0897c7c2-1a72-4564-a5db-e798d87c014d" + } + ] + }, + { + "_create_time": 1724279989029, + "_create_user": "system", + "_last_modified_time": 1724279989029, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Message Server HTTP", + "display_name": "SAP Message Server HTTP", + "id": "SAP_Message_Server_HTTP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Message_Server_HTTP", + "realization_id": "853f674a-2152-4b00-9244-53dc020e25d6", + "relative_path": "SAP_Message_Server_HTTP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "853f674a-2152-4b00-9244-53dc020e25d6", + "service_entries": [ + { + "_create_time": 1724279989029, + "_create_user": "system", + "_last_modified_time": 1724279989029, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8100" + ], + "display_name": "SAP Message Server HTTP", + "id": "SAP_Message_Server_HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Message_Server_HTTP", + "path": "/infra/services/SAP_Message_Server_HTTP/service-entries/SAP_Message_Server_HTTP", + "realization_id": "50ae75c6-e1f8-427e-a6a1-644128541a5a", + "relative_path": "SAP_Message_Server_HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "50ae75c6-e1f8-427e-a6a1-644128541a5a" + } + ] + }, + { + "_create_time": 1724279988955, + "_create_user": "system", + "_last_modified_time": 1724279988955, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Monitoring (GRMG)", + "display_name": "SAP Monitoring (GRMG)", + "id": "SAP_Monitoring_(GRMG)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Monitoring_(GRMG)", + "realization_id": "fd4701c8-f22f-4b23-a15d-5a596c308967", + "relative_path": "SAP_Monitoring_(GRMG)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "fd4701c8-f22f-4b23-a15d-5a596c308967", + "service_entries": [ + { + "_create_time": 1724279988955, + "_create_user": "system", + "_last_modified_time": 1724279988955, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8366" + ], + "display_name": "SAP Monitoring (GRMG)", + "id": "SAP_Monitoring_(GRMG)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Monitoring_(GRMG)", + "path": "/infra/services/SAP_Monitoring_(GRMG)/service-entries/SAP_Monitoring_(GRMG)", + "realization_id": "07654520-09b2-4cb1-999a-648e21959ae9", + "relative_path": "SAP_Monitoring_(GRMG)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "07654520-09b2-4cb1-999a-648e21959ae9" + } + ] + }, + { + "_create_time": 1724279988993, + "_create_user": "system", + "_last_modified_time": 1724279988993, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Msg Svr", + "display_name": "SAP Msg Svr", + "id": "SAP_Msg_Svr", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Msg_Svr", + "realization_id": "0dcab031-3081-4396-a83f-8d6d39a8e107", + "relative_path": "SAP_Msg_Svr", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "0dcab031-3081-4396-a83f-8d6d39a8e107", + "service_entries": [ + { + "_create_time": 1724279988993, + "_create_user": "system", + "_last_modified_time": 1724279988993, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3600" + ], + "display_name": "SAP Msg Svr", + "id": "SAP_Msg_Svr", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Msg_Svr", + "path": "/infra/services/SAP_Msg_Svr/service-entries/SAP_Msg_Svr", + "realization_id": "8d2147f2-74ff-421a-acdb-e138c2c0988e", + "relative_path": "SAP_Msg_Svr", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8d2147f2-74ff-421a-acdb-e138c2c0988e" + } + ] + }, + { + "_create_time": 1724279988870, + "_create_user": "system", + "_last_modified_time": 1724279988870, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Msg Svr 2", + "display_name": "SAP Msg Svr 2", + "id": "SAP_Msg_Svr_2", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Msg_Svr_2", + "realization_id": "46df16ac-1635-41d7-8ea8-998d90b72236", + "relative_path": "SAP_Msg_Svr_2", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "46df16ac-1635-41d7-8ea8-998d90b72236", + "service_entries": [ + { + "_create_time": 1724279988874, + "_create_user": "system", + "_last_modified_time": 1724279988874, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3601" + ], + "display_name": "SAP Msg Svr 2", + "id": "SAP_Msg_Svr_2", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Msg_Svr_2", + "path": "/infra/services/SAP_Msg_Svr_2/service-entries/SAP_Msg_Svr_2", + "realization_id": "15b593da-6140-4855-8a71-359c73b8b86b", + "relative_path": "SAP_Msg_Svr_2", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "15b593da-6140-4855-8a71-359c73b8b86b" + } + ] + }, + { + "_create_time": 1724279989191, + "_create_user": "system", + "_last_modified_time": 1724279989191, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Msg Svr HTTP", + "display_name": "SAP Msg Svr HTTP", + "id": "SAP_Msg_Svr_HTTP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Msg_Svr_HTTP", + "realization_id": "b986d01e-192e-42e9-83de-620e4ff067ec", + "relative_path": "SAP_Msg_Svr_HTTP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "b986d01e-192e-42e9-83de-620e4ff067ec", + "service_entries": [ + { + "_create_time": 1724279989191, + "_create_user": "system", + "_last_modified_time": 1724279989191, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8101" + ], + "display_name": "SAP Msg Svr HTTP", + "id": "SAP_Msg_Svr_HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Msg_Svr_HTTP", + "path": "/infra/services/SAP_Msg_Svr_HTTP/service-entries/SAP_Msg_Svr_HTTP", + "realization_id": "8f1e7ef3-43aa-4552-ad4f-0cba761a2842", + "relative_path": "SAP_Msg_Svr_HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8f1e7ef3-43aa-4552-ad4f-0cba761a2842" + } + ] + }, + { + "_create_time": 1724279988988, + "_create_user": "system", + "_last_modified_time": 1724279988988, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Name Server", + "display_name": "SAP Name Server", + "id": "SAP_Name_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Name_Server", + "realization_id": "e22afbd4-d39f-4c30-93d1-559a57765e30", + "relative_path": "SAP_Name_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "e22afbd4-d39f-4c30-93d1-559a57765e30", + "service_entries": [ + { + "_create_time": 1724279988988, + "_create_user": "system", + "_last_modified_time": 1724279988988, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "30001" + ], + "display_name": "SAP Name Server", + "id": "SAP_Name_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Name_Server", + "path": "/infra/services/SAP_Name_Server/service-entries/SAP_Name_Server", + "realization_id": "4ebb09cb-17de-4577-9c0c-7cce359e2c99", + "relative_path": "SAP_Name_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "4ebb09cb-17de-4577-9c0c-7cce359e2c99" + } + ] + }, + { + "_create_time": 1724279988972, + "_create_user": "system", + "_last_modified_time": 1724279988972, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Name Server 2", + "display_name": "SAP Name Server 2", + "id": "SAP_Name_Server_2", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Name_Server_2", + "realization_id": "8a0fc335-a738-43b5-a371-68689008b19d", + "relative_path": "SAP_Name_Server_2", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "8a0fc335-a738-43b5-a371-68689008b19d", + "service_entries": [ + { + "_create_time": 1724279988972, + "_create_user": "system", + "_last_modified_time": 1724279988972, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8355" + ], + "display_name": "SAP Name Server 2", + "id": "SAP_Name_Server_2", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Name_Server_2", + "path": "/infra/services/SAP_Name_Server_2/service-entries/SAP_Name_Server_2", + "realization_id": "2ff86653-c2cc-4fb8-aadd-613f216b4da8", + "relative_path": "SAP_Name_Server_2", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "2ff86653-c2cc-4fb8-aadd-613f216b4da8" + } + ] + }, + { + "_create_time": 1724279988959, + "_create_user": "system", + "_last_modified_time": 1724279988959, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Oracle Listener", + "display_name": "SAP Oracle Listener", + "id": "SAP_Oracle_Listener", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Oracle_Listener", + "realization_id": "fb3e6a5d-d515-4569-ae8c-2a07c131b177", + "relative_path": "SAP_Oracle_Listener", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "fb3e6a5d-d515-4569-ae8c-2a07c131b177", + "service_entries": [ + { + "_create_time": 1724279988959, + "_create_user": "system", + "_last_modified_time": 1724279988959, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1527" + ], + "display_name": "SAP Oracle Listener", + "id": "SAP_Oracle_Listener", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Oracle_Listener", + "path": "/infra/services/SAP_Oracle_Listener/service-entries/SAP_Oracle_Listener", + "realization_id": "a6be9652-483e-4d9c-9564-dd7fbe9ce0ba", + "relative_path": "SAP_Oracle_Listener", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a6be9652-483e-4d9c-9564-dd7fbe9ce0ba" + } + ] + }, + { + "_create_time": 1724279988986, + "_create_user": "system", + "_last_modified_time": 1724279988986, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP P4", + "display_name": "SAP P4", + "id": "SAP_P4", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_P4", + "realization_id": "179f7558-f93b-47a7-a36f-b206234377bb", + "relative_path": "SAP_P4", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "179f7558-f93b-47a7-a36f-b206234377bb", + "service_entries": [ + { + "_create_time": 1724279988986, + "_create_user": "system", + "_last_modified_time": 1724279988986, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50004" + ], + "display_name": "SAP P4", + "id": "SAP_P4", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_P4", + "path": "/infra/services/SAP_P4/service-entries/SAP_P4", + "realization_id": "5f3c7609-8f2b-4e06-8976-915ac3ca8133", + "relative_path": "SAP_P4", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5f3c7609-8f2b-4e06-8976-915ac3ca8133" + } + ] + }, + { + "_create_time": 1724279989102, + "_create_user": "system", + "_last_modified_time": 1724279989102, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP P4 over HTTP", + "display_name": "SAP P4 over HTTP", + "id": "SAP_P4_over_HTTP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_P4_over_HTTP", + "realization_id": "f629d8eb-540f-4a43-b4a3-a6aca5297b9a", + "relative_path": "SAP_P4_over_HTTP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "f629d8eb-540f-4a43-b4a3-a6aca5297b9a", + "service_entries": [ + { + "_create_time": 1724279989102, + "_create_user": "system", + "_last_modified_time": 1724279989102, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50005" + ], + "display_name": "SAP P4 over HTTP", + "id": "SAP_P4_over_HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_P4_over_HTTP", + "path": "/infra/services/SAP_P4_over_HTTP/service-entries/SAP_P4_over_HTTP", + "realization_id": "76e05850-984a-4974-8b3f-83c82ea82166", + "relative_path": "SAP_P4_over_HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "76e05850-984a-4974-8b3f-83c82ea82166" + } + ] + }, + { + "_create_time": 1724279988918, + "_create_user": "system", + "_last_modified_time": 1724279988918, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP P4 over SSL", + "display_name": "SAP P4 over SSL", + "id": "SAP_P4_over_SSL", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_P4_over_SSL", + "realization_id": "b8cd4585-ec59-4f16-aeed-979b34b7fcb7", + "relative_path": "SAP_P4_over_SSL", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "b8cd4585-ec59-4f16-aeed-979b34b7fcb7", + "service_entries": [ + { + "_create_time": 1724279988918, + "_create_user": "system", + "_last_modified_time": 1724279988918, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50006" + ], + "display_name": "SAP P4 over SSL", + "id": "SAP_P4_over_SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_P4_over_SSL", + "path": "/infra/services/SAP_P4_over_SSL/service-entries/SAP_P4_over_SSL", + "realization_id": "9bbdde1d-523f-4844-8685-690a006e55ee", + "relative_path": "SAP_P4_over_SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "9bbdde1d-523f-4844-8685-690a006e55ee" + } + ] + }, + { + "_create_time": 1724279989017, + "_create_user": "system", + "_last_modified_time": 1724279989017, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP PAW Communication Server", + "display_name": "SAP PAW Communication Server", + "id": "SAP_PAW_Communication_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_PAW_Communication_Server", + "realization_id": "b63f1d4c-b71f-4324-bf39-d06f8aea2ed7", + "relative_path": "SAP_PAW_Communication_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "b63f1d4c-b71f-4324-bf39-d06f8aea2ed7", + "service_entries": [ + { + "_create_time": 1724279989017, + "_create_user": "system", + "_last_modified_time": 1724279989017, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1099" + ], + "display_name": "SAP PAW Communication Server", + "id": "SAP_PAW_Communication_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_PAW_Communication_Server", + "path": "/infra/services/SAP_PAW_Communication_Server/service-entries/SAP_PAW_Communication_Server", + "realization_id": "c754faea-9191-458f-85a2-687723acfadc", + "relative_path": "SAP_PAW_Communication_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c754faea-9191-458f-85a2-687723acfadc" + } + ] + }, + { + "_create_time": 1724279989087, + "_create_user": "system", + "_last_modified_time": 1724279989087, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP PAW Servlet Engine", + "display_name": "SAP PAW Servlet Engine", + "id": "SAP_PAW_Servlet_Engine", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_PAW_Servlet_Engine", + "realization_id": "892c0f0a-f6cf-4e7b-99b2-1e072b365df9", + "relative_path": "SAP_PAW_Servlet_Engine", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "892c0f0a-f6cf-4e7b-99b2-1e072b365df9", + "service_entries": [ + { + "_create_time": 1724279989087, + "_create_user": "system", + "_last_modified_time": 1724279989087, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1089" + ], + "display_name": "SAP PAW Servlet Engine", + "id": "SAP_PAW_Servlet_Engine", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_PAW_Servlet_Engine", + "path": "/infra/services/SAP_PAW_Servlet_Engine/service-entries/SAP_PAW_Servlet_Engine", + "realization_id": "391b940a-107a-4183-be7c-974e429966b1", + "relative_path": "SAP_PAW_Servlet_Engine", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "391b940a-107a-4183-be7c-974e429966b1" + } + ] + }, + { + "_create_time": 1724279989037, + "_create_user": "system", + "_last_modified_time": 1724279989037, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Pre Processor", + "display_name": "SAP Pre Processor", + "id": "SAP_Pre_Processor", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Pre_Processor", + "realization_id": "3e8dead5-967f-47e8-98aa-fe74a5d44f2b", + "relative_path": "SAP_Pre_Processor", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "3e8dead5-967f-47e8-98aa-fe74a5d44f2b", + "service_entries": [ + { + "_create_time": 1724279989038, + "_create_user": "system", + "_last_modified_time": 1724279989038, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "30002" + ], + "display_name": "SAP Pre Processor", + "id": "SAP_Pre_Processor", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Pre_Processor", + "path": "/infra/services/SAP_Pre_Processor/service-entries/SAP_Pre_Processor", + "realization_id": "b753f7df-2c8f-4400-b644-b2ad1f10f923", + "relative_path": "SAP_Pre_Processor", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b753f7df-2c8f-4400-b644-b2ad1f10f923" + } + ] + }, + { + "_create_time": 1724279989108, + "_create_user": "system", + "_last_modified_time": 1724279989108, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Pre Processor 2", + "display_name": "SAP Pre Processor 2", + "id": "SAP_Pre_Processor_2", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Pre_Processor_2", + "realization_id": "f1fb229b-4b44-482c-bf2a-7dc0b7d53039", + "relative_path": "SAP_Pre_Processor_2", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "f1fb229b-4b44-482c-bf2a-7dc0b7d53039", + "service_entries": [ + { + "_create_time": 1724279989108, + "_create_user": "system", + "_last_modified_time": 1724279989108, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8357" + ], + "display_name": "SAP Pre Processor 2", + "id": "SAP_Pre_Processor_2", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Pre_Processor_2", + "path": "/infra/services/SAP_Pre_Processor_2/service-entries/SAP_Pre_Processor_2", + "realization_id": "27308b8a-3d6e-43bc-9a63-522eb0fbb33d", + "relative_path": "SAP_Pre_Processor_2", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "27308b8a-3d6e-43bc-9a63-522eb0fbb33d" + } + ] + }, + { + "_create_time": 1724279988918, + "_create_user": "system", + "_last_modified_time": 1724279988918, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Queue Server", + "display_name": "SAP Queue Server", + "id": "SAP_Queue_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Queue_Server", + "realization_id": "a6006a1d-054d-49fb-a544-3c718d1a2c05", + "relative_path": "SAP_Queue_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "a6006a1d-054d-49fb-a544-3c718d1a2c05", + "service_entries": [ + { + "_create_time": 1724279988918, + "_create_user": "system", + "_last_modified_time": 1724279988918, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "30004" + ], + "display_name": "SAP Queue Server", + "id": "SAP_Queue_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Queue_Server", + "path": "/infra/services/SAP_Queue_Server/service-entries/SAP_Queue_Server", + "realization_id": "d8bab85a-3862-453b-9671-67f97850ac63", + "relative_path": "SAP_Queue_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "d8bab85a-3862-453b-9671-67f97850ac63" + } + ] + }, + { + "_create_time": 1724279989100, + "_create_user": "system", + "_last_modified_time": 1724279989100, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Queue Server 2", + "display_name": "SAP Queue Server 2", + "id": "SAP_Queue_Server_2", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Queue_Server_2", + "realization_id": "951296de-33ef-49ea-a132-1b90cc9a3d86", + "relative_path": "SAP_Queue_Server_2", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "951296de-33ef-49ea-a132-1b90cc9a3d86", + "service_entries": [ + { + "_create_time": 1724279989100, + "_create_user": "system", + "_last_modified_time": 1724279989100, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8352" + ], + "display_name": "SAP Queue Server 2", + "id": "SAP_Queue_Server_2", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Queue_Server_2", + "path": "/infra/services/SAP_Queue_Server_2/service-entries/SAP_Queue_Server_2", + "realization_id": "14237557-d29a-4e7b-a477-0ad1c018d980", + "relative_path": "SAP_Queue_Server_2", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "14237557-d29a-4e7b-a477-0ad1c018d980" + } + ] + }, + { + "_create_time": 1724279988854, + "_create_user": "system", + "_last_modified_time": 1724279988854, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP RFC Server", + "display_name": "SAP RFC Server", + "id": "SAP_RFC_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_RFC_Server", + "realization_id": "a86a0c1a-7e02-4454-bcff-15eb25715b95", + "relative_path": "SAP_RFC_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "a86a0c1a-7e02-4454-bcff-15eb25715b95", + "service_entries": [ + { + "_create_time": 1724279988855, + "_create_user": "system", + "_last_modified_time": 1724279988855, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "30007" + ], + "display_name": "SAP RFC Server", + "id": "SAP_RFC_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_RFC_Server", + "path": "/infra/services/SAP_RFC_Server/service-entries/SAP_RFC_Server", + "realization_id": "2122ca91-f5eb-4caf-a92a-08ef11fc88fd", + "relative_path": "SAP_RFC_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "2122ca91-f5eb-4caf-a92a-08ef11fc88fd" + } + ] + }, + { + "_create_time": 1724279989124, + "_create_user": "system", + "_last_modified_time": 1724279989124, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Router", + "display_name": "SAP Router", + "id": "SAP_Router", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Router", + "realization_id": "9d6c33c0-03fb-4c66-956d-cc8994c5abaf", + "relative_path": "SAP_Router", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "9d6c33c0-03fb-4c66-956d-cc8994c5abaf", + "service_entries": [ + { + "_create_time": 1724279989124, + "_create_user": "system", + "_last_modified_time": 1724279989124, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3299" + ], + "display_name": "SAP Router", + "id": "SAP_Router", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Router", + "path": "/infra/services/SAP_Router/service-entries/SAP_Router", + "realization_id": "637a5c08-882f-4a10-a95a-100dc1b2b655", + "relative_path": "SAP_Router", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "637a5c08-882f-4a10-a95a-100dc1b2b655" + } + ] + }, + { + "_create_time": 1724279988900, + "_create_user": "system", + "_last_modified_time": 1724279988900, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP SDM/SL", + "display_name": "SAP SDM/SL", + "id": "SAP_SDM-SL", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_SDM-SL", + "realization_id": "fe83f2fa-2971-4dcf-b046-ce98f47ddda1", + "relative_path": "SAP_SDM-SL", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "fe83f2fa-2971-4dcf-b046-ce98f47ddda1", + "service_entries": [ + { + "_create_time": 1724279988900, + "_create_user": "system", + "_last_modified_time": 1724279988900, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50017", + "50018", + "50019" + ], + "display_name": "SAP SDM/SL", + "id": "SAP_SDM-SL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_SDM-SL", + "path": "/infra/services/SAP_SDM-SL/service-entries/SAP_SDM-SL", + "realization_id": "bbbfa2c8-5fc7-4f32-99ef-20ebed0d870d", + "relative_path": "SAP_SDM-SL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "bbbfa2c8-5fc7-4f32-99ef-20ebed0d870d" + } + ] + }, + { + "_create_time": 1724279988868, + "_create_user": "system", + "_last_modified_time": 1724279988868, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP SNC secured gateway", + "display_name": "SAP SNC secured gateway", + "id": "SAP_SNC_secured_gateway", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_SNC_secured_gateway", + "realization_id": "c991bf3b-dddc-4b8e-b5d0-7a9b681eb825", + "relative_path": "SAP_SNC_secured_gateway", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "c991bf3b-dddc-4b8e-b5d0-7a9b681eb825", + "service_entries": [ + { + "_create_time": 1724279988868, + "_create_user": "system", + "_last_modified_time": 1724279988868, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4800" + ], + "display_name": "SAP SNC secured gateway", + "id": "SAP_SNC_secured_gateway", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_SNC_secured_gateway", + "path": "/infra/services/SAP_SNC_secured_gateway/service-entries/SAP_SNC_secured_gateway", + "realization_id": "f40576eb-5e8d-4db3-80ce-52782c5d71ee", + "relative_path": "SAP_SNC_secured_gateway", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f40576eb-5e8d-4db3-80ce-52782c5d71ee" + } + ] + }, + { + "_create_time": 1724279989094, + "_create_user": "system", + "_last_modified_time": 1724279989094, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Start Service", + "display_name": "SAP Start Service", + "id": "SAP_Start_Service", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Start_Service", + "realization_id": "36365183-ae97-4f70-9452-1df33bd52ef9", + "relative_path": "SAP_Start_Service", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "36365183-ae97-4f70-9452-1df33bd52ef9", + "service_entries": [ + { + "_create_time": 1724279989094, + "_create_user": "system", + "_last_modified_time": 1724279989094, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50013" + ], + "display_name": "SAP Start Service", + "id": "SAP_Start_Service", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Start_Service", + "path": "/infra/services/SAP_Start_Service/service-entries/SAP_Start_Service", + "realization_id": "6a7d6102-6e99-4119-ac0f-73e49c7fb1cd", + "relative_path": "SAP_Start_Service", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "6a7d6102-6e99-4119-ac0f-73e49c7fb1cd" + } + ] + }, + { + "_create_time": 1724279989080, + "_create_user": "system", + "_last_modified_time": 1724279989080, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Start Service 2", + "display_name": "SAP Start Service 2", + "id": "SAP_Start_Service_2", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Start_Service_2", + "realization_id": "f9802efa-e287-4fcb-bc21-3244397231d8", + "relative_path": "SAP_Start_Service_2", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "f9802efa-e287-4fcb-bc21-3244397231d8", + "service_entries": [ + { + "_create_time": 1724279989081, + "_create_user": "system", + "_last_modified_time": 1724279989081, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50014" + ], + "display_name": "SAP Start Service 2", + "id": "SAP_Start_Service_2", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Start_Service_2", + "path": "/infra/services/SAP_Start_Service_2/service-entries/SAP_Start_Service_2", + "realization_id": "2220cec4-aa8c-477d-a965-35b6e9e442c9", + "relative_path": "SAP_Start_Service_2", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "2220cec4-aa8c-477d-a965-35b6e9e442c9" + } + ] + }, + { + "_create_time": 1724279989197, + "_create_user": "system", + "_last_modified_time": 1724279989197, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Syndicator Service", + "display_name": "SAP Syndicator Service", + "id": "SAP_Syndicator_Service", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Syndicator_Service", + "realization_id": "df46cba2-c91a-491d-b990-fbe14b83a378", + "relative_path": "SAP_Syndicator_Service", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "df46cba2-c91a-491d-b990-fbe14b83a378", + "service_entries": [ + { + "_create_time": 1724279989198, + "_create_user": "system", + "_last_modified_time": 1724279989198, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "20007" + ], + "display_name": "SAP Syndicator Service", + "id": "SAP_Syndicator_Service", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Syndicator_Service", + "path": "/infra/services/SAP_Syndicator_Service/service-entries/SAP_Syndicator_Service", + "realization_id": "1ad35f73-d46e-41ed-a93c-aa8e15a15471", + "relative_path": "SAP_Syndicator_Service", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "1ad35f73-d46e-41ed-a93c-aa8e15a15471" + } + ] + }, + { + "_create_time": 1724279988981, + "_create_user": "system", + "_last_modified_time": 1724279988981, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Telnet", + "display_name": "SAP Telnet", + "id": "SAP_Telnet", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Telnet", + "realization_id": "80fd4bf3-d88b-4876-b61d-db5a65c2a203", + "relative_path": "SAP_Telnet", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "80fd4bf3-d88b-4876-b61d-db5a65c2a203", + "service_entries": [ + { + "_create_time": 1724279988981, + "_create_user": "system", + "_last_modified_time": 1724279988981, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "50008" + ], + "display_name": "SAP Telnet", + "id": "SAP_Telnet", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Telnet", + "path": "/infra/services/SAP_Telnet/service-entries/SAP_Telnet", + "realization_id": "49a63f80-611f-4cdc-b9db-4d9303973bc4", + "relative_path": "SAP_Telnet", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "49a63f80-611f-4cdc-b9db-4d9303973bc4" + } + ] + }, + { + "_create_time": 1724279988916, + "_create_user": "system", + "_last_modified_time": 1724279988916, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP Upgrade", + "display_name": "SAP Upgrade", + "id": "SAP_Upgrade", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_Upgrade", + "realization_id": "fac76e6c-f71a-4763-bacd-590a8214d4e8", + "relative_path": "SAP_Upgrade", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "fac76e6c-f71a-4763-bacd-590a8214d4e8", + "service_entries": [ + { + "_create_time": 1724279988917, + "_create_user": "system", + "_last_modified_time": 1724279988917, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4238", + "4239", + "4240", + "4241" + ], + "display_name": "SAP Upgrade", + "id": "SAP_Upgrade", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_Upgrade", + "path": "/infra/services/SAP_Upgrade/service-entries/SAP_Upgrade", + "realization_id": "d83e6bb0-408f-4870-8f52-9b6123887672", + "relative_path": "SAP_Upgrade", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "d83e6bb0-408f-4870-8f52-9b6123887672" + } + ] + }, + { + "_create_time": 1724279989094, + "_create_user": "system", + "_last_modified_time": 1724279989094, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP gateway - CPIC/RFC", + "display_name": "SAP gateway - CPIC/RFC", + "id": "SAP_gateway_-_CPIC-RFC", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_gateway_-_CPIC-RFC", + "realization_id": "4d524470-76f8-4ab9-a778-fd22294196de", + "relative_path": "SAP_gateway_-_CPIC-RFC", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "4d524470-76f8-4ab9-a778-fd22294196de", + "service_entries": [ + { + "_create_time": 1724279989094, + "_create_user": "system", + "_last_modified_time": 1724279989094, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3300" + ], + "display_name": "SAP gateway - CPIC/RFC", + "id": "SAP_gateway_-_CPIC-RFC", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_gateway_-_CPIC-RFC", + "path": "/infra/services/SAP_gateway_-_CPIC-RFC/service-entries/SAP_gateway_-_CPIC-RFC", + "realization_id": "005b6d9c-e704-418f-a367-0d262b7f0c15", + "relative_path": "SAP_gateway_-_CPIC-RFC", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "005b6d9c-e704-418f-a367-0d262b7f0c15" + } + ] + }, + { + "_create_time": 1724279989189, + "_create_user": "system", + "_last_modified_time": 1724279989189, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP gateway/replication", + "display_name": "SAP gateway/replication", + "id": "SAP_gateway-replication", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_gateway-replication", + "realization_id": "71fc4270-9bf8-4dd9-9c90-5b5d8e18579d", + "relative_path": "SAP_gateway-replication", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "71fc4270-9bf8-4dd9-9c90-5b5d8e18579d", + "service_entries": [ + { + "_create_time": 1724279989189, + "_create_user": "system", + "_last_modified_time": 1724279989189, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3301" + ], + "display_name": "SAP gateway/replication", + "id": "SAP_gateway-replication", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_gateway-replication", + "path": "/infra/services/SAP_gateway-replication/service-entries/SAP_gateway-replication", + "realization_id": "ee7d7c71-82bc-44a5-bfd9-1a358d4e4932", + "relative_path": "SAP_gateway-replication", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "ee7d7c71-82bc-44a5-bfd9-1a358d4e4932" + } + ] + }, + { + "_create_time": 1724279988880, + "_create_user": "system", + "_last_modified_time": 1724279988880, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP network Test Program", + "display_name": "SAP network Test Program", + "id": "SAP_network_Test_Program", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_network_Test_Program", + "realization_id": "3d69024a-5b5c-43c0-aa6b-8215679f6f21", + "relative_path": "SAP_network_Test_Program", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "3d69024a-5b5c-43c0-aa6b-8215679f6f21", + "service_entries": [ + { + "_create_time": 1724279988881, + "_create_user": "system", + "_last_modified_time": 1724279988881, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3298" + ], + "display_name": "SAP network Test Program", + "id": "SAP_network_Test_Program", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_network_Test_Program", + "path": "/infra/services/SAP_network_Test_Program/service-entries/SAP_network_Test_Program", + "realization_id": "7ecb4b16-ff4a-40fb-85d8-343571d46c0d", + "relative_path": "SAP_network_Test_Program", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "7ecb4b16-ff4a-40fb-85d8-343571d46c0d" + } + ] + }, + { + "_create_time": 1724279988949, + "_create_user": "system", + "_last_modified_time": 1724279988949, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SAP printer spooler", + "display_name": "SAP printer spooler", + "id": "SAP_printer_spooler", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SAP_printer_spooler", + "realization_id": "795f24e4-79d3-4dbc-9377-d7ab6b890fba", + "relative_path": "SAP_printer_spooler", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "795f24e4-79d3-4dbc-9377-d7ab6b890fba", + "service_entries": [ + { + "_create_time": 1724279988949, + "_create_user": "system", + "_last_modified_time": 1724279988949, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "515" + ], + "display_name": "SAP printer spooler", + "id": "SAP_printer_spooler", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SAP_printer_spooler", + "path": "/infra/services/SAP_printer_spooler/service-entries/SAP_printer_spooler", + "realization_id": "2ad2764b-9850-4437-ac12-6fce94aa1f45", + "relative_path": "SAP_printer_spooler", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "2ad2764b-9850-4437-ac12-6fce94aa1f45" + } + ] + }, + { + "_create_time": 1724279989099, + "_create_user": "system", + "_last_modified_time": 1724279989099, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SIP 5060", + "display_name": "SIP 5060", + "id": "SIP_5060", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SIP_5060", + "realization_id": "8050823e-0c37-4f8f-9bf1-336e11772bae", + "relative_path": "SIP_5060", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "8050823e-0c37-4f8f-9bf1-336e11772bae", + "service_entries": [ + { + "_create_time": 1724279989100, + "_create_user": "system", + "_last_modified_time": 1724279989100, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5060" + ], + "display_name": "SIP 5060", + "id": "SIP_5060", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SIP_5060", + "path": "/infra/services/SIP_5060/service-entries/SIP_5060", + "realization_id": "0963ff05-0f03-49df-a3b5-6f0767490c9c", + "relative_path": "SIP_5060", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "0963ff05-0f03-49df-a3b5-6f0767490c9c" + } + ] + }, + { + "_create_time": 1724279989096, + "_create_user": "system", + "_last_modified_time": 1724279989096, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SIP 5061", + "display_name": "SIP 5061", + "id": "SIP_5061", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SIP_5061", + "realization_id": "c6931f4e-872d-4253-bf46-9e0ca4f4ac54", + "relative_path": "SIP_5061", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "c6931f4e-872d-4253-bf46-9e0ca4f4ac54", + "service_entries": [ + { + "_create_time": 1724279989096, + "_create_user": "system", + "_last_modified_time": 1724279989096, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5061" + ], + "display_name": "SIP 5061", + "id": "SIP_5061", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SIP_5061", + "path": "/infra/services/SIP_5061/service-entries/SIP_5061", + "realization_id": "761bd79d-a297-4445-8954-6c75712d21bf", + "relative_path": "SIP_5061", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "761bd79d-a297-4445-8954-6c75712d21bf" + } + ] + }, + { + "_create_time": 1724279989025, + "_create_user": "system", + "_last_modified_time": 1724279989025, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SMB", + "display_name": "SMB", + "id": "SMB", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SMB", + "realization_id": "1800e9bf-d4cd-4131-90f0-87bae35f3cc9", + "relative_path": "SMB", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "1800e9bf-d4cd-4131-90f0-87bae35f3cc9", + "service_entries": [ + { + "_create_time": 1724279989027, + "_create_user": "system", + "_last_modified_time": 1724279989027, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "445" + ], + "display_name": "SMB", + "id": "SMB", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SMB", + "path": "/infra/services/SMB/service-entries/SMB", + "realization_id": "881e5440-c05a-4a06-bef9-7ada23cc11a0", + "relative_path": "SMB", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "881e5440-c05a-4a06-bef9-7ada23cc11a0" + } + ] + }, + { + "_create_time": 1724279989017, + "_create_user": "system", + "_last_modified_time": 1724279989017, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SMB Server", + "display_name": "SMB Server", + "id": "SMB_Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SMB_Server", + "realization_id": "d969d81b-f02d-419c-b80a-ddb238248d02", + "relative_path": "SMB_Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "d969d81b-f02d-419c-b80a-ddb238248d02", + "service_entries": [ + { + "_create_time": 1724279989017, + "_create_user": "system", + "_last_modified_time": 1724279989017, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "445" + ], + "display_name": "SMB Server", + "id": "SMB_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SMB_Server", + "path": "/infra/services/SMB_Server/service-entries/SMB_Server", + "realization_id": "9f71f9d8-38c6-47b8-83b7-3c257681ea91", + "relative_path": "SMB_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "9f71f9d8-38c6-47b8-83b7-3c257681ea91" + } + ] + }, + { + "_create_time": 1724279988979, + "_create_user": "system", + "_last_modified_time": 1724279988979, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SMB Server UDP", + "display_name": "SMB Server UDP", + "id": "SMB_Server_UDP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SMB_Server_UDP", + "realization_id": "ee86833c-5eab-4d48-a9aa-3b747a409493", + "relative_path": "SMB_Server_UDP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "ee86833c-5eab-4d48-a9aa-3b747a409493", + "service_entries": [ + { + "_create_time": 1724279988979, + "_create_user": "system", + "_last_modified_time": 1724279988979, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "445" + ], + "display_name": "SMB Server UDP", + "id": "SMB_Server_UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SMB_Server_UDP", + "path": "/infra/services/SMB_Server_UDP/service-entries/SMB_Server_UDP", + "realization_id": "74c853b8-7828-4b4d-a107-90c5caed825e", + "relative_path": "SMB_Server_UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74c853b8-7828-4b4d-a107-90c5caed825e" + } + ] + }, + { + "_create_time": 1724279988931, + "_create_user": "system", + "_last_modified_time": 1724279988931, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SMTP", + "display_name": "SMTP", + "id": "SMTP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SMTP", + "realization_id": "f1694d43-db82-4cfc-8f9e-d178e3363998", + "relative_path": "SMTP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "f1694d43-db82-4cfc-8f9e-d178e3363998", + "service_entries": [ + { + "_create_time": 1724279988931, + "_create_user": "system", + "_last_modified_time": 1724279988931, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "25" + ], + "display_name": "SMTP", + "id": "SMTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SMTP", + "path": "/infra/services/SMTP/service-entries/SMTP", + "realization_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219", + "relative_path": "SMTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219" + } + ] + }, + { + "_create_time": 1724279988924, + "_create_user": "system", + "_last_modified_time": 1724279988924, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SMTP_TLS", + "display_name": "SMTP_TLS", + "id": "SMTP_TLS", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SMTP_TLS", + "realization_id": "a7daa7a0-74b7-402d-95d4-a5445cb75186", + "relative_path": "SMTP_TLS", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "a7daa7a0-74b7-402d-95d4-a5445cb75186", + "service_entries": [ + { + "_create_time": 1724279988924, + "_create_user": "system", + "_last_modified_time": 1724279988924, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "587" + ], + "display_name": "SMTP_TLS", + "id": "SMTP_TLS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SMTP_TLS", + "path": "/infra/services/SMTP_TLS/service-entries/SMTP_TLS", + "realization_id": "0c62c54f-dc12-4549-bc5a-ba29eaedcbe7", + "relative_path": "SMTP_TLS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "0c62c54f-dc12-4549-bc5a-ba29eaedcbe7" + } + ] + }, + { + "_create_time": 1724279989018, + "_create_user": "system", + "_last_modified_time": 1724279989018, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SNMP", + "display_name": "SNMP", + "id": "SNMP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SNMP", + "realization_id": "7c634ab0-9b50-4949-8f56-95e06d26987c", + "relative_path": "SNMP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "7c634ab0-9b50-4949-8f56-95e06d26987c", + "service_entries": [ + { + "_create_time": 1724279989019, + "_create_user": "system", + "_last_modified_time": 1724279989019, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "161" + ], + "display_name": "SNMP", + "id": "SNMP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SNMP", + "path": "/infra/services/SNMP/service-entries/SNMP", + "realization_id": "7703a785-2561-4fbc-a6d9-18b6bf5d5189", + "relative_path": "SNMP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "7703a785-2561-4fbc-a6d9-18b6bf5d5189" + } + ] + }, + { + "_create_time": 1724279989023, + "_create_user": "system", + "_last_modified_time": 1724279989023, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SNMP-Receive", + "display_name": "SNMP-Receive", + "id": "SNMP-Receive", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SNMP-Receive", + "realization_id": "32171b45-d989-41a6-9e83-5d7122a1d0f5", + "relative_path": "SNMP-Receive", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "32171b45-d989-41a6-9e83-5d7122a1d0f5", + "service_entries": [ + { + "_create_time": 1724279989024, + "_create_user": "system", + "_last_modified_time": 1724279989024, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "161" + ], + "display_name": "SNMP-Receive", + "id": "SNMP-Receive", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SNMP-Receive", + "path": "/infra/services/SNMP-Receive/service-entries/SNMP-Receive", + "realization_id": "807a7b24-8a12-493e-be8f-4427b0fdbfe5", + "relative_path": "SNMP-Receive", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "807a7b24-8a12-493e-be8f-4427b0fdbfe5" + } + ] + }, + { + "_create_time": 1724279989192, + "_create_user": "system", + "_last_modified_time": 1724279989192, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SNMP-Send", + "display_name": "SNMP-Send", + "id": "SNMP-Send", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SNMP-Send", + "realization_id": "dacb2b5e-82c6-4004-acfc-f9695b71a652", + "relative_path": "SNMP-Send", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "dacb2b5e-82c6-4004-acfc-f9695b71a652", + "service_entries": [ + { + "_create_time": 1724279989192, + "_create_user": "system", + "_last_modified_time": 1724279989192, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "162" + ], + "display_name": "SNMP-Send", + "id": "SNMP-Send", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SNMP-Send", + "path": "/infra/services/SNMP-Send/service-entries/SNMP-Send", + "realization_id": "5860f8d6-9854-4b8c-abf1-029be49bb215", + "relative_path": "SNMP-Send", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5860f8d6-9854-4b8c-abf1-029be49bb215" + } + ] + }, + { + "_create_time": 1724279989114, + "_create_user": "system", + "_last_modified_time": 1724279989114, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SOAP", + "display_name": "SOAP", + "id": "SOAP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SOAP", + "realization_id": "a5c043fb-46b4-4f80-aeb1-a5a5a94cfa21", + "relative_path": "SOAP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "a5c043fb-46b4-4f80-aeb1-a5a5a94cfa21", + "service_entries": [ + { + "_create_time": 1724279989115, + "_create_user": "system", + "_last_modified_time": 1724279989115, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9389" + ], + "display_name": "SOAP", + "id": "SOAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SOAP", + "path": "/infra/services/SOAP/service-entries/SOAP", + "realization_id": "45eb09dd-ca7a-4b92-b76b-4262ba985d35", + "relative_path": "SOAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "45eb09dd-ca7a-4b92-b76b-4262ba985d35" + } + ] + }, + { + "_create_time": 1724279988924, + "_create_user": "system", + "_last_modified_time": 1724279988924, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SQL Analysis service", + "display_name": "SQL Analysis service", + "id": "SQL_Analysis_service", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SQL_Analysis_service", + "realization_id": "01974a31-f779-4c6d-8901-1e797d2ac0a6", + "relative_path": "SQL_Analysis_service", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "01974a31-f779-4c6d-8901-1e797d2ac0a6", + "service_entries": [ + { + "_create_time": 1724279988924, + "_create_user": "system", + "_last_modified_time": 1724279988924, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2383" + ], + "display_name": "SQL Analysis service", + "id": "SQL_Analysis_service", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SQL_Analysis_service", + "path": "/infra/services/SQL_Analysis_service/service-entries/SQL_Analysis_service", + "realization_id": "a584a90d-0c90-4ebb-b1be-770c64dcb208", + "relative_path": "SQL_Analysis_service", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a584a90d-0c90-4ebb-b1be-770c64dcb208" + } + ] + }, + { + "_create_time": 1724279989113, + "_create_user": "system", + "_last_modified_time": 1724279989113, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SQL Server Browser service", + "display_name": "SQL Server Browser service", + "id": "SQL_Server_Browser_service", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SQL_Server_Browser_service", + "realization_id": "f6638a3f-b6be-4c44-a79f-2910f1b0522b", + "relative_path": "SQL_Server_Browser_service", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "f6638a3f-b6be-4c44-a79f-2910f1b0522b", + "service_entries": [ + { + "_create_time": 1724279989113, + "_create_user": "system", + "_last_modified_time": 1724279989113, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2382" + ], + "display_name": "SQL Server Browser service", + "id": "SQL_Server_Browser_service", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SQL_Server_Browser_service", + "path": "/infra/services/SQL_Server_Browser_service/service-entries/SQL_Server_Browser_service", + "realization_id": "79198f55-115c-40e6-ba45-95f7679539fc", + "relative_path": "SQL_Server_Browser_service", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "79198f55-115c-40e6-ba45-95f7679539fc" + } + ] + }, + { + "_create_time": 1724279989192, + "_create_user": "system", + "_last_modified_time": 1724279989192, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SSH", + "display_name": "SSH", + "id": "SSH", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SSH", + "realization_id": "0b12e2c3-a728-456e-a246-2b722b7b9212", + "relative_path": "SSH", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "0b12e2c3-a728-456e-a246-2b722b7b9212", + "service_entries": [ + { + "_create_time": 1724279989192, + "_create_user": "system", + "_last_modified_time": 1724279989192, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "22" + ], + "display_name": "SSH", + "id": "SSH", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SSH", + "path": "/infra/services/SSH/service-entries/SSH", + "realization_id": "3eba41cd-8331-4bbe-b9d7-9994d3a1dfcd", + "relative_path": "SSH", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3eba41cd-8331-4bbe-b9d7-9994d3a1dfcd" + } + ] + }, + { + "_create_time": 1724279989024, + "_create_user": "system", + "_last_modified_time": 1724279989024, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SUN_RPC_TCP", + "display_name": "SUN_RPC_TCP", + "id": "SUN_RPC_TCP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SUN_RPC_TCP", + "realization_id": "769cc611-cb4e-4878-96f4-3fa96838f9ab", + "relative_path": "SUN_RPC_TCP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "769cc611-cb4e-4878-96f4-3fa96838f9ab", + "service_entries": [ + { + "_create_time": 1724279989025, + "_create_user": "system", + "_last_modified_time": 1724279989025, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "SUN_RPC_TCP", + "destination_ports": [ + "111" + ], + "display_name": "SUN_RPC_TCP", + "id": "SUN_RPC_TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SUN_RPC_TCP", + "path": "/infra/services/SUN_RPC_TCP/service-entries/SUN_RPC_TCP", + "realization_id": "6c586f6a-c7e0-4aab-9169-c0cbbffdec5c", + "relative_path": "SUN_RPC_TCP", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "6c586f6a-c7e0-4aab-9169-c0cbbffdec5c" + } + ] + }, + { + "_create_time": 1724279989009, + "_create_user": "system", + "_last_modified_time": 1724279989009, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SUN_RPC_UDP", + "display_name": "SUN_RPC_UDP", + "id": "SUN_RPC_UDP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SUN_RPC_UDP", + "realization_id": "fc430a25-1c79-4b85-8a84-9d58a179d506", + "relative_path": "SUN_RPC_UDP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "fc430a25-1c79-4b85-8a84-9d58a179d506", + "service_entries": [ + { + "_create_time": 1724279989010, + "_create_user": "system", + "_last_modified_time": 1724279989010, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "SUN_RPC_UDP", + "destination_ports": [ + "111" + ], + "display_name": "SUN_RPC_UDP", + "id": "SUN_RPC_UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SUN_RPC_UDP", + "path": "/infra/services/SUN_RPC_UDP/service-entries/SUN_RPC_UDP", + "realization_id": "bb78f6b8-74e8-4538-a8d7-d189bca5aa15", + "relative_path": "SUN_RPC_UDP", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "bb78f6b8-74e8-4538-a8d7-d189bca5aa15" + } + ] + }, + { + "_create_time": 1724279988968, + "_create_user": "system", + "_last_modified_time": 1724279988968, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Server Message Block (SMB)", + "display_name": "Server Message Block (SMB)", + "id": "Server_Message_Block_(SMB)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Server_Message_Block_(SMB)", + "realization_id": "264b9fa5-82ff-486e-8166-9451051e356e", + "relative_path": "Server_Message_Block_(SMB)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "264b9fa5-82ff-486e-8166-9451051e356e", + "service_entries": [ + { + "_create_time": 1724279988968, + "_create_user": "system", + "_last_modified_time": 1724279988968, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "137", + "138", + "139" + ], + "display_name": "Server Message Block (SMB)", + "id": "Server_Message_Block_(SMB)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Server_Message_Block_(SMB)", + "path": "/infra/services/Server_Message_Block_(SMB)/service-entries/Server_Message_Block_(SMB)", + "realization_id": "e1152dfa-58be-464c-9e4f-a9794fbf7db1", + "relative_path": "Server_Message_Block_(SMB)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "e1152dfa-58be-464c-9e4f-a9794fbf7db1" + } + ] + }, + { + "_create_time": 1724279989402, + "_create_user": "system", + "_last_modified_time": 1724279989402, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SharePoint 2007 V1", + "display_name": "SharePoint 2007 V1", + "id": "SharePoint_2007_V1", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SharePoint_2007_V1", + "realization_id": "06b255d8-ed4b-407d-a8ad-63e91a9f7f34", + "relative_path": "SharePoint_2007_V1", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "06b255d8-ed4b-407d-a8ad-63e91a9f7f34", + "service_entries": [ + { + "_create_time": 1724279989477, + "_create_user": "system", + "_last_modified_time": 1724279989477, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-UDP", + "id": "DNS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2007_V1", + "path": "/infra/services/SharePoint_2007_V1/service-entries/DNS-UDP", + "realization_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326", + "relative_path": "DNS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326" + }, + { + "_create_time": 1724279989686, + "_create_user": "system", + "_last_modified_time": 1724279989686, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "80" + ], + "display_name": "HTTP", + "id": "HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2007_V1", + "path": "/infra/services/SharePoint_2007_V1/service-entries/HTTP", + "realization_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38" + }, + { + "_create_time": 1724279989783, + "_create_user": "system", + "_last_modified_time": 1724279989783, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "137", + "138", + "139" + ], + "display_name": "Server Message Block (SMB)", + "id": "Server_Message_Block_(SMB)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2007_V1", + "path": "/infra/services/SharePoint_2007_V1/service-entries/Server_Message_Block_(SMB)", + "realization_id": "e1152dfa-58be-464c-9e4f-a9794fbf7db1", + "relative_path": "Server_Message_Block_(SMB)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "e1152dfa-58be-464c-9e4f-a9794fbf7db1" + }, + { + "_create_time": 1724279989829, + "_create_user": "system", + "_last_modified_time": 1724279989829, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "445" + ], + "display_name": "SMB Server", + "id": "SMB_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2007_V1", + "path": "/infra/services/SharePoint_2007_V1/service-entries/SMB_Server", + "realization_id": "9f71f9d8-38c6-47b8-83b7-3c257681ea91", + "relative_path": "SMB_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "9f71f9d8-38c6-47b8-83b7-3c257681ea91" + }, + { + "_create_time": 1724279989837, + "_create_user": "system", + "_last_modified_time": 1724279989837, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "56737", + "56738" + ], + "display_name": "Office Server Web Services, HTTP, SSL", + "id": "Office_Server_Web_Services,_HTTP,_SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2007_V1", + "path": "/infra/services/SharePoint_2007_V1/service-entries/Office_Server_Web_Services,_HTTP,_SSL", + "realization_id": "6856a604-2b32-4245-a24f-1e49f2b62058", + "relative_path": "Office_Server_Web_Services,_HTTP,_SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "6856a604-2b32-4245-a24f-1e49f2b62058" + }, + { + "_create_time": 1724279989678, + "_create_user": "system", + "_last_modified_time": 1724279989678, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP-UDP", + "id": "LDAP-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2007_V1", + "path": "/infra/services/SharePoint_2007_V1/service-entries/LDAP-UDP", + "realization_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f", + "relative_path": "LDAP-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f" + }, + { + "_create_time": 1724279989513, + "_create_user": "system", + "_last_modified_time": 1724279989513, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "MS_RPC_TCP", + "destination_ports": [ + "135" + ], + "display_name": "MS_RPC_TCP", + "id": "MS_RPC_TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2007_V1", + "path": "/infra/services/SharePoint_2007_V1/service-entries/MS_RPC_TCP", + "realization_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0", + "relative_path": "MS_RPC_TCP", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0" + }, + { + "_create_time": 1724279989662, + "_create_user": "system", + "_last_modified_time": 1724279989662, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS-UDP", + "id": "KERBEROS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2007_V1", + "path": "/infra/services/SharePoint_2007_V1/service-entries/KERBEROS-UDP", + "realization_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e", + "relative_path": "KERBEROS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e" + }, + { + "_create_time": 1724279989692, + "_create_user": "system", + "_last_modified_time": 1724279989692, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2007_V1", + "path": "/infra/services/SharePoint_2007_V1/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + }, + { + "_create_time": 1724279989824, + "_create_user": "system", + "_last_modified_time": 1724279989824, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "445" + ], + "display_name": "SMB Server UDP", + "id": "SMB_Server_UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2007_V1", + "path": "/infra/services/SharePoint_2007_V1/service-entries/SMB_Server_UDP", + "realization_id": "74c853b8-7828-4b4d-a107-90c5caed825e", + "relative_path": "SMB_Server_UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74c853b8-7828-4b4d-a107-90c5caed825e" + }, + { + "_create_time": 1724279989700, + "_create_user": "system", + "_last_modified_time": 1724279989700, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-TCP", + "id": "DNS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2007_V1", + "path": "/infra/services/SharePoint_2007_V1/service-entries/DNS", + "realization_id": "503ad409-d481-4547-8720-28534c1856b6", + "relative_path": "DNS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "503ad409-d481-4547-8720-28534c1856b6" + }, + { + "_create_time": 1724279989789, + "_create_user": "system", + "_last_modified_time": 1724279989789, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "137" + ], + "display_name": "NBNS-Broadcast-V1", + "id": "NBNS-Broadcast-V1", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2007_V1", + "path": "/infra/services/SharePoint_2007_V1/service-entries/NBNS-Broadcast-V1", + "realization_id": "f39c3771-9dff-4589-807f-35bb83522784", + "relative_path": "NBNS-Broadcast-V1", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f39c3771-9dff-4589-807f-35bb83522784" + }, + { + "_create_time": 1724279989767, + "_create_user": "system", + "_last_modified_time": 1724279989767, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1434" + ], + "display_name": "MS-SQL-M", + "id": "MS-SQL-M", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2007_V1", + "path": "/infra/services/SharePoint_2007_V1/service-entries/MS-SQL-M", + "realization_id": "c41a0168-cf24-451d-9089-a8cc2cd1bbb0", + "relative_path": "MS-SQL-M", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c41a0168-cf24-451d-9089-a8cc2cd1bbb0" + }, + { + "_create_time": 1724279989817, + "_create_user": "system", + "_last_modified_time": 1724279989817, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "138" + ], + "display_name": "NBDG-Broadcast-V1", + "id": "NBDG-Broadcast-V1", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2007_V1", + "path": "/infra/services/SharePoint_2007_V1/service-entries/NBDG-Broadcast-V1", + "realization_id": "15cbcee1-8351-44bc-a957-b600c6bc3f71", + "relative_path": "NBDG-Broadcast-V1", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "15cbcee1-8351-44bc-a957-b600c6bc3f71" + }, + { + "_create_time": 1724279989756, + "_create_user": "system", + "_last_modified_time": 1724279989756, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "25" + ], + "display_name": "SMTP", + "id": "SMTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2007_V1", + "path": "/infra/services/SharePoint_2007_V1/service-entries/SMTP", + "realization_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219", + "relative_path": "SMTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219" + }, + { + "_create_time": 1724279989544, + "_create_user": "system", + "_last_modified_time": 1724279989544, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "445" + ], + "display_name": "MS-DS-TCP", + "id": "MS-DS-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2007_V1", + "path": "/infra/services/SharePoint_2007_V1/service-entries/MS-DS-TCP", + "realization_id": "1a734e23-133b-46ba-9428-0980d56583c4", + "relative_path": "MS-DS-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "1a734e23-133b-46ba-9428-0980d56583c4" + }, + { + "_create_time": 1724279989709, + "_create_user": "system", + "_last_modified_time": 1724279989709, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "636" + ], + "display_name": "LDAP-over-SSL-UDP", + "id": "LDAP-over-SSL-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2007_V1", + "path": "/infra/services/SharePoint_2007_V1/service-entries/LDAP-over-SSL-UDP", + "realization_id": "962b858f-396b-4259-8837-6abfdbb2e181", + "relative_path": "LDAP-over-SSL-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "962b858f-396b-4259-8837-6abfdbb2e181" + }, + { + "_create_time": 1724279989775, + "_create_user": "system", + "_last_modified_time": 1724279989775, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1433" + ], + "display_name": "MS-SQL-S", + "id": "MS-SQL-S", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2007_V1", + "path": "/infra/services/SharePoint_2007_V1/service-entries/MS-SQL-S", + "realization_id": "a7240508-b3a5-4123-b5b7-37f68e9a924f", + "relative_path": "MS-SQL-S", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a7240508-b3a5-4123-b5b7-37f68e9a924f" + }, + { + "_create_time": 1724279989535, + "_create_user": "system", + "_last_modified_time": 1724279989535, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3389" + ], + "display_name": "RDP", + "id": "RDP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2007_V1", + "path": "/infra/services/SharePoint_2007_V1/service-entries/RDP", + "realization_id": "c7896f47-e853-44e4-ada9-dce830f84eff", + "relative_path": "RDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c7896f47-e853-44e4-ada9-dce830f84eff" + } + ] + }, + { + "_create_time": 1724279992256, + "_create_user": "system", + "_last_modified_time": 1724279992256, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "SharePoint 2010 V1", + "display_name": "SharePoint 2010 V1", + "id": "SharePoint_2010_V1", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/SharePoint_2010_V1", + "realization_id": "4de362a5-3123-4196-94e7-e423bcdff7f5", + "relative_path": "SharePoint_2010_V1", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "4de362a5-3123-4196-94e7-e423bcdff7f5", + "service_entries": [ + { + "_create_time": 1724279992858, + "_create_user": "system", + "_last_modified_time": 1724279992858, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "445" + ], + "display_name": "SMB Server", + "id": "SMB_Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2010_V1", + "path": "/infra/services/SharePoint_2010_V1/service-entries/SMB_Server", + "realization_id": "9f71f9d8-38c6-47b8-83b7-3c257681ea91", + "relative_path": "SMB_Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "9f71f9d8-38c6-47b8-83b7-3c257681ea91" + }, + { + "_create_time": 1724279992495, + "_create_user": "system", + "_last_modified_time": 1724279992495, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "25" + ], + "display_name": "SMTP", + "id": "SMTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2010_V1", + "path": "/infra/services/SharePoint_2010_V1/service-entries/SMTP", + "realization_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219", + "relative_path": "SMTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219" + }, + { + "_create_time": 1724279992414, + "_create_user": "system", + "_last_modified_time": 1724279992414, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2010_V1", + "path": "/infra/services/SharePoint_2010_V1/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + }, + { + "_create_time": 1724279992986, + "_create_user": "system", + "_last_modified_time": 1724279992986, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5725" + ], + "display_name": "Directory Services", + "id": "Directory_Services", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2010_V1", + "path": "/infra/services/SharePoint_2010_V1/service-entries/Directory_Services", + "realization_id": "c84be914-4960-41a3-b2eb-a434a2311695", + "relative_path": "Directory_Services", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c84be914-4960-41a3-b2eb-a434a2311695" + }, + { + "_create_time": 1724279992571, + "_create_user": "system", + "_last_modified_time": 1724279992571, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "137" + ], + "display_name": "NBNS-Broadcast-V1", + "id": "NBNS-Broadcast-V1", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2010_V1", + "path": "/infra/services/SharePoint_2010_V1/service-entries/NBNS-Broadcast-V1", + "realization_id": "f39c3771-9dff-4589-807f-35bb83522784", + "relative_path": "NBNS-Broadcast-V1", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f39c3771-9dff-4589-807f-35bb83522784" + }, + { + "_create_time": 1724279992300, + "_create_user": "system", + "_last_modified_time": 1724279992300, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3389" + ], + "display_name": "RDP", + "id": "RDP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2010_V1", + "path": "/infra/services/SharePoint_2010_V1/service-entries/RDP", + "realization_id": "c7896f47-e853-44e4-ada9-dce830f84eff", + "relative_path": "RDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c7896f47-e853-44e4-ada9-dce830f84eff" + }, + { + "_create_time": 1724279992515, + "_create_user": "system", + "_last_modified_time": 1724279992515, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1434" + ], + "display_name": "MS-SQL-M", + "id": "MS-SQL-M", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2010_V1", + "path": "/infra/services/SharePoint_2010_V1/service-entries/MS-SQL-M", + "realization_id": "c41a0168-cf24-451d-9089-a8cc2cd1bbb0", + "relative_path": "MS-SQL-M", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c41a0168-cf24-451d-9089-a8cc2cd1bbb0" + }, + { + "_create_time": 1724279992435, + "_create_user": "system", + "_last_modified_time": 1724279992435, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-TCP", + "id": "DNS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2010_V1", + "path": "/infra/services/SharePoint_2010_V1/service-entries/DNS", + "realization_id": "503ad409-d481-4547-8720-28534c1856b6", + "relative_path": "DNS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "503ad409-d481-4547-8720-28534c1856b6" + }, + { + "_create_time": 1724279992311, + "_create_user": "system", + "_last_modified_time": 1724279992311, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "445" + ], + "display_name": "MS-DS-TCP", + "id": "MS-DS-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2010_V1", + "path": "/infra/services/SharePoint_2010_V1/service-entries/MS-DS-TCP", + "realization_id": "1a734e23-133b-46ba-9428-0980d56583c4", + "relative_path": "MS-DS-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "1a734e23-133b-46ba-9428-0980d56583c4" + }, + { + "_create_time": 1724279992319, + "_create_user": "system", + "_last_modified_time": 1724279992319, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS-UDP", + "id": "KERBEROS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2010_V1", + "path": "/infra/services/SharePoint_2010_V1/service-entries/KERBEROS-UDP", + "realization_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e", + "relative_path": "KERBEROS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e" + }, + { + "_create_time": 1724279992266, + "_create_user": "system", + "_last_modified_time": 1724279992266, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-UDP", + "id": "DNS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2010_V1", + "path": "/infra/services/SharePoint_2010_V1/service-entries/DNS-UDP", + "realization_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326", + "relative_path": "DNS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "038cffe4-6cdf-4b4f-8e71-34f9e343e326" + }, + { + "_create_time": 1724279992354, + "_create_user": "system", + "_last_modified_time": 1724279992354, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "80" + ], + "display_name": "HTTP", + "id": "HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2010_V1", + "path": "/infra/services/SharePoint_2010_V1/service-entries/HTTP", + "realization_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38" + }, + { + "_create_time": 1724279992466, + "_create_user": "system", + "_last_modified_time": 1724279992466, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "636" + ], + "display_name": "LDAP-over-SSL-UDP", + "id": "LDAP-over-SSL-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2010_V1", + "path": "/infra/services/SharePoint_2010_V1/service-entries/LDAP-over-SSL-UDP", + "realization_id": "962b858f-396b-4259-8837-6abfdbb2e181", + "relative_path": "LDAP-over-SSL-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "962b858f-396b-4259-8837-6abfdbb2e181" + }, + { + "_create_time": 1724279992529, + "_create_user": "system", + "_last_modified_time": 1724279992529, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1433" + ], + "display_name": "MS-SQL-S", + "id": "MS-SQL-S", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2010_V1", + "path": "/infra/services/SharePoint_2010_V1/service-entries/MS-SQL-S", + "realization_id": "a7240508-b3a5-4123-b5b7-37f68e9a924f", + "relative_path": "MS-SQL-S", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a7240508-b3a5-4123-b5b7-37f68e9a924f" + }, + { + "_create_time": 1724279992335, + "_create_user": "system", + "_last_modified_time": 1724279992335, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP-UDP", + "id": "LDAP-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2010_V1", + "path": "/infra/services/SharePoint_2010_V1/service-entries/LDAP-UDP", + "realization_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f", + "relative_path": "LDAP-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f" + }, + { + "_create_time": 1724279992902, + "_create_user": "system", + "_last_modified_time": 1724279992902, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "464" + ], + "display_name": "Active Directory Server UDP", + "id": "Active_Directory_Server_UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2010_V1", + "path": "/infra/services/SharePoint_2010_V1/service-entries/Active_Directory_Server_UDP", + "realization_id": "b228589e-47d3-487e-a2a3-1404a1f4e7f0", + "relative_path": "Active_Directory_Server_UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b228589e-47d3-487e-a2a3-1404a1f4e7f0" + }, + { + "_create_time": 1724279992876, + "_create_user": "system", + "_last_modified_time": 1724279992876, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "56737", + "56738" + ], + "display_name": "Office Server Web Services, HTTP, SSL", + "id": "Office_Server_Web_Services,_HTTP,_SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2010_V1", + "path": "/infra/services/SharePoint_2010_V1/service-entries/Office_Server_Web_Services,_HTTP,_SSL", + "realization_id": "6856a604-2b32-4245-a24f-1e49f2b62058", + "relative_path": "Office_Server_Web_Services,_HTTP,_SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "6856a604-2b32-4245-a24f-1e49f2b62058" + }, + { + "_create_time": 1724279992948, + "_create_user": "system", + "_last_modified_time": 1724279992948, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "32843", + "32844", + "32845" + ], + "display_name": "HTTPS, net.tcp binding", + "id": "HTTPS,_net.tcp_binding", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2010_V1", + "path": "/infra/services/SharePoint_2010_V1/service-entries/HTTPS,_net.tcp_binding", + "realization_id": "ee8dc4a2-4eca-4863-bd42-7a95ce7e4b55", + "relative_path": "HTTPS,_net.tcp_binding", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "ee8dc4a2-4eca-4863-bd42-7a95ce7e4b55" + }, + { + "_create_time": 1724279992284, + "_create_user": "system", + "_last_modified_time": 1724279992284, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "MS_RPC_TCP", + "destination_ports": [ + "135" + ], + "display_name": "MS_RPC_TCP", + "id": "MS_RPC_TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2010_V1", + "path": "/infra/services/SharePoint_2010_V1/service-entries/MS_RPC_TCP", + "realization_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0", + "relative_path": "MS_RPC_TCP", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0" + }, + { + "_create_time": 1724279992830, + "_create_user": "system", + "_last_modified_time": 1724279992830, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "445" + ], + "display_name": "SMB Server UDP", + "id": "SMB_Server_UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2010_V1", + "path": "/infra/services/SharePoint_2010_V1/service-entries/SMB_Server_UDP", + "realization_id": "74c853b8-7828-4b4d-a107-90c5caed825e", + "relative_path": "SMB_Server_UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74c853b8-7828-4b4d-a107-90c5caed825e" + }, + { + "_create_time": 1724279992536, + "_create_user": "system", + "_last_modified_time": 1724279992536, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "137", + "138", + "139" + ], + "display_name": "Server Message Block (SMB)", + "id": "Server_Message_Block_(SMB)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2010_V1", + "path": "/infra/services/SharePoint_2010_V1/service-entries/Server_Message_Block_(SMB)", + "realization_id": "e1152dfa-58be-464c-9e4f-a9794fbf7db1", + "relative_path": "Server_Message_Block_(SMB)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "e1152dfa-58be-464c-9e4f-a9794fbf7db1" + }, + { + "_create_time": 1724279992805, + "_create_user": "system", + "_last_modified_time": 1724279992805, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "138" + ], + "display_name": "NBDG-Broadcast-V1", + "id": "NBDG-Broadcast-V1", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/SharePoint_2010_V1", + "path": "/infra/services/SharePoint_2010_V1/service-entries/NBDG-Broadcast-V1", + "realization_id": "15cbcee1-8351-44bc-a957-b600c6bc3f71", + "relative_path": "NBDG-Broadcast-V1", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "15cbcee1-8351-44bc-a957-b600c6bc3f71" + } + ] + }, + { + "_create_time": 1724279991541, + "_create_user": "system", + "_last_modified_time": 1724279991541, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Site Recovery Manager 5.x", + "display_name": "Site Recovery Manager 5.x", + "id": "Site_Recovery_Manager_5.x", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Site_Recovery_Manager_5.x", + "realization_id": "3c5eef4d-58f7-47c0-a836-2e2b109f584c", + "relative_path": "Site_Recovery_Manager_5.x", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "3c5eef4d-58f7-47c0-a836-2e2b109f584c", + "service_entries": [ + { + "_create_time": 1724279991807, + "_create_user": "system", + "_last_modified_time": 1724279991807, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_5.x", + "path": "/infra/services/Site_Recovery_Manager_5.x/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + }, + { + "_create_time": 1724279991547, + "_create_user": "system", + "_last_modified_time": 1724279991547, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8096" + ], + "display_name": "VMware-SRM-vCentreServer", + "id": "VMware-SRM-vCentreServer", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_5.x", + "path": "/infra/services/Site_Recovery_Manager_5.x/service-entries/VMware-SRM-vCentreServer", + "realization_id": "dd6442f9-84e6-4a34-b3da-1f477214a71a", + "relative_path": "VMware-SRM-vCentreServer", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "dd6442f9-84e6-4a34-b3da-1f477214a71a" + }, + { + "_create_time": 1724279991768, + "_create_user": "system", + "_last_modified_time": 1724279991768, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1433" + ], + "display_name": "MS-SQL-S", + "id": "MS-SQL-S", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_5.x", + "path": "/infra/services/Site_Recovery_Manager_5.x/service-entries/MS-SQL-S", + "realization_id": "a7240508-b3a5-4123-b5b7-37f68e9a924f", + "relative_path": "MS-SQL-S", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a7240508-b3a5-4123-b5b7-37f68e9a924f" + }, + { + "_create_time": 1724279991604, + "_create_user": "system", + "_last_modified_time": 1724279991604, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "902" + ], + "display_name": "VMware-ESXi5.x-TCP", + "id": "VMware-ESXi5.x-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_5.x", + "path": "/infra/services/Site_Recovery_Manager_5.x/service-entries/VMware-ESXi5.x-TCP", + "realization_id": "7e6274bb-cf59-4440-bbe0-050198204126", + "relative_path": "VMware-ESXi5.x-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "7e6274bb-cf59-4440-bbe0-050198204126" + }, + { + "_create_time": 1724279991588, + "_create_user": "system", + "_last_modified_time": 1724279991588, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5480" + ], + "display_name": "HBR Server App", + "id": "HBR_Server_App", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_5.x", + "path": "/infra/services/Site_Recovery_Manager_5.x/service-entries/HBR_Server_App", + "realization_id": "9ba29183-627e-49d9-9a25-495c1ce473f5", + "relative_path": "HBR_Server_App", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "9ba29183-627e-49d9-9a25-495c1ce473f5" + }, + { + "_create_time": 1724279991647, + "_create_user": "system", + "_last_modified_time": 1724279991647, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9008" + ], + "display_name": "VMware-SRM-HTTP", + "id": "VMware-SRM-HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_5.x", + "path": "/infra/services/Site_Recovery_Manager_5.x/service-entries/VMware-SRM-HTTP", + "realization_id": "0163f9dd-9067-4f7b-9faf-e799b65d86ab", + "relative_path": "VMware-SRM-HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "0163f9dd-9067-4f7b-9faf-e799b65d86ab" + }, + { + "_create_time": 1724279991872, + "_create_user": "system", + "_last_modified_time": 1724279991872, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "31031", + "44046" + ], + "display_name": "VMware-SRM-vSphereReplication", + "id": "VMware-SRM-vSphereReplication", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_5.x", + "path": "/infra/services/Site_Recovery_Manager_5.x/service-entries/VMware-SRM-vSphereReplication", + "realization_id": "42b7da77-b2e1-4ead-99fe-14e1d6b2c257", + "relative_path": "VMware-SRM-vSphereReplication", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "42b7da77-b2e1-4ead-99fe-14e1d6b2c257" + }, + { + "_create_time": 1724279991881, + "_create_user": "system", + "_last_modified_time": 1724279991881, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8095" + ], + "display_name": "VMware-SRMClient-Server", + "id": "VMware-SRMClient-Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_5.x", + "path": "/infra/services/Site_Recovery_Manager_5.x/service-entries/VMware-SRMClient-Server", + "realization_id": "fd0e8cad-ed32-49b3-9ea6-283fc2b7df7b", + "relative_path": "VMware-SRMClient-Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "fd0e8cad-ed32-49b3-9ea6-283fc2b7df7b" + }, + { + "_create_time": 1724279991903, + "_create_user": "system", + "_last_modified_time": 1724279991903, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8080" + ], + "display_name": "VMware-SRM-VAMI", + "id": "VMware-SRM-VAMI", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_5.x", + "path": "/infra/services/Site_Recovery_Manager_5.x/service-entries/VMware-SRM-VAMI", + "realization_id": "121ecd21-07d1-4bc7-a2b2-ffb7ce078014", + "relative_path": "VMware-SRM-VAMI", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "121ecd21-07d1-4bc7-a2b2-ffb7ce078014" + }, + { + "_create_time": 1724279991850, + "_create_user": "system", + "_last_modified_time": 1724279991850, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8282" + ], + "display_name": "Vmware-VCO-VCO-HTTP", + "id": "Vmware-VCO-VCO-HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_5.x", + "path": "/infra/services/Site_Recovery_Manager_5.x/service-entries/Vmware-VCO-VCO-HTTP", + "realization_id": "cc5a83bc-280b-4851-b6fd-258886f48ef2", + "relative_path": "Vmware-VCO-VCO-HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "cc5a83bc-280b-4851-b6fd-258886f48ef2" + }, + { + "_create_time": 1724279991730, + "_create_user": "system", + "_last_modified_time": 1724279991730, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1521" + ], + "display_name": "Oracle", + "id": "Oracle", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_5.x", + "path": "/infra/services/Site_Recovery_Manager_5.x/service-entries/Oracle", + "realization_id": "3bb6713b-756e-439a-9ccd-7171f685c6e2", + "relative_path": "Oracle", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3bb6713b-756e-439a-9ccd-7171f685c6e2" + }, + { + "_create_time": 1724279991573, + "_create_user": "system", + "_last_modified_time": 1724279991573, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8043" + ], + "display_name": "VMware-SRM-SOAP", + "id": "VMware-SRM-SOAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_5.x", + "path": "/infra/services/Site_Recovery_Manager_5.x/service-entries/VMware-SRM-SOAP", + "realization_id": "8850bc2d-e146-4b6e-850b-15f65940d30c", + "relative_path": "VMware-SRM-SOAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8850bc2d-e146-4b6e-850b-15f65940d30c" + }, + { + "_create_time": 1724279991922, + "_create_user": "system", + "_last_modified_time": 1724279991922, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8123" + ], + "display_name": "VMware-SRM-Replication", + "id": "VMware-SRM-Replication", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_5.x", + "path": "/infra/services/Site_Recovery_Manager_5.x/service-entries/VMware-SRM-Replication", + "realization_id": "673df856-9e54-409e-8291-0b2c1151e690", + "relative_path": "VMware-SRM-Replication", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "673df856-9e54-409e-8291-0b2c1151e690" + }, + { + "_create_time": 1724279991553, + "_create_user": "system", + "_last_modified_time": 1724279991553, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5000" + ], + "display_name": "IBM DB2", + "id": "IBM_DB2", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_5.x", + "path": "/infra/services/Site_Recovery_Manager_5.x/service-entries/IBM_DB2", + "realization_id": "767da022-2024-4d3f-be04-00393db03122", + "relative_path": "IBM_DB2", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "767da022-2024-4d3f-be04-00393db03122" + }, + { + "_create_time": 1724279991822, + "_create_user": "system", + "_last_modified_time": 1724279991822, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "80" + ], + "display_name": "HTTP", + "id": "HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_5.x", + "path": "/infra/services/Site_Recovery_Manager_5.x/service-entries/HTTP", + "realization_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38" + }, + { + "_create_time": 1724279991671, + "_create_user": "system", + "_last_modified_time": 1724279991671, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1526" + ], + "display_name": "Oracle-2", + "id": "Oracle-2", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_5.x", + "path": "/infra/services/Site_Recovery_Manager_5.x/service-entries/Oracle-2", + "realization_id": "8f4e8600-c9e0-4a19-830c-2df7b8b2f541", + "relative_path": "Oracle-2", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8f4e8600-c9e0-4a19-830c-2df7b8b2f541" + }, + { + "_create_time": 1724279991750, + "_create_user": "system", + "_last_modified_time": 1724279991750, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9007" + ], + "display_name": "Vmware-SRM-WSDL-vCentreServer", + "id": "Vmware-SRM-WSDL-vCentreServer", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_5.x", + "path": "/infra/services/Site_Recovery_Manager_5.x/service-entries/Vmware-SRM-WSDL-vCentreServer", + "realization_id": "b6b47a66-b8e7-4a50-b877-038564209ebd", + "relative_path": "Vmware-SRM-WSDL-vCentreServer", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b6b47a66-b8e7-4a50-b877-038564209ebd" + }, + { + "_create_time": 1724279991761, + "_create_user": "system", + "_last_modified_time": 1724279991761, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9085" + ], + "display_name": "VMware-SRM-UI", + "id": "VMware-SRM-UI", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_5.x", + "path": "/infra/services/Site_Recovery_Manager_5.x/service-entries/VMware-SRM-UI", + "realization_id": "731e6d18-1196-489a-8837-ffaaf1f426fb", + "relative_path": "VMware-SRM-UI", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "731e6d18-1196-489a-8837-ffaaf1f426fb" + } + ] + }, + { + "_create_time": 1724279991249, + "_create_user": "system", + "_last_modified_time": 1724279991249, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Site Recovery Manager 6.x", + "display_name": "Site Recovery Manager 6.x", + "id": "Site_Recovery_Manager_6.x", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Site_Recovery_Manager_6.x", + "realization_id": "3c5eef4d-58f7-47c0-a836-2e2b109f579d", + "relative_path": "Site_Recovery_Manager_6.x", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "3c5eef4d-58f7-47c0-a836-2e2b109f579d", + "service_entries": [ + { + "_create_time": 1724279991395, + "_create_user": "system", + "_last_modified_time": 1724279991395, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9007" + ], + "display_name": "Vmware-SRM-WSDL-vCentreServer", + "id": "Vmware-SRM-WSDL-vCentreServer", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_6.x", + "path": "/infra/services/Site_Recovery_Manager_6.x/service-entries/Vmware-SRM-WSDL-vCentreServer", + "realization_id": "b6b47a66-b8e7-4a50-b877-038564209ebd", + "relative_path": "Vmware-SRM-WSDL-vCentreServer", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b6b47a66-b8e7-4a50-b877-038564209ebd" + }, + { + "_create_time": 1724279991514, + "_create_user": "system", + "_last_modified_time": 1724279991514, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8043" + ], + "display_name": "VMware-VR-Server-Management-Traffic", + "id": "VMware-VR-Server-Management-Traffic", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_6.x", + "path": "/infra/services/Site_Recovery_Manager_6.x/service-entries/VMware-VR-Server-Management-Traffic", + "realization_id": "87655f2e-6c5d-4ec2-aa82-a35a8b9e4e55", + "relative_path": "VMware-VR-Server-Management-Traffic", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "87655f2e-6c5d-4ec2-aa82-a35a8b9e4e55" + }, + { + "_create_time": 1724279991283, + "_create_user": "system", + "_last_modified_time": 1724279991283, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9008" + ], + "display_name": "VMware-SRM-HTTP", + "id": "VMware-SRM-HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_6.x", + "path": "/infra/services/Site_Recovery_Manager_6.x/service-entries/VMware-SRM-HTTP", + "realization_id": "0163f9dd-9067-4f7b-9faf-e799b65d86ab", + "relative_path": "VMware-SRM-HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "0163f9dd-9067-4f7b-9faf-e799b65d86ab" + }, + { + "_create_time": 1724279991446, + "_create_user": "system", + "_last_modified_time": 1724279991446, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "80" + ], + "display_name": "HTTP", + "id": "HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_6.x", + "path": "/infra/services/Site_Recovery_Manager_6.x/service-entries/HTTP", + "realization_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38" + }, + { + "_create_time": 1724279991403, + "_create_user": "system", + "_last_modified_time": 1724279991403, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9085" + ], + "display_name": "VMware-SRM-UI", + "id": "VMware-SRM-UI", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_6.x", + "path": "/infra/services/Site_Recovery_Manager_6.x/service-entries/VMware-SRM-UI", + "realization_id": "731e6d18-1196-489a-8837-ffaaf1f426fb", + "relative_path": "VMware-SRM-UI", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "731e6d18-1196-489a-8837-ffaaf1f426fb" + }, + { + "_create_time": 1724279991508, + "_create_user": "system", + "_last_modified_time": 1724279991508, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9086" + ], + "display_name": "VMware-SRM-Server-Management", + "id": "VMware-SRM-Server-Management", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_6.x", + "path": "/infra/services/Site_Recovery_Manager_6.x/service-entries/VMware-SRM-Server-Management", + "realization_id": "6acd0fa2-0ace-41af-9d5f-733f360fc8e1", + "relative_path": "VMware-SRM-Server-Management", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "6acd0fa2-0ace-41af-9d5f-733f360fc8e1" + }, + { + "_create_time": 1724279991260, + "_create_user": "system", + "_last_modified_time": 1724279991260, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5000" + ], + "display_name": "IBM DB2", + "id": "IBM_DB2", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_6.x", + "path": "/infra/services/Site_Recovery_Manager_6.x/service-entries/IBM_DB2", + "realization_id": "767da022-2024-4d3f-be04-00393db03122", + "relative_path": "IBM_DB2", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "767da022-2024-4d3f-be04-00393db03122" + }, + { + "_create_time": 1724279991271, + "_create_user": "system", + "_last_modified_time": 1724279991271, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5480" + ], + "display_name": "HBR Server App", + "id": "HBR_Server_App", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_6.x", + "path": "/infra/services/Site_Recovery_Manager_6.x/service-entries/HBR_Server_App", + "realization_id": "9ba29183-627e-49d9-9a25-495c1ce473f5", + "relative_path": "HBR_Server_App", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "9ba29183-627e-49d9-9a25-495c1ce473f5" + }, + { + "_create_time": 1724279991424, + "_create_user": "system", + "_last_modified_time": 1724279991424, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_6.x", + "path": "/infra/services/Site_Recovery_Manager_6.x/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + }, + { + "_create_time": 1724279991493, + "_create_user": "system", + "_last_modified_time": 1724279991493, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8080" + ], + "display_name": "VMware-SRM-VAMI", + "id": "VMware-SRM-VAMI", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_6.x", + "path": "/infra/services/Site_Recovery_Manager_6.x/service-entries/VMware-SRM-VAMI", + "realization_id": "121ecd21-07d1-4bc7-a2b2-ffb7ce078014", + "relative_path": "VMware-SRM-VAMI", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "121ecd21-07d1-4bc7-a2b2-ffb7ce078014" + }, + { + "_create_time": 1724279991266, + "_create_user": "system", + "_last_modified_time": 1724279991266, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8043" + ], + "display_name": "VMware-SRM-SOAP", + "id": "VMware-SRM-SOAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_6.x", + "path": "/infra/services/Site_Recovery_Manager_6.x/service-entries/VMware-SRM-SOAP", + "realization_id": "8850bc2d-e146-4b6e-850b-15f65940d30c", + "relative_path": "VMware-SRM-SOAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8850bc2d-e146-4b6e-850b-15f65940d30c" + }, + { + "_create_time": 1724279991528, + "_create_user": "system", + "_last_modified_time": 1724279991528, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "VMware-SRM-H5-UI", + "id": "VMware-SRM-H5-UI", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_6.x", + "path": "/infra/services/Site_Recovery_Manager_6.x/service-entries/VMware-SRM-H5-UI", + "realization_id": "67d6951f-d218-4b4b-a162-14828d233230", + "relative_path": "VMware-SRM-H5-UI", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "67d6951f-d218-4b4b-a162-14828d233230" + }, + { + "_create_time": 1724279991277, + "_create_user": "system", + "_last_modified_time": 1724279991277, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "902" + ], + "display_name": "VMware-ESXi5.x-TCP", + "id": "VMware-ESXi5.x-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_6.x", + "path": "/infra/services/Site_Recovery_Manager_6.x/service-entries/VMware-ESXi5.x-TCP", + "realization_id": "7e6274bb-cf59-4440-bbe0-050198204126", + "relative_path": "VMware-ESXi5.x-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "7e6274bb-cf59-4440-bbe0-050198204126" + }, + { + "_create_time": 1724279991372, + "_create_user": "system", + "_last_modified_time": 1724279991372, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1526" + ], + "display_name": "Oracle-2", + "id": "Oracle-2", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_6.x", + "path": "/infra/services/Site_Recovery_Manager_6.x/service-entries/Oracle-2", + "realization_id": "8f4e8600-c9e0-4a19-830c-2df7b8b2f541", + "relative_path": "Oracle-2", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8f4e8600-c9e0-4a19-830c-2df7b8b2f541" + }, + { + "_create_time": 1724279991463, + "_create_user": "system", + "_last_modified_time": 1724279991463, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8282" + ], + "display_name": "Vmware-VCO-VCO-HTTP", + "id": "Vmware-VCO-VCO-HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_6.x", + "path": "/infra/services/Site_Recovery_Manager_6.x/service-entries/Vmware-VCO-VCO-HTTP", + "realization_id": "cc5a83bc-280b-4851-b6fd-258886f48ef2", + "relative_path": "Vmware-VCO-VCO-HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "cc5a83bc-280b-4851-b6fd-258886f48ef2" + }, + { + "_create_time": 1724279991471, + "_create_user": "system", + "_last_modified_time": 1724279991471, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "31031", + "44046" + ], + "display_name": "VMware-SRM-vSphereReplication", + "id": "VMware-SRM-vSphereReplication", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_6.x", + "path": "/infra/services/Site_Recovery_Manager_6.x/service-entries/VMware-SRM-vSphereReplication", + "realization_id": "42b7da77-b2e1-4ead-99fe-14e1d6b2c257", + "relative_path": "VMware-SRM-vSphereReplication", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "42b7da77-b2e1-4ead-99fe-14e1d6b2c257" + }, + { + "_create_time": 1724279991519, + "_create_user": "system", + "_last_modified_time": 1724279991519, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "31031", + "44046" + ], + "display_name": "VMware-VR-Replication-Traffic", + "id": "VMware-VR-Replication-Traffic", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_6.x", + "path": "/infra/services/Site_Recovery_Manager_6.x/service-entries/VMware-VR-Replication-Traffic", + "realization_id": "22a3e2d2-5aec-4aa1-b46d-c051b12736cd", + "relative_path": "VMware-VR-Replication-Traffic", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "22a3e2d2-5aec-4aa1-b46d-c051b12736cd" + }, + { + "_create_time": 1724279991415, + "_create_user": "system", + "_last_modified_time": 1724279991415, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1433" + ], + "display_name": "MS-SQL-S", + "id": "MS-SQL-S", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_6.x", + "path": "/infra/services/Site_Recovery_Manager_6.x/service-entries/MS-SQL-S", + "realization_id": "a7240508-b3a5-4123-b5b7-37f68e9a924f", + "relative_path": "MS-SQL-S", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a7240508-b3a5-4123-b5b7-37f68e9a924f" + }, + { + "_create_time": 1724279991480, + "_create_user": "system", + "_last_modified_time": 1724279991480, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8095" + ], + "display_name": "VMware-SRMClient-Server", + "id": "VMware-SRMClient-Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_6.x", + "path": "/infra/services/Site_Recovery_Manager_6.x/service-entries/VMware-SRMClient-Server", + "realization_id": "fd0e8cad-ed32-49b3-9ea6-283fc2b7df7b", + "relative_path": "VMware-SRMClient-Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "fd0e8cad-ed32-49b3-9ea6-283fc2b7df7b" + }, + { + "_create_time": 1724279991379, + "_create_user": "system", + "_last_modified_time": 1724279991379, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1521" + ], + "display_name": "Oracle", + "id": "Oracle", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_6.x", + "path": "/infra/services/Site_Recovery_Manager_6.x/service-entries/Oracle", + "realization_id": "3bb6713b-756e-439a-9ccd-7171f685c6e2", + "relative_path": "Oracle", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3bb6713b-756e-439a-9ccd-7171f685c6e2" + }, + { + "_create_time": 1724279991502, + "_create_user": "system", + "_last_modified_time": 1724279991502, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8123" + ], + "display_name": "VMware-SRM-Replication", + "id": "VMware-SRM-Replication", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_6.x", + "path": "/infra/services/Site_Recovery_Manager_6.x/service-entries/VMware-SRM-Replication", + "realization_id": "673df856-9e54-409e-8291-0b2c1151e690", + "relative_path": "VMware-SRM-Replication", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "673df856-9e54-409e-8291-0b2c1151e690" + }, + { + "_create_time": 1724279991255, + "_create_user": "system", + "_last_modified_time": 1724279991255, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8096" + ], + "display_name": "VMware-SRM-vCentreServer", + "id": "VMware-SRM-vCentreServer", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Recovery_Manager_6.x", + "path": "/infra/services/Site_Recovery_Manager_6.x/service-entries/VMware-SRM-vCentreServer", + "realization_id": "dd6442f9-84e6-4a34-b3da-1f477214a71a", + "relative_path": "VMware-SRM-vCentreServer", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "dd6442f9-84e6-4a34-b3da-1f477214a71a" + } + ] + }, + { + "_create_time": 1724279988984, + "_create_user": "system", + "_last_modified_time": 1724279988984, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Site Replication service", + "display_name": "Site Replication service", + "id": "Site_Replication_service", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Site_Replication_service", + "realization_id": "76023361-34ce-43a0-a8a6-4859be813879", + "relative_path": "Site_Replication_service", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "76023361-34ce-43a0-a8a6-4859be813879", + "service_entries": [ + { + "_create_time": 1724279988985, + "_create_user": "system", + "_last_modified_time": 1724279988985, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "379" + ], + "display_name": "Site Replication service", + "id": "Site_Replication_service", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Site_Replication_service", + "path": "/infra/services/Site_Replication_service/service-entries/Site_Replication_service", + "realization_id": "6475aeb4-5b8b-4ba7-a65c-1aa1e37504ac", + "relative_path": "Site_Replication_service", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "6475aeb4-5b8b-4ba7-a65c-1aa1e37504ac" + } + ] + }, + { + "_create_time": 1724279989111, + "_create_user": "system", + "_last_modified_time": 1724279989111, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Skinny", + "display_name": "Skinny", + "id": "Skinny", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Skinny", + "realization_id": "b1570118-8fbe-4b8d-bc6d-630ef32ce974", + "relative_path": "Skinny", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "b1570118-8fbe-4b8d-bc6d-630ef32ce974", + "service_entries": [ + { + "_create_time": 1724279989111, + "_create_user": "system", + "_last_modified_time": 1724279989111, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "2000" + ], + "display_name": "Skinny", + "id": "Skinny", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Skinny", + "path": "/infra/services/Skinny/service-entries/Skinny", + "realization_id": "99555e34-3bba-4ba8-bb72-ae6a5dd1181a", + "relative_path": "Skinny", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "99555e34-3bba-4ba8-bb72-ae6a5dd1181a" + } + ] + }, + { + "_create_time": 1724279989111, + "_create_user": "system", + "_last_modified_time": 1724279989111, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Syslog (TCP)", + "display_name": "Syslog (TCP)", + "id": "Syslog_(TCP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Syslog_(TCP)", + "realization_id": "d8a6a4a6-2511-438f-95e3-88f24ff9fe6e", + "relative_path": "Syslog_(TCP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "d8a6a4a6-2511-438f-95e3-88f24ff9fe6e", + "service_entries": [ + { + "_create_time": 1724279989111, + "_create_user": "system", + "_last_modified_time": 1724279989111, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "514" + ], + "display_name": "Syslog (TCP)", + "id": "Syslog_(TCP)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Syslog_(TCP)", + "path": "/infra/services/Syslog_(TCP)/service-entries/Syslog_(TCP)", + "realization_id": "f79ef1c6-1a85-4bae-b5d7-2c7a15b5a648", + "relative_path": "Syslog_(TCP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f79ef1c6-1a85-4bae-b5d7-2c7a15b5a648" + } + ] + }, + { + "_create_time": 1724279988896, + "_create_user": "system", + "_last_modified_time": 1724279988896, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Syslog (UDP)", + "display_name": "Syslog (UDP)", + "id": "Syslog_(UDP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Syslog_(UDP)", + "realization_id": "0b16e4be-08f1-40df-b3ba-2c02c0b12116", + "relative_path": "Syslog_(UDP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "0b16e4be-08f1-40df-b3ba-2c02c0b12116", + "service_entries": [ + { + "_create_time": 1724279988896, + "_create_user": "system", + "_last_modified_time": 1724279988896, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "514" + ], + "display_name": "Syslog (UDP)", + "id": "Syslog_(UDP)", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Syslog_(UDP)", + "path": "/infra/services/Syslog_(UDP)/service-entries/Syslog_(UDP)", + "realization_id": "62e8411e-0787-4654-8e2f-72642765d342", + "relative_path": "Syslog_(UDP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "62e8411e-0787-4654-8e2f-72642765d342" + } + ] + }, + { + "_create_time": 1724279988879, + "_create_user": "system", + "_last_modified_time": 1724279988879, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Syslog-Server", + "display_name": "Syslog-Server", + "id": "Syslog-Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Syslog-Server", + "realization_id": "fed5e1be-6cf4-4b89-8fe6-f899c9715f3b", + "relative_path": "Syslog-Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "fed5e1be-6cf4-4b89-8fe6-f899c9715f3b", + "service_entries": [ + { + "_create_time": 1724279988879, + "_create_user": "system", + "_last_modified_time": 1724279988879, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "514" + ], + "display_name": "Syslog-Server", + "id": "Syslog-Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Syslog-Server", + "path": "/infra/services/Syslog-Server/service-entries/Syslog-Server", + "realization_id": "d5b9aab7-aa8c-4dda-8bb7-ed42b1fc0926", + "relative_path": "Syslog-Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "d5b9aab7-aa8c-4dda-8bb7-ed42b1fc0926" + } + ] + }, + { + "_create_time": 1724279989161, + "_create_user": "system", + "_last_modified_time": 1724279989161, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Syslog-Server-UDP", + "display_name": "Syslog-Server-UDP", + "id": "Syslog-Server-UDP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Syslog-Server-UDP", + "realization_id": "df4bec2f-d559-48c9-851e-7c9aeeefe539", + "relative_path": "Syslog-Server-UDP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "df4bec2f-d559-48c9-851e-7c9aeeefe539", + "service_entries": [ + { + "_create_time": 1724279989162, + "_create_user": "system", + "_last_modified_time": 1724279989162, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "514" + ], + "display_name": "Syslog-Server-UDP", + "id": "Syslog-Server-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Syslog-Server-UDP", + "path": "/infra/services/Syslog-Server-UDP/service-entries/Syslog-Server-UDP", + "realization_id": "d81fb2ec-0443-4d4a-9828-16dd1b1c934e", + "relative_path": "Syslog-Server-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "d81fb2ec-0443-4d4a-9828-16dd1b1c934e" + } + ] + }, + { + "_create_time": 1724279988834, + "_create_user": "system", + "_last_modified_time": 1724279988834, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "T120 (Whiteboard A43)", + "display_name": "T120 (Whiteboard A43)", + "id": "T120_(Whiteboard_A43)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/T120_(Whiteboard_A43)", + "realization_id": "b30d26e9-4648-49f4-8018-a05b4b31c7ba", + "relative_path": "T120_(Whiteboard_A43)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "b30d26e9-4648-49f4-8018-a05b4b31c7ba", + "service_entries": [ + { + "_create_time": 1724279988834, + "_create_user": "system", + "_last_modified_time": 1724279988834, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1503" + ], + "display_name": "T120 (Whiteboard A43)", + "id": "T120_(Whiteboard_A43)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/T120_(Whiteboard_A43)", + "path": "/infra/services/T120_(Whiteboard_A43)/service-entries/T120_(Whiteboard_A43)", + "realization_id": "46348259-9a6e-466b-a9a3-80b8c4b4dd51", + "relative_path": "T120_(Whiteboard_A43)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "46348259-9a6e-466b-a9a3-80b8c4b4dd51" + } + ] + }, + { + "_create_time": 1724279988990, + "_create_user": "system", + "_last_modified_time": 1724279988990, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "TELNET", + "display_name": "TELNET", + "id": "TELNET", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/TELNET", + "realization_id": "42afc6a0-4d1f-491e-b247-5935635e8798", + "relative_path": "TELNET", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "42afc6a0-4d1f-491e-b247-5935635e8798", + "service_entries": [ + { + "_create_time": 1724279988990, + "_create_user": "system", + "_last_modified_time": 1724279988990, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "23" + ], + "display_name": "TELNET", + "id": "TELNET", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/TELNET", + "path": "/infra/services/TELNET/service-entries/TELNET", + "realization_id": "3e5f7183-b2fe-42ad-93f8-1983d8cfd2c1", + "relative_path": "TELNET", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3e5f7183-b2fe-42ad-93f8-1983d8cfd2c1" + } + ] + }, + { + "_create_time": 1724279988911, + "_create_user": "system", + "_last_modified_time": 1724279988911, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "TFTP", + "display_name": "TFTP", + "id": "TFTP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/TFTP", + "realization_id": "2dd98f9b-f333-47f5-bf16-8fd7a3033753", + "relative_path": "TFTP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "2dd98f9b-f333-47f5-bf16-8fd7a3033753", + "service_entries": [ + { + "_create_time": 1724279988912, + "_create_user": "system", + "_last_modified_time": 1724279988912, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "TFTP", + "destination_ports": [ + "69" + ], + "display_name": "TFTP", + "id": "TFTP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/TFTP", + "path": "/infra/services/TFTP/service-entries/TFTP", + "realization_id": "d15e3721-7626-4b06-a225-ed600723c371", + "relative_path": "TFTP", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "d15e3721-7626-4b06-a225-ed600723c371" + } + ] + }, + { + "_create_time": 1724279989183, + "_create_user": "system", + "_last_modified_time": 1724279989183, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Terminal Services (TCP)", + "display_name": "Terminal Services (TCP)", + "id": "Terminal_Services_(TCP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Terminal_Services_(TCP)", + "realization_id": "5c9a2f6a-2ed4-4c6a-b8ee-70ef3e861d22", + "relative_path": "Terminal_Services_(TCP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "5c9a2f6a-2ed4-4c6a-b8ee-70ef3e861d22", + "service_entries": [ + { + "_create_time": 1724279989183, + "_create_user": "system", + "_last_modified_time": 1724279989183, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3389" + ], + "display_name": "Terminal Services (TCP)", + "id": "Terminal_Services_(TCP)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Terminal_Services_(TCP)", + "path": "/infra/services/Terminal_Services_(TCP)/service-entries/Terminal_Services_(TCP)", + "realization_id": "20ee0a6b-59e8-4b64-8f44-96a5d598bb83", + "relative_path": "Terminal_Services_(TCP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "20ee0a6b-59e8-4b64-8f44-96a5d598bb83" + } + ] + }, + { + "_create_time": 1724279989122, + "_create_user": "system", + "_last_modified_time": 1724279989122, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Terminal Services (UDP)", + "display_name": "Terminal Services (UDP)", + "id": "Terminal_Services_(UDP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Terminal_Services_(UDP)", + "realization_id": "2af61718-8844-4229-bba0-4ce69fe9bf11", + "relative_path": "Terminal_Services_(UDP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "2af61718-8844-4229-bba0-4ce69fe9bf11", + "service_entries": [ + { + "_create_time": 1724279989122, + "_create_user": "system", + "_last_modified_time": 1724279989122, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3389" + ], + "display_name": "Terminal Services (UDP)", + "id": "Terminal_Services_(UDP)", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Terminal_Services_(UDP)", + "path": "/infra/services/Terminal_Services_(UDP)/service-entries/Terminal_Services_(UDP)", + "realization_id": "ccc15ff4-2758-432e-8999-348bc11f0808", + "relative_path": "Terminal_Services_(UDP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "ccc15ff4-2758-432e-8999-348bc11f0808" + } + ] + }, + { + "_create_time": 1724279998494, + "_create_user": "system", + "_last_modified_time": 1724279998494, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Update Manager", + "display_name": "Update Manager", + "id": "Update_Manager", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Update_Manager", + "realization_id": "d78b5666-f937-4606-9f07-44172fc14a3a", + "relative_path": "Update_Manager", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "d78b5666-f937-4606-9f07-44172fc14a3a", + "service_entries": [ + { + "_create_time": 1724279998610, + "_create_user": "system", + "_last_modified_time": 1724279998610, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "735" + ], + "display_name": "VMware-UpdateMgr-Patching", + "id": "VMware-UpdateMgr-Patching", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Update_Manager", + "path": "/infra/services/Update_Manager/service-entries/VMware-UpdateMgr-Patching", + "realization_id": "8aab9aba-55c3-4621-a8e1-26518cd39f24", + "relative_path": "VMware-UpdateMgr-Patching", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8aab9aba-55c3-4621-a8e1-26518cd39f24" + }, + { + "_create_time": 1724279998641, + "_create_user": "system", + "_last_modified_time": 1724279998641, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "80" + ], + "display_name": "HTTP", + "id": "HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Update_Manager", + "path": "/infra/services/Update_Manager/service-entries/HTTP", + "realization_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38" + }, + { + "_create_time": 1724279998539, + "_create_user": "system", + "_last_modified_time": 1724279998539, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9087" + ], + "display_name": "Vmware-UpdateMgr-update", + "id": "Vmware-UpdateMgr-update", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Update_Manager", + "path": "/infra/services/Update_Manager/service-entries/Vmware-UpdateMgr-update", + "realization_id": "20a09a60-7f96-4b5b-82a6-eb5be0ac6079", + "relative_path": "Vmware-UpdateMgr-update", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "20a09a60-7f96-4b5b-82a6-eb5be0ac6079" + }, + { + "_create_time": 1724279998593, + "_create_user": "system", + "_last_modified_time": 1724279998593, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1521" + ], + "display_name": "Oracle", + "id": "Oracle", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Update_Manager", + "path": "/infra/services/Update_Manager/service-entries/Oracle", + "realization_id": "3bb6713b-756e-439a-9ccd-7171f685c6e2", + "relative_path": "Oracle", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3bb6713b-756e-439a-9ccd-7171f685c6e2" + }, + { + "_create_time": 1724279998622, + "_create_user": "system", + "_last_modified_time": 1724279998622, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Update_Manager", + "path": "/infra/services/Update_Manager/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + }, + { + "_create_time": 1724279998506, + "_create_user": "system", + "_last_modified_time": 1724279998506, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9000-9100" + ], + "display_name": "VMware-UpdateMgr", + "id": "VMware-UpdateMgr", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Update_Manager", + "path": "/infra/services/Update_Manager/service-entries/VMware-UpdateMgr", + "realization_id": "864d7423-3cff-4894-8491-a97d93936b54", + "relative_path": "VMware-UpdateMgr", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "864d7423-3cff-4894-8491-a97d93936b54" + }, + { + "_create_time": 1724279998529, + "_create_user": "system", + "_last_modified_time": 1724279998529, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9084" + ], + "display_name": "VMware-UpdateMgr-VUM", + "id": "VMware-UpdateMgr-VUM", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Update_Manager", + "path": "/infra/services/Update_Manager/service-entries/VMware-UpdateMgr-VUM", + "realization_id": "8212498d-b772-41ea-9b14-c4b1f30e7484", + "relative_path": "VMware-UpdateMgr-VUM", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8212498d-b772-41ea-9b14-c4b1f30e7484" + }, + { + "_create_time": 1724279998575, + "_create_user": "system", + "_last_modified_time": 1724279998575, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1433" + ], + "display_name": "MS-SQL-S", + "id": "MS-SQL-S", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Update_Manager", + "path": "/infra/services/Update_Manager/service-entries/MS-SQL-S", + "realization_id": "a7240508-b3a5-4123-b5b7-37f68e9a924f", + "relative_path": "MS-SQL-S", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a7240508-b3a5-4123-b5b7-37f68e9a924f" + }, + { + "_create_time": 1724279998517, + "_create_user": "system", + "_last_modified_time": 1724279998517, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8084" + ], + "display_name": "VMware-UpdateMgr-SOAP", + "id": "VMware-UpdateMgr-SOAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Update_Manager", + "path": "/infra/services/Update_Manager/service-entries/VMware-UpdateMgr-SOAP", + "realization_id": "a8ea634e-a20c-44f4-97e3-1ae803c76b27", + "relative_path": "VMware-UpdateMgr-SOAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a8ea634e-a20c-44f4-97e3-1ae803c76b27" + }, + { + "_create_time": 1724279998647, + "_create_user": "system", + "_last_modified_time": 1724279998647, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "902" + ], + "display_name": "VMware-ESXi5.x-TCP", + "id": "VMware-ESXi5.x-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Update_Manager", + "path": "/infra/services/Update_Manager/service-entries/VMware-ESXi5.x-TCP", + "realization_id": "7e6274bb-cf59-4440-bbe0-050198204126", + "relative_path": "VMware-ESXi5.x-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "7e6274bb-cf59-4440-bbe0-050198204126" + } + ] + }, + { + "_create_time": 1724279988982, + "_create_user": "system", + "_last_modified_time": 1724279988982, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware Consolidated Backup", + "display_name": "VMware Consolidated Backup", + "id": "VMware_Consolidated_Backup", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware_Consolidated_Backup", + "realization_id": "6bddc69c-7d7f-4996-8f27-0576335ba18a", + "relative_path": "VMware_Consolidated_Backup", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "6bddc69c-7d7f-4996-8f27-0576335ba18a", + "service_entries": [ + { + "_create_time": 1724279988982, + "_create_user": "system", + "_last_modified_time": 1724279988982, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "VMware Consolidated Backup", + "id": "VMware_Consolidated_Backup", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware_Consolidated_Backup", + "path": "/infra/services/VMware_Consolidated_Backup/service-entries/VMware_Consolidated_Backup", + "realization_id": "80db04b7-9bd3-4501-9f26-60c2bcfc03b4", + "relative_path": "VMware_Consolidated_Backup", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "80db04b7-9bd3-4501-9f26-60c2bcfc03b4" + } + ] + }, + { + "_create_time": 1724279991223, + "_create_user": "system", + "_last_modified_time": 1724279991223, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware ESXi Dump Collector", + "display_name": "VMware ESXi Dump Collector", + "id": "VMware_ESXi_Dump_Collector", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware_ESXi_Dump_Collector", + "realization_id": "39eb8d4e-b023-4ce2-b5fd-8a2d3d1cbb19", + "relative_path": "VMware_ESXi_Dump_Collector", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "39eb8d4e-b023-4ce2-b5fd-8a2d3d1cbb19", + "service_entries": [ + { + "_create_time": 1724279991230, + "_create_user": "system", + "_last_modified_time": 1724279991230, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8000" + ], + "display_name": "VMware-VC-DumpCollector-TCP", + "id": "VMware-VC-DumpCollector-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware_ESXi_Dump_Collector", + "path": "/infra/services/VMware_ESXi_Dump_Collector/service-entries/VMware-VC-DumpCollector-TCP", + "realization_id": "62674278-7001-4a67-aba9-d812a50c08c4", + "relative_path": "VMware-VC-DumpCollector-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "62674278-7001-4a67-aba9-d812a50c08c4" + }, + { + "_create_time": 1724279991240, + "_create_user": "system", + "_last_modified_time": 1724279991240, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "6500" + ], + "display_name": "VMware-VC-DumpSvr", + "id": "VMware-VC-DumpSvr", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware_ESXi_Dump_Collector", + "path": "/infra/services/VMware_ESXi_Dump_Collector/service-entries/VMware-VC-DumpSvr", + "realization_id": "9be24795-aebd-466f-9869-8da43b98e6db", + "relative_path": "VMware-VC-DumpSvr", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "9be24795-aebd-466f-9869-8da43b98e6db" + } + ] + }, + { + "_create_time": 1724279989041, + "_create_user": "system", + "_last_modified_time": 1724279989041, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware VMotion", + "display_name": "VMware VMotion", + "id": "VMware_VMotion", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware_VMotion", + "realization_id": "9e1e22a9-bf16-4d62-9426-4810b84ab977", + "relative_path": "VMware_VMotion", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "9e1e22a9-bf16-4d62-9426-4810b84ab977", + "service_entries": [ + { + "_create_time": 1724279989043, + "_create_user": "system", + "_last_modified_time": 1724279989043, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8000" + ], + "display_name": "VMware VMotion", + "id": "VMware_VMotion", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware_VMotion", + "path": "/infra/services/VMware_VMotion/service-entries/VMware_VMotion", + "realization_id": "8f726121-3dd8-4ea0-b40a-95725a63e59a", + "relative_path": "VMware_VMotion", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8f726121-3dd8-4ea0-b40a-95725a63e59a" + } + ] + }, + { + "_create_time": 1724279988956, + "_create_user": "system", + "_last_modified_time": 1724279988956, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-CIMSLP", + "display_name": "VMware-CIMSLP", + "id": "VMware-CIMSLP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-CIMSLP", + "realization_id": "a41486fb-a330-41c9-aae9-f91baecbe12a", + "relative_path": "VMware-CIMSLP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "a41486fb-a330-41c9-aae9-f91baecbe12a", + "service_entries": [ + { + "_create_time": 1724279988956, + "_create_user": "system", + "_last_modified_time": 1724279988956, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "427" + ], + "display_name": "VMware-CIMSLP", + "id": "VMware-CIMSLP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-CIMSLP", + "path": "/infra/services/VMware-CIMSLP/service-entries/VMware-CIMSLP", + "realization_id": "9519cad9-dd47-422a-a56a-e766eebe4b58", + "relative_path": "VMware-CIMSLP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "9519cad9-dd47-422a-a56a-e766eebe4b58" + } + ] + }, + { + "_create_time": 1724279988887, + "_create_user": "system", + "_last_modified_time": 1724279988887, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-DVS", + "display_name": "VMware-DVS", + "id": "VMware-DVS", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-DVS", + "realization_id": "903cc7f4-c53c-47a5-b6f8-f1047d88a4cc", + "relative_path": "VMware-DVS", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "903cc7f4-c53c-47a5-b6f8-f1047d88a4cc", + "service_entries": [ + { + "_create_time": 1724279988888, + "_create_user": "system", + "_last_modified_time": 1724279988888, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8301", + "8302" + ], + "display_name": "VMware-DVS", + "id": "VMware-DVS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-DVS", + "path": "/infra/services/VMware-DVS/service-entries/VMware-DVS", + "realization_id": "ef0a6d34-7667-4d7f-ba56-219e362f72eb", + "relative_path": "VMware-DVS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "ef0a6d34-7667-4d7f-ba56-219e362f72eb" + } + ] + }, + { + "_create_time": 1724279988856, + "_create_user": "system", + "_last_modified_time": 1724279988856, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-DataRecovery", + "display_name": "VMware-DataRecovery", + "id": "VMware-DataRecovery", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-DataRecovery", + "realization_id": "37d6cc1d-4ceb-4802-8e20-e41556af7b59", + "relative_path": "VMware-DataRecovery", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "37d6cc1d-4ceb-4802-8e20-e41556af7b59", + "service_entries": [ + { + "_create_time": 1724279988856, + "_create_user": "system", + "_last_modified_time": 1724279988856, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "22024" + ], + "display_name": "VMware-DataRecovery", + "id": "VMware-DataRecovery", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-DataRecovery", + "path": "/infra/services/VMware-DataRecovery/service-entries/VMware-DataRecovery", + "realization_id": "4650bd74-22f1-4e76-8220-6d9e3d388f9e", + "relative_path": "VMware-DataRecovery", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "4650bd74-22f1-4e76-8220-6d9e3d388f9e" + } + ] + }, + { + "_create_time": 1724279988981, + "_create_user": "system", + "_last_modified_time": 1724279988981, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-ESXi5.x-TCP", + "display_name": "VMware-ESXi5.x-TCP", + "id": "VMware-ESXi5.x-TCP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-ESXi5.x-TCP", + "realization_id": "06c173a6-4067-4c98-a4db-62969cd59298", + "relative_path": "VMware-ESXi5.x-TCP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "06c173a6-4067-4c98-a4db-62969cd59298", + "service_entries": [ + { + "_create_time": 1724279988981, + "_create_user": "system", + "_last_modified_time": 1724279988981, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "902" + ], + "display_name": "VMware-ESXi5.x-TCP", + "id": "VMware-ESXi5.x-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-ESXi5.x-TCP", + "path": "/infra/services/VMware-ESXi5.x-TCP/service-entries/VMware-ESXi5.x-TCP", + "realization_id": "7e6274bb-cf59-4440-bbe0-050198204126", + "relative_path": "VMware-ESXi5.x-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "7e6274bb-cf59-4440-bbe0-050198204126" + } + ] + }, + { + "_create_time": 1724279989004, + "_create_user": "system", + "_last_modified_time": 1724279989004, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-ESXi5.x-UDP", + "display_name": "VMware-ESXi5.x-UDP", + "id": "VMware-ESXi5.x-UDP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-ESXi5.x-UDP", + "realization_id": "2041549b-3fcd-40cc-94ea-97c2a16a44d3", + "relative_path": "VMware-ESXi5.x-UDP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "2041549b-3fcd-40cc-94ea-97c2a16a44d3", + "service_entries": [ + { + "_create_time": 1724279989004, + "_create_user": "system", + "_last_modified_time": 1724279989004, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "902" + ], + "display_name": "VMware-ESXi5.x-UDP", + "id": "VMware-ESXi5.x-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-ESXi5.x-UDP", + "path": "/infra/services/VMware-ESXi5.x-UDP/service-entries/VMware-ESXi5.x-UDP", + "realization_id": "96c329db-cf4d-4c71-8974-2fb9ca6647c4", + "relative_path": "VMware-ESXi5.x-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "96c329db-cf4d-4c71-8974-2fb9ca6647c4" + } + ] + }, + { + "_create_time": 1724279988980, + "_create_user": "system", + "_last_modified_time": 1724279988980, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-HA-TCP", + "display_name": "VMware-HA-TCP", + "id": "VMware-HA-TCP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-HA-TCP", + "realization_id": "f6b69e5e-6fc4-42d5-9bcc-c3dfd5f3fb56", + "relative_path": "VMware-HA-TCP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "f6b69e5e-6fc4-42d5-9bcc-c3dfd5f3fb56", + "service_entries": [ + { + "_create_time": 1724279988980, + "_create_user": "system", + "_last_modified_time": 1724279988980, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8182" + ], + "display_name": "VMware-HA-TCP", + "id": "VMware-HA-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-HA-TCP", + "path": "/infra/services/VMware-HA-TCP/service-entries/VMware-HA-TCP", + "realization_id": "f1a6fce2-dc4c-4366-87c7-1bfcd3514dbe", + "relative_path": "VMware-HA-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f1a6fce2-dc4c-4366-87c7-1bfcd3514dbe" + } + ] + }, + { + "_create_time": 1724279988989, + "_create_user": "system", + "_last_modified_time": 1724279988989, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-HA-UDP", + "display_name": "VMware-HA-UDP", + "id": "VMware-HA-UDP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-HA-UDP", + "realization_id": "8f48db4d-d57c-4143-9ac3-1490e3a563a1", + "relative_path": "VMware-HA-UDP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "8f48db4d-d57c-4143-9ac3-1490e3a563a1", + "service_entries": [ + { + "_create_time": 1724279988989, + "_create_user": "system", + "_last_modified_time": 1724279988989, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8182" + ], + "display_name": "VMware-HA-UDP", + "id": "VMware-HA-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-HA-UDP", + "path": "/infra/services/VMware-HA-UDP/service-entries/VMware-HA-UDP", + "realization_id": "4973799a-aff2-4b6a-888b-9920c07c98f2", + "relative_path": "VMware-HA-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "4973799a-aff2-4b6a-888b-9920c07c98f2" + } + ] + }, + { + "_create_time": 1724279989113, + "_create_user": "system", + "_last_modified_time": 1724279989113, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-SPS", + "display_name": "VMware-SPS", + "id": "VMware-SPS", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-SPS", + "realization_id": "49d96acc-242c-4df5-99a3-002be7e8e199", + "relative_path": "VMware-SPS", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "49d96acc-242c-4df5-99a3-002be7e8e199", + "service_entries": [ + { + "_create_time": 1724279989114, + "_create_user": "system", + "_last_modified_time": 1724279989114, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "31100", + "31000" + ], + "display_name": "VMware-SPS", + "id": "VMware-SPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-SPS", + "path": "/infra/services/VMware-SPS/service-entries/VMware-SPS", + "realization_id": "514876e2-62d0-4587-b57c-76a5d81c198d", + "relative_path": "VMware-SPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "514876e2-62d0-4587-b57c-76a5d81c198d" + } + ] + }, + { + "_create_time": 1724279989126, + "_create_user": "system", + "_last_modified_time": 1724279989126, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-SRM-H5-UI", + "display_name": "VMware-SRM-H5-UI", + "id": "VMware-SRM-H5-UI", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-SRM-H5-UI", + "realization_id": "88090132-ab73-4552-b8ed-0381a4457e0e", + "relative_path": "VMware-SRM-H5-UI", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "88090132-ab73-4552-b8ed-0381a4457e0e", + "service_entries": [ + { + "_create_time": 1724279989126, + "_create_user": "system", + "_last_modified_time": 1724279989126, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "VMware-SRM-H5-UI", + "id": "VMware-SRM-H5-UI", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-SRM-H5-UI", + "path": "/infra/services/VMware-SRM-H5-UI/service-entries/VMware-SRM-H5-UI", + "realization_id": "67d6951f-d218-4b4b-a162-14828d233230", + "relative_path": "VMware-SRM-H5-UI", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "67d6951f-d218-4b4b-a162-14828d233230" + } + ] + }, + { + "_create_time": 1724279988851, + "_create_user": "system", + "_last_modified_time": 1724279988851, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-SRM-HTTP", + "display_name": "VMware-SRM-HTTP", + "id": "VMware-SRM-HTTP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-SRM-HTTP", + "realization_id": "01907188-f261-4c3f-b34b-f11be2aa65b6", + "relative_path": "VMware-SRM-HTTP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "01907188-f261-4c3f-b34b-f11be2aa65b6", + "service_entries": [ + { + "_create_time": 1724279988852, + "_create_user": "system", + "_last_modified_time": 1724279988852, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9008" + ], + "display_name": "VMware-SRM-HTTP", + "id": "VMware-SRM-HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-SRM-HTTP", + "path": "/infra/services/VMware-SRM-HTTP/service-entries/VMware-SRM-HTTP", + "realization_id": "0163f9dd-9067-4f7b-9faf-e799b65d86ab", + "relative_path": "VMware-SRM-HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "0163f9dd-9067-4f7b-9faf-e799b65d86ab" + } + ] + }, + { + "_create_time": 1724279988859, + "_create_user": "system", + "_last_modified_time": 1724279988859, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-SRM-Replication", + "display_name": "VMware-SRM-Replication", + "id": "VMware-SRM-Replication", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-SRM-Replication", + "realization_id": "37462337-edc6-4cb2-84ee-ce5c2c3c891c", + "relative_path": "VMware-SRM-Replication", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "37462337-edc6-4cb2-84ee-ce5c2c3c891c", + "service_entries": [ + { + "_create_time": 1724279988860, + "_create_user": "system", + "_last_modified_time": 1724279988860, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8123" + ], + "display_name": "VMware-SRM-Replication", + "id": "VMware-SRM-Replication", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-SRM-Replication", + "path": "/infra/services/VMware-SRM-Replication/service-entries/VMware-SRM-Replication", + "realization_id": "673df856-9e54-409e-8291-0b2c1151e690", + "relative_path": "VMware-SRM-Replication", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "673df856-9e54-409e-8291-0b2c1151e690" + } + ] + }, + { + "_create_time": 1724279989055, + "_create_user": "system", + "_last_modified_time": 1724279989055, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-SRM-SOAP", + "display_name": "VMware-SRM-SOAP", + "id": "VMware-SRM-SOAP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-SRM-SOAP", + "realization_id": "460eeca7-031f-42ff-84e0-58387137255e", + "relative_path": "VMware-SRM-SOAP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "460eeca7-031f-42ff-84e0-58387137255e", + "service_entries": [ + { + "_create_time": 1724279989055, + "_create_user": "system", + "_last_modified_time": 1724279989055, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8043" + ], + "display_name": "VMware-SRM-SOAP", + "id": "VMware-SRM-SOAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-SRM-SOAP", + "path": "/infra/services/VMware-SRM-SOAP/service-entries/VMware-SRM-SOAP", + "realization_id": "8850bc2d-e146-4b6e-850b-15f65940d30c", + "relative_path": "VMware-SRM-SOAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8850bc2d-e146-4b6e-850b-15f65940d30c" + } + ] + }, + { + "_create_time": 1724279988929, + "_create_user": "system", + "_last_modified_time": 1724279988929, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-SRM-Server-Management", + "display_name": "VMware-SRM-Server-Management", + "id": "VMware-SRM-Server-Management", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-SRM-Server-Management", + "realization_id": "008b9412-7a24-4c37-b5bd-b6795d21e7d3", + "relative_path": "VMware-SRM-Server-Management", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "008b9412-7a24-4c37-b5bd-b6795d21e7d3", + "service_entries": [ + { + "_create_time": 1724279988929, + "_create_user": "system", + "_last_modified_time": 1724279988929, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9086" + ], + "display_name": "VMware-SRM-Server-Management", + "id": "VMware-SRM-Server-Management", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-SRM-Server-Management", + "path": "/infra/services/VMware-SRM-Server-Management/service-entries/VMware-SRM-Server-Management", + "realization_id": "6acd0fa2-0ace-41af-9d5f-733f360fc8e1", + "relative_path": "VMware-SRM-Server-Management", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "6acd0fa2-0ace-41af-9d5f-733f360fc8e1" + } + ] + }, + { + "_create_time": 1724279988951, + "_create_user": "system", + "_last_modified_time": 1724279988951, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-SRM-UI", + "display_name": "VMware-SRM-UI", + "id": "VMware-SRM-UI", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-SRM-UI", + "realization_id": "008b8412-7a04-4c37-b5bc-b3495d21e7d3", + "relative_path": "VMware-SRM-UI", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "008b8412-7a04-4c37-b5bc-b3495d21e7d3", + "service_entries": [ + { + "_create_time": 1724279988951, + "_create_user": "system", + "_last_modified_time": 1724279988951, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9085" + ], + "display_name": "VMware-SRM-UI", + "id": "VMware-SRM-UI", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-SRM-UI", + "path": "/infra/services/VMware-SRM-UI/service-entries/VMware-SRM-UI", + "realization_id": "731e6d18-1196-489a-8837-ffaaf1f426fb", + "relative_path": "VMware-SRM-UI", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "731e6d18-1196-489a-8837-ffaaf1f426fb" + } + ] + }, + { + "_create_time": 1724279989050, + "_create_user": "system", + "_last_modified_time": 1724279989050, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-SRM-VAMI", + "display_name": "VMware-SRM-VAMI", + "id": "VMware-SRM-VAMI", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-SRM-VAMI", + "realization_id": "b159f345-6db9-4579-8c34-3123ce1b151d", + "relative_path": "VMware-SRM-VAMI", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "b159f345-6db9-4579-8c34-3123ce1b151d", + "service_entries": [ + { + "_create_time": 1724279989050, + "_create_user": "system", + "_last_modified_time": 1724279989050, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8080" + ], + "display_name": "VMware-SRM-VAMI", + "id": "VMware-SRM-VAMI", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-SRM-VAMI", + "path": "/infra/services/VMware-SRM-VAMI/service-entries/VMware-SRM-VAMI", + "realization_id": "121ecd21-07d1-4bc7-a2b2-ffb7ce078014", + "relative_path": "VMware-SRM-VAMI", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "121ecd21-07d1-4bc7-a2b2-ffb7ce078014" + } + ] + }, + { + "_create_time": 1724279989101, + "_create_user": "system", + "_last_modified_time": 1724279989101, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-SRM-vCentreServer", + "display_name": "VMware-SRM-vCentreServer", + "id": "VMware-SRM-vCentreServer", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-SRM-vCentreServer", + "realization_id": "4e5c22d9-f47f-4940-b142-9cdbae13a8a3", + "relative_path": "VMware-SRM-vCentreServer", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "4e5c22d9-f47f-4940-b142-9cdbae13a8a3", + "service_entries": [ + { + "_create_time": 1724279989101, + "_create_user": "system", + "_last_modified_time": 1724279989101, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8096" + ], + "display_name": "VMware-SRM-vCentreServer", + "id": "VMware-SRM-vCentreServer", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-SRM-vCentreServer", + "path": "/infra/services/VMware-SRM-vCentreServer/service-entries/VMware-SRM-vCentreServer", + "realization_id": "dd6442f9-84e6-4a34-b3da-1f477214a71a", + "relative_path": "VMware-SRM-vCentreServer", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "dd6442f9-84e6-4a34-b3da-1f477214a71a" + } + ] + }, + { + "_create_time": 1724279988921, + "_create_user": "system", + "_last_modified_time": 1724279988921, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-SRM-vSphereReplication", + "display_name": "VMware-SRM-vSphereReplication", + "id": "VMware-SRM-vSphereReplication", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-SRM-vSphereReplication", + "realization_id": "6d5d26c9-069d-4a36-8e40-828c167be003", + "relative_path": "VMware-SRM-vSphereReplication", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "6d5d26c9-069d-4a36-8e40-828c167be003", + "service_entries": [ + { + "_create_time": 1724279988921, + "_create_user": "system", + "_last_modified_time": 1724279988921, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "31031", + "44046" + ], + "display_name": "VMware-SRM-vSphereReplication", + "id": "VMware-SRM-vSphereReplication", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-SRM-vSphereReplication", + "path": "/infra/services/VMware-SRM-vSphereReplication/service-entries/VMware-SRM-vSphereReplication", + "realization_id": "42b7da77-b2e1-4ead-99fe-14e1d6b2c257", + "relative_path": "VMware-SRM-vSphereReplication", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "42b7da77-b2e1-4ead-99fe-14e1d6b2c257" + } + ] + }, + { + "_create_time": 1724279988898, + "_create_user": "system", + "_last_modified_time": 1724279988898, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-SRMClient-Server", + "display_name": "VMware-SRMClient-Server", + "id": "VMware-SRMClient-Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-SRMClient-Server", + "realization_id": "44b65dcb-de36-4582-90dc-ee574068049d", + "relative_path": "VMware-SRMClient-Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "44b65dcb-de36-4582-90dc-ee574068049d", + "service_entries": [ + { + "_create_time": 1724279988899, + "_create_user": "system", + "_last_modified_time": 1724279988899, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8095" + ], + "display_name": "VMware-SRMClient-Server", + "id": "VMware-SRMClient-Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-SRMClient-Server", + "path": "/infra/services/VMware-SRMClient-Server/service-entries/VMware-SRMClient-Server", + "realization_id": "fd0e8cad-ed32-49b3-9ea6-283fc2b7df7b", + "relative_path": "VMware-SRMClient-Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "fd0e8cad-ed32-49b3-9ea6-283fc2b7df7b" + } + ] + }, + { + "_create_time": 1724279988983, + "_create_user": "system", + "_last_modified_time": 1724279988983, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-UpdateMgr", + "display_name": "VMware-UpdateMgr", + "id": "VMware-UpdateMgr", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-UpdateMgr", + "realization_id": "df99235a-cb42-4f76-8bd6-d1c4554270f1", + "relative_path": "VMware-UpdateMgr", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "df99235a-cb42-4f76-8bd6-d1c4554270f1", + "service_entries": [ + { + "_create_time": 1724279988984, + "_create_user": "system", + "_last_modified_time": 1724279988984, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9000-9100" + ], + "display_name": "VMware-UpdateMgr", + "id": "VMware-UpdateMgr", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-UpdateMgr", + "path": "/infra/services/VMware-UpdateMgr/service-entries/VMware-UpdateMgr", + "realization_id": "864d7423-3cff-4894-8491-a97d93936b54", + "relative_path": "VMware-UpdateMgr", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "864d7423-3cff-4894-8491-a97d93936b54" + } + ] + }, + { + "_create_time": 1724279989185, + "_create_user": "system", + "_last_modified_time": 1724279989185, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-UpdateMgr-Patching", + "display_name": "VMware-UpdateMgr-Patching", + "id": "VMware-UpdateMgr-Patching", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-UpdateMgr-Patching", + "realization_id": "cba7926b-14e3-41dd-8355-6988ae60c54e", + "relative_path": "VMware-UpdateMgr-Patching", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "cba7926b-14e3-41dd-8355-6988ae60c54e", + "service_entries": [ + { + "_create_time": 1724279989185, + "_create_user": "system", + "_last_modified_time": 1724279989185, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "735" + ], + "display_name": "VMware-UpdateMgr-Patching", + "id": "VMware-UpdateMgr-Patching", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-UpdateMgr-Patching", + "path": "/infra/services/VMware-UpdateMgr-Patching/service-entries/VMware-UpdateMgr-Patching", + "realization_id": "8aab9aba-55c3-4621-a8e1-26518cd39f24", + "relative_path": "VMware-UpdateMgr-Patching", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8aab9aba-55c3-4621-a8e1-26518cd39f24" + } + ] + }, + { + "_create_time": 1724279988943, + "_create_user": "system", + "_last_modified_time": 1724279988943, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-UpdateMgr-SOAP", + "display_name": "VMware-UpdateMgr-SOAP", + "id": "VMware-UpdateMgr-SOAP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-UpdateMgr-SOAP", + "realization_id": "5ab3133b-d186-450e-b5a9-afef9e77dd16", + "relative_path": "VMware-UpdateMgr-SOAP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "5ab3133b-d186-450e-b5a9-afef9e77dd16", + "service_entries": [ + { + "_create_time": 1724279988943, + "_create_user": "system", + "_last_modified_time": 1724279988943, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8084" + ], + "display_name": "VMware-UpdateMgr-SOAP", + "id": "VMware-UpdateMgr-SOAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-UpdateMgr-SOAP", + "path": "/infra/services/VMware-UpdateMgr-SOAP/service-entries/VMware-UpdateMgr-SOAP", + "realization_id": "a8ea634e-a20c-44f4-97e3-1ae803c76b27", + "relative_path": "VMware-UpdateMgr-SOAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a8ea634e-a20c-44f4-97e3-1ae803c76b27" + } + ] + }, + { + "_create_time": 1724279989051, + "_create_user": "system", + "_last_modified_time": 1724279989051, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-UpdateMgr-VUM", + "display_name": "VMware-UpdateMgr-VUM", + "id": "VMware-UpdateMgr-VUM", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-UpdateMgr-VUM", + "realization_id": "56a9bbf3-bc68-4683-ab31-2e84f1591a52", + "relative_path": "VMware-UpdateMgr-VUM", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "56a9bbf3-bc68-4683-ab31-2e84f1591a52", + "service_entries": [ + { + "_create_time": 1724279989051, + "_create_user": "system", + "_last_modified_time": 1724279989051, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9084" + ], + "display_name": "VMware-UpdateMgr-VUM", + "id": "VMware-UpdateMgr-VUM", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-UpdateMgr-VUM", + "path": "/infra/services/VMware-UpdateMgr-VUM/service-entries/VMware-UpdateMgr-VUM", + "realization_id": "8212498d-b772-41ea-9b14-c4b1f30e7484", + "relative_path": "VMware-UpdateMgr-VUM", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8212498d-b772-41ea-9b14-c4b1f30e7484" + } + ] + }, + { + "_create_time": 1724279989160, + "_create_user": "system", + "_last_modified_time": 1724279989160, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-VC-DPM", + "display_name": "VMware-VC-DPM", + "id": "VMware-VC-DPM", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-VC-DPM", + "realization_id": "7331cacc-a532-4d2e-a30b-0177255d531b", + "relative_path": "VMware-VC-DPM", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "7331cacc-a532-4d2e-a30b-0177255d531b", + "service_entries": [ + { + "_create_time": 1724279989160, + "_create_user": "system", + "_last_modified_time": 1724279989160, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "623" + ], + "display_name": "VMware-VC-DPM", + "id": "VMware-VC-DPM", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-VC-DPM", + "path": "/infra/services/VMware-VC-DPM/service-entries/VMware-VC-DPM", + "realization_id": "6dd44bab-4fc7-45fb-a52c-511c4184b191", + "relative_path": "VMware-VC-DPM", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "6dd44bab-4fc7-45fb-a52c-511c4184b191" + } + ] + }, + { + "_create_time": 1724279989010, + "_create_user": "system", + "_last_modified_time": 1724279989010, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-VC-DumpCollector-TCP", + "display_name": "VMware-VC-DumpCollector-TCP", + "id": "VMware-VC-DumpCollector-TCP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-VC-DumpCollector-TCP", + "realization_id": "9253b2b2-d3ff-44fa-a4fb-974e1e5269a3", + "relative_path": "VMware-VC-DumpCollector-TCP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "9253b2b2-d3ff-44fa-a4fb-974e1e5269a3", + "service_entries": [ + { + "_create_time": 1724279989010, + "_create_user": "system", + "_last_modified_time": 1724279989010, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8000" + ], + "display_name": "VMware-VC-DumpCollector-TCP", + "id": "VMware-VC-DumpCollector-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-VC-DumpCollector-TCP", + "path": "/infra/services/VMware-VC-DumpCollector-TCP/service-entries/VMware-VC-DumpCollector-TCP", + "realization_id": "62674278-7001-4a67-aba9-d812a50c08c4", + "relative_path": "VMware-VC-DumpCollector-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "62674278-7001-4a67-aba9-d812a50c08c4" + } + ] + }, + { + "_create_time": 1724279989104, + "_create_user": "system", + "_last_modified_time": 1724279989104, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-VC-DumpSvr", + "display_name": "VMware-VC-DumpSvr", + "id": "VMware-VC-DumpSvr", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-VC-DumpSvr", + "realization_id": "df24e4b0-608e-419b-bd86-025ded58a6ee", + "relative_path": "VMware-VC-DumpSvr", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "df24e4b0-608e-419b-bd86-025ded58a6ee", + "service_entries": [ + { + "_create_time": 1724279989105, + "_create_user": "system", + "_last_modified_time": 1724279989105, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "6500" + ], + "display_name": "VMware-VC-DumpSvr", + "id": "VMware-VC-DumpSvr", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-VC-DumpSvr", + "path": "/infra/services/VMware-VC-DumpSvr/service-entries/VMware-VC-DumpSvr", + "realization_id": "9be24795-aebd-466f-9869-8da43b98e6db", + "relative_path": "VMware-VC-DumpSvr", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "9be24795-aebd-466f-9869-8da43b98e6db" + } + ] + }, + { + "_create_time": 1724279989002, + "_create_user": "system", + "_last_modified_time": 1724279989002, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-VC-ESXi", + "display_name": "VMware-VC-ESXi", + "id": "VMware-VC-ESXi", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-VC-ESXi", + "realization_id": "47c40fa4-db87-4541-8dbb-cfa6faf15b48", + "relative_path": "VMware-VC-ESXi", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "47c40fa4-db87-4541-8dbb-cfa6faf15b48", + "service_entries": [ + { + "_create_time": 1724279989002, + "_create_user": "system", + "_last_modified_time": 1724279989002, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "51915" + ], + "display_name": "VMware-VC-ESXi", + "id": "VMware-VC-ESXi", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-VC-ESXi", + "path": "/infra/services/VMware-VC-ESXi/service-entries/VMware-VC-ESXi", + "realization_id": "0790c764-e919-4293-8fde-e01a7f3e246e", + "relative_path": "VMware-VC-ESXi", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "0790c764-e919-4293-8fde-e01a7f3e246e" + } + ] + }, + { + "_create_time": 1724279989199, + "_create_user": "system", + "_last_modified_time": 1724279989199, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-VC-RemoteConsole", + "display_name": "VMware-VC-RemoteConsole", + "id": "VMware-VC-RemoteConsole", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-VC-RemoteConsole", + "realization_id": "33b0c1c4-b4f9-453e-9127-4a922a456677", + "relative_path": "VMware-VC-RemoteConsole", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "33b0c1c4-b4f9-453e-9127-4a922a456677", + "service_entries": [ + { + "_create_time": 1724279989199, + "_create_user": "system", + "_last_modified_time": 1724279989199, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "903" + ], + "display_name": "VMware-VC-RemoteConsole", + "id": "VMware-VC-RemoteConsole", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-VC-RemoteConsole", + "path": "/infra/services/VMware-VC-RemoteConsole/service-entries/VMware-VC-RemoteConsole", + "realization_id": "8e4256f7-16f7-4616-bb26-907d7b92c44f", + "relative_path": "VMware-VC-RemoteConsole", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8e4256f7-16f7-4616-bb26-907d7b92c44f" + } + ] + }, + { + "_create_time": 1724279988923, + "_create_user": "system", + "_last_modified_time": 1724279988923, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-VC-Syslog", + "display_name": "VMware-VC-Syslog", + "id": "VMware-VC-Syslog", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-VC-Syslog", + "realization_id": "a9f6d09e-4d32-4d08-ba63-34f1fed319f2", + "relative_path": "VMware-VC-Syslog", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "a9f6d09e-4d32-4d08-ba63-34f1fed319f2", + "service_entries": [ + { + "_create_time": 1724279988923, + "_create_user": "system", + "_last_modified_time": 1724279988923, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8001" + ], + "display_name": "VMware-VC-Syslog", + "id": "VMware-VC-Syslog", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-VC-Syslog", + "path": "/infra/services/VMware-VC-Syslog/service-entries/VMware-VC-Syslog", + "realization_id": "75ca2506-e917-480c-9470-2ad7ed7f2a97", + "relative_path": "VMware-VC-Syslog", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "75ca2506-e917-480c-9470-2ad7ed7f2a97" + } + ] + }, + { + "_create_time": 1724279988926, + "_create_user": "system", + "_last_modified_time": 1724279988926, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-VCO-Command", + "display_name": "VMware-VCO-Command", + "id": "VMware-VCO-Command", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-VCO-Command", + "realization_id": "815489eb-02dd-40f6-8cd0-3538d358da2d", + "relative_path": "VMware-VCO-Command", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "815489eb-02dd-40f6-8cd0-3538d358da2d", + "service_entries": [ + { + "_create_time": 1724279988927, + "_create_user": "system", + "_last_modified_time": 1724279988927, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8240" + ], + "display_name": "VMware-VCO-Command", + "id": "VMware-VCO-Command", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-VCO-Command", + "path": "/infra/services/VMware-VCO-Command/service-entries/VMware-VCO-Command", + "realization_id": "5abf2775-2d36-4eb3-b86c-473e79af34a2", + "relative_path": "VMware-VCO-Command", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5abf2775-2d36-4eb3-b86c-473e79af34a2" + } + ] + }, + { + "_create_time": 1724279989112, + "_create_user": "system", + "_last_modified_time": 1724279989112, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-VCO-Data", + "display_name": "VMware-VCO-Data", + "id": "VMware-VCO-Data", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-VCO-Data", + "realization_id": "73537635-366e-4e08-abbe-7d669dac8159", + "relative_path": "VMware-VCO-Data", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "73537635-366e-4e08-abbe-7d669dac8159", + "service_entries": [ + { + "_create_time": 1724279989112, + "_create_user": "system", + "_last_modified_time": 1724279989112, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8244" + ], + "display_name": "VMware-VCO-Data", + "id": "VMware-VCO-Data", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-VCO-Data", + "path": "/infra/services/VMware-VCO-Data/service-entries/VMware-VCO-Data", + "realization_id": "739dc889-5552-4b4e-b894-6b8a61d3f4e5", + "relative_path": "VMware-VCO-Data", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "739dc889-5552-4b4e-b894-6b8a61d3f4e5" + } + ] + }, + { + "_create_time": 1724279988858, + "_create_user": "system", + "_last_modified_time": 1724279988858, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-VCO-Messaging", + "display_name": "VMware-VCO-Messaging", + "id": "VMware-VCO-Messaging", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-VCO-Messaging", + "realization_id": "af6373e5-a61b-4ce2-89ae-48d23423df63", + "relative_path": "VMware-VCO-Messaging", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "af6373e5-a61b-4ce2-89ae-48d23423df63", + "service_entries": [ + { + "_create_time": 1724279988858, + "_create_user": "system", + "_last_modified_time": 1724279988858, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8250" + ], + "display_name": "VMware-VCO-Messaging", + "id": "VMware-VCO-Messaging", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-VCO-Messaging", + "path": "/infra/services/VMware-VCO-Messaging/service-entries/VMware-VCO-Messaging", + "realization_id": "befaf96a-a58e-469e-adff-a6f39a028c46", + "relative_path": "VMware-VCO-Messaging", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "befaf96a-a58e-469e-adff-a6f39a028c46" + } + ] + }, + { + "_create_time": 1724279988937, + "_create_user": "system", + "_last_modified_time": 1724279988937, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-VCO-VCO-HTTPS", + "display_name": "VMware-VCO-VCO-HTTPS", + "id": "VMware-VCO-VCO-HTTPS", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-VCO-VCO-HTTPS", + "realization_id": "73406083-3cb9-41c6-9b9a-b9013c004763", + "relative_path": "VMware-VCO-VCO-HTTPS", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "73406083-3cb9-41c6-9b9a-b9013c004763", + "service_entries": [ + { + "_create_time": 1724279988937, + "_create_user": "system", + "_last_modified_time": 1724279988937, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8283" + ], + "display_name": "VMware-VCO-VCO-HTTPS", + "id": "VMware-VCO-VCO-HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-VCO-VCO-HTTPS", + "path": "/infra/services/VMware-VCO-VCO-HTTPS/service-entries/VMware-VCO-VCO-HTTPS", + "realization_id": "4e84fc41-6e3d-41e6-b8e0-bf241cee20c4", + "relative_path": "VMware-VCO-VCO-HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "4e84fc41-6e3d-41e6-b8e0-bf241cee20c4" + } + ] + }, + { + "_create_time": 1724279988823, + "_create_user": "system", + "_last_modified_time": 1724279988823, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-VCO-WebHTTP", + "display_name": "VMware-VCO-WebHTTP", + "id": "VMware-VCO-WebHTTP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-VCO-WebHTTP", + "realization_id": "a8a97c59-cad3-411f-8e1f-c7c7b1d849ce", + "relative_path": "VMware-VCO-WebHTTP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "a8a97c59-cad3-411f-8e1f-c7c7b1d849ce", + "service_entries": [ + { + "_create_time": 1724279988826, + "_create_user": "system", + "_last_modified_time": 1724279988826, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8280" + ], + "display_name": "VMware-VCO-WebHTTP", + "id": "VMware-VCO-WebHTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-VCO-WebHTTP", + "path": "/infra/services/VMware-VCO-WebHTTP/service-entries/VMware-VCO-WebHTTP", + "realization_id": "4554aaad-c994-4851-a7fd-08d52537155c", + "relative_path": "VMware-VCO-WebHTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "4554aaad-c994-4851-a7fd-08d52537155c" + } + ] + }, + { + "_create_time": 1724279988893, + "_create_user": "system", + "_last_modified_time": 1724279988893, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-VCO-WebHTTPS", + "display_name": "VMware-VCO-WebHTTPS", + "id": "VMware-VCO-WebHTTPS", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-VCO-WebHTTPS", + "realization_id": "8119dc66-fdbb-4572-bca5-71ef41063b83", + "relative_path": "VMware-VCO-WebHTTPS", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "8119dc66-fdbb-4572-bca5-71ef41063b83", + "service_entries": [ + { + "_create_time": 1724279988894, + "_create_user": "system", + "_last_modified_time": 1724279988894, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8281" + ], + "display_name": "VMware-VCO-WebHTTPS", + "id": "VMware-VCO-WebHTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-VCO-WebHTTPS", + "path": "/infra/services/VMware-VCO-WebHTTPS/service-entries/VMware-VCO-WebHTTPS", + "realization_id": "19653e0a-b3ba-4699-9638-8ca143adb3fe", + "relative_path": "VMware-VCO-WebHTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "19653e0a-b3ba-4699-9638-8ca143adb3fe" + } + ] + }, + { + "_create_time": 1724279988901, + "_create_user": "system", + "_last_modified_time": 1724279988901, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-VCOMgr-UI", + "display_name": "VMware-VCOMgr-UI", + "id": "VMware-VCOMgr-UI", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-VCOMgr-UI", + "realization_id": "0ecd31d8-2ae1-4eb0-95a5-9937682d9d64", + "relative_path": "VMware-VCOMgr-UI", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "0ecd31d8-2ae1-4eb0-95a5-9937682d9d64", + "service_entries": [ + { + "_create_time": 1724279988901, + "_create_user": "system", + "_last_modified_time": 1724279988901, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1194" + ], + "display_name": "VMware-VCOMgr-UI", + "id": "VMware-VCOMgr-UI", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-VCOMgr-UI", + "path": "/infra/services/VMware-VCOMgr-UI/service-entries/VMware-VCOMgr-UI", + "realization_id": "dc0fa906-ac36-415c-8621-db995dfe059a", + "relative_path": "VMware-VCOMgr-UI", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "dc0fa906-ac36-415c-8621-db995dfe059a" + } + ] + }, + { + "_create_time": 1724279989007, + "_create_user": "system", + "_last_modified_time": 1724279989007, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-VCOStdAln-Heartbeat", + "display_name": "VMware-VCOStdAln-Heartbeat", + "id": "VMware-VCOStdAln-Heartbeat", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-VCOStdAln-Heartbeat", + "realization_id": "5132fbe5-06ba-4ad9-89b3-ed8580b5fa72", + "relative_path": "VMware-VCOStdAln-Heartbeat", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "5132fbe5-06ba-4ad9-89b3-ed8580b5fa72", + "service_entries": [ + { + "_create_time": 1724279989007, + "_create_user": "system", + "_last_modified_time": 1724279989007, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1199" + ], + "display_name": "VMware-VCOStdAln-Heartbeat", + "id": "VMware-VCOStdAln-Heartbeat", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-VCOStdAln-Heartbeat", + "path": "/infra/services/VMware-VCOStdAln-Heartbeat/service-entries/VMware-VCOStdAln-Heartbeat", + "realization_id": "82451bc4-319d-47c7-b38f-ea13c28580a3", + "relative_path": "VMware-VCOStdAln-Heartbeat", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "82451bc4-319d-47c7-b38f-ea13c28580a3" + } + ] + }, + { + "_create_time": 1724279989109, + "_create_user": "system", + "_last_modified_time": 1724279989109, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-VDM2.x-Ephemeral", + "display_name": "VMware-VDM2.x-Ephemeral", + "id": "VMware-VDM2.x-Ephemeral", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-VDM2.x-Ephemeral", + "realization_id": "0d6f0167-7cdd-4b1e-b698-9e1cceb61e78", + "relative_path": "VMware-VDM2.x-Ephemeral", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "0d6f0167-7cdd-4b1e-b698-9e1cceb61e78", + "service_entries": [ + { + "_create_time": 1724279989109, + "_create_user": "system", + "_last_modified_time": 1724279989109, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1024-65535" + ], + "display_name": "VMware-VDM2.x-Ephemeral", + "id": "VMware-VDM2.x-Ephemeral", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-VDM2.x-Ephemeral", + "path": "/infra/services/VMware-VDM2.x-Ephemeral/service-entries/VMware-VDM2.x-Ephemeral", + "realization_id": "8ebd5f35-8b2e-447b-ac50-e7e47c5cd492", + "relative_path": "VMware-VDM2.x-Ephemeral", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8ebd5f35-8b2e-447b-ac50-e7e47c5cd492" + } + ] + }, + { + "_create_time": 1724279989195, + "_create_user": "system", + "_last_modified_time": 1724279989195, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-VDM2.x-RGS", + "display_name": "VMware-VDM2.x-RGS", + "id": "VMware-VDM2.x-RGS", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-VDM2.x-RGS", + "realization_id": "396506ee-929c-471f-a8fd-0065a22aa8e9", + "relative_path": "VMware-VDM2.x-RGS", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "396506ee-929c-471f-a8fd-0065a22aa8e9", + "service_entries": [ + { + "_create_time": 1724279989195, + "_create_user": "system", + "_last_modified_time": 1724279989195, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "42966" + ], + "display_name": "VMware-VDM2.x-RGS", + "id": "VMware-VDM2.x-RGS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-VDM2.x-RGS", + "path": "/infra/services/VMware-VDM2.x-RGS/service-entries/VMware-VDM2.x-RGS", + "realization_id": "5c64529f-acf1-4d69-82a7-4e2da63e289c", + "relative_path": "VMware-VDM2.x-RGS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5c64529f-acf1-4d69-82a7-4e2da63e289c" + } + ] + }, + { + "_create_time": 1724279989088, + "_create_user": "system", + "_last_modified_time": 1724279989088, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-VR-Replication-Traffic", + "display_name": "VMware-VR-Replication-Traffic", + "id": "VMware-VR-Replication-Traffic", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-VR-Replication-Traffic", + "realization_id": "a434211b-c085-4d7e-9e95-92cd44ba05e3", + "relative_path": "VMware-VR-Replication-Traffic", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "a434211b-c085-4d7e-9e95-92cd44ba05e3", + "service_entries": [ + { + "_create_time": 1724279989088, + "_create_user": "system", + "_last_modified_time": 1724279989088, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "31031", + "44046" + ], + "display_name": "VMware-VR-Replication-Traffic", + "id": "VMware-VR-Replication-Traffic", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-VR-Replication-Traffic", + "path": "/infra/services/VMware-VR-Replication-Traffic/service-entries/VMware-VR-Replication-Traffic", + "realization_id": "22a3e2d2-5aec-4aa1-b46d-c051b12736cd", + "relative_path": "VMware-VR-Replication-Traffic", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "22a3e2d2-5aec-4aa1-b46d-c051b12736cd" + } + ] + }, + { + "_create_time": 1724279989187, + "_create_user": "system", + "_last_modified_time": 1724279989187, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-VR-Server-Management-Traffic", + "display_name": "VMware-VR-Server-Management-Traffic", + "id": "VMware-VR-Server-Management-Traffic", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-VR-Server-Management-Traffic", + "realization_id": "060eecb7-032f-42ff-84e0-58387137255e", + "relative_path": "VMware-VR-Server-Management-Traffic", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "060eecb7-032f-42ff-84e0-58387137255e", + "service_entries": [ + { + "_create_time": 1724279989187, + "_create_user": "system", + "_last_modified_time": 1724279989187, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8043" + ], + "display_name": "VMware-VR-Server-Management-Traffic", + "id": "VMware-VR-Server-Management-Traffic", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-VR-Server-Management-Traffic", + "path": "/infra/services/VMware-VR-Server-Management-Traffic/service-entries/VMware-VR-Server-Management-Traffic", + "realization_id": "87655f2e-6c5d-4ec2-aa82-a35a8b9e4e55", + "relative_path": "VMware-VR-Server-Management-Traffic", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "87655f2e-6c5d-4ec2-aa82-a35a8b9e4e55" + } + ] + }, + { + "_create_time": 1724279989030, + "_create_user": "system", + "_last_modified_time": 1724279989030, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-View-PCoIP", + "display_name": "VMware-View-PCoIP", + "id": "VMware-View-PCoIP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-View-PCoIP", + "realization_id": "d04a44bb-1c1b-4664-a047-418ba358cef2", + "relative_path": "VMware-View-PCoIP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "d04a44bb-1c1b-4664-a047-418ba358cef2", + "service_entries": [ + { + "_create_time": 1724279989030, + "_create_user": "system", + "_last_modified_time": 1724279989030, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4172" + ], + "display_name": "VMware-View-PCoIP", + "id": "VMware-View-PCoIP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-View-PCoIP", + "path": "/infra/services/VMware-View-PCoIP/service-entries/VMware-View-PCoIP", + "realization_id": "80e048e4-f961-4486-aa58-2776c02cae85", + "relative_path": "VMware-View-PCoIP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "80e048e4-f961-4486-aa58-2776c02cae85" + } + ] + }, + { + "_create_time": 1724279988956, + "_create_user": "system", + "_last_modified_time": 1724279988956, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-View5.x-JMS", + "display_name": "VMware-View5.x-JMS", + "id": "VMware-View5.x-JMS", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-View5.x-JMS", + "realization_id": "83f4b5d1-a7b5-4f7a-ae11-b0e7bf007f3c", + "relative_path": "VMware-View5.x-JMS", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "83f4b5d1-a7b5-4f7a-ae11-b0e7bf007f3c", + "service_entries": [ + { + "_create_time": 1724279988957, + "_create_user": "system", + "_last_modified_time": 1724279988957, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4001" + ], + "display_name": "VMware-View5.x-JMS", + "id": "VMware-View5.x-JMS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-View5.x-JMS", + "path": "/infra/services/VMware-View5.x-JMS/service-entries/VMware-View5.x-JMS", + "realization_id": "3df997aa-5182-4163-8265-814625cf15f2", + "relative_path": "VMware-View5.x-JMS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3df997aa-5182-4163-8265-814625cf15f2" + } + ] + }, + { + "_create_time": 1724279988927, + "_create_user": "system", + "_last_modified_time": 1724279988927, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-View5.x-PCoIP-UDP", + "display_name": "VMware-View5.x-PCoIP-UDP", + "id": "VMware-View5.x-PCoIP-UDP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-View5.x-PCoIP-UDP", + "realization_id": "043fc217-36dc-4789-af16-091bf3023589", + "relative_path": "VMware-View5.x-PCoIP-UDP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "043fc217-36dc-4789-af16-091bf3023589", + "service_entries": [ + { + "_create_time": 1724279988927, + "_create_user": "system", + "_last_modified_time": 1724279988927, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4172" + ], + "display_name": "VMware-View5.x-PCoIP-UDP", + "id": "VMware-View5.x-PCoIP-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-View5.x-PCoIP-UDP", + "path": "/infra/services/VMware-View5.x-PCoIP-UDP/service-entries/VMware-View5.x-PCoIP-UDP", + "realization_id": "ff27b73e-cbd5-45ea-a522-dc0fe8d55438", + "relative_path": "VMware-View5.x-PCoIP-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "ff27b73e-cbd5-45ea-a522-dc0fe8d55438" + } + ] + }, + { + "_create_time": 1724279989181, + "_create_user": "system", + "_last_modified_time": 1724279989181, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "VMware-iSCSI-Server", + "display_name": "VMware-iSCSI-Server", + "id": "VMware-iSCSI-Server", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/VMware-iSCSI-Server", + "realization_id": "dd92110b-ee12-43cc-a8dc-d95673be0cfb", + "relative_path": "VMware-iSCSI-Server", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "dd92110b-ee12-43cc-a8dc-d95673be0cfb", + "service_entries": [ + { + "_create_time": 1724279989182, + "_create_user": "system", + "_last_modified_time": 1724279989182, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3260" + ], + "display_name": "VMware-iSCSI-Server", + "id": "VMware-iSCSI-Server", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/VMware-iSCSI-Server", + "path": "/infra/services/VMware-iSCSI-Server/service-entries/VMware-iSCSI-Server", + "realization_id": "5da6cb82-e642-41d2-817b-205478ca3177", + "relative_path": "VMware-iSCSI-Server", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5da6cb82-e642-41d2-817b-205478ca3177" + } + ] + }, + { + "_create_time": 1724279995508, + "_create_user": "system", + "_last_modified_time": 1724279995508, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "View 5.x", + "display_name": "View 5.x", + "id": "View_5.x", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/View_5.x", + "realization_id": "9e39aff9-c308-433d-9774-fbcaf3f25b5c", + "relative_path": "View_5.x", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "9e39aff9-c308-433d-9774-fbcaf3f25b5c", + "service_entries": [ + { + "_create_time": 1724279995597, + "_create_user": "system", + "_last_modified_time": 1724279995597, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4172" + ], + "display_name": "VMware-View-PCoIP", + "id": "VMware-View-PCoIP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/View_5.x", + "path": "/infra/services/View_5.x/service-entries/VMware-View-PCoIP", + "realization_id": "80e048e4-f961-4486-aa58-2776c02cae85", + "relative_path": "VMware-View-PCoIP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "80e048e4-f961-4486-aa58-2776c02cae85" + }, + { + "_create_time": 1724279995547, + "_create_user": "system", + "_last_modified_time": 1724279995547, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4172" + ], + "display_name": "VMware-View5.x-PCoIP-UDP", + "id": "VMware-View5.x-PCoIP-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/View_5.x", + "path": "/infra/services/View_5.x/service-entries/VMware-View5.x-PCoIP-UDP", + "realization_id": "ff27b73e-cbd5-45ea-a522-dc0fe8d55438", + "relative_path": "VMware-View5.x-PCoIP-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "ff27b73e-cbd5-45ea-a522-dc0fe8d55438" + }, + { + "_create_time": 1724279995650, + "_create_user": "system", + "_last_modified_time": 1724279995650, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "902" + ], + "display_name": "VMware-ESXi5.x-TCP", + "id": "VMware-ESXi5.x-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/View_5.x", + "path": "/infra/services/View_5.x/service-entries/VMware-ESXi5.x-TCP", + "realization_id": "7e6274bb-cf59-4440-bbe0-050198204126", + "relative_path": "VMware-ESXi5.x-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "7e6274bb-cf59-4440-bbe0-050198204126" + }, + { + "_create_time": 1724279995637, + "_create_user": "system", + "_last_modified_time": 1724279995637, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "80" + ], + "display_name": "HTTP", + "id": "HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/View_5.x", + "path": "/infra/services/View_5.x/service-entries/HTTP", + "realization_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38" + }, + { + "_create_time": 1724279995564, + "_create_user": "system", + "_last_modified_time": 1724279995564, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4001" + ], + "display_name": "VMware-View5.x-JMS", + "id": "VMware-View5.x-JMS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/View_5.x", + "path": "/infra/services/View_5.x/service-entries/VMware-View5.x-JMS", + "realization_id": "3df997aa-5182-4163-8265-814625cf15f2", + "relative_path": "VMware-View5.x-JMS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3df997aa-5182-4163-8265-814625cf15f2" + }, + { + "_create_time": 1724279995610, + "_create_user": "system", + "_last_modified_time": 1724279995610, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/View_5.x", + "path": "/infra/services/View_5.x/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + } + ] + }, + { + "_create_time": 1724279998901, + "_create_user": "system", + "_last_modified_time": 1724279998901, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Vmware View/VDM2.x", + "display_name": "Vmware View/VDM2.x", + "id": "Vmware_View-VDM2.x", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Vmware_View-VDM2.x", + "realization_id": "e90de43b-d8e2-4449-9e7d-31370fbfdcfa", + "relative_path": "Vmware_View-VDM2.x", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "e90de43b-d8e2-4449-9e7d-31370fbfdcfa", + "service_entries": [ + { + "_create_time": 1724279999096, + "_create_user": "system", + "_last_modified_time": 1724279999096, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3389" + ], + "display_name": "RDP", + "id": "RDP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware_View-VDM2.x", + "path": "/infra/services/Vmware_View-VDM2.x/service-entries/RDP", + "realization_id": "c7896f47-e853-44e4-ada9-dce830f84eff", + "relative_path": "RDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c7896f47-e853-44e4-ada9-dce830f84eff" + }, + { + "_create_time": 1724279999072, + "_create_user": "system", + "_last_modified_time": 1724279999072, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS-UDP", + "id": "KERBEROS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware_View-VDM2.x", + "path": "/infra/services/Vmware_View-VDM2.x/service-entries/KERBEROS-UDP", + "realization_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e", + "relative_path": "KERBEROS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e" + }, + { + "_create_time": 1724279999061, + "_create_user": "system", + "_last_modified_time": 1724279999061, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS", + "id": "KERBEROS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware_View-VDM2.x", + "path": "/infra/services/Vmware_View-VDM2.x/service-entries/KERBEROS", + "realization_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50", + "relative_path": "KERBEROS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50" + }, + { + "_create_time": 1724279998938, + "_create_user": "system", + "_last_modified_time": 1724279998938, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4001" + ], + "display_name": "VMware-View5.x-JMS", + "id": "VMware-View5.x-JMS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware_View-VDM2.x", + "path": "/infra/services/Vmware_View-VDM2.x/service-entries/VMware-View5.x-JMS", + "realization_id": "3df997aa-5182-4163-8265-814625cf15f2", + "relative_path": "VMware-View5.x-JMS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3df997aa-5182-4163-8265-814625cf15f2" + }, + { + "_create_time": 1724279998990, + "_create_user": "system", + "_last_modified_time": 1724279998990, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1024-65535" + ], + "display_name": "VMware-VDM2.x-Ephemeral", + "id": "VMware-VDM2.x-Ephemeral", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware_View-VDM2.x", + "path": "/infra/services/Vmware_View-VDM2.x/service-entries/VMware-VDM2.x-Ephemeral", + "realization_id": "8ebd5f35-8b2e-447b-ac50-e7e47c5cd492", + "relative_path": "VMware-VDM2.x-Ephemeral", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8ebd5f35-8b2e-447b-ac50-e7e47c5cd492" + }, + { + "_create_time": 1724279998996, + "_create_user": "system", + "_last_modified_time": 1724279998996, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware_View-VDM2.x", + "path": "/infra/services/Vmware_View-VDM2.x/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + }, + { + "_create_time": 1724279999045, + "_create_user": "system", + "_last_modified_time": 1724279999045, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP", + "id": "LDAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware_View-VDM2.x", + "path": "/infra/services/Vmware_View-VDM2.x/service-entries/LDAP", + "realization_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28", + "relative_path": "LDAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28" + }, + { + "_create_time": 1724279999086, + "_create_user": "system", + "_last_modified_time": 1724279999086, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "80" + ], + "display_name": "HTTP", + "id": "HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware_View-VDM2.x", + "path": "/infra/services/Vmware_View-VDM2.x/service-entries/HTTP", + "realization_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38" + }, + { + "_create_time": 1724279998974, + "_create_user": "system", + "_last_modified_time": 1724279998974, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4100" + ], + "display_name": "Vmware-VDM2.x-JMS", + "id": "Vmware-VDM2.x-JMS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware_View-VDM2.x", + "path": "/infra/services/Vmware_View-VDM2.x/service-entries/Vmware-VDM2.x-JMS", + "realization_id": "88953704-1c52-4b10-b11b-2459245bd1b6", + "relative_path": "Vmware-VDM2.x-JMS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "88953704-1c52-4b10-b11b-2459245bd1b6" + }, + { + "_create_time": 1724279999013, + "_create_user": "system", + "_last_modified_time": 1724279999013, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "445" + ], + "display_name": "MS-DS-TCP", + "id": "MS-DS-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware_View-VDM2.x", + "path": "/infra/services/Vmware_View-VDM2.x/service-entries/MS-DS-TCP", + "realization_id": "1a734e23-133b-46ba-9428-0980d56583c4", + "relative_path": "MS-DS-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "1a734e23-133b-46ba-9428-0980d56583c4" + }, + { + "_create_time": 1724279998916, + "_create_user": "system", + "_last_modified_time": 1724279998916, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "445" + ], + "display_name": "MS-DS-UDP", + "id": "MS-DS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware_View-VDM2.x", + "path": "/infra/services/Vmware_View-VDM2.x/service-entries/MS-DS-UDP", + "realization_id": "b4f2be24-9b7a-4d80-a1d7-046e0f115cf2", + "relative_path": "MS-DS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b4f2be24-9b7a-4d80-a1d7-046e0f115cf2" + }, + { + "_create_time": 1724279998981, + "_create_user": "system", + "_last_modified_time": 1724279998981, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8009" + ], + "display_name": "Vmware-VDM2.x-AJP", + "id": "Vmware-VDM2.x-AJP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware_View-VDM2.x", + "path": "/infra/services/Vmware_View-VDM2.x/service-entries/Vmware-VDM2.x-AJP", + "realization_id": "f30dc9fe-fc1c-4bda-8013-ab99a88ec41b", + "relative_path": "Vmware-VDM2.x-AJP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f30dc9fe-fc1c-4bda-8013-ab99a88ec41b" + }, + { + "_create_time": 1724279999029, + "_create_user": "system", + "_last_modified_time": 1724279999029, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP-UDP", + "id": "LDAP-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware_View-VDM2.x", + "path": "/infra/services/Vmware_View-VDM2.x/service-entries/LDAP-UDP", + "realization_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f", + "relative_path": "LDAP-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f" + }, + { + "_create_time": 1724279998949, + "_create_user": "system", + "_last_modified_time": 1724279998949, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "42966" + ], + "display_name": "VMware-VDM2.x-RGS", + "id": "VMware-VDM2.x-RGS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware_View-VDM2.x", + "path": "/infra/services/Vmware_View-VDM2.x/service-entries/VMware-VDM2.x-RGS", + "realization_id": "5c64529f-acf1-4d69-82a7-4e2da63e289c", + "relative_path": "VMware-VDM2.x-RGS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5c64529f-acf1-4d69-82a7-4e2da63e289c" + } + ] + }, + { + "_create_time": 1724279989190, + "_create_user": "system", + "_last_modified_time": 1724279989190, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Vmware-FT-TCP", + "display_name": "Vmware-FT-TCP", + "id": "Vmware-FT-TCP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Vmware-FT-TCP", + "realization_id": "acb31ec7-1dda-4c80-9898-16428ea79f28", + "relative_path": "Vmware-FT-TCP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "acb31ec7-1dda-4c80-9898-16428ea79f28", + "service_entries": [ + { + "_create_time": 1724279989190, + "_create_user": "system", + "_last_modified_time": 1724279989190, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8100", + "8200" + ], + "display_name": "Vmware-FT-TCP", + "id": "Vmware-FT-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware-FT-TCP", + "path": "/infra/services/Vmware-FT-TCP/service-entries/Vmware-FT-TCP", + "realization_id": "f5aec10b-98d4-4d90-852c-abd7e1bf1b46", + "relative_path": "Vmware-FT-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f5aec10b-98d4-4d90-852c-abd7e1bf1b46" + } + ] + }, + { + "_create_time": 1724279989093, + "_create_user": "system", + "_last_modified_time": 1724279989093, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Vmware-FT-UDP", + "display_name": "Vmware-FT-UDP", + "id": "Vmware-FT-UDP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Vmware-FT-UDP", + "realization_id": "44dcd359-3001-4071-bb90-3f625a8cad81", + "relative_path": "Vmware-FT-UDP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "44dcd359-3001-4071-bb90-3f625a8cad81", + "service_entries": [ + { + "_create_time": 1724279989093, + "_create_user": "system", + "_last_modified_time": 1724279989093, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8100", + "8200" + ], + "display_name": "Vmware-FT-UDP", + "id": "Vmware-FT-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware-FT-UDP", + "path": "/infra/services/Vmware-FT-UDP/service-entries/Vmware-FT-UDP", + "realization_id": "e00fe247-b0b9-4bb1-b98a-0adbb3460a38", + "relative_path": "Vmware-FT-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "e00fe247-b0b9-4bb1-b98a-0adbb3460a38" + } + ] + }, + { + "_create_time": 1724279988999, + "_create_user": "system", + "_last_modified_time": 1724279988999, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Vmware-Heartbeat-PrimarySecondary", + "display_name": "Vmware-Heartbeat-PrimarySecondary", + "id": "Vmware-Heartbeat-PrimarySecondary", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Vmware-Heartbeat-PrimarySecondary", + "realization_id": "68b30ecf-c366-4007-8c67-8b419f04e6d7", + "relative_path": "Vmware-Heartbeat-PrimarySecondary", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "68b30ecf-c366-4007-8c67-8b419f04e6d7", + "service_entries": [ + { + "_create_time": 1724279989000, + "_create_user": "system", + "_last_modified_time": 1724279989000, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "57348" + ], + "display_name": "Vmware-Heartbeat-PrimarySecondary", + "id": "Vmware-Heartbeat-PrimarySecondary", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware-Heartbeat-PrimarySecondary", + "path": "/infra/services/Vmware-Heartbeat-PrimarySecondary/service-entries/Vmware-Heartbeat-PrimarySecondary", + "realization_id": "e9697876-4a70-4ed2-9a15-6a0894fab342", + "relative_path": "Vmware-Heartbeat-PrimarySecondary", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "e9697876-4a70-4ed2-9a15-6a0894fab342" + } + ] + }, + { + "_create_time": 1724279988828, + "_create_user": "system", + "_last_modified_time": 1724279988828, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Vmware-SRM-WSDL-vCentreServer", + "display_name": "Vmware-SRM-WSDL-vCentreServer", + "id": "Vmware-SRM-WSDL-vCentreServer", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Vmware-SRM-WSDL-vCentreServer", + "realization_id": "76c382b1-e033-4b0b-bf2f-8da43f431c71", + "relative_path": "Vmware-SRM-WSDL-vCentreServer", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "76c382b1-e033-4b0b-bf2f-8da43f431c71", + "service_entries": [ + { + "_create_time": 1724279988828, + "_create_user": "system", + "_last_modified_time": 1724279988828, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9007" + ], + "display_name": "Vmware-SRM-WSDL-vCentreServer", + "id": "Vmware-SRM-WSDL-vCentreServer", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware-SRM-WSDL-vCentreServer", + "path": "/infra/services/Vmware-SRM-WSDL-vCentreServer/service-entries/Vmware-SRM-WSDL-vCentreServer", + "realization_id": "b6b47a66-b8e7-4a50-b877-038564209ebd", + "relative_path": "Vmware-SRM-WSDL-vCentreServer", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b6b47a66-b8e7-4a50-b877-038564209ebd" + } + ] + }, + { + "_create_time": 1724279989188, + "_create_user": "system", + "_last_modified_time": 1724279989188, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Vmware-UpdateMgr-update", + "display_name": "Vmware-UpdateMgr-update", + "id": "Vmware-UpdateMgr-update", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Vmware-UpdateMgr-update", + "realization_id": "ff6f5324-04ba-49a6-89ba-a3bb7718c7bd", + "relative_path": "Vmware-UpdateMgr-update", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "ff6f5324-04ba-49a6-89ba-a3bb7718c7bd", + "service_entries": [ + { + "_create_time": 1724279989188, + "_create_user": "system", + "_last_modified_time": 1724279989188, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "9087" + ], + "display_name": "Vmware-UpdateMgr-update", + "id": "Vmware-UpdateMgr-update", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware-UpdateMgr-update", + "path": "/infra/services/Vmware-UpdateMgr-update/service-entries/Vmware-UpdateMgr-update", + "realization_id": "20a09a60-7f96-4b5b-82a6-eb5be0ac6079", + "relative_path": "Vmware-UpdateMgr-update", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "20a09a60-7f96-4b5b-82a6-eb5be0ac6079" + } + ] + }, + { + "_create_time": 1724279989123, + "_create_user": "system", + "_last_modified_time": 1724279989123, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Vmware-VC-HTTP", + "display_name": "Vmware-VC-HTTP", + "id": "Vmware-VC-HTTP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Vmware-VC-HTTP", + "realization_id": "e04e214d-18c7-4b6e-89c5-8c8233531fb9", + "relative_path": "Vmware-VC-HTTP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "e04e214d-18c7-4b6e-89c5-8c8233531fb9", + "service_entries": [ + { + "_create_time": 1724279989123, + "_create_user": "system", + "_last_modified_time": 1724279989123, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "10080" + ], + "display_name": "Vmware-VC-HTTP", + "id": "Vmware-VC-HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware-VC-HTTP", + "path": "/infra/services/Vmware-VC-HTTP/service-entries/Vmware-VC-HTTP", + "realization_id": "8000c77a-e1e8-4e0a-8854-789e5f8ee2c2", + "relative_path": "Vmware-VC-HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8000c77a-e1e8-4e0a-8854-789e5f8ee2c2" + } + ] + }, + { + "_create_time": 1724279988950, + "_create_user": "system", + "_last_modified_time": 1724279988950, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Vmware-VC-VC-Internal", + "display_name": "Vmware-VC-VC-Internal", + "id": "Vmware-VC-VC-Internal", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Vmware-VC-VC-Internal", + "realization_id": "9cee0660-bb35-4e76-aa9b-efb443e93139", + "relative_path": "Vmware-VC-VC-Internal", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "9cee0660-bb35-4e76-aa9b-efb443e93139", + "service_entries": [ + { + "_create_time": 1724279988950, + "_create_user": "system", + "_last_modified_time": 1724279988950, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "7500", + "8005", + "8006", + "8083", + "8085", + "8086", + "8087", + "8443", + "10109", + "10111", + "60099" + ], + "display_name": "Vmware-VC-VC-Internal", + "id": "Vmware-VC-VC-Internal", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware-VC-VC-Internal", + "path": "/infra/services/Vmware-VC-VC-Internal/service-entries/Vmware-VC-VC-Internal", + "realization_id": "849c1316-2176-4299-993b-624c26aa9e59", + "relative_path": "Vmware-VC-VC-Internal", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "849c1316-2176-4299-993b-624c26aa9e59" + } + ] + }, + { + "_create_time": 1724279989200, + "_create_user": "system", + "_last_modified_time": 1724279989200, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Vmware-VC-WebAccess", + "display_name": "Vmware-VC-WebAccess", + "id": "Vmware-VC-WebAccess", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Vmware-VC-WebAccess", + "realization_id": "37dcbb96-cb66-4618-aa02-4b788d4b33bb", + "relative_path": "Vmware-VC-WebAccess", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "37dcbb96-cb66-4618-aa02-4b788d4b33bb", + "service_entries": [ + { + "_create_time": 1724279989200, + "_create_user": "system", + "_last_modified_time": 1724279989200, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8443", + "9443", + "10443" + ], + "display_name": "Vmware-VC-WebAccess", + "id": "Vmware-VC-WebAccess", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware-VC-WebAccess", + "path": "/infra/services/Vmware-VC-WebAccess/service-entries/Vmware-VC-WebAccess", + "realization_id": "753b1241-4573-4d18-b1c4-e86995bbf245", + "relative_path": "Vmware-VC-WebAccess", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "753b1241-4573-4d18-b1c4-e86995bbf245" + } + ] + }, + { + "_create_time": 1724279988879, + "_create_user": "system", + "_last_modified_time": 1724279988879, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Vmware-VCHeartbeat", + "display_name": "Vmware-VCHeartbeat", + "id": "Vmware-VCHeartbeat", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Vmware-VCHeartbeat", + "realization_id": "708ae0c2-925b-4d92-8c2b-7707c7223010", + "relative_path": "Vmware-VCHeartbeat", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "708ae0c2-925b-4d92-8c2b-7707c7223010", + "service_entries": [ + { + "_create_time": 1724279988880, + "_create_user": "system", + "_last_modified_time": 1724279988880, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "52267" + ], + "display_name": "Vmware-VCHeartbeat", + "id": "Vmware-VCHeartbeat", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware-VCHeartbeat", + "path": "/infra/services/Vmware-VCHeartbeat/service-entries/Vmware-VCHeartbeat", + "realization_id": "bff6c52d-f15e-42c2-b242-c3bb607d2e77", + "relative_path": "Vmware-VCHeartbeat", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "bff6c52d-f15e-42c2-b242-c3bb607d2e77" + } + ] + }, + { + "_create_time": 1724279989093, + "_create_user": "system", + "_last_modified_time": 1724279989093, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Vmware-VCO-Lookup", + "display_name": "Vmware-VCO-Lookup", + "id": "Vmware-VCO-Lookup", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Vmware-VCO-Lookup", + "realization_id": "13923f84-a17b-4670-af78-c84756a74dc6", + "relative_path": "Vmware-VCO-Lookup", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "13923f84-a17b-4670-af78-c84756a74dc6", + "service_entries": [ + { + "_create_time": 1724279989093, + "_create_user": "system", + "_last_modified_time": 1724279989093, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8230" + ], + "display_name": "Vmware-VCO-Lookup", + "id": "Vmware-VCO-Lookup", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware-VCO-Lookup", + "path": "/infra/services/Vmware-VCO-Lookup/service-entries/Vmware-VCO-Lookup", + "realization_id": "19567786-0ea8-4404-98a9-702f9694dda8", + "relative_path": "Vmware-VCO-Lookup", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "19567786-0ea8-4404-98a9-702f9694dda8" + } + ] + }, + { + "_create_time": 1724279988994, + "_create_user": "system", + "_last_modified_time": 1724279988994, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Vmware-VCO-VCO-HTTP", + "display_name": "Vmware-VCO-VCO-HTTP", + "id": "Vmware-VCO-VCO-HTTP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Vmware-VCO-VCO-HTTP", + "realization_id": "d09035e7-46f9-4b36-8b00-f812ac4d3577", + "relative_path": "Vmware-VCO-VCO-HTTP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "d09035e7-46f9-4b36-8b00-f812ac4d3577", + "service_entries": [ + { + "_create_time": 1724279988994, + "_create_user": "system", + "_last_modified_time": 1724279988994, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8282" + ], + "display_name": "Vmware-VCO-VCO-HTTP", + "id": "Vmware-VCO-VCO-HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware-VCO-VCO-HTTP", + "path": "/infra/services/Vmware-VCO-VCO-HTTP/service-entries/Vmware-VCO-VCO-HTTP", + "realization_id": "cc5a83bc-280b-4851-b6fd-258886f48ef2", + "relative_path": "Vmware-VCO-VCO-HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "cc5a83bc-280b-4851-b6fd-258886f48ef2" + } + ] + }, + { + "_create_time": 1724279988993, + "_create_user": "system", + "_last_modified_time": 1724279988993, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Vmware-VCOStdAln-Remote", + "display_name": "Vmware-VCOStdAln-Remote", + "id": "Vmware-VCOStdAln-Remote", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Vmware-VCOStdAln-Remote", + "realization_id": "3fa4495f-352b-47c0-84d9-4d539e1fa30a", + "relative_path": "Vmware-VCOStdAln-Remote", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "3fa4495f-352b-47c0-84d9-4d539e1fa30a", + "service_entries": [ + { + "_create_time": 1724279988993, + "_create_user": "system", + "_last_modified_time": 1724279988993, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "61616" + ], + "display_name": "Vmware-VCOStdAln-Remote", + "id": "Vmware-VCOStdAln-Remote", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware-VCOStdAln-Remote", + "path": "/infra/services/Vmware-VCOStdAln-Remote/service-entries/Vmware-VCOStdAln-Remote", + "realization_id": "7a30a71c-2d54-4d6e-854f-b3280f1a3377", + "relative_path": "Vmware-VCOStdAln-Remote", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "7a30a71c-2d54-4d6e-854f-b3280f1a3377" + } + ] + }, + { + "_create_time": 1724279988944, + "_create_user": "system", + "_last_modified_time": 1724279988944, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Vmware-VDM2.x-AJP", + "display_name": "Vmware-VDM2.x-AJP", + "id": "Vmware-VDM2.x-AJP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Vmware-VDM2.x-AJP", + "realization_id": "1e6f8aec-748a-48f1-9872-f0d86c281f17", + "relative_path": "Vmware-VDM2.x-AJP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "1e6f8aec-748a-48f1-9872-f0d86c281f17", + "service_entries": [ + { + "_create_time": 1724279988945, + "_create_user": "system", + "_last_modified_time": 1724279988945, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8009" + ], + "display_name": "Vmware-VDM2.x-AJP", + "id": "Vmware-VDM2.x-AJP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware-VDM2.x-AJP", + "path": "/infra/services/Vmware-VDM2.x-AJP/service-entries/Vmware-VDM2.x-AJP", + "realization_id": "f30dc9fe-fc1c-4bda-8013-ab99a88ec41b", + "relative_path": "Vmware-VDM2.x-AJP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "f30dc9fe-fc1c-4bda-8013-ab99a88ec41b" + } + ] + }, + { + "_create_time": 1724279988969, + "_create_user": "system", + "_last_modified_time": 1724279988969, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Vmware-VDM2.x-JMS", + "display_name": "Vmware-VDM2.x-JMS", + "id": "Vmware-VDM2.x-JMS", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Vmware-VDM2.x-JMS", + "realization_id": "6664dbbb-848d-4414-b519-b3196d492cc2", + "relative_path": "Vmware-VDM2.x-JMS", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "6664dbbb-848d-4414-b519-b3196d492cc2", + "service_entries": [ + { + "_create_time": 1724279988969, + "_create_user": "system", + "_last_modified_time": 1724279988969, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "4100" + ], + "display_name": "Vmware-VDM2.x-JMS", + "id": "Vmware-VDM2.x-JMS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Vmware-VDM2.x-JMS", + "path": "/infra/services/Vmware-VDM2.x-JMS/service-entries/Vmware-VDM2.x-JMS", + "realization_id": "88953704-1c52-4b10-b11b-2459245bd1b6", + "relative_path": "Vmware-VDM2.x-JMS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "88953704-1c52-4b10-b11b-2459245bd1b6" + } + ] + }, + { + "_create_time": 1724279988894, + "_create_user": "system", + "_last_modified_time": 1724279988894, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "WINS", + "display_name": "WINS", + "id": "WINS", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/WINS", + "realization_id": "f8ab8450-4ae5-404c-8d6c-d21f69acb5aa", + "relative_path": "WINS", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "f8ab8450-4ae5-404c-8d6c-d21f69acb5aa", + "service_entries": [ + { + "_create_time": 1724279988895, + "_create_user": "system", + "_last_modified_time": 1724279988895, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "42" + ], + "display_name": "WINS", + "id": "WINS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/WINS", + "path": "/infra/services/WINS/service-entries/WINS", + "realization_id": "3df86560-be4b-403c-9f51-b4739e11c531", + "relative_path": "WINS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3df86560-be4b-403c-9f51-b4739e11c531" + } + ] + }, + { + "_create_time": 1724279988829, + "_create_user": "system", + "_last_modified_time": 1724279988829, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "WINS-UDP", + "display_name": "WINS-UDP", + "id": "WINS-UDP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/WINS-UDP", + "realization_id": "07c729ef-8a28-4b30-bcf3-8fd1fe15749e", + "relative_path": "WINS-UDP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "07c729ef-8a28-4b30-bcf3-8fd1fe15749e", + "service_entries": [ + { + "_create_time": 1724279988829, + "_create_user": "system", + "_last_modified_time": 1724279988829, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "42" + ], + "display_name": "WINS-UDP", + "id": "WINS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/WINS-UDP", + "path": "/infra/services/WINS-UDP/service-entries/WINS-UDP", + "realization_id": "117c0e28-4cbf-4905-b7e0-d9e148cad0cf", + "relative_path": "WINS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "117c0e28-4cbf-4905-b7e0-d9e148cad0cf" + } + ] + }, + { + "_create_time": 1724279988986, + "_create_user": "system", + "_last_modified_time": 1724279988986, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Win - RPC, DCOM, EPM, DRSUAPI, NetLogonR, SamR, FRS - TCP", + "display_name": "Win - RPC, DCOM, EPM, DRSUAPI, NetLogonR, SamR, FRS - TCP", + "id": "Win_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS_-_TCP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Win_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS_-_TCP", + "realization_id": "4510950e-e561-479e-9add-6fc285103fae", + "relative_path": "Win_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS_-_TCP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "4510950e-e561-479e-9add-6fc285103fae", + "service_entries": [ + { + "_create_time": 1724279988986, + "_create_user": "system", + "_last_modified_time": 1724279988986, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1025-65535" + ], + "display_name": "Win - RPC, DCOM, EPM, DRSUAPI, NetLogonR, SamR, FRS - TCP", + "id": "Win_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS_-_TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Win_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS_-_TCP", + "path": "/infra/services/Win_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS_-_TCP/service-entries/Win_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS_-_TCP", + "realization_id": "8d3551e5-90b3-4d5f-92dd-762cb91947be", + "relative_path": "Win_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS_-_TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8d3551e5-90b3-4d5f-92dd-762cb91947be" + } + ] + }, + { + "_create_time": 1724279989006, + "_create_user": "system", + "_last_modified_time": 1724279989006, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Win - RPC, DCOM, EPM, DRSUAPI, NetLogonR, SamR, FRS - UDP", + "display_name": "Win - RPC, DCOM, EPM, DRSUAPI, NetLogonR, SamR, FRS - UDP", + "id": "Win_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS_-_UDP", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Win_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS_-_UDP", + "realization_id": "1ce2873e-73ca-4b10-a41d-a015db4d44de", + "relative_path": "Win_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS_-_UDP", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "1ce2873e-73ca-4b10-a41d-a015db4d44de", + "service_entries": [ + { + "_create_time": 1724279989006, + "_create_user": "system", + "_last_modified_time": 1724279989006, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1025-65535" + ], + "display_name": "Win - RPC, DCOM, EPM, DRSUAPI, NetLogonR, SamR, FRS - UDP", + "id": "Win_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS_-_UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Win_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS_-_UDP", + "path": "/infra/services/Win_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS_-_UDP/service-entries/Win_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS_-_UDP", + "realization_id": "53000de5-3b9e-4d3f-bf7c-57f4e323e055", + "relative_path": "Win_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS_-_UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "53000de5-3b9e-4d3f-bf7c-57f4e323e055" + } + ] + }, + { + "_create_time": 1724279989025, + "_create_user": "system", + "_last_modified_time": 1724279989025, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Win 2003 - RPC, DCOM, EPM, DRSUAPI, NetLogonR, SamR, FRS", + "display_name": "Win 2003 - RPC, DCOM, EPM, DRSUAPI, NetLogonR, SamR, FRS", + "id": "Win_2003_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Win_2003_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS", + "realization_id": "6f52df65-a66a-4f28-b8ae-b4607fe76c2f", + "relative_path": "Win_2003_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "6f52df65-a66a-4f28-b8ae-b4607fe76c2f", + "service_entries": [ + { + "_create_time": 1724279989025, + "_create_user": "system", + "_last_modified_time": 1724279989025, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1025-5000" + ], + "display_name": "Win 2003 - RPC, DCOM, EPM, DRSUAPI, NetLogonR, SamR, FRS", + "id": "Win_2003_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Win_2003_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS", + "path": "/infra/services/Win_2003_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS/service-entries/Win_2003_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS", + "realization_id": "7c89900b-d56a-47c6-912c-57db8706deaa", + "relative_path": "Win_2003_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "7c89900b-d56a-47c6-912c-57db8706deaa" + } + ] + }, + { + "_create_time": 1724279989108, + "_create_user": "system", + "_last_modified_time": 1724279989108, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Win 2008 - RPC, DCOM, EPM, DRSUAPI, NetLogonR, SamR, FRS", + "display_name": "Win 2008 - RPC, DCOM, EPM, DRSUAPI, NetLogonR, SamR, FRS", + "id": "Win_2008_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Win_2008_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS", + "realization_id": "90178531-44ae-4fab-9b12-5cbc971d1889", + "relative_path": "Win_2008_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "90178531-44ae-4fab-9b12-5cbc971d1889", + "service_entries": [ + { + "_create_time": 1724279989109, + "_create_user": "system", + "_last_modified_time": 1724279989109, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "49152-65535" + ], + "display_name": "Win 2008 - RPC, DCOM, EPM, DRSUAPI, NetLogonR, SamR, FRS", + "id": "Win_2008_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Win_2008_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS", + "path": "/infra/services/Win_2008_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS/service-entries/Win_2008_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS", + "realization_id": "51266106-cb0e-4175-be87-8d3e8762d8ef", + "relative_path": "Win_2008_-_RPC,_DCOM,_EPM,_DRSUAPI,_NetLogonR,_SamR,_FRS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "51266106-cb0e-4175-be87-8d3e8762d8ef" + } + ] + }, + { + "_create_time": 1724279989013, + "_create_user": "system", + "_last_modified_time": 1724279989013, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Windows-Global-Catalog", + "display_name": "Windows-Global-Catalog", + "id": "Windows-Global-Catalog", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Windows-Global-Catalog", + "realization_id": "8677b416-47fe-405a-9850-e78cdab81592", + "relative_path": "Windows-Global-Catalog", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "8677b416-47fe-405a-9850-e78cdab81592", + "service_entries": [ + { + "_create_time": 1724279989014, + "_create_user": "system", + "_last_modified_time": 1724279989014, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3268" + ], + "display_name": "Windows-Global-Catalog", + "id": "Windows-Global-Catalog", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Windows-Global-Catalog", + "path": "/infra/services/Windows-Global-Catalog/service-entries/Windows-Global-Catalog", + "realization_id": "a61d55a8-a223-45da-b5b7-d951d84f562f", + "relative_path": "Windows-Global-Catalog", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a61d55a8-a223-45da-b5b7-d951d84f562f" + } + ] + }, + { + "_create_time": 1724279988869, + "_create_user": "system", + "_last_modified_time": 1724279988869, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Windows-Global-Catalog-over-SSL", + "display_name": "Windows-Global-Catalog-over-SSL", + "id": "Windows-Global-Catalog-over-SSL", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Windows-Global-Catalog-over-SSL", + "realization_id": "a1c30d0b-7036-4876-a38f-81a8ed2b74b0", + "relative_path": "Windows-Global-Catalog-over-SSL", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "a1c30d0b-7036-4876-a38f-81a8ed2b74b0", + "service_entries": [ + { + "_create_time": 1724279988869, + "_create_user": "system", + "_last_modified_time": 1724279988869, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "3269" + ], + "display_name": "Windows-Global-Catalog-over-SSL", + "id": "Windows-Global-Catalog-over-SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Windows-Global-Catalog-over-SSL", + "path": "/infra/services/Windows-Global-Catalog-over-SSL/service-entries/Windows-Global-Catalog-over-SSL", + "realization_id": "40224812-60f5-489e-8d37-adacfca6d520", + "relative_path": "Windows-Global-Catalog-over-SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "40224812-60f5-489e-8d37-adacfca6d520" + } + ] + }, + { + "_create_time": 1724279988913, + "_create_user": "system", + "_last_modified_time": 1724279988913, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Yahoo Messenger (TCP)", + "display_name": "Yahoo Messenger (TCP)", + "id": "Yahoo_Messenger_(TCP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Yahoo_Messenger_(TCP)", + "realization_id": "20f0f22e-d542-431f-9252-9fc840f5c817", + "relative_path": "Yahoo_Messenger_(TCP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "20f0f22e-d542-431f-9252-9fc840f5c817", + "service_entries": [ + { + "_create_time": 1724279988914, + "_create_user": "system", + "_last_modified_time": 1724279988914, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5050" + ], + "display_name": "Yahoo Messenger (TCP)", + "id": "Yahoo_Messenger_(TCP)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Yahoo_Messenger_(TCP)", + "path": "/infra/services/Yahoo_Messenger_(TCP)/service-entries/Yahoo_Messenger_(TCP)", + "realization_id": "e8aba8e5-eced-4804-bd0c-9b9546f2e81d", + "relative_path": "Yahoo_Messenger_(TCP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "e8aba8e5-eced-4804-bd0c-9b9546f2e81d" + } + ] + }, + { + "_create_time": 1724279988935, + "_create_user": "system", + "_last_modified_time": 1724279988935, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "Yahoo Messenger (UDP)", + "display_name": "Yahoo Messenger (UDP)", + "id": "Yahoo_Messenger_(UDP)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/Yahoo_Messenger_(UDP)", + "realization_id": "cd67eddb-983a-4559-a6df-2a780b2d4af2", + "relative_path": "Yahoo_Messenger_(UDP)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "cd67eddb-983a-4559-a6df-2a780b2d4af2", + "service_entries": [ + { + "_create_time": 1724279988935, + "_create_user": "system", + "_last_modified_time": 1724279988935, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5050" + ], + "display_name": "Yahoo Messenger (UDP)", + "id": "Yahoo_Messenger_(UDP)", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/Yahoo_Messenger_(UDP)", + "path": "/infra/services/Yahoo_Messenger_(UDP)/service-entries/Yahoo_Messenger_(UDP)", + "realization_id": "16bd4c4d-6c35-4693-9cf3-9f82c2226e0c", + "relative_path": "Yahoo_Messenger_(UDP)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "16bd4c4d-6c35-4693-9cf3-9f82c2226e0c" + } + ] + }, + { + "_create_time": 1724279989008, + "_create_user": "system", + "_last_modified_time": 1724279989008, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "iSQLPlus 10g", + "display_name": "iSQLPlus 10g", + "id": "iSQLPlus_10g", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/iSQLPlus_10g", + "realization_id": "faf2a206-1b4a-4581-8412-b4d7617acf90", + "relative_path": "iSQLPlus_10g", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "faf2a206-1b4a-4581-8412-b4d7617acf90", + "service_entries": [ + { + "_create_time": 1724279989008, + "_create_user": "system", + "_last_modified_time": 1724279989008, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5560" + ], + "display_name": "iSQLPlus 10g", + "id": "iSQLPlus_10g", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/iSQLPlus_10g", + "path": "/infra/services/iSQLPlus_10g/service-entries/iSQLPlus_10g", + "realization_id": "33f386c1-596e-4faf-bfb7-aed31c3aee78", + "relative_path": "iSQLPlus_10g", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "33f386c1-596e-4faf-bfb7-aed31c3aee78" + } + ] + }, + { + "_create_time": 1724279988987, + "_create_user": "system", + "_last_modified_time": 1724279988987, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "iSQLPlus 10g (5580)", + "display_name": "iSQLPlus 10g (5580)", + "id": "iSQLPlus_10g_(5580)", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/iSQLPlus_10g_(5580)", + "realization_id": "a88532ec-5cfe-457a-9ca0-24673372d387", + "relative_path": "iSQLPlus_10g_(5580)", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "a88532ec-5cfe-457a-9ca0-24673372d387", + "service_entries": [ + { + "_create_time": 1724279988988, + "_create_user": "system", + "_last_modified_time": 1724279988988, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5580" + ], + "display_name": "iSQLPlus 10g (5580)", + "id": "iSQLPlus_10g_(5580)", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/iSQLPlus_10g_(5580)", + "path": "/infra/services/iSQLPlus_10g_(5580)/service-entries/iSQLPlus_10g_(5580)", + "realization_id": "458a3ac4-42b6-4e5e-b350-823197a080df", + "relative_path": "iSQLPlus_10g_(5580)", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "458a3ac4-42b6-4e5e-b350-823197a080df" + } + ] + }, + { + "_create_time": 1724279994981, + "_create_user": "system", + "_last_modified_time": 1724279994981, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "vCenter5.x V1", + "display_name": "vCenter5.x V1", + "id": "vCenter5.x_V1", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/vCenter5.x_V1", + "realization_id": "8c5dadb8-31e4-461f-80f2-2488754c5e14", + "relative_path": "vCenter5.x_V1", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "8c5dadb8-31e4-461f-80f2-2488754c5e14", + "service_entries": [ + { + "_create_time": 1724279995383, + "_create_user": "system", + "_last_modified_time": 1724279995383, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "902" + ], + "display_name": "VMware-ESXi5.x-UDP", + "id": "VMware-ESXi5.x-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/VMware-ESXi5.x-UDP", + "realization_id": "96c329db-cf4d-4c71-8974-2fb9ca6647c4", + "relative_path": "VMware-ESXi5.x-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "96c329db-cf4d-4c71-8974-2fb9ca6647c4" + }, + { + "_create_time": 1724279995205, + "_create_user": "system", + "_last_modified_time": 1724279995205, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + }, + { + "_create_time": 1724279995175, + "_create_user": "system", + "_last_modified_time": 1724279995175, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP", + "id": "LDAP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/LDAP", + "realization_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28", + "relative_path": "LDAP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "be5c8d88-1f13-4011-84a2-ef388bca9d28" + }, + { + "_create_time": 1724279995246, + "_create_user": "system", + "_last_modified_time": 1724279995246, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "161" + ], + "display_name": "SNMP-Receive", + "id": "SNMP-Receive", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/SNMP-Receive", + "realization_id": "807a7b24-8a12-493e-be8f-4427b0fdbfe5", + "relative_path": "SNMP-Receive", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "807a7b24-8a12-493e-be8f-4427b0fdbfe5" + }, + { + "_create_time": 1724279995493, + "_create_user": "system", + "_last_modified_time": 1724279995493, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "51915" + ], + "display_name": "VMware-VC-ESXi", + "id": "VMware-VC-ESXi", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/VMware-VC-ESXi", + "realization_id": "0790c764-e919-4293-8fde-e01a7f3e246e", + "relative_path": "VMware-VC-ESXi", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "0790c764-e919-4293-8fde-e01a7f3e246e" + }, + { + "_create_time": 1724279995436, + "_create_user": "system", + "_last_modified_time": 1724279995436, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1433" + ], + "display_name": "MS-SQL-S", + "id": "MS-SQL-S", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/MS-SQL-S", + "realization_id": "a7240508-b3a5-4123-b5b7-37f68e9a924f", + "relative_path": "MS-SQL-S", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "a7240508-b3a5-4123-b5b7-37f68e9a924f" + }, + { + "_create_time": 1724279995135, + "_create_user": "system", + "_last_modified_time": 1724279995135, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "162" + ], + "display_name": "SNMP-Send", + "id": "SNMP-Send", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/SNMP-Send", + "realization_id": "5860f8d6-9854-4b8c-abf1-029be49bb215", + "relative_path": "SNMP-Send", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5860f8d6-9854-4b8c-abf1-029be49bb215" + }, + { + "_create_time": 1724279995460, + "_create_user": "system", + "_last_modified_time": 1724279995460, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8443", + "9443", + "10443" + ], + "display_name": "Vmware-VC-WebAccess", + "id": "Vmware-VC-WebAccess", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/Vmware-VC-WebAccess", + "realization_id": "753b1241-4573-4d18-b1c4-e86995bbf245", + "relative_path": "Vmware-VC-WebAccess", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "753b1241-4573-4d18-b1c4-e86995bbf245" + }, + { + "_create_time": 1724279995010, + "_create_user": "system", + "_last_modified_time": 1724279995010, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "10080" + ], + "display_name": "Vmware-VC-HTTP", + "id": "Vmware-VC-HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/Vmware-VC-HTTP", + "realization_id": "8000c77a-e1e8-4e0a-8854-789e5f8ee2c2", + "relative_path": "Vmware-VC-HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8000c77a-e1e8-4e0a-8854-789e5f8ee2c2" + }, + { + "_create_time": 1724279994989, + "_create_user": "system", + "_last_modified_time": 1724279994989, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1434" + ], + "display_name": "MS-SQL-M", + "id": "MS-SQL-M", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/MS-SQL-M", + "realization_id": "c41a0168-cf24-451d-9089-a8cc2cd1bbb0", + "relative_path": "MS-SQL-M", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c41a0168-cf24-451d-9089-a8cc2cd1bbb0" + }, + { + "_create_time": 1724279995195, + "_create_user": "system", + "_last_modified_time": 1724279995195, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "389" + ], + "display_name": "LDAP-UDP", + "id": "LDAP-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/LDAP-UDP", + "realization_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f", + "relative_path": "LDAP-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "b4aafcfc-4b6c-47ac-8a1c-5a9fa246c42f" + }, + { + "_create_time": 1724279995151, + "_create_user": "system", + "_last_modified_time": 1724279995151, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS-UDP", + "id": "KERBEROS-UDP", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/KERBEROS-UDP", + "realization_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e", + "relative_path": "KERBEROS-UDP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "aff09e92-3071-4f97-9e4b-a50416c6a29e" + }, + { + "_create_time": 1724279995482, + "_create_user": "system", + "_last_modified_time": 1724279995482, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "623" + ], + "display_name": "VMware-VC-DPM", + "id": "VMware-VC-DPM", + "l4_protocol": "UDP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/VMware-VC-DPM", + "realization_id": "6dd44bab-4fc7-45fb-a52c-511c4184b191", + "relative_path": "VMware-VC-DPM", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "6dd44bab-4fc7-45fb-a52c-511c4184b191" + }, + { + "_create_time": 1724279995397, + "_create_user": "system", + "_last_modified_time": 1724279995397, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5988" + ], + "display_name": "CIM-HTTP", + "id": "CIM-HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/CIM-HTTP", + "realization_id": "6a443d39-b2cb-40e4-83b9-131203f1e7ed", + "relative_path": "CIM-HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "6a443d39-b2cb-40e4-83b9-131203f1e7ed" + }, + { + "_create_time": 1724279995390, + "_create_user": "system", + "_last_modified_time": 1724279995390, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "902" + ], + "display_name": "VMware-ESXi5.x-TCP", + "id": "VMware-ESXi5.x-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/VMware-ESXi5.x-TCP", + "realization_id": "7e6274bb-cf59-4440-bbe0-050198204126", + "relative_path": "VMware-ESXi5.x-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "7e6274bb-cf59-4440-bbe0-050198204126" + }, + { + "_create_time": 1724279995318, + "_create_user": "system", + "_last_modified_time": 1724279995318, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8000" + ], + "display_name": "VMware-VC-DumpCollector-TCP", + "id": "VMware-VC-DumpCollector-TCP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/VMware-VC-DumpCollector-TCP", + "realization_id": "62674278-7001-4a67-aba9-d812a50c08c4", + "relative_path": "VMware-VC-DumpCollector-TCP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "62674278-7001-4a67-aba9-d812a50c08c4" + }, + { + "_create_time": 1724279995073, + "_create_user": "system", + "_last_modified_time": 1724279995073, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "53" + ], + "display_name": "DNS-TCP", + "id": "DNS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/DNS", + "realization_id": "503ad409-d481-4547-8720-28534c1856b6", + "relative_path": "DNS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "503ad409-d481-4547-8720-28534c1856b6" + }, + { + "_create_time": 1724279995419, + "_create_user": "system", + "_last_modified_time": 1724279995419, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "636" + ], + "display_name": "LDAP-over-SSL", + "id": "LDAP-over-SSL", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/LDAP-over-SSL", + "realization_id": "1c5f31ab-1398-44cc-84de-2e0891d813b3", + "relative_path": "LDAP-over-SSL", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "1c5f31ab-1398-44cc-84de-2e0891d813b3" + }, + { + "_create_time": 1724279995289, + "_create_user": "system", + "_last_modified_time": 1724279995289, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1521" + ], + "display_name": "Oracle", + "id": "Oracle", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/Oracle", + "realization_id": "3bb6713b-756e-439a-9ccd-7171f685c6e2", + "relative_path": "Oracle", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3bb6713b-756e-439a-9ccd-7171f685c6e2" + }, + { + "_create_time": 1724279995094, + "_create_user": "system", + "_last_modified_time": 1724279995094, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "88" + ], + "display_name": "KERBEROS", + "id": "KERBEROS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/KERBEROS", + "realization_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50", + "relative_path": "KERBEROS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "022538d7-bfe8-4d81-93f8-dcf7b4753c50" + }, + { + "_create_time": 1724279995114, + "_create_user": "system", + "_last_modified_time": 1724279995114, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "alg": "MS_RPC_TCP", + "destination_ports": [ + "135" + ], + "display_name": "MS_RPC_TCP", + "id": "MS_RPC_TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/MS_RPC_TCP", + "realization_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0", + "relative_path": "MS_RPC_TCP", + "remote_path": "", + "resource_type": "ALGTypeServiceEntry", + "unique_id": "0934a4e4-ca27-4d68-a2b4-1eca6c3938f0" + }, + { + "_create_time": 1724279995477, + "_create_user": "system", + "_last_modified_time": 1724279995477, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "7500", + "8005", + "8006", + "8083", + "8085", + "8086", + "8087", + "8443", + "10109", + "10111", + "60099" + ], + "display_name": "Vmware-VC-VC-Internal", + "id": "Vmware-VC-VC-Internal", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/Vmware-VC-VC-Internal", + "realization_id": "849c1316-2176-4299-993b-624c26aa9e59", + "relative_path": "Vmware-VC-VC-Internal", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "849c1316-2176-4299-993b-624c26aa9e59" + }, + { + "_create_time": 1724279995370, + "_create_user": "system", + "_last_modified_time": 1724279995370, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "8080" + ], + "display_name": "VMware-SRM-VAMI", + "id": "VMware-SRM-VAMI", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/VMware-SRM-VAMI", + "realization_id": "121ecd21-07d1-4bc7-a2b2-ffb7ce078014", + "relative_path": "VMware-SRM-VAMI", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "121ecd21-07d1-4bc7-a2b2-ffb7ce078014" + }, + { + "_create_time": 1724279995342, + "_create_user": "system", + "_last_modified_time": 1724279995342, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5989" + ], + "display_name": "CIM-HTTPS", + "id": "CIM-HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/CIM-HTTPS", + "realization_id": "06b454ec-7cac-4d1d-a3a9-1821e0d2b006", + "relative_path": "CIM-HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "06b454ec-7cac-4d1d-a3a9-1821e0d2b006" + }, + { + "_create_time": 1724279995487, + "_create_user": "system", + "_last_modified_time": 1724279995487, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "903" + ], + "display_name": "VMware-VC-RemoteConsole", + "id": "VMware-VC-RemoteConsole", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/VMware-VC-RemoteConsole", + "realization_id": "8e4256f7-16f7-4616-bb26-907d7b92c44f", + "relative_path": "VMware-VC-RemoteConsole", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "8e4256f7-16f7-4616-bb26-907d7b92c44f" + }, + { + "_create_time": 1724279995054, + "_create_user": "system", + "_last_modified_time": 1724279995054, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "25" + ], + "display_name": "SMTP", + "id": "SMTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCenter5.x_V1", + "path": "/infra/services/vCenter5.x_V1/service-entries/SMTP", + "realization_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219", + "relative_path": "SMTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "c2e5f5a9-6a5f-4351-b749-d15654b73219" + } + ] + }, + { + "_create_time": 1724279997687, + "_create_user": "system", + "_last_modified_time": 1724279997687, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "vCentre Operations Manager (Standalone) 5.x", + "display_name": "vCentre Operations Manager (Standalone) 5.x", + "id": "vCentre_Operations_Manager_(Standalone)_5.x", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/vCentre_Operations_Manager_(Standalone)_5.x", + "realization_id": "bf5dc472-2e3e-4b8e-8897-eab8034b2863", + "relative_path": "vCentre_Operations_Manager_(Standalone)_5.x", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "bf5dc472-2e3e-4b8e-8897-eab8034b2863", + "service_entries": [ + { + "_create_time": 1724279997700, + "_create_user": "system", + "_last_modified_time": 1724279997700, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "80" + ], + "display_name": "HTTP", + "id": "HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCentre_Operations_Manager_(Standalone)_5.x", + "path": "/infra/services/vCentre_Operations_Manager_(Standalone)_5.x/service-entries/HTTP", + "realization_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38" + }, + { + "_create_time": 1724279997717, + "_create_user": "system", + "_last_modified_time": 1724279997717, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCentre_Operations_Manager_(Standalone)_5.x", + "path": "/infra/services/vCentre_Operations_Manager_(Standalone)_5.x/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + }, + { + "_create_time": 1724279997800, + "_create_user": "system", + "_last_modified_time": 1724279997800, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1199" + ], + "display_name": "VMware-VCOStdAln-Heartbeat", + "id": "VMware-VCOStdAln-Heartbeat", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCentre_Operations_Manager_(Standalone)_5.x", + "path": "/infra/services/vCentre_Operations_Manager_(Standalone)_5.x/service-entries/VMware-VCOStdAln-Heartbeat", + "realization_id": "82451bc4-319d-47c7-b38f-ea13c28580a3", + "relative_path": "VMware-VCOStdAln-Heartbeat", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "82451bc4-319d-47c7-b38f-ea13c28580a3" + }, + { + "_create_time": 1724279997757, + "_create_user": "system", + "_last_modified_time": 1724279997757, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "61616" + ], + "display_name": "Vmware-VCOStdAln-Remote", + "id": "Vmware-VCOStdAln-Remote", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCentre_Operations_Manager_(Standalone)_5.x", + "path": "/infra/services/vCentre_Operations_Manager_(Standalone)_5.x/service-entries/Vmware-VCOStdAln-Remote", + "realization_id": "7a30a71c-2d54-4d6e-854f-b3280f1a3377", + "relative_path": "Vmware-VCOStdAln-Remote", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "7a30a71c-2d54-4d6e-854f-b3280f1a3377" + } + ] + }, + { + "_create_time": 1724279999449, + "_create_user": "system", + "_last_modified_time": 1724279999449, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "vCentre Operations Manager (vApp) 5.x", + "display_name": "vCentre Operations Manager (vApp) 5.x", + "id": "vCentre_Operations_Manager_(vApp)_5.x", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/vCentre_Operations_Manager_(vApp)_5.x", + "realization_id": "ea1e2a01-d171-4f90-94e4-a6f87e1a5799", + "relative_path": "vCentre_Operations_Manager_(vApp)_5.x", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "ea1e2a01-d171-4f90-94e4-a6f87e1a5799", + "service_entries": [ + { + "_create_time": 1724279999505, + "_create_user": "system", + "_last_modified_time": 1724279999505, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCentre_Operations_Manager_(vApp)_5.x", + "path": "/infra/services/vCentre_Operations_Manager_(vApp)_5.x/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + }, + { + "_create_time": 1724279999474, + "_create_user": "system", + "_last_modified_time": 1724279999474, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "22" + ], + "display_name": "SSH", + "id": "SSH", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCentre_Operations_Manager_(vApp)_5.x", + "path": "/infra/services/vCentre_Operations_Manager_(vApp)_5.x/service-entries/SSH", + "realization_id": "3eba41cd-8331-4bbe-b9d7-9994d3a1dfcd", + "relative_path": "SSH", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3eba41cd-8331-4bbe-b9d7-9994d3a1dfcd" + }, + { + "_create_time": 1724279999461, + "_create_user": "system", + "_last_modified_time": 1724279999461, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "80" + ], + "display_name": "HTTP", + "id": "HTTP", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCentre_Operations_Manager_(vApp)_5.x", + "path": "/infra/services/vCentre_Operations_Manager_(vApp)_5.x/service-entries/HTTP", + "realization_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38", + "relative_path": "HTTP", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "74fe84ba-84f6-4528-a2f2-913cfc7e4d38" + }, + { + "_create_time": 1724279999485, + "_create_user": "system", + "_last_modified_time": 1724279999485, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "1194" + ], + "display_name": "VMware-VCOMgr-UI", + "id": "VMware-VCOMgr-UI", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCentre_Operations_Manager_(vApp)_5.x", + "path": "/infra/services/vCentre_Operations_Manager_(vApp)_5.x/service-entries/VMware-VCOMgr-UI", + "realization_id": "dc0fa906-ac36-415c-8621-db995dfe059a", + "relative_path": "VMware-VCOMgr-UI", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "dc0fa906-ac36-415c-8621-db995dfe059a" + } + ] + }, + { + "_create_time": 1724279990807, + "_create_user": "system", + "_last_modified_time": 1724279990807, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "description": "vCentre Operations Standard 1.x", + "display_name": "vCentre Operations Standard 1.x", + "id": "vCentre_Operations_Standard_1.x", + "is_default": true, + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra", + "path": "/infra/services/vCentre_Operations_Standard_1.x", + "realization_id": "26b93aaf-a577-4985-838e-baec26c02a9e", + "relative_path": "vCentre_Operations_Standard_1.x", + "remote_path": "", + "resource_type": "Service", + "service_type": "NON_ETHER", + "unique_id": "26b93aaf-a577-4985-838e-baec26c02a9e", + "service_entries": [ + { + "_create_time": 1724279990831, + "_create_user": "system", + "_last_modified_time": 1724279990831, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "5480" + ], + "display_name": "HBR Server App", + "id": "HBR_Server_App", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCentre_Operations_Standard_1.x", + "path": "/infra/services/vCentre_Operations_Standard_1.x/service-entries/HBR_Server_App", + "realization_id": "9ba29183-627e-49d9-9a25-495c1ce473f5", + "relative_path": "HBR_Server_App", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "9ba29183-627e-49d9-9a25-495c1ce473f5" + }, + { + "_create_time": 1724279990825, + "_create_user": "system", + "_last_modified_time": 1724279990825, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "22" + ], + "display_name": "SSH", + "id": "SSH", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCentre_Operations_Standard_1.x", + "path": "/infra/services/vCentre_Operations_Standard_1.x/service-entries/SSH", + "realization_id": "3eba41cd-8331-4bbe-b9d7-9994d3a1dfcd", + "relative_path": "SSH", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "3eba41cd-8331-4bbe-b9d7-9994d3a1dfcd" + }, + { + "_create_time": 1724279990819, + "_create_user": "system", + "_last_modified_time": 1724279990819, + "_last_modified_user": "system", + "_protection": "NOT_PROTECTED", + "_revision": 0, + "_system_owned": true, + "destination_ports": [ + "443" + ], + "display_name": "HTTPS", + "id": "HTTPS", + "l4_protocol": "TCP", + "owner_id": "fa7f8c3a-d65d-48d1-8f86-8a2c38e76924", + "parent_path": "/infra/services/vCentre_Operations_Standard_1.x", + "path": "/infra/services/vCentre_Operations_Standard_1.x/service-entries/HTTPS", + "realization_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521", + "relative_path": "HTTPS", + "remote_path": "", + "resource_type": "L4PortSetServiceEntry", + "unique_id": "5bbb67c3-71f1-4cc9-a328-67a2a932b521" + } + ] + } + ], + "virtual_machines": [ + { + "display_name": "Slytherin1", + "external_id": "Slytherin1" + }, + { + "display_name": "Slytherin2", + "external_id": "Slytherin2" + }, + { + "display_name": "Hufflepuff1", + "external_id": "Hufflepuff1" + }, + { + "display_name": "Hufflepuff2", + "external_id": "Hufflepuff2" + }, + { + "display_name": "Gryffindor1", + "external_id": "Gryffindor1" + }, + { + "display_name": "Gryffindor2", + "external_id": "Gryffindor2" + }, + { + "display_name": "Dumbledore1", + "external_id": "Dumbledore1" + }, + { + "display_name": "Dumbledore2", + "external_id": "Dumbledore2" + }, + { + "display_name": "Aladdin", + "external_id": "Aladdin" + } + ], + "virtual_network_interface": null, + "segments": null, + "tier0": null, + "tier1": null, + "domains": [ + { + "display_name": "default", + "resources": { + "security_policies": [ + { + "category": "Environment", + "display_name": "AladdinTalks", + "scope": [ + "ANY" + ], + "rules": [ + { + "action": "ALLOW", + "destination_groups": [ + "Aladdin" + ], + "destinations_excluded": true, + "direction": "IN_OUT", + "display_name": "allow-Aladdin-to-others", + "rule_id": 10218, + "scope": [ + "ANY" + ], + "services": [ + "ANY" + ], + "source_groups": [ + "Aladdin" + ] + }, + { + "action": "ALLOW", + "destination_groups": [ + "Aladdin" + ], + "direction": "IN_OUT", + "display_name": "allow-others-to-Aladdin", + "rule_id": 10219, + "scope": [ + "ANY" + ], + "services": [ + "ANY" + ], + "source_groups": [ + "Aladdin" + ], + "sources_excluded": true + } + ] + }, + { + "category": "Application", + "display_name": "Default-L3-Section", + "scope": [ + "ANY" + ], + "rules": [ + { + "action": "DROP", + "destination_groups": [ + "ANY" + ], + "direction": "IN_OUT", + "display_name": "default-deny-rule", + "rule_id": 1003, + "scope": [ + "ANY" + ], + "services": [ + "ANY" + ], + "source_groups": [ + "ANY" + ] + } + ] + } + ], + "gateway_policies": null, + "redirection_policies": null, + "groups": [ + { + "display_name": "Slytherin", + "path": "Slytherin", + "vm_members": [ + { + "display_name": "Slytherin1", + "id": "Slytherin1" + }, + { + "display_name": "Slytherin2", + "id": "Slytherin2" + } + ] + }, + { + "display_name": "Hufflepuff", + "path": "Hufflepuff", + "vm_members": [ + { + "display_name": "Hufflepuff1", + "id": "Hufflepuff1" + }, + { + "display_name": "Hufflepuff2", + "id": "Hufflepuff2" + } + ] + }, + { + "display_name": "Gryffindor", + "path": "Gryffindor", + "vm_members": [ + { + "display_name": "Gryffindor1", + "id": "Gryffindor1" + }, + { + "display_name": "Gryffindor2", + "id": "Gryffindor2" + } + ] + }, + { + "display_name": "Dumbledore", + "path": "Dumbledore", + "vm_members": [ + { + "display_name": "Dumbledore1", + "id": "Dumbledore1" + }, + { + "display_name": "Dumbledore2", + "id": "Dumbledore2" + } + ] + }, + { + "display_name": "Aladdin", + "path": "Aladdin", + "vm_members": [ + { + "display_name": "Aladdin", + "id": "Aladdin" + }, + { + "display_name": "Aladdin", + "id": "Aladdin" + } + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/pkg/common/system.go b/pkg/common/system.go index e3878a24..b48fa055 100644 --- a/pkg/common/system.go +++ b/pkg/common/system.go @@ -20,8 +20,7 @@ const ( ) func WriteToFile(file, content string) error { - p := filepath.Dir(file) - err := os.MkdirAll(p, os.ModePerm) + err := os.MkdirAll(filepath.Dir(file), os.ModePerm) if err != nil { return err } diff --git a/pkg/model/analyzer_test.go b/pkg/model/analyzer_test.go index 4b920098..d4fddb88 100644 --- a/pkg/model/analyzer_test.go +++ b/pkg/model/analyzer_test.go @@ -37,6 +37,10 @@ var allTests = []analyzerTest{ name: "ExampleDumbeldore", exData: data.ExampleDumbeldore, }, + { + name: "ExampleExclude", + exData: data.ExampleExclude, + }, } func (a *analyzerTest) file() string { From 6e48153b8de40b24df0bd525eb4817096218deb1 Mon Sep 17 00:00:00 2001 From: haim Date: Wed, 15 Jan 2025 17:37:27 +0200 Subject: [PATCH 5/6] fmt --- pkg/collector/data/examples_generator.go | 34 ++++++++++++------------ pkg/model/analyzer_test.go | 2 +- pkg/model/parser.go | 6 ++--- 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/pkg/collector/data/examples_generator.go b/pkg/collector/data/examples_generator.go index ed7142cb..ac6fbf06 100644 --- a/pkg/collector/data/examples_generator.go +++ b/pkg/collector/data/examples_generator.go @@ -189,29 +189,29 @@ func DefaultDenyRule(id int) Rule { } type Rule struct { - Name string - ID int - Source string - SourcesExcluded bool + Name string + ID int + Source string + SourcesExcluded bool DestinationsExcluded bool - Dest string - Services []string - Action string - Direction string // if not set, used as default with "IN_OUT" + Dest string + Services []string + Action string + Direction string // if not set, used as default with "IN_OUT" } func (r *Rule) toNSXRule() *nsx.Rule { return &nsx.Rule{ - DisplayName: &r.Name, - RuleId: &r.ID, - Action: (*nsx.RuleAction)(&r.Action), - SourceGroups: []string{r.Source}, - DestinationGroups: []string{r.Dest}, - SourcesExcluded: r.SourcesExcluded, + DisplayName: &r.Name, + RuleId: &r.ID, + Action: (*nsx.RuleAction)(&r.Action), + SourceGroups: []string{r.Source}, + DestinationGroups: []string{r.Dest}, + SourcesExcluded: r.SourcesExcluded, DestinationsExcluded: r.DestinationsExcluded, - Services: r.Services, - Direction: r.directionStr(), - Scope: []string{AnyStr}, // TODO: add scope as configurable + Services: r.Services, + Direction: r.directionStr(), + Scope: []string{AnyStr}, // TODO: add scope as configurable } } diff --git a/pkg/model/analyzer_test.go b/pkg/model/analyzer_test.go index d4fddb88..98a0927f 100644 --- a/pkg/model/analyzer_test.go +++ b/pkg/model/analyzer_test.go @@ -9,8 +9,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/np-guard/vmware-analyzer/pkg/common" "github.com/np-guard/vmware-analyzer/pkg/collector/data" + "github.com/np-guard/vmware-analyzer/pkg/common" "github.com/np-guard/vmware-analyzer/pkg/internal/projectpath" "github.com/np-guard/vmware-analyzer/pkg/logging" ) diff --git a/pkg/model/parser.go b/pkg/model/parser.go index 95c53e76..a76f3262 100644 --- a/pkg/model/parser.go +++ b/pkg/model/parser.go @@ -202,7 +202,7 @@ func (p *NSXConfigParser) getDefaultRule(secPolicy *collector.SecurityPolicy) *p res := &parsedRule{} // scope - the list of group paths where the rules in this policy will get applied. scope := secPolicy.Scope - vms, groups := p.getEndpointsFromGroupsPaths(scope,false) + vms, groups := p.getEndpointsFromGroupsPaths(scope, false) // rule applied as any-to-any only for ths VMs in the scope of the SecurityPolicy res.srcVMs = vms res.dstVMs = vms @@ -280,8 +280,8 @@ func (p *NSXConfigParser) getEndpointsFromGroupsPaths(groupsPaths []string, excl } vms := []*endpoints.VM{} groups := []*collector.Group{} - if exclude{ - groupsPaths = slices.DeleteFunc(slices.Clone( p.allGroupsPaths), func(p string) bool{return slices.Contains(groupsPaths,p)}) + if exclude { + groupsPaths = slices.DeleteFunc(slices.Clone(p.allGroupsPaths), func(p string) bool { return slices.Contains(groupsPaths, p) }) } // TODO: support IP Addresses in groupsPaths for _, groupPath := range groupsPaths { From c495ffbe385a12ced3729e4bb3348d117e8ec6f9 Mon Sep 17 00:00:00 2001 From: haim Date: Wed, 15 Jan 2025 17:39:32 +0200 Subject: [PATCH 6/6] lint --- pkg/model/parser.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkg/model/parser.go b/pkg/model/parser.go index a76f3262..d3912be9 100644 --- a/pkg/model/parser.go +++ b/pkg/model/parser.go @@ -272,11 +272,10 @@ func (p *NSXConfigParser) getAllGroups() { func (p *NSXConfigParser) getEndpointsFromGroupsPaths(groupsPaths []string, exclude bool) ([]*endpoints.VM, []*collector.Group) { if slices.Contains(groupsPaths, anyStr) { // TODO: if a VM is not within any group, this should not include that VM? - if !exclude { - return p.allGroupsVMs, p.allGroups // all groups - } else { - return []*endpoints.VM{}, []*collector.Group{} + if exclude { + return []*endpoints.VM{}, []*collector.Group{} // no group } + return p.allGroupsVMs, p.allGroups // all groups } vms := []*endpoints.VM{} groups := []*collector.Group{}